From 2c89a43286dae55d92a4eee1bf20bb054e2caf84 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 24 Nov 2015 02:49:29 +0100 Subject: [PATCH 01/52] Test --- include/api.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/api.php b/include/api.php index 2fd7d6d45a..63d6a17464 100644 --- a/include/api.php +++ b/include/api.php @@ -2979,6 +2979,10 @@ function api_best_nickname(&$contacts) { $contacts = array($contacts[0]); } + function api_users_groups_show() { + } + api_register_func('api/users/groups_show', 'api_users_groups_show', true); + /* To.Do: From 56a146361c3d207e72692caf767841b60048ac9a Mon Sep 17 00:00:00 2001 From: root Date: Fri, 4 Dec 2015 18:47:12 +0000 Subject: [PATCH 02/52] modified: include/dbstructure.php Removed uneeded break; Causes errors with php 7.0, poller error message & white screen of death. --- include/dbstructure.php | 1 - 1 file changed, 1 deletion(-) diff --git a/include/dbstructure.php b/include/dbstructure.php index 2b1ee84fda..c031b8dd61 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -62,7 +62,6 @@ function update_fail($update_id, $error_message){ */ //try the logger logger("CRITICAL: Database structure update failed: ".$retval); - break; } From 54085508e5a6d7971158771f60845aa293de1d46 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 6 Dec 2015 16:28:28 +0100 Subject: [PATCH 03/52] Double check for maximum number of workers --- include/poller.php | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/include/poller.php b/include/poller.php index 45740dab62..3b348531c5 100644 --- a/include/poller.php +++ b/include/poller.php @@ -56,12 +56,17 @@ function poller_run(&$argv, &$argc){ // But: Update processes (like the database update) mustn't be killed } - } else - // Sleep two seconds before checking for running processes to avoid having too many workers + } else { + // Checking the number of workers + if (poller_too_much_workers(1)) + return; + + // Sleep four seconds before checking for running processes again to avoid having too many workers sleep(4); + } // Checking number of workers - if (poller_too_much_workers()) + if (poller_too_much_workers(2)) return; $starttime = time(); @@ -114,13 +119,13 @@ function poller_run(&$argv, &$argc){ return; // Count active workers and compare them with a maximum value that depends on the load - if (poller_too_much_workers()) + if (poller_too_much_workers(3)) return; } } -function poller_too_much_workers() { +function poller_too_much_workers($stage) { $queues = get_config("system", "worker_queues"); @@ -144,7 +149,7 @@ function poller_too_much_workers() { $slope = $maxworkers / pow($maxsysload, $exponent); $queues = ceil($slope * pow(max(0, $maxsysload - $load), $exponent)); - logger("Current load: ".$load." - maximum: ".$maxsysload." - current queues: ".$active." - maximum: ".$queues, LOGGER_DEBUG); + logger("Current load stage ".$stage.": ".$load." - maximum: ".$maxsysload." - current queues: ".$active." - maximum: ".$queues, LOGGER_DEBUG); } From 9f8da37c99db9b66c164d4fbeb7b4e15bec19d32 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 6 Dec 2015 16:40:31 +0100 Subject: [PATCH 04/52] Move the process check at the beginning of the script --- include/poller.php | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/include/poller.php b/include/poller.php index 3b348531c5..06a5314a4f 100644 --- a/include/poller.php +++ b/include/poller.php @@ -38,6 +38,10 @@ function poller_run(&$argv, &$argc){ } } + // Checking the number of workers + if (poller_too_much_workers(1)) + return; + if(($argc <= 1) OR ($argv[1] != "no_cron")) { // Run the cron job that calls all other jobs proc_run("php","include/cron.php"); @@ -56,14 +60,9 @@ function poller_run(&$argv, &$argc){ // But: Update processes (like the database update) mustn't be killed } - } else { - // Checking the number of workers - if (poller_too_much_workers(1)) - return; - + } else // Sleep four seconds before checking for running processes again to avoid having too many workers sleep(4); - } // Checking number of workers if (poller_too_much_workers(2)) From fbbba6828b16cffaa6f9c70f5902d98b80678640 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 6 Dec 2015 20:04:33 +0100 Subject: [PATCH 05/52] Some better logging --- include/poller.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/poller.php b/include/poller.php index 06a5314a4f..8c102a66b9 100644 --- a/include/poller.php +++ b/include/poller.php @@ -104,10 +104,10 @@ function poller_run(&$argv, &$argc){ $funcname=str_replace(".php", "", basename($argv[0]))."_run"; if (function_exists($funcname)) { - logger("Process ".getmypid().": ".$funcname." ".$r[0]["parameter"]); + logger("Process ".getmypid()." - ID ".$r[0]["id"].": ".$funcname." ".$r[0]["parameter"]); $funcname($argv, $argc); - logger("Process ".getmypid().": ".$funcname." - done"); + logger("Process ".getmypid()." - ID ".$r[0]["id"].": ".$funcname." - done"); q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($r[0]["id"])); } else From 8128a28a6c1a3f6bda903cda1672050729c4c1f7 Mon Sep 17 00:00:00 2001 From: Gerhard Seeber Date: Mon, 7 Dec 2015 19:37:14 +0100 Subject: [PATCH 06/52] new API calls for managing contact groups --- include/api.php | 223 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 220 insertions(+), 3 deletions(-) diff --git a/include/api.php b/include/api.php index 2d680dc678..19833566ed 100644 --- a/include/api.php +++ b/include/api.php @@ -2,6 +2,27 @@ /* To-Do: - Automatically detect if incoming data is HTML or BBCode */ + +/* Contact details: + Gerhard Seeber Mail: gerhard@seeber.at Friendica: http://mozartweg.dyndns.org/friendica/gerhard + + */ + + +/* + * Change history: + Gerhard Seeber 2015-NOV-25 Add API call /users/group_show to return all or a single group + with the containing contacts (necessary for Windows 10 Universal app) + Gerhard Seeber 2015-NOV-27 Add API call /users/group_delete to delete the specified group id + (necessary for Windows 10 Universal app) + Gerhard Seeber 2015-DEC-01 Add API call /users/group_create to create a group with the specified + name and the given list of contacts (necessary for Windows 10 Universal + app) + Gerhard Seeber 2015-DEC-07 Add API call /users/group_update to update a group with the given list of + contacts (necessary for Windows 10 Universal app) + * + */ + require_once("include/bbcode.php"); require_once("include/datetime.php"); require_once("include/conversation.php"); @@ -16,6 +37,7 @@ require_once('mod/wall_upload.php'); require_once("mod/proxy.php"); require_once("include/message.php"); + require_once("include/group.php"); /* @@ -3012,10 +3034,205 @@ function api_best_nickname(&$contacts) { $contacts = array($contacts[0]); } - function api_users_groups_show() { - } - api_register_func('api/users/groups_show', 'api_users_groups_show', true); + // return all or a specified group of the user with the containing contacts + function api_users_group_show(&$a, $type) { + if (api_user()===false) return false; + // params + $user_info = api_get_user($a); + $gid = (x($_REQUEST,'gid') ? $_REQUEST['gid'] : 0); + $uid = $user_info['uid']; + + // get data of the specified group id or all groups if not specified + if ($gid != 0) { + $r = q("SELECT * FROM `group` WHERE `deleted` = 0 AND `uid` = %d AND `id` = %d", + intval($uid), + intval($gid)); + // error message if specified gid is not in database + if (count($r) == 0) + die(api_error($a, $type, 'gid not available')); + } + else + $r = q("SELECT * FROM `group` WHERE `deleted` = 0 AND `uid` = %d", + intval($uid)); + + // loop through all groups and retrieve all members for adding data in the user array + foreach ($r as $rr) { + $members = group_get_members($rr['id']); + $users = array(); + foreach ($members as $member) { + $user = api_get_user($a, $member['nurl']); + $users[] = $user; + } + $grps[] = array('name' => $rr['name'], 'gid' => $rr['id'], 'user' => $users); + } + return api_apply_template("group_show", $type, array('$groups' => $grps)); + } + api_register_func('api/users/group_show', 'api_users_group_show', true); + + + // delete the specified group of the user + function api_users_group_delete(&$a, $type) { + if (api_user()===false) return false; + + // params + $user_info = api_get_user($a); + $gid = (x($_REQUEST,'gid') ? $_REQUEST['gid'] : 0); + $name = (x($_REQUEST, 'name') ? $_REQUEST['name'] : ""); + $uid = $user_info['uid']; + + // error if no gid specified + if ($gid == 0 || $name == "") + die(api_error($a, $type, 'gid or name not specified')); + + // get data of the specified group id + $r = q("SELECT * FROM `group` WHERE `uid` = %d AND `id` = %d", + intval($uid), + intval($gid)); + // error message if specified gid is not in database + if (count($r) == 0) + die(api_error($a, $type, 'gid not available')); + + // get data of the specified group id and group name + $rname = q("SELECT * FROM `group` WHERE `uid` = %d AND `id` = %d AND `name` = '%s'", + intval($uid), + intval($gid), + dbesc($name)); + // error message if specified gid is not in database + if (count($rname) == 0) + die(api_error($a, $type, 'wrong group name')); + + // delete group + $ret = group_rmv($uid, $name); + if ($ret) { + // return success + $success = array('success' => $ret, 'gid' => $gid, 'name' => $name, 'status' => 'deleted', 'wrong users' => array()); + return api_apply_template("group_delete", $type, array('$result' => $success)); + } + else + die(api_error($a, $type, 'other API error')); + } + api_register_func('api/users/group_delete', 'api_users_group_delete', true); + + + // create the specified group with the posted array of contacts + function api_users_group_create(&$a, $type) { + if (api_user()===false) return false; + + // params + $user_info = api_get_user($a); + $name = (x($_REQUEST, 'name') ? $_REQUEST['name'] : ""); + $uid = $user_info['uid']; + $json = json_decode($_POST['json'], true); + $users = $json['user']; + + // error if no name specified + if ($name == "") + die(api_error($a, $type, 'group name not specified')); + + // get data of the specified group name + $rname = q("SELECT * FROM `group` WHERE `uid` = %d AND `name` = '%s' AND `deleted` = 0", + intval($uid), + dbesc($name)); + // error message if specified group name already exists + if (count($rname) != 0) + die(api_error($a, $type, 'group name already exists')); + + // check if specified group name is a deleted group + $rname = q("SELECT * FROM `group` WHERE `uid` = %d AND `name` = '%s' AND `deleted` = 1", + intval($uid), + dbesc($name)); + // error message if specified group name already exists + if (count($rname) != 0) + $reactivate_group = true; + + // create group + $ret = group_add($uid, $name); + if ($ret) + $gid = group_byname($uid, $name); + else + die(api_error($a, $type, 'other API error')); + + // add members + $erroraddinguser = false; + $errorusers = array(); + foreach ($users as $user) { + $cid = $user['cid']; + // check if user really exists as contact + $contact = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d", + intval($cid), + intval($uid)); + if (count($contact)) + $result = group_add_member($uid, $name, $cid, $gid); + else { + $erroraddinguser = true; + $errorusers[] = $cid; + } + } + + // return success message incl. missing users in array + $status = ($erroraddinguser ? "missing user" : ($reactivate_group ? "reactivated" : "ok")); + $success = array('success' => true, 'gid' => $gid, 'name' => $name, 'status' => $status, 'wrong users' => $errorusers); + return api_apply_template("group_create", $type, array('result' => $success)); + } + api_register_func('api/users/group_create', 'api_users_group_create', true); + + + // update the specified group with the posted array of contacts + function api_users_group_update(&$a, $type) { + if (api_user()===false) return false; + + // params + $user_info = api_get_user($a); + $uid = $user_info['uid']; + $gid = (x($_REQUEST, 'gid') ? $_REQUEST['gid'] : 0); + $name = (x($_REQUEST, 'name') ? $_REQUEST['name'] : ""); + $json = json_decode($_POST['json'], true); + $users = $json['user']; + + // error if no name specified + if ($name == "") + die(api_error($a, $type, 'group name not specified')); + + // error if no gid specified + if ($gid == "") + die(api_error($a, $type, 'gid not specified')); + + // remove members + $members = group_get_members($gid); + foreach ($members as $member) { + $cid = $member['id']; + foreach ($users as $user) { + $found = ($user['cid'] == $cid ? true : false); + } + if (!$found) { + $ret = group_rmv_member($uid, $name, $cid); + } + } + + // add members + $erroraddinguser = false; + $errorusers = array(); + foreach ($users as $user) { + $cid = $user['cid']; + // check if user really exists as contact + $contact = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d", + intval($cid), + intval($uid)); + if (count($contact)) + $result = group_add_member($uid, $name, $cid, $gid); + else { + $erroraddinguser = true; + $errorusers[] = $cid; + } + } + + // return success message incl. missing users in array + $status = ($erroraddinguser ? "missing user" : "ok"); + $success = array('success' => true, 'gid' => $gid, 'name' => $name, 'status' => $status, 'wrong users' => $errorusers); + return api_apply_template("group_update", $type, array('result' => $success)); + } + api_register_func('api/users/group_update', 'api_users_group_update', true); /* To.Do: From 1fb636ba1ef406c2ea6913479f9cd314f58a9b03 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 7 Dec 2015 21:45:33 +0100 Subject: [PATCH 07/52] Vier: The line-height seems to make problems with windows --- view/theme/vier/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index 1b4fc450bf..befe47ad6b 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -958,7 +958,7 @@ right_aside { font-size: 13px; overflow-y: auto; z-index: 2; - line-height: 17px; + /* line-height: 17px; */ color: #737373; box-shadow: 1px 2px 0px 0px #D8D8D8; top: 32px; @@ -983,7 +983,7 @@ aside { top: 32px; overflow-y: auto; z-index: 2; - line-height: 17px; + /* line-height: 17px; */ position: fixed; /* overflow: auto; */ height: 100%; From 77f13571233fbad04132f375bf596d74a2bc2e88 Mon Sep 17 00:00:00 2001 From: gerhard6380 Date: Mon, 7 Dec 2015 22:07:20 +0100 Subject: [PATCH 08/52] Update api.md add documentation for new API calls for Managing groups --- doc/api.md | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) diff --git a/doc/api.md b/doc/api.md index 147c8b7513..478ef6d2b9 100644 --- a/doc/api.md +++ b/doc/api.md @@ -346,6 +346,79 @@ Friendica doesn't allow showing followers of other users. Friendica doesn't allow showing friends of other users. + +## Implemented API calls (not compatible with other API’s) + +### users/group_show +Return all or a specified group of the user with the containing contacts as array. + +#### Parameters +* gid: optional, if not given, API returns all groups of the user + +#### Return values +Array of: +* name: name of the group +* gid: id of the group +* user: array of group members (return from api_get_user() function for each member) + + +### users/group_delete +delete the specified group of contacts; API call need to include the correct gid AND name of the group to be deleted. + +### Parameters +* gid: id of the group to be deleted +* name: name of the group to be deleted + +#### Return values +Array of: +* success: true if successfully deleted +* gid: gid of the deleted group +* name: name of the deleted group +* status: „deleted“ if successfully deleted +* wrong users: empty array + + +### users/group_create +Create the group with the posted array of contacts as members. +#### Parameters +* name: name of the group to be created + +#### POST data +JSON data as Array like the result of „users/group_show“: +* gid +* name +* array of users + +#### Return values +Array of: +* success: true if successfully created or reactivated +* gid: gid of the created group +* name: name of the created group +* status: „missing user“ | „reactivated“ | „ok“ +* wrong users: array of users, which were not available in the contact table + + +### users/group_update +Update the group with the posted array of contacts as members (post all members of the group to the call; function will remove members not posted). +#### Parameters +* gid: id of the group to be changed +* name: name of the group to be changed + +#### POST data +JSON data as array like the result of „users/group_show“: +* gid +* name +* array of users + +#### Return values +Array of: +* success: true if successfully updated +* gid: gid of the changed group +* name: name of the changed group +* status: „missing user“ | „ok“ +* wrong users: array of users, which were not available in the contact table + + ## Not Implemented API calls The following API calls are implemented in GNU Social but not in Friendica: (incomplete) From e1c6d80c01fadbf26879dab0f9aa58adb5096d8a Mon Sep 17 00:00:00 2001 From: root Date: Mon, 7 Dec 2015 22:18:55 +0100 Subject: [PATCH 09/52] change api/user/group_* to api/friendica/group_* --- include/api.php | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/include/api.php b/include/api.php index 19833566ed..ff8127829b 100644 --- a/include/api.php +++ b/include/api.php @@ -11,15 +11,15 @@ /* * Change history: - Gerhard Seeber 2015-NOV-25 Add API call /users/group_show to return all or a single group + Gerhard Seeber 2015-NOV-25 Add API call /friendica/group_show to return all or a single group with the containing contacts (necessary for Windows 10 Universal app) - Gerhard Seeber 2015-NOV-27 Add API call /users/group_delete to delete the specified group id + Gerhard Seeber 2015-NOV-27 Add API call /friendica/group_delete to delete the specified group id (necessary for Windows 10 Universal app) - Gerhard Seeber 2015-DEC-01 Add API call /users/group_create to create a group with the specified + Gerhard Seeber 2015-DEC-01 Add API call /friendica/group_create to create a group with the specified name and the given list of contacts (necessary for Windows 10 Universal app) - Gerhard Seeber 2015-DEC-07 Add API call /users/group_update to update a group with the given list of - contacts (necessary for Windows 10 Universal app) + Gerhard Seeber 2015-DEC-07 Add API call /friendica/group_update to update a group with the given + list of contacts (necessary for Windows 10 Universal app) * */ @@ -3035,7 +3035,7 @@ function api_best_nickname(&$contacts) { } // return all or a specified group of the user with the containing contacts - function api_users_group_show(&$a, $type) { + function api_friendica_group_show(&$a, $type) { if (api_user()===false) return false; // params @@ -3068,11 +3068,11 @@ function api_best_nickname(&$contacts) { } return api_apply_template("group_show", $type, array('$groups' => $grps)); } - api_register_func('api/users/group_show', 'api_users_group_show', true); + api_register_func('api/friendica/group_show', 'api_friendica_group_show', true); // delete the specified group of the user - function api_users_group_delete(&$a, $type) { + function api_friendica_group_delete(&$a, $type) { if (api_user()===false) return false; // params @@ -3112,11 +3112,11 @@ function api_best_nickname(&$contacts) { else die(api_error($a, $type, 'other API error')); } - api_register_func('api/users/group_delete', 'api_users_group_delete', true); + api_register_func('api/friendica/group_delete', 'api_friendica_group_delete', true); // create the specified group with the posted array of contacts - function api_users_group_create(&$a, $type) { + function api_friendica_group_create(&$a, $type) { if (api_user()===false) return false; // params @@ -3175,11 +3175,11 @@ function api_best_nickname(&$contacts) { $success = array('success' => true, 'gid' => $gid, 'name' => $name, 'status' => $status, 'wrong users' => $errorusers); return api_apply_template("group_create", $type, array('result' => $success)); } - api_register_func('api/users/group_create', 'api_users_group_create', true); + api_register_func('api/friendica/group_create', 'api_friendica_group_create', true); // update the specified group with the posted array of contacts - function api_users_group_update(&$a, $type) { + function api_friendica_group_update(&$a, $type) { if (api_user()===false) return false; // params @@ -3232,7 +3232,7 @@ function api_best_nickname(&$contacts) { $success = array('success' => true, 'gid' => $gid, 'name' => $name, 'status' => $status, 'wrong users' => $errorusers); return api_apply_template("group_update", $type, array('result' => $success)); } - api_register_func('api/users/group_update', 'api_users_group_update', true); + api_register_func('api/friendica/group_update', 'api_friendica_group_update', true); /* To.Do: From 1d3b61c3b92b6d840a2db39019febcc6e61e7af3 Mon Sep 17 00:00:00 2001 From: gerhard6380 Date: Mon, 7 Dec 2015 22:42:43 +0100 Subject: [PATCH 10/52] Update api.md changed from api/users/group_* to api/friendica/group_* --- doc/api.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/api.md b/doc/api.md index 478ef6d2b9..aa02aac6f5 100644 --- a/doc/api.md +++ b/doc/api.md @@ -349,7 +349,7 @@ Friendica doesn't allow showing friends of other users. ## Implemented API calls (not compatible with other API’s) -### users/group_show +### friendica/group_show Return all or a specified group of the user with the containing contacts as array. #### Parameters @@ -362,7 +362,7 @@ Array of: * user: array of group members (return from api_get_user() function for each member) -### users/group_delete +### friendica/group_delete delete the specified group of contacts; API call need to include the correct gid AND name of the group to be deleted. ### Parameters @@ -378,7 +378,7 @@ Array of: * wrong users: empty array -### users/group_create +### friendica/group_create Create the group with the posted array of contacts as members. #### Parameters * name: name of the group to be created @@ -398,7 +398,7 @@ Array of: * wrong users: array of users, which were not available in the contact table -### users/group_update +### friendica/group_update Update the group with the posted array of contacts as members (post all members of the group to the call; function will remove members not posted). #### Parameters * gid: id of the group to be changed From 29e9a7947e2ae70b88fa8f99e30ab693e27d2d6e Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Mon, 7 Dec 2015 23:24:55 +0100 Subject: [PATCH 11/52] Update FRIENDICA_VERSION --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 19cfd71a8a..0f4cacb5fd 100644 --- a/boot.php +++ b/boot.php @@ -17,7 +17,7 @@ require_once('include/dbstructure.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Lily of the valley'); -define ( 'FRIENDICA_VERSION', '3.4.3-dev' ); +define ( 'FRIENDICA_VERSION', '3.4.3-rc' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1191 ); define ( 'EOL', "
\r\n" ); From d7fc8d7c127ac64db4eb2d604f7c31512b3f7716 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 8 Dec 2015 08:17:29 +0100 Subject: [PATCH 12/52] Add an additional way to fetch the basepath (See pull request 2161) --- boot.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/boot.php b/boot.php index 0f4cacb5fd..6759e805f2 100644 --- a/boot.php +++ b/boot.php @@ -640,6 +640,9 @@ if(! class_exists('App')) { if ($basepath == "") $basepath = $_SERVER["PWD"]; + if ($basepath == "") + $basepath = dirname(__FILE__); + return($basepath); } From 2f866fecf92f9baa6d526c8664705f59e7d7c8bd Mon Sep 17 00:00:00 2001 From: Johannes Schwab Date: Tue, 8 Dec 2015 00:10:12 +0100 Subject: [PATCH 13/52] fix path for photo and proxy --- mod/photo.php | 11 ++++++----- mod/proxy.php | 15 ++++++++------- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/mod/photo.php b/mod/photo.php index fab34a62f0..4166b4d539 100644 --- a/mod/photo.php +++ b/mod/photo.php @@ -197,12 +197,13 @@ function photo_init(&$a) { // If the photo is public and there is an existing photo directory store the photo there if ($public and ($file != "")) { // If the photo path isn't there, try to create it - if (!is_dir($_SERVER["DOCUMENT_ROOT"]."/photo")) - if (is_writable($_SERVER["DOCUMENT_ROOT"])) - mkdir($_SERVER["DOCUMENT_ROOT"]."/photo"); + $basepath = $a->get_basepath(); + if (!is_dir($basepath."/photo")) + if (is_writable($basepath)) + mkdir($basepath."/photo"); - if (is_dir($_SERVER["DOCUMENT_ROOT"]."/photo")) - file_put_contents($_SERVER["DOCUMENT_ROOT"]."/photo/".$file, $data); + if (is_dir($basepath."/photo")) + file_put_contents($basepath."/photo/".$file, $data); } killme(); diff --git a/mod/proxy.php b/mod/proxy.php index d26967dddf..c6bf653021 100644 --- a/mod/proxy.php +++ b/mod/proxy.php @@ -44,14 +44,15 @@ function proxy_init() { $thumb = false; $size = 1024; $sizetype = ""; + $basepath = $a->get_basepath(); // If the cache path isn't there, try to create it - if (!is_dir($_SERVER["DOCUMENT_ROOT"]."/proxy")) - if (is_writable($_SERVER["DOCUMENT_ROOT"])) - mkdir($_SERVER["DOCUMENT_ROOT"]."/proxy"); + if (!is_dir($basepath."/proxy")) + if (is_writable($basepath)) + mkdir($basepath."/proxy"); // Checking if caching into a folder in the webroot is activated and working - $direct_cache = (is_dir($_SERVER["DOCUMENT_ROOT"]."/proxy") AND is_writable($_SERVER["DOCUMENT_ROOT"]."/proxy")); + $direct_cache = (is_dir($basepath."/proxy") AND is_writable($basepath."/proxy")); // Look for filename in the arguments if ((isset($a->argv[1]) OR isset($a->argv[2]) OR isset($a->argv[3])) AND !isset($_REQUEST["url"])) { @@ -211,9 +212,9 @@ function proxy_init() { // advantage: real file access is really fast // Otherwise write in cachefile if ($valid AND $direct_cache) { - file_put_contents($_SERVER["DOCUMENT_ROOT"]."/proxy/".proxy_url($_REQUEST['url'], true), $img_str_orig); + file_put_contents($basepath."/proxy/".proxy_url($_REQUEST['url'], true), $img_str_orig); if ($sizetype <> '') - file_put_contents($_SERVER["DOCUMENT_ROOT"]."/proxy/".proxy_url($_REQUEST['url'], true).$sizetype, $img_str); + file_put_contents($basepath."/proxy/".proxy_url($_REQUEST['url'], true).$sizetype, $img_str); } elseif ($cachefile != '') file_put_contents($cachefile, $img_str_orig); @@ -247,7 +248,7 @@ function proxy_url($url, $writemode = false, $size = "") { return($url); // Creating a sub directory to reduce the amount of files in the cache directory - $basepath = $_SERVER["DOCUMENT_ROOT"]."/proxy"; + $basepath = $a->get_basepath()."/proxy"; $path = substr(hash("md5", $url), 0, 2); From 59b2bde9a7e84f51e64f8cde637d76a58a31e32d Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 8 Dec 2015 19:41:27 +0100 Subject: [PATCH 14/52] Do a linebreak before the output of rendertime --- view/global.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/view/global.css b/view/global.css index 63575ff21b..2fd5e60f53 100644 --- a/view/global.css +++ b/view/global.css @@ -313,3 +313,7 @@ ul.credits li { float: left; width: 200px; } + +.renderinfo { + clear: both; +} From 57576e09ed0897f414a48491c14a8abc842a095d Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 8 Dec 2015 19:53:01 +0100 Subject: [PATCH 15/52] Avoid problems with wrong configured server variables --- boot.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/boot.php b/boot.php index 6759e805f2..05a334a1fa 100644 --- a/boot.php +++ b/boot.php @@ -634,15 +634,15 @@ if(! class_exists('App')) { $basepath = get_config("system", "basepath"); + if ($basepath == "") + $basepath = dirname(__FILE__); + if ($basepath == "") $basepath = $_SERVER["DOCUMENT_ROOT"]; if ($basepath == "") $basepath = $_SERVER["PWD"]; - if ($basepath == "") - $basepath = dirname(__FILE__); - return($basepath); } From 776cbe4a371b1ac5da769570b2c2c1467638b785 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Thu, 10 Dec 2015 13:30:11 +0100 Subject: [PATCH 16/52] vier: fix little misspelling --- view/theme/vier/templates/widget_forumlist_right.tpl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/view/theme/vier/templates/widget_forumlist_right.tpl b/view/theme/vier/templates/widget_forumlist_right.tpl index 93f8e8f105..fe72ffcaf6 100644 --- a/view/theme/vier/templates/widget_forumlist_right.tpl +++ b/view/theme/vier/templates/widget_forumlist_right.tpl @@ -30,7 +30,7 @@ function showHideForumlist() { {{if $forum.id > $visible_forums}} + {{/if}} - From 138d745f5e2fd5a168b09d86337df9ec42415b63 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 10 Dec 2015 21:39:44 +0100 Subject: [PATCH 17/52] Sometimes there wasn't a linebreak before the address in the profile --- view/global.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/view/global.css b/view/global.css index 2fd5e60f53..05940508ca 100644 --- a/view/global.css +++ b/view/global.css @@ -317,3 +317,7 @@ ul.credits li { .renderinfo { clear: both; } + +.p-addr { + clear: both; +} From 300007a0cff41a25117d31c3707e65cb512fdaba Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 10 Dec 2015 22:47:58 +0100 Subject: [PATCH 18/52] Bugfix: Posts weren't always shown for feeds that start with "www." --- mod/contacts.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/contacts.php b/mod/contacts.php index cff68abc65..0a8aad9d72 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -903,7 +903,7 @@ function contact_posts($a, $contact_id) { $r = q("SELECT COUNT(*) AS `total` FROM `item` WHERE `item`.`uid` = %d AND `author-link` IN ('%s', '%s')", intval(local_user()), - dbesc(normalise_link($contact["url"])), + dbesc(str_replace("https://", "http://", $contact["url"])), dbesc(str_replace("http://", "https://", $contact["url"]))); $a->set_pager_total($r[0]['total']); @@ -918,7 +918,7 @@ function contact_posts($a, $contact_id) { ORDER BY `item`.`created` DESC LIMIT %d, %d", intval(local_user()), intval($contact_id), - dbesc(normalise_link($contact["url"])), + dbesc(str_replace("https://", "http://", $contact["url"])), dbesc(str_replace("http://", "https://", $contact["url"])), intval($a->pager['start']), intval($a->pager['itemspage']) From 36769d77eba0bc90cff6942ba55b00047cb25a2b Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 11 Dec 2015 08:03:09 +0100 Subject: [PATCH 19/52] FR update to the strings THX Perig --- view/fr/messages.po | 4023 ++++++++++++++++++++++++------------------- view/fr/strings.php | 340 ++-- 2 files changed, 2504 insertions(+), 1859 deletions(-) diff --git a/view/fr/messages.po b/view/fr/messages.po index 5ecb81cee8..beaa652175 100644 --- a/view/fr/messages.po +++ b/view/fr/messages.po @@ -12,6 +12,7 @@ # Lionel Triay , 2013 # Marquis_de_Carabas , 2012 # Olivier , 2011-2012 +# Perig Gouanvic , 2015 # StefOfficiel , 2015 # Sylvain Lagacé, 2014-2015 # tomamplius , 2014 @@ -20,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-08-26 07:53+0200\n" -"PO-Revision-Date: 2015-08-26 09:32+0000\n" -"Last-Translator: fabrixxm \n" +"POT-Creation-Date: 2015-11-30 13:14+0100\n" +"PO-Revision-Date: 2015-12-11 01:05+0000\n" +"Last-Translator: Perig Gouanvic \n" "Language-Team: French (http://www.transifex.com/Friendica/friendica/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,435 +31,443 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: mod/contacts.php:114 +#: mod/contacts.php:118 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" msgstr[0] "%d contact édité" msgstr[1] "%d contacts édités." -#: mod/contacts.php:145 mod/contacts.php:340 +#: mod/contacts.php:149 mod/contacts.php:372 msgid "Could not access contact record." msgstr "Impossible d'accéder à l'enregistrement du contact." -#: mod/contacts.php:159 +#: mod/contacts.php:163 msgid "Could not locate selected profile." msgstr "Impossible de localiser le profil séléctionné." -#: mod/contacts.php:192 +#: mod/contacts.php:196 msgid "Contact updated." -msgstr "Contact mis-à-jour." +msgstr "Contact mis à jour." -#: mod/contacts.php:194 mod/dfrn_request.php:576 +#: mod/contacts.php:198 mod/dfrn_request.php:578 msgid "Failed to update contact record." -msgstr "Échec de mise-à-jour du contact." +msgstr "Échec de mise à jour du contact." -#: mod/contacts.php:322 mod/manage.php:96 mod/display.php:508 -#: mod/profile_photo.php:19 mod/profile_photo.php:169 -#: mod/profile_photo.php:180 mod/profile_photo.php:193 mod/follow.php:9 -#: mod/follow.php:42 mod/follow.php:81 mod/item.php:170 mod/item.php:186 -#: mod/group.php:19 mod/dfrn_confirm.php:55 mod/fsuggest.php:78 -#: mod/wall_upload.php:70 mod/wall_upload.php:71 mod/viewcontacts.php:24 -#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 -#: mod/crepair.php:120 mod/nogroup.php:25 mod/network.php:4 -#: mod/allfriends.php:9 mod/events.php:164 mod/wallmessage.php:9 +#: mod/contacts.php:354 mod/manage.php:96 mod/display.php:496 +#: mod/profile_photo.php:19 mod/profile_photo.php:175 +#: mod/profile_photo.php:186 mod/profile_photo.php:199 +#: mod/ostatus_subscribe.php:9 mod/follow.php:10 mod/follow.php:72 +#: mod/follow.php:137 mod/item.php:169 mod/item.php:185 mod/group.php:19 +#: mod/dfrn_confirm.php:55 mod/fsuggest.php:78 mod/wall_upload.php:77 +#: mod/wall_upload.php:80 mod/viewcontacts.php:24 mod/notifications.php:69 +#: mod/message.php:45 mod/message.php:181 mod/crepair.php:120 +#: mod/dirfind.php:11 mod/nogroup.php:25 mod/network.php:4 +#: mod/allfriends.php:11 mod/events.php:165 mod/wallmessage.php:9 #: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 -#: mod/wall_attach.php:60 mod/wall_attach.php:61 mod/settings.php:20 -#: mod/settings.php:116 mod/settings.php:619 mod/register.php:42 -#: mod/delegate.php:12 mod/mood.php:114 mod/suggest.php:58 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/settings.php:20 +#: mod/settings.php:116 mod/settings.php:635 mod/register.php:42 +#: mod/delegate.php:12 mod/common.php:17 mod/mood.php:114 mod/suggest.php:58 #: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10 -#: mod/api.php:26 mod/api.php:31 mod/notes.php:20 mod/poke.php:135 -#: mod/invite.php:15 mod/invite.php:101 mod/photos.php:156 mod/photos.php:1072 -#: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33 -#: include/items.php:5022 index.php:382 +#: mod/api.php:26 mod/api.php:31 mod/notes.php:22 mod/poke.php:149 +#: mod/repair_ostatus.php:9 mod/invite.php:15 mod/invite.php:101 +#: mod/photos.php:163 mod/photos.php:1097 mod/regmod.php:110 +#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5041 index.php:382 msgid "Permission denied." msgstr "Permission refusée." -#: mod/contacts.php:361 +#: mod/contacts.php:393 msgid "Contact has been blocked" msgstr "Le contact a été bloqué" -#: mod/contacts.php:361 +#: mod/contacts.php:393 msgid "Contact has been unblocked" msgstr "Le contact n'est plus bloqué" -#: mod/contacts.php:372 +#: mod/contacts.php:404 msgid "Contact has been ignored" msgstr "Le contact a été ignoré" -#: mod/contacts.php:372 +#: mod/contacts.php:404 msgid "Contact has been unignored" msgstr "Le contact n'est plus ignoré" -#: mod/contacts.php:384 +#: mod/contacts.php:416 msgid "Contact has been archived" msgstr "Contact archivé" -#: mod/contacts.php:384 +#: mod/contacts.php:416 msgid "Contact has been unarchived" msgstr "Contact désarchivé" -#: mod/contacts.php:411 mod/contacts.php:767 +#: mod/contacts.php:443 mod/contacts.php:817 msgid "Do you really want to delete this contact?" msgstr "Voulez-vous vraiment supprimer ce contact?" -#: mod/contacts.php:413 mod/follow.php:57 mod/message.php:210 -#: mod/settings.php:1063 mod/settings.php:1069 mod/settings.php:1077 -#: mod/settings.php:1081 mod/settings.php:1086 mod/settings.php:1092 -#: mod/settings.php:1098 mod/settings.php:1104 mod/settings.php:1130 -#: mod/settings.php:1131 mod/settings.php:1132 mod/settings.php:1133 -#: mod/settings.php:1134 mod/dfrn_request.php:845 mod/register.php:235 +#: mod/contacts.php:445 mod/follow.php:105 mod/message.php:216 +#: mod/settings.php:1091 mod/settings.php:1097 mod/settings.php:1105 +#: mod/settings.php:1109 mod/settings.php:1114 mod/settings.php:1120 +#: mod/settings.php:1126 mod/settings.php:1132 mod/settings.php:1158 +#: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161 +#: mod/settings.php:1162 mod/dfrn_request.php:850 mod/register.php:238 #: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 -#: mod/api.php:105 include/items.php:4854 +#: mod/profiles.php:687 mod/api.php:105 include/items.php:4873 msgid "Yes" msgstr "Oui" -#: mod/contacts.php:416 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:68 -#: mod/videos.php:121 mod/message.php:213 mod/fbrowser.php:89 -#: mod/fbrowser.php:125 mod/settings.php:633 mod/settings.php:659 -#: mod/dfrn_request.php:859 mod/suggest.php:32 mod/editpost.php:148 -#: mod/photos.php:225 mod/photos.php:314 include/conversation.php:1093 -#: include/items.php:4857 +#: mod/contacts.php:448 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:116 +#: mod/videos.php:123 mod/message.php:219 mod/fbrowser.php:93 +#: mod/fbrowser.php:128 mod/settings.php:649 mod/settings.php:675 +#: mod/dfrn_request.php:864 mod/suggest.php:32 mod/editpost.php:147 +#: mod/photos.php:239 mod/photos.php:328 include/conversation.php:1221 +#: include/items.php:4876 msgid "Cancel" msgstr "Annuler" -#: mod/contacts.php:428 +#: mod/contacts.php:460 msgid "Contact has been removed." msgstr "Ce contact a été retiré." -#: mod/contacts.php:466 +#: mod/contacts.php:498 #, php-format msgid "You are mutual friends with %s" msgstr "Vous êtes ami (et réciproquement) avec %s" -#: mod/contacts.php:470 +#: mod/contacts.php:502 #, php-format msgid "You are sharing with %s" msgstr "Vous partagez avec %s" -#: mod/contacts.php:475 +#: mod/contacts.php:507 #, php-format msgid "%s is sharing with you" msgstr "%s partage avec vous" -#: mod/contacts.php:495 +#: mod/contacts.php:527 msgid "Private communications are not available for this contact." msgstr "Les communications privées ne sont pas disponibles pour ce contact." -#: mod/contacts.php:498 mod/admin.php:618 +#: mod/contacts.php:530 mod/admin.php:645 msgid "Never" msgstr "Jamais" -#: mod/contacts.php:502 +#: mod/contacts.php:534 msgid "(Update was successful)" msgstr "(Mise à jour effectuée avec succès)" -#: mod/contacts.php:502 +#: mod/contacts.php:534 msgid "(Update was not successful)" -msgstr "(Mise à jour échouée)" +msgstr "(Échec de la mise à jour)" -#: mod/contacts.php:504 +#: mod/contacts.php:536 msgid "Suggest friends" msgstr "Suggérer amitié/contact" -#: mod/contacts.php:508 +#: mod/contacts.php:540 #, php-format msgid "Network type: %s" msgstr "Type de réseau %s" -#: mod/contacts.php:511 include/contact_widgets.php:200 +#: mod/contacts.php:543 include/contact_widgets.php:237 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d contact en commun" msgstr[1] "%d contacts en commun" -#: mod/contacts.php:516 +#: mod/contacts.php:548 msgid "View all contacts" msgstr "Voir tous les contacts" -#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 -#: mod/admin.php:1083 +#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:821 +#: mod/admin.php:1117 msgid "Unblock" msgstr "Débloquer" -#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 -#: mod/admin.php:1082 +#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:821 +#: mod/admin.php:1116 msgid "Block" msgstr "Bloquer" -#: mod/contacts.php:524 +#: mod/contacts.php:556 msgid "Toggle Blocked status" msgstr "(dés)activer l'état \"bloqué\"" -#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 +#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:822 msgid "Unignore" msgstr "Ne plus ignorer" -#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 -#: mod/notifications.php:51 mod/notifications.php:174 -#: mod/notifications.php:233 +#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:822 +#: mod/notifications.php:54 mod/notifications.php:179 +#: mod/notifications.php:259 msgid "Ignore" msgstr "Ignorer" -#: mod/contacts.php:531 +#: mod/contacts.php:564 msgid "Toggle Ignored status" msgstr "(dés)activer l'état \"ignoré\"" -#: mod/contacts.php:536 mod/contacts.php:772 +#: mod/contacts.php:570 mod/contacts.php:823 msgid "Unarchive" msgstr "Désarchiver" -#: mod/contacts.php:536 mod/contacts.php:772 +#: mod/contacts.php:570 mod/contacts.php:823 msgid "Archive" msgstr "Archiver" -#: mod/contacts.php:539 +#: mod/contacts.php:573 msgid "Toggle Archive status" msgstr "(dés)activer l'état \"archivé\"" -#: mod/contacts.php:543 +#: mod/contacts.php:578 msgid "Repair" msgstr "Réparer" -#: mod/contacts.php:546 +#: mod/contacts.php:581 msgid "Advanced Contact Settings" msgstr "Réglages avancés du contact" -#: mod/contacts.php:553 +#: mod/contacts.php:589 msgid "Communications lost with this contact!" msgstr "Communications perdues avec ce contact !" -#: mod/contacts.php:556 +#: mod/contacts.php:592 msgid "Fetch further information for feeds" msgstr "Chercher plus d'informations pour les flux" -#: mod/contacts.php:557 mod/admin.php:627 +#: mod/contacts.php:593 mod/admin.php:654 msgid "Disabled" msgstr "Désactivé" -#: mod/contacts.php:557 +#: mod/contacts.php:593 msgid "Fetch information" msgstr "Récupérer informations" -#: mod/contacts.php:557 +#: mod/contacts.php:593 msgid "Fetch information and keywords" msgstr "Récupérer informations" -#: mod/contacts.php:566 +#: mod/contacts.php:606 msgid "Contact Editor" msgstr "Éditeur de contact" -#: mod/contacts.php:568 mod/manage.php:110 mod/fsuggest.php:107 -#: mod/message.php:336 mod/message.php:565 mod/crepair.php:191 -#: mod/events.php:511 mod/content.php:712 mod/install.php:250 -#: mod/install.php:288 mod/mood.php:137 mod/profiles.php:683 -#: mod/localtime.php:45 mod/poke.php:199 mod/invite.php:140 -#: mod/photos.php:1104 mod/photos.php:1223 mod/photos.php:1533 -#: mod/photos.php:1584 mod/photos.php:1628 mod/photos.php:1716 -#: object/Item.php:680 view/theme/cleanzero/config.php:80 +#: mod/contacts.php:608 mod/manage.php:143 mod/fsuggest.php:107 +#: mod/message.php:342 mod/message.php:525 mod/crepair.php:195 +#: mod/events.php:574 mod/content.php:712 mod/install.php:261 +#: mod/install.php:299 mod/mood.php:137 mod/profiles.php:696 +#: mod/localtime.php:45 mod/poke.php:198 mod/invite.php:140 +#: mod/photos.php:1129 mod/photos.php:1253 mod/photos.php:1571 +#: mod/photos.php:1622 mod/photos.php:1670 mod/photos.php:1758 +#: object/Item.php:710 view/theme/cleanzero/config.php:80 #: view/theme/dispy/config.php:70 view/theme/quattro/config.php:64 #: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 -#: view/theme/vier/config.php:56 view/theme/duepuntozero/config.php:59 +#: view/theme/clean/config.php:83 view/theme/vier/config.php:107 +#: view/theme/duepuntozero/config.php:59 msgid "Submit" msgstr "Envoyer" -#: mod/contacts.php:569 +#: mod/contacts.php:609 msgid "Profile Visibility" msgstr "Visibilité du profil" -#: mod/contacts.php:570 +#: mod/contacts.php:610 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée." -#: mod/contacts.php:571 +#: mod/contacts.php:611 msgid "Contact Information / Notes" msgstr "Informations de contact / Notes" -#: mod/contacts.php:572 +#: mod/contacts.php:612 msgid "Edit contact notes" msgstr "Éditer les notes des contacts" -#: mod/contacts.php:577 mod/contacts.php:810 mod/viewcontacts.php:64 -#: mod/nogroup.php:40 +#: mod/contacts.php:617 mod/contacts.php:861 mod/viewcontacts.php:77 +#: mod/nogroup.php:41 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visiter le profil de %s [%s]" -#: mod/contacts.php:578 +#: mod/contacts.php:618 msgid "Block/Unblock contact" msgstr "Bloquer/débloquer ce contact" -#: mod/contacts.php:579 +#: mod/contacts.php:619 msgid "Ignore contact" msgstr "Ignorer ce contact" -#: mod/contacts.php:580 +#: mod/contacts.php:620 msgid "Repair URL settings" msgstr "Réglages de réparation des URL" -#: mod/contacts.php:581 +#: mod/contacts.php:621 msgid "View conversations" msgstr "Voir les conversations" -#: mod/contacts.php:583 +#: mod/contacts.php:623 msgid "Delete contact" msgstr "Effacer ce contact" -#: mod/contacts.php:587 +#: mod/contacts.php:627 msgid "Last update:" msgstr "Dernière mise-à-jour :" -#: mod/contacts.php:589 +#: mod/contacts.php:629 msgid "Update public posts" msgstr "Mettre à jour les publications publiques:" -#: mod/contacts.php:591 mod/admin.php:1584 +#: mod/contacts.php:631 mod/admin.php:1653 msgid "Update now" msgstr "Mettre à jour" -#: mod/contacts.php:598 +#: mod/contacts.php:633 mod/dirfind.php:190 mod/allfriends.php:67 +#: mod/match.php:71 mod/suggest.php:82 include/contact_widgets.php:32 +#: include/Contact.php:321 include/conversation.php:924 +msgid "Connect/Follow" +msgstr "Connecter/Suivre" + +#: mod/contacts.php:640 msgid "Currently blocked" msgstr "Actuellement bloqué" -#: mod/contacts.php:599 +#: mod/contacts.php:641 msgid "Currently ignored" msgstr "Actuellement ignoré" -#: mod/contacts.php:600 +#: mod/contacts.php:642 msgid "Currently archived" msgstr "Actuellement archivé" -#: mod/contacts.php:601 mod/notifications.php:167 mod/notifications.php:227 +#: mod/contacts.php:643 mod/notifications.php:172 mod/notifications.php:251 msgid "Hide this contact from others" msgstr "Cacher ce contact aux autres" -#: mod/contacts.php:601 +#: mod/contacts.php:643 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Les réponses et \"j'aime\" à vos publications publiques peuvent être toujours visibles" -#: mod/contacts.php:602 +#: mod/contacts.php:644 msgid "Notification for new posts" msgstr "Notification des nouvelles publications" -#: mod/contacts.php:602 +#: mod/contacts.php:644 msgid "Send a notification of every new post of this contact" msgstr "Envoyer une notification de chaque nouveau message en provenance de ce contact" -#: mod/contacts.php:605 +#: mod/contacts.php:647 msgid "Blacklisted keywords" msgstr "Mots-clés sur la liste noire" -#: mod/contacts.php:605 +#: mod/contacts.php:647 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand « Récupérer informations et mots-clés » est sélectionné." -#: mod/contacts.php:612 +#: mod/contacts.php:654 mod/follow.php:121 mod/notifications.php:255 msgid "Profile URL" msgstr "URL du Profil" -#: mod/contacts.php:658 +#: mod/contacts.php:700 msgid "Suggestions" msgstr "Suggestions" -#: mod/contacts.php:661 +#: mod/contacts.php:703 msgid "Suggest potential friends" msgstr "Suggérer des amis potentiels" -#: mod/contacts.php:665 mod/group.php:192 +#: mod/contacts.php:708 mod/group.php:192 msgid "All Contacts" msgstr "Tous les contacts" -#: mod/contacts.php:668 +#: mod/contacts.php:711 msgid "Show all contacts" msgstr "Montrer tous les contacts" -#: mod/contacts.php:672 +#: mod/contacts.php:716 msgid "Unblocked" msgstr "Non-bloqués" -#: mod/contacts.php:675 +#: mod/contacts.php:719 msgid "Only show unblocked contacts" msgstr "Ne montrer que les contacts non-bloqués" -#: mod/contacts.php:680 +#: mod/contacts.php:725 msgid "Blocked" msgstr "Bloqués" -#: mod/contacts.php:683 +#: mod/contacts.php:728 msgid "Only show blocked contacts" msgstr "Ne montrer que les contacts bloqués" -#: mod/contacts.php:688 +#: mod/contacts.php:734 msgid "Ignored" msgstr "Ignorés" -#: mod/contacts.php:691 +#: mod/contacts.php:737 msgid "Only show ignored contacts" msgstr "Ne montrer que les contacts ignorés" -#: mod/contacts.php:696 +#: mod/contacts.php:743 msgid "Archived" msgstr "Archivés" -#: mod/contacts.php:699 +#: mod/contacts.php:746 msgid "Only show archived contacts" msgstr "Ne montrer que les contacts archivés" -#: mod/contacts.php:704 +#: mod/contacts.php:752 msgid "Hidden" msgstr "Cachés" -#: mod/contacts.php:707 +#: mod/contacts.php:755 msgid "Only show hidden contacts" msgstr "Ne montrer que les contacts masqués" -#: mod/contacts.php:758 include/text.php:1005 include/nav.php:124 -#: include/nav.php:186 view/theme/diabook/theme.php:125 +#: mod/contacts.php:808 include/text.php:1012 include/nav.php:123 +#: include/nav.php:187 view/theme/diabook/theme.php:125 msgid "Contacts" msgstr "Contacts" -#: mod/contacts.php:762 +#: mod/contacts.php:812 msgid "Search your contacts" msgstr "Rechercher dans vos contacts" -#: mod/contacts.php:763 mod/directory.php:63 +#: mod/contacts.php:813 msgid "Finding: " msgstr "Trouvé: " -#: mod/contacts.php:764 mod/directory.php:65 include/contact_widgets.php:34 +#: mod/contacts.php:814 mod/directory.php:202 include/contact_widgets.php:34 msgid "Find" msgstr "Trouver" -#: mod/contacts.php:769 mod/settings.php:146 mod/settings.php:658 +#: mod/contacts.php:820 mod/settings.php:146 mod/settings.php:674 msgid "Update" msgstr "Mises-à-jour" -#: mod/contacts.php:773 mod/group.php:171 mod/admin.php:1081 -#: mod/content.php:440 mod/content.php:743 mod/settings.php:695 -#: mod/photos.php:1673 object/Item.php:131 include/conversation.php:613 +#: mod/contacts.php:824 mod/group.php:171 mod/admin.php:1115 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:711 +#: mod/photos.php:1715 object/Item.php:134 include/conversation.php:635 msgid "Delete" msgstr "Supprimer" -#: mod/contacts.php:786 +#: mod/contacts.php:837 msgid "Mutual Friendship" msgstr "Relation réciproque" -#: mod/contacts.php:790 +#: mod/contacts.php:841 msgid "is a fan of yours" msgstr "Vous suit" -#: mod/contacts.php:794 +#: mod/contacts.php:845 msgid "you are a fan of" msgstr "Vous le/la suivez" -#: mod/contacts.php:811 mod/nogroup.php:41 +#: mod/contacts.php:862 mod/nogroup.php:42 msgid "Edit contact" msgstr "Éditer le contact" @@ -466,17 +475,17 @@ msgstr "Éditer le contact" msgid "No profile" msgstr "Aucun profil" -#: mod/manage.php:106 +#: mod/manage.php:139 msgid "Manage Identities and/or Pages" msgstr "Gérer les identités et/ou les pages" -#: mod/manage.php:107 +#: mod/manage.php:140 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer." -#: mod/manage.php:108 +#: mod/manage.php:141 msgid "Select an identity to manage: " msgstr "Choisir une identité à gérer: " @@ -496,8 +505,8 @@ msgstr "Identifiant de profil invalide." msgid "Profile Visibility Editor" msgstr "Éditer la visibilité du profil" -#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:529 -#: include/identity.php:610 include/identity.php:640 include/nav.php:77 +#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:542 +#: include/identity.php:628 include/identity.php:658 include/nav.php:76 #: view/theme/diabook/theme.php:124 msgid "Profile" msgstr "Profil" @@ -514,23 +523,23 @@ msgstr "Visible par" msgid "All Contacts (with secure profile access)" msgstr "Tous les contacts (ayant un accès sécurisé)" -#: mod/display.php:82 mod/display.php:295 mod/display.php:512 -#: mod/viewsrc.php:15 mod/admin.php:173 mod/admin.php:1126 mod/admin.php:1346 -#: mod/notice.php:15 include/items.php:4813 +#: mod/display.php:82 mod/display.php:283 mod/display.php:500 +#: mod/viewsrc.php:15 mod/admin.php:196 mod/admin.php:1160 mod/admin.php:1381 +#: mod/notice.php:15 include/items.php:4832 msgid "Item not found." msgstr "Élément introuvable." -#: mod/display.php:223 mod/videos.php:187 mod/viewcontacts.php:19 -#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93 -#: mod/directory.php:35 mod/photos.php:942 +#: mod/display.php:211 mod/videos.php:189 mod/viewcontacts.php:19 +#: mod/community.php:18 mod/dfrn_request.php:779 mod/search.php:93 +#: mod/search.php:99 mod/directory.php:37 mod/photos.php:968 msgid "Public access denied." msgstr "Accès public refusé." -#: mod/display.php:343 mod/profile.php:155 +#: mod/display.php:331 mod/profile.php:155 msgid "Access to this profile has been restricted." msgstr "L'accès au profil a été restreint." -#: mod/display.php:505 +#: mod/display.php:493 msgid "Item has been removed." msgstr "Cet élément a été enlevé." @@ -565,8 +574,8 @@ msgid "" " join." msgstr "Sur votre page d'accueil, dans Conseils aux nouveaux venus - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre." -#: mod/newmember.php:22 mod/admin.php:1178 mod/admin.php:1406 -#: mod/settings.php:99 include/nav.php:181 view/theme/diabook/theme.php:544 +#: mod/newmember.php:22 mod/admin.php:1212 mod/admin.php:1457 +#: mod/settings.php:99 include/nav.php:182 view/theme/diabook/theme.php:544 #: view/theme/diabook/theme.php:648 msgid "Settings" msgstr "Réglages" @@ -590,7 +599,7 @@ msgid "" "potential friends know exactly how to find you." msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver." -#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:696 +#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:709 msgid "Upload Profile Photo" msgstr "Téléverser une photo de profil" @@ -689,7 +698,7 @@ msgid "" "hours." msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures." -#: mod/newmember.php:66 include/group.php:270 +#: mod/newmember.php:66 include/group.php:283 msgid "Groups" msgstr "Groupes" @@ -747,93 +756,94 @@ msgid "Image uploaded but image cropping failed." msgstr "Image envoyée, mais impossible de la retailler." #: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 -#: mod/profile_photo.php:204 mod/profile_photo.php:296 -#: mod/profile_photo.php:305 mod/photos.php:177 mod/photos.php:753 -#: mod/photos.php:1207 mod/photos.php:1230 include/user.php:343 -#: include/user.php:350 include/user.php:357 view/theme/diabook/theme.php:500 +#: mod/profile_photo.php:210 mod/profile_photo.php:302 +#: mod/profile_photo.php:311 mod/photos.php:70 mod/photos.php:184 +#: mod/photos.php:767 mod/photos.php:1237 mod/photos.php:1260 +#: mod/photos.php:1854 include/user.php:345 include/user.php:352 +#: include/user.php:359 view/theme/diabook/theme.php:500 msgid "Profile Photos" msgstr "Photos du profil" #: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:308 +#: mod/profile_photo.php:314 #, php-format msgid "Image size reduction [%s] failed." msgstr "Réduction de la taille de l'image [%s] échouée." -#: mod/profile_photo.php:118 +#: mod/profile_photo.php:124 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement." -#: mod/profile_photo.php:128 +#: mod/profile_photo.php:134 msgid "Unable to process image" msgstr "Impossible de traiter l'image" -#: mod/profile_photo.php:144 mod/wall_upload.php:137 mod/photos.php:789 +#: mod/profile_photo.php:150 mod/wall_upload.php:151 mod/photos.php:803 #, php-format msgid "Image exceeds size limit of %s" msgstr "L'image dépasse la taille limite de %s" -#: mod/profile_photo.php:153 mod/wall_upload.php:169 mod/photos.php:829 +#: mod/profile_photo.php:159 mod/wall_upload.php:183 mod/photos.php:843 msgid "Unable to process image." msgstr "Impossible de traiter l'image." -#: mod/profile_photo.php:242 +#: mod/profile_photo.php:248 msgid "Upload File:" msgstr "Fichier à téléverser:" -#: mod/profile_photo.php:243 +#: mod/profile_photo.php:249 msgid "Select a profile:" msgstr "Choisir un profil:" -#: mod/profile_photo.php:245 +#: mod/profile_photo.php:251 msgid "Upload" msgstr "Téléverser" -#: mod/profile_photo.php:248 +#: mod/profile_photo.php:254 msgid "or" msgstr "ou" -#: mod/profile_photo.php:248 +#: mod/profile_photo.php:254 msgid "skip this step" msgstr "ignorer cette étape" -#: mod/profile_photo.php:248 +#: mod/profile_photo.php:254 msgid "select a photo from your photo albums" msgstr "choisissez une photo depuis vos albums" -#: mod/profile_photo.php:262 +#: mod/profile_photo.php:268 msgid "Crop Image" msgstr "(Re)cadrer l'image" -#: mod/profile_photo.php:263 +#: mod/profile_photo.php:269 msgid "Please adjust the image cropping for optimum viewing." msgstr "Ajustez le cadre de l'image pour une visualisation optimale." -#: mod/profile_photo.php:265 +#: mod/profile_photo.php:271 msgid "Done Editing" msgstr "Édition terminée" -#: mod/profile_photo.php:299 +#: mod/profile_photo.php:305 msgid "Image uploaded successfully." msgstr "Image téléversée avec succès." -#: mod/profile_photo.php:301 mod/wall_upload.php:202 mod/photos.php:856 +#: mod/profile_photo.php:307 mod/wall_upload.php:216 mod/photos.php:870 msgid "Image upload failed." msgstr "Le téléversement de l'image a échoué." -#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 -#: include/conversation.php:126 include/conversation.php:253 -#: include/text.php:2034 include/diaspora.php:2127 +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 +#: include/conversation.php:130 include/conversation.php:266 +#: include/text.php:1995 include/diaspora.php:2140 #: view/theme/diabook/theme.php:471 msgid "photo" msgstr "photo" -#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 mod/like.php:319 -#: include/conversation.php:121 include/conversation.php:130 -#: include/conversation.php:248 include/conversation.php:257 -#: include/diaspora.php:2127 view/theme/diabook/theme.php:466 +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 mod/like.php:346 +#: include/conversation.php:125 include/conversation.php:134 +#: include/conversation.php:261 include/conversation.php:270 +#: include/diaspora.php:2140 view/theme/diabook/theme.php:466 #: view/theme/diabook/theme.php:475 msgid "status" msgstr "le statut" @@ -859,8 +869,44 @@ msgstr "Sélectionner une étiquette à supprimer: " msgid "Remove" msgstr "Utiliser comme photo de profil" -#: mod/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 +#: mod/ostatus_subscribe.php:14 +msgid "Subsribing to OStatus contacts" +msgstr "" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "" + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "" + +#: mod/ostatus_subscribe.php:51 mod/repair_ostatus.php:44 +msgid "Done" +msgstr "" + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "" + +#: mod/ostatus_subscribe.php:69 object/Item.php:235 +msgid "ignored" +msgstr "ignoré" + +#: mod/ostatus_subscribe.php:73 mod/repair_ostatus.php:50 +msgid "Keep this window open until done." +msgstr "Veuillez garder cette fenêtre ouverte jusqu'à la fin." + +#: mod/filer.php:30 include/conversation.php:1133 +#: include/conversation.php:1151 msgid "Save to Folder:" msgstr "Sauver dans le Dossier:" @@ -868,86 +914,114 @@ msgstr "Sauver dans le Dossier:" msgid "- select -" msgstr "- choisir -" -#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:997 +#: mod/filer.php:31 mod/editpost.php:108 mod/notes.php:61 +#: include/text.php:1004 msgid "Save" msgstr "Sauver" -#: mod/follow.php:24 +#: mod/follow.php:18 mod/dfrn_request.php:863 +msgid "Submit Request" +msgstr "Envoyer la requête" + +#: mod/follow.php:29 msgid "You already added this contact." msgstr "Vous avez déjà ajouté ce contact." -#: mod/follow.php:56 mod/dfrn_request.php:844 +#: mod/follow.php:38 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté." + +#: mod/follow.php:45 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "Le support d'OStatus est désactivé. Le contact ne peut pas être ajouté." + +#: mod/follow.php:52 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté." + +#: mod/follow.php:104 mod/dfrn_request.php:849 msgid "Please answer the following:" msgstr "Merci de répondre à ce qui suit:" -#: mod/follow.php:57 mod/dfrn_request.php:845 +#: mod/follow.php:105 mod/dfrn_request.php:850 #, php-format msgid "Does %s know you?" msgstr "Est-ce que %s vous connaît?" -#: mod/follow.php:57 mod/settings.php:1063 mod/settings.php:1069 -#: mod/settings.php:1077 mod/settings.php:1081 mod/settings.php:1086 -#: mod/settings.php:1092 mod/settings.php:1098 mod/settings.php:1104 -#: mod/settings.php:1130 mod/settings.php:1131 mod/settings.php:1132 -#: mod/settings.php:1133 mod/settings.php:1134 mod/dfrn_request.php:845 -#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662 -#: mod/api.php:106 +#: mod/follow.php:105 mod/settings.php:1091 mod/settings.php:1097 +#: mod/settings.php:1105 mod/settings.php:1109 mod/settings.php:1114 +#: mod/settings.php:1120 mod/settings.php:1126 mod/settings.php:1132 +#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160 +#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:850 +#: mod/register.php:239 mod/profiles.php:658 mod/profiles.php:662 +#: mod/profiles.php:687 mod/api.php:106 msgid "No" msgstr "Non" -#: mod/follow.php:58 mod/dfrn_request.php:849 +#: mod/follow.php:106 mod/dfrn_request.php:854 msgid "Add a personal note:" msgstr "Ajouter une note personnelle:" -#: mod/follow.php:64 mod/dfrn_request.php:855 +#: mod/follow.php:112 mod/dfrn_request.php:860 msgid "Your Identity Address:" msgstr "Votre adresse d'identité:" -#: mod/follow.php:67 mod/dfrn_request.php:858 -msgid "Submit Request" -msgstr "Envoyer la requête" +#: mod/follow.php:125 mod/notifications.php:244 mod/events.php:566 +#: mod/directory.php:139 include/identity.php:278 include/bb2diaspora.php:170 +#: include/event.php:36 include/event.php:60 +msgid "Location:" +msgstr "Localisation:" -#: mod/follow.php:106 +#: mod/follow.php:127 mod/notifications.php:246 mod/directory.php:147 +#: include/identity.php:287 include/identity.php:594 +msgid "About:" +msgstr "À propos:" + +#: mod/follow.php:129 mod/notifications.php:248 include/identity.php:588 +msgid "Tags:" +msgstr "Étiquette:" + +#: mod/follow.php:162 msgid "Contact added" msgstr "Contact ajouté" -#: mod/item.php:115 +#: mod/item.php:114 msgid "Unable to locate original post." msgstr "Impossible de localiser la publication originale." -#: mod/item.php:347 +#: mod/item.php:322 msgid "Empty post discarded." msgstr "Publication vide rejetée." -#: mod/item.php:486 mod/wall_upload.php:199 mod/wall_upload.php:213 -#: mod/wall_upload.php:220 include/Photo.php:951 include/Photo.php:966 -#: include/Photo.php:973 include/Photo.php:995 include/message.php:145 +#: mod/item.php:460 mod/wall_upload.php:213 mod/wall_upload.php:227 +#: mod/wall_upload.php:234 include/Photo.php:954 include/Photo.php:969 +#: include/Photo.php:976 include/Photo.php:998 include/message.php:145 msgid "Wall Photos" msgstr "Photos du mur" -#: mod/item.php:860 +#: mod/item.php:834 msgid "System error. Post not saved." msgstr "Erreur système. Publication non sauvée." -#: mod/item.php:989 +#: mod/item.php:963 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Ce message vous a été envoyé par %s, membre du réseau social Friendica." -#: mod/item.php:991 +#: mod/item.php:965 #, php-format msgid "You may visit them online at %s" msgstr "Vous pouvez leur rendre visite sur %s" -#: mod/item.php:992 +#: mod/item.php:966 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages." -#: mod/item.php:996 +#: mod/item.php:970 #, php-format msgid "%s posted an update." msgstr "%s a publié une mise à jour." @@ -976,7 +1050,7 @@ msgstr "Sauvegarder le groupe" msgid "Create a group of contacts/friends." msgstr "Créez un groupe de contacts/amis." -#: mod/group.php:94 mod/group.php:178 include/group.php:273 +#: mod/group.php:94 mod/group.php:178 include/group.php:289 msgid "Group Name: " msgstr "Nom du groupe: " @@ -1052,8 +1126,8 @@ msgstr "Introduction échouée ou annulée." msgid "Unable to set contact photo." msgstr "Impossible de définir la photo du contact." -#: mod/dfrn_confirm.php:487 include/conversation.php:172 -#: include/diaspora.php:634 +#: mod/dfrn_confirm.php:487 include/conversation.php:185 +#: include/diaspora.php:636 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s est désormais lié à %2$s" @@ -1094,7 +1168,7 @@ msgstr "Impossible de vous définir des permissions sur notre système." msgid "Unable to update your contact profile details on our system" msgstr "Impossible de mettre les détails de votre profil à jour sur notre système" -#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4236 +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:734 include/items.php:4244 msgid "[Name Withheld]" msgstr "[Nom non-publié]" @@ -1103,7 +1177,7 @@ msgstr "[Nom non-publié]" msgid "%1$s has joined %2$s" msgstr "%1$s a rejoint %2$s" -#: mod/profile.php:21 include/identity.php:77 +#: mod/profile.php:21 include/identity.php:82 msgid "Requested profile is not available." msgstr "Le profil demandé n'est pas disponible." @@ -1111,39 +1185,39 @@ msgstr "Le profil demandé n'est pas disponible." msgid "Tips for New Members" msgstr "Conseils aux nouveaux venus" -#: mod/videos.php:113 +#: mod/videos.php:115 msgid "Do you really want to delete this video?" msgstr "Voulez-vous vraiment supprimer cette vidéo?" -#: mod/videos.php:118 +#: mod/videos.php:120 msgid "Delete Video" msgstr "Supprimer la vidéo" -#: mod/videos.php:197 +#: mod/videos.php:199 msgid "No videos selected" msgstr "Pas de vidéo sélectionné" -#: mod/videos.php:298 mod/photos.php:1053 +#: mod/videos.php:300 mod/photos.php:1079 msgid "Access to this item is restricted." msgstr "Accès restreint à cet élément." -#: mod/videos.php:373 include/text.php:1460 +#: mod/videos.php:375 include/text.php:1465 msgid "View Video" msgstr "Regarder la vidéo" -#: mod/videos.php:380 mod/photos.php:1827 +#: mod/videos.php:382 mod/photos.php:1882 msgid "View Album" msgstr "Voir l'album" -#: mod/videos.php:389 +#: mod/videos.php:391 msgid "Recent Videos" msgstr "Vidéos récente" -#: mod/videos.php:391 +#: mod/videos.php:393 msgid "Upload New Videos" msgstr "Téléversé une nouvelle vidéo" -#: mod/tagger.php:95 include/conversation.php:265 +#: mod/tagger.php:95 include/conversation.php:278 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s a étiqueté %3$s de %2$s avec %4$s" @@ -1161,9 +1235,9 @@ msgstr "Suggérer des amis/contacts" msgid "Suggest a friend for %s" msgstr "Suggérer un ami/contact pour %s" -#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76 -#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16 -#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692 +#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 +#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17 +#: mod/wall_attach.php:25 mod/wall_attach.php:76 include/api.php:1711 msgid "Invalid request." msgstr "Requête invalide." @@ -1219,7 +1293,7 @@ msgid "" "Password reset failed." msgstr "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué." -#: mod/lostpass.php:109 boot.php:1287 +#: mod/lostpass.php:109 boot.php:1295 msgid "Password Reset" msgstr "Réinitialiser le mot de passe" @@ -1293,232 +1367,243 @@ msgstr "Pseudo ou eMail : " msgid "Reset" msgstr "Réinitialiser" -#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2143 +#: mod/like.php:170 include/conversation.php:122 include/conversation.php:258 +#: include/text.php:1993 view/theme/diabook/theme.php:463 +msgid "event" +msgstr "évènement" + +#: mod/like.php:187 include/conversation.php:141 include/diaspora.php:2156 #: view/theme/diabook/theme.php:480 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s aime %3$s de %2$s" -#: mod/like.php:168 include/conversation.php:140 +#: mod/like.php:189 include/conversation.php:144 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s n'aime pas %3$s de %2$s" -#: mod/ping.php:233 +#: mod/like.php:191 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s participe à %3$s de %2$s" + +#: mod/like.php:193 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s ne participe pas à %3$s de %2$s" + +#: mod/like.php:195 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s participera peut-être à %3$s de %2$s" + +#: mod/ping.php:273 msgid "{0} wants to be your friend" msgstr "{0} souhaite être votre ami(e)" -#: mod/ping.php:248 +#: mod/ping.php:288 msgid "{0} sent you a message" msgstr "{0} vous a envoyé un message" -#: mod/ping.php:263 +#: mod/ping.php:303 msgid "{0} requested registration" msgstr "{0} a demandé à s'inscrire" -#: mod/viewcontacts.php:41 +#: mod/viewcontacts.php:52 msgid "No contacts." msgstr "Aucun contact." -#: mod/viewcontacts.php:78 include/text.php:917 +#: mod/viewcontacts.php:85 mod/dirfind.php:208 mod/network.php:596 +#: mod/allfriends.php:79 mod/match.php:82 mod/common.php:122 +#: mod/suggest.php:95 +msgid "Forum" +msgstr "Forum" + +#: mod/viewcontacts.php:96 include/text.php:921 msgid "View Contacts" msgstr "Voir les contacts" -#: mod/notifications.php:26 +#: mod/notifications.php:29 msgid "Invalid request identifier." msgstr "Identifiant de demande invalide." -#: mod/notifications.php:35 mod/notifications.php:175 -#: mod/notifications.php:234 +#: mod/notifications.php:38 mod/notifications.php:180 +#: mod/notifications.php:260 msgid "Discard" msgstr "Rejeter" -#: mod/notifications.php:78 +#: mod/notifications.php:81 msgid "System" msgstr "Système" -#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 +#: mod/notifications.php:87 mod/admin.php:228 include/nav.php:154 msgid "Network" msgstr "Réseau" -#: mod/notifications.php:90 mod/network.php:375 +#: mod/notifications.php:93 mod/network.php:381 msgid "Personal" msgstr "Personnel" -#: mod/notifications.php:96 include/nav.php:105 include/nav.php:156 +#: mod/notifications.php:99 include/nav.php:104 include/nav.php:157 #: view/theme/diabook/theme.php:123 msgid "Home" msgstr "Profil" -#: mod/notifications.php:102 include/nav.php:161 +#: mod/notifications.php:105 include/nav.php:162 msgid "Introductions" msgstr "Introductions" -#: mod/notifications.php:127 +#: mod/notifications.php:130 msgid "Show Ignored Requests" msgstr "Voir les demandes ignorées" -#: mod/notifications.php:127 +#: mod/notifications.php:130 msgid "Hide Ignored Requests" msgstr "Cacher les demandes ignorées" -#: mod/notifications.php:159 mod/notifications.php:209 +#: mod/notifications.php:164 mod/notifications.php:234 msgid "Notification type: " msgstr "Type de notification: " -#: mod/notifications.php:160 +#: mod/notifications.php:165 msgid "Friend Suggestion" msgstr "Suggestion d'amitié/contact" -#: mod/notifications.php:162 +#: mod/notifications.php:167 #, php-format msgid "suggested by %s" msgstr "suggéré(e) par %s" -#: mod/notifications.php:168 mod/notifications.php:228 +#: mod/notifications.php:173 mod/notifications.php:252 msgid "Post a new friend activity" msgstr "Poster une nouvelle avtivité d'ami" -#: mod/notifications.php:168 mod/notifications.php:228 +#: mod/notifications.php:173 mod/notifications.php:252 msgid "if applicable" msgstr "si possible" -#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1079 +#: mod/notifications.php:176 mod/notifications.php:257 mod/admin.php:1113 msgid "Approve" msgstr "Approuver" -#: mod/notifications.php:191 +#: mod/notifications.php:196 msgid "Claims to be known to you: " msgstr "Prétend que vous le connaissez: " -#: mod/notifications.php:191 +#: mod/notifications.php:196 msgid "yes" msgstr "oui" -#: mod/notifications.php:191 +#: mod/notifications.php:196 msgid "no" msgstr "non" -#: mod/notifications.php:192 +#: mod/notifications.php:197 msgid "" "Shall your connection be bidirectional or not? \"Friend\" implies that you " "allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " "you allow to read but you do not want to read theirs. Approve as: " msgstr "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:" -#: mod/notifications.php:195 +#: mod/notifications.php:200 msgid "" "Shall your connection be bidirectional or not? \"Friend\" implies that you " "allow to read and you subscribe to their posts. \"Sharer\" means that you " "allow to read but you do not want to read theirs. Approve as: " msgstr "Doit être votre connexion bidirectionnelle ou non? \"Ami\" implique que vous autorisiez à lire et vous vous abonnez à leurs postes. \"Fan / Admirateur\" signifie que vous permettez de lire, mais vous ne voulez pas lire les leurs. Approuver en:" -#: mod/notifications.php:203 +#: mod/notifications.php:208 msgid "Friend" msgstr "Ami" -#: mod/notifications.php:204 +#: mod/notifications.php:209 msgid "Sharer" msgstr "Initiateur du partage" -#: mod/notifications.php:204 +#: mod/notifications.php:209 msgid "Fan/Admirer" msgstr "Fan/Admirateur" -#: mod/notifications.php:210 +#: mod/notifications.php:235 msgid "Friend/Connect Request" msgstr "Demande de connexion/relation" -#: mod/notifications.php:210 +#: mod/notifications.php:235 msgid "New Follower" msgstr "Nouvel abonné" -#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 -#: mod/directory.php:152 include/identity.php:268 include/bb2diaspora.php:170 -#: include/event.php:42 -msgid "Location:" -msgstr "Localisation:" - -#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 -#: include/identity.php:581 -msgid "About:" -msgstr "À propos:" - -#: mod/notifications.php:224 include/identity.php:575 -msgid "Tags:" -msgstr "Étiquette:" - -#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 -#: include/identity.php:540 +#: mod/notifications.php:250 mod/directory.php:141 include/identity.php:280 +#: include/identity.php:553 msgid "Gender:" msgstr "Genre:" -#: mod/notifications.php:240 +#: mod/notifications.php:266 msgid "No introductions." msgstr "Aucune demande d'introduction." -#: mod/notifications.php:243 include/nav.php:164 +#: mod/notifications.php:269 include/nav.php:165 msgid "Notifications" msgstr "Notifications" -#: mod/notifications.php:281 mod/notifications.php:410 -#: mod/notifications.php:501 +#: mod/notifications.php:307 mod/notifications.php:436 +#: mod/notifications.php:527 #, php-format msgid "%s liked %s's post" msgstr "%s a aimé la publication de %s" -#: mod/notifications.php:291 mod/notifications.php:420 -#: mod/notifications.php:511 +#: mod/notifications.php:317 mod/notifications.php:446 +#: mod/notifications.php:537 #, php-format msgid "%s disliked %s's post" msgstr "%s n'a pas aimé la publication de %s" -#: mod/notifications.php:306 mod/notifications.php:435 -#: mod/notifications.php:526 +#: mod/notifications.php:332 mod/notifications.php:461 +#: mod/notifications.php:552 #, php-format msgid "%s is now friends with %s" msgstr "%s est désormais ami(e) avec %s" -#: mod/notifications.php:313 mod/notifications.php:442 +#: mod/notifications.php:339 mod/notifications.php:468 #, php-format msgid "%s created a new post" msgstr "%s a créé une nouvelle publication" -#: mod/notifications.php:314 mod/notifications.php:443 -#: mod/notifications.php:536 +#: mod/notifications.php:340 mod/notifications.php:469 +#: mod/notifications.php:562 #, php-format msgid "%s commented on %s's post" msgstr "%s a commenté la publication de %s" -#: mod/notifications.php:329 +#: mod/notifications.php:355 msgid "No more network notifications." msgstr "Aucune notification du réseau." -#: mod/notifications.php:333 +#: mod/notifications.php:359 msgid "Network Notifications" msgstr "Notifications du réseau" -#: mod/notifications.php:359 mod/notify.php:72 +#: mod/notifications.php:385 mod/notify.php:72 msgid "No more system notifications." msgstr "Pas plus de notifications système." -#: mod/notifications.php:363 mod/notify.php:76 +#: mod/notifications.php:389 mod/notify.php:76 msgid "System Notifications" msgstr "Notifications du système" -#: mod/notifications.php:458 +#: mod/notifications.php:484 msgid "No more personal notifications." msgstr "Aucun notification personnelle." -#: mod/notifications.php:462 +#: mod/notifications.php:488 msgid "Personal Notifications" msgstr "Notifications personnelles" -#: mod/notifications.php:543 +#: mod/notifications.php:569 msgid "No more home notifications." msgstr "Aucune notification de la page d'accueil." -#: mod/notifications.php:547 +#: mod/notifications.php:573 msgid "Home Notifications" msgstr "Notifications de page d'accueil" @@ -1570,146 +1655,146 @@ msgstr "Texte source (format Diaspora) :" msgid "diaspora2bb: " msgstr "diaspora2bb :" -#: mod/navigation.php:20 include/nav.php:34 +#: mod/navigation.php:19 include/nav.php:33 msgid "Nothing new here" msgstr "Rien de neuf ici" -#: mod/navigation.php:24 include/nav.php:38 +#: mod/navigation.php:23 include/nav.php:37 msgid "Clear notifications" msgstr "Effacer les notifications" -#: mod/message.php:9 include/nav.php:173 +#: mod/message.php:15 include/nav.php:174 msgid "New Message" msgstr "Nouveau message" -#: mod/message.php:64 mod/wallmessage.php:56 +#: mod/message.php:70 mod/wallmessage.php:56 msgid "No recipient selected." msgstr "Pas de destinataire sélectionné." -#: mod/message.php:68 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "Impossible de localiser les informations du contact." -#: mod/message.php:71 mod/wallmessage.php:62 +#: mod/message.php:77 mod/wallmessage.php:62 msgid "Message could not be sent." msgstr "Impossible d'envoyer le message." -#: mod/message.php:74 mod/wallmessage.php:65 +#: mod/message.php:80 mod/wallmessage.php:65 msgid "Message collection failure." msgstr "Récupération des messages infructueuse." -#: mod/message.php:77 mod/wallmessage.php:68 +#: mod/message.php:83 mod/wallmessage.php:68 msgid "Message sent." msgstr "Message envoyé." -#: mod/message.php:183 include/nav.php:170 +#: mod/message.php:189 include/nav.php:171 msgid "Messages" msgstr "Messages" -#: mod/message.php:208 +#: mod/message.php:214 msgid "Do you really want to delete this message?" msgstr "Voulez-vous vraiment supprimer ce message ?" -#: mod/message.php:228 +#: mod/message.php:234 msgid "Message deleted." msgstr "Message supprimé." -#: mod/message.php:259 +#: mod/message.php:265 msgid "Conversation removed." msgstr "Conversation supprimée." -#: mod/message.php:284 mod/message.php:292 mod/message.php:467 -#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135 -#: include/conversation.php:1001 include/conversation.php:1019 +#: mod/message.php:290 mod/message.php:298 mod/message.php:427 +#: mod/message.php:435 mod/wallmessage.php:127 mod/wallmessage.php:135 +#: include/conversation.php:1129 include/conversation.php:1147 msgid "Please enter a link URL:" msgstr "Entrez un lien web:" -#: mod/message.php:320 mod/wallmessage.php:142 +#: mod/message.php:326 mod/wallmessage.php:142 msgid "Send Private Message" msgstr "Envoyer un message privé" -#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 +#: mod/message.php:327 mod/message.php:514 mod/wallmessage.php:144 msgid "To:" msgstr "À:" -#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 +#: mod/message.php:332 mod/message.php:516 mod/wallmessage.php:145 msgid "Subject:" msgstr "Sujet:" -#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 +#: mod/message.php:336 mod/message.php:519 mod/wallmessage.php:151 #: mod/invite.php:134 msgid "Your message:" msgstr "Votre message:" -#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 -#: mod/editpost.php:110 include/conversation.php:1056 +#: mod/message.php:339 mod/message.php:523 mod/wallmessage.php:154 +#: mod/editpost.php:109 include/conversation.php:1184 msgid "Upload photo" msgstr "Joindre photo" -#: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155 -#: mod/editpost.php:114 include/conversation.php:1060 +#: mod/message.php:340 mod/message.php:524 mod/wallmessage.php:155 +#: mod/editpost.php:113 include/conversation.php:1188 msgid "Insert web link" msgstr "Insérer lien web" -#: mod/message.php:335 mod/message.php:566 mod/content.php:501 -#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124 -#: mod/photos.php:1564 object/Item.php:366 include/conversation.php:691 -#: include/conversation.php:1074 +#: mod/message.php:341 mod/message.php:526 mod/content.php:501 +#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:123 +#: mod/photos.php:1602 object/Item.php:396 include/conversation.php:713 +#: include/conversation.php:1202 msgid "Please wait" msgstr "Patientez" -#: mod/message.php:372 +#: mod/message.php:368 msgid "No messages." msgstr "Aucun message." -#: mod/message.php:379 -#, php-format -msgid "Unknown sender - %s" -msgstr "Émetteur inconnu - %s" - -#: mod/message.php:382 -#, php-format -msgid "You and %s" -msgstr "Vous et %s" - -#: mod/message.php:385 -#, php-format -msgid "%s and You" -msgstr "%s et vous" - -#: mod/message.php:406 mod/message.php:547 -msgid "Delete conversation" -msgstr "Effacer conversation" - -#: mod/message.php:409 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: mod/message.php:412 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d message" -msgstr[1] "%d messages" - -#: mod/message.php:451 +#: mod/message.php:411 msgid "Message not available." msgstr "Message indisponible." -#: mod/message.php:521 +#: mod/message.php:481 msgid "Delete message" msgstr "Effacer message" -#: mod/message.php:549 +#: mod/message.php:507 mod/message.php:582 +msgid "Delete conversation" +msgstr "Effacer conversation" + +#: mod/message.php:509 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur." -#: mod/message.php:553 +#: mod/message.php:513 msgid "Send Reply" msgstr "Répondre" +#: mod/message.php:555 +#, php-format +msgid "Unknown sender - %s" +msgstr "Émetteur inconnu - %s" + +#: mod/message.php:558 +#, php-format +msgid "You and %s" +msgstr "Vous et %s" + +#: mod/message.php:561 +#, php-format +msgid "%s and You" +msgstr "%s et vous" + +#: mod/message.php:585 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:588 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d message" +msgstr[1] "%d messages" + #: mod/update_display.php:22 mod/update_community.php:18 #: mod/update_notes.php:37 mod/update_profile.php:41 mod/update_network.php:25 msgid "[Embedded content - reload page to view]" @@ -1724,80 +1809,80 @@ msgid "Contact update failed." msgstr "Impossible d'appliquer les réglages." #: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "Réglages de réparation des contacts" - -#: mod/crepair.php:142 msgid "" "WARNING: This is highly advanced and if you enter incorrect" " information your communications with this contact may stop working." msgstr "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact." -#: mod/crepair.php:143 +#: mod/crepair.php:141 msgid "" "Please use your browser 'Back' button now if you are " "uncertain what to do on this page." msgstr "une photo" -#: mod/crepair.php:149 -msgid "Return to contact editor" -msgstr "Retour à l'éditeur de contact" - -#: mod/crepair.php:160 mod/crepair.php:162 +#: mod/crepair.php:154 mod/crepair.php:156 msgid "No mirroring" msgstr "Pas de miroir" -#: mod/crepair.php:160 +#: mod/crepair.php:154 msgid "Mirror as forwarded posting" msgstr "" -#: mod/crepair.php:160 mod/crepair.php:162 +#: mod/crepair.php:154 mod/crepair.php:156 msgid "Mirror as my own posting" msgstr "" -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "" +#: mod/crepair.php:162 +msgid "Repair Contact Settings" +msgstr "Réglages de réparation des contacts" -#: mod/crepair.php:170 mod/admin.php:1077 mod/admin.php:1089 -#: mod/admin.php:1090 mod/admin.php:1103 mod/settings.php:634 -#: mod/settings.php:660 +#: mod/crepair.php:166 +msgid "Return to contact editor" +msgstr "Retour à l'éditeur de contact" + +#: mod/crepair.php:168 +msgid "Refetch contact data" +msgstr "Récupérer à nouveau les données de contact" + +#: mod/crepair.php:169 mod/admin.php:1111 mod/admin.php:1123 +#: mod/admin.php:1124 mod/admin.php:1137 mod/settings.php:650 +#: mod/settings.php:676 msgid "Name" msgstr "Nom" -#: mod/crepair.php:171 +#: mod/crepair.php:170 msgid "Account Nickname" msgstr "Pseudo du compte" -#: mod/crepair.php:172 +#: mod/crepair.php:171 msgid "@Tagname - overrides Name/Nickname" msgstr "@NomEtiquette - prend le pas sur Nom/Pseudo" -#: mod/crepair.php:173 +#: mod/crepair.php:172 msgid "Account URL" msgstr "URL du compte" -#: mod/crepair.php:174 +#: mod/crepair.php:173 msgid "Friend Request URL" msgstr "Echec du téléversement de l'image." -#: mod/crepair.php:175 +#: mod/crepair.php:174 msgid "Friend Confirm URL" msgstr "Accès public refusé." -#: mod/crepair.php:176 +#: mod/crepair.php:175 msgid "Notification Endpoint URL" msgstr "Aucune photo sélectionnée" -#: mod/crepair.php:177 +#: mod/crepair.php:176 msgid "Poll/Feed URL" msgstr "Téléverser des photos" -#: mod/crepair.php:178 +#: mod/crepair.php:177 msgid "New photo from this URL" msgstr "Nouvelle photo depuis cette URL" -#: mod/crepair.php:179 +#: mod/crepair.php:178 msgid "Remote Self" msgstr "" @@ -1805,576 +1890,607 @@ msgstr "" msgid "Mirror postings from this contact" msgstr "" -#: mod/crepair.php:181 +#: mod/crepair.php:183 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." -msgstr "" +msgstr "Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact." -#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 +#: mod/bookmarklet.php:12 boot.php:1281 include/nav.php:91 msgid "Login" msgstr "Connexion" #: mod/bookmarklet.php:41 msgid "The post was created" -msgstr "" +msgstr "La publication a été créée" #: mod/viewsrc.php:7 msgid "Access denied." msgstr "Accès refusé." -#: mod/dirfind.php:36 -#, php-format -msgid "People Search - %s" -msgstr "" - -#: mod/dirfind.php:125 mod/match.php:65 mod/suggest.php:92 -#: include/contact_widgets.php:10 include/identity.php:188 +#: mod/dirfind.php:188 mod/allfriends.php:82 mod/match.php:85 +#: mod/suggest.php:98 include/contact_widgets.php:10 include/identity.php:193 msgid "Connect" msgstr "Relier" -#: mod/dirfind.php:139 mod/match.php:73 +#: mod/dirfind.php:189 mod/allfriends.php:66 mod/match.php:70 +#: mod/directory.php:156 mod/suggest.php:81 include/Contact.php:307 +#: include/Contact.php:320 include/Contact.php:362 +#: include/conversation.php:912 include/conversation.php:926 +msgid "View Profile" +msgstr "Voir le profil" + +#: mod/dirfind.php:218 +#, php-format +msgid "People Search - %s" +msgstr "Recherche de personne - %s" + +#: mod/dirfind.php:225 mod/match.php:105 msgid "No matches" msgstr "Aucune correspondance" -#: mod/fbrowser.php:32 include/identity.php:648 include/nav.php:78 +#: mod/fbrowser.php:32 include/identity.php:666 include/nav.php:77 #: view/theme/diabook/theme.php:126 msgid "Photos" msgstr "Photos" -#: mod/fbrowser.php:122 +#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:54 +#: mod/photos.php:184 mod/photos.php:1111 mod/photos.php:1237 +#: mod/photos.php:1260 mod/photos.php:1830 mod/photos.php:1842 +#: view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Photos du contact" + +#: mod/fbrowser.php:125 msgid "Files" msgstr "Fichiers" -#: mod/nogroup.php:59 +#: mod/nogroup.php:63 msgid "Contacts who are not members of a group" msgstr "Contacts qui n’appartiennent à aucun groupe" -#: mod/admin.php:57 +#: mod/admin.php:80 msgid "Theme settings updated." msgstr "Réglages du thème sauvés." -#: mod/admin.php:104 mod/admin.php:682 +#: mod/admin.php:127 mod/admin.php:711 msgid "Site" msgstr "Site" -#: mod/admin.php:105 mod/admin.php:628 mod/admin.php:1072 mod/admin.php:1087 +#: mod/admin.php:128 mod/admin.php:655 mod/admin.php:1106 mod/admin.php:1121 msgid "Users" msgstr "Utilisateurs" -#: mod/admin.php:106 mod/admin.php:1176 mod/admin.php:1236 mod/settings.php:66 +#: mod/admin.php:129 mod/admin.php:1210 mod/admin.php:1270 mod/settings.php:66 msgid "Plugins" msgstr "Extensions" -#: mod/admin.php:107 mod/admin.php:1404 mod/admin.php:1438 +#: mod/admin.php:130 mod/admin.php:1455 mod/admin.php:1506 msgid "Themes" msgstr "Thèmes" -#: mod/admin.php:108 +#: mod/admin.php:131 msgid "DB updates" msgstr "Mise-à-jour de la base" -#: mod/admin.php:109 mod/admin.php:200 +#: mod/admin.php:132 mod/admin.php:223 msgid "Inspect Queue" -msgstr "" +msgstr "Inspecter la file d'attente" -#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1525 +#: mod/admin.php:147 mod/admin.php:156 mod/admin.php:1594 msgid "Logs" msgstr "Journaux" -#: mod/admin.php:125 +#: mod/admin.php:148 msgid "probe address" msgstr "" -#: mod/admin.php:126 +#: mod/admin.php:149 msgid "check webfinger" -msgstr "" +msgstr "vérification de webfinger" -#: mod/admin.php:131 include/nav.php:193 +#: mod/admin.php:154 include/nav.php:194 msgid "Admin" msgstr "Admin" -#: mod/admin.php:132 +#: mod/admin.php:155 msgid "Plugin Features" msgstr "Propriétés des extensions" -#: mod/admin.php:134 +#: mod/admin.php:157 msgid "diagnostics" -msgstr "" +msgstr "diagnostic" -#: mod/admin.php:135 +#: mod/admin.php:158 msgid "User registrations waiting for confirmation" msgstr "Inscriptions en attente de confirmation" -#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:681 mod/admin.php:1071 -#: mod/admin.php:1175 mod/admin.php:1235 mod/admin.php:1403 mod/admin.php:1437 -#: mod/admin.php:1524 +#: mod/admin.php:222 mod/admin.php:272 mod/admin.php:710 mod/admin.php:1105 +#: mod/admin.php:1209 mod/admin.php:1269 mod/admin.php:1454 mod/admin.php:1505 +#: mod/admin.php:1593 msgid "Administration" msgstr "Administration" -#: mod/admin.php:202 +#: mod/admin.php:225 msgid "ID" -msgstr "" +msgstr "ID" -#: mod/admin.php:203 +#: mod/admin.php:226 msgid "Recipient Name" -msgstr "" +msgstr "Nom du destinataire" -#: mod/admin.php:204 +#: mod/admin.php:227 msgid "Recipient Profile" -msgstr "" +msgstr "Profil du destinataire" -#: mod/admin.php:206 +#: mod/admin.php:229 msgid "Created" -msgstr "" +msgstr "Créé" -#: mod/admin.php:207 +#: mod/admin.php:230 msgid "Last Tried" -msgstr "" +msgstr "Dernier essai" -#: mod/admin.php:208 +#: mod/admin.php:231 msgid "" "This page lists the content of the queue for outgoing postings. These are " "postings the initial delivery failed for. They will be resend later and " "eventually deleted if the delivery fails permanently." -msgstr "" +msgstr "Cette page présente le contenu de la file d'attente pour les publications sortantes. Ce sont des messages dont la première livraison a échoué. Ils seront réenvoyés plus tard et éventuellement supprimés si l'envoi échoue de façon permanente." -#: mod/admin.php:220 mod/admin.php:1025 +#: mod/admin.php:243 mod/admin.php:1059 msgid "Normal Account" msgstr "Compte normal" -#: mod/admin.php:221 mod/admin.php:1026 +#: mod/admin.php:244 mod/admin.php:1060 msgid "Soapbox Account" msgstr "Compte \"boîte à savon\"" -#: mod/admin.php:222 mod/admin.php:1027 +#: mod/admin.php:245 mod/admin.php:1061 msgid "Community/Celebrity Account" msgstr "Compte de communauté/célébrité" -#: mod/admin.php:223 mod/admin.php:1028 +#: mod/admin.php:246 mod/admin.php:1062 msgid "Automatic Friend Account" msgstr "Compte auto-amical" -#: mod/admin.php:224 +#: mod/admin.php:247 msgid "Blog Account" msgstr "Compte de blog" -#: mod/admin.php:225 +#: mod/admin.php:248 msgid "Private Forum" msgstr "Forum privé" -#: mod/admin.php:244 +#: mod/admin.php:267 msgid "Message queues" msgstr "Files d'attente des messages" -#: mod/admin.php:250 +#: mod/admin.php:273 msgid "Summary" msgstr "Résumé" -#: mod/admin.php:252 +#: mod/admin.php:275 msgid "Registered users" msgstr "Utilisateurs inscrits" -#: mod/admin.php:254 +#: mod/admin.php:277 msgid "Pending registrations" msgstr "Inscriptions en attente" -#: mod/admin.php:255 +#: mod/admin.php:278 msgid "Version" msgstr "Versio" -#: mod/admin.php:260 +#: mod/admin.php:283 msgid "Active plugins" msgstr "Extensions activés" -#: mod/admin.php:283 +#: mod/admin.php:306 msgid "Can not parse base url. Must have at least ://" msgstr "Impossible d'analyser l'URL de base. Doit contenir au moins ://" -#: mod/admin.php:565 +#: mod/admin.php:587 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "RINO2 a besoin du module php mcrypt pour fonctionner." + +#: mod/admin.php:595 msgid "Site settings updated." msgstr "Réglages du site mis-à-jour." -#: mod/admin.php:594 mod/settings.php:880 +#: mod/admin.php:619 mod/settings.php:901 msgid "No special theme for mobile devices" msgstr "Pas de thème particulier pour les terminaux mobiles" -#: mod/admin.php:611 +#: mod/admin.php:638 msgid "No community page" -msgstr "" +msgstr "Aucune page de communauté" -#: mod/admin.php:612 +#: mod/admin.php:639 msgid "Public postings from users of this site" -msgstr "" +msgstr "Publications publiques des utilisateurs de ce site" -#: mod/admin.php:613 +#: mod/admin.php:640 msgid "Global community page" -msgstr "" +msgstr "Page de la communauté globale" -#: mod/admin.php:619 +#: mod/admin.php:646 msgid "At post arrival" msgstr "A l'arrivé d'une publication" -#: mod/admin.php:620 include/contact_selectors.php:56 +#: mod/admin.php:647 include/contact_selectors.php:56 msgid "Frequently" msgstr "Fréquemment" -#: mod/admin.php:621 include/contact_selectors.php:57 +#: mod/admin.php:648 include/contact_selectors.php:57 msgid "Hourly" msgstr "Toutes les heures" -#: mod/admin.php:622 include/contact_selectors.php:58 +#: mod/admin.php:649 include/contact_selectors.php:58 msgid "Twice daily" msgstr "Deux fois par jour" -#: mod/admin.php:623 include/contact_selectors.php:59 +#: mod/admin.php:650 include/contact_selectors.php:59 msgid "Daily" msgstr "Chaque jour" -#: mod/admin.php:629 +#: mod/admin.php:656 msgid "Users, Global Contacts" msgstr "" -#: mod/admin.php:630 +#: mod/admin.php:657 msgid "Users, Global Contacts/fallback" msgstr "" -#: mod/admin.php:634 +#: mod/admin.php:661 msgid "One month" msgstr "Un mois" -#: mod/admin.php:635 +#: mod/admin.php:662 msgid "Three months" msgstr "Trois mois" -#: mod/admin.php:636 +#: mod/admin.php:663 msgid "Half a year" -msgstr "" +msgstr "Six mois" -#: mod/admin.php:637 +#: mod/admin.php:664 msgid "One year" msgstr "Un an" -#: mod/admin.php:642 +#: mod/admin.php:669 msgid "Multi user instance" msgstr "Instance multi-utilisateurs" -#: mod/admin.php:665 +#: mod/admin.php:692 msgid "Closed" msgstr "Fermé" -#: mod/admin.php:666 +#: mod/admin.php:693 msgid "Requires approval" msgstr "Demande une apptrobation" -#: mod/admin.php:667 +#: mod/admin.php:694 msgid "Open" msgstr "Ouvert" -#: mod/admin.php:671 +#: mod/admin.php:698 msgid "No SSL policy, links will track page SSL state" msgstr "Pas de politique SSL, le liens conserveront l'état SSL de la page" -#: mod/admin.php:672 +#: mod/admin.php:699 msgid "Force all links to use SSL" msgstr "Forcer tous les liens à utiliser SSL" -#: mod/admin.php:673 +#: mod/admin.php:700 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)" -#: mod/admin.php:683 mod/admin.php:1237 mod/admin.php:1439 mod/admin.php:1526 -#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:781 -#: mod/settings.php:850 mod/settings.php:932 mod/settings.php:1162 +#: mod/admin.php:712 mod/admin.php:1271 mod/admin.php:1507 mod/admin.php:1595 +#: mod/settings.php:648 mod/settings.php:758 mod/settings.php:802 +#: mod/settings.php:871 mod/settings.php:957 mod/settings.php:1192 msgid "Save Settings" msgstr "Sauvegarder les paramétres" -#: mod/admin.php:684 mod/register.php:260 +#: mod/admin.php:713 mod/register.php:263 msgid "Registration" msgstr "Inscription" -#: mod/admin.php:685 +#: mod/admin.php:714 msgid "File upload" msgstr "Téléversement de fichier" -#: mod/admin.php:686 +#: mod/admin.php:715 msgid "Policies" msgstr "Politiques" -#: mod/admin.php:687 +#: mod/admin.php:716 msgid "Advanced" msgstr "Avancé" -#: mod/admin.php:688 +#: mod/admin.php:717 msgid "Auto Discovered Contact Directory" msgstr "" -#: mod/admin.php:689 +#: mod/admin.php:718 msgid "Performance" msgstr "Performance" -#: mod/admin.php:690 +#: mod/admin.php:719 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible." -#: mod/admin.php:693 +#: mod/admin.php:722 msgid "Site name" msgstr "Nom du site" -#: mod/admin.php:694 +#: mod/admin.php:723 msgid "Host name" msgstr "Nom de la machine hôte" -#: mod/admin.php:695 +#: mod/admin.php:724 msgid "Sender Email" -msgstr "" +msgstr "Courriel de l'émetteur" -#: mod/admin.php:696 +#: mod/admin.php:724 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "L'adresse courriel à partir de laquelle votre serveur enverra des courriels." + +#: mod/admin.php:725 msgid "Banner/Logo" msgstr "Bannière/Logo" -#: mod/admin.php:697 +#: mod/admin.php:726 msgid "Shortcut icon" -msgstr "" +msgstr "Icône de raccourci" -#: mod/admin.php:698 +#: mod/admin.php:726 +msgid "Link to an icon that will be used for browsers." +msgstr "Lien vers une icône qui sera utilisée pour les navigateurs." + +#: mod/admin.php:727 msgid "Touch icon" msgstr "" -#: mod/admin.php:699 +#: mod/admin.php:727 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Lien vers une icône qui sera utilisée pour les tablettes et les mobiles." + +#: mod/admin.php:728 msgid "Additional Info" msgstr "Informations supplémentaires" -#: mod/admin.php:699 +#: mod/admin.php:728 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/siteinfo." -msgstr "" +msgstr "Pour les serveurs publics : vous pouvez ajouter des informations supplémentaires ici, qui figureront dans %s/siteinfo." -#: mod/admin.php:700 +#: mod/admin.php:729 msgid "System language" msgstr "Langue du système" -#: mod/admin.php:701 +#: mod/admin.php:730 msgid "System theme" msgstr "Thème du système" -#: mod/admin.php:701 +#: mod/admin.php:730 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - changer les réglages du thème" -#: mod/admin.php:702 +#: mod/admin.php:731 msgid "Mobile system theme" msgstr "Thème mobile" -#: mod/admin.php:702 +#: mod/admin.php:731 msgid "Theme for mobile devices" msgstr "Thème pour les terminaux mobiles" -#: mod/admin.php:703 +#: mod/admin.php:732 msgid "SSL link policy" msgstr "Politique SSL pour les liens" -#: mod/admin.php:703 +#: mod/admin.php:732 msgid "Determines whether generated links should be forced to use SSL" msgstr "Détermine si les liens générés doivent forcer l'utilisation de SSL" -#: mod/admin.php:704 +#: mod/admin.php:733 msgid "Force SSL" msgstr "SSL obligatoire" -#: mod/admin.php:704 +#: mod/admin.php:733 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Redirige toutes les requêtes en clair vers des requêtes SSL. Attention : sur certains systèmes cela peut conduire à des boucles de redirection infinies." -#: mod/admin.php:705 +#: mod/admin.php:734 msgid "Old style 'Share'" msgstr "Anciens style 'Partage'" -#: mod/admin.php:705 +#: mod/admin.php:734 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "Désactive l'élément 'partage' de bbcode pour répéter les articles." -#: mod/admin.php:706 +#: mod/admin.php:735 msgid "Hide help entry from navigation menu" msgstr "Cacher l'aide du menu de navigation" -#: mod/admin.php:706 +#: mod/admin.php:735 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help." -#: mod/admin.php:707 +#: mod/admin.php:736 msgid "Single user instance" msgstr "Instance mono-utilisateur" -#: mod/admin.php:707 +#: mod/admin.php:736 msgid "Make this instance multi-user or single-user for the named user" msgstr "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur." -#: mod/admin.php:708 +#: mod/admin.php:737 msgid "Maximum image size" msgstr "Taille maximale des images" -#: mod/admin.php:708 +#: mod/admin.php:737 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"." -#: mod/admin.php:709 +#: mod/admin.php:738 msgid "Maximum image length" msgstr "Longueur maximale des images" -#: mod/admin.php:709 +#: mod/admin.php:738 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Longueur maximale (en pixels) du plus long côté des images téléversées. La valeur par défaut est -1, soit une absence de limite." -#: mod/admin.php:710 +#: mod/admin.php:739 msgid "JPEG image quality" msgstr "Qualité JPEG des images" -#: mod/admin.php:710 +#: mod/admin.php:739 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale." -#: mod/admin.php:712 +#: mod/admin.php:741 msgid "Register policy" msgstr "Politique d'inscription" -#: mod/admin.php:713 +#: mod/admin.php:742 msgid "Maximum Daily Registrations" msgstr "Inscriptions maximum par jour" -#: mod/admin.php:713 +#: mod/admin.php:742 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet." -#: mod/admin.php:714 +#: mod/admin.php:743 msgid "Register text" msgstr "Texte d'inscription" -#: mod/admin.php:714 +#: mod/admin.php:743 msgid "Will be displayed prominently on the registration page." msgstr "Sera affiché de manière bien visible sur la page d'accueil." -#: mod/admin.php:715 +#: mod/admin.php:744 msgid "Accounts abandoned after x days" msgstr "Les comptes sont abandonnés après x jours" -#: mod/admin.php:715 +#: mod/admin.php:744 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction." -#: mod/admin.php:716 +#: mod/admin.php:745 msgid "Allowed friend domains" msgstr "Domaines autorisés" -#: mod/admin.php:716 +#: mod/admin.php:745 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines" -#: mod/admin.php:717 +#: mod/admin.php:746 msgid "Allowed email domains" msgstr "Domaines courriel autorisés" -#: mod/admin.php:717 +#: mod/admin.php:746 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Liste de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines" -#: mod/admin.php:718 +#: mod/admin.php:747 msgid "Block public" msgstr "Interdire la publication globale" -#: mod/admin.php:718 +#: mod/admin.php:747 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques." -#: mod/admin.php:719 +#: mod/admin.php:748 msgid "Force publish" msgstr "Forcer la publication globale" -#: mod/admin.php:719 +#: mod/admin.php:748 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site." -#: mod/admin.php:720 -msgid "Global directory update URL" -msgstr "URL de mise-à-jour de l'annuaire global" +#: mod/admin.php:749 +msgid "Global directory URL" +msgstr "URL de l'annuaire global" -#: mod/admin.php:720 +#: mod/admin.php:749 msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible." +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "URL de l'annuaire global. Si ce champ n'est pas défini, l'annuaire global sera complètement indisponible pour l'application." -#: mod/admin.php:721 +#: mod/admin.php:750 msgid "Allow threaded items" msgstr "autoriser le suivi des éléments par fil conducteur" -#: mod/admin.php:721 +#: mod/admin.php:750 msgid "Allow infinite level threading for items on this site." msgstr "Permettre une imbrication infinie des commentaires." -#: mod/admin.php:722 +#: mod/admin.php:751 msgid "Private posts by default for new users" msgstr "Publications privées par défaut pour les nouveaux utilisateurs" -#: mod/admin.php:722 +#: mod/admin.php:751 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde." -#: mod/admin.php:723 +#: mod/admin.php:752 msgid "Don't include post content in email notifications" msgstr "Ne pas inclure le contenu posté dans l'e-mail de notification" -#: mod/admin.php:723 +#: mod/admin.php:752 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "Ne pas inclure le contenu de publication/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité." -#: mod/admin.php:724 +#: mod/admin.php:753 msgid "Disallow public access to addons listed in the apps menu." msgstr "Interdire l’accès public pour les greffons listées dans le menu apps." -#: mod/admin.php:724 +#: mod/admin.php:753 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Cocher cette case restreint la liste des greffons dans le menu des applications seulement aux membres." -#: mod/admin.php:725 +#: mod/admin.php:754 msgid "Don't embed private images in posts" msgstr "Ne pas miniaturiser les images privées dans les publications" -#: mod/admin.php:725 +#: mod/admin.php:754 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -2382,190 +2498,218 @@ msgid "" "while." msgstr "Ne remplacez pas les images privées hébergées localement dans les publications avec une image attaché en copie, car cela signifie que le contact qui reçoit les publications contenant ces photos privées devra s’authentifier pour charger chaque image, ce qui peut prendre du temps." -#: mod/admin.php:726 +#: mod/admin.php:755 msgid "Allow Users to set remote_self" msgstr "Autoriser les utilisateurs à définir remote_self" -#: mod/admin.php:726 +#: mod/admin.php:755 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d'un contact dans le flux d'activités des utilisateurs." -#: mod/admin.php:727 +#: mod/admin.php:756 msgid "Block multiple registrations" msgstr "Interdire les inscriptions multiples" -#: mod/admin.php:727 +#: mod/admin.php:756 msgid "Disallow users to register additional accounts for use as pages." msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages." -#: mod/admin.php:728 +#: mod/admin.php:757 msgid "OpenID support" msgstr "Support OpenID" -#: mod/admin.php:728 +#: mod/admin.php:757 msgid "OpenID support for registration and logins." msgstr "Supporter OpenID pour les inscriptions et connexions." -#: mod/admin.php:729 +#: mod/admin.php:758 msgid "Fullname check" msgstr "Vérification du \"Prénom Nom\"" -#: mod/admin.php:729 +#: mod/admin.php:758 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus" -#: mod/admin.php:730 +#: mod/admin.php:759 msgid "UTF-8 Regular expressions" msgstr "Regex UTF-8" -#: mod/admin.php:730 +#: mod/admin.php:759 msgid "Use PHP UTF8 regular expressions" msgstr "Utiliser les expressions rationnelles de PHP en UTF8" -#: mod/admin.php:731 +#: mod/admin.php:760 msgid "Community Page Style" -msgstr "" +msgstr "Style de la page de communauté" -#: mod/admin.php:731 +#: mod/admin.php:760 msgid "" "Type of community page to show. 'Global community' shows every public " "posting from an open distributed network that arrived on this server." -msgstr "" +msgstr "Type de page de la communauté à afficher. « Communauté globale » montre toutes les publications publiques des réseaux distribués ouverts qui arrivent sur ce serveur." -#: mod/admin.php:732 +#: mod/admin.php:761 msgid "Posts per user on community page" -msgstr "" +msgstr "Nombre de publications par utilisateur sur la page de la communauté (n'est pas valide pour " -#: mod/admin.php:732 +#: mod/admin.php:761 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" -msgstr "" +msgstr "Nombre maximal de publications par utilisateurs sur la page de la communauté (ne s'applique pas pour « Communauté globale »)." -#: mod/admin.php:733 +#: mod/admin.php:762 msgid "Enable OStatus support" msgstr "Activer le support d'OStatus" -#: mod/admin.php:733 +#: mod/admin.php:762 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile." -#: mod/admin.php:734 +#: mod/admin.php:763 msgid "OStatus conversation completion interval" msgstr "Achèvement de l'intervalle de conversation OStatus " -#: mod/admin.php:734 +#: mod/admin.php:763 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "Combien de fois le poller devra vérifier les nouvelles entrées dans les conversations OStatus? Cela peut utilisé beaucoup de ressources." -#: mod/admin.php:735 +#: mod/admin.php:764 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "Le support OStatus ne peut être activé que si l'imbrication des commentaires est activée." + +#: mod/admin.php:766 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "Le support de Diaspora ne peut pas être activé parce que Friendica a été installé dans un sous-répertoire." + +#: mod/admin.php:767 msgid "Enable Diaspora support" msgstr "Activer le support de Diaspora" -#: mod/admin.php:735 +#: mod/admin.php:767 msgid "Provide built-in Diaspora network compatibility." msgstr "Fournir une compatibilité Diaspora intégrée." -#: mod/admin.php:736 +#: mod/admin.php:768 msgid "Only allow Friendica contacts" msgstr "N'autoriser que les contacts Friendica" -#: mod/admin.php:736 +#: mod/admin.php:768 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés." -#: mod/admin.php:737 +#: mod/admin.php:769 msgid "Verify SSL" msgstr "Vérifier SSL" -#: mod/admin.php:737 +#: mod/admin.php:769 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé." -#: mod/admin.php:738 +#: mod/admin.php:770 msgid "Proxy user" msgstr "Utilisateur du proxy" -#: mod/admin.php:739 +#: mod/admin.php:771 msgid "Proxy URL" msgstr "URL du proxy" -#: mod/admin.php:740 +#: mod/admin.php:772 msgid "Network timeout" msgstr "Dépassement du délai d'attente du réseau" -#: mod/admin.php:740 +#: mod/admin.php:772 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)." -#: mod/admin.php:741 +#: mod/admin.php:773 msgid "Delivery interval" msgstr "Intervalle de transmission" -#: mod/admin.php:741 +#: mod/admin.php:773 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 "Rallonge le processus de transmissions pour réduire la charge système (en secondes). Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS, 0-1 pour les gros servers dédiés." -#: mod/admin.php:742 +#: mod/admin.php:774 msgid "Poll interval" msgstr "Intervalle de réception" -#: mod/admin.php:742 +#: mod/admin.php:774 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission." -#: mod/admin.php:743 +#: mod/admin.php:775 msgid "Maximum Load Average" msgstr "Plafond de la charge moyenne" -#: mod/admin.php:743 +#: mod/admin.php:775 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50." -#: mod/admin.php:744 +#: mod/admin.php:776 msgid "Maximum Load Average (Frontend)" -msgstr "" +msgstr "Plafond de la charge moyenne (frontale)" -#: mod/admin.php:744 +#: mod/admin.php:776 msgid "Maximum system load before the frontend quits service - default 50." msgstr "" -#: mod/admin.php:746 -msgid "Periodical check of global contacts" +#: mod/admin.php:777 +msgid "Maximum table size for optimization" msgstr "" -#: mod/admin.php:746 +#: mod/admin.php:777 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "" + +#: mod/admin.php:779 +msgid "Periodical check of global contacts" +msgstr "Vérification périodique des contacts globaux" + +#: mod/admin.php:779 msgid "" "If enabled, the global contacts are checked periodically for missing or " "outdated data and the vitality of the contacts and servers." -msgstr "" +msgstr "Si activé, les données manquantes et obsolètes et la vitalité des contacts et des serveurs seront vérifiées périodiquement dans les contacts globaux." -#: mod/admin.php:747 +#: mod/admin.php:780 +msgid "Days between requery" +msgstr "Nombre de jours entre les requêtes" + +#: mod/admin.php:780 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "Nombre de jours avant qu'une requête de contacts soient envoyée à nouveau à un serveur." + +#: mod/admin.php:781 msgid "Discover contacts from other servers" -msgstr "" +msgstr "Découvrir des contacts des autres serveurs" -#: mod/admin.php:747 +#: mod/admin.php:781 msgid "" "Periodically query other servers for contacts. You can choose between " "'users': the users on the remote system, 'Global Contacts': active contacts " @@ -2575,32 +2719,32 @@ msgid "" "Global Contacts'." msgstr "" -#: mod/admin.php:748 +#: mod/admin.php:782 msgid "Timeframe for fetching global contacts" msgstr "" -#: mod/admin.php:748 +#: mod/admin.php:782 msgid "" "When the discovery is activated, this value defines the timeframe for the " "activity of the global contacts that are fetched from other servers." msgstr "" -#: mod/admin.php:749 +#: mod/admin.php:783 msgid "Search the local directory" msgstr "" -#: mod/admin.php:749 +#: mod/admin.php:783 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "" -#: mod/admin.php:751 +#: mod/admin.php:785 msgid "Publish server information" msgstr "" -#: mod/admin.php:751 +#: mod/admin.php:785 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -2608,205 +2752,205 @@ msgid "" " href='http://the-federation.info/'>the-federation.info for details." msgstr "" -#: mod/admin.php:753 +#: mod/admin.php:787 msgid "Use MySQL full text engine" msgstr "Utiliser le moteur de recherche plein texte de MySQL" -#: mod/admin.php:753 +#: mod/admin.php:787 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus." -#: mod/admin.php:754 +#: mod/admin.php:788 msgid "Suppress Language" msgstr "Supprimer un langage" -#: mod/admin.php:754 +#: mod/admin.php:788 msgid "Suppress language information in meta information about a posting." msgstr "Supprimer les informations de langue dans les métadonnées des publications." -#: mod/admin.php:755 +#: mod/admin.php:789 msgid "Suppress Tags" msgstr "" -#: mod/admin.php:755 +#: mod/admin.php:789 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: mod/admin.php:756 +#: mod/admin.php:790 msgid "Path to item cache" msgstr "Chemin vers le cache des objets." -#: mod/admin.php:756 +#: mod/admin.php:790 msgid "The item caches buffers generated bbcode and external images." msgstr "" -#: mod/admin.php:757 +#: mod/admin.php:791 msgid "Cache duration in seconds" msgstr "Durée du cache en secondes" -#: mod/admin.php:757 +#: mod/admin.php:791 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One" " day). To disable the item cache, set the value to -1." msgstr "Combien de temps les fichiers de cache doivent être maintenu? La valeur par défaut est 86400 secondes (une journée). Pour désactiver le cache de l'item, définissez la valeur à -1." -#: mod/admin.php:758 +#: mod/admin.php:792 msgid "Maximum numbers of comments per post" msgstr "Nombre maximum de commentaires par publication" -#: mod/admin.php:758 +#: mod/admin.php:792 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100." -#: mod/admin.php:759 +#: mod/admin.php:793 msgid "Path for lock file" msgstr "Chemin vers le ficher de verrouillage" -#: mod/admin.php:759 +#: mod/admin.php:793 msgid "" "The lock file is used to avoid multiple pollers at one time. Only define a " "folder here." msgstr "" -#: mod/admin.php:760 +#: mod/admin.php:794 msgid "Temp path" msgstr "Chemin des fichiers temporaires" -#: mod/admin.php:760 +#: mod/admin.php:794 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "" -#: mod/admin.php:761 +#: mod/admin.php:795 msgid "Base path to installation" msgstr "Chemin de base de l'installation" -#: mod/admin.php:761 +#: mod/admin.php:795 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "" -#: mod/admin.php:762 +#: mod/admin.php:796 msgid "Disable picture proxy" msgstr "Désactiver le proxy image " -#: mod/admin.php:762 +#: mod/admin.php:796 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on" " systems with very low bandwith." msgstr "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante." -#: mod/admin.php:763 +#: mod/admin.php:797 msgid "Enable old style pager" msgstr "" -#: mod/admin.php:763 +#: mod/admin.php:797 msgid "" "The old style pager has page numbers but slows down massively the page " "speed." msgstr "" -#: mod/admin.php:764 +#: mod/admin.php:798 msgid "Only search in tags" msgstr "" -#: mod/admin.php:764 +#: mod/admin.php:798 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: mod/admin.php:766 +#: mod/admin.php:800 msgid "New base url" msgstr "Nouvelle URL de base" -#: mod/admin.php:766 +#: mod/admin.php:800 msgid "" "Change base url for this server. Sends relocate message to all DFRN contacts" " of all users." msgstr "" -#: mod/admin.php:768 +#: mod/admin.php:802 msgid "RINO Encryption" msgstr "" -#: mod/admin.php:768 +#: mod/admin.php:802 msgid "Encryption layer between nodes." msgstr "" -#: mod/admin.php:769 +#: mod/admin.php:803 msgid "Embedly API key" msgstr "" -#: mod/admin.php:769 +#: mod/admin.php:803 msgid "" "Embedly is used to fetch additional data for " "web pages. This is an optional parameter." msgstr "" -#: mod/admin.php:787 +#: mod/admin.php:821 msgid "Update has been marked successful" msgstr "Mise-à-jour validée comme 'réussie'" -#: mod/admin.php:795 +#: mod/admin.php:829 #, php-format msgid "Database structure update %s was successfully applied." msgstr "La structure de base de données pour la mise à jour %s a été appliquée avec succès." -#: mod/admin.php:798 +#: mod/admin.php:832 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s" -#: mod/admin.php:810 +#: mod/admin.php:844 #, php-format msgid "Executing %s failed with error: %s" msgstr "L'exécution %s a échoué avec l'erreur: %s" -#: mod/admin.php:813 +#: mod/admin.php:847 #, php-format msgid "Update %s was successfully applied." msgstr "Mise-à-jour %s appliquée avec succès." -#: mod/admin.php:817 +#: mod/admin.php:851 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi." -#: mod/admin.php:819 +#: mod/admin.php:853 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé" -#: mod/admin.php:838 +#: mod/admin.php:872 msgid "No failed updates." msgstr "Pas de mises-à-jour échouées." -#: mod/admin.php:839 +#: mod/admin.php:873 msgid "Check database structure" msgstr "Vérifier la structure de la base de données" -#: mod/admin.php:844 +#: mod/admin.php:878 msgid "Failed Updates" msgstr "Mises-à-jour échouées" -#: mod/admin.php:845 +#: mod/admin.php:879 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails." -#: mod/admin.php:846 +#: mod/admin.php:880 msgid "Mark success (if update was manually applied)" msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)" -#: mod/admin.php:847 +#: mod/admin.php:881 msgid "Attempt to execute this update step automatically" msgstr "Tenter d'éxecuter cette étape automatiquement" -#: mod/admin.php:879 +#: mod/admin.php:913 #, php-format msgid "" "\n" @@ -2814,7 +2958,7 @@ msgid "" "\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\t\tChère/Cher %1$s,\n\t\t\t\tL’administrateur de %2$s vous a ouvert un compte." -#: mod/admin.php:882 +#: mod/admin.php:916 #, php-format msgid "" "\n" @@ -2844,287 +2988,295 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "\n\t\t\tVoici vos informations de connexion :\n\n\t\t\tAdresse :\t%1$s\n\t\t\tIdentifiant :\t\t%2$s\n\t\t\tMot de passe :\t\t%3$s\n\n\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\t\t\tMerci et bienvenu sur %4$s." -#: mod/admin.php:914 include/user.php:421 +#: mod/admin.php:948 include/user.php:423 #, php-format msgid "Registration details for %s" msgstr "Détails d'inscription pour %s" -#: mod/admin.php:926 +#: mod/admin.php:960 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "%s utilisateur a (dé)bloqué" msgstr[1] "%s utilisateurs ont (dé)bloqué" -#: mod/admin.php:933 +#: mod/admin.php:967 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s utilisateur supprimé" msgstr[1] "%s utilisateurs supprimés" -#: mod/admin.php:972 +#: mod/admin.php:1006 #, php-format msgid "User '%s' deleted" msgstr "Utilisateur '%s' supprimé" -#: mod/admin.php:980 +#: mod/admin.php:1014 #, php-format msgid "User '%s' unblocked" msgstr "Utilisateur '%s' débloqué" -#: mod/admin.php:980 +#: mod/admin.php:1014 #, php-format msgid "User '%s' blocked" msgstr "Utilisateur '%s' bloqué" -#: mod/admin.php:1073 +#: mod/admin.php:1107 msgid "Add User" msgstr "Ajouter l'utilisateur" -#: mod/admin.php:1074 +#: mod/admin.php:1108 msgid "select all" msgstr "tout sélectionner" -#: mod/admin.php:1075 +#: mod/admin.php:1109 msgid "User registrations waiting for confirm" msgstr "Inscriptions d'utilisateurs en attente de confirmation" -#: mod/admin.php:1076 +#: mod/admin.php:1110 msgid "User waiting for permanent deletion" msgstr "Utilisateur en attente de suppression définitive" -#: mod/admin.php:1077 +#: mod/admin.php:1111 msgid "Request date" msgstr "Date de la demande" -#: mod/admin.php:1077 mod/admin.php:1089 mod/admin.php:1090 mod/admin.php:1105 +#: mod/admin.php:1111 mod/admin.php:1123 mod/admin.php:1124 mod/admin.php:1139 #: include/contact_selectors.php:79 include/contact_selectors.php:86 msgid "Email" msgstr "Courriel" -#: mod/admin.php:1078 +#: mod/admin.php:1112 msgid "No registrations." msgstr "Pas d'inscriptions." -#: mod/admin.php:1080 +#: mod/admin.php:1114 msgid "Deny" msgstr "Rejetter" -#: mod/admin.php:1084 +#: mod/admin.php:1118 msgid "Site admin" msgstr "Administration du Site" -#: mod/admin.php:1085 +#: mod/admin.php:1119 msgid "Account expired" msgstr "Compte expiré" -#: mod/admin.php:1088 +#: mod/admin.php:1122 msgid "New User" msgstr "Nouvel utilisateur" -#: mod/admin.php:1089 mod/admin.php:1090 +#: mod/admin.php:1123 mod/admin.php:1124 msgid "Register date" msgstr "Date d'inscription" -#: mod/admin.php:1089 mod/admin.php:1090 +#: mod/admin.php:1123 mod/admin.php:1124 msgid "Last login" msgstr "Dernière connexion" -#: mod/admin.php:1089 mod/admin.php:1090 +#: mod/admin.php:1123 mod/admin.php:1124 msgid "Last item" msgstr "Dernier élément" -#: mod/admin.php:1089 +#: mod/admin.php:1123 msgid "Deleted since" msgstr "Supprimé depuis" -#: mod/admin.php:1090 mod/settings.php:41 +#: mod/admin.php:1124 mod/settings.php:41 msgid "Account" msgstr "Compte" -#: mod/admin.php:1092 +#: mod/admin.php:1126 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?" -#: mod/admin.php:1093 +#: mod/admin.php:1127 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?" -#: mod/admin.php:1103 +#: mod/admin.php:1137 msgid "Name of the new user." msgstr "Nom du nouvel utilisateur." -#: mod/admin.php:1104 +#: mod/admin.php:1138 msgid "Nickname" msgstr "Pseudo" -#: mod/admin.php:1104 +#: mod/admin.php:1138 msgid "Nickname of the new user." msgstr "Pseudo du nouvel utilisateur." -#: mod/admin.php:1105 +#: mod/admin.php:1139 msgid "Email address of the new user." msgstr "Adresse mail du nouvel utilisateur." -#: mod/admin.php:1138 +#: mod/admin.php:1172 #, php-format msgid "Plugin %s disabled." msgstr "Extension %s désactivée." -#: mod/admin.php:1142 +#: mod/admin.php:1176 #, php-format msgid "Plugin %s enabled." msgstr "Extension %s activée." -#: mod/admin.php:1152 mod/admin.php:1375 +#: mod/admin.php:1186 mod/admin.php:1410 msgid "Disable" msgstr "Désactiver" -#: mod/admin.php:1154 mod/admin.php:1377 +#: mod/admin.php:1188 mod/admin.php:1412 msgid "Enable" msgstr "Activer" -#: mod/admin.php:1177 mod/admin.php:1405 +#: mod/admin.php:1211 mod/admin.php:1456 msgid "Toggle" msgstr "Activer/Désactiver" -#: mod/admin.php:1185 mod/admin.php:1415 +#: mod/admin.php:1219 mod/admin.php:1466 msgid "Author: " msgstr "Auteur: " -#: mod/admin.php:1186 mod/admin.php:1416 +#: mod/admin.php:1220 mod/admin.php:1467 msgid "Maintainer: " msgstr "Mainteneur: " -#: mod/admin.php:1335 +#: mod/admin.php:1272 +msgid "Reload active plugins" +msgstr "" + +#: mod/admin.php:1370 msgid "No themes found." msgstr "Aucun thème trouvé." -#: mod/admin.php:1397 +#: mod/admin.php:1448 msgid "Screenshot" msgstr "Capture d'écran" -#: mod/admin.php:1443 +#: mod/admin.php:1508 +msgid "Reload active themes" +msgstr "" + +#: mod/admin.php:1512 msgid "[Experimental]" msgstr "[Expérimental]" -#: mod/admin.php:1444 +#: mod/admin.php:1513 msgid "[Unsupported]" msgstr "[Non supporté]" -#: mod/admin.php:1471 +#: mod/admin.php:1540 msgid "Log settings updated." msgstr "Réglages des journaux mis-à-jour." -#: mod/admin.php:1527 +#: mod/admin.php:1596 msgid "Clear" msgstr "Effacer" -#: mod/admin.php:1533 +#: mod/admin.php:1602 msgid "Enable Debugging" msgstr "Activer le déboggage" -#: mod/admin.php:1534 +#: mod/admin.php:1603 msgid "Log file" msgstr "Fichier de journaux" -#: mod/admin.php:1534 +#: mod/admin.php:1603 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica." -#: mod/admin.php:1535 +#: mod/admin.php:1604 msgid "Log level" msgstr "Niveau de journalisaton" -#: mod/admin.php:1585 include/acl_selectors.php:347 +#: mod/admin.php:1654 include/acl_selectors.php:348 msgid "Close" msgstr "Fermer" -#: mod/admin.php:1591 +#: mod/admin.php:1660 msgid "FTP Host" msgstr "Hôte FTP" -#: mod/admin.php:1592 +#: mod/admin.php:1661 msgid "FTP Path" msgstr "Chemin FTP" -#: mod/admin.php:1593 +#: mod/admin.php:1662 msgid "FTP User" msgstr "Utilisateur FTP" -#: mod/admin.php:1594 +#: mod/admin.php:1663 msgid "FTP Password" msgstr "Mot de passe FTP" -#: mod/network.php:143 +#: mod/network.php:146 #, php-format msgid "Search Results For: %s" msgstr "" -#: mod/network.php:187 mod/search.php:25 +#: mod/network.php:191 mod/search.php:25 msgid "Remove term" msgstr "Retirer le terme" -#: mod/network.php:196 mod/search.php:34 include/features.php:42 +#: mod/network.php:200 mod/search.php:34 include/features.php:79 msgid "Saved Searches" msgstr "Recherches" -#: mod/network.php:197 include/group.php:277 +#: mod/network.php:201 include/group.php:293 msgid "add" msgstr "ajouter" -#: mod/network.php:358 +#: mod/network.php:362 msgid "Commented Order" msgstr "Tri par commentaires" -#: mod/network.php:361 +#: mod/network.php:365 msgid "Sort by Comment Date" msgstr "Trier par date de commentaire" -#: mod/network.php:365 +#: mod/network.php:370 msgid "Posted Order" msgstr "Tri des publications" -#: mod/network.php:368 +#: mod/network.php:373 msgid "Sort by Post Date" msgstr "Trier par date de publication" -#: mod/network.php:378 +#: mod/network.php:384 msgid "Posts that mention or involve you" msgstr "Publications qui vous concernent" -#: mod/network.php:385 +#: mod/network.php:392 msgid "New" msgstr "Nouveau" -#: mod/network.php:388 +#: mod/network.php:395 msgid "Activity Stream - by date" msgstr "Flux d'activités - par date" -#: mod/network.php:395 +#: mod/network.php:403 msgid "Shared Links" msgstr "Liens partagés" -#: mod/network.php:398 +#: mod/network.php:406 msgid "Interesting Links" msgstr "Liens intéressants" -#: mod/network.php:405 +#: mod/network.php:414 msgid "Starred" msgstr "Mis en avant" -#: mod/network.php:408 +#: mod/network.php:417 msgid "Favourite Posts" msgstr "Publications favorites" -#: mod/network.php:466 +#: mod/network.php:476 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -3132,45 +3284,40 @@ msgid_plural "" msgstr[0] "Attention: Ce groupe contient %s membre d'un réseau non-sûr." msgstr[1] "Attention: Ce groupe contient %s membres d'un réseau non-sûr." -#: mod/network.php:469 +#: mod/network.php:479 msgid "Private messages to this group are at risk of public disclosure." msgstr "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée." -#: mod/network.php:532 mod/content.php:119 +#: mod/network.php:546 mod/content.php:119 msgid "No such group" msgstr "Groupe inexistant" -#: mod/network.php:549 mod/content.php:130 +#: mod/network.php:563 mod/content.php:130 msgid "Group is empty" msgstr "Groupe vide" -#: mod/network.php:560 mod/content.php:135 +#: mod/network.php:574 mod/content.php:135 #, php-format msgid "Group: %s" msgstr "" -#: mod/network.php:578 -#, php-format -msgid "Contact: %s" -msgstr "" - -#: mod/network.php:582 +#: mod/network.php:606 msgid "Private messages to this person are at risk of public disclosure." msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée." -#: mod/network.php:587 +#: mod/network.php:611 msgid "Invalid contact." msgstr "Contact invalide." -#: mod/allfriends.php:37 +#: mod/allfriends.php:45 +msgid "No friends to display." +msgstr "Pas d'amis à afficher." + +#: mod/allfriends.php:92 #, php-format msgid "Friends of %s" msgstr "Amis de %s" -#: mod/allfriends.php:44 -msgid "No friends to display." -msgstr "Pas d'amis à afficher." - #: mod/events.php:71 mod/events.php:73 msgid "Event can not end before it has started." msgstr "" @@ -3179,228 +3326,405 @@ msgstr "" msgid "Event title and start time are required." msgstr "Vous devez donner un nom et un horaire de début à l'événement." -#: mod/events.php:317 +#: mod/events.php:201 +msgid "Sun" +msgstr "Dim" + +#: mod/events.php:202 +msgid "Mon" +msgstr "Lun" + +#: mod/events.php:203 +msgid "Tue" +msgstr "Mar" + +#: mod/events.php:204 +msgid "Wed" +msgstr "Mer" + +#: mod/events.php:205 +msgid "Thu" +msgstr "Jeu" + +#: mod/events.php:206 +msgid "Fri" +msgstr "Ven" + +#: mod/events.php:207 +msgid "Sat" +msgstr "Sam" + +#: mod/events.php:208 mod/settings.php:936 include/text.php:1274 +msgid "Sunday" +msgstr "Dimanche" + +#: mod/events.php:209 mod/settings.php:936 include/text.php:1274 +msgid "Monday" +msgstr "Lundi" + +#: mod/events.php:210 include/text.php:1274 +msgid "Tuesday" +msgstr "Mardi" + +#: mod/events.php:211 include/text.php:1274 +msgid "Wednesday" +msgstr "Mercredi" + +#: mod/events.php:212 include/text.php:1274 +msgid "Thursday" +msgstr "Jeudi" + +#: mod/events.php:213 include/text.php:1274 +msgid "Friday" +msgstr "Vendredi" + +#: mod/events.php:214 include/text.php:1274 +msgid "Saturday" +msgstr "Samedi" + +#: mod/events.php:215 +msgid "Jan" +msgstr "Jan" + +#: mod/events.php:216 +msgid "Feb" +msgstr "Fév" + +#: mod/events.php:217 +msgid "Mar" +msgstr "Mar" + +#: mod/events.php:218 +msgid "Apr" +msgstr "Avr" + +#: mod/events.php:219 mod/events.php:231 include/text.php:1278 +msgid "May" +msgstr "Mai" + +#: mod/events.php:220 +msgid "Jun" +msgstr "Jun" + +#: mod/events.php:221 +msgid "Jul" +msgstr "Jul" + +#: mod/events.php:222 +msgid "Aug" +msgstr "Aoû" + +#: mod/events.php:223 +msgid "Sept" +msgstr "Sep" + +#: mod/events.php:224 +msgid "Oct" +msgstr "Oct" + +#: mod/events.php:225 +msgid "Nov" +msgstr "Nov" + +#: mod/events.php:226 +msgid "Dec" +msgstr "Déc" + +#: mod/events.php:227 include/text.php:1278 +msgid "January" +msgstr "Janvier" + +#: mod/events.php:228 include/text.php:1278 +msgid "February" +msgstr "Février" + +#: mod/events.php:229 include/text.php:1278 +msgid "March" +msgstr "Mars" + +#: mod/events.php:230 include/text.php:1278 +msgid "April" +msgstr "Avril" + +#: mod/events.php:232 include/text.php:1278 +msgid "June" +msgstr "Juin" + +#: mod/events.php:233 include/text.php:1278 +msgid "July" +msgstr "Juillet" + +#: mod/events.php:234 include/text.php:1278 +msgid "August" +msgstr "Août" + +#: mod/events.php:235 include/text.php:1278 +msgid "September" +msgstr "Septembre" + +#: mod/events.php:236 include/text.php:1278 +msgid "October" +msgstr "Octobre" + +#: mod/events.php:237 include/text.php:1278 +msgid "November" +msgstr "Novembre" + +#: mod/events.php:238 include/text.php:1278 +msgid "December" +msgstr "Décembre" + +#: mod/events.php:239 +msgid "today" +msgstr "aujourd'hui" + +#: mod/events.php:240 include/datetime.php:288 +msgid "month" +msgstr "mois" + +#: mod/events.php:241 include/datetime.php:289 +msgid "week" +msgstr "semaine" + +#: mod/events.php:242 include/datetime.php:290 +msgid "day" +msgstr "jour" + +#: mod/events.php:377 msgid "l, F j" msgstr "l, F j" -#: mod/events.php:339 +#: mod/events.php:399 msgid "Edit event" msgstr "Editer l'événement" -#: mod/events.php:361 include/text.php:1716 include/text.php:1723 +#: mod/events.php:421 include/text.php:1721 include/text.php:1728 msgid "link to source" msgstr "lien original" -#: mod/events.php:396 include/identity.php:667 include/nav.php:80 -#: view/theme/diabook/theme.php:127 +#: mod/events.php:456 include/identity.php:686 include/nav.php:79 +#: include/nav.php:140 view/theme/diabook/theme.php:127 msgid "Events" msgstr "Événements" -#: mod/events.php:397 +#: mod/events.php:457 msgid "Create New Event" msgstr "Créer un nouvel événement" -#: mod/events.php:398 +#: mod/events.php:458 msgid "Previous" msgstr "Précédent" -#: mod/events.php:399 mod/install.php:209 +#: mod/events.php:459 mod/install.php:220 msgid "Next" msgstr "Suivant" -#: mod/events.php:491 +#: mod/events.php:554 msgid "Event details" msgstr "Détails de l'événement" -#: mod/events.php:492 +#: mod/events.php:555 msgid "Starting date and Title are required." -msgstr "" +msgstr "La date de début et le titre sont requis." -#: mod/events.php:493 +#: mod/events.php:556 msgid "Event Starts:" msgstr "Début de l'événement :" -#: mod/events.php:493 mod/events.php:505 +#: mod/events.php:556 mod/events.php:568 msgid "Required" msgstr "Requis" -#: mod/events.php:495 +#: mod/events.php:558 msgid "Finish date/time is not known or not relevant" msgstr "Date / heure de fin inconnue ou sans objet" -#: mod/events.php:497 +#: mod/events.php:560 msgid "Event Finishes:" msgstr "Fin de l'événement:" -#: mod/events.php:499 +#: mod/events.php:562 msgid "Adjust for viewer timezone" msgstr "Ajuster à la zone horaire du visiteur" -#: mod/events.php:501 +#: mod/events.php:564 msgid "Description:" msgstr "Description:" -#: mod/events.php:505 +#: mod/events.php:568 msgid "Title:" msgstr "Titre :" -#: mod/events.php:507 +#: mod/events.php:570 msgid "Share this event" msgstr "Partager cet événement" -#: mod/events.php:509 mod/content.php:721 mod/editpost.php:145 -#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 -#: object/Item.php:689 include/conversation.php:1089 +#: mod/events.php:572 mod/content.php:721 mod/editpost.php:144 +#: mod/photos.php:1623 mod/photos.php:1671 mod/photos.php:1759 +#: object/Item.php:719 include/conversation.php:1217 msgid "Preview" msgstr "Aperçu" -#: mod/content.php:439 mod/content.php:742 mod/photos.php:1672 -#: object/Item.php:130 include/conversation.php:612 +#: mod/credits.php:16 +msgid "Credits" +msgstr "Remerciements" + +#: mod/credits.php:17 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "Friendica est un projet communautaire, qui ne serait pas possible sans l'aide de beaucoup de gens. Voici une liste de ceux qui ont contribué au code ou à la traduction de Friendica. Merci à tous!" + +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1714 +#: object/Item.php:133 include/conversation.php:634 msgid "Select" msgstr "Sélectionner" #: mod/content.php:473 mod/content.php:854 mod/content.php:855 -#: object/Item.php:328 object/Item.php:329 include/conversation.php:653 +#: object/Item.php:357 object/Item.php:358 include/conversation.php:675 #, php-format msgid "View %s's profile @ %s" msgstr "Voir le profil de %s @ %s" -#: mod/content.php:483 mod/content.php:866 object/Item.php:342 -#: include/conversation.php:673 +#: mod/content.php:483 mod/content.php:866 object/Item.php:371 +#: include/conversation.php:695 #, php-format msgid "%s from %s" msgstr "%s de %s" -#: mod/content.php:499 include/conversation.php:689 +#: mod/content.php:499 include/conversation.php:711 msgid "View in context" msgstr "Voir dans le contexte" -#: mod/content.php:605 object/Item.php:389 +#: mod/content.php:605 object/Item.php:419 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d commentaire" msgstr[1] "%d commentaires" -#: mod/content.php:607 object/Item.php:391 object/Item.php:404 -#: include/text.php:2038 +#: mod/content.php:607 object/Item.php:421 object/Item.php:434 +#: include/text.php:1999 msgid "comment" msgid_plural "comments" msgstr[0] "" msgstr[1] "commentaire" -#: mod/content.php:608 boot.php:765 object/Item.php:392 -#: include/contact_widgets.php:205 include/items.php:5133 +#: mod/content.php:608 boot.php:773 object/Item.php:422 +#: include/contact_widgets.php:242 include/forums.php:110 +#: include/items.php:5152 view/theme/vier/theme.php:264 msgid "show more" msgstr "montrer plus" -#: mod/content.php:622 mod/photos.php:1379 object/Item.php:117 +#: mod/content.php:622 mod/photos.php:1410 object/Item.php:117 msgid "Private Message" msgstr "Message privé" -#: mod/content.php:686 mod/photos.php:1561 object/Item.php:232 +#: mod/content.php:686 mod/photos.php:1599 object/Item.php:253 msgid "I like this (toggle)" msgstr "J'aime" -#: mod/content.php:686 object/Item.php:232 +#: mod/content.php:686 object/Item.php:253 msgid "like" msgstr "aime" -#: mod/content.php:687 mod/photos.php:1562 object/Item.php:233 +#: mod/content.php:687 mod/photos.php:1600 object/Item.php:254 msgid "I don't like this (toggle)" msgstr "Je n'aime pas" -#: mod/content.php:687 object/Item.php:233 +#: mod/content.php:687 object/Item.php:254 msgid "dislike" msgstr "n'aime pas" -#: mod/content.php:689 object/Item.php:235 +#: mod/content.php:689 object/Item.php:256 msgid "Share this" msgstr "Partager" -#: mod/content.php:689 object/Item.php:235 +#: mod/content.php:689 object/Item.php:256 msgid "share" msgstr "partager" -#: mod/content.php:709 mod/photos.php:1581 mod/photos.php:1625 -#: mod/photos.php:1713 object/Item.php:677 +#: mod/content.php:709 mod/photos.php:1619 mod/photos.php:1667 +#: mod/photos.php:1755 object/Item.php:707 msgid "This is you" msgstr "C'est vous" -#: mod/content.php:711 mod/photos.php:1583 mod/photos.php:1627 -#: mod/photos.php:1715 boot.php:764 object/Item.php:363 object/Item.php:679 +#: mod/content.php:711 mod/photos.php:1621 mod/photos.php:1669 +#: mod/photos.php:1757 boot.php:772 object/Item.php:393 object/Item.php:709 msgid "Comment" msgstr "Commenter" -#: mod/content.php:713 object/Item.php:681 +#: mod/content.php:713 object/Item.php:711 msgid "Bold" msgstr "Gras" -#: mod/content.php:714 object/Item.php:682 +#: mod/content.php:714 object/Item.php:712 msgid "Italic" msgstr "Italique" -#: mod/content.php:715 object/Item.php:683 +#: mod/content.php:715 object/Item.php:713 msgid "Underline" msgstr "Souligné" -#: mod/content.php:716 object/Item.php:684 +#: mod/content.php:716 object/Item.php:714 msgid "Quote" msgstr "Citation" -#: mod/content.php:717 object/Item.php:685 +#: mod/content.php:717 object/Item.php:715 msgid "Code" msgstr "Code" -#: mod/content.php:718 object/Item.php:686 +#: mod/content.php:718 object/Item.php:716 msgid "Image" msgstr "Image" -#: mod/content.php:719 object/Item.php:687 +#: mod/content.php:719 object/Item.php:717 msgid "Link" msgstr "Lien" -#: mod/content.php:720 object/Item.php:688 +#: mod/content.php:720 object/Item.php:718 msgid "Video" msgstr "Vidéo" -#: mod/content.php:730 mod/settings.php:694 object/Item.php:121 +#: mod/content.php:730 mod/settings.php:710 object/Item.php:122 +#: object/Item.php:124 msgid "Edit" msgstr "Éditer" -#: mod/content.php:755 object/Item.php:196 +#: mod/content.php:755 object/Item.php:217 msgid "add star" msgstr "mett en avant" -#: mod/content.php:756 object/Item.php:197 +#: mod/content.php:756 object/Item.php:218 msgid "remove star" msgstr "ne plus mettre en avant" -#: mod/content.php:757 object/Item.php:198 +#: mod/content.php:757 object/Item.php:219 msgid "toggle star status" msgstr "mettre en avant" -#: mod/content.php:760 object/Item.php:201 +#: mod/content.php:760 object/Item.php:222 msgid "starred" msgstr "mis en avant" -#: mod/content.php:761 object/Item.php:221 +#: mod/content.php:761 object/Item.php:242 msgid "add tag" msgstr "ajouter une étiquette" -#: mod/content.php:765 object/Item.php:134 +#: mod/content.php:765 object/Item.php:137 msgid "save to folder" msgstr "sauver vers dossier" -#: mod/content.php:856 object/Item.php:330 +#: mod/content.php:856 object/Item.php:359 msgid "to" msgstr "à" -#: mod/content.php:857 object/Item.php:332 +#: mod/content.php:857 object/Item.php:361 msgid "Wall-to-Wall" msgstr "Inter-mur" -#: mod/content.php:858 object/Item.php:333 +#: mod/content.php:858 object/Item.php:362 msgid "via Wall-To-Wall:" msgstr "en Inter-mur:" @@ -3418,295 +3742,322 @@ msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversi msgid "Please enter your password for verification:" msgstr "Merci de saisir votre mot de passe pour vérification :" -#: mod/install.php:119 +#: mod/install.php:128 msgid "Friendica Communications Server - Setup" msgstr "Serveur de communications Friendica - Configuration" -#: mod/install.php:125 +#: mod/install.php:134 msgid "Could not connect to database." msgstr "Impossible de se connecter à la base." -#: mod/install.php:129 +#: mod/install.php:138 msgid "Could not create table." msgstr "Impossible de créer une table." -#: mod/install.php:135 +#: mod/install.php:144 msgid "Your Friendica site database has been installed." msgstr "La base de données de votre site Friendica a bien été installée." -#: mod/install.php:140 +#: mod/install.php:149 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql." -#: mod/install.php:141 mod/install.php:208 mod/install.php:530 +#: mod/install.php:150 mod/install.php:219 mod/install.php:577 msgid "Please see the file \"INSTALL.txt\"." msgstr "Référez-vous au fichier \"INSTALL.txt\"." -#: mod/install.php:153 +#: mod/install.php:162 msgid "Database already in use." -msgstr "" +msgstr "Base de données déjà en cours d'utilisation." -#: mod/install.php:205 +#: mod/install.php:216 msgid "System check" msgstr "Vérifications système" -#: mod/install.php:210 +#: mod/install.php:221 msgid "Check again" msgstr "Vérifier à nouveau" -#: mod/install.php:229 +#: mod/install.php:240 msgid "Database connection" msgstr "Connexion à la base de données" -#: mod/install.php:230 +#: mod/install.php:241 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données." -#: mod/install.php:231 +#: mod/install.php:242 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages." -#: mod/install.php:232 +#: mod/install.php:243 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer." -#: mod/install.php:236 +#: mod/install.php:247 msgid "Database Server Name" msgstr "Serveur de base de données" -#: mod/install.php:237 +#: mod/install.php:248 msgid "Database Login Name" msgstr "Nom d'utilisateur de la base" -#: mod/install.php:238 +#: mod/install.php:249 msgid "Database Login Password" msgstr "Mot de passe de la base" -#: mod/install.php:239 +#: mod/install.php:250 msgid "Database Name" msgstr "Nom de la base" -#: mod/install.php:240 mod/install.php:279 +#: mod/install.php:251 mod/install.php:290 msgid "Site administrator email address" msgstr "Adresse électronique de l'administrateur du site" -#: mod/install.php:240 mod/install.php:279 +#: mod/install.php:251 mod/install.php:290 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration." -#: mod/install.php:244 mod/install.php:282 +#: mod/install.php:255 mod/install.php:293 msgid "Please select a default timezone for your website" msgstr "Sélectionner un fuseau horaire par défaut pour votre site" -#: mod/install.php:269 +#: mod/install.php:280 msgid "Site settings" msgstr "Réglages du site" -#: mod/install.php:323 +#: mod/install.php:334 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web." -#: mod/install.php:324 +#: mod/install.php:335 msgid "" "If you don't have a command line version of PHP installed on server, you " "will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir 'Activating scheduled tasks'" +"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-" +"up-the-poller'>'Setup the poller'" +msgstr "Si vous n'avez pas une version en ligne de commande de PHP sur votre serveur, vous ne pourrez pas exécuter l'attente active ou « polling » en arrière-plan via cron. Voir 'Setup the poller'." -#: mod/install.php:328 +#: mod/install.php:339 msgid "PHP executable path" msgstr "Chemin vers l'exécutable de PHP" -#: mod/install.php:328 +#: mod/install.php:339 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation." -#: mod/install.php:333 +#: mod/install.php:344 msgid "Command line PHP" msgstr "Version \"ligne de commande\" de PHP" -#: mod/install.php:342 +#: mod/install.php:353 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)" -#: mod/install.php:343 +#: mod/install.php:354 msgid "Found PHP version: " msgstr "Version de PHP:" -#: mod/install.php:345 +#: mod/install.php:356 msgid "PHP cli binary" msgstr "PHP cli binary" -#: mod/install.php:356 +#: mod/install.php:367 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé." -#: mod/install.php:357 +#: mod/install.php:368 msgid "This is required for message delivery to work." msgstr "Ceci est requis pour que la livraison des messages fonctionne." -#: mod/install.php:359 +#: mod/install.php:370 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: mod/install.php:380 +#: mod/install.php:391 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement" -#: mod/install.php:381 +#: mod/install.php:392 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"." -#: mod/install.php:383 +#: mod/install.php:394 msgid "Generate encryption keys" msgstr "Générer les clés de chiffrement" -#: mod/install.php:390 +#: mod/install.php:401 msgid "libCurl PHP module" msgstr "Module libCurl de PHP" -#: mod/install.php:391 +#: mod/install.php:402 msgid "GD graphics PHP module" msgstr "Module GD (graphiques) de PHP" -#: mod/install.php:392 +#: mod/install.php:403 msgid "OpenSSL PHP module" msgstr "Module OpenSSL de PHP" -#: mod/install.php:393 +#: mod/install.php:404 msgid "mysqli PHP module" msgstr "Module Mysqli de PHP" -#: mod/install.php:394 +#: mod/install.php:405 msgid "mb_string PHP module" msgstr "Module mb_string de PHP" -#: mod/install.php:399 mod/install.php:401 +#: mod/install.php:406 +msgid "mcrypt PHP module" +msgstr "Module PHP mcrypt" + +#: mod/install.php:411 mod/install.php:413 msgid "Apache mod_rewrite module" msgstr "Module mod_rewrite Apache" -#: mod/install.php:399 +#: mod/install.php:411 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Erreur : Le module \"rewrite\" du serveur web Apache est requis mais pas installé." -#: mod/install.php:407 +#: mod/install.php:419 msgid "Error: libCURL PHP module required but not installed." msgstr "Erreur : Le module PHP \"libCURL\" est requis mais pas installé." -#: mod/install.php:411 +#: mod/install.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Erreur : Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé." -#: mod/install.php:415 +#: mod/install.php:427 msgid "Error: openssl PHP module required but not installed." msgstr "Erreur : Le module PHP \"openssl\" est requis mais pas installé." -#: mod/install.php:419 +#: mod/install.php:431 msgid "Error: mysqli PHP module required but not installed." msgstr "Erreur : Le module PHP \"mysqli\" est requis mais pas installé." -#: mod/install.php:423 +#: mod/install.php:435 msgid "Error: mb_string PHP module required but not installed." msgstr "Erreur : le module PHP mb_string est requis mais pas installé." -#: mod/install.php:440 +#: mod/install.php:439 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Erreur : le module PHP mcrypt est nécessaire, mais n'es pas installé." + +#: mod/install.php:451 +msgid "" +"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " +"encryption layer." +msgstr "" + +#: mod/install.php:453 +msgid "mcrypt_create_iv() function" +msgstr "" + +#: mod/install.php:469 msgid "" "The web installer needs to be able to create a file called \".htconfig.php\"" " in the top folder of your web server and it is unable to do so." msgstr "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable." -#: mod/install.php:441 +#: mod/install.php:470 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez." -#: mod/install.php:442 +#: mod/install.php:471 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named .htconfig.php in your Friendica top folder." msgstr "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica." -#: mod/install.php:443 +#: mod/install.php:472 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"INSTALL.txt\" for instructions." msgstr "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"." -#: mod/install.php:446 +#: mod/install.php:475 msgid ".htconfig.php is writable" msgstr "Fichier .htconfig.php accessible en écriture" -#: mod/install.php:456 +#: mod/install.php:485 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu." -#: mod/install.php:457 +#: mod/install.php:486 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica." -#: mod/install.php:458 +#: mod/install.php:487 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier." -#: mod/install.php:459 +#: mod/install.php:488 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient." -#: mod/install.php:462 +#: mod/install.php:491 msgid "view/smarty3 is writable" msgstr "view/smarty3 est autorisé à l écriture" -#: mod/install.php:478 +#: mod/install.php:507 msgid "" "Url rewrite in .htaccess is not working. Check your server configuration." msgstr "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur." -#: mod/install.php:480 +#: mod/install.php:509 msgid "Url rewrite is working" msgstr "La réécriture d'URL fonctionne." -#: mod/install.php:489 +#: mod/install.php:526 +msgid "ImageMagick PHP extension is installed" +msgstr "" + +#: mod/install.php:528 +msgid "ImageMagick supports GIF" +msgstr "" + +#: mod/install.php:536 msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." msgstr "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement." -#: mod/install.php:528 +#: mod/install.php:575 msgid "

What next

" msgstr "

Ensuite

" -#: mod/install.php:529 +#: mod/install.php:576 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -3736,7 +4087,7 @@ msgstr "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour msgid "Help:" msgstr "Aide :" -#: mod/help.php:36 include/nav.php:114 +#: mod/help.php:36 include/nav.php:113 view/theme/vier/theme.php:302 msgid "Help" msgstr "Aide" @@ -3758,35 +4109,35 @@ msgstr "%1$s accueille %2$s" msgid "Welcome to %s" msgstr "Bienvenue sur %s" -#: mod/wall_attach.php:83 +#: mod/wall_attach.php:94 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise" -#: mod/wall_attach.php:83 +#: mod/wall_attach.php:94 msgid "Or - did you try to upload an empty file?" msgstr "Ou — auriez-vous essayé de télécharger un fichier vide ?" -#: mod/wall_attach.php:94 +#: mod/wall_attach.php:105 #, php-format msgid "File exceeds size limit of %s" msgstr "" -#: mod/wall_attach.php:145 mod/wall_attach.php:161 +#: mod/wall_attach.php:156 mod/wall_attach.php:172 msgid "File upload failed." msgstr "Le téléversement a échoué." -#: mod/match.php:13 -msgid "Profile Match" -msgstr "Correpondance de profils" - -#: mod/match.php:22 +#: mod/match.php:33 msgid "No keywords to match. Please add keywords to your default profile." msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut." -#: mod/match.php:64 +#: mod/match.php:84 msgid "is interested in:" msgstr "s'intéresse à :" +#: mod/match.php:98 +msgid "Profile Match" +msgstr "Correpondance de profils" + #: mod/share.php:38 msgid "link" msgstr "lien" @@ -3795,16 +4146,16 @@ msgstr "lien" msgid "Not available." msgstr "Indisponible." -#: mod/community.php:32 include/nav.php:137 include/nav.php:139 +#: mod/community.php:32 include/nav.php:136 include/nav.php:138 #: view/theme/diabook/theme.php:129 msgid "Community" msgstr "Communauté" -#: mod/community.php:62 mod/community.php:71 mod/search.php:192 +#: mod/community.php:62 mod/community.php:71 mod/search.php:218 msgid "No results." msgstr "Aucun résultat." -#: mod/settings.php:34 mod/photos.php:102 +#: mod/settings.php:34 mod/photos.php:109 msgid "everybody" msgstr "tout le monde" @@ -3816,11 +4167,11 @@ msgstr "Fonctions supplémentaires" msgid "Display" msgstr "Afficher" -#: mod/settings.php:60 mod/settings.php:832 +#: mod/settings.php:60 mod/settings.php:853 msgid "Social Networks" msgstr "Réseaux sociaux" -#: mod/settings.php:72 include/nav.php:179 +#: mod/settings.php:72 include/nav.php:180 msgid "Delegations" msgstr "Délégations" @@ -3852,633 +4203,655 @@ msgstr "Réglages de courriel mis-à-jour." msgid "Features updated" msgstr "Fonctionnalités mises à jour" -#: mod/settings.php:339 +#: mod/settings.php:341 msgid "Relocate message has been send to your contacts" msgstr "Un message de relocalisation a été envoyé à vos contacts." -#: mod/settings.php:353 include/user.php:39 +#: mod/settings.php:355 include/user.php:39 msgid "Passwords do not match. Password unchanged." msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." -#: mod/settings.php:358 +#: mod/settings.php:360 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué." -#: mod/settings.php:366 +#: mod/settings.php:368 msgid "Wrong password." msgstr "Mauvais mot de passe." -#: mod/settings.php:377 +#: mod/settings.php:379 msgid "Password changed." msgstr "Mots de passe changés." -#: mod/settings.php:379 +#: mod/settings.php:381 msgid "Password update failed. Please try again." msgstr "Le changement de mot de passe a échoué. Merci de recommencer." -#: mod/settings.php:446 +#: mod/settings.php:450 msgid " Please use a shorter name." msgstr " Merci d'utiliser un nom plus court." -#: mod/settings.php:448 +#: mod/settings.php:452 msgid " Name too short." msgstr " Nom trop court." -#: mod/settings.php:457 +#: mod/settings.php:461 msgid "Wrong Password" msgstr "Mauvais mot de passe" -#: mod/settings.php:462 +#: mod/settings.php:466 msgid " Not valid email." msgstr " Email invalide." -#: mod/settings.php:468 +#: mod/settings.php:472 msgid " Cannot change to that email." msgstr " Impossible de changer pour cet email." -#: mod/settings.php:524 +#: mod/settings.php:528 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut." -#: mod/settings.php:528 +#: mod/settings.php:532 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut." -#: mod/settings.php:558 +#: mod/settings.php:571 msgid "Settings updated." msgstr "Réglages mis à jour." -#: mod/settings.php:631 mod/settings.php:657 mod/settings.php:693 +#: mod/settings.php:647 mod/settings.php:673 mod/settings.php:709 msgid "Add application" msgstr "Ajouter une application" -#: mod/settings.php:635 mod/settings.php:661 +#: mod/settings.php:651 mod/settings.php:677 msgid "Consumer Key" msgstr "Clé utilisateur" -#: mod/settings.php:636 mod/settings.php:662 +#: mod/settings.php:652 mod/settings.php:678 msgid "Consumer Secret" msgstr "Secret utilisateur" -#: mod/settings.php:637 mod/settings.php:663 +#: mod/settings.php:653 mod/settings.php:679 msgid "Redirect" msgstr "Rediriger" -#: mod/settings.php:638 mod/settings.php:664 +#: mod/settings.php:654 mod/settings.php:680 msgid "Icon url" msgstr "URL de l'icône" -#: mod/settings.php:649 +#: mod/settings.php:665 msgid "You can't edit this application." msgstr "Vous ne pouvez pas éditer cette application." -#: mod/settings.php:692 +#: mod/settings.php:708 msgid "Connected Apps" msgstr "Applications connectées" -#: mod/settings.php:696 +#: mod/settings.php:712 msgid "Client key starts with" msgstr "La clé cliente commence par" -#: mod/settings.php:697 +#: mod/settings.php:713 msgid "No name" msgstr "Sans nom" -#: mod/settings.php:698 +#: mod/settings.php:714 msgid "Remove authorization" msgstr "Révoquer l'autorisation" -#: mod/settings.php:710 +#: mod/settings.php:726 msgid "No Plugin settings configured" msgstr "Pas de réglages d'extensions configurés" -#: mod/settings.php:718 +#: mod/settings.php:734 msgid "Plugin Settings" msgstr "Extensions" -#: mod/settings.php:732 +#: mod/settings.php:748 msgid "Off" msgstr "Éteint" -#: mod/settings.php:732 +#: mod/settings.php:748 msgid "On" msgstr "Allumé" -#: mod/settings.php:740 +#: mod/settings.php:756 msgid "Additional Features" msgstr "Fonctions supplémentaires" -#: mod/settings.php:750 mod/settings.php:754 +#: mod/settings.php:766 mod/settings.php:770 msgid "General Social Media Settings" -msgstr "" +msgstr "Paramètres généraux des réseaux sociaux" -#: mod/settings.php:760 +#: mod/settings.php:776 msgid "Disable intelligent shortening" -msgstr "" +msgstr "Désactiver la réduction d'URL" -#: mod/settings.php:762 +#: mod/settings.php:778 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If this option is enabled then every shortened post will always point to the" " original friendica post." -msgstr "" +msgstr "Normalement, le système tente de trouver le meilleur lien à ajouter aux publications raccourcies. Si cette option est activée, les publications raccourcies dirigeront toujours vers leur publication d'origine sur Friendica." -#: mod/settings.php:768 +#: mod/settings.php:784 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "" +msgstr "Suivre automatiquement ceux qui me suivent ou me mentionnent sur GNU Social (OStatus)" -#: mod/settings.php:770 +#: mod/settings.php:786 msgid "" "If you receive a message from an unknown OStatus user, this option decides " "what to do. If it is checked, a new contact will be created for every " "unknown user." -msgstr "" +msgstr "Si vous recevez un message d'un utilisateur OStatus inconnu, cette option détermine ce qui sera fait. Si elle est cochée, un nouveau contact sera créé pour chaque utilisateur inconnu." -#: mod/settings.php:776 +#: mod/settings.php:795 msgid "Your legacy GNU Social account" -msgstr "" +msgstr "Le compte GNU Social que vous avez déjà" -#: mod/settings.php:778 +#: mod/settings.php:797 msgid "" "If you enter your old GNU Social/Statusnet account name here (in the format " "user@domain.tld), your contacts will be added automatically. The field will " "be emptied when done." -msgstr "" +msgstr "Si vous entrez votre le nom de votre ancien compte GNU Social / StatusNet ici (utiliser le format utilisateur@domaine.tld), vos contacts seront ajoutés automatiquement. Le champ sera vidé lorsque ce sera terminé." -#: mod/settings.php:788 mod/settings.php:789 +#: mod/settings.php:800 +msgid "Repair OStatus subscriptions" +msgstr "Réparer les abonnements OStatus" + +#: mod/settings.php:809 mod/settings.php:810 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Le support natif pour la connectivité %s est %s" -#: mod/settings.php:788 mod/dfrn_request.php:853 +#: mod/settings.php:809 mod/dfrn_request.php:858 #: include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora" -#: mod/settings.php:788 mod/settings.php:789 +#: mod/settings.php:809 mod/settings.php:810 msgid "enabled" msgstr "activé" -#: mod/settings.php:788 mod/settings.php:789 +#: mod/settings.php:809 mod/settings.php:810 msgid "disabled" msgstr "désactivé" -#: mod/settings.php:789 +#: mod/settings.php:810 msgid "GNU Social (OStatus)" -msgstr "" +msgstr "GNU Social (OStatus)" -#: mod/settings.php:825 +#: mod/settings.php:846 msgid "Email access is disabled on this site." msgstr "L'accès courriel est désactivé sur ce site." -#: mod/settings.php:837 +#: mod/settings.php:858 msgid "Email/Mailbox Setup" msgstr "Réglages de courriel/boîte à lettre" -#: mod/settings.php:838 +#: mod/settings.php:859 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte." -#: mod/settings.php:839 +#: mod/settings.php:860 msgid "Last successful email check:" msgstr "Dernière vérification réussie des courriels:" -#: mod/settings.php:841 +#: mod/settings.php:862 msgid "IMAP server name:" msgstr "Nom du serveur IMAP:" -#: mod/settings.php:842 +#: mod/settings.php:863 msgid "IMAP port:" msgstr "Port IMAP:" -#: mod/settings.php:843 +#: mod/settings.php:864 msgid "Security:" msgstr "Sécurité:" -#: mod/settings.php:843 mod/settings.php:848 +#: mod/settings.php:864 mod/settings.php:869 msgid "None" msgstr "Aucun(e)" -#: mod/settings.php:844 +#: mod/settings.php:865 msgid "Email login name:" msgstr "Nom de connexion:" -#: mod/settings.php:845 +#: mod/settings.php:866 msgid "Email password:" msgstr "Mot de passe:" -#: mod/settings.php:846 +#: mod/settings.php:867 msgid "Reply-to address:" msgstr "Adresse de réponse:" -#: mod/settings.php:847 +#: mod/settings.php:868 msgid "Send public posts to all email contacts:" msgstr "Envoyer les publications publiques à tous les contacts courriels:" -#: mod/settings.php:848 +#: mod/settings.php:869 msgid "Action after import:" msgstr "Action après import:" -#: mod/settings.php:848 +#: mod/settings.php:869 msgid "Mark as seen" msgstr "Marquer comme vu" -#: mod/settings.php:848 +#: mod/settings.php:869 msgid "Move to folder" msgstr "Déplacer vers" -#: mod/settings.php:849 +#: mod/settings.php:870 msgid "Move to folder:" msgstr "Déplacer vers:" -#: mod/settings.php:930 +#: mod/settings.php:955 msgid "Display Settings" msgstr "Affichage" -#: mod/settings.php:936 mod/settings.php:952 +#: mod/settings.php:961 mod/settings.php:979 msgid "Display Theme:" msgstr "Thème d'affichage:" -#: mod/settings.php:937 +#: mod/settings.php:962 msgid "Mobile Theme:" msgstr "Thème mobile:" -#: mod/settings.php:938 +#: mod/settings.php:963 msgid "Update browser every xx seconds" msgstr "Mettre-à-jour l'affichage toutes les xx secondes" -#: mod/settings.php:938 +#: mod/settings.php:963 msgid "Minimum of 10 seconds, no maximum" msgstr "Délai minimum de 10 secondes, pas de maximum" -#: mod/settings.php:939 +#: mod/settings.php:964 msgid "Number of items to display per page:" msgstr "Nombre d’éléments par page:" -#: mod/settings.php:939 mod/settings.php:940 +#: mod/settings.php:964 mod/settings.php:965 msgid "Maximum of 100 items" msgstr "Maximum de 100 éléments" -#: mod/settings.php:940 +#: mod/settings.php:965 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Nombre d'éléments a afficher par page pour un appareil mobile" -#: mod/settings.php:941 +#: mod/settings.php:966 msgid "Don't show emoticons" msgstr "Ne pas afficher les émoticônes (smileys grahiques)" -#: mod/settings.php:942 +#: mod/settings.php:967 +msgid "Calendar" +msgstr "Calendrier" + +#: mod/settings.php:968 +msgid "Beginning of week:" +msgstr "Début de la semaine :" + +#: mod/settings.php:969 msgid "Don't show notices" msgstr "Ne plus afficher les avis" -#: mod/settings.php:943 +#: mod/settings.php:970 msgid "Infinite scroll" msgstr "Défilement infini" -#: mod/settings.php:944 +#: mod/settings.php:971 msgid "Automatic updates only at the top of the network page" msgstr "" -#: mod/settings.php:946 view/theme/cleanzero/config.php:82 +#: mod/settings.php:973 view/theme/cleanzero/config.php:82 #: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66 -#: view/theme/diabook/config.php:150 view/theme/vier/config.php:58 -#: view/theme/duepuntozero/config.php:61 +#: view/theme/diabook/config.php:150 view/theme/clean/config.php:85 +#: view/theme/vier/config.php:109 view/theme/duepuntozero/config.php:61 msgid "Theme settings" msgstr "Réglages du thème graphique" -#: mod/settings.php:1022 +#: mod/settings.php:1050 msgid "User Types" msgstr "Types d'utilisateurs" -#: mod/settings.php:1023 +#: mod/settings.php:1051 msgid "Community Types" msgstr "Genre de communautés" -#: mod/settings.php:1024 +#: mod/settings.php:1052 msgid "Normal Account Page" msgstr "Compte normal" -#: mod/settings.php:1025 +#: mod/settings.php:1053 msgid "This account is a normal personal profile" msgstr "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)" -#: mod/settings.php:1028 +#: mod/settings.php:1056 msgid "Soapbox Page" msgstr "Compte \"boîte à savon\"" -#: mod/settings.php:1029 +#: mod/settings.php:1057 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'" -#: mod/settings.php:1032 +#: mod/settings.php:1060 msgid "Community Forum/Celebrity Account" msgstr "Compte de communauté/célébrité" -#: mod/settings.php:1033 +#: mod/settings.php:1061 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'" -#: mod/settings.php:1036 +#: mod/settings.php:1064 msgid "Automatic Friend Page" msgstr "Compte d'\"amitié automatique\"" -#: mod/settings.php:1037 +#: mod/settings.php:1065 msgid "Automatically approve all connection/friend requests as friends" msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis" -#: mod/settings.php:1040 +#: mod/settings.php:1068 msgid "Private Forum [Experimental]" msgstr "Forum privé [expérimental]" -#: mod/settings.php:1041 +#: mod/settings.php:1069 msgid "Private forum - approved members only" msgstr "Forum privé - modéré en inscription" -#: mod/settings.php:1053 +#: mod/settings.php:1081 msgid "OpenID:" msgstr "OpenID:" -#: mod/settings.php:1053 +#: mod/settings.php:1081 msgid "(Optional) Allow this OpenID to login to this account." msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte." -#: mod/settings.php:1063 +#: mod/settings.php:1091 msgid "Publish your default profile in your local site directory?" msgstr "Publier votre profil par défaut sur l'annuaire local de ce site?" -#: mod/settings.php:1069 +#: mod/settings.php:1097 msgid "Publish your default profile in the global social directory?" msgstr "Publier votre profil par défaut sur l'annuaire social global?" -#: mod/settings.php:1077 +#: mod/settings.php:1105 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?" -#: mod/settings.php:1081 include/acl_selectors.php:330 +#: mod/settings.php:1109 include/acl_selectors.php:331 msgid "Hide your profile details from unknown viewers?" msgstr "Cacher les détails du profil aux visiteurs inconnus?" -#: mod/settings.php:1081 +#: mod/settings.php:1109 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." msgstr "" -#: mod/settings.php:1086 +#: mod/settings.php:1114 msgid "Allow friends to post to your profile page?" msgstr "Autoriser vos amis à publier sur votre profil?" -#: mod/settings.php:1092 +#: mod/settings.php:1120 msgid "Allow friends to tag your posts?" msgstr "Autoriser vos amis à étiqueter vos publications?" -#: mod/settings.php:1098 +#: mod/settings.php:1126 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?" -#: mod/settings.php:1104 +#: mod/settings.php:1132 msgid "Permit unknown people to send you private mail?" msgstr "Autoriser les messages privés d'inconnus?" -#: mod/settings.php:1112 +#: mod/settings.php:1140 msgid "Profile is not published." msgstr "Ce profil n'est pas publié." -#: mod/settings.php:1120 +#: mod/settings.php:1148 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: mod/settings.php:1127 +#: mod/settings.php:1155 msgid "Automatically expire posts after this many days:" msgstr "Les publications expirent automatiquement après (en jours) :" -#: mod/settings.php:1127 +#: mod/settings.php:1155 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées" -#: mod/settings.php:1128 +#: mod/settings.php:1156 msgid "Advanced expiration settings" msgstr "Réglages avancés de l'expiration" -#: mod/settings.php:1129 +#: mod/settings.php:1157 msgid "Advanced Expiration" msgstr "Expiration (avancé)" -#: mod/settings.php:1130 +#: mod/settings.php:1158 msgid "Expire posts:" msgstr "Faire expirer les publications:" -#: mod/settings.php:1131 +#: mod/settings.php:1159 msgid "Expire personal notes:" msgstr "Faire expirer les notes personnelles:" -#: mod/settings.php:1132 +#: mod/settings.php:1160 msgid "Expire starred posts:" msgstr "Faire expirer les publications marqués:" -#: mod/settings.php:1133 +#: mod/settings.php:1161 msgid "Expire photos:" msgstr "Faire expirer les photos:" -#: mod/settings.php:1134 +#: mod/settings.php:1162 msgid "Only expire posts by others:" msgstr "Faire expirer seulement les publications des autres:" -#: mod/settings.php:1160 +#: mod/settings.php:1190 msgid "Account Settings" msgstr "Compte" -#: mod/settings.php:1168 +#: mod/settings.php:1198 msgid "Password Settings" msgstr "Réglages de mot de passe" -#: mod/settings.php:1169 mod/register.php:271 +#: mod/settings.php:1199 mod/register.php:274 msgid "New Password:" msgstr "Nouveau mot de passe:" -#: mod/settings.php:1170 mod/register.php:272 +#: mod/settings.php:1200 mod/register.php:275 msgid "Confirm:" msgstr "Confirmer:" -#: mod/settings.php:1170 +#: mod/settings.php:1200 msgid "Leave password fields blank unless changing" msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer" -#: mod/settings.php:1171 +#: mod/settings.php:1201 msgid "Current Password:" msgstr "Mot de passe actuel:" -#: mod/settings.php:1171 mod/settings.php:1172 +#: mod/settings.php:1201 mod/settings.php:1202 msgid "Your current password to confirm the changes" msgstr "Votre mot de passe actuel pour confirmer les modifications" -#: mod/settings.php:1172 +#: mod/settings.php:1202 msgid "Password:" msgstr "Mot de passe:" -#: mod/settings.php:1176 +#: mod/settings.php:1206 msgid "Basic Settings" msgstr "Réglages basiques" -#: mod/settings.php:1177 include/identity.php:538 +#: mod/settings.php:1207 include/identity.php:551 msgid "Full Name:" msgstr "Nom complet:" -#: mod/settings.php:1178 +#: mod/settings.php:1208 msgid "Email Address:" msgstr "Adresse courriel:" -#: mod/settings.php:1179 +#: mod/settings.php:1209 msgid "Your Timezone:" msgstr "Votre fuseau horaire:" -#: mod/settings.php:1180 +#: mod/settings.php:1210 +msgid "Your Language:" +msgstr "Votre langue :" + +#: mod/settings.php:1210 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Détermine la langue que nous utilisons pour afficher votre interface Friendica et pour vous envoyer des courriels" + +#: mod/settings.php:1211 msgid "Default Post Location:" msgstr "Emplacement de publication par défaut:" -#: mod/settings.php:1181 +#: mod/settings.php:1212 msgid "Use Browser Location:" msgstr "Utiliser la localisation géographique du navigateur:" -#: mod/settings.php:1184 +#: mod/settings.php:1215 msgid "Security and Privacy Settings" msgstr "Réglages de sécurité et vie privée" -#: mod/settings.php:1186 +#: mod/settings.php:1217 msgid "Maximum Friend Requests/Day:" msgstr "Nombre maximal de requêtes d'amitié/jour:" -#: mod/settings.php:1186 mod/settings.php:1216 +#: mod/settings.php:1217 mod/settings.php:1247 msgid "(to prevent spam abuse)" msgstr "(pour limiter l'impact du spam)" -#: mod/settings.php:1187 +#: mod/settings.php:1218 msgid "Default Post Permissions" msgstr "Permissions de publication par défaut" -#: mod/settings.php:1188 +#: mod/settings.php:1219 msgid "(click to open/close)" msgstr "(cliquer pour ouvrir/fermer)" -#: mod/settings.php:1197 mod/photos.php:1166 mod/photos.php:1538 +#: mod/settings.php:1228 mod/photos.php:1191 mod/photos.php:1576 msgid "Show to Groups" msgstr "Montrer aux groupes" -#: mod/settings.php:1198 mod/photos.php:1167 mod/photos.php:1539 +#: mod/settings.php:1229 mod/photos.php:1192 mod/photos.php:1577 msgid "Show to Contacts" msgstr "Montrer aux Contacts" -#: mod/settings.php:1199 +#: mod/settings.php:1230 msgid "Default Private Post" msgstr "Message privé par défaut" -#: mod/settings.php:1200 +#: mod/settings.php:1231 msgid "Default Public Post" msgstr "Message publique par défaut" -#: mod/settings.php:1204 +#: mod/settings.php:1235 msgid "Default Permissions for New Posts" msgstr "Permissions par défaut pour les nouvelles publications" -#: mod/settings.php:1216 +#: mod/settings.php:1247 msgid "Maximum private messages per day from unknown people:" msgstr "Maximum de messages privés d'inconnus par jour:" -#: mod/settings.php:1219 +#: mod/settings.php:1250 msgid "Notification Settings" msgstr "Réglages de notification" -#: mod/settings.php:1220 +#: mod/settings.php:1251 msgid "By default post a status message when:" msgstr "Par défaut, poster un statut quand:" -#: mod/settings.php:1221 +#: mod/settings.php:1252 msgid "accepting a friend request" msgstr "j'accepte un ami" -#: mod/settings.php:1222 +#: mod/settings.php:1253 msgid "joining a forum/community" msgstr "joignant un forum/une communauté" -#: mod/settings.php:1223 +#: mod/settings.php:1254 msgid "making an interesting profile change" msgstr "je fais une modification intéressante de mon profil" -#: mod/settings.php:1224 +#: mod/settings.php:1255 msgid "Send a notification email when:" msgstr "Envoyer un courriel de notification quand:" -#: mod/settings.php:1225 +#: mod/settings.php:1256 msgid "You receive an introduction" msgstr "Vous recevez une introduction" -#: mod/settings.php:1226 +#: mod/settings.php:1257 msgid "Your introductions are confirmed" msgstr "Vos introductions sont confirmées" -#: mod/settings.php:1227 +#: mod/settings.php:1258 msgid "Someone writes on your profile wall" msgstr "Quelqu'un écrit sur votre mur" -#: mod/settings.php:1228 +#: mod/settings.php:1259 msgid "Someone writes a followup comment" msgstr "Quelqu'un vous commente" -#: mod/settings.php:1229 +#: mod/settings.php:1260 msgid "You receive a private message" msgstr "Vous recevez un message privé" -#: mod/settings.php:1230 +#: mod/settings.php:1261 msgid "You receive a friend suggestion" msgstr "Vous avez reçu une suggestion d'ami" -#: mod/settings.php:1231 +#: mod/settings.php:1262 msgid "You are tagged in a post" msgstr "Vous avez été étiquetté dans une publication" -#: mod/settings.php:1232 +#: mod/settings.php:1263 msgid "You are poked/prodded/etc. in a post" msgstr "Vous avez été sollicité dans une publication" -#: mod/settings.php:1234 +#: mod/settings.php:1265 msgid "Activate desktop notifications" -msgstr "" +msgstr "Activer les notifications de bureau" -#: mod/settings.php:1234 +#: mod/settings.php:1265 msgid "Show desktop popup on new notifications" -msgstr "" +msgstr "Afficher dans des pops-ups les nouvelles notifications" -#: mod/settings.php:1236 +#: mod/settings.php:1267 msgid "Text-only notification emails" -msgstr "" +msgstr "Courriels de notification en format texte" -#: mod/settings.php:1238 +#: mod/settings.php:1269 msgid "Send text only notification emails, without the html part" -msgstr "" +msgstr "Envoyer le texte des courriels de notification, sans la composante html" -#: mod/settings.php:1240 +#: mod/settings.php:1271 msgid "Advanced Account/Page Type Settings" msgstr "Paramètres avancés de compte/page" -#: mod/settings.php:1241 +#: mod/settings.php:1272 msgid "Change the behaviour of this account for special situations" msgstr "Modifier le comportement de ce compte dans certaines situations" -#: mod/settings.php:1244 +#: mod/settings.php:1275 msgid "Relocate" msgstr "Relocaliser" -#: mod/settings.php:1245 +#: mod/settings.php:1276 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton." -#: mod/settings.php:1246 +#: mod/settings.php:1277 msgid "Resend relocate message to contacts" msgstr "Renvoyer un message de relocalisation aux contacts." @@ -4486,122 +4859,122 @@ msgstr "Renvoyer un message de relocalisation aux contacts." msgid "This introduction has already been accepted." msgstr "Cette introduction a déjà été acceptée." -#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 +#: mod/dfrn_request.php:120 mod/dfrn_request.php:519 msgid "Profile location is not valid or does not contain profile information." msgstr "L'emplacement du profil est invalide ou ne contient pas de profil valide." -#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 +#: mod/dfrn_request.php:125 mod/dfrn_request.php:524 msgid "Warning: profile location has no identifiable owner name." msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable." -#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 +#: mod/dfrn_request.php:127 mod/dfrn_request.php:526 msgid "Warning: profile location has no profile photo." msgstr "Attention: l'emplacement du profil n'a pas de photo de profil." -#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#: mod/dfrn_request.php:130 mod/dfrn_request.php:529 #, php-format msgid "%d required parameter was not found at the given location" msgid_plural "%d required parameters were not found at the given location" msgstr[0] "%d paramètre requis n'a pas été trouvé à l'endroit indiqué" msgstr[1] "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué" -#: mod/dfrn_request.php:172 +#: mod/dfrn_request.php:173 msgid "Introduction complete." msgstr "Phase d'introduction achevée." -#: mod/dfrn_request.php:214 +#: mod/dfrn_request.php:215 msgid "Unrecoverable protocol error." msgstr "Erreur de protocole non-récupérable." -#: mod/dfrn_request.php:242 +#: mod/dfrn_request.php:243 msgid "Profile unavailable." msgstr "Profil indisponible." -#: mod/dfrn_request.php:267 +#: mod/dfrn_request.php:268 #, php-format msgid "%s has received too many connection requests today." msgstr "%s a reçu trop de demandes d'introduction aujourd'hui." -#: mod/dfrn_request.php:268 +#: mod/dfrn_request.php:269 msgid "Spam protection measures have been invoked." msgstr "Des mesures de protection contre le spam ont été déclenchées." -#: mod/dfrn_request.php:269 +#: mod/dfrn_request.php:270 msgid "Friends are advised to please try again in 24 hours." msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer." -#: mod/dfrn_request.php:331 +#: mod/dfrn_request.php:332 msgid "Invalid locator" msgstr "Localisateur invalide" -#: mod/dfrn_request.php:340 +#: mod/dfrn_request.php:341 msgid "Invalid email address." msgstr "Adresse courriel invalide." -#: mod/dfrn_request.php:367 +#: mod/dfrn_request.php:368 msgid "This account has not been configured for email. Request failed." msgstr "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée." -#: mod/dfrn_request.php:463 +#: mod/dfrn_request.php:464 msgid "Unable to resolve your name at the provided location." msgstr "Impossible de résoudre votre nom à l'emplacement fourni." -#: mod/dfrn_request.php:476 +#: mod/dfrn_request.php:477 msgid "You have already introduced yourself here." msgstr "Vous vous êtes déjà présenté ici." -#: mod/dfrn_request.php:480 +#: mod/dfrn_request.php:481 #, php-format msgid "Apparently you are already friends with %s." msgstr "Il semblerait que vous soyez déjà ami avec %s." -#: mod/dfrn_request.php:501 +#: mod/dfrn_request.php:502 msgid "Invalid profile URL." msgstr "URL de profil invalide." -#: mod/dfrn_request.php:507 include/follow.php:70 +#: mod/dfrn_request.php:508 include/follow.php:72 msgid "Disallowed profile URL." msgstr "URL de profil interdite." -#: mod/dfrn_request.php:597 +#: mod/dfrn_request.php:599 msgid "Your introduction has been sent." msgstr "Votre introduction a été envoyée." -#: mod/dfrn_request.php:650 +#: mod/dfrn_request.php:652 msgid "Please login to confirm introduction." msgstr "Connectez-vous pour confirmer l'introduction." -#: mod/dfrn_request.php:660 +#: mod/dfrn_request.php:662 msgid "" "Incorrect identity currently logged in. Please login to " "this profile." msgstr "Identité incorrecte actuellement connectée. Merci de vous connecter à ce profil." -#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 +#: mod/dfrn_request.php:676 mod/dfrn_request.php:693 msgid "Confirm" msgstr "Confirmer" -#: mod/dfrn_request.php:686 +#: mod/dfrn_request.php:688 msgid "Hide this contact" msgstr "Cacher ce contact" -#: mod/dfrn_request.php:689 +#: mod/dfrn_request.php:691 #, php-format msgid "Welcome home %s." msgstr "Bienvenue chez vous, %s." -#: mod/dfrn_request.php:690 +#: mod/dfrn_request.php:692 #, php-format msgid "Please confirm your introduction/connection request to %s." msgstr "Merci de confirmer votre demande d'introduction auprès de %s." -#: mod/dfrn_request.php:819 +#: mod/dfrn_request.php:821 msgid "" "Please enter your 'Identity Address' from one of the following supported " "communications networks:" msgstr "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:" -#: mod/dfrn_request.php:839 +#: mod/dfrn_request.php:842 #, php-format msgid "" "If you are not yet a member of the free social web, ." msgstr "" -#: mod/dfrn_request.php:842 +#: mod/dfrn_request.php:847 msgid "Friend/Connection Request" msgstr "Requête de relation/amitié" -#: mod/dfrn_request.php:843 +#: mod/dfrn_request.php:848 msgid "" "Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " "testuser@identi.ca" msgstr "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" -#: mod/dfrn_request.php:851 include/contact_selectors.php:76 +#: mod/dfrn_request.php:856 include/contact_selectors.php:76 msgid "Friendica" msgstr "Friendica" -#: mod/dfrn_request.php:852 +#: mod/dfrn_request.php:857 msgid "StatusNet/Federated Social Web" msgstr "StatusNet/Federated Social Web" -#: mod/dfrn_request.php:854 +#: mod/dfrn_request.php:859 #, php-format msgid "" " - please do not use this form. Instead, enter %s into your Diaspora search" @@ -4646,80 +5019,84 @@ msgid "" "password: %s

You can change your password after login." msgstr "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:
identifiant : %s
mot de passe : %s

Vous pourrez changer votre mot de passe une fois connecté." -#: mod/register.php:107 +#: mod/register.php:104 +msgid "Registration successful." +msgstr "" + +#: mod/register.php:110 msgid "Your registration can not be processed." msgstr "Votre inscription ne peut être traitée." -#: mod/register.php:150 +#: mod/register.php:153 msgid "Your registration is pending approval by the site owner." msgstr "Votre inscription attend une validation du propriétaire du site." -#: mod/register.php:188 mod/uimport.php:50 +#: mod/register.php:191 mod/uimport.php:50 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain." -#: mod/register.php:216 +#: mod/register.php:219 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking 'Register'." msgstr "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"." -#: mod/register.php:217 +#: mod/register.php:220 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste." -#: mod/register.php:218 +#: mod/register.php:221 msgid "Your OpenID (optional): " msgstr "Votre OpenID (facultatif): " -#: mod/register.php:232 +#: mod/register.php:235 msgid "Include your profile in member directory?" msgstr "Inclure votre profil dans l'annuaire des membres?" -#: mod/register.php:256 +#: mod/register.php:259 msgid "Membership on this site is by invitation only." msgstr "L'inscription à ce site se fait uniquement sur invitation." -#: mod/register.php:257 +#: mod/register.php:260 msgid "Your invitation ID: " msgstr "Votre ID d'invitation: " -#: mod/register.php:268 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Votre nom complet (p.ex. Michel Dupont): " +#: mod/register.php:271 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" -#: mod/register.php:269 +#: mod/register.php:272 msgid "Your Email Address: " msgstr "Votre adresse courriel: " -#: mod/register.php:271 +#: mod/register.php:274 msgid "Leave empty for an auto generated password." msgstr "" -#: mod/register.php:273 +#: mod/register.php:276 msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be " "'nickname@$sitename'." msgstr "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@$sitename</strong>'." -#: mod/register.php:274 +#: mod/register.php:277 msgid "Choose a nickname: " msgstr "Choisir un pseudo: " -#: mod/register.php:277 boot.php:1248 include/nav.php:109 +#: mod/register.php:280 boot.php:1256 include/nav.php:108 msgid "Register" msgstr "S'inscrire" -#: mod/register.php:283 mod/uimport.php:64 +#: mod/register.php:286 mod/uimport.php:64 msgid "Import" msgstr "Importer" -#: mod/register.php:284 +#: mod/register.php:287 msgid "Import your profile to this friendica instance" msgstr "Importer votre profile dans cette instance de friendica" @@ -4727,49 +5104,66 @@ msgstr "Importer votre profile dans cette instance de friendica" msgid "System down for maintenance" msgstr "Système indisponible pour cause de maintenance" -#: mod/search.php:100 include/text.php:996 include/nav.php:119 +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "" + +#: mod/search.php:115 +msgid "Too Many Requests" +msgstr "" + +#: mod/search.php:116 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: mod/search.php:126 include/text.php:1003 include/nav.php:118 msgid "Search" msgstr "Recherche" -#: mod/search.php:198 +#: mod/search.php:224 #, php-format msgid "Items tagged with: %s" msgstr "" -#: mod/search.php:200 +#: mod/search.php:226 #, php-format msgid "Search results for: %s" msgstr "" -#: mod/directory.php:53 view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Annuaire global" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "Trouver sur ce site" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "Annuaire local" - -#: mod/directory.php:129 mod/profiles.php:747 +#: mod/directory.php:116 mod/profiles.php:760 msgid "Age: " msgstr "Age : " -#: mod/directory.php:132 +#: mod/directory.php:119 msgid "Gender: " msgstr "Genre : " -#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 +#: mod/directory.php:143 include/identity.php:283 include/identity.php:573 msgid "Status:" msgstr "Statut:" -#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 +#: mod/directory.php:145 include/identity.php:285 include/identity.php:584 msgid "Homepage:" msgstr "Page personnelle:" -#: mod/directory.php:205 +#: mod/directory.php:195 view/theme/diabook/theme.php:525 +#: view/theme/vier/theme.php:205 +msgid "Global Directory" +msgstr "Annuaire global" + +#: mod/directory.php:197 +msgid "Find on this site" +msgstr "Trouver sur ce site" + +#: mod/directory.php:199 +msgid "Finding:" +msgstr "" + +#: mod/directory.php:201 +msgid "Site Directory" +msgstr "Annuaire local" + +#: mod/directory.php:208 msgid "No entries (some entries may be hidden)." msgstr "Aucune entrée (certaines peuvent être cachées)." @@ -4777,7 +5171,7 @@ msgstr "Aucune entrée (certaines peuvent être cachées)." msgid "No potential page delegates located." msgstr "Pas de délégataire potentiel." -#: mod/delegate.php:130 include/nav.php:179 +#: mod/delegate.php:130 include/nav.php:180 msgid "Delegate Page Management" msgstr "Déléguer la gestion de la page" @@ -4808,14 +5202,14 @@ msgstr "Ajouter" msgid "No entries." msgstr "Aucune entrée." -#: mod/common.php:45 -msgid "Common Friends" -msgstr "Amis communs" - -#: mod/common.php:82 +#: mod/common.php:85 msgid "No contacts in common." msgstr "Pas de contacts en commun." +#: mod/common.php:133 +msgid "Common Friends" +msgstr "Amis communs" + #: mod/uexport.php:77 msgid "Export account" msgstr "Exporter le compte" @@ -4837,7 +5231,7 @@ msgid "" "of your account (photos are not exported)" msgstr "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)." -#: mod/mood.php:62 include/conversation.php:226 +#: mod/mood.php:62 include/conversation.php:239 #, php-format msgid "%1$s is currently %2$s" msgstr "%1$s est d'humeur %2$s" @@ -4854,21 +5248,21 @@ msgstr "Spécifiez votre humeur du moment, et informez vos amis" msgid "Do you really want to delete this suggestion?" msgstr "Voulez-vous vraiment supprimer cette suggestion ?" -#: mod/suggest.php:69 include/contact_widgets.php:35 -#: view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" -msgstr "Suggestions d'amitiés/contacts" - -#: mod/suggest.php:76 +#: mod/suggest.php:71 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h." -#: mod/suggest.php:94 +#: mod/suggest.php:83 mod/suggest.php:101 msgid "Ignore/Hide" msgstr "Ignorer/cacher" +#: mod/suggest.php:111 include/contact_widgets.php:35 +#: view/theme/diabook/theme.php:527 view/theme/vier/theme.php:207 +msgid "Friend Suggestions" +msgstr "Suggestions d'amitiés/contacts" + #: mod/profiles.php:37 msgid "Profile deleted." msgstr "Profil supprimé." @@ -4897,11 +5291,11 @@ msgstr "Statut marital" msgid "Romantic Partner" msgstr "Partenaire / conjoint" -#: mod/profiles.php:344 +#: mod/profiles.php:344 mod/photos.php:1639 include/conversation.php:508 msgid "Likes" msgstr "Derniers \"J'aime\"" -#: mod/profiles.php:348 +#: mod/profiles.php:348 mod/photos.php:1639 include/conversation.php:508 msgid "Dislikes" msgstr "Derniers \"Je n'aime pas\"" @@ -4929,7 +5323,7 @@ msgstr "Préférence sexuelle" msgid "Homepage" msgstr "Site internet" -#: mod/profiles.php:375 mod/profiles.php:695 +#: mod/profiles.php:375 mod/profiles.php:708 msgid "Interests" msgstr "Centres d'intérêt" @@ -4937,7 +5331,7 @@ msgstr "Centres d'intérêt" msgid "Address" msgstr "Adresse" -#: mod/profiles.php:386 mod/profiles.php:691 +#: mod/profiles.php:386 mod/profiles.php:704 msgid "Location" msgstr "Localisation" @@ -4976,221 +5370,225 @@ msgstr "Cacher mes contacts et amis :" msgid "Hide your contact/friend list from viewers of this profile?" msgstr "Cacher ma liste d'amis / contacts des visiteurs de ce profil ?" -#: mod/profiles.php:682 +#: mod/profiles.php:684 +msgid "Show more profile fields:" +msgstr "" + +#: mod/profiles.php:695 msgid "Edit Profile Details" msgstr "Éditer les détails du profil" -#: mod/profiles.php:684 +#: mod/profiles.php:697 msgid "Change Profile Photo" msgstr "Changer la photo du profil" -#: mod/profiles.php:685 +#: mod/profiles.php:698 msgid "View this profile" msgstr "Voir ce profil" -#: mod/profiles.php:686 +#: mod/profiles.php:699 msgid "Create a new profile using these settings" msgstr "Créer un nouveau profil en utilisant ces réglages" -#: mod/profiles.php:687 +#: mod/profiles.php:700 msgid "Clone this profile" msgstr "Cloner ce profil" -#: mod/profiles.php:688 +#: mod/profiles.php:701 msgid "Delete this profile" msgstr "Supprimer ce profil" -#: mod/profiles.php:689 +#: mod/profiles.php:702 msgid "Basic information" msgstr "Information de base" -#: mod/profiles.php:690 +#: mod/profiles.php:703 msgid "Profile picture" msgstr "Image de profil" -#: mod/profiles.php:692 +#: mod/profiles.php:705 msgid "Preferences" msgstr "Préférences" -#: mod/profiles.php:693 +#: mod/profiles.php:706 msgid "Status information" msgstr "Information sur le statut" -#: mod/profiles.php:694 +#: mod/profiles.php:707 msgid "Additional information" msgstr "Information additionnelle" -#: mod/profiles.php:697 +#: mod/profiles.php:710 msgid "Profile Name:" msgstr "Nom du profil :" -#: mod/profiles.php:698 +#: mod/profiles.php:711 msgid "Your Full Name:" msgstr "Votre nom complet :" -#: mod/profiles.php:699 +#: mod/profiles.php:712 msgid "Title/Description:" msgstr "Titre / Description :" -#: mod/profiles.php:700 +#: mod/profiles.php:713 msgid "Your Gender:" msgstr "Votre genre :" -#: mod/profiles.php:701 +#: mod/profiles.php:714 msgid "Birthday :" msgstr "" -#: mod/profiles.php:702 +#: mod/profiles.php:715 msgid "Street Address:" msgstr "Adresse postale :" -#: mod/profiles.php:703 +#: mod/profiles.php:716 msgid "Locality/City:" msgstr "Ville / Localité :" -#: mod/profiles.php:704 +#: mod/profiles.php:717 msgid "Postal/Zip Code:" msgstr "Code postal :" -#: mod/profiles.php:705 +#: mod/profiles.php:718 msgid "Country:" msgstr "Pays :" -#: mod/profiles.php:706 +#: mod/profiles.php:719 msgid "Region/State:" msgstr "Région / État :" -#: mod/profiles.php:707 +#: mod/profiles.php:720 msgid " Marital Status:" msgstr " Statut marital :" -#: mod/profiles.php:708 +#: mod/profiles.php:721 msgid "Who: (if applicable)" msgstr "Qui : (si pertinent)" -#: mod/profiles.php:709 +#: mod/profiles.php:722 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" -#: mod/profiles.php:710 +#: mod/profiles.php:723 msgid "Since [date]:" msgstr "Depuis [date] :" -#: mod/profiles.php:711 include/identity.php:569 +#: mod/profiles.php:724 include/identity.php:582 msgid "Sexual Preference:" msgstr "Préférence sexuelle:" -#: mod/profiles.php:712 +#: mod/profiles.php:725 msgid "Homepage URL:" msgstr "Page personnelle :" -#: mod/profiles.php:713 include/identity.php:573 +#: mod/profiles.php:726 include/identity.php:586 msgid "Hometown:" msgstr " Ville d'origine:" -#: mod/profiles.php:714 include/identity.php:577 +#: mod/profiles.php:727 include/identity.php:590 msgid "Political Views:" msgstr "Opinions politiques:" -#: mod/profiles.php:715 +#: mod/profiles.php:728 msgid "Religious Views:" msgstr "Opinions religieuses :" -#: mod/profiles.php:716 +#: mod/profiles.php:729 msgid "Public Keywords:" msgstr "Mots-clés publics :" -#: mod/profiles.php:717 +#: mod/profiles.php:730 msgid "Private Keywords:" msgstr "Mots-clés privés :" -#: mod/profiles.php:718 include/identity.php:585 +#: mod/profiles.php:731 include/identity.php:598 msgid "Likes:" msgstr "J'aime :" -#: mod/profiles.php:719 include/identity.php:587 +#: mod/profiles.php:732 include/identity.php:600 msgid "Dislikes:" msgstr "Je n'aime pas :" -#: mod/profiles.php:720 +#: mod/profiles.php:733 msgid "Example: fishing photography software" msgstr "Exemple : football dessin programmation" -#: mod/profiles.php:721 +#: mod/profiles.php:734 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)" -#: mod/profiles.php:722 +#: mod/profiles.php:735 msgid "(Used for searching profiles, never shown to others)" msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)" -#: mod/profiles.php:723 +#: mod/profiles.php:736 msgid "Tell us about yourself..." msgstr "Parlez-nous de vous..." -#: mod/profiles.php:724 +#: mod/profiles.php:737 msgid "Hobbies/Interests" msgstr "Passe-temps / Centres d'intérêt" -#: mod/profiles.php:725 +#: mod/profiles.php:738 msgid "Contact information and Social Networks" msgstr "Coordonnées / Réseaux sociaux" -#: mod/profiles.php:726 +#: mod/profiles.php:739 msgid "Musical interests" msgstr "Goûts musicaux" -#: mod/profiles.php:727 +#: mod/profiles.php:740 msgid "Books, literature" msgstr "Lectures" -#: mod/profiles.php:728 +#: mod/profiles.php:741 msgid "Television" msgstr "Télévision" -#: mod/profiles.php:729 +#: mod/profiles.php:742 msgid "Film/dance/culture/entertainment" msgstr "Cinéma / Danse / Culture / Divertissement" -#: mod/profiles.php:730 +#: mod/profiles.php:743 msgid "Love/romance" msgstr "Amour / Romance" -#: mod/profiles.php:731 +#: mod/profiles.php:744 msgid "Work/employment" msgstr "Activité professionnelle / Occupation" -#: mod/profiles.php:732 +#: mod/profiles.php:745 msgid "School/education" msgstr "Études / Formation" -#: mod/profiles.php:737 +#: mod/profiles.php:750 msgid "" "This is your public profile.
It may " "be visible to anybody using the internet." msgstr "Ceci est votre profil public.
Il peut être visible par n'importe quel utilisateur d'Internet." -#: mod/profiles.php:800 +#: mod/profiles.php:813 msgid "Edit/Manage Profiles" msgstr "Editer / gérer les profils" -#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 +#: mod/profiles.php:814 include/identity.php:241 include/identity.php:267 msgid "Change profile photo" msgstr "Changer de photo de profil" -#: mod/profiles.php:802 include/identity.php:232 +#: mod/profiles.php:815 include/identity.php:242 msgid "Create New Profile" msgstr "Créer un nouveau profil" -#: mod/profiles.php:813 include/identity.php:242 +#: mod/profiles.php:826 include/identity.php:252 msgid "Profile Image" msgstr "Image du profil" -#: mod/profiles.php:815 include/identity.php:245 +#: mod/profiles.php:828 include/identity.php:255 msgid "visible to everybody" msgstr "visible par tous" -#: mod/profiles.php:816 include/identity.php:246 +#: mod/profiles.php:829 include/identity.php:256 msgid "Edit visibility" msgstr "Changer la visibilité" @@ -5202,75 +5600,75 @@ msgstr "Élément introuvable" msgid "Edit post" msgstr "Éditer la publication" -#: mod/editpost.php:111 include/conversation.php:1057 +#: mod/editpost.php:110 include/conversation.php:1185 msgid "upload photo" msgstr "envoi image" -#: mod/editpost.php:112 include/conversation.php:1058 +#: mod/editpost.php:111 include/conversation.php:1186 msgid "Attach file" msgstr "Joindre fichier" -#: mod/editpost.php:113 include/conversation.php:1059 +#: mod/editpost.php:112 include/conversation.php:1187 msgid "attach file" msgstr "ajout fichier" -#: mod/editpost.php:115 include/conversation.php:1061 +#: mod/editpost.php:114 include/conversation.php:1189 msgid "web link" msgstr "lien web" -#: mod/editpost.php:116 include/conversation.php:1062 +#: mod/editpost.php:115 include/conversation.php:1190 msgid "Insert video link" msgstr "Insérer un lien video" -#: mod/editpost.php:117 include/conversation.php:1063 +#: mod/editpost.php:116 include/conversation.php:1191 msgid "video link" msgstr "lien vidéo" -#: mod/editpost.php:118 include/conversation.php:1064 +#: mod/editpost.php:117 include/conversation.php:1192 msgid "Insert audio link" msgstr "Insérer un lien audio" -#: mod/editpost.php:119 include/conversation.php:1065 +#: mod/editpost.php:118 include/conversation.php:1193 msgid "audio link" msgstr "lien audio" -#: mod/editpost.php:120 include/conversation.php:1066 +#: mod/editpost.php:119 include/conversation.php:1194 msgid "Set your location" msgstr "Définir votre localisation" -#: mod/editpost.php:121 include/conversation.php:1067 +#: mod/editpost.php:120 include/conversation.php:1195 msgid "set location" msgstr "spéc. localisation" -#: mod/editpost.php:122 include/conversation.php:1068 +#: mod/editpost.php:121 include/conversation.php:1196 msgid "Clear browser location" msgstr "Effacer la localisation du navigateur" -#: mod/editpost.php:123 include/conversation.php:1069 +#: mod/editpost.php:122 include/conversation.php:1197 msgid "clear location" msgstr "supp. localisation" -#: mod/editpost.php:125 include/conversation.php:1075 +#: mod/editpost.php:124 include/conversation.php:1203 msgid "Permission settings" msgstr "Réglages des permissions" -#: mod/editpost.php:133 include/acl_selectors.php:343 +#: mod/editpost.php:132 include/acl_selectors.php:344 msgid "CC: email addresses" msgstr "CC: adresses de courriel" -#: mod/editpost.php:134 include/conversation.php:1084 +#: mod/editpost.php:133 include/conversation.php:1212 msgid "Public post" msgstr "Publication publique" -#: mod/editpost.php:137 include/conversation.php:1071 +#: mod/editpost.php:136 include/conversation.php:1199 msgid "Set title" msgstr "Définir un titre" -#: mod/editpost.php:139 include/conversation.php:1073 +#: mod/editpost.php:138 include/conversation.php:1201 msgid "Categories (comma-separated list)" msgstr "Catégories (séparées par des virgules)" -#: mod/editpost.php:140 include/acl_selectors.php:344 +#: mod/editpost.php:139 include/acl_selectors.php:345 msgid "Example: bob@example.com, mary@example.com" msgstr "Exemple: bob@exemple.com, mary@exemple.com" @@ -5336,7 +5734,7 @@ msgstr "Informations de confidentialité indisponibles." msgid "Visible to:" msgstr "Visible par:" -#: mod/notes.php:44 include/identity.php:675 +#: mod/notes.php:46 include/identity.php:694 msgid "Personal Notes" msgstr "Notes personnelles" @@ -5373,26 +5771,34 @@ msgstr "Temps local converti : %s" msgid "Please select your timezone:" msgstr "Sélectionner votre zone :" -#: mod/poke.php:192 +#: mod/poke.php:191 msgid "Poke/Prod" msgstr "Solliciter" -#: mod/poke.php:193 +#: mod/poke.php:192 msgid "poke, prod or do other things to somebody" msgstr "solliciter (poke/...) quelqu'un" -#: mod/poke.php:194 +#: mod/poke.php:193 msgid "Recipient" msgstr "Destinataire" -#: mod/poke.php:195 +#: mod/poke.php:194 msgid "Choose what you wish to do to recipient" msgstr "Choisissez ce que vous voulez faire au destinataire" -#: mod/poke.php:198 +#: mod/poke.php:197 msgid "Make this post private" msgstr "Rendez ce message privé" +#: mod/repair_ostatus.php:14 +msgid "Resubsribing to OStatus contacts" +msgstr "" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "" + #: mod/invite.php:27 msgid "Total invitation limit exceeded." msgstr "La limite d'invitation totale est éxédée." @@ -5485,187 +5891,200 @@ msgid "" "important, please visit http://friendica.com" msgstr "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com" -#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 -#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 -#: mod/photos.php:1791 view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Photos du contact" - -#: mod/photos.php:84 include/identity.php:651 +#: mod/photos.php:91 include/identity.php:669 msgid "Photo Albums" msgstr "Albums photo" -#: mod/photos.php:85 mod/photos.php:1836 +#: mod/photos.php:92 mod/photos.php:1891 msgid "Recent Photos" msgstr "Photos récentes" -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 +#: mod/photos.php:95 mod/photos.php:1312 mod/photos.php:1893 msgid "Upload New Photos" msgstr "Téléverser de nouvelles photos" -#: mod/photos.php:166 +#: mod/photos.php:173 msgid "Contact information unavailable" msgstr "Informations de contact indisponibles" -#: mod/photos.php:187 +#: mod/photos.php:194 msgid "Album not found." msgstr "Album introuvable." -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 +#: mod/photos.php:224 mod/photos.php:236 mod/photos.php:1254 msgid "Delete Album" msgstr "Effacer l'album" -#: mod/photos.php:220 +#: mod/photos.php:234 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?" -#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 +#: mod/photos.php:314 mod/photos.php:325 mod/photos.php:1572 msgid "Delete Photo" msgstr "Effacer la photo" -#: mod/photos.php:309 +#: mod/photos.php:323 msgid "Do you really want to delete this photo?" msgstr "Voulez-vous vraiment supprimer cette photo ?" -#: mod/photos.php:684 +#: mod/photos.php:698 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s a été étiqueté dans %2$s par %3$s" -#: mod/photos.php:684 +#: mod/photos.php:698 msgid "a photo" msgstr "une photo" -#: mod/photos.php:797 +#: mod/photos.php:811 msgid "Image file is empty." msgstr "Fichier image vide." -#: mod/photos.php:952 +#: mod/photos.php:978 msgid "No photos selected" msgstr "Aucune photo sélectionnée" -#: mod/photos.php:1114 +#: mod/photos.php:1139 #, php-format msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos." -#: mod/photos.php:1149 +#: mod/photos.php:1174 msgid "Upload Photos" msgstr "Téléverser des photos" -#: mod/photos.php:1153 mod/photos.php:1219 +#: mod/photos.php:1178 mod/photos.php:1249 msgid "New album name: " msgstr "Nom du nouvel album: " -#: mod/photos.php:1154 +#: mod/photos.php:1179 msgid "or existing album name: " msgstr "ou nom d'un album existant: " -#: mod/photos.php:1155 +#: mod/photos.php:1180 msgid "Do not show a status post for this upload" msgstr "Ne pas publier de notice de statut pour cet envoi" -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 +#: mod/photos.php:1182 mod/photos.php:1567 include/acl_selectors.php:347 msgid "Permissions" msgstr "Permissions" -#: mod/photos.php:1168 +#: mod/photos.php:1193 msgid "Private Photo" msgstr "Photo privée" -#: mod/photos.php:1169 +#: mod/photos.php:1194 msgid "Public Photo" msgstr "Photo publique" -#: mod/photos.php:1232 +#: mod/photos.php:1262 msgid "Edit Album" msgstr "Éditer l'album" -#: mod/photos.php:1238 +#: mod/photos.php:1268 msgid "Show Newest First" msgstr "Plus récent d'abord" -#: mod/photos.php:1240 +#: mod/photos.php:1270 msgid "Show Oldest First" msgstr "Plus ancien d'abord" -#: mod/photos.php:1268 mod/photos.php:1821 +#: mod/photos.php:1298 mod/photos.php:1876 msgid "View Photo" msgstr "Voir la photo" -#: mod/photos.php:1314 +#: mod/photos.php:1345 msgid "Permission denied. Access to this item may be restricted." msgstr "Interdit. L'accès à cet élément peut avoir été restreint." -#: mod/photos.php:1316 +#: mod/photos.php:1347 msgid "Photo not available" msgstr "Photo indisponible" -#: mod/photos.php:1372 +#: mod/photos.php:1403 msgid "View photo" msgstr "Voir photo" -#: mod/photos.php:1372 +#: mod/photos.php:1403 msgid "Edit photo" msgstr "Éditer la photo" -#: mod/photos.php:1373 +#: mod/photos.php:1404 msgid "Use as profile photo" msgstr "Utiliser comme photo de profil" -#: mod/photos.php:1398 +#: mod/photos.php:1429 msgid "View Full Size" msgstr "Voir en taille réelle" -#: mod/photos.php:1477 +#: mod/photos.php:1515 msgid "Tags: " msgstr "Étiquettes:" -#: mod/photos.php:1480 +#: mod/photos.php:1518 msgid "[Remove any tag]" msgstr "[Retirer toutes les étiquettes]" -#: mod/photos.php:1520 +#: mod/photos.php:1558 msgid "New album name" msgstr "Nom du nouvel album" -#: mod/photos.php:1521 +#: mod/photos.php:1559 msgid "Caption" msgstr "Titre" -#: mod/photos.php:1522 +#: mod/photos.php:1560 msgid "Add a Tag" msgstr "Ajouter une étiquette" -#: mod/photos.php:1522 +#: mod/photos.php:1560 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" -#: mod/photos.php:1523 +#: mod/photos.php:1561 msgid "Do not rotate" msgstr "" -#: mod/photos.php:1524 +#: mod/photos.php:1562 msgid "Rotate CW (right)" msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" -#: mod/photos.php:1525 +#: mod/photos.php:1563 msgid "Rotate CCW (left)" msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" -#: mod/photos.php:1540 +#: mod/photos.php:1578 msgid "Private photo" msgstr "Photo privée" -#: mod/photos.php:1541 +#: mod/photos.php:1579 msgid "Public photo" msgstr "Photo publique" -#: mod/photos.php:1563 include/conversation.php:1055 +#: mod/photos.php:1601 include/conversation.php:1183 msgid "Share" msgstr "Partager" +#: mod/photos.php:1640 include/conversation.php:509 +#: include/conversation.php:1414 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: mod/photos.php:1640 include/conversation.php:509 +msgid "Not attending" +msgstr "" + +#: mod/photos.php:1640 include/conversation.php:509 +msgid "Might attend" +msgstr "" + +#: mod/photos.php:1805 +msgid "Map" +msgstr "" + #: mod/p.php:9 msgid "Not Extended" msgstr "" @@ -5701,8 +6120,8 @@ msgstr "Vous devez exporter votre compte à partir de l'ancien serveur et le té #: mod/uimport.php:69 msgid "" "This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora" +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "" #: mod/uimport.php:70 msgid "Account file" @@ -5722,60 +6141,60 @@ msgstr "Elément non disponible." msgid "Item was not found." msgstr "Element introuvable." -#: boot.php:763 +#: boot.php:771 msgid "Delete this item?" msgstr "Effacer cet élément?" -#: boot.php:766 +#: boot.php:774 msgid "show fewer" msgstr "montrer moins" -#: boot.php:1140 +#: boot.php:1148 #, php-format msgid "Update %s failed. See error logs." msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur." -#: boot.php:1247 +#: boot.php:1255 msgid "Create a New Account" msgstr "Créer un nouveau compte" -#: boot.php:1272 include/nav.php:73 +#: boot.php:1280 include/nav.php:72 msgid "Logout" msgstr "Se déconnecter" -#: boot.php:1275 +#: boot.php:1283 msgid "Nickname or Email address: " msgstr "Pseudo ou courriel: " -#: boot.php:1276 +#: boot.php:1284 msgid "Password: " msgstr "Mot de passe: " -#: boot.php:1277 +#: boot.php:1285 msgid "Remember me" msgstr "Se souvenir de moi" -#: boot.php:1280 +#: boot.php:1288 msgid "Or login using OpenID: " msgstr "Ou connectez-vous via OpenID: " -#: boot.php:1286 +#: boot.php:1294 msgid "Forgot your password?" msgstr "Mot de passe oublié?" -#: boot.php:1289 +#: boot.php:1297 msgid "Website Terms of Service" msgstr "Conditions d'utilisation du site internet" -#: boot.php:1290 +#: boot.php:1298 msgid "terms of service" msgstr "conditions d'utilisation" -#: boot.php:1292 +#: boot.php:1300 msgid "Website Privacy Policy" msgstr "Politique de confidentialité du site internet" -#: boot.php:1293 +#: boot.php:1301 msgid "privacy policy" msgstr "politique de confidentialité" @@ -5783,31 +6202,39 @@ msgstr "politique de confidentialité" msgid "This entry was edited" msgstr "Cette entrée à été édité" -#: object/Item.php:209 +#: object/Item.php:191 +msgid "I will attend" +msgstr "" + +#: object/Item.php:191 +msgid "I will not attend" +msgstr "" + +#: object/Item.php:191 +msgid "I might attend" +msgstr "" + +#: object/Item.php:230 msgid "ignore thread" msgstr "ignorer le fil" -#: object/Item.php:210 +#: object/Item.php:231 msgid "unignore thread" msgstr "Ne plus ignorer le fil" -#: object/Item.php:211 +#: object/Item.php:232 msgid "toggle ignore status" msgstr "Ignorer le statut" -#: object/Item.php:214 -msgid "ignored" -msgstr "ignoré" - -#: object/Item.php:318 include/conversation.php:665 +#: object/Item.php:345 include/conversation.php:687 msgid "Categories:" msgstr "Catégories:" -#: object/Item.php:319 include/conversation.php:666 +#: object/Item.php:346 include/conversation.php:688 msgid "Filed under:" msgstr "Rangé sous:" -#: object/Item.php:331 +#: object/Item.php:360 msgid "via" msgstr "via" @@ -5877,15 +6304,12 @@ msgstr "Trouver des personnes" msgid "Enter name or interest" msgstr "Entrez un nom ou un centre d'intérêt" -#: include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Connecter/Suivre" - #: include/contact_widgets.php:33 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Exemples: Robert Morgenstein, Pêche" #: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 +#: view/theme/vier/theme.php:206 msgid "Similar Interests" msgstr "Intérêts similaires" @@ -5894,236 +6318,263 @@ msgid "Random Profile" msgstr "Profil au hasard" #: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 +#: view/theme/vier/theme.php:208 msgid "Invite Friends" msgstr "Inviter des amis" -#: include/contact_widgets.php:71 +#: include/contact_widgets.php:108 msgid "Networks" msgstr "Réseaux" -#: include/contact_widgets.php:74 +#: include/contact_widgets.php:111 msgid "All Networks" msgstr "Tous réseaux" -#: include/contact_widgets.php:104 include/features.php:60 +#: include/contact_widgets.php:141 include/features.php:97 msgid "Saved Folders" msgstr "Dossiers sauvegardés" -#: include/contact_widgets.php:107 include/contact_widgets.php:139 +#: include/contact_widgets.php:144 include/contact_widgets.php:176 msgid "Everything" msgstr "Tout" -#: include/contact_widgets.php:136 +#: include/contact_widgets.php:173 msgid "Categories" msgstr "Catégories" -#: include/features.php:23 +#: include/features.php:58 msgid "General Features" msgstr "Fonctions générales" -#: include/features.php:25 +#: include/features.php:60 msgid "Multiple Profiles" msgstr "Profils multiples" -#: include/features.php:25 +#: include/features.php:60 msgid "Ability to create multiple profiles" msgstr "Possibilité de créer plusieurs profils" -#: include/features.php:30 +#: include/features.php:61 +msgid "Photo Location" +msgstr "" + +#: include/features.php:61 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "" + +#: include/features.php:66 msgid "Post Composition Features" msgstr "Caractéristiques de composition de publication" -#: include/features.php:31 +#: include/features.php:67 msgid "Richtext Editor" msgstr "Éditeur de texte enrichi" -#: include/features.php:31 +#: include/features.php:67 msgid "Enable richtext editor" msgstr "Activer l'éditeur de texte enrichi" -#: include/features.php:32 +#: include/features.php:68 msgid "Post Preview" msgstr "Aperçu de la publication" -#: include/features.php:32 +#: include/features.php:68 msgid "Allow previewing posts and comments before publishing them" msgstr "Permet la prévisualisation des publications et commentaires avant de les publier" -#: include/features.php:33 +#: include/features.php:69 msgid "Auto-mention Forums" msgstr "" -#: include/features.php:33 +#: include/features.php:69 msgid "" "Add/remove mention when a fourm page is selected/deselected in ACL window." msgstr "" -#: include/features.php:38 +#: include/features.php:74 msgid "Network Sidebar Widgets" msgstr "Widgets réseau pour barre latérale" -#: include/features.php:39 +#: include/features.php:75 msgid "Search by Date" msgstr "Rechercher par Date" -#: include/features.php:39 +#: include/features.php:75 msgid "Ability to select posts by date ranges" msgstr "Capacité de sélectionner les publications par intervalles de dates" -#: include/features.php:40 +#: include/features.php:76 include/features.php:106 +msgid "List Forums" +msgstr "" + +#: include/features.php:76 +msgid "Enable widget to display the forums your are connected with" +msgstr "" + +#: include/features.php:77 msgid "Group Filter" msgstr "Filtre de groupe" -#: include/features.php:40 +#: include/features.php:77 msgid "Enable widget to display Network posts only from selected group" msgstr "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné" -#: include/features.php:41 +#: include/features.php:78 msgid "Network Filter" msgstr "Filtre de réseau" -#: include/features.php:41 +#: include/features.php:78 msgid "Enable widget to display Network posts only from selected network" msgstr "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné" -#: include/features.php:42 +#: include/features.php:79 msgid "Save search terms for re-use" msgstr "Sauvegarder la recherche pour une utilisation ultérieure" -#: include/features.php:47 +#: include/features.php:84 msgid "Network Tabs" msgstr "Onglets Réseau" -#: include/features.php:48 +#: include/features.php:85 msgid "Network Personal Tab" msgstr "Onglet Réseau Personnel" -#: include/features.php:48 +#: include/features.php:85 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit" -#: include/features.php:49 +#: include/features.php:86 msgid "Network New Tab" msgstr "Nouvel onglet réseaux" -#: include/features.php:49 +#: include/features.php:86 msgid "Enable tab to display only new Network posts (from the last 12 hours)" msgstr "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)" -#: include/features.php:50 +#: include/features.php:87 msgid "Network Shared Links Tab" msgstr "Onglet réseau partagé" -#: include/features.php:50 +#: include/features.php:87 msgid "Enable tab to display only Network posts with links in them" msgstr "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens" -#: include/features.php:55 +#: include/features.php:92 msgid "Post/Comment Tools" msgstr "outils de publication/commentaire" -#: include/features.php:56 +#: include/features.php:93 msgid "Multiple Deletion" msgstr "Suppression multiple" -#: include/features.php:56 +#: include/features.php:93 msgid "Select and delete multiple posts/comments at once" msgstr "Sélectionner et supprimer plusieurs publications/commentaires à la fois" -#: include/features.php:57 +#: include/features.php:94 msgid "Edit Sent Posts" msgstr "Éditer les publications envoyées" -#: include/features.php:57 +#: include/features.php:94 msgid "Edit and correct posts and comments after sending" msgstr "Éditer et corriger les publications et commentaires après l'envoi" -#: include/features.php:58 +#: include/features.php:95 msgid "Tagging" msgstr "Étiquettage" -#: include/features.php:58 +#: include/features.php:95 msgid "Ability to tag existing posts" msgstr "Possibilité d'étiqueter les publications existantes" -#: include/features.php:59 +#: include/features.php:96 msgid "Post Categories" msgstr "Catégories des publications" -#: include/features.php:59 +#: include/features.php:96 msgid "Add categories to your posts" msgstr "Ajouter des catégories à vos publications" -#: include/features.php:60 +#: include/features.php:97 msgid "Ability to file posts under folders" msgstr "Possibilité d'afficher les publications sous les répertoires" -#: include/features.php:61 +#: include/features.php:98 msgid "Dislike Posts" msgstr "Publications non aimées" -#: include/features.php:61 +#: include/features.php:98 msgid "Ability to dislike posts/comments" msgstr "Possibilité de ne pas aimer les publications/commentaires" -#: include/features.php:62 +#: include/features.php:99 msgid "Star Posts" msgstr "Publications spéciales" -#: include/features.php:62 +#: include/features.php:99 msgid "Ability to mark special posts with a star indicator" msgstr "Possibilité de marquer les publications spéciales d'une étoile" -#: include/features.php:63 +#: include/features.php:100 msgid "Mute Post Notifications" msgstr "" -#: include/features.php:63 +#: include/features.php:100 msgid "Ability to mute notifications for a thread" msgstr "" -#: include/follow.php:75 +#: include/features.php:105 +msgid "Advanced Profile Settings" +msgstr "" + +#: include/features.php:106 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "" + +#: include/follow.php:77 msgid "Connect URL missing." msgstr "URL de connexion manquante." -#: include/follow.php:102 +#: include/follow.php:104 msgid "" "This site is not configured to allow communications with other networks." msgstr "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux." -#: include/follow.php:103 include/follow.php:123 +#: include/follow.php:105 include/follow.php:125 msgid "No compatible communication protocols or feeds were discovered." msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert." -#: include/follow.php:121 +#: include/follow.php:123 msgid "The profile address specified does not provide adequate information." msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates." -#: include/follow.php:125 +#: include/follow.php:127 msgid "An author or name was not found." msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé." -#: include/follow.php:127 +#: include/follow.php:129 msgid "No browser URL could be matched to this address." msgstr "Aucune URL de navigation ne correspond à cette adresse." -#: include/follow.php:129 +#: include/follow.php:131 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel." -#: include/follow.php:130 +#: include/follow.php:132 msgid "Use mailto: in front of address to force email check." msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel." -#: include/follow.php:136 +#: include/follow.php:138 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site." -#: include/follow.php:146 +#: include/follow.php:148 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." @@ -6144,27 +6595,31 @@ msgid "" "not what you intended, please create another group with a different name." msgstr "Un groupe supprimé a été recréé. Les permissions existantes pourraient s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom." -#: include/group.php:207 +#: include/group.php:209 msgid "Default privacy group for new contacts" msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts" -#: include/group.php:226 +#: include/group.php:239 msgid "Everybody" msgstr "Tout le monde" -#: include/group.php:249 +#: include/group.php:262 msgid "edit" msgstr "éditer" -#: include/group.php:271 +#: include/group.php:285 +msgid "Edit groups" +msgstr "" + +#: include/group.php:287 msgid "Edit group" msgstr "Editer groupe" -#: include/group.php:272 +#: include/group.php:288 msgid "Create a new group" msgstr "Créer un nouveau groupe" -#: include/group.php:275 +#: include/group.php:291 msgid "Contacts not in any group" msgstr "Contacts n'appartenant à aucun groupe" @@ -6176,246 +6631,242 @@ msgstr "Divers" msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: include/datetime.php:256 +#: include/datetime.php:271 msgid "never" msgstr "jamais" -#: include/datetime.php:262 +#: include/datetime.php:277 msgid "less than a second ago" msgstr "il y a moins d'une seconde" -#: include/datetime.php:272 +#: include/datetime.php:287 msgid "year" msgstr "an" -#: include/datetime.php:272 +#: include/datetime.php:287 msgid "years" msgstr "ans" -#: include/datetime.php:273 -msgid "month" -msgstr "mois" - -#: include/datetime.php:273 +#: include/datetime.php:288 msgid "months" msgstr "mois" -#: include/datetime.php:274 -msgid "week" -msgstr "semaine" - -#: include/datetime.php:274 +#: include/datetime.php:289 msgid "weeks" msgstr "semaines" -#: include/datetime.php:275 -msgid "day" -msgstr "jour" - -#: include/datetime.php:275 +#: include/datetime.php:290 msgid "days" msgstr "jours" -#: include/datetime.php:276 +#: include/datetime.php:291 msgid "hour" msgstr "heure" -#: include/datetime.php:276 +#: include/datetime.php:291 msgid "hours" msgstr "heures" -#: include/datetime.php:277 +#: include/datetime.php:292 msgid "minute" msgstr "minute" -#: include/datetime.php:277 +#: include/datetime.php:292 msgid "minutes" msgstr "minutes" -#: include/datetime.php:278 +#: include/datetime.php:293 msgid "second" msgstr "seconde" -#: include/datetime.php:278 +#: include/datetime.php:293 msgid "seconds" msgstr "secondes" -#: include/datetime.php:287 +#: include/datetime.php:302 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s auparavant" -#: include/datetime.php:459 include/items.php:2431 +#: include/datetime.php:474 include/items.php:2444 #, php-format msgid "%s's birthday" msgstr "Anniversaire de %s's" -#: include/datetime.php:460 include/items.php:2432 +#: include/datetime.php:475 include/items.php:2445 #, php-format msgid "Happy Birthday %s" msgstr "Joyeux anniversaire, %s !" -#: include/identity.php:38 +#: include/identity.php:43 msgid "Requested account is not available." msgstr "Le compte demandé n'est pas disponible." -#: include/identity.php:121 include/identity.php:255 include/identity.php:607 +#: include/identity.php:126 include/identity.php:265 include/identity.php:625 msgid "Edit profile" msgstr "Editer le profil" -#: include/identity.php:220 +#: include/identity.php:225 +msgid "Atom feed" +msgstr "" + +#: include/identity.php:230 msgid "Message" msgstr "Message" -#: include/identity.php:226 include/nav.php:184 +#: include/identity.php:236 include/nav.php:185 msgid "Profiles" msgstr "Profils" -#: include/identity.php:226 +#: include/identity.php:236 msgid "Manage/edit profiles" msgstr "Gérer/éditer les profils" -#: include/identity.php:341 +#: include/identity.php:353 msgid "Network:" msgstr "Réseau" -#: include/identity.php:373 include/identity.php:459 +#: include/identity.php:385 include/identity.php:471 msgid "g A l F d" msgstr "g A | F d" -#: include/identity.php:374 include/identity.php:460 +#: include/identity.php:386 include/identity.php:472 msgid "F d" msgstr "F d" -#: include/identity.php:419 include/identity.php:506 +#: include/identity.php:431 include/identity.php:518 msgid "[today]" msgstr "[aujourd'hui]" -#: include/identity.php:431 +#: include/identity.php:443 msgid "Birthday Reminders" msgstr "Rappels d'anniversaires" -#: include/identity.php:432 +#: include/identity.php:444 msgid "Birthdays this week:" msgstr "Anniversaires cette semaine:" -#: include/identity.php:493 +#: include/identity.php:505 msgid "[No description]" msgstr "[Sans description]" -#: include/identity.php:517 +#: include/identity.php:529 msgid "Event Reminders" msgstr "Rappels d'événements" -#: include/identity.php:518 +#: include/identity.php:530 msgid "Events this week:" msgstr "Evénements cette semaine :" -#: include/identity.php:545 +#: include/identity.php:558 msgid "j F, Y" msgstr "j F, Y" -#: include/identity.php:546 +#: include/identity.php:559 msgid "j F" msgstr "j F" -#: include/identity.php:553 +#: include/identity.php:566 msgid "Birthday:" msgstr "Anniversaire:" -#: include/identity.php:557 +#: include/identity.php:570 msgid "Age:" msgstr "Age:" -#: include/identity.php:566 +#: include/identity.php:579 #, php-format msgid "for %1$d %2$s" msgstr "depuis %1$d %2$s" -#: include/identity.php:579 +#: include/identity.php:592 msgid "Religion:" msgstr "Religion:" -#: include/identity.php:583 +#: include/identity.php:596 msgid "Hobbies/Interests:" msgstr "Passe-temps/Centres d'intérêt:" -#: include/identity.php:590 +#: include/identity.php:603 msgid "Contact information and Social Networks:" msgstr "Coordonnées/Réseaux sociaux:" -#: include/identity.php:592 +#: include/identity.php:605 msgid "Musical interests:" msgstr "Goûts musicaux:" -#: include/identity.php:594 +#: include/identity.php:607 msgid "Books, literature:" msgstr "Lectures:" -#: include/identity.php:596 +#: include/identity.php:609 msgid "Television:" msgstr "Télévision:" -#: include/identity.php:598 +#: include/identity.php:611 msgid "Film/dance/culture/entertainment:" msgstr "Cinéma/Danse/Culture/Divertissement:" -#: include/identity.php:600 +#: include/identity.php:613 msgid "Love/Romance:" msgstr "Amour/Romance:" -#: include/identity.php:602 +#: include/identity.php:615 msgid "Work/employment:" msgstr "Activité professionnelle/Occupation:" -#: include/identity.php:604 +#: include/identity.php:617 msgid "School/education:" msgstr "Études/Formation:" -#: include/identity.php:632 include/nav.php:76 +#: include/identity.php:621 +msgid "Forums:" +msgstr "" + +#: include/identity.php:650 include/nav.php:75 msgid "Status" msgstr "Statut" -#: include/identity.php:635 +#: include/identity.php:653 msgid "Status Messages and Posts" msgstr "Messages d'état et publications" -#: include/identity.php:643 +#: include/identity.php:661 msgid "Profile Details" msgstr "Détails du profil" -#: include/identity.php:656 include/identity.php:659 include/nav.php:79 +#: include/identity.php:674 include/identity.php:677 include/nav.php:78 msgid "Videos" msgstr "Vidéos" -#: include/identity.php:670 +#: include/identity.php:689 include/nav.php:140 msgid "Events and Calendar" msgstr "Événements et agenda" -#: include/identity.php:678 +#: include/identity.php:697 msgid "Only You Can See This" msgstr "Vous seul pouvez voir ça" -#: include/acl_selectors.php:324 +#: include/acl_selectors.php:325 msgid "Post to Email" msgstr "Publier aux courriels" -#: include/acl_selectors.php:329 +#: include/acl_selectors.php:330 #, php-format msgid "Connectors disabled, since \"%s\" is enabled." msgstr "" -#: include/acl_selectors.php:335 +#: include/acl_selectors.php:336 msgid "Visible to everybody" msgstr "Visible par tout le monde" -#: include/acl_selectors.php:336 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 +#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 msgid "show" msgstr "montrer" -#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 +#: include/acl_selectors.php:338 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 msgid "don't show" msgstr "cacher" @@ -6427,41 +6878,34 @@ msgstr "[pas de sujet]" msgid "stopped following" msgstr "retiré de la liste de suivi" -#: include/Contact.php:232 include/conversation.php:881 -msgid "Poke" -msgstr "Sollicitations (pokes)" - -#: include/Contact.php:233 include/conversation.php:875 +#: include/Contact.php:361 include/conversation.php:911 msgid "View Status" msgstr "Voir les statuts" -#: include/Contact.php:234 include/conversation.php:876 -msgid "View Profile" -msgstr "Voir le profil" - -#: include/Contact.php:235 include/conversation.php:877 +#: include/Contact.php:363 include/conversation.php:913 msgid "View Photos" msgstr "Voir les photos" -#: include/Contact.php:236 include/Contact.php:259 -#: include/conversation.php:878 +#: include/Contact.php:364 include/conversation.php:914 msgid "Network Posts" msgstr "Publications du réseau" -#: include/Contact.php:237 include/Contact.php:259 -#: include/conversation.php:879 +#: include/Contact.php:365 include/conversation.php:915 msgid "Edit Contact" msgstr "Éditer le contact" -#: include/Contact.php:238 +#: include/Contact.php:366 msgid "Drop Contact" msgstr "Supprimer le contact" -#: include/Contact.php:239 include/Contact.php:259 -#: include/conversation.php:880 +#: include/Contact.php:367 include/conversation.php:916 msgid "Send PM" msgstr "Message privé" +#: include/Contact.php:368 include/conversation.php:920 +msgid "Poke" +msgstr "Sollicitations (pokes)" + #: include/security.php:22 msgid "Welcome " msgstr "Bienvenue " @@ -6480,445 +6924,448 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé." -#: include/conversation.php:118 include/conversation.php:245 -#: include/text.php:2032 view/theme/diabook/theme.php:463 -msgid "event" -msgstr "évènement" +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "" -#: include/conversation.php:206 +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "" + +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "" + +#: include/conversation.php:219 #, php-format msgid "%1$s poked %2$s" msgstr "%1$s a sollicité %2$s" -#: include/conversation.php:290 +#: include/conversation.php:303 msgid "post/item" msgstr "publication/élément" -#: include/conversation.php:291 +#: include/conversation.php:304 #, php-format msgid "%1$s marked %2$s's %3$s as favorite" msgstr "%1$s a marqué le %3$s de %2$s comme favori" -#: include/conversation.php:771 +#: include/conversation.php:792 msgid "remove" msgstr "enlever" -#: include/conversation.php:775 +#: include/conversation.php:796 msgid "Delete Selected Items" msgstr "Supprimer les éléments sélectionnés" -#: include/conversation.php:874 +#: include/conversation.php:910 msgid "Follow Thread" msgstr "Suivre le fil" -#: include/conversation.php:943 +#: include/conversation.php:1035 #, php-format msgid "%s likes this." msgstr "%s aime ça." -#: include/conversation.php:943 +#: include/conversation.php:1038 #, php-format msgid "%s doesn't like this." msgstr "%s n'aime pas ça." -#: include/conversation.php:948 +#: include/conversation.php:1041 #, php-format -msgid "%2$d people like this" -msgstr "%2$d personnes aiment ça" +msgid "%s attends." +msgstr "" -#: include/conversation.php:951 +#: include/conversation.php:1044 #, php-format -msgid "%2$d people don't like this" -msgstr "%2$d personnes n'aiment pas ça" +msgid "%s doesn't attend." +msgstr "" -#: include/conversation.php:965 +#: include/conversation.php:1047 +#, php-format +msgid "%s attends maybe." +msgstr "" + +#: include/conversation.php:1057 msgid "and" msgstr "et" -#: include/conversation.php:971 +#: include/conversation.php:1063 #, php-format msgid ", and %d other people" msgstr ", et %d autres personnes" -#: include/conversation.php:973 +#: include/conversation.php:1072 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d personnes aiment ça" + +#: include/conversation.php:1073 #, php-format msgid "%s like this." -msgstr "%s aiment ça." +msgstr "" -#: include/conversation.php:973 +#: include/conversation.php:1076 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d personnes n'aiment pas ça" + +#: include/conversation.php:1077 #, php-format msgid "%s don't like this." -msgstr "%s n'aiment pas ça." +msgstr "" -#: include/conversation.php:1000 include/conversation.php:1018 +#: include/conversation.php:1080 +#, php-format +msgid "%2$d people attend" +msgstr "" + +#: include/conversation.php:1081 +#, php-format +msgid "%s attend." +msgstr "" + +#: include/conversation.php:1084 +#, php-format +msgid "%2$d people don't attend" +msgstr "" + +#: include/conversation.php:1085 +#, php-format +msgid "%s don't attend." +msgstr "" + +#: include/conversation.php:1088 +#, php-format +msgid "%2$d people anttend maybe" +msgstr "" + +#: include/conversation.php:1089 +#, php-format +msgid "%s anttend maybe." +msgstr "" + +#: include/conversation.php:1128 include/conversation.php:1146 msgid "Visible to everybody" msgstr "Visible par tout le monde" -#: include/conversation.php:1002 include/conversation.php:1020 +#: include/conversation.php:1130 include/conversation.php:1148 msgid "Please enter a video link/URL:" msgstr "Entrez un lien/URL video :" -#: include/conversation.php:1003 include/conversation.php:1021 +#: include/conversation.php:1131 include/conversation.php:1149 msgid "Please enter an audio link/URL:" msgstr "Entrez un lien/URL audio :" -#: include/conversation.php:1004 include/conversation.php:1022 +#: include/conversation.php:1132 include/conversation.php:1150 msgid "Tag term:" msgstr "Terme d'étiquette:" -#: include/conversation.php:1006 include/conversation.php:1024 +#: include/conversation.php:1134 include/conversation.php:1152 msgid "Where are you right now?" msgstr "Où êtes-vous présentemment?" -#: include/conversation.php:1007 +#: include/conversation.php:1135 msgid "Delete item(s)?" msgstr "Supprimer les élément(s) ?" -#: include/conversation.php:1076 +#: include/conversation.php:1204 msgid "permissions" msgstr "permissions" -#: include/conversation.php:1099 +#: include/conversation.php:1227 msgid "Post to Groups" msgstr "Publier aux groupes" -#: include/conversation.php:1100 +#: include/conversation.php:1228 msgid "Post to Contacts" msgstr "Publier aux contacts" -#: include/conversation.php:1101 +#: include/conversation.php:1229 msgid "Private post" msgstr "Message privé" -#: include/network.php:959 +#: include/conversation.php:1386 +msgid "View all" +msgstr "" + +#: include/conversation.php:1408 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1411 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1417 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1420 include/profile_selectors.php:6 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + +#: include/forums.php:105 include/text.php:1015 include/nav.php:126 +#: view/theme/vier/theme.php:259 +msgid "Forums" +msgstr "" + +#: include/forums.php:107 view/theme/vier/theme.php:261 +msgid "External link to forum" +msgstr "" + +#: include/network.php:967 msgid "view full size" msgstr "voir en pleine taille" -#: include/text.php:299 +#: include/text.php:303 msgid "newer" msgstr "Plus récent" -#: include/text.php:301 +#: include/text.php:305 msgid "older" msgstr "Plus ancien" -#: include/text.php:306 +#: include/text.php:310 msgid "prev" msgstr "précédent" -#: include/text.php:308 +#: include/text.php:312 msgid "first" msgstr "premier" -#: include/text.php:340 +#: include/text.php:344 msgid "last" msgstr "dernier" -#: include/text.php:343 +#: include/text.php:347 msgid "next" msgstr "suivant" -#: include/text.php:398 +#: include/text.php:402 msgid "Loading more entries..." msgstr "" -#: include/text.php:399 +#: include/text.php:403 msgid "The end" msgstr "" -#: include/text.php:890 +#: include/text.php:894 msgid "No contacts" msgstr "Aucun contact" -#: include/text.php:905 +#: include/text.php:909 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d contact" msgstr[1] "%d contacts" -#: include/text.php:1003 include/nav.php:122 +#: include/text.php:1010 include/nav.php:121 msgid "Full Text" msgstr "" -#: include/text.php:1004 include/nav.php:123 +#: include/text.php:1011 include/nav.php:122 msgid "Tags" msgstr "" -#: include/text.php:1008 include/nav.php:127 -msgid "Forums" -msgstr "" - -#: include/text.php:1058 +#: include/text.php:1066 msgid "poke" msgstr "titiller" -#: include/text.php:1058 +#: include/text.php:1066 msgid "poked" msgstr "a titillé" -#: include/text.php:1059 +#: include/text.php:1067 msgid "ping" msgstr "attirer l'attention" -#: include/text.php:1059 +#: include/text.php:1067 msgid "pinged" msgstr "a attiré l'attention de" -#: include/text.php:1060 +#: include/text.php:1068 msgid "prod" msgstr "aiguillonner" -#: include/text.php:1060 +#: include/text.php:1068 msgid "prodded" msgstr "a aiguillonné" -#: include/text.php:1061 +#: include/text.php:1069 msgid "slap" msgstr "gifler" -#: include/text.php:1061 +#: include/text.php:1069 msgid "slapped" msgstr "a giflé" -#: include/text.php:1062 +#: include/text.php:1070 msgid "finger" msgstr "tripoter" -#: include/text.php:1062 +#: include/text.php:1070 msgid "fingered" msgstr "a tripoté" -#: include/text.php:1063 +#: include/text.php:1071 msgid "rebuff" msgstr "rabrouer" -#: include/text.php:1063 +#: include/text.php:1071 msgid "rebuffed" msgstr "a rabroué" -#: include/text.php:1077 +#: include/text.php:1085 msgid "happy" msgstr "heureuse" -#: include/text.php:1078 +#: include/text.php:1086 msgid "sad" msgstr "triste" -#: include/text.php:1079 +#: include/text.php:1087 msgid "mellow" msgstr "suave" -#: include/text.php:1080 +#: include/text.php:1088 msgid "tired" msgstr "fatiguée" -#: include/text.php:1081 +#: include/text.php:1089 msgid "perky" msgstr "guillerette" -#: include/text.php:1082 +#: include/text.php:1090 msgid "angry" msgstr "colérique" -#: include/text.php:1083 +#: include/text.php:1091 msgid "stupified" msgstr "stupéfaite" -#: include/text.php:1084 +#: include/text.php:1092 msgid "puzzled" msgstr "perplexe" -#: include/text.php:1085 +#: include/text.php:1093 msgid "interested" msgstr "intéressée" -#: include/text.php:1086 +#: include/text.php:1094 msgid "bitter" msgstr "amère" -#: include/text.php:1087 +#: include/text.php:1095 msgid "cheerful" msgstr "entraînante" -#: include/text.php:1088 +#: include/text.php:1096 msgid "alive" msgstr "vivante" -#: include/text.php:1089 +#: include/text.php:1097 msgid "annoyed" msgstr "ennuyée" -#: include/text.php:1090 +#: include/text.php:1098 msgid "anxious" msgstr "anxieuse" -#: include/text.php:1091 +#: include/text.php:1099 msgid "cranky" msgstr "excentrique" -#: include/text.php:1092 +#: include/text.php:1100 msgid "disturbed" msgstr "dérangée" -#: include/text.php:1093 +#: include/text.php:1101 msgid "frustrated" msgstr "frustrée" -#: include/text.php:1094 +#: include/text.php:1102 msgid "motivated" msgstr "motivée" -#: include/text.php:1095 +#: include/text.php:1103 msgid "relaxed" msgstr "détendue" -#: include/text.php:1096 +#: include/text.php:1104 msgid "surprised" msgstr "surprise" -#: include/text.php:1266 -msgid "Monday" -msgstr "Lundi" - -#: include/text.php:1266 -msgid "Tuesday" -msgstr "Mardi" - -#: include/text.php:1266 -msgid "Wednesday" -msgstr "Mercredi" - -#: include/text.php:1266 -msgid "Thursday" -msgstr "Jeudi" - -#: include/text.php:1266 -msgid "Friday" -msgstr "Vendredi" - -#: include/text.php:1266 -msgid "Saturday" -msgstr "Samedi" - -#: include/text.php:1266 -msgid "Sunday" -msgstr "Dimanche" - -#: include/text.php:1270 -msgid "January" -msgstr "Janvier" - -#: include/text.php:1270 -msgid "February" -msgstr "Février" - -#: include/text.php:1270 -msgid "March" -msgstr "Mars" - -#: include/text.php:1270 -msgid "April" -msgstr "Avril" - -#: include/text.php:1270 -msgid "May" -msgstr "Mai" - -#: include/text.php:1270 -msgid "June" -msgstr "Juin" - -#: include/text.php:1270 -msgid "July" -msgstr "Juillet" - -#: include/text.php:1270 -msgid "August" -msgstr "Août" - -#: include/text.php:1270 -msgid "September" -msgstr "Septembre" - -#: include/text.php:1270 -msgid "October" -msgstr "Octobre" - -#: include/text.php:1270 -msgid "November" -msgstr "Novembre" - -#: include/text.php:1270 -msgid "December" -msgstr "Décembre" - -#: include/text.php:1492 +#: include/text.php:1497 msgid "bytes" msgstr "octets" -#: include/text.php:1524 include/text.php:1536 +#: include/text.php:1529 include/text.php:1541 msgid "Click to open/close" msgstr "Cliquer pour ouvrir/fermer" -#: include/text.php:1710 +#: include/text.php:1715 msgid "View on separate page" msgstr "" -#: include/text.php:1711 +#: include/text.php:1716 msgid "view on separate page" msgstr "" -#: include/text.php:1768 include/user.php:255 -#: view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "défaut" - -#: include/text.php:1780 -msgid "Select an alternate language" -msgstr "Choisir une langue alternative" - -#: include/text.php:2036 +#: include/text.php:1997 msgid "activity" msgstr "activité" -#: include/text.php:2039 +#: include/text.php:2000 msgid "post" msgstr "publication" -#: include/text.php:2207 +#: include/text.php:2168 msgid "Item filed" msgstr "Élément classé" -#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 +#: include/bbcode.php:483 include/bbcode.php:1143 include/bbcode.php:1144 msgid "Image/photo" msgstr "Image/photo" -#: include/bbcode.php:556 +#: include/bbcode.php:581 #, php-format msgid "
%2$s %3$s" msgstr "" -#: include/bbcode.php:590 +#: include/bbcode.php:615 #, php-format msgid "" "%s wrote the following post" msgstr "" -#: include/bbcode.php:1076 include/bbcode.php:1096 +#: include/bbcode.php:1103 include/bbcode.php:1123 msgid "$1 wrote:" msgstr "$1 a écrit:" -#: include/bbcode.php:1121 include/bbcode.php:1122 +#: include/bbcode.php:1152 include/bbcode.php:1153 msgid "Encrypted content" msgstr "Contenu chiffré" -#: include/notifier.php:830 include/delivery.php:456 +#: include/notifier.php:843 include/delivery.php:458 msgid "(no subject)" msgstr "(sans titre)" -#: include/notifier.php:840 include/delivery.php:467 include/enotify.php:33 +#: include/notifier.php:853 include/delivery.php:469 include/enotify.php:37 msgid "noreply" msgstr "noreply" @@ -7000,8 +7447,8 @@ msgid "Diaspora Connector" msgstr "Connecteur Diaspora" #: include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" +msgid "GNU Social" +msgstr "" #: include/contact_selectors.php:92 msgid "App.net" @@ -7011,219 +7458,219 @@ msgstr "App.net" msgid "Redmatrix" msgstr "" -#: include/Scrape.php:603 +#: include/Scrape.php:610 msgid " on Last.fm" msgstr "sur Last.fm" -#: include/bb2diaspora.php:154 include/event.php:22 +#: include/bb2diaspora.php:154 include/event.php:30 include/event.php:48 msgid "Starts:" msgstr "Débute:" -#: include/bb2diaspora.php:162 include/event.php:32 +#: include/bb2diaspora.php:162 include/event.php:33 include/event.php:54 msgid "Finishes:" msgstr "Finit:" -#: include/plugin.php:458 include/plugin.php:460 +#: include/plugin.php:522 include/plugin.php:524 msgid "Click here to upgrade." msgstr "Cliquez ici pour mettre à jour." -#: include/plugin.php:466 +#: include/plugin.php:530 msgid "This action exceeds the limits set by your subscription plan." msgstr "Cette action dépasse les limites définies par votre abonnement." -#: include/plugin.php:471 +#: include/plugin.php:535 msgid "This action is not available under your subscription plan." msgstr "Cette action n'est pas disponible avec votre abonnement." -#: include/nav.php:73 +#: include/nav.php:72 msgid "End this session" msgstr "Mettre fin à cette session" -#: include/nav.php:76 include/nav.php:156 view/theme/diabook/theme.php:123 +#: include/nav.php:75 include/nav.php:157 view/theme/diabook/theme.php:123 msgid "Your posts and conversations" msgstr "Vos publications et conversations" -#: include/nav.php:77 view/theme/diabook/theme.php:124 +#: include/nav.php:76 view/theme/diabook/theme.php:124 msgid "Your profile page" msgstr "Votre page de profil" -#: include/nav.php:78 view/theme/diabook/theme.php:126 +#: include/nav.php:77 view/theme/diabook/theme.php:126 msgid "Your photos" msgstr "Vos photos" -#: include/nav.php:79 +#: include/nav.php:78 msgid "Your videos" msgstr "Vos vidéos" -#: include/nav.php:80 view/theme/diabook/theme.php:127 +#: include/nav.php:79 view/theme/diabook/theme.php:127 msgid "Your events" msgstr "Vos événements" -#: include/nav.php:81 view/theme/diabook/theme.php:128 +#: include/nav.php:80 view/theme/diabook/theme.php:128 msgid "Personal notes" msgstr "Notes personnelles" -#: include/nav.php:81 +#: include/nav.php:80 msgid "Your personal notes" msgstr "Vos notes personnelles" -#: include/nav.php:92 +#: include/nav.php:91 msgid "Sign in" msgstr "Se connecter" -#: include/nav.php:105 +#: include/nav.php:104 msgid "Home Page" msgstr "Page d'accueil" -#: include/nav.php:109 +#: include/nav.php:108 msgid "Create an account" msgstr "Créer un compte" -#: include/nav.php:114 +#: include/nav.php:113 msgid "Help and documentation" msgstr "Aide et documentation" -#: include/nav.php:117 +#: include/nav.php:116 msgid "Apps" msgstr "Applications" -#: include/nav.php:117 +#: include/nav.php:116 msgid "Addon applications, utilities, games" msgstr "Applications supplémentaires, utilitaires, jeux" -#: include/nav.php:119 +#: include/nav.php:118 msgid "Search site content" msgstr "Rechercher dans le contenu du site" -#: include/nav.php:137 +#: include/nav.php:136 msgid "Conversations on this site" msgstr "Conversations ayant cours sur ce site" -#: include/nav.php:139 +#: include/nav.php:138 msgid "Conversations on the network" msgstr "" -#: include/nav.php:141 +#: include/nav.php:142 msgid "Directory" msgstr "Annuaire" -#: include/nav.php:141 +#: include/nav.php:142 msgid "People directory" msgstr "Annuaire des utilisateurs" -#: include/nav.php:143 +#: include/nav.php:144 msgid "Information" msgstr "Information" -#: include/nav.php:143 +#: include/nav.php:144 msgid "Information about this friendica instance" msgstr "Information au sujet de cette instance de friendica" -#: include/nav.php:153 +#: include/nav.php:154 msgid "Conversations from your friends" msgstr "Conversations de vos amis" -#: include/nav.php:154 +#: include/nav.php:155 msgid "Network Reset" msgstr "Réinitialiser le réseau" -#: include/nav.php:154 +#: include/nav.php:155 msgid "Load Network page with no filters" msgstr "Chargement des pages du réseau sans filtre" -#: include/nav.php:161 +#: include/nav.php:162 msgid "Friend Requests" msgstr "Demande d'amitié" -#: include/nav.php:165 +#: include/nav.php:166 msgid "See all notifications" msgstr "Voir toute notification" -#: include/nav.php:166 +#: include/nav.php:167 msgid "Mark all system notifications seen" msgstr "Marquer toutes les notifications système comme 'vues'" -#: include/nav.php:170 +#: include/nav.php:171 msgid "Private mail" msgstr "Messages privés" -#: include/nav.php:171 +#: include/nav.php:172 msgid "Inbox" msgstr "Messages entrants" -#: include/nav.php:172 +#: include/nav.php:173 msgid "Outbox" msgstr "Messages sortants" -#: include/nav.php:176 +#: include/nav.php:177 msgid "Manage" msgstr "Gérer" -#: include/nav.php:176 +#: include/nav.php:177 msgid "Manage other pages" msgstr "Gérer les autres pages" -#: include/nav.php:181 +#: include/nav.php:182 msgid "Account settings" msgstr "Compte" -#: include/nav.php:184 +#: include/nav.php:185 msgid "Manage/Edit Profiles" msgstr "Gérer/Éditer les profiles" -#: include/nav.php:186 +#: include/nav.php:187 msgid "Manage/edit friends and contacts" msgstr "Gérer/éditer les amitiés et contacts" -#: include/nav.php:193 +#: include/nav.php:194 msgid "Site setup and configuration" msgstr "Démarrage et configuration du site" -#: include/nav.php:197 +#: include/nav.php:198 msgid "Navigation" msgstr "Navigation" -#: include/nav.php:197 +#: include/nav.php:198 msgid "Site map" msgstr "Carte du site" #: include/api.php:321 include/api.php:332 include/api.php:441 -#: include/api.php:1141 include/api.php:1143 +#: include/api.php:1160 include/api.php:1162 msgid "User not found." msgstr "Utilisateur non trouvé" -#: include/api.php:795 +#: include/api.php:808 #, php-format msgid "Daily posting limit of %d posts reached. The post was rejected." msgstr "Le quota journalier de %d publications a été atteint. La publication a été rejetée." -#: include/api.php:814 +#: include/api.php:827 #, php-format msgid "Weekly posting limit of %d posts reached. The post was rejected." msgstr "Le quota hebdomadaire de %d publications a été atteint. La publication a été rejetée." -#: include/api.php:833 +#: include/api.php:846 #, php-format msgid "Monthly posting limit of %d posts reached. The post was rejected." msgstr "Le quota mensuel de %d publications a été atteint. La publication a été rejetée." -#: include/api.php:1350 +#: include/api.php:1369 msgid "There is no status with this id." msgstr "Il n'y a pas de statut avec cet id." -#: include/api.php:1424 +#: include/api.php:1443 msgid "There is no conversation with this id." msgstr "Il n'y a pas de conversation avec cet id." -#: include/api.php:1703 +#: include/api.php:1722 msgid "Invalid item." msgstr "Item invalide." -#: include/api.php:1713 +#: include/api.php:1732 msgid "Invalid action. " msgstr "Action invalide." -#: include/api.php:1721 +#: include/api.php:1740 msgid "DB error" msgstr "" @@ -7271,33 +7718,38 @@ msgstr "Impossible d'utiliser ce courriel." msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." msgstr "" -#: include/user.php:146 include/user.php:244 +#: include/user.php:147 include/user.php:245 msgid "Nickname is already registered. Please choose another." msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre." -#: include/user.php:156 +#: include/user.php:157 msgid "" "Nickname was once registered here and may not be re-used. Please choose " "another." msgstr "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre." -#: include/user.php:172 +#: include/user.php:173 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué." -#: include/user.php:230 +#: include/user.php:231 msgid "An error occurred during registration. Please try again." msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer." -#: include/user.php:265 +#: include/user.php:256 view/theme/clean/config.php:56 +#: view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "défaut" + +#: include/user.php:266 msgid "An error occurred creating your default profile. Please try again." msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer." -#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42 +#: include/user.php:299 include/user.php:303 include/profile_selectors.php:42 msgid "Friends" msgstr "Amis" -#: include/user.php:385 +#: include/user.php:387 #, php-format msgid "" "\n" @@ -7306,7 +7758,7 @@ msgid "" "\t" msgstr "\n\t\tChère/Cher %1$s,\n\t\t\tMerci de vous être inscrit sur %2$s. Votre compte a bien été créé.\n\t" -#: include/user.php:389 +#: include/user.php:391 #, php-format msgid "" "\n" @@ -7336,19 +7788,19 @@ msgid "" "\t\tThank you and welcome to %2$s." msgstr "\n\t\tVoici vos informations de connexion :\n\t\t\tAdresse :\t%3$s\n\t\t\tIdentifiant :\t%1$s\n\t\t\tMot de passe :\t%5$s\n\n\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\n\t\tMerci et bienvenu sur %2$s." -#: include/diaspora.php:717 +#: include/diaspora.php:719 msgid "Sharing notification from Diaspora network" msgstr "Notification de partage du réseau Diaspora" -#: include/diaspora.php:2560 +#: include/diaspora.php:2574 msgid "Attachments:" msgstr "Pièces jointes : " -#: include/items.php:4852 +#: include/items.php:4871 msgid "Do you really want to delete this item?" msgstr "Voulez-vous vraiment supprimer cet élément ?" -#: include/items.php:5127 +#: include/items.php:5146 msgid "Archives" msgstr "Archives" @@ -7404,10 +7856,6 @@ msgstr "Non-spécifique" msgid "Other" msgstr "Autre" -#: include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indécis" - #: include/profile_selectors.php:23 msgid "Males" msgstr "Hommes" @@ -7588,242 +8036,247 @@ msgstr "Notification Friendica" msgid "Thank You," msgstr "Merci, " -#: include/enotify.php:23 +#: include/enotify.php:24 #, php-format msgid "%s Administrator" msgstr "L'administrateur de %s" -#: include/enotify.php:64 +#: include/enotify.php:26 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "" + +#: include/enotify.php:68 #, php-format msgid "%s " msgstr "%s " -#: include/enotify.php:78 +#: include/enotify.php:82 #, php-format msgid "[Friendica:Notify] New mail received at %s" msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s" -#: include/enotify.php:80 +#: include/enotify.php:84 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s." -#: include/enotify.php:81 +#: include/enotify.php:85 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s vous a envoyé %2$s." -#: include/enotify.php:81 +#: include/enotify.php:85 msgid "a private message" msgstr "un message privé" -#: include/enotify.php:82 +#: include/enotify.php:86 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre." -#: include/enotify.php:134 +#: include/enotify.php:138 #, php-format msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]" -#: include/enotify.php:141 +#: include/enotify.php:145 #, php-format msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]" -#: include/enotify.php:149 +#: include/enotify.php:153 #, php-format msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "%1$s commented on [url=%2$s]your %3$s[/url]" -#: include/enotify.php:159 +#: include/enotify.php:163 #, php-format msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d" -#: include/enotify.php:160 +#: include/enotify.php:164 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s a commenté un élément que vous suivez." -#: include/enotify.php:163 include/enotify.php:178 include/enotify.php:191 -#: include/enotify.php:204 include/enotify.php:222 include/enotify.php:235 +#: include/enotify.php:167 include/enotify.php:182 include/enotify.php:195 +#: include/enotify.php:208 include/enotify.php:226 include/enotify.php:239 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre." -#: include/enotify.php:170 +#: include/enotify.php:174 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "[Friendica:Notification] %s a posté sur votre mur de profil" -#: include/enotify.php:172 +#: include/enotify.php:176 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s a publié sur votre mur à %2$s" -#: include/enotify.php:174 +#: include/enotify.php:178 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]" -#: include/enotify.php:185 +#: include/enotify.php:189 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "[Friendica:Notification] %s vous a étiqueté" -#: include/enotify.php:186 +#: include/enotify.php:190 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s vous a étiqueté sur %2$s" -#: include/enotify.php:187 +#: include/enotify.php:191 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." msgstr "%1$s [url=%2$s]vous a étiqueté[/url]." -#: include/enotify.php:198 +#: include/enotify.php:202 #, php-format msgid "[Friendica:Notify] %s shared a new post" msgstr "[Friendica:Notification] %s partage une nouvelle publication" -#: include/enotify.php:199 +#: include/enotify.php:203 #, php-format msgid "%1$s shared a new post at %2$s" msgstr "%1$s a partagé une nouvelle publication sur %2$s" -#: include/enotify.php:200 +#: include/enotify.php:204 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." msgstr "%1$s [url=%2$s]partage une publication[/url]." -#: include/enotify.php:212 +#: include/enotify.php:216 #, php-format msgid "[Friendica:Notify] %1$s poked you" msgstr "[Friendica:Notify] %1$s vous a sollicité" -#: include/enotify.php:213 +#: include/enotify.php:217 #, php-format msgid "%1$s poked you at %2$s" msgstr "%1$s vous a sollicité via %2$s" -#: include/enotify.php:214 +#: include/enotify.php:218 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "%1$s vous a [url=%2$s]sollicité[/url]." -#: include/enotify.php:229 +#: include/enotify.php:233 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "[Friendica:Notification] %s a étiqueté votre publication" -#: include/enotify.php:230 +#: include/enotify.php:234 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "%1$s a étiqueté votre publication sur %2$s" -#: include/enotify.php:231 +#: include/enotify.php:235 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "%1$s a étiqueté [url=%2$s]votre publication[/url]" -#: include/enotify.php:242 +#: include/enotify.php:246 msgid "[Friendica:Notify] Introduction received" msgstr "[Friendica:Notification] Introduction reçue" -#: include/enotify.php:243 +#: include/enotify.php:247 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s" -#: include/enotify.php:244 +#: include/enotify.php:248 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s." -#: include/enotify.php:247 include/enotify.php:289 +#: include/enotify.php:251 include/enotify.php:293 #, php-format msgid "You may visit their profile at %s" msgstr "Vous pouvez visiter son profil sur %s" -#: include/enotify.php:249 +#: include/enotify.php:253 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction." -#: include/enotify.php:257 +#: include/enotify.php:261 msgid "[Friendica:Notify] A new person is sharing with you" msgstr "[Notification Friendica] Une nouvelle personne partage avec vous" -#: include/enotify.php:258 include/enotify.php:259 +#: include/enotify.php:262 include/enotify.php:263 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: include/enotify.php:265 +#: include/enotify.php:269 msgid "[Friendica:Notify] You have a new follower" msgstr "" -#: include/enotify.php:266 include/enotify.php:267 +#: include/enotify.php:270 include/enotify.php:271 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: include/enotify.php:280 +#: include/enotify.php:284 msgid "[Friendica:Notify] Friend suggestion received" msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié" -#: include/enotify.php:281 +#: include/enotify.php:285 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s" -#: include/enotify.php:282 +#: include/enotify.php:286 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s." -#: include/enotify.php:287 +#: include/enotify.php:291 msgid "Name:" msgstr "Nom :" -#: include/enotify.php:288 +#: include/enotify.php:292 msgid "Photo:" msgstr "Photo :" -#: include/enotify.php:291 +#: include/enotify.php:295 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion." -#: include/enotify.php:299 include/enotify.php:312 +#: include/enotify.php:303 include/enotify.php:316 msgid "[Friendica:Notify] Connection accepted" msgstr "" -#: include/enotify.php:300 include/enotify.php:313 +#: include/enotify.php:304 include/enotify.php:317 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "" -#: include/enotify.php:301 include/enotify.php:314 +#: include/enotify.php:305 include/enotify.php:318 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: include/enotify.php:304 +#: include/enotify.php:308 msgid "" "You are now mutual friends and may exchange status updates, photos, and email\n" "\twithout restriction." msgstr "" -#: include/enotify.php:307 include/enotify.php:321 +#: include/enotify.php:311 include/enotify.php:325 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: include/enotify.php:317 +#: include/enotify.php:321 #, php-format msgid "" "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " @@ -7832,42 +8285,42 @@ msgid "" "automatically." msgstr "" -#: include/enotify.php:319 +#: include/enotify.php:323 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future. " msgstr "" -#: include/enotify.php:332 +#: include/enotify.php:336 msgid "[Friendica System:Notify] registration request" msgstr "" -#: include/enotify.php:333 +#: include/enotify.php:337 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: include/enotify.php:334 +#: include/enotify.php:338 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Vous avez reçu une [url=%1$s]demande de création de compte[/url] de %2$s." -#: include/enotify.php:337 +#: include/enotify.php:341 #, php-format msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" msgstr "Nom complet :\t%1$s\\nAdresse :\t%2$s\\nIdentifiant :\t%3$s (%4$s)" -#: include/enotify.php:340 +#: include/enotify.php:344 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Veuillez visiter %s pour approuver ou rejeter la demande." -#: include/oembed.php:223 +#: include/oembed.php:220 msgid "Embedded content" msgstr "Contenu incorporé" -#: include/oembed.php:232 +#: include/oembed.php:229 msgid "Embedding disabled" msgstr "Incorporation désactivée" @@ -7925,6 +8378,7 @@ msgid "Set theme width" msgstr "Largeur du thème" #: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 +#: view/theme/clean/config.php:88 msgid "Color scheme" msgstr "Palette de couleurs" @@ -7978,6 +8432,7 @@ msgstr "Régler la latitude (Y) pour la géolocalisation" #: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130 #: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 +#: view/theme/vier/config.php:111 msgid "Community Pages" msgstr "Pages de Communauté" @@ -7987,27 +8442,31 @@ msgid "Earth Layers" msgstr "Géolocalisation" #: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 -#: view/theme/diabook/theme.php:626 +#: view/theme/diabook/theme.php:626 view/theme/vier/config.php:112 +#: view/theme/vier/theme.php:156 msgid "Community Profiles" msgstr "Profils communautaires" #: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 -#: view/theme/diabook/theme.php:627 +#: view/theme/diabook/theme.php:627 view/theme/vier/config.php:113 msgid "Help or @NewHere ?" msgstr "Aide ou @NewHere?" #: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 -#: view/theme/diabook/theme.php:628 +#: view/theme/diabook/theme.php:628 view/theme/vier/config.php:114 +#: view/theme/vier/theme.php:377 msgid "Connect Services" msgstr "Connecter des services" #: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 -#: view/theme/diabook/theme.php:629 +#: view/theme/diabook/theme.php:629 view/theme/vier/config.php:115 +#: view/theme/vier/theme.php:203 msgid "Find Friends" msgstr "Trouver des amis" #: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 -#: view/theme/diabook/theme.php:630 +#: view/theme/diabook/theme.php:630 view/theme/vier/config.php:116 +#: view/theme/vier/theme.php:185 msgid "Last users" msgstr "Derniers utilisateurs" @@ -8029,7 +8488,7 @@ msgstr "Vos contacts" msgid "Your personal photos" msgstr "Vos photos personnelles" -#: view/theme/diabook/theme.php:524 +#: view/theme/diabook/theme.php:524 view/theme/vier/theme.php:204 msgid "Local Directory" msgstr "Annuaire local" @@ -8041,10 +8500,68 @@ msgstr "Régler le niveau de zoom pour la géolocalisation" msgid "Show/hide boxes at right-hand column:" msgstr "Montrer/cacher les boîtes dans la colonne de droite :" -#: view/theme/vier/config.php:59 +#: view/theme/clean/config.php:57 +msgid "Midnight" +msgstr "" + +#: view/theme/clean/config.php:58 +msgid "Zenburn" +msgstr "" + +#: view/theme/clean/config.php:59 +msgid "Bootstrap" +msgstr "" + +#: view/theme/clean/config.php:60 +msgid "Shades of Pink" +msgstr "" + +#: view/theme/clean/config.php:61 +msgid "Lime and Orange" +msgstr "" + +#: view/theme/clean/config.php:62 +msgid "GeoCities Retro" +msgstr "" + +#: view/theme/clean/config.php:86 +msgid "Background Image" +msgstr "" + +#: view/theme/clean/config.php:86 +msgid "" +"The URL to a picture (e.g. from your photo album) that should be used as " +"background image." +msgstr "" + +#: view/theme/clean/config.php:87 +msgid "Background Color" +msgstr "" + +#: view/theme/clean/config.php:87 +msgid "HEX value for the background color. Don't include the #" +msgstr "" + +#: view/theme/clean/config.php:89 +msgid "font size" +msgstr "" + +#: view/theme/clean/config.php:89 +msgid "base font size for your interface" +msgstr "" + +#: view/theme/vier/config.php:64 +msgid "Comma separated list of helper forums" +msgstr "" + +#: view/theme/vier/config.php:110 msgid "Set style" msgstr "Définir le style" +#: view/theme/vier/theme.php:295 +msgid "Quick Start" +msgstr "" + #: view/theme/duepuntozero/config.php:45 msgid "greenzero" msgstr "" diff --git a/view/fr/strings.php b/view/fr/strings.php index a5e3730759..95642eb3b2 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -11,8 +11,8 @@ $a->strings["%d contact edited."] = array( ); $a->strings["Could not access contact record."] = "Impossible d'accéder à l'enregistrement du contact."; $a->strings["Could not locate selected profile."] = "Impossible de localiser le profil séléctionné."; -$a->strings["Contact updated."] = "Contact mis-à-jour."; -$a->strings["Failed to update contact record."] = "Échec de mise-à-jour du contact."; +$a->strings["Contact updated."] = "Contact mis à jour."; +$a->strings["Failed to update contact record."] = "Échec de mise à jour du contact."; $a->strings["Permission denied."] = "Permission refusée."; $a->strings["Contact has been blocked"] = "Le contact a été bloqué"; $a->strings["Contact has been unblocked"] = "Le contact n'est plus bloqué"; @@ -30,7 +30,7 @@ $a->strings["%s is sharing with you"] = "%s partage avec vous"; $a->strings["Private communications are not available for this contact."] = "Les communications privées ne sont pas disponibles pour ce contact."; $a->strings["Never"] = "Jamais"; $a->strings["(Update was successful)"] = "(Mise à jour effectuée avec succès)"; -$a->strings["(Update was not successful)"] = "(Mise à jour échouée)"; +$a->strings["(Update was not successful)"] = "(Échec de la mise à jour)"; $a->strings["Suggest friends"] = "Suggérer amitié/contact"; $a->strings["Network type: %s"] = "Type de réseau %s"; $a->strings["%d contact in common"] = array( @@ -69,6 +69,7 @@ $a->strings["Delete contact"] = "Effacer ce contact"; $a->strings["Last update:"] = "Dernière mise-à-jour :"; $a->strings["Update public posts"] = "Mettre à jour les publications publiques:"; $a->strings["Update now"] = "Mettre à jour"; +$a->strings["Connect/Follow"] = "Connecter/Suivre"; $a->strings["Currently blocked"] = "Actuellement bloqué"; $a->strings["Currently ignored"] = "Actuellement ignoré"; $a->strings["Currently archived"] = "Actuellement archivé"; @@ -183,16 +184,31 @@ $a->strings["Tag removed"] = "Étiquette supprimée"; $a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément"; $a->strings["Select a tag to remove: "] = "Sélectionner une étiquette à supprimer: "; $a->strings["Remove"] = "Utiliser comme photo de profil"; +$a->strings["Subsribing to OStatus contacts"] = ""; +$a->strings["No contact provided."] = ""; +$a->strings["Couldn't fetch information for contact."] = ""; +$a->strings["Couldn't fetch friends for contact."] = ""; +$a->strings["Done"] = ""; +$a->strings["success"] = ""; +$a->strings["failed"] = ""; +$a->strings["ignored"] = "ignoré"; +$a->strings["Keep this window open until done."] = "Veuillez garder cette fenêtre ouverte jusqu'à la fin."; $a->strings["Save to Folder:"] = "Sauver dans le Dossier:"; $a->strings["- select -"] = "- choisir -"; $a->strings["Save"] = "Sauver"; +$a->strings["Submit Request"] = "Envoyer la requête"; $a->strings["You already added this contact."] = "Vous avez déjà ajouté ce contact."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté."; +$a->strings["OStatus support is disabled. Contact can't be added."] = "Le support d'OStatus est désactivé. Le contact ne peut pas être ajouté."; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté."; $a->strings["Please answer the following:"] = "Merci de répondre à ce qui suit:"; $a->strings["Does %s know you?"] = "Est-ce que %s vous connaît?"; $a->strings["No"] = "Non"; $a->strings["Add a personal note:"] = "Ajouter une note personnelle:"; $a->strings["Your Identity Address:"] = "Votre adresse d'identité:"; -$a->strings["Submit Request"] = "Envoyer la requête"; +$a->strings["Location:"] = "Localisation:"; +$a->strings["About:"] = "À propos:"; +$a->strings["Tags:"] = "Étiquette:"; $a->strings["Contact added"] = "Contact ajouté"; $a->strings["Unable to locate original post."] = "Impossible de localiser la publication originale."; $a->strings["Empty post discarded."] = "Publication vide rejetée."; @@ -271,12 +287,17 @@ $a->strings["Forgot your Password?"] = "Mot de passe oublié ?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel."; $a->strings["Nickname or Email: "] = "Pseudo ou eMail : "; $a->strings["Reset"] = "Réinitialiser"; +$a->strings["event"] = "évènement"; $a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s"; $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s participe à %3\$s de %2\$s"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s ne participe pas à %3\$s de %2\$s"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s participera peut-être à %3\$s de %2\$s"; $a->strings["{0} wants to be your friend"] = "{0} souhaite être votre ami(e)"; $a->strings["{0} sent you a message"] = "{0} vous a envoyé un message"; $a->strings["{0} requested registration"] = "{0} a demandé à s'inscrire"; $a->strings["No contacts."] = "Aucun contact."; +$a->strings["Forum"] = "Forum"; $a->strings["View Contacts"] = "Voir les contacts"; $a->strings["Invalid request identifier."] = "Identifiant de demande invalide."; $a->strings["Discard"] = "Rejeter"; @@ -303,9 +324,6 @@ $a->strings["Sharer"] = "Initiateur du partage"; $a->strings["Fan/Admirer"] = "Fan/Admirateur"; $a->strings["Friend/Connect Request"] = "Demande de connexion/relation"; $a->strings["New Follower"] = "Nouvel abonné"; -$a->strings["Location:"] = "Localisation:"; -$a->strings["About:"] = "À propos:"; -$a->strings["Tags:"] = "Étiquette:"; $a->strings["Gender:"] = "Genre:"; $a->strings["No introductions."] = "Aucune demande d'introduction."; $a->strings["Notifications"] = "Notifications"; @@ -355,30 +373,30 @@ $a->strings["Upload photo"] = "Joindre photo"; $a->strings["Insert web link"] = "Insérer lien web"; $a->strings["Please wait"] = "Patientez"; $a->strings["No messages."] = "Aucun message."; +$a->strings["Message not available."] = "Message indisponible."; +$a->strings["Delete message"] = "Effacer message"; +$a->strings["Delete conversation"] = "Effacer conversation"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur."; +$a->strings["Send Reply"] = "Répondre"; $a->strings["Unknown sender - %s"] = "Émetteur inconnu - %s"; $a->strings["You and %s"] = "Vous et %s"; $a->strings["%s and You"] = "%s et vous"; -$a->strings["Delete conversation"] = "Effacer conversation"; $a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; $a->strings["%d message"] = array( 0 => "%d message", 1 => "%d messages", ); -$a->strings["Message not available."] = "Message indisponible."; -$a->strings["Delete message"] = "Effacer message"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur."; -$a->strings["Send Reply"] = "Répondre"; $a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]"; $a->strings["Contact settings applied."] = "Réglages du contact appliqués."; $a->strings["Contact update failed."] = "Impossible d'appliquer les réglages."; -$a->strings["Repair Contact Settings"] = "Réglages de réparation des contacts"; $a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact."; $a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "une photo"; -$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact"; $a->strings["No mirroring"] = "Pas de miroir"; $a->strings["Mirror as forwarded posting"] = ""; $a->strings["Mirror as my own posting"] = ""; -$a->strings["Refetch contact data"] = ""; +$a->strings["Repair Contact Settings"] = "Réglages de réparation des contacts"; +$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact"; +$a->strings["Refetch contact data"] = "Récupérer à nouveau les données de contact"; $a->strings["Name"] = "Nom"; $a->strings["Account Nickname"] = "Pseudo du compte"; $a->strings["@Tagname - overrides Name/Nickname"] = "@NomEtiquette - prend le pas sur Nom/Pseudo"; @@ -390,14 +408,16 @@ $a->strings["Poll/Feed URL"] = "Téléverser des photos"; $a->strings["New photo from this URL"] = "Nouvelle photo depuis cette URL"; $a->strings["Remote Self"] = ""; $a->strings["Mirror postings from this contact"] = ""; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact."; $a->strings["Login"] = "Connexion"; -$a->strings["The post was created"] = ""; +$a->strings["The post was created"] = "La publication a été créée"; $a->strings["Access denied."] = "Accès refusé."; -$a->strings["People Search - %s"] = ""; $a->strings["Connect"] = "Relier"; +$a->strings["View Profile"] = "Voir le profil"; +$a->strings["People Search - %s"] = "Recherche de personne - %s"; $a->strings["No matches"] = "Aucune correspondance"; $a->strings["Photos"] = "Photos"; +$a->strings["Contact Photos"] = "Photos du contact"; $a->strings["Files"] = "Fichiers"; $a->strings["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe"; $a->strings["Theme settings updated."] = "Réglages du thème sauvés."; @@ -406,21 +426,21 @@ $a->strings["Users"] = "Utilisateurs"; $a->strings["Plugins"] = "Extensions"; $a->strings["Themes"] = "Thèmes"; $a->strings["DB updates"] = "Mise-à-jour de la base"; -$a->strings["Inspect Queue"] = ""; +$a->strings["Inspect Queue"] = "Inspecter la file d'attente"; $a->strings["Logs"] = "Journaux"; $a->strings["probe address"] = ""; -$a->strings["check webfinger"] = ""; +$a->strings["check webfinger"] = "vérification de webfinger"; $a->strings["Admin"] = "Admin"; $a->strings["Plugin Features"] = "Propriétés des extensions"; -$a->strings["diagnostics"] = ""; +$a->strings["diagnostics"] = "diagnostic"; $a->strings["User registrations waiting for confirmation"] = "Inscriptions en attente de confirmation"; $a->strings["Administration"] = "Administration"; -$a->strings["ID"] = ""; -$a->strings["Recipient Name"] = ""; -$a->strings["Recipient Profile"] = ""; -$a->strings["Created"] = ""; -$a->strings["Last Tried"] = ""; -$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = ""; +$a->strings["ID"] = "ID"; +$a->strings["Recipient Name"] = "Nom du destinataire"; +$a->strings["Recipient Profile"] = "Profil du destinataire"; +$a->strings["Created"] = "Créé"; +$a->strings["Last Tried"] = "Dernier essai"; +$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "Cette page présente le contenu de la file d'attente pour les publications sortantes. Ce sont des messages dont la première livraison a échoué. Ils seront réenvoyés plus tard et éventuellement supprimés si l'envoi échoue de façon permanente."; $a->strings["Normal Account"] = "Compte normal"; $a->strings["Soapbox Account"] = "Compte \"boîte à savon\""; $a->strings["Community/Celebrity Account"] = "Compte de communauté/célébrité"; @@ -434,11 +454,12 @@ $a->strings["Pending registrations"] = "Inscriptions en attente"; $a->strings["Version"] = "Versio"; $a->strings["Active plugins"] = "Extensions activés"; $a->strings["Can not parse base url. Must have at least ://"] = "Impossible d'analyser l'URL de base. Doit contenir au moins ://"; +$a->strings["RINO2 needs mcrypt php extension to work."] = "RINO2 a besoin du module php mcrypt pour fonctionner."; $a->strings["Site settings updated."] = "Réglages du site mis-à-jour."; $a->strings["No special theme for mobile devices"] = "Pas de thème particulier pour les terminaux mobiles"; -$a->strings["No community page"] = ""; -$a->strings["Public postings from users of this site"] = ""; -$a->strings["Global community page"] = ""; +$a->strings["No community page"] = "Aucune page de communauté"; +$a->strings["Public postings from users of this site"] = "Publications publiques des utilisateurs de ce site"; +$a->strings["Global community page"] = "Page de la communauté globale"; $a->strings["At post arrival"] = "A l'arrivé d'une publication"; $a->strings["Frequently"] = "Fréquemment"; $a->strings["Hourly"] = "Toutes les heures"; @@ -448,7 +469,7 @@ $a->strings["Users, Global Contacts"] = ""; $a->strings["Users, Global Contacts/fallback"] = ""; $a->strings["One month"] = "Un mois"; $a->strings["Three months"] = "Trois mois"; -$a->strings["Half a year"] = ""; +$a->strings["Half a year"] = "Six mois"; $a->strings["One year"] = "Un an"; $a->strings["Multi user instance"] = "Instance multi-utilisateurs"; $a->strings["Closed"] = "Fermé"; @@ -467,12 +488,15 @@ $a->strings["Performance"] = "Performance"; $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible."; $a->strings["Site name"] = "Nom du site"; $a->strings["Host name"] = "Nom de la machine hôte"; -$a->strings["Sender Email"] = ""; +$a->strings["Sender Email"] = "Courriel de l'émetteur"; +$a->strings["The email address your server shall use to send notification emails from."] = "L'adresse courriel à partir de laquelle votre serveur enverra des courriels."; $a->strings["Banner/Logo"] = "Bannière/Logo"; -$a->strings["Shortcut icon"] = ""; +$a->strings["Shortcut icon"] = "Icône de raccourci"; +$a->strings["Link to an icon that will be used for browsers."] = "Lien vers une icône qui sera utilisée pour les navigateurs."; $a->strings["Touch icon"] = ""; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Lien vers une icône qui sera utilisée pour les tablettes et les mobiles."; $a->strings["Additional Info"] = "Informations supplémentaires"; -$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = ""; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "Pour les serveurs publics : vous pouvez ajouter des informations supplémentaires ici, qui figureront dans %s/siteinfo."; $a->strings["System language"] = "Langue du système"; $a->strings["System theme"] = "Thème du système"; $a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - changer les réglages du thème"; @@ -509,8 +533,8 @@ $a->strings["Block public"] = "Interdire la publication globale"; $a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques."; $a->strings["Force publish"] = "Forcer la publication globale"; $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site."; -$a->strings["Global directory update URL"] = "URL de mise-à-jour de l'annuaire global"; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible."; +$a->strings["Global directory URL"] = "URL de l'annuaire global"; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL de l'annuaire global. Si ce champ n'est pas défini, l'annuaire global sera complètement indisponible pour l'application."; $a->strings["Allow threaded items"] = "autoriser le suivi des éléments par fil conducteur"; $a->strings["Allow infinite level threading for items on this site."] = "Permettre une imbrication infinie des commentaires."; $a->strings["Private posts by default for new users"] = "Publications privées par défaut pour les nouveaux utilisateurs"; @@ -531,14 +555,16 @@ $a->strings["Fullname check"] = "Vérification du \"Prénom Nom\""; $a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus"; $a->strings["UTF-8 Regular expressions"] = "Regex UTF-8"; $a->strings["Use PHP UTF8 regular expressions"] = "Utiliser les expressions rationnelles de PHP en UTF8"; -$a->strings["Community Page Style"] = ""; -$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = ""; -$a->strings["Posts per user on community page"] = ""; -$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = ""; +$a->strings["Community Page Style"] = "Style de la page de communauté"; +$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Type de page de la communauté à afficher. « Communauté globale » montre toutes les publications publiques des réseaux distribués ouverts qui arrivent sur ce serveur."; +$a->strings["Posts per user on community page"] = "Nombre de publications par utilisateur sur la page de la communauté (n'est pas valide pour "; +$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "Nombre maximal de publications par utilisateurs sur la page de la communauté (ne s'applique pas pour « Communauté globale »)."; $a->strings["Enable OStatus support"] = "Activer le support d'OStatus"; $a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile."; $a->strings["OStatus conversation completion interval"] = "Achèvement de l'intervalle de conversation OStatus "; $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Combien de fois le poller devra vérifier les nouvelles entrées dans les conversations OStatus? Cela peut utilisé beaucoup de ressources."; +$a->strings["OStatus support can only be enabled if threading is enabled."] = "Le support OStatus ne peut être activé que si l'imbrication des commentaires est activée."; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Le support de Diaspora ne peut pas être activé parce que Friendica a été installé dans un sous-répertoire."; $a->strings["Enable Diaspora support"] = "Activer le support de Diaspora"; $a->strings["Provide built-in Diaspora network compatibility."] = "Fournir une compatibilité Diaspora intégrée."; $a->strings["Only allow Friendica contacts"] = "N'autoriser que les contacts Friendica"; @@ -555,11 +581,15 @@ $a->strings["Poll interval"] = "Intervalle de réception"; $a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission."; $a->strings["Maximum Load Average"] = "Plafond de la charge moyenne"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50."; -$a->strings["Maximum Load Average (Frontend)"] = ""; +$a->strings["Maximum Load Average (Frontend)"] = "Plafond de la charge moyenne (frontale)"; $a->strings["Maximum system load before the frontend quits service - default 50."] = ""; -$a->strings["Periodical check of global contacts"] = ""; -$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = ""; -$a->strings["Discover contacts from other servers"] = ""; +$a->strings["Maximum table size for optimization"] = ""; +$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = ""; +$a->strings["Periodical check of global contacts"] = "Vérification périodique des contacts globaux"; +$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Si activé, les données manquantes et obsolètes et la vitalité des contacts et des serveurs seront vérifiées périodiquement dans les contacts globaux."; +$a->strings["Days between requery"] = "Nombre de jours entre les requêtes"; +$a->strings["Number of days after which a server is requeried for his contacts."] = "Nombre de jours avant qu'une requête de contacts soient envoyée à nouveau à un serveur."; +$a->strings["Discover contacts from other servers"] = "Découvrir des contacts des autres serveurs"; $a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = ""; $a->strings["Timeframe for fetching global contacts"] = ""; $a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = ""; @@ -653,8 +683,10 @@ $a->strings["Enable"] = "Activer"; $a->strings["Toggle"] = "Activer/Désactiver"; $a->strings["Author: "] = "Auteur: "; $a->strings["Maintainer: "] = "Mainteneur: "; +$a->strings["Reload active plugins"] = ""; $a->strings["No themes found."] = "Aucun thème trouvé."; $a->strings["Screenshot"] = "Capture d'écran"; +$a->strings["Reload active themes"] = ""; $a->strings["[Experimental]"] = "[Expérimental]"; $a->strings["[Unsupported]"] = "[Non supporté]"; $a->strings["Log settings updated."] = "Réglages des journaux mis-à-jour."; @@ -691,13 +723,53 @@ $a->strings["Private messages to this group are at risk of public disclosure."] $a->strings["No such group"] = "Groupe inexistant"; $a->strings["Group is empty"] = "Groupe vide"; $a->strings["Group: %s"] = ""; -$a->strings["Contact: %s"] = ""; $a->strings["Private messages to this person are at risk of public disclosure."] = "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée."; $a->strings["Invalid contact."] = "Contact invalide."; -$a->strings["Friends of %s"] = "Amis de %s"; $a->strings["No friends to display."] = "Pas d'amis à afficher."; +$a->strings["Friends of %s"] = "Amis de %s"; $a->strings["Event can not end before it has started."] = ""; $a->strings["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement."; +$a->strings["Sun"] = "Dim"; +$a->strings["Mon"] = "Lun"; +$a->strings["Tue"] = "Mar"; +$a->strings["Wed"] = "Mer"; +$a->strings["Thu"] = "Jeu"; +$a->strings["Fri"] = "Ven"; +$a->strings["Sat"] = "Sam"; +$a->strings["Sunday"] = "Dimanche"; +$a->strings["Monday"] = "Lundi"; +$a->strings["Tuesday"] = "Mardi"; +$a->strings["Wednesday"] = "Mercredi"; +$a->strings["Thursday"] = "Jeudi"; +$a->strings["Friday"] = "Vendredi"; +$a->strings["Saturday"] = "Samedi"; +$a->strings["Jan"] = "Jan"; +$a->strings["Feb"] = "Fév"; +$a->strings["Mar"] = "Mar"; +$a->strings["Apr"] = "Avr"; +$a->strings["May"] = "Mai"; +$a->strings["Jun"] = "Jun"; +$a->strings["Jul"] = "Jul"; +$a->strings["Aug"] = "Aoû"; +$a->strings["Sept"] = "Sep"; +$a->strings["Oct"] = "Oct"; +$a->strings["Nov"] = "Nov"; +$a->strings["Dec"] = "Déc"; +$a->strings["January"] = "Janvier"; +$a->strings["February"] = "Février"; +$a->strings["March"] = "Mars"; +$a->strings["April"] = "Avril"; +$a->strings["June"] = "Juin"; +$a->strings["July"] = "Juillet"; +$a->strings["August"] = "Août"; +$a->strings["September"] = "Septembre"; +$a->strings["October"] = "Octobre"; +$a->strings["November"] = "Novembre"; +$a->strings["December"] = "Décembre"; +$a->strings["today"] = "aujourd'hui"; +$a->strings["month"] = "mois"; +$a->strings["week"] = "semaine"; +$a->strings["day"] = "jour"; $a->strings["l, F j"] = "l, F j"; $a->strings["Edit event"] = "Editer l'événement"; $a->strings["link to source"] = "lien original"; @@ -706,7 +778,7 @@ $a->strings["Create New Event"] = "Créer un nouvel événement"; $a->strings["Previous"] = "Précédent"; $a->strings["Next"] = "Suivant"; $a->strings["Event details"] = "Détails de l'événement"; -$a->strings["Starting date and Title are required."] = ""; +$a->strings["Starting date and Title are required."] = "La date de début et le titre sont requis."; $a->strings["Event Starts:"] = "Début de l'événement :"; $a->strings["Required"] = "Requis"; $a->strings["Finish date/time is not known or not relevant"] = "Date / heure de fin inconnue ou sans objet"; @@ -716,6 +788,8 @@ $a->strings["Description:"] = "Description:"; $a->strings["Title:"] = "Titre :"; $a->strings["Share this event"] = "Partager cet événement"; $a->strings["Preview"] = "Aperçu"; +$a->strings["Credits"] = "Remerciements"; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica est un projet communautaire, qui ne serait pas possible sans l'aide de beaucoup de gens. Voici une liste de ceux qui ont contribué au code ou à la traduction de Friendica. Merci à tous!"; $a->strings["Select"] = "Sélectionner"; $a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s"; $a->strings["%s from %s"] = "%s de %s"; @@ -765,7 +839,7 @@ $a->strings["Could not create table."] = "Impossible de créer une table."; $a->strings["Your Friendica site database has been installed."] = "La base de données de votre site Friendica a bien été installée."; $a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql."; $a->strings["Please see the file \"INSTALL.txt\"."] = "Référez-vous au fichier \"INSTALL.txt\"."; -$a->strings["Database already in use."] = ""; +$a->strings["Database already in use."] = "Base de données déjà en cours d'utilisation."; $a->strings["System check"] = "Vérifications système"; $a->strings["Check again"] = "Vérifier à nouveau"; $a->strings["Database connection"] = "Connexion à la base de données"; @@ -781,7 +855,7 @@ $a->strings["Your account email address must match this in order to use the web $a->strings["Please select a default timezone for your website"] = "Sélectionner un fuseau horaire par défaut pour votre site"; $a->strings["Site settings"] = "Réglages du site"; $a->strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir 'Activating scheduled tasks'"; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = "Si vous n'avez pas une version en ligne de commande de PHP sur votre serveur, vous ne pourrez pas exécuter l'attente active ou « polling » en arrière-plan via cron. Voir 'Setup the poller'."; $a->strings["PHP executable path"] = "Chemin vers l'exécutable de PHP"; $a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation."; $a->strings["Command line PHP"] = "Version \"ligne de commande\" de PHP"; @@ -799,6 +873,7 @@ $a->strings["GD graphics PHP module"] = "Module GD (graphiques) de PHP"; $a->strings["OpenSSL PHP module"] = "Module OpenSSL de PHP"; $a->strings["mysqli PHP module"] = "Module Mysqli de PHP"; $a->strings["mb_string PHP module"] = "Module mb_string de PHP"; +$a->strings["mcrypt PHP module"] = "Module PHP mcrypt"; $a->strings["Apache mod_rewrite module"] = "Module mod_rewrite Apache"; $a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur : Le module \"rewrite\" du serveur web Apache est requis mais pas installé."; $a->strings["Error: libCURL PHP module required but not installed."] = "Erreur : Le module PHP \"libCURL\" est requis mais pas installé."; @@ -806,6 +881,9 @@ $a->strings["Error: GD graphics PHP module with JPEG support required but not in $a->strings["Error: openssl PHP module required but not installed."] = "Erreur : Le module PHP \"openssl\" est requis mais pas installé."; $a->strings["Error: mysqli PHP module required but not installed."] = "Erreur : Le module PHP \"mysqli\" est requis mais pas installé."; $a->strings["Error: mb_string PHP module required but not installed."] = "Erreur : le module PHP mb_string est requis mais pas installé."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Erreur : le module PHP mcrypt est nécessaire, mais n'es pas installé."; +$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = ""; +$a->strings["mcrypt_create_iv() function"] = ""; $a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable."; $a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez."; $a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica."; @@ -818,6 +896,8 @@ $a->strings["Note: as a security measure, you should give the web server write a $a->strings["view/smarty3 is writable"] = "view/smarty3 est autorisé à l écriture"; $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur."; $a->strings["Url rewrite is working"] = "La réécriture d'URL fonctionne."; +$a->strings["ImageMagick PHP extension is installed"] = ""; +$a->strings["ImageMagick supports GIF"] = ""; $a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement."; $a->strings["

What next

"] = "

Ensuite

"; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le \"poller\"."; @@ -835,9 +915,9 @@ $a->strings["Sorry, maybe your upload is bigger than the PHP configuration allow $a->strings["Or - did you try to upload an empty file?"] = "Ou — auriez-vous essayé de télécharger un fichier vide ?"; $a->strings["File exceeds size limit of %s"] = ""; $a->strings["File upload failed."] = "Le téléversement a échoué."; -$a->strings["Profile Match"] = "Correpondance de profils"; $a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."; $a->strings["is interested in:"] = "s'intéresse à :"; +$a->strings["Profile Match"] = "Correpondance de profils"; $a->strings["link"] = "lien"; $a->strings["Not available."] = "Indisponible."; $a->strings["Community"] = "Communauté"; @@ -883,18 +963,19 @@ $a->strings["Plugin Settings"] = "Extensions"; $a->strings["Off"] = "Éteint"; $a->strings["On"] = "Allumé"; $a->strings["Additional Features"] = "Fonctions supplémentaires"; -$a->strings["General Social Media Settings"] = ""; -$a->strings["Disable intelligent shortening"] = ""; -$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = ""; -$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = ""; -$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = ""; -$a->strings["Your legacy GNU Social account"] = ""; -$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; +$a->strings["General Social Media Settings"] = "Paramètres généraux des réseaux sociaux"; +$a->strings["Disable intelligent shortening"] = "Désactiver la réduction d'URL"; +$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normalement, le système tente de trouver le meilleur lien à ajouter aux publications raccourcies. Si cette option est activée, les publications raccourcies dirigeront toujours vers leur publication d'origine sur Friendica."; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Suivre automatiquement ceux qui me suivent ou me mentionnent sur GNU Social (OStatus)"; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Si vous recevez un message d'un utilisateur OStatus inconnu, cette option détermine ce qui sera fait. Si elle est cochée, un nouveau contact sera créé pour chaque utilisateur inconnu."; +$a->strings["Your legacy GNU Social account"] = "Le compte GNU Social que vous avez déjà"; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "Si vous entrez votre le nom de votre ancien compte GNU Social / StatusNet ici (utiliser le format utilisateur@domaine.tld), vos contacts seront ajoutés automatiquement. Le champ sera vidé lorsque ce sera terminé."; +$a->strings["Repair OStatus subscriptions"] = "Réparer les abonnements OStatus"; $a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s"; $a->strings["Diaspora"] = "Diaspora"; $a->strings["enabled"] = "activé"; $a->strings["disabled"] = "désactivé"; -$a->strings["GNU Social (OStatus)"] = ""; +$a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)"; $a->strings["Email access is disabled on this site."] = "L'accès courriel est désactivé sur ce site."; $a->strings["Email/Mailbox Setup"] = "Réglages de courriel/boîte à lettre"; $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte."; @@ -920,6 +1001,8 @@ $a->strings["Number of items to display per page:"] = "Nombre d’éléments par $a->strings["Maximum of 100 items"] = "Maximum de 100 éléments"; $a->strings["Number of items to display per page when viewed from mobile device:"] = "Nombre d'éléments a afficher par page pour un appareil mobile"; $a->strings["Don't show emoticons"] = "Ne pas afficher les émoticônes (smileys grahiques)"; +$a->strings["Calendar"] = "Calendrier"; +$a->strings["Beginning of week:"] = "Début de la semaine :"; $a->strings["Don't show notices"] = "Ne plus afficher les avis"; $a->strings["Infinite scroll"] = "Défilement infini"; $a->strings["Automatic updates only at the top of the network page"] = ""; @@ -970,6 +1053,8 @@ $a->strings["Basic Settings"] = "Réglages basiques"; $a->strings["Full Name:"] = "Nom complet:"; $a->strings["Email Address:"] = "Adresse courriel:"; $a->strings["Your Timezone:"] = "Votre fuseau horaire:"; +$a->strings["Your Language:"] = "Votre langue :"; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Détermine la langue que nous utilisons pour afficher votre interface Friendica et pour vous envoyer des courriels"; $a->strings["Default Post Location:"] = "Emplacement de publication par défaut:"; $a->strings["Use Browser Location:"] = "Utiliser la localisation géographique du navigateur:"; $a->strings["Security and Privacy Settings"] = "Réglages de sécurité et vie privée"; @@ -997,10 +1082,10 @@ $a->strings["You receive a private message"] = "Vous recevez un message privé"; $a->strings["You receive a friend suggestion"] = "Vous avez reçu une suggestion d'ami"; $a->strings["You are tagged in a post"] = "Vous avez été étiquetté dans une publication"; $a->strings["You are poked/prodded/etc. in a post"] = "Vous avez été sollicité dans une publication"; -$a->strings["Activate desktop notifications"] = ""; -$a->strings["Show desktop popup on new notifications"] = ""; -$a->strings["Text-only notification emails"] = ""; -$a->strings["Send text only notification emails, without the html part"] = ""; +$a->strings["Activate desktop notifications"] = "Activer les notifications de bureau"; +$a->strings["Show desktop popup on new notifications"] = "Afficher dans des pops-ups les nouvelles notifications"; +$a->strings["Text-only notification emails"] = "Courriels de notification en format texte"; +$a->strings["Send text only notification emails, without the html part"] = "Envoyer le texte des courriels de notification, sans la composante html"; $a->strings["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/page"; $a->strings["Change the behaviour of this account for special situations"] = "Modifier le comportement de ce compte dans certaines situations"; $a->strings["Relocate"] = "Relocaliser"; @@ -1044,6 +1129,7 @@ $a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web" $a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de recherche Diaspora."; $a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions."; $a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:
identifiant : %s
mot de passe : %s

Vous pourrez changer votre mot de passe une fois connecté."; +$a->strings["Registration successful."] = ""; $a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée."; $a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site."; $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."; @@ -1053,7 +1139,7 @@ $a->strings["Your OpenID (optional): "] = "Votre OpenID (facultatif): "; $a->strings["Include your profile in member directory?"] = "Inclure votre profil dans l'annuaire des membres?"; $a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation."; $a->strings["Your invitation ID: "] = "Votre ID d'invitation: "; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Votre nom complet (p.ex. Michel Dupont): "; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; $a->strings["Your Email Address: "] = "Votre adresse courriel: "; $a->strings["Leave empty for an auto generated password."] = ""; $a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@\$sitename</strong>'."; @@ -1062,16 +1148,20 @@ $a->strings["Register"] = "S'inscrire"; $a->strings["Import"] = "Importer"; $a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica"; $a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance"; +$a->strings["Only logged in users are permitted to perform a search."] = ""; +$a->strings["Too Many Requests"] = ""; +$a->strings["Only one search per minute is permitted for not logged in users."] = ""; $a->strings["Search"] = "Recherche"; $a->strings["Items tagged with: %s"] = ""; $a->strings["Search results for: %s"] = ""; -$a->strings["Global Directory"] = "Annuaire global"; -$a->strings["Find on this site"] = "Trouver sur ce site"; -$a->strings["Site Directory"] = "Annuaire local"; $a->strings["Age: "] = "Age : "; $a->strings["Gender: "] = "Genre : "; $a->strings["Status:"] = "Statut:"; $a->strings["Homepage:"] = "Page personnelle:"; +$a->strings["Global Directory"] = "Annuaire global"; +$a->strings["Find on this site"] = "Trouver sur ce site"; +$a->strings["Finding:"] = ""; +$a->strings["Site Directory"] = "Annuaire local"; $a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées)."; $a->strings["No potential page delegates located."] = "Pas de délégataire potentiel."; $a->strings["Delegate Page Management"] = "Déléguer la gestion de la page"; @@ -1081,8 +1171,8 @@ $a->strings["Existing Page Delegates"] = "Délégataires existants"; $a->strings["Potential Delegates"] = "Délégataires potentiels"; $a->strings["Add"] = "Ajouter"; $a->strings["No entries."] = "Aucune entrée."; -$a->strings["Common Friends"] = "Amis communs"; $a->strings["No contacts in common."] = "Pas de contacts en commun."; +$a->strings["Common Friends"] = "Amis communs"; $a->strings["Export account"] = "Exporter le compte"; $a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur."; $a->strings["Export all"] = "Tout exporter"; @@ -1091,9 +1181,9 @@ $a->strings["%1\$s is currently %2\$s"] = "%1\$s est d'humeur %2\$s"; $a->strings["Mood"] = "Humeur"; $a->strings["Set your current mood and tell your friends"] = "Spécifiez votre humeur du moment, et informez vos amis"; $a->strings["Do you really want to delete this suggestion?"] = "Voulez-vous vraiment supprimer cette suggestion ?"; -$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts"; $a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h."; $a->strings["Ignore/Hide"] = "Ignorer/cacher"; +$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts"; $a->strings["Profile deleted."] = "Profil supprimé."; $a->strings["Profile-"] = "Profil-"; $a->strings["New profile created."] = "Nouveau profil créé."; @@ -1120,6 +1210,7 @@ $a->strings[" - Visit %1\$s's %2\$s"] = "Visiter le %2\$s de %1\$s"; $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour son %2\$s, en modifiant %3\$s."; $a->strings["Hide contacts and friends:"] = "Cacher mes contacts et amis :"; $a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher ma liste d'amis / contacts des visiteurs de ce profil ?"; +$a->strings["Show more profile fields:"] = ""; $a->strings["Edit Profile Details"] = "Éditer les détails du profil"; $a->strings["Change Profile Photo"] = "Changer la photo du profil"; $a->strings["View this profile"] = "Voir ce profil"; @@ -1221,6 +1312,8 @@ $a->strings["poke, prod or do other things to somebody"] = "solliciter (poke/... $a->strings["Recipient"] = "Destinataire"; $a->strings["Choose what you wish to do to recipient"] = "Choisissez ce que vous voulez faire au destinataire"; $a->strings["Make this post private"] = "Rendez ce message privé"; +$a->strings["Resubsribing to OStatus contacts"] = ""; +$a->strings["Error"] = ""; $a->strings["Total invitation limit exceeded."] = "La limite d'invitation totale est éxédée."; $a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide."; $a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica"; @@ -1241,7 +1334,6 @@ $a->strings["You are cordially invited to join me and other close friends on Fri $a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation : \$invite_code"; $a->strings["Once you have registered, please connect with me via my profile page at:"] = "Une fois inscrit, connectez-vous à la page de mon profil sur :"; $a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com"; -$a->strings["Contact Photos"] = "Photos du contact"; $a->strings["Photo Albums"] = "Albums photo"; $a->strings["Recent Photos"] = "Photos récentes"; $a->strings["Upload New Photos"] = "Téléverser de nouvelles photos"; @@ -1285,6 +1377,13 @@ $a->strings["Rotate CCW (left)"] = "Tourner dans le sens contraire des aiguilles $a->strings["Private photo"] = "Photo privée"; $a->strings["Public photo"] = "Photo publique"; $a->strings["Share"] = "Partager"; +$a->strings["Attending"] = array( + 0 => "", + 1 => "", +); +$a->strings["Not attending"] = ""; +$a->strings["Might attend"] = ""; +$a->strings["Map"] = ""; $a->strings["Not Extended"] = ""; $a->strings["Account approved."] = "Inscription validée."; $a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s"; @@ -1292,7 +1391,7 @@ $a->strings["Please login."] = "Merci de vous connecter."; $a->strings["Move account"] = "Migrer le compte"; $a->strings["You can import an account from another Friendica server."] = "Vous pouvez importer un compte d'un autre serveur Friendica."; $a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora"; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = ""; $a->strings["Account file"] = "Fichier du compte"; $a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\""; $a->strings["Item not available."] = "Elément non disponible."; @@ -1312,10 +1411,12 @@ $a->strings["terms of service"] = "conditions d'utilisation"; $a->strings["Website Privacy Policy"] = "Politique de confidentialité du site internet"; $a->strings["privacy policy"] = "politique de confidentialité"; $a->strings["This entry was edited"] = "Cette entrée à été édité"; +$a->strings["I will attend"] = ""; +$a->strings["I will not attend"] = ""; +$a->strings["I might attend"] = ""; $a->strings["ignore thread"] = "ignorer le fil"; $a->strings["unignore thread"] = "Ne plus ignorer le fil"; $a->strings["toggle ignore status"] = "Ignorer le statut"; -$a->strings["ignored"] = "ignoré"; $a->strings["Categories:"] = "Catégories:"; $a->strings["Filed under:"] = "Rangé sous:"; $a->strings["via"] = "via"; @@ -1335,7 +1436,6 @@ $a->strings["%d invitation available"] = array( ); $a->strings["Find People"] = "Trouver des personnes"; $a->strings["Enter name or interest"] = "Entrez un nom ou un centre d'intérêt"; -$a->strings["Connect/Follow"] = "Connecter/Suivre"; $a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Pêche"; $a->strings["Similar Interests"] = "Intérêts similaires"; $a->strings["Random Profile"] = "Profil au hasard"; @@ -1348,6 +1448,8 @@ $a->strings["Categories"] = "Catégories"; $a->strings["General Features"] = "Fonctions générales"; $a->strings["Multiple Profiles"] = "Profils multiples"; $a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils"; +$a->strings["Photo Location"] = ""; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; $a->strings["Post Composition Features"] = "Caractéristiques de composition de publication"; $a->strings["Richtext Editor"] = "Éditeur de texte enrichi"; $a->strings["Enable richtext editor"] = "Activer l'éditeur de texte enrichi"; @@ -1358,6 +1460,8 @@ $a->strings["Add/remove mention when a fourm page is selected/deselected in ACL $a->strings["Network Sidebar Widgets"] = "Widgets réseau pour barre latérale"; $a->strings["Search by Date"] = "Rechercher par Date"; $a->strings["Ability to select posts by date ranges"] = "Capacité de sélectionner les publications par intervalles de dates"; +$a->strings["List Forums"] = ""; +$a->strings["Enable widget to display the forums your are connected with"] = ""; $a->strings["Group Filter"] = "Filtre de groupe"; $a->strings["Enable widget to display Network posts only from selected group"] = "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné"; $a->strings["Network Filter"] = "Filtre de réseau"; @@ -1386,6 +1490,8 @@ $a->strings["Star Posts"] = "Publications spéciales"; $a->strings["Ability to mark special posts with a star indicator"] = "Possibilité de marquer les publications spéciales d'une étoile"; $a->strings["Mute Post Notifications"] = ""; $a->strings["Ability to mute notifications for a thread"] = ""; +$a->strings["Advanced Profile Settings"] = ""; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; $a->strings["Connect URL missing."] = "URL de connexion manquante."; $a->strings["This site is not configured to allow communications with other networks."] = "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux."; $a->strings["No compatible communication protocols or feeds were discovered."] = "Aucun protocole de communication ni aucun flux n'a pu être découvert."; @@ -1402,6 +1508,7 @@ $a->strings["A deleted group with this name was revived. Existing item permissio $a->strings["Default privacy group for new contacts"] = "Paramètres de confidentialité par défaut pour les nouveaux contacts"; $a->strings["Everybody"] = "Tout le monde"; $a->strings["edit"] = "éditer"; +$a->strings["Edit groups"] = ""; $a->strings["Edit group"] = "Editer groupe"; $a->strings["Create a new group"] = "Créer un nouveau groupe"; $a->strings["Contacts not in any group"] = "Contacts n'appartenant à aucun groupe"; @@ -1411,11 +1518,8 @@ $a->strings["never"] = "jamais"; $a->strings["less than a second ago"] = "il y a moins d'une seconde"; $a->strings["year"] = "an"; $a->strings["years"] = "ans"; -$a->strings["month"] = "mois"; $a->strings["months"] = "mois"; -$a->strings["week"] = "semaine"; $a->strings["weeks"] = "semaines"; -$a->strings["day"] = "jour"; $a->strings["days"] = "jours"; $a->strings["hour"] = "heure"; $a->strings["hours"] = "heures"; @@ -1428,6 +1532,7 @@ $a->strings["%s's birthday"] = "Anniversaire de %s's"; $a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !"; $a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible."; $a->strings["Edit profile"] = "Editer le profil"; +$a->strings["Atom feed"] = ""; $a->strings["Message"] = "Message"; $a->strings["Profiles"] = "Profils"; $a->strings["Manage/edit profiles"] = "Gérer/éditer les profils"; @@ -1455,6 +1560,7 @@ $a->strings["Film/dance/culture/entertainment:"] = "Cinéma/Danse/Culture/Divert $a->strings["Love/Romance:"] = "Amour/Romance:"; $a->strings["Work/employment:"] = "Activité professionnelle/Occupation:"; $a->strings["School/education:"] = "Études/Formation:"; +$a->strings["Forums:"] = ""; $a->strings["Status"] = "Statut"; $a->strings["Status Messages and Posts"] = "Messages d'état et publications"; $a->strings["Profile Details"] = "Détails du profil"; @@ -1468,19 +1574,20 @@ $a->strings["show"] = "montrer"; $a->strings["don't show"] = "cacher"; $a->strings["[no subject]"] = "[pas de sujet]"; $a->strings["stopped following"] = "retiré de la liste de suivi"; -$a->strings["Poke"] = "Sollicitations (pokes)"; $a->strings["View Status"] = "Voir les statuts"; -$a->strings["View Profile"] = "Voir le profil"; $a->strings["View Photos"] = "Voir les photos"; $a->strings["Network Posts"] = "Publications du réseau"; $a->strings["Edit Contact"] = "Éditer le contact"; $a->strings["Drop Contact"] = "Supprimer le contact"; $a->strings["Send PM"] = "Message privé"; +$a->strings["Poke"] = "Sollicitations (pokes)"; $a->strings["Welcome "] = "Bienvenue "; $a->strings["Please upload a profile photo."] = "Merci d'illustrer votre profil d'une image."; $a->strings["Welcome back "] = "Bienvenue à nouveau, "; $a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé."; -$a->strings["event"] = "évènement"; +$a->strings["%1\$s attends %2\$s's %3\$s"] = ""; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = ""; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = ""; $a->strings["%1\$s poked %2\$s"] = "%1\$s a sollicité %2\$s"; $a->strings["post/item"] = "publication/élément"; $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s a marqué le %3\$s de %2\$s comme favori"; @@ -1489,12 +1596,21 @@ $a->strings["Delete Selected Items"] = "Supprimer les éléments sélectionnés" $a->strings["Follow Thread"] = "Suivre le fil"; $a->strings["%s likes this."] = "%s aime ça."; $a->strings["%s doesn't like this."] = "%s n'aime pas ça."; -$a->strings["%2\$d people like this"] = "%2\$d personnes aiment ça"; -$a->strings["%2\$d people don't like this"] = "%2\$d personnes n'aiment pas ça"; +$a->strings["%s attends."] = ""; +$a->strings["%s doesn't attend."] = ""; +$a->strings["%s attends maybe."] = ""; $a->strings["and"] = "et"; $a->strings[", and %d other people"] = ", et %d autres personnes"; -$a->strings["%s like this."] = "%s aiment ça."; -$a->strings["%s don't like this."] = "%s n'aiment pas ça."; +$a->strings["%2\$d people like this"] = "%2\$d personnes aiment ça"; +$a->strings["%s like this."] = ""; +$a->strings["%2\$d people don't like this"] = "%2\$d personnes n'aiment pas ça"; +$a->strings["%s don't like this."] = ""; +$a->strings["%2\$d people attend"] = ""; +$a->strings["%s attend."] = ""; +$a->strings["%2\$d people don't attend"] = ""; +$a->strings["%s don't attend."] = ""; +$a->strings["%2\$d people anttend maybe"] = ""; +$a->strings["%s anttend maybe."] = ""; $a->strings["Visible to everybody"] = "Visible par tout le monde"; $a->strings["Please enter a video link/URL:"] = "Entrez un lien/URL video :"; $a->strings["Please enter an audio link/URL:"] = "Entrez un lien/URL audio :"; @@ -1505,6 +1621,25 @@ $a->strings["permissions"] = "permissions"; $a->strings["Post to Groups"] = "Publier aux groupes"; $a->strings["Post to Contacts"] = "Publier aux contacts"; $a->strings["Private post"] = "Message privé"; +$a->strings["View all"] = ""; +$a->strings["Like"] = array( + 0 => "", + 1 => "", +); +$a->strings["Dislike"] = array( + 0 => "", + 1 => "", +); +$a->strings["Not Attending"] = array( + 0 => "", + 1 => "", +); +$a->strings["Undecided"] = array( + 0 => "", + 1 => "", +); +$a->strings["Forums"] = ""; +$a->strings["External link to forum"] = ""; $a->strings["view full size"] = "voir en pleine taille"; $a->strings["newer"] = "Plus récent"; $a->strings["older"] = "Plus ancien"; @@ -1521,7 +1656,6 @@ $a->strings["%d Contact"] = array( ); $a->strings["Full Text"] = ""; $a->strings["Tags"] = ""; -$a->strings["Forums"] = ""; $a->strings["poke"] = "titiller"; $a->strings["poked"] = "a titillé"; $a->strings["ping"] = "attirer l'attention"; @@ -1554,31 +1688,10 @@ $a->strings["frustrated"] = "frustrée"; $a->strings["motivated"] = "motivée"; $a->strings["relaxed"] = "détendue"; $a->strings["surprised"] = "surprise"; -$a->strings["Monday"] = "Lundi"; -$a->strings["Tuesday"] = "Mardi"; -$a->strings["Wednesday"] = "Mercredi"; -$a->strings["Thursday"] = "Jeudi"; -$a->strings["Friday"] = "Vendredi"; -$a->strings["Saturday"] = "Samedi"; -$a->strings["Sunday"] = "Dimanche"; -$a->strings["January"] = "Janvier"; -$a->strings["February"] = "Février"; -$a->strings["March"] = "Mars"; -$a->strings["April"] = "Avril"; -$a->strings["May"] = "Mai"; -$a->strings["June"] = "Juin"; -$a->strings["July"] = "Juillet"; -$a->strings["August"] = "Août"; -$a->strings["September"] = "Septembre"; -$a->strings["October"] = "Octobre"; -$a->strings["November"] = "Novembre"; -$a->strings["December"] = "Décembre"; $a->strings["bytes"] = "octets"; $a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer"; $a->strings["View on separate page"] = ""; $a->strings["view on separate page"] = ""; -$a->strings["default"] = "défaut"; -$a->strings["Select an alternate language"] = "Choisir une langue alternative"; $a->strings["activity"] = "activité"; $a->strings["post"] = "publication"; $a->strings["Item filed"] = "Élément classé"; @@ -1608,7 +1721,7 @@ $a->strings["Google+"] = "Google+"; $a->strings["pump.io"] = "pump.io"; $a->strings["Twitter"] = "Twitter"; $a->strings["Diaspora Connector"] = "Connecteur Diaspora"; -$a->strings["Statusnet"] = "Statusnet"; +$a->strings["GNU Social"] = ""; $a->strings["App.net"] = "App.net"; $a->strings["Redmatrix"] = ""; $a->strings[" on Last.fm"] = "sur Last.fm"; @@ -1679,6 +1792,7 @@ $a->strings["Nickname is already registered. Please choose another."] = "Pseudo $a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre."; $a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué."; $a->strings["An error occurred during registration. Please try again."] = "Une erreur est survenue lors de l'inscription. Merci de recommencer."; +$a->strings["default"] = "défaut"; $a->strings["An error occurred creating your default profile. Please try again."] = "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer."; $a->strings["Friends"] = "Amis"; $a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tChère/Cher %1\$s,\n\t\t\tMerci de vous être inscrit sur %2\$s. Votre compte a bien été créé.\n\t"; @@ -1700,7 +1814,6 @@ $a->strings["Hermaphrodite"] = "Hermaphrodite"; $a->strings["Neuter"] = "Neutre"; $a->strings["Non-specific"] = "Non-spécifique"; $a->strings["Other"] = "Autre"; -$a->strings["Undecided"] = "Indécis"; $a->strings["Males"] = "Hommes"; $a->strings["Females"] = "Femmes"; $a->strings["Gay"] = "Gay"; @@ -1747,6 +1860,7 @@ $a->strings["Ask me"] = "Me demander"; $a->strings["Friendica Notification"] = "Notification Friendica"; $a->strings["Thank You,"] = "Merci, "; $a->strings["%s Administrator"] = "L'administrateur de %s"; +$a->strings["%1\$s, %2\$s Administrator"] = ""; $a->strings["%s "] = "%s "; $a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notification] Nouveau courriel reçu sur %s"; $a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s vous a envoyé un nouveau message privé sur %2\$s."; @@ -1845,7 +1959,21 @@ $a->strings["Your personal photos"] = "Vos photos personnelles"; $a->strings["Local Directory"] = "Annuaire local"; $a->strings["Set zoomfactor for Earth Layers"] = "Régler le niveau de zoom pour la géolocalisation"; $a->strings["Show/hide boxes at right-hand column:"] = "Montrer/cacher les boîtes dans la colonne de droite :"; +$a->strings["Midnight"] = ""; +$a->strings["Zenburn"] = ""; +$a->strings["Bootstrap"] = ""; +$a->strings["Shades of Pink"] = ""; +$a->strings["Lime and Orange"] = ""; +$a->strings["GeoCities Retro"] = ""; +$a->strings["Background Image"] = ""; +$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = ""; +$a->strings["Background Color"] = ""; +$a->strings["HEX value for the background color. Don't include the #"] = ""; +$a->strings["font size"] = ""; +$a->strings["base font size for your interface"] = ""; +$a->strings["Comma separated list of helper forums"] = ""; $a->strings["Set style"] = "Définir le style"; +$a->strings["Quick Start"] = ""; $a->strings["greenzero"] = ""; $a->strings["purplezero"] = ""; $a->strings["easterbunny"] = ""; From 49b4be16702d225e88922be6218768d409ad8c70 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 11 Dec 2015 08:04:35 +0100 Subject: [PATCH 20/52] regenerated credits.txt --- util/credits.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/util/credits.txt b/util/credits.txt index a0890ef3d9..ec040e14a8 100644 --- a/util/credits.txt +++ b/util/credits.txt @@ -108,6 +108,7 @@ Oliver Olivier Olivier Migeot Pavel Morozov +Perig Gouanvic peturisfeld Piotr Blonkowski pokerazor From 8d1af68f4417d9b5c1577d472c543afc5c8c5c50 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Fri, 11 Dec 2015 19:38:00 +0100 Subject: [PATCH 21/52] missing frost-mobile event icons --- view/theme/frost-mobile/images/event-attend.png | Bin 0 -> 737 bytes .../frost-mobile/images/event-dontattend.png | Bin 0 -> 803 bytes .../frost-mobile/images/event-maybeattend.png | Bin 0 -> 675 bytes 3 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 view/theme/frost-mobile/images/event-attend.png create mode 100644 view/theme/frost-mobile/images/event-dontattend.png create mode 100644 view/theme/frost-mobile/images/event-maybeattend.png diff --git a/view/theme/frost-mobile/images/event-attend.png b/view/theme/frost-mobile/images/event-attend.png new file mode 100644 index 0000000000000000000000000000000000000000..f555fbb4a90270de38f1b8cc96cba176955f1ed7 GIT binary patch literal 737 zcmV<70v`Q|P)hxK znfcC{XP%i!%4-o0V>3SEQ-!{H*jt4G3?=C&wvMAcxDgGIrbl_%*C*fUSdB(J7Jg;1 zn$d(cRRFTu|G)!bt2CoKBHoL4C05dpZ6)f9)1DgazhFfjj$&q&)#asWI97*w69kZI ze%%BEV8k&~b)!evuVM|MS8%*a%3?nkbK=IENrx+FD5{Io(<+mf8nc{zJuZljZfejP zb=rtu(Ex+kQ3FI4`?V=Vyd48k{+4i_cSqEBYkD&S18%H5EbffT%+|W+deX^o=*f5#e;CI)L}%39%d}qVhRhtY%aT#N;aN zjmd;*zSq9Du(TtZ^TA|NrEKc&ju?ycbjz1hRTgtRg#uFp=|H=}5T7{^XM#$qC z=3S;l*e(Zg%IG_wR|vVOW}z!;zo&8#tQlfG{`mJY>c=J&a6PK;!@>*zqadpJM32%> z^+sG3yg$D9_TzO%h*7Gx9SejzpxWE=QjPOw{u6{ivjMLv^!bQ=H9`z4>k<8cb$C{y zZ4hnvnl}W&H(KzpsQx7Gj1{0(2*PT&;C@o>Od$SCF+^iVn{Nq72X+e2xUpzTT(~TF zX@`-xpSS99KAHD+L2#<}q_GPx1ZT@j1>ufqO3H@{Nv2JBj!n&R@?s6(8qWR&N5Iqq T_kbhv00000NkvXXu0mjfA7w zJn!@Ml8>?2h6Q+omj$}Dur~#r=!(WyEc%D`;B>-4Jg(Ntz9IS@gsJF<>%vy1(SjyS zt3aTv{byVej!Fw&B^bBiQO1{aU`fV&dTgx1{w-STu^mGyd|jz}?=l8)Ow7rVPr$oK=OY$Y@Yg29KpYQO(43(+DUx5Uv=dFjWi%jq z?~jvMm7~8Ndr+5{>w^zPi&P@fg2Ab|MjXPX)ciW^P5HcqdBPo0h)TyXODHl~m({LF zXDxoDWOp&NVBPNHC_@5Th0Z98$QgW3&D|5KVi8KmM2s6kzwt0bHXpqb?@yw+=OulY zPEiqonYdk`^Gw*$$5r^PiUi^7X5)U2yj`La)`|q-UTDsdjTh>|m|BupA*5$fxgU+o zm{H8VWa(q@*CzfRp=n#rn z5<7Eh~DzG(fKGtBV h(6sz3bmA2D{Q`}%1vay-;DZ1F002ovPDHLkV1hqxaclqp literal 0 HcmV?d00001 diff --git a/view/theme/frost-mobile/images/event-maybeattend.png b/view/theme/frost-mobile/images/event-maybeattend.png new file mode 100644 index 0000000000000000000000000000000000000000..16daa320866a4147b5ad646996522fce37c32441 GIT binary patch literal 675 zcmV;U0$lxxP)rE@@zeo5n@A-Yd zzxVk)x2vtS=*Mn+#g{sD^N6KOv4sH<&; z0WdK!D;mU*FkVTGZzId6<8jBd|0k<2OSAtT;4Qjyjsp$@kLw}E!|4MzNpeJ z{D~5bp(h1IGx6Ii5bU3dKnxtun-(x*K zB>X3Z3Ai}&Ez1kyT@8PyaQem?NCVO8oM^{o6Pp}-#>?q~=)iUCjeLJ`6r*VprJBW& z+Hpg;AH)ECc$79-R*3!tz$gymW|m}GhodiHpU(J;S2N9?H=6{Mfi9TrO^#dBS)|$g%OHO1O)Q{{VO Date: Sat, 12 Dec 2015 01:27:31 +0100 Subject: [PATCH 22/52] fix directory search --- mod/directory.php | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/mod/directory.php b/mod/directory.php index cb233db898..484858f34d 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -57,19 +57,19 @@ function directory_content(&$a) { $sql_extra = " AND ((`profile`.`name` LIKE '%$search%') OR (`user`.`nickname` LIKE '%$search%') OR - (`pdesc` LIKE '%$search%') OR - (`locality` LIKE '%$search%') OR - (`region` LIKE '%$search%') OR - (`country-name` LIKE '%$search%') OR - (`gender` LIKE '%$search%') OR - (`marital` LIKE '%$search%') OR - (`sexual` LIKE '%$search%') OR - (`about` LIKE '%$search%') OR - (`romance` LIKE '%$search%') OR - (`work` LIKE '%$search%') OR - (`education` LIKE '%$search%') OR - (`pub_keywords` LIKE '%$search%') OR - (`prv_keywords` LIKE '%$search%'))"; + (`profile`.`pdesc` LIKE '%$search%') OR + (`profile`.`locality` LIKE '%$search%') OR + (`profile`.`region` LIKE '%$search%') OR + (`profile`.`country-name` LIKE '%$search%') OR + (`profile`.`gender` LIKE '%$search%') OR + (`profile`.`marital` LIKE '%$search%') OR + (`profile`.`sexual` LIKE '%$search%') OR + (`profile`.`about` LIKE '%$search%') OR + (`profile`.`romance` LIKE '%$search%') OR + (`profile`.`work` LIKE '%$search%') OR + (`profile`.`education` LIKE '%$search%') OR + (`profile`.`pub_keywords` LIKE '%$search%') OR + (`profile`.`prv_keywords` LIKE '%$search%'))"; } $publish = ((get_config('system','publish_all')) ? '' : " AND `publish` = 1 " ); From a7b37faafdbeb9a0fcc797bb87113fa81b260f02 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 12 Dec 2015 06:23:54 +0100 Subject: [PATCH 23/52] added event icons from frost-mobile to frost --- view/theme/frost/images/event-attend.png | Bin 0 -> 737 bytes view/theme/frost/images/event-dontattend.png | Bin 0 -> 803 bytes view/theme/frost/images/event-maybeattend.png | Bin 0 -> 675 bytes view/theme/frost/style.css | 6 +++--- 4 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 view/theme/frost/images/event-attend.png create mode 100644 view/theme/frost/images/event-dontattend.png create mode 100644 view/theme/frost/images/event-maybeattend.png diff --git a/view/theme/frost/images/event-attend.png b/view/theme/frost/images/event-attend.png new file mode 100644 index 0000000000000000000000000000000000000000..f555fbb4a90270de38f1b8cc96cba176955f1ed7 GIT binary patch literal 737 zcmV<70v`Q|P)hxK znfcC{XP%i!%4-o0V>3SEQ-!{H*jt4G3?=C&wvMAcxDgGIrbl_%*C*fUSdB(J7Jg;1 zn$d(cRRFTu|G)!bt2CoKBHoL4C05dpZ6)f9)1DgazhFfjj$&q&)#asWI97*w69kZI ze%%BEV8k&~b)!evuVM|MS8%*a%3?nkbK=IENrx+FD5{Io(<+mf8nc{zJuZljZfejP zb=rtu(Ex+kQ3FI4`?V=Vyd48k{+4i_cSqEBYkD&S18%H5EbffT%+|W+deX^o=*f5#e;CI)L}%39%d}qVhRhtY%aT#N;aN zjmd;*zSq9Du(TtZ^TA|NrEKc&ju?ycbjz1hRTgtRg#uFp=|H=}5T7{^XM#$qC z=3S;l*e(Zg%IG_wR|vVOW}z!;zo&8#tQlfG{`mJY>c=J&a6PK;!@>*zqadpJM32%> z^+sG3yg$D9_TzO%h*7Gx9SejzpxWE=QjPOw{u6{ivjMLv^!bQ=H9`z4>k<8cb$C{y zZ4hnvnl}W&H(KzpsQx7Gj1{0(2*PT&;C@o>Od$SCF+^iVn{Nq72X+e2xUpzTT(~TF zX@`-xpSS99KAHD+L2#<}q_GPx1ZT@j1>ufqO3H@{Nv2JBj!n&R@?s6(8qWR&N5Iqq T_kbhv00000NkvXXu0mjfA7w zJn!@Ml8>?2h6Q+omj$}Dur~#r=!(WyEc%D`;B>-4Jg(Ntz9IS@gsJF<>%vy1(SjyS zt3aTv{byVej!Fw&B^bBiQO1{aU`fV&dTgx1{w-STu^mGyd|jz}?=l8)Ow7rVPr$oK=OY$Y@Yg29KpYQO(43(+DUx5Uv=dFjWi%jq z?~jvMm7~8Ndr+5{>w^zPi&P@fg2Ab|MjXPX)ciW^P5HcqdBPo0h)TyXODHl~m({LF zXDxoDWOp&NVBPNHC_@5Th0Z98$QgW3&D|5KVi8KmM2s6kzwt0bHXpqb?@yw+=OulY zPEiqonYdk`^Gw*$$5r^PiUi^7X5)U2yj`La)`|q-UTDsdjTh>|m|BupA*5$fxgU+o zm{H8VWa(q@*CzfRp=n#rn z5<7Eh~DzG(fKGtBV h(6sz3bmA2D{Q`}%1vay-;DZ1F002ovPDHLkV1hqxaclqp literal 0 HcmV?d00001 diff --git a/view/theme/frost/images/event-maybeattend.png b/view/theme/frost/images/event-maybeattend.png new file mode 100644 index 0000000000000000000000000000000000000000..16daa320866a4147b5ad646996522fce37c32441 GIT binary patch literal 675 zcmV;U0$lxxP)rE@@zeo5n@A-Yd zzxVk)x2vtS=*Mn+#g{sD^N6KOv4sH<&; z0WdK!D;mU*FkVTGZzId6<8jBd|0k<2OSAtT;4Qjyjsp$@kLw}E!|4MzNpeJ z{D~5bp(h1IGx6Ii5bU3dKnxtun-(x*K zB>X3Z3Ai}&Ez1kyT@8PyaQem?NCVO8oM^{o6Pp}-#>?q~=)iUCjeLJ`6r*VprJBW& z+Hpg;AH)ECc$79-R*3!tz$gymW|m}GhodiHpU(J;S2N9?H=6{Mfi9TrO^#dBS)|$g%OHO1O)Q{{VO Date: Sat, 12 Dec 2015 17:41:25 +0100 Subject: [PATCH 24/52] Code cleaning, real changes will follow --- mod/pubsubhubbub.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mod/pubsubhubbub.php b/mod/pubsubhubbub.php index d6b9bf1e7c..ad75268a94 100644 --- a/mod/pubsubhubbub.php +++ b/mod/pubsubhubbub.php @@ -39,7 +39,7 @@ function pubsubhubbub_init(&$a) { http_status_exit(404); } - logger("pubsubhubbub: $hub_mode request from " . + logger("pubsubhubbub: $hub_mode request from " . $_SERVER['REMOTE_ADDR']); // get the nick name from the topic, a bit hacky but needed @@ -52,9 +52,9 @@ function pubsubhubbub_init(&$a) { // fetch user from database given the nickname $r = q("SELECT * FROM `user` WHERE `nickname` = '%s'" . - " AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1", + " AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1", dbesc($nick)); - + if(!count($r)) { logger('pubsubhubbub: local account not found: ' . $nick); http_status_exit(404); @@ -82,20 +82,20 @@ function pubsubhubbub_init(&$a) { // sanity check that topic URLs are the same if(!link_compare($hub_topic, $contact['poll'])) { - logger('pubsubhubbub: hub topic ' . $hub_topic . ' != ' . + logger('pubsubhubbub: hub topic ' . $hub_topic . ' != ' . $contact['poll']); http_status_exit(404); } // do subscriber verification according to the PuSH protocol $hub_challenge = random_string(40); - $params = 'hub.mode=' . + $params = 'hub.mode=' . ($subscribe == 1 ? 'subscribe' : 'unsubscribe') . '&hub.topic=' . urlencode($hub_topic) . '&hub.challenge=' . $hub_challenge . '&hub.lease_seconds=604800' . '&hub.verify_token=' . $hub_verify_token; - + // lease time is hard coded to one week (in seconds) // we don't actually enforce the lease time because GNU // Social/StatusNet doesn't honour it (yet) From ec9b1b7afd95db31a3488cce9a2793e0edbfab74 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 12 Dec 2015 17:46:24 +0100 Subject: [PATCH 25/52] There is now a fragmentation level for the table optimisation --- include/cron.php | 25 ++++++++++++++++++++----- mod/admin.php | 3 +++ view/templates/admin_site.tpl | 1 + 3 files changed, 24 insertions(+), 5 deletions(-) diff --git a/include/cron.php b/include/cron.php index d95d8bc601..8bf168ed50 100644 --- a/include/cron.php +++ b/include/cron.php @@ -189,24 +189,39 @@ function cron_run(&$argv, &$argc){ q('DELETE FROM `photo` WHERE `uid` = 0 AND `resource-id` LIKE "pic:%%" AND `created` < NOW() - INTERVAL %d SECOND', $cachetime); } - // maximum table size in megabyte + // Maximum table size in megabyte $max_tablesize = intval(get_config('system','optimize_max_tablesize')) * 1000000; if ($max_tablesize == 0) $max_tablesize = 100 * 1000000; // Default are 100 MB + // Minimum fragmentation level in percent + $fragmentation_level = intval(get_config('system','optimize_fragmentation')) / 100; + if ($fragmentation_level == 0) + $fragmentation_level = 0.3; // Default value is 30% + // Optimize some tables that need to be optimized $r = q("SHOW TABLE STATUS"); foreach($r as $table) { - // Don't optimize tables that needn't to be optimized - if ($table["Data_free"] == 0) - continue; - // Don't optimize tables that are too large if ($table["Data_length"] > $max_tablesize) continue; + // Don't optimize empty tables + if ($table["Data_length"] == 0) + continue; + + // Calculate fragmentation + $fragmentation = $table["Data_free"] / $table["Data_length"]; + + logger("Table ".$table["Name"]." - Fragmentation level: ".round($fragmentation * 100, 2), LOGGER_DEBUG); + + // Don't optimize tables that needn't to be optimized + if ($fragmentation < $fragmentation_level) + continue; + // So optimize it + logger("Optimize Table ".$table["Name"], LOGGER_DEBUG); q("OPTIMIZE TABLE `%s`", dbesc($table["Name"])); } diff --git a/mod/admin.php b/mod/admin.php index 8d2a7688f8..9e330fd1dc 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -410,6 +410,7 @@ function admin_page_site_post(&$a){ $maxloadavg = ((x($_POST,'maxloadavg')) ? intval(trim($_POST['maxloadavg'])) : 50); $maxloadavg_frontend = ((x($_POST,'maxloadavg_frontend')) ? intval(trim($_POST['maxloadavg_frontend'])) : 50); $optimize_max_tablesize = ((x($_POST,'optimize_max_tablesize')) ? intval(trim($_POST['optimize_max_tablesize'])): 100); + $optimize_fragmentation = ((x($_POST,'optimize_fragmentation')) ? intval(trim($_POST['optimize_fragmentation'])): 30); $poco_completion = ((x($_POST,'poco_completion')) ? intval(trim($_POST['poco_completion'])) : false); $poco_requery_days = ((x($_POST,'poco_requery_days')) ? intval(trim($_POST['poco_requery_days'])) : 7); $poco_discovery = ((x($_POST,'poco_discovery')) ? intval(trim($_POST['poco_discovery'])) : 0); @@ -492,6 +493,7 @@ function admin_page_site_post(&$a){ set_config('system','maxloadavg',$maxloadavg); set_config('system','maxloadavg_frontend',$maxloadavg_frontend); set_config('system','optimize_max_tablesize',$optimize_max_tablesize); + set_config('system','optimize_fragmentation',$optimize_fragmentation); set_config('system','poco_completion',$poco_completion); set_config('system','poco_requery_days',$poco_requery_days); set_config('system','poco_discovery',$poco_discovery); @@ -775,6 +777,7 @@ function admin_page_site(&$a) { '$maxloadavg' => array('maxloadavg', t("Maximum Load Average"), ((intval(get_config('system','maxloadavg')) > 0)?get_config('system','maxloadavg'):50), t("Maximum system load before delivery and poll processes are deferred - default 50.")), '$maxloadavg_frontend' => array('maxloadavg_frontend', t("Maximum Load Average (Frontend)"), ((intval(get_config('system','maxloadavg_frontend')) > 0)?get_config('system','maxloadavg_frontend'):50), t("Maximum system load before the frontend quits service - default 50.")), '$optimize_max_tablesize'=> array('optimize_max_tablesize', t("Maximum table size for optimization"), ((intval(get_config('system','optimize_max_tablesize')) > 0)?get_config('system','optimize_max_tablesize'):100), t("Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it.")), + '$optimize_fragmentation'=> array('optimize_fragmentation', t("Minimum level of fragmentation"), ((intval(get_config('system','optimize_fragmentation')) > 0)?get_config('system','optimize_fragmentation'):30), t("Minimum fragmenation level to start the automatic optimization - default value is 30%.")), '$poco_completion' => array('poco_completion', t("Periodical check of global contacts"), get_config('system','poco_completion'), t("If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers.")), '$poco_requery_days' => array('poco_requery_days', t("Days between requery"), get_config('system','poco_requery_days'), t("Number of days after which a server is requeried for his contacts.")), diff --git a/view/templates/admin_site.tpl b/view/templates/admin_site.tpl index c1e70614ce..b08e5f935f 100644 --- a/view/templates/admin_site.tpl +++ b/view/templates/admin_site.tpl @@ -124,6 +124,7 @@ {{include file="field_input.tpl" field=$maxloadavg}} {{include file="field_input.tpl" field=$maxloadavg_frontend}} {{include file="field_input.tpl" field=$optimize_max_tablesize}} + {{include file="field_input.tpl" field=$optimize_fragmentation}} {{include file="field_input.tpl" field=$abandon_days}} {{include file="field_input.tpl" field=$lockpath}} {{include file="field_input.tpl" field=$temppath}} From 5a1041578cdbb1cf9921392c333c14efd6b7e937 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 12 Dec 2015 17:55:57 +0100 Subject: [PATCH 26/52] Bugfix: The subscribe process took the own contact by random ... --- mod/pubsubhubbub.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/pubsubhubbub.php b/mod/pubsubhubbub.php index ad75268a94..5d7621cc74 100644 --- a/mod/pubsubhubbub.php +++ b/mod/pubsubhubbub.php @@ -70,8 +70,8 @@ function pubsubhubbub_init(&$a) { } // get corresponding row from contact table - $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0" . - " AND `pending` = 0 LIMIT 1", + $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND NOT `blocked`". + " AND NOT `pending` AND `self` LIMIT 1", intval($owner['uid'])); if(!count($r)) { logger('pubsubhubbub: contact not found.'); From 4a7d6eb13c7b9b7f8c48be791dbf4045aa6423e0 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 13 Dec 2015 08:09:53 +0100 Subject: [PATCH 27/52] resized icons to 16px --- view/theme/frost/images/event-attend-16.png | Bin 0 -> 615 bytes view/theme/frost/images/event-dontattend-16.png | Bin 0 -> 637 bytes view/theme/frost/images/event-maybeattend-16.png | Bin 0 -> 601 bytes view/theme/frost/style.css | 6 +++--- 4 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 view/theme/frost/images/event-attend-16.png create mode 100644 view/theme/frost/images/event-dontattend-16.png create mode 100644 view/theme/frost/images/event-maybeattend-16.png diff --git a/view/theme/frost/images/event-attend-16.png b/view/theme/frost/images/event-attend-16.png new file mode 100644 index 0000000000000000000000000000000000000000..b96a92aefa75d1dedd87e5de2ef61147173a0775 GIT binary patch literal 615 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6SkfJR9T^xl_H+M9WCijSl0AZa z85pY67#JE_7#My5g&JNkFq9fFFuY1&V6d9Oz#v{QXIG#NP=YDR+ueoXe|!I#{XiaP zfk$L9(5CAk%;=;sy8FJ_wf1S!e6wVl3pTD*^k;h#nP_|8jeC6Z#^-vXc91I zedrj;v!QS7ftqhfcI8x}R$* zyVCaBn_n8gp3j~CD=2zjS6$@A?Sej<-VUAuQ@Z!&94VQQb@GhI+N!lmg&FruZGElN zn&*A5(|BF^+JOJ(@y2bXvE@w~RvR?BT)X$Zw>zDZ#L2nI_(zkvoP@3F(nEfqEDQae zFZbE}bSVA2YRA)w{&AL;Tb=uk+nPRHG)?vRw7+tHc=_5=+;n!l?rPs>xmfr5LEm_n zi`<7%A?{`K(Zxw|k-X>9wDaW^en?ymE2$ z?s?U^A;2(IEpd$~Nl7e8wMs5Z1yT$~28O1(hDN%E#vuk4RtCmaCMMbjhE@g!-w&LB zjiMnpKP5A*61Rr7x#i(N4U!-mg7ec#$`gxH8OqDc^)mCai<1)zQuXqS(r3T3kpe1W N@O1TaS?83{1OVj5=x_i4 literal 0 HcmV?d00001 diff --git a/view/theme/frost/images/event-dontattend-16.png b/view/theme/frost/images/event-dontattend-16.png new file mode 100644 index 0000000000000000000000000000000000000000..56351f25f9bb7b71d72675fed08b496ef88762a0 GIT binary patch literal 637 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6SkfJR9T^xl_H+M9WCijSl0AZa z85pY67#JE_7#My5g&JNkFq9fFFuY1&V6d9Oz#v{QXIG#NP=YDR+ueoXe|!I#{XiaP zfk$L9(5CAk%;=;sy8_Wb9EXWPvU@(v5D%bwk1KJBT(3G3W@bLMR?OLgVD zW1_l#&FVwkySJ&-Rj0+fho9_oxjU=xY(k6 z4=c;Za!bv-ExbDVs*m@!n(yblO*cz+9^pT|Z$}ab&+MR$3)kx}e4@lR8>KAVcm!t?;y5`>3*|Apf2OC7#SFv z>KYp98XAWfSXdbtTbY<>8yH#{7<@l){xyn*-29Zxv`X9>+UAyr12ss3YzWRzD=AMb mN@XZ7FW1Y=%Pvk%EJ)SMFG`>N&PEETh{4m<&t;ucLK6T-(D?fR literal 0 HcmV?d00001 diff --git a/view/theme/frost/images/event-maybeattend-16.png b/view/theme/frost/images/event-maybeattend-16.png new file mode 100644 index 0000000000000000000000000000000000000000..ab6ee336f3a58dee8de8e3cf0b4257afdd3691bc GIT binary patch literal 601 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6SkfJR9T^xl_H+M9WCijSl0AZa z85pY67#JE_7#My5g&JNkFq9fFFuY1&V6d9Oz#v{QXIG#NP=YDR+ueoXe|!I#{XiaP zfk$L9(5CAk%;=;sy8A0IOVdgwN8KZCK`bFG zjv{-66Z@wol<5|&TmB^U^SwO}4UG>>SRZCn+^%WA_Zv&os<>da*xN-5bS{M$ugeO5 zHG!9X-|4$Q-Z&|3P4-`x=bL0KA=K^QDR6|fzf^)RXtk04(rdchUbCL{WJG*BU2@^W z(U~`v`p(^DD!a2N>$bUi+{R>)iF)tnW?FrBbX7Uja92p_Nm6IIm`d8738(*;I&G{@ z@_e;&)+)0pU9Z-M^qU`BbNkFc-H@#UAbRL?TmEJ zV@t=#`H!a+9-eq#Yi)4)uc^xUw&hCMo{=9pl|p}S_f!byH zRdP`(kYX@0Ff`RQG}1LR4l%H>GBCC>G0`?Kv@$UGe&GCT6b-rgDVb@NxHYuREe{83 wkObKfoS#-wo>-L1P+nfHmzkGcoSayYs+V7sKKq@G6i^X^r>mdKI;Vst0EgGs2mk;8 literal 0 HcmV?d00001 diff --git a/view/theme/frost/style.css b/view/theme/frost/style.css index 10e53e576d..3dd400c76b 100644 --- a/view/theme/frost/style.css +++ b/view/theme/frost/style.css @@ -3828,9 +3828,9 @@ aside input[type='text'] { background-repeat: no-repeat; opacity: 0.4; } -.event-attend-icon { background-image: url('images/event-attend.png'); } -.event-maybeattend-icon { background-image: url('images/event-maybeattend.png'); } -.event-dontattend-icon { background-image: url('images/event-dontattend.png'); } +.event-attend-icon { background-image: url('images/event-attend-16.png'); } +.event-maybeattend-icon { background-image: url('images/event-maybeattend-16.png'); } +.event-dontattend-icon { background-image: url('images/event-dontattend-16.png'); } .filer-icon:hover { opacity: 1.0; From fb66f27e8fc388eede2a5b63b673582087bd1d1f Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 13 Dec 2015 08:55:17 +0100 Subject: [PATCH 28/52] regenerated messages.po --- util/messages.po | 2208 +++++++++++++++++++++++++++------------------- 1 file changed, 1293 insertions(+), 915 deletions(-) diff --git a/util/messages.po b/util/messages.po index 7dcd971931..b6e579b1a7 100644 --- a/util/messages.po +++ b/util/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-30 13:14+0100\n" +"POT-Creation-Date: 2015-12-13 08:51+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,440 +18,491 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" -#: mod/contacts.php:118 +#: mod/contacts.php:50 include/identity.php:380 +msgid "Network:" +msgstr "" + +#: mod/contacts.php:51 mod/contacts.php:986 mod/videos.php:37 +#: mod/viewcontacts.php:105 mod/dirfind.php:208 mod/network.php:596 +#: mod/allfriends.php:72 mod/match.php:82 mod/directory.php:172 +#: mod/common.php:124 mod/suggest.php:95 mod/photos.php:41 +#: include/identity.php:295 +msgid "Forum" +msgstr "" + +#: mod/contacts.php:128 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" msgstr[0] "" msgstr[1] "" -#: mod/contacts.php:149 mod/contacts.php:372 +#: mod/contacts.php:159 mod/contacts.php:382 msgid "Could not access contact record." msgstr "" -#: mod/contacts.php:163 +#: mod/contacts.php:173 msgid "Could not locate selected profile." msgstr "" -#: mod/contacts.php:196 +#: mod/contacts.php:206 msgid "Contact updated." msgstr "" -#: mod/contacts.php:198 mod/dfrn_request.php:578 +#: mod/contacts.php:208 mod/dfrn_request.php:578 msgid "Failed to update contact record." msgstr "" -#: mod/contacts.php:354 mod/manage.php:96 mod/display.php:496 +#: mod/contacts.php:364 mod/manage.php:96 mod/display.php:496 #: mod/profile_photo.php:19 mod/profile_photo.php:175 mod/profile_photo.php:186 #: mod/profile_photo.php:199 mod/ostatus_subscribe.php:9 mod/follow.php:10 #: mod/follow.php:72 mod/follow.php:137 mod/item.php:169 mod/item.php:185 #: mod/group.php:19 mod/dfrn_confirm.php:55 mod/fsuggest.php:78 -#: mod/wall_upload.php:77 mod/wall_upload.php:80 mod/viewcontacts.php:24 +#: mod/wall_upload.php:77 mod/wall_upload.php:80 mod/viewcontacts.php:40 #: mod/notifications.php:69 mod/message.php:45 mod/message.php:181 -#: mod/crepair.php:120 mod/dirfind.php:11 mod/nogroup.php:25 mod/network.php:4 -#: mod/allfriends.php:11 mod/events.php:165 mod/wallmessage.php:9 +#: mod/crepair.php:117 mod/dirfind.php:11 mod/nogroup.php:25 mod/network.php:4 +#: mod/allfriends.php:12 mod/events.php:165 mod/wallmessage.php:9 #: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 #: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/settings.php:20 -#: mod/settings.php:116 mod/settings.php:635 mod/register.php:42 -#: mod/delegate.php:12 mod/common.php:17 mod/mood.php:114 mod/suggest.php:58 +#: mod/settings.php:116 mod/settings.php:637 mod/register.php:42 +#: mod/delegate.php:12 mod/common.php:18 mod/mood.php:114 mod/suggest.php:58 #: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10 mod/api.php:26 #: mod/api.php:31 mod/notes.php:22 mod/poke.php:149 mod/repair_ostatus.php:9 -#: mod/invite.php:15 mod/invite.php:101 mod/photos.php:163 mod/photos.php:1097 +#: mod/invite.php:15 mod/invite.php:101 mod/photos.php:171 mod/photos.php:1105 #: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33 -#: include/items.php:5041 index.php:382 +#: include/items.php:5067 addons-extra/fbgroup/fbgroup.php:168 +#: addons-extra/fbgroup/fbgroup.php:174 index.php:382 msgid "Permission denied." msgstr "" -#: mod/contacts.php:393 +#: mod/contacts.php:403 msgid "Contact has been blocked" msgstr "" -#: mod/contacts.php:393 +#: mod/contacts.php:403 msgid "Contact has been unblocked" msgstr "" -#: mod/contacts.php:404 +#: mod/contacts.php:414 msgid "Contact has been ignored" msgstr "" -#: mod/contacts.php:404 +#: mod/contacts.php:414 msgid "Contact has been unignored" msgstr "" -#: mod/contacts.php:416 +#: mod/contacts.php:426 msgid "Contact has been archived" msgstr "" -#: mod/contacts.php:416 +#: mod/contacts.php:426 msgid "Contact has been unarchived" msgstr "" -#: mod/contacts.php:443 mod/contacts.php:817 +#: mod/contacts.php:453 mod/contacts.php:801 msgid "Do you really want to delete this contact?" msgstr "" -#: mod/contacts.php:445 mod/follow.php:105 mod/message.php:216 -#: mod/settings.php:1091 mod/settings.php:1097 mod/settings.php:1105 -#: mod/settings.php:1109 mod/settings.php:1114 mod/settings.php:1120 -#: mod/settings.php:1126 mod/settings.php:1132 mod/settings.php:1158 -#: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161 -#: mod/settings.php:1162 mod/dfrn_request.php:850 mod/register.php:238 +#: mod/contacts.php:455 mod/follow.php:105 mod/message.php:216 +#: mod/settings.php:1094 mod/settings.php:1100 mod/settings.php:1108 +#: mod/settings.php:1112 mod/settings.php:1117 mod/settings.php:1123 +#: mod/settings.php:1129 mod/settings.php:1135 mod/settings.php:1161 +#: mod/settings.php:1162 mod/settings.php:1163 mod/settings.php:1164 +#: mod/settings.php:1165 mod/dfrn_request.php:850 mod/register.php:238 #: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 -#: mod/profiles.php:687 mod/api.php:105 include/items.php:4873 +#: mod/profiles.php:687 mod/api.php:105 include/items.php:4899 msgid "Yes" msgstr "" -#: mod/contacts.php:448 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:116 -#: mod/videos.php:123 mod/message.php:219 mod/fbrowser.php:93 -#: mod/fbrowser.php:128 mod/settings.php:649 mod/settings.php:675 -#: mod/dfrn_request.php:864 mod/suggest.php:32 mod/editpost.php:147 -#: mod/photos.php:239 mod/photos.php:328 include/conversation.php:1221 -#: include/items.php:4876 +#: mod/contacts.php:458 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:116 +#: mod/videos.php:131 mod/message.php:219 mod/fbrowser.php:93 +#: mod/fbrowser.php:128 mod/settings.php:651 mod/settings.php:677 +#: mod/dfrn_request.php:864 mod/suggest.php:32 mod/editpost.php:148 +#: mod/photos.php:247 mod/photos.php:336 include/conversation.php:1221 +#: include/items.php:4902 msgid "Cancel" msgstr "" -#: mod/contacts.php:460 +#: mod/contacts.php:470 msgid "Contact has been removed." msgstr "" -#: mod/contacts.php:498 +#: mod/contacts.php:511 #, php-format msgid "You are mutual friends with %s" msgstr "" -#: mod/contacts.php:502 +#: mod/contacts.php:515 #, php-format msgid "You are sharing with %s" msgstr "" -#: mod/contacts.php:507 +#: mod/contacts.php:520 #, php-format msgid "%s is sharing with you" msgstr "" -#: mod/contacts.php:527 +#: mod/contacts.php:540 msgid "Private communications are not available for this contact." msgstr "" -#: mod/contacts.php:530 mod/admin.php:645 +#: mod/contacts.php:543 mod/admin.php:647 msgid "Never" msgstr "" -#: mod/contacts.php:534 +#: mod/contacts.php:547 msgid "(Update was successful)" msgstr "" -#: mod/contacts.php:534 +#: mod/contacts.php:547 msgid "(Update was not successful)" msgstr "" -#: mod/contacts.php:536 +#: mod/contacts.php:549 msgid "Suggest friends" msgstr "" -#: mod/contacts.php:540 +#: mod/contacts.php:553 #, php-format msgid "Network type: %s" msgstr "" -#: mod/contacts.php:543 include/contact_widgets.php:237 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "" -msgstr[1] "" - -#: mod/contacts.php:548 -msgid "View all contacts" -msgstr "" - -#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:821 -#: mod/admin.php:1117 -msgid "Unblock" -msgstr "" - -#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:821 -#: mod/admin.php:1116 -msgid "Block" -msgstr "" - -#: mod/contacts.php:556 -msgid "Toggle Blocked status" -msgstr "" - -#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:822 -msgid "Unignore" -msgstr "" - -#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:822 -#: mod/notifications.php:54 mod/notifications.php:179 mod/notifications.php:259 -msgid "Ignore" -msgstr "" - -#: mod/contacts.php:564 -msgid "Toggle Ignored status" -msgstr "" - -#: mod/contacts.php:570 mod/contacts.php:823 -msgid "Unarchive" -msgstr "" - -#: mod/contacts.php:570 mod/contacts.php:823 -msgid "Archive" -msgstr "" - -#: mod/contacts.php:573 -msgid "Toggle Archive status" -msgstr "" - -#: mod/contacts.php:578 -msgid "Repair" -msgstr "" - -#: mod/contacts.php:581 -msgid "Advanced Contact Settings" -msgstr "" - -#: mod/contacts.php:589 +#: mod/contacts.php:566 msgid "Communications lost with this contact!" msgstr "" -#: mod/contacts.php:592 +#: mod/contacts.php:569 msgid "Fetch further information for feeds" msgstr "" -#: mod/contacts.php:593 mod/admin.php:654 +#: mod/contacts.php:570 mod/admin.php:656 msgid "Disabled" msgstr "" -#: mod/contacts.php:593 +#: mod/contacts.php:570 msgid "Fetch information" msgstr "" -#: mod/contacts.php:593 +#: mod/contacts.php:570 msgid "Fetch information and keywords" msgstr "" -#: mod/contacts.php:606 -msgid "Contact Editor" -msgstr "" - -#: mod/contacts.php:608 mod/manage.php:143 mod/fsuggest.php:107 -#: mod/message.php:342 mod/message.php:525 mod/crepair.php:195 +#: mod/contacts.php:586 mod/manage.php:143 mod/fsuggest.php:107 +#: mod/message.php:342 mod/message.php:525 mod/crepair.php:196 #: mod/events.php:574 mod/content.php:712 mod/install.php:261 #: mod/install.php:299 mod/mood.php:137 mod/profiles.php:696 -#: mod/localtime.php:45 mod/poke.php:198 mod/invite.php:140 mod/photos.php:1129 -#: mod/photos.php:1253 mod/photos.php:1571 mod/photos.php:1622 -#: mod/photos.php:1670 mod/photos.php:1758 object/Item.php:710 -#: view/theme/cleanzero/config.php:80 view/theme/dispy/config.php:70 -#: view/theme/quattro/config.php:64 view/theme/diabook/config.php:148 -#: view/theme/diabook/theme.php:633 view/theme/clean/config.php:83 -#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 +#: mod/localtime.php:45 mod/poke.php:198 mod/invite.php:140 mod/photos.php:1137 +#: mod/photos.php:1261 mod/photos.php:1579 mod/photos.php:1630 +#: mod/photos.php:1678 mod/photos.php:1766 object/Item.php:710 +#: addons-extra/etherpadlite/etherpadlite.php:63 +#: addons-extra/fbgroup/fbgroup.php:278 +#: addons-extra/maya_locations/maya_locations.php:159 +#: addons-extra/lasttweets/lasttweets.php:102 +#: addons-extra/cthulhu_mythos_locations/cthulhu_mythos_locations.php:158 +#: addons-extra/donate/donate.php:60 view/theme/cleanzero/config.php:80 +#: view/theme/dispy/config.php:70 view/theme/quattro/config.php:64 +#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 +#: view/theme/clean/config.php:83 view/theme/vier/config.php:107 +#: view/theme/duepuntozero/config.php:59 msgid "Submit" msgstr "" -#: mod/contacts.php:609 +#: mod/contacts.php:587 msgid "Profile Visibility" msgstr "" -#: mod/contacts.php:610 +#: mod/contacts.php:588 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "" -#: mod/contacts.php:611 +#: mod/contacts.php:589 msgid "Contact Information / Notes" msgstr "" -#: mod/contacts.php:612 +#: mod/contacts.php:590 msgid "Edit contact notes" msgstr "" -#: mod/contacts.php:617 mod/contacts.php:861 mod/viewcontacts.php:77 +#: mod/contacts.php:595 mod/contacts.php:977 mod/viewcontacts.php:97 #: mod/nogroup.php:41 #, php-format msgid "Visit %s's profile [%s]" msgstr "" -#: mod/contacts.php:618 +#: mod/contacts.php:596 msgid "Block/Unblock contact" msgstr "" -#: mod/contacts.php:619 +#: mod/contacts.php:597 msgid "Ignore contact" msgstr "" -#: mod/contacts.php:620 +#: mod/contacts.php:598 msgid "Repair URL settings" msgstr "" -#: mod/contacts.php:621 +#: mod/contacts.php:599 msgid "View conversations" msgstr "" -#: mod/contacts.php:623 +#: mod/contacts.php:601 msgid "Delete contact" msgstr "" -#: mod/contacts.php:627 +#: mod/contacts.php:605 msgid "Last update:" msgstr "" -#: mod/contacts.php:629 +#: mod/contacts.php:607 msgid "Update public posts" msgstr "" -#: mod/contacts.php:631 mod/admin.php:1653 +#: mod/contacts.php:609 mod/admin.php:1656 msgid "Update now" msgstr "" -#: mod/contacts.php:633 mod/dirfind.php:190 mod/allfriends.php:67 +#: mod/contacts.php:611 mod/dirfind.php:190 mod/allfriends.php:60 #: mod/match.php:71 mod/suggest.php:82 include/contact_widgets.php:32 #: include/Contact.php:321 include/conversation.php:924 msgid "Connect/Follow" msgstr "" -#: mod/contacts.php:640 +#: mod/contacts.php:614 mod/contacts.php:805 mod/contacts.php:864 +#: mod/admin.php:1120 +msgid "Unblock" +msgstr "" + +#: mod/contacts.php:614 mod/contacts.php:805 mod/contacts.php:864 +#: mod/admin.php:1119 +msgid "Block" +msgstr "" + +#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:871 +msgid "Unignore" +msgstr "" + +#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:871 +#: mod/notifications.php:54 mod/notifications.php:179 mod/notifications.php:259 +msgid "Ignore" +msgstr "" + +#: mod/contacts.php:618 msgid "Currently blocked" msgstr "" -#: mod/contacts.php:641 +#: mod/contacts.php:619 msgid "Currently ignored" msgstr "" -#: mod/contacts.php:642 +#: mod/contacts.php:620 msgid "Currently archived" msgstr "" -#: mod/contacts.php:643 mod/notifications.php:172 mod/notifications.php:251 +#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:251 msgid "Hide this contact from others" msgstr "" -#: mod/contacts.php:643 +#: mod/contacts.php:621 msgid "" "Replies/likes to your public posts may still be visible" msgstr "" -#: mod/contacts.php:644 +#: mod/contacts.php:622 msgid "Notification for new posts" msgstr "" -#: mod/contacts.php:644 +#: mod/contacts.php:622 msgid "Send a notification of every new post of this contact" msgstr "" -#: mod/contacts.php:647 +#: mod/contacts.php:625 msgid "Blacklisted keywords" msgstr "" -#: mod/contacts.php:647 +#: mod/contacts.php:625 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "" -#: mod/contacts.php:654 mod/follow.php:121 mod/notifications.php:255 +#: mod/contacts.php:632 mod/follow.php:121 mod/notifications.php:255 msgid "Profile URL" msgstr "" -#: mod/contacts.php:700 +#: mod/contacts.php:635 mod/follow.php:125 mod/notifications.php:244 +#: mod/events.php:566 mod/directory.php:145 include/identity.php:304 +#: include/bb2diaspora.php:170 include/event.php:36 include/event.php:60 +msgid "Location:" +msgstr "" + +#: mod/contacts.php:637 mod/follow.php:127 mod/notifications.php:246 +#: mod/directory.php:153 include/identity.php:313 include/identity.php:621 +msgid "About:" +msgstr "" + +#: mod/contacts.php:639 mod/follow.php:129 mod/notifications.php:248 +#: include/identity.php:615 +msgid "Tags:" +msgstr "" + +#: mod/contacts.php:684 msgid "Suggestions" msgstr "" -#: mod/contacts.php:703 +#: mod/contacts.php:687 msgid "Suggest potential friends" msgstr "" -#: mod/contacts.php:708 mod/group.php:192 +#: mod/contacts.php:692 mod/group.php:192 msgid "All Contacts" msgstr "" -#: mod/contacts.php:711 +#: mod/contacts.php:695 msgid "Show all contacts" msgstr "" -#: mod/contacts.php:716 +#: mod/contacts.php:700 msgid "Unblocked" msgstr "" -#: mod/contacts.php:719 +#: mod/contacts.php:703 msgid "Only show unblocked contacts" msgstr "" -#: mod/contacts.php:725 +#: mod/contacts.php:709 msgid "Blocked" msgstr "" -#: mod/contacts.php:728 +#: mod/contacts.php:712 msgid "Only show blocked contacts" msgstr "" -#: mod/contacts.php:734 +#: mod/contacts.php:718 msgid "Ignored" msgstr "" -#: mod/contacts.php:737 +#: mod/contacts.php:721 msgid "Only show ignored contacts" msgstr "" -#: mod/contacts.php:743 +#: mod/contacts.php:727 msgid "Archived" msgstr "" -#: mod/contacts.php:746 +#: mod/contacts.php:730 msgid "Only show archived contacts" msgstr "" -#: mod/contacts.php:752 +#: mod/contacts.php:736 msgid "Hidden" msgstr "" -#: mod/contacts.php:755 +#: mod/contacts.php:739 msgid "Only show hidden contacts" msgstr "" -#: mod/contacts.php:808 include/text.php:1012 include/nav.php:123 -#: include/nav.php:187 view/theme/diabook/theme.php:125 +#: mod/contacts.php:792 mod/contacts.php:840 mod/viewcontacts.php:116 +#: include/identity.php:732 include/identity.php:735 include/text.php:1012 +#: include/nav.php:123 include/nav.php:187 view/theme/diabook/theme.php:125 msgid "Contacts" msgstr "" -#: mod/contacts.php:812 +#: mod/contacts.php:796 msgid "Search your contacts" msgstr "" -#: mod/contacts.php:813 +#: mod/contacts.php:797 msgid "Finding: " msgstr "" -#: mod/contacts.php:814 mod/directory.php:202 include/contact_widgets.php:34 +#: mod/contacts.php:798 mod/directory.php:210 include/contact_widgets.php:34 msgid "Find" msgstr "" -#: mod/contacts.php:820 mod/settings.php:146 mod/settings.php:674 +#: mod/contacts.php:804 mod/settings.php:146 mod/settings.php:676 msgid "Update" msgstr "" -#: mod/contacts.php:824 mod/group.php:171 mod/admin.php:1115 -#: mod/content.php:440 mod/content.php:743 mod/settings.php:711 -#: mod/photos.php:1715 object/Item.php:134 include/conversation.php:635 +#: mod/contacts.php:807 mod/contacts.php:878 +msgid "Archive" +msgstr "" + +#: mod/contacts.php:807 mod/contacts.php:878 +msgid "Unarchive" +msgstr "" + +#: mod/contacts.php:808 mod/group.php:171 mod/admin.php:1118 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:713 +#: mod/photos.php:1723 object/Item.php:134 include/conversation.php:635 msgid "Delete" msgstr "" -#: mod/contacts.php:837 +#: mod/contacts.php:821 include/identity.php:677 include/nav.php:75 +msgid "Status" +msgstr "" + +#: mod/contacts.php:824 include/identity.php:680 +msgid "Status Messages and Posts" +msgstr "" + +#: mod/contacts.php:829 mod/profperm.php:104 mod/newmember.php:32 +#: include/identity.php:569 include/identity.php:655 include/identity.php:685 +#: include/nav.php:76 view/theme/diabook/theme.php:124 +msgid "Profile" +msgstr "" + +#: mod/contacts.php:832 include/identity.php:688 +msgid "Profile Details" +msgstr "" + +#: mod/contacts.php:843 +msgid "View all contacts" +msgstr "" + +#: mod/contacts.php:849 mod/common.php:135 +msgid "Common Friends" +msgstr "" + +#: mod/contacts.php:852 +msgid "View all common friends" +msgstr "" + +#: mod/contacts.php:856 +msgid "Repair" +msgstr "" + +#: mod/contacts.php:859 +msgid "Advanced Contact Settings" +msgstr "" + +#: mod/contacts.php:867 +msgid "Toggle Blocked status" +msgstr "" + +#: mod/contacts.php:874 +msgid "Toggle Ignored status" +msgstr "" + +#: mod/contacts.php:881 +msgid "Toggle Archive status" +msgstr "" + +#: mod/contacts.php:949 msgid "Mutual Friendship" msgstr "" -#: mod/contacts.php:841 +#: mod/contacts.php:953 msgid "is a fan of yours" msgstr "" -#: mod/contacts.php:845 +#: mod/contacts.php:957 msgid "you are a fan of" msgstr "" -#: mod/contacts.php:862 mod/nogroup.php:42 +#: mod/contacts.php:978 mod/nogroup.php:42 msgid "Edit contact" msgstr "" @@ -489,13 +540,7 @@ msgstr "" msgid "Profile Visibility Editor" msgstr "" -#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:542 -#: include/identity.php:628 include/identity.php:658 include/nav.php:76 -#: view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "" - -#: mod/profperm.php:106 mod/group.php:222 +#: mod/profperm.php:106 mod/group.php:223 msgid "Click on a contact to add or remove." msgstr "" @@ -508,14 +553,14 @@ msgid "All Contacts (with secure profile access)" msgstr "" #: mod/display.php:82 mod/display.php:283 mod/display.php:500 -#: mod/viewsrc.php:15 mod/admin.php:196 mod/admin.php:1160 mod/admin.php:1381 -#: mod/notice.php:15 include/items.php:4832 +#: mod/viewsrc.php:15 mod/admin.php:196 mod/admin.php:1163 mod/admin.php:1384 +#: mod/notice.php:15 include/items.php:4858 msgid "Item not found." msgstr "" -#: mod/display.php:211 mod/videos.php:189 mod/viewcontacts.php:19 +#: mod/display.php:211 mod/videos.php:197 mod/viewcontacts.php:35 #: mod/community.php:18 mod/dfrn_request.php:779 mod/search.php:93 -#: mod/search.php:99 mod/directory.php:37 mod/photos.php:968 +#: mod/search.php:99 mod/directory.php:37 mod/photos.php:976 msgid "Public access denied." msgstr "" @@ -558,7 +603,7 @@ msgid "" "join." msgstr "" -#: mod/newmember.php:22 mod/admin.php:1212 mod/admin.php:1457 +#: mod/newmember.php:22 mod/admin.php:1215 mod/admin.php:1460 #: mod/settings.php:99 include/nav.php:182 view/theme/diabook/theme.php:544 #: view/theme/diabook/theme.php:648 msgid "Settings" @@ -682,7 +727,7 @@ msgid "" "hours." msgstr "" -#: mod/newmember.php:66 include/group.php:283 +#: mod/newmember.php:66 include/group.php:283 addons-extra/groups/groups.php:19 msgid "Groups" msgstr "" @@ -741,9 +786,9 @@ msgstr "" #: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 #: mod/profile_photo.php:210 mod/profile_photo.php:302 -#: mod/profile_photo.php:311 mod/photos.php:70 mod/photos.php:184 -#: mod/photos.php:767 mod/photos.php:1237 mod/photos.php:1260 -#: mod/photos.php:1854 include/user.php:345 include/user.php:352 +#: mod/profile_photo.php:311 mod/photos.php:78 mod/photos.php:192 +#: mod/photos.php:775 mod/photos.php:1245 mod/photos.php:1268 +#: mod/photos.php:1862 include/user.php:345 include/user.php:352 #: include/user.php:359 view/theme/diabook/theme.php:500 msgid "Profile Photos" msgstr "" @@ -764,12 +809,12 @@ msgstr "" msgid "Unable to process image" msgstr "" -#: mod/profile_photo.php:150 mod/wall_upload.php:151 mod/photos.php:803 +#: mod/profile_photo.php:150 mod/wall_upload.php:151 mod/photos.php:811 #, php-format msgid "Image exceeds size limit of %s" msgstr "" -#: mod/profile_photo.php:159 mod/wall_upload.php:183 mod/photos.php:843 +#: mod/profile_photo.php:159 mod/wall_upload.php:183 mod/photos.php:851 msgid "Unable to process image." msgstr "" @@ -813,13 +858,13 @@ msgstr "" msgid "Image uploaded successfully." msgstr "" -#: mod/profile_photo.php:307 mod/wall_upload.php:216 mod/photos.php:870 +#: mod/profile_photo.php:307 mod/wall_upload.php:216 mod/photos.php:878 msgid "Image upload failed." msgstr "" #: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 #: include/conversation.php:130 include/conversation.php:266 -#: include/text.php:1995 include/diaspora.php:2140 +#: include/text.php:1993 include/diaspora.php:2146 #: view/theme/diabook/theme.php:471 msgid "photo" msgstr "" @@ -827,8 +872,8 @@ msgstr "" #: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 mod/like.php:346 #: include/conversation.php:125 include/conversation.php:134 #: include/conversation.php:261 include/conversation.php:270 -#: include/diaspora.php:2140 view/theme/diabook/theme.php:466 -#: view/theme/diabook/theme.php:475 +#: include/diaspora.php:2146 addons-extra/fbgroup/fbgroup.php:1441 +#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 msgid "status" msgstr "" @@ -897,7 +942,8 @@ msgstr "" msgid "- select -" msgstr "" -#: mod/filer.php:31 mod/editpost.php:108 mod/notes.php:61 include/text.php:1004 +#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:61 include/text.php:1004 +#: addons-extra/fbgroup/fbgroup.php:320 msgid "Save" msgstr "" @@ -930,11 +976,11 @@ msgstr "" msgid "Does %s know you?" msgstr "" -#: mod/follow.php:105 mod/settings.php:1091 mod/settings.php:1097 -#: mod/settings.php:1105 mod/settings.php:1109 mod/settings.php:1114 -#: mod/settings.php:1120 mod/settings.php:1126 mod/settings.php:1132 -#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160 -#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:850 +#: mod/follow.php:105 mod/settings.php:1094 mod/settings.php:1100 +#: mod/settings.php:1108 mod/settings.php:1112 mod/settings.php:1117 +#: mod/settings.php:1123 mod/settings.php:1129 mod/settings.php:1135 +#: mod/settings.php:1161 mod/settings.php:1162 mod/settings.php:1163 +#: mod/settings.php:1164 mod/settings.php:1165 mod/dfrn_request.php:850 #: mod/register.php:239 mod/profiles.php:658 mod/profiles.php:662 #: mod/profiles.php:687 mod/api.php:106 msgid "No" @@ -948,21 +994,6 @@ msgstr "" msgid "Your Identity Address:" msgstr "" -#: mod/follow.php:125 mod/notifications.php:244 mod/events.php:566 -#: mod/directory.php:139 include/identity.php:278 include/bb2diaspora.php:170 -#: include/event.php:36 include/event.php:60 -msgid "Location:" -msgstr "" - -#: mod/follow.php:127 mod/notifications.php:246 mod/directory.php:147 -#: include/identity.php:287 include/identity.php:594 -msgid "About:" -msgstr "" - -#: mod/follow.php:129 mod/notifications.php:248 include/identity.php:588 -msgid "Tags:" -msgstr "" - #: mod/follow.php:162 msgid "Contact added" msgstr "" @@ -1051,6 +1082,10 @@ msgstr "" msgid "Members" msgstr "" +#: mod/group.php:193 mod/network.php:563 mod/content.php:130 +msgid "Group is empty" +msgstr "" + #: mod/apps.php:7 index.php:225 msgid "You must be logged in to use addons. " msgstr "" @@ -1069,7 +1104,7 @@ msgid "Profile not found." msgstr "" #: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/crepair.php:134 +#: mod/crepair.php:131 msgid "Contact not found." msgstr "" @@ -1149,7 +1184,7 @@ msgstr "" msgid "Unable to update your contact profile details on our system" msgstr "" -#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:734 include/items.php:4244 +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:734 include/items.php:4270 msgid "[Name Withheld]" msgstr "" @@ -1158,7 +1193,7 @@ msgstr "" msgid "%1$s has joined %2$s" msgstr "" -#: mod/profile.php:21 include/identity.php:82 +#: mod/profile.php:21 include/identity.php:52 msgid "Requested profile is not available." msgstr "" @@ -1166,35 +1201,35 @@ msgstr "" msgid "Tips for New Members" msgstr "" -#: mod/videos.php:115 +#: mod/videos.php:123 msgid "Do you really want to delete this video?" msgstr "" -#: mod/videos.php:120 +#: mod/videos.php:128 msgid "Delete Video" msgstr "" -#: mod/videos.php:199 +#: mod/videos.php:207 msgid "No videos selected" msgstr "" -#: mod/videos.php:300 mod/photos.php:1079 +#: mod/videos.php:308 mod/photos.php:1087 msgid "Access to this item is restricted." msgstr "" -#: mod/videos.php:375 include/text.php:1465 +#: mod/videos.php:383 include/text.php:1465 msgid "View Video" msgstr "" -#: mod/videos.php:382 mod/photos.php:1882 +#: mod/videos.php:390 mod/photos.php:1890 msgid "View Album" msgstr "" -#: mod/videos.php:391 +#: mod/videos.php:399 msgid "Recent Videos" msgstr "" -#: mod/videos.php:393 +#: mod/videos.php:401 msgid "Upload New Videos" msgstr "" @@ -1276,7 +1311,7 @@ msgid "" "Password reset failed." msgstr "" -#: mod/lostpass.php:109 boot.php:1295 +#: mod/lostpass.php:109 boot.php:1310 msgid "Password Reset" msgstr "" @@ -1353,11 +1388,11 @@ msgid "Reset" msgstr "" #: mod/like.php:170 include/conversation.php:122 include/conversation.php:258 -#: include/text.php:1993 view/theme/diabook/theme.php:463 +#: include/text.php:1991 view/theme/diabook/theme.php:463 msgid "event" msgstr "" -#: mod/like.php:187 include/conversation.php:141 include/diaspora.php:2156 +#: mod/like.php:187 include/conversation.php:141 include/diaspora.php:2162 #: view/theme/diabook/theme.php:480 #, php-format msgid "%1$s likes %2$s's %3$s" @@ -1383,31 +1418,22 @@ msgstr "" msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: mod/ping.php:273 +#: mod/ping.php:265 msgid "{0} wants to be your friend" msgstr "" -#: mod/ping.php:288 +#: mod/ping.php:280 msgid "{0} sent you a message" msgstr "" -#: mod/ping.php:303 +#: mod/ping.php:295 msgid "{0} requested registration" msgstr "" -#: mod/viewcontacts.php:52 +#: mod/viewcontacts.php:72 msgid "No contacts." msgstr "" -#: mod/viewcontacts.php:85 mod/dirfind.php:208 mod/network.php:596 -#: mod/allfriends.php:79 mod/match.php:82 mod/common.php:122 mod/suggest.php:95 -msgid "Forum" -msgstr "" - -#: mod/viewcontacts.php:96 include/text.php:921 -msgid "View Contacts" -msgstr "" - #: mod/notifications.php:29 msgid "Invalid request identifier." msgstr "" @@ -1466,7 +1492,7 @@ msgstr "" msgid "if applicable" msgstr "" -#: mod/notifications.php:176 mod/notifications.php:257 mod/admin.php:1113 +#: mod/notifications.php:176 mod/notifications.php:257 mod/admin.php:1116 msgid "Approve" msgstr "" @@ -1516,8 +1542,8 @@ msgstr "" msgid "New Follower" msgstr "" -#: mod/notifications.php:250 mod/directory.php:141 include/identity.php:280 -#: include/identity.php:553 +#: mod/notifications.php:250 mod/directory.php:147 include/identity.php:306 +#: include/identity.php:580 msgid "Gender:" msgstr "" @@ -1710,18 +1736,18 @@ msgid "Your message:" msgstr "" #: mod/message.php:339 mod/message.php:523 mod/wallmessage.php:154 -#: mod/editpost.php:109 include/conversation.php:1184 +#: mod/editpost.php:110 include/conversation.php:1184 msgid "Upload photo" msgstr "" #: mod/message.php:340 mod/message.php:524 mod/wallmessage.php:155 -#: mod/editpost.php:113 include/conversation.php:1188 +#: mod/editpost.php:114 include/conversation.php:1188 msgid "Insert web link" msgstr "" #: mod/message.php:341 mod/message.php:526 mod/content.php:501 -#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:123 -#: mod/photos.php:1602 object/Item.php:396 include/conversation.php:713 +#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124 +#: mod/photos.php:1610 object/Item.php:396 include/conversation.php:713 #: include/conversation.php:1202 msgid "Please wait" msgstr "" @@ -1783,102 +1809,98 @@ msgstr[1] "" msgid "[Embedded content - reload page to view]" msgstr "" -#: mod/crepair.php:107 +#: mod/crepair.php:104 msgid "Contact settings applied." msgstr "" -#: mod/crepair.php:109 +#: mod/crepair.php:106 msgid "Contact update failed." msgstr "" -#: mod/crepair.php:140 +#: mod/crepair.php:137 msgid "" "WARNING: This is highly advanced and if you enter incorrect " "information your communications with this contact may stop working." msgstr "" -#: mod/crepair.php:141 +#: mod/crepair.php:138 msgid "" "Please use your browser 'Back' button now if you are " "uncertain what to do on this page." msgstr "" -#: mod/crepair.php:154 mod/crepair.php:156 +#: mod/crepair.php:151 mod/crepair.php:153 msgid "No mirroring" msgstr "" -#: mod/crepair.php:154 +#: mod/crepair.php:151 msgid "Mirror as forwarded posting" msgstr "" -#: mod/crepair.php:154 mod/crepair.php:156 +#: mod/crepair.php:151 mod/crepair.php:153 msgid "Mirror as my own posting" msgstr "" -#: mod/crepair.php:162 -msgid "Repair Contact Settings" -msgstr "" - -#: mod/crepair.php:166 +#: mod/crepair.php:167 msgid "Return to contact editor" msgstr "" -#: mod/crepair.php:168 +#: mod/crepair.php:169 msgid "Refetch contact data" msgstr "" -#: mod/crepair.php:169 mod/admin.php:1111 mod/admin.php:1123 mod/admin.php:1124 -#: mod/admin.php:1137 mod/settings.php:650 mod/settings.php:676 +#: mod/crepair.php:170 mod/admin.php:1114 mod/admin.php:1126 mod/admin.php:1127 +#: mod/admin.php:1140 mod/settings.php:652 mod/settings.php:678 msgid "Name" msgstr "" -#: mod/crepair.php:170 +#: mod/crepair.php:171 msgid "Account Nickname" msgstr "" -#: mod/crepair.php:171 +#: mod/crepair.php:172 msgid "@Tagname - overrides Name/Nickname" msgstr "" -#: mod/crepair.php:172 +#: mod/crepair.php:173 msgid "Account URL" msgstr "" -#: mod/crepair.php:173 +#: mod/crepair.php:174 msgid "Friend Request URL" msgstr "" -#: mod/crepair.php:174 +#: mod/crepair.php:175 msgid "Friend Confirm URL" msgstr "" -#: mod/crepair.php:175 +#: mod/crepair.php:176 msgid "Notification Endpoint URL" msgstr "" -#: mod/crepair.php:176 +#: mod/crepair.php:177 msgid "Poll/Feed URL" msgstr "" -#: mod/crepair.php:177 +#: mod/crepair.php:178 msgid "New photo from this URL" msgstr "" -#: mod/crepair.php:178 +#: mod/crepair.php:179 msgid "Remote Self" msgstr "" -#: mod/crepair.php:181 +#: mod/crepair.php:182 msgid "Mirror postings from this contact" msgstr "" -#: mod/crepair.php:183 +#: mod/crepair.php:184 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "" -#: mod/bookmarklet.php:12 boot.php:1281 include/nav.php:91 +#: mod/bookmarklet.php:12 boot.php:1296 include/nav.php:91 msgid "Login" msgstr "" @@ -1890,13 +1912,13 @@ msgstr "" msgid "Access denied." msgstr "" -#: mod/dirfind.php:188 mod/allfriends.php:82 mod/match.php:85 -#: mod/suggest.php:98 include/contact_widgets.php:10 include/identity.php:193 +#: mod/dirfind.php:188 mod/allfriends.php:75 mod/match.php:85 +#: mod/suggest.php:98 include/contact_widgets.php:10 include/identity.php:209 msgid "Connect" msgstr "" -#: mod/dirfind.php:189 mod/allfriends.php:66 mod/match.php:70 -#: mod/directory.php:156 mod/suggest.php:81 include/Contact.php:307 +#: mod/dirfind.php:189 mod/allfriends.php:59 mod/match.php:70 +#: mod/directory.php:162 mod/suggest.php:81 include/Contact.php:307 #: include/Contact.php:320 include/Contact.php:362 include/conversation.php:912 #: include/conversation.php:926 msgid "View Profile" @@ -1911,14 +1933,14 @@ msgstr "" msgid "No matches" msgstr "" -#: mod/fbrowser.php:32 include/identity.php:666 include/nav.php:77 +#: mod/fbrowser.php:32 include/identity.php:693 include/nav.php:77 #: view/theme/diabook/theme.php:126 msgid "Photos" msgstr "" -#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:54 mod/photos.php:184 -#: mod/photos.php:1111 mod/photos.php:1237 mod/photos.php:1260 -#: mod/photos.php:1830 mod/photos.php:1842 view/theme/diabook/theme.php:499 +#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:62 mod/photos.php:192 +#: mod/photos.php:1119 mod/photos.php:1245 mod/photos.php:1268 +#: mod/photos.php:1838 mod/photos.php:1850 view/theme/diabook/theme.php:499 msgid "Contact Photos" msgstr "" @@ -1934,19 +1956,19 @@ msgstr "" msgid "Theme settings updated." msgstr "" -#: mod/admin.php:127 mod/admin.php:711 +#: mod/admin.php:127 mod/admin.php:713 msgid "Site" msgstr "" -#: mod/admin.php:128 mod/admin.php:655 mod/admin.php:1106 mod/admin.php:1121 +#: mod/admin.php:128 mod/admin.php:657 mod/admin.php:1109 mod/admin.php:1124 msgid "Users" msgstr "" -#: mod/admin.php:129 mod/admin.php:1210 mod/admin.php:1270 mod/settings.php:66 +#: mod/admin.php:129 mod/admin.php:1213 mod/admin.php:1273 mod/settings.php:66 msgid "Plugins" msgstr "" -#: mod/admin.php:130 mod/admin.php:1455 mod/admin.php:1506 +#: mod/admin.php:130 mod/admin.php:1458 mod/admin.php:1509 msgid "Themes" msgstr "" @@ -1958,7 +1980,7 @@ msgstr "" msgid "Inspect Queue" msgstr "" -#: mod/admin.php:147 mod/admin.php:156 mod/admin.php:1594 +#: mod/admin.php:147 mod/admin.php:156 mod/admin.php:1597 msgid "Logs" msgstr "" @@ -1986,9 +2008,9 @@ msgstr "" msgid "User registrations waiting for confirmation" msgstr "" -#: mod/admin.php:222 mod/admin.php:272 mod/admin.php:710 mod/admin.php:1105 -#: mod/admin.php:1209 mod/admin.php:1269 mod/admin.php:1454 mod/admin.php:1505 -#: mod/admin.php:1593 +#: mod/admin.php:222 mod/admin.php:272 mod/admin.php:712 mod/admin.php:1108 +#: mod/admin.php:1212 mod/admin.php:1272 mod/admin.php:1457 mod/admin.php:1508 +#: mod/admin.php:1596 msgid "Administration" msgstr "" @@ -2019,19 +2041,19 @@ msgid "" "eventually deleted if the delivery fails permanently." msgstr "" -#: mod/admin.php:243 mod/admin.php:1059 +#: mod/admin.php:243 mod/admin.php:1062 msgid "Normal Account" msgstr "" -#: mod/admin.php:244 mod/admin.php:1060 +#: mod/admin.php:244 mod/admin.php:1063 msgid "Soapbox Account" msgstr "" -#: mod/admin.php:245 mod/admin.php:1061 +#: mod/admin.php:245 mod/admin.php:1064 msgid "Community/Celebrity Account" msgstr "" -#: mod/admin.php:246 mod/admin.php:1062 +#: mod/admin.php:246 mod/admin.php:1065 msgid "Automatic Friend Account" msgstr "" @@ -2071,625 +2093,635 @@ msgstr "" msgid "Can not parse base url. Must have at least ://" msgstr "" -#: mod/admin.php:587 +#: mod/admin.php:589 msgid "RINO2 needs mcrypt php extension to work." msgstr "" -#: mod/admin.php:595 +#: mod/admin.php:597 msgid "Site settings updated." msgstr "" -#: mod/admin.php:619 mod/settings.php:901 +#: mod/admin.php:621 mod/settings.php:903 msgid "No special theme for mobile devices" msgstr "" -#: mod/admin.php:638 +#: mod/admin.php:640 msgid "No community page" msgstr "" -#: mod/admin.php:639 +#: mod/admin.php:641 msgid "Public postings from users of this site" msgstr "" -#: mod/admin.php:640 +#: mod/admin.php:642 msgid "Global community page" msgstr "" -#: mod/admin.php:646 +#: mod/admin.php:648 msgid "At post arrival" msgstr "" -#: mod/admin.php:647 include/contact_selectors.php:56 +#: mod/admin.php:649 include/contact_selectors.php:56 msgid "Frequently" msgstr "" -#: mod/admin.php:648 include/contact_selectors.php:57 +#: mod/admin.php:650 include/contact_selectors.php:57 msgid "Hourly" msgstr "" -#: mod/admin.php:649 include/contact_selectors.php:58 +#: mod/admin.php:651 include/contact_selectors.php:58 msgid "Twice daily" msgstr "" -#: mod/admin.php:650 include/contact_selectors.php:59 +#: mod/admin.php:652 include/contact_selectors.php:59 msgid "Daily" msgstr "" -#: mod/admin.php:656 +#: mod/admin.php:658 msgid "Users, Global Contacts" msgstr "" -#: mod/admin.php:657 +#: mod/admin.php:659 msgid "Users, Global Contacts/fallback" msgstr "" -#: mod/admin.php:661 +#: mod/admin.php:663 msgid "One month" msgstr "" -#: mod/admin.php:662 +#: mod/admin.php:664 msgid "Three months" msgstr "" -#: mod/admin.php:663 +#: mod/admin.php:665 msgid "Half a year" msgstr "" -#: mod/admin.php:664 +#: mod/admin.php:666 msgid "One year" msgstr "" -#: mod/admin.php:669 +#: mod/admin.php:671 msgid "Multi user instance" msgstr "" -#: mod/admin.php:692 +#: mod/admin.php:694 msgid "Closed" msgstr "" -#: mod/admin.php:693 +#: mod/admin.php:695 msgid "Requires approval" msgstr "" -#: mod/admin.php:694 +#: mod/admin.php:696 msgid "Open" msgstr "" -#: mod/admin.php:698 +#: mod/admin.php:700 msgid "No SSL policy, links will track page SSL state" msgstr "" -#: mod/admin.php:699 +#: mod/admin.php:701 msgid "Force all links to use SSL" msgstr "" -#: mod/admin.php:700 +#: mod/admin.php:702 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "" -#: mod/admin.php:712 mod/admin.php:1271 mod/admin.php:1507 mod/admin.php:1595 -#: mod/settings.php:648 mod/settings.php:758 mod/settings.php:802 -#: mod/settings.php:871 mod/settings.php:957 mod/settings.php:1192 +#: mod/admin.php:714 mod/admin.php:1274 mod/admin.php:1510 mod/admin.php:1598 +#: mod/settings.php:650 mod/settings.php:760 mod/settings.php:804 +#: mod/settings.php:873 mod/settings.php:960 mod/settings.php:1195 msgid "Save Settings" msgstr "" -#: mod/admin.php:713 mod/register.php:263 +#: mod/admin.php:715 mod/register.php:263 msgid "Registration" msgstr "" -#: mod/admin.php:714 +#: mod/admin.php:716 msgid "File upload" msgstr "" -#: mod/admin.php:715 +#: mod/admin.php:717 msgid "Policies" msgstr "" -#: mod/admin.php:716 +#: mod/admin.php:718 msgid "Advanced" msgstr "" -#: mod/admin.php:717 +#: mod/admin.php:719 msgid "Auto Discovered Contact Directory" msgstr "" -#: mod/admin.php:718 +#: mod/admin.php:720 msgid "Performance" msgstr "" -#: mod/admin.php:719 +#: mod/admin.php:721 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "" -#: mod/admin.php:722 +#: mod/admin.php:724 msgid "Site name" msgstr "" -#: mod/admin.php:723 +#: mod/admin.php:725 msgid "Host name" msgstr "" -#: mod/admin.php:724 +#: mod/admin.php:726 msgid "Sender Email" msgstr "" -#: mod/admin.php:724 +#: mod/admin.php:726 msgid "" "The email address your server shall use to send notification emails from." msgstr "" -#: mod/admin.php:725 +#: mod/admin.php:727 msgid "Banner/Logo" msgstr "" -#: mod/admin.php:726 +#: mod/admin.php:728 msgid "Shortcut icon" msgstr "" -#: mod/admin.php:726 +#: mod/admin.php:728 msgid "Link to an icon that will be used for browsers." msgstr "" -#: mod/admin.php:727 +#: mod/admin.php:729 msgid "Touch icon" msgstr "" -#: mod/admin.php:727 +#: mod/admin.php:729 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: mod/admin.php:728 +#: mod/admin.php:730 msgid "Additional Info" msgstr "" -#: mod/admin.php:728 +#: mod/admin.php:730 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/siteinfo." msgstr "" -#: mod/admin.php:729 +#: mod/admin.php:731 msgid "System language" msgstr "" -#: mod/admin.php:730 +#: mod/admin.php:732 msgid "System theme" msgstr "" -#: mod/admin.php:730 +#: mod/admin.php:732 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: mod/admin.php:731 +#: mod/admin.php:733 msgid "Mobile system theme" msgstr "" -#: mod/admin.php:731 +#: mod/admin.php:733 msgid "Theme for mobile devices" msgstr "" -#: mod/admin.php:732 +#: mod/admin.php:734 msgid "SSL link policy" msgstr "" -#: mod/admin.php:732 +#: mod/admin.php:734 msgid "Determines whether generated links should be forced to use SSL" msgstr "" -#: mod/admin.php:733 +#: mod/admin.php:735 msgid "Force SSL" msgstr "" -#: mod/admin.php:733 +#: mod/admin.php:735 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead " "to endless loops." msgstr "" -#: mod/admin.php:734 +#: mod/admin.php:736 msgid "Old style 'Share'" msgstr "" -#: mod/admin.php:734 +#: mod/admin.php:736 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "" -#: mod/admin.php:735 +#: mod/admin.php:737 msgid "Hide help entry from navigation menu" msgstr "" -#: mod/admin.php:735 +#: mod/admin.php:737 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "" -#: mod/admin.php:736 +#: mod/admin.php:738 msgid "Single user instance" msgstr "" -#: mod/admin.php:736 +#: mod/admin.php:738 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: mod/admin.php:737 +#: mod/admin.php:739 msgid "Maximum image size" msgstr "" -#: mod/admin.php:737 +#: mod/admin.php:739 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "" -#: mod/admin.php:738 +#: mod/admin.php:740 msgid "Maximum image length" msgstr "" -#: mod/admin.php:738 +#: mod/admin.php:740 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "" -#: mod/admin.php:739 +#: mod/admin.php:741 msgid "JPEG image quality" msgstr "" -#: mod/admin.php:739 +#: mod/admin.php:741 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "" -#: mod/admin.php:741 +#: mod/admin.php:743 msgid "Register policy" msgstr "" -#: mod/admin.php:742 +#: mod/admin.php:744 msgid "Maximum Daily Registrations" msgstr "" -#: mod/admin.php:742 +#: mod/admin.php:744 msgid "" "If registration is permitted above, this sets the maximum number of new user " "registrations to accept per day. If register is set to closed, this setting " "has no effect." msgstr "" -#: mod/admin.php:743 +#: mod/admin.php:745 msgid "Register text" msgstr "" -#: mod/admin.php:743 +#: mod/admin.php:745 msgid "Will be displayed prominently on the registration page." msgstr "" -#: mod/admin.php:744 +#: mod/admin.php:746 msgid "Accounts abandoned after x days" msgstr "" -#: mod/admin.php:744 +#: mod/admin.php:746 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: mod/admin.php:745 +#: mod/admin.php:747 msgid "Allowed friend domains" msgstr "" -#: mod/admin.php:745 +#: mod/admin.php:747 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: mod/admin.php:746 +#: mod/admin.php:748 msgid "Allowed email domains" msgstr "" -#: mod/admin.php:746 +#: mod/admin.php:748 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 "" -#: mod/admin.php:747 +#: mod/admin.php:749 msgid "Block public" msgstr "" -#: mod/admin.php:747 +#: mod/admin.php:749 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "" -#: mod/admin.php:748 +#: mod/admin.php:750 msgid "Force publish" msgstr "" -#: mod/admin.php:748 +#: mod/admin.php:750 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: mod/admin.php:749 +#: mod/admin.php:751 msgid "Global directory URL" msgstr "" -#: mod/admin.php:749 +#: mod/admin.php:751 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "" -#: mod/admin.php:750 +#: mod/admin.php:752 msgid "Allow threaded items" msgstr "" -#: mod/admin.php:750 +#: mod/admin.php:752 msgid "Allow infinite level threading for items on this site." msgstr "" -#: mod/admin.php:751 +#: mod/admin.php:753 msgid "Private posts by default for new users" msgstr "" -#: mod/admin.php:751 +#: mod/admin.php:753 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "" -#: mod/admin.php:752 +#: mod/admin.php:754 msgid "Don't include post content in email notifications" msgstr "" -#: mod/admin.php:752 +#: mod/admin.php:754 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "" -#: mod/admin.php:753 +#: mod/admin.php:755 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: mod/admin.php:753 +#: mod/admin.php:755 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: mod/admin.php:754 +#: mod/admin.php:756 msgid "Don't embed private images in posts" msgstr "" -#: mod/admin.php:754 +#: mod/admin.php:756 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " "photos will have to authenticate and load each image, which may take a while." msgstr "" -#: mod/admin.php:755 +#: mod/admin.php:757 msgid "Allow Users to set remote_self" msgstr "" -#: mod/admin.php:755 +#: mod/admin.php:757 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "" -#: mod/admin.php:756 +#: mod/admin.php:758 msgid "Block multiple registrations" msgstr "" -#: mod/admin.php:756 +#: mod/admin.php:758 msgid "Disallow users to register additional accounts for use as pages." msgstr "" -#: mod/admin.php:757 +#: mod/admin.php:759 msgid "OpenID support" msgstr "" -#: mod/admin.php:757 +#: mod/admin.php:759 msgid "OpenID support for registration and logins." msgstr "" -#: mod/admin.php:758 +#: mod/admin.php:760 msgid "Fullname check" msgstr "" -#: mod/admin.php:758 +#: mod/admin.php:760 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "" -#: mod/admin.php:759 +#: mod/admin.php:761 msgid "UTF-8 Regular expressions" msgstr "" -#: mod/admin.php:759 +#: mod/admin.php:761 msgid "Use PHP UTF8 regular expressions" msgstr "" -#: mod/admin.php:760 +#: mod/admin.php:762 msgid "Community Page Style" msgstr "" -#: mod/admin.php:760 +#: mod/admin.php:762 msgid "" "Type of community page to show. 'Global community' shows every public " "posting from an open distributed network that arrived on this server." msgstr "" -#: mod/admin.php:761 +#: mod/admin.php:763 msgid "Posts per user on community page" msgstr "" -#: mod/admin.php:761 +#: mod/admin.php:763 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" msgstr "" -#: mod/admin.php:762 +#: mod/admin.php:764 msgid "Enable OStatus support" msgstr "" -#: mod/admin.php:762 +#: mod/admin.php:764 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "" -#: mod/admin.php:763 +#: mod/admin.php:765 msgid "OStatus conversation completion interval" msgstr "" -#: mod/admin.php:763 +#: mod/admin.php:765 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "" -#: mod/admin.php:764 +#: mod/admin.php:766 msgid "OStatus support can only be enabled if threading is enabled." msgstr "" -#: mod/admin.php:766 +#: mod/admin.php:768 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub " "directory." msgstr "" -#: mod/admin.php:767 +#: mod/admin.php:769 msgid "Enable Diaspora support" msgstr "" -#: mod/admin.php:767 +#: mod/admin.php:769 msgid "Provide built-in Diaspora network compatibility." msgstr "" -#: mod/admin.php:768 +#: mod/admin.php:770 msgid "Only allow Friendica contacts" msgstr "" -#: mod/admin.php:768 +#: mod/admin.php:770 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "" -#: mod/admin.php:769 +#: mod/admin.php:771 msgid "Verify SSL" msgstr "" -#: mod/admin.php:769 +#: mod/admin.php:771 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you " "cannot connect (at all) to self-signed SSL sites." msgstr "" -#: mod/admin.php:770 +#: mod/admin.php:772 msgid "Proxy user" msgstr "" -#: mod/admin.php:771 +#: mod/admin.php:773 msgid "Proxy URL" msgstr "" -#: mod/admin.php:772 +#: mod/admin.php:774 msgid "Network timeout" msgstr "" -#: mod/admin.php:772 +#: mod/admin.php:774 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: mod/admin.php:773 +#: mod/admin.php:775 msgid "Delivery interval" msgstr "" -#: mod/admin.php:773 +#: mod/admin.php:775 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 "" -#: mod/admin.php:774 +#: mod/admin.php:776 msgid "Poll interval" msgstr "" -#: mod/admin.php:774 +#: mod/admin.php:776 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "" -#: mod/admin.php:775 +#: mod/admin.php:777 msgid "Maximum Load Average" msgstr "" -#: mod/admin.php:775 +#: mod/admin.php:777 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "" -#: mod/admin.php:776 +#: mod/admin.php:778 msgid "Maximum Load Average (Frontend)" msgstr "" -#: mod/admin.php:776 +#: mod/admin.php:778 msgid "Maximum system load before the frontend quits service - default 50." msgstr "" -#: mod/admin.php:777 +#: mod/admin.php:779 msgid "Maximum table size for optimization" msgstr "" -#: mod/admin.php:777 +#: mod/admin.php:779 msgid "" "Maximum table size (in MB) for the automatic optimization - default 100 MB. " "Enter -1 to disable it." msgstr "" -#: mod/admin.php:779 +#: mod/admin.php:780 +msgid "Minimum level of fragmentation" +msgstr "" + +#: mod/admin.php:780 +msgid "" +"Minimum fragmenation level to start the automatic optimization - default " +"value is 30%." +msgstr "" + +#: mod/admin.php:782 msgid "Periodical check of global contacts" msgstr "" -#: mod/admin.php:779 +#: mod/admin.php:782 msgid "" "If enabled, the global contacts are checked periodically for missing or " "outdated data and the vitality of the contacts and servers." msgstr "" -#: mod/admin.php:780 +#: mod/admin.php:783 msgid "Days between requery" msgstr "" -#: mod/admin.php:780 +#: mod/admin.php:783 msgid "Number of days after which a server is requeried for his contacts." msgstr "" -#: mod/admin.php:781 +#: mod/admin.php:784 msgid "Discover contacts from other servers" msgstr "" -#: mod/admin.php:781 +#: mod/admin.php:784 msgid "" "Periodically query other servers for contacts. You can choose between " "'users': the users on the remote system, 'Global Contacts': active contacts " @@ -2699,32 +2731,32 @@ msgid "" "Global Contacts'." msgstr "" -#: mod/admin.php:782 +#: mod/admin.php:785 msgid "Timeframe for fetching global contacts" msgstr "" -#: mod/admin.php:782 +#: mod/admin.php:785 msgid "" "When the discovery is activated, this value defines the timeframe for the " "activity of the global contacts that are fetched from other servers." msgstr "" -#: mod/admin.php:783 +#: mod/admin.php:786 msgid "Search the local directory" msgstr "" -#: mod/admin.php:783 +#: mod/admin.php:786 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "" -#: mod/admin.php:785 +#: mod/admin.php:788 msgid "Publish server information" msgstr "" -#: mod/admin.php:785 +#: mod/admin.php:788 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -2732,204 +2764,204 @@ msgid "" "href='http://the-federation.info/'>the-federation.info for details." msgstr "" -#: mod/admin.php:787 +#: mod/admin.php:790 msgid "Use MySQL full text engine" msgstr "" -#: mod/admin.php:787 +#: mod/admin.php:790 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "" -#: mod/admin.php:788 +#: mod/admin.php:791 msgid "Suppress Language" msgstr "" -#: mod/admin.php:788 +#: mod/admin.php:791 msgid "Suppress language information in meta information about a posting." msgstr "" -#: mod/admin.php:789 +#: mod/admin.php:792 msgid "Suppress Tags" msgstr "" -#: mod/admin.php:789 +#: mod/admin.php:792 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: mod/admin.php:790 +#: mod/admin.php:793 msgid "Path to item cache" msgstr "" -#: mod/admin.php:790 +#: mod/admin.php:793 msgid "The item caches buffers generated bbcode and external images." msgstr "" -#: mod/admin.php:791 +#: mod/admin.php:794 msgid "Cache duration in seconds" msgstr "" -#: mod/admin.php:791 +#: mod/admin.php:794 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One " "day). To disable the item cache, set the value to -1." msgstr "" -#: mod/admin.php:792 +#: mod/admin.php:795 msgid "Maximum numbers of comments per post" msgstr "" -#: mod/admin.php:792 +#: mod/admin.php:795 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: mod/admin.php:793 +#: mod/admin.php:796 msgid "Path for lock file" msgstr "" -#: mod/admin.php:793 +#: mod/admin.php:796 msgid "" "The lock file is used to avoid multiple pollers at one time. Only define a " "folder here." msgstr "" -#: mod/admin.php:794 +#: mod/admin.php:797 msgid "Temp path" msgstr "" -#: mod/admin.php:794 +#: mod/admin.php:797 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "" -#: mod/admin.php:795 +#: mod/admin.php:798 msgid "Base path to installation" msgstr "" -#: mod/admin.php:795 +#: mod/admin.php:798 msgid "" "If the system cannot detect the correct path to your installation, enter the " "correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "" -#: mod/admin.php:796 +#: mod/admin.php:799 msgid "Disable picture proxy" msgstr "" -#: mod/admin.php:796 +#: mod/admin.php:799 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on " "systems with very low bandwith." msgstr "" -#: mod/admin.php:797 +#: mod/admin.php:800 msgid "Enable old style pager" msgstr "" -#: mod/admin.php:797 +#: mod/admin.php:800 msgid "" "The old style pager has page numbers but slows down massively the page speed." msgstr "" -#: mod/admin.php:798 +#: mod/admin.php:801 msgid "Only search in tags" msgstr "" -#: mod/admin.php:798 +#: mod/admin.php:801 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: mod/admin.php:800 +#: mod/admin.php:803 msgid "New base url" msgstr "" -#: mod/admin.php:800 +#: mod/admin.php:803 msgid "" "Change base url for this server. Sends relocate message to all DFRN contacts " "of all users." msgstr "" -#: mod/admin.php:802 +#: mod/admin.php:805 msgid "RINO Encryption" msgstr "" -#: mod/admin.php:802 +#: mod/admin.php:805 msgid "Encryption layer between nodes." msgstr "" -#: mod/admin.php:803 +#: mod/admin.php:806 msgid "Embedly API key" msgstr "" -#: mod/admin.php:803 +#: mod/admin.php:806 msgid "" "Embedly is used to fetch additional data for " "web pages. This is an optional parameter." msgstr "" -#: mod/admin.php:821 +#: mod/admin.php:824 msgid "Update has been marked successful" msgstr "" -#: mod/admin.php:829 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "" - #: mod/admin.php:832 #, php-format -msgid "Executing of database structure update %s failed with error: %s" +msgid "Database structure update %s was successfully applied." msgstr "" -#: mod/admin.php:844 +#: mod/admin.php:835 #, php-format -msgid "Executing %s failed with error: %s" +msgid "Executing of database structure update %s failed with error: %s" msgstr "" #: mod/admin.php:847 #, php-format +msgid "Executing %s failed with error: %s" +msgstr "" + +#: mod/admin.php:850 +#, php-format msgid "Update %s was successfully applied." msgstr "" -#: mod/admin.php:851 +#: mod/admin.php:854 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: mod/admin.php:853 +#: mod/admin.php:856 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: mod/admin.php:872 +#: mod/admin.php:875 msgid "No failed updates." msgstr "" -#: mod/admin.php:873 +#: mod/admin.php:876 msgid "Check database structure" msgstr "" -#: mod/admin.php:878 +#: mod/admin.php:881 msgid "Failed Updates" msgstr "" -#: mod/admin.php:879 +#: mod/admin.php:882 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "" -#: mod/admin.php:880 +#: mod/admin.php:883 msgid "Mark success (if update was manually applied)" msgstr "" -#: mod/admin.php:881 +#: mod/admin.php:884 msgid "Attempt to execute this update step automatically" msgstr "" -#: mod/admin.php:913 +#: mod/admin.php:916 #, php-format msgid "" "\n" @@ -2937,7 +2969,7 @@ msgid "" "\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: mod/admin.php:916 +#: mod/admin.php:919 #, php-format msgid "" "\n" @@ -2973,230 +3005,231 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "" -#: mod/admin.php:948 include/user.php:423 +#: mod/admin.php:951 include/user.php:423 #, php-format msgid "Registration details for %s" msgstr "" -#: mod/admin.php:960 +#: mod/admin.php:963 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "" msgstr[1] "" -#: mod/admin.php:967 +#: mod/admin.php:970 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "" msgstr[1] "" -#: mod/admin.php:1006 +#: mod/admin.php:1009 #, php-format msgid "User '%s' deleted" msgstr "" -#: mod/admin.php:1014 +#: mod/admin.php:1017 #, php-format msgid "User '%s' unblocked" msgstr "" -#: mod/admin.php:1014 +#: mod/admin.php:1017 #, php-format msgid "User '%s' blocked" msgstr "" -#: mod/admin.php:1107 +#: mod/admin.php:1110 msgid "Add User" msgstr "" -#: mod/admin.php:1108 +#: mod/admin.php:1111 msgid "select all" msgstr "" -#: mod/admin.php:1109 +#: mod/admin.php:1112 msgid "User registrations waiting for confirm" msgstr "" -#: mod/admin.php:1110 +#: mod/admin.php:1113 msgid "User waiting for permanent deletion" msgstr "" -#: mod/admin.php:1111 +#: mod/admin.php:1114 msgid "Request date" msgstr "" -#: mod/admin.php:1111 mod/admin.php:1123 mod/admin.php:1124 mod/admin.php:1139 +#: mod/admin.php:1114 mod/admin.php:1126 mod/admin.php:1127 mod/admin.php:1142 #: include/contact_selectors.php:79 include/contact_selectors.php:86 msgid "Email" msgstr "" -#: mod/admin.php:1112 +#: mod/admin.php:1115 msgid "No registrations." msgstr "" -#: mod/admin.php:1114 +#: mod/admin.php:1117 msgid "Deny" msgstr "" -#: mod/admin.php:1118 +#: mod/admin.php:1121 msgid "Site admin" msgstr "" -#: mod/admin.php:1119 +#: mod/admin.php:1122 msgid "Account expired" msgstr "" -#: mod/admin.php:1122 +#: mod/admin.php:1125 msgid "New User" msgstr "" -#: mod/admin.php:1123 mod/admin.php:1124 +#: mod/admin.php:1126 mod/admin.php:1127 msgid "Register date" msgstr "" -#: mod/admin.php:1123 mod/admin.php:1124 +#: mod/admin.php:1126 mod/admin.php:1127 msgid "Last login" msgstr "" -#: mod/admin.php:1123 mod/admin.php:1124 +#: mod/admin.php:1126 mod/admin.php:1127 msgid "Last item" msgstr "" -#: mod/admin.php:1123 +#: mod/admin.php:1126 msgid "Deleted since" msgstr "" -#: mod/admin.php:1124 mod/settings.php:41 +#: mod/admin.php:1127 mod/settings.php:41 msgid "Account" msgstr "" -#: mod/admin.php:1126 +#: mod/admin.php:1129 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: mod/admin.php:1127 +#: mod/admin.php:1130 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: mod/admin.php:1137 +#: mod/admin.php:1140 msgid "Name of the new user." msgstr "" -#: mod/admin.php:1138 +#: mod/admin.php:1141 msgid "Nickname" msgstr "" -#: mod/admin.php:1138 +#: mod/admin.php:1141 msgid "Nickname of the new user." msgstr "" -#: mod/admin.php:1139 +#: mod/admin.php:1142 msgid "Email address of the new user." msgstr "" -#: mod/admin.php:1172 +#: mod/admin.php:1175 #, php-format msgid "Plugin %s disabled." msgstr "" -#: mod/admin.php:1176 +#: mod/admin.php:1179 #, php-format msgid "Plugin %s enabled." msgstr "" -#: mod/admin.php:1186 mod/admin.php:1410 +#: mod/admin.php:1189 mod/admin.php:1413 msgid "Disable" msgstr "" -#: mod/admin.php:1188 mod/admin.php:1412 +#: mod/admin.php:1191 mod/admin.php:1415 msgid "Enable" msgstr "" -#: mod/admin.php:1211 mod/admin.php:1456 +#: mod/admin.php:1214 mod/admin.php:1459 msgid "Toggle" msgstr "" -#: mod/admin.php:1219 mod/admin.php:1466 +#: mod/admin.php:1222 mod/admin.php:1469 msgid "Author: " msgstr "" -#: mod/admin.php:1220 mod/admin.php:1467 +#: mod/admin.php:1223 mod/admin.php:1470 msgid "Maintainer: " msgstr "" -#: mod/admin.php:1272 +#: mod/admin.php:1275 +#: view/smarty3/compiled/f835364006028b1061f37be121c9bd9db5fa50a9.file.admin_plugins.tpl.php:42 msgid "Reload active plugins" msgstr "" -#: mod/admin.php:1370 +#: mod/admin.php:1373 msgid "No themes found." msgstr "" -#: mod/admin.php:1448 +#: mod/admin.php:1451 msgid "Screenshot" msgstr "" -#: mod/admin.php:1508 +#: mod/admin.php:1511 msgid "Reload active themes" msgstr "" -#: mod/admin.php:1512 +#: mod/admin.php:1515 msgid "[Experimental]" msgstr "" -#: mod/admin.php:1513 +#: mod/admin.php:1516 msgid "[Unsupported]" msgstr "" -#: mod/admin.php:1540 +#: mod/admin.php:1543 msgid "Log settings updated." msgstr "" -#: mod/admin.php:1596 +#: mod/admin.php:1599 msgid "Clear" msgstr "" -#: mod/admin.php:1602 +#: mod/admin.php:1605 msgid "Enable Debugging" msgstr "" -#: mod/admin.php:1603 +#: mod/admin.php:1606 msgid "Log file" msgstr "" -#: mod/admin.php:1603 +#: mod/admin.php:1606 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "" -#: mod/admin.php:1604 +#: mod/admin.php:1607 msgid "Log level" msgstr "" -#: mod/admin.php:1654 include/acl_selectors.php:348 +#: mod/admin.php:1657 include/acl_selectors.php:348 msgid "Close" msgstr "" -#: mod/admin.php:1660 +#: mod/admin.php:1663 msgid "FTP Host" msgstr "" -#: mod/admin.php:1661 +#: mod/admin.php:1664 msgid "FTP Path" msgstr "" -#: mod/admin.php:1662 +#: mod/admin.php:1665 msgid "FTP User" msgstr "" -#: mod/admin.php:1663 +#: mod/admin.php:1666 msgid "FTP Password" msgstr "" @@ -3277,10 +3310,6 @@ msgstr "" msgid "No such group" msgstr "" -#: mod/network.php:563 mod/content.php:130 -msgid "Group is empty" -msgstr "" - #: mod/network.php:574 mod/content.php:135 #, php-format msgid "Group: %s" @@ -3294,15 +3323,10 @@ msgstr "" msgid "Invalid contact." msgstr "" -#: mod/allfriends.php:45 +#: mod/allfriends.php:38 msgid "No friends to display." msgstr "" -#: mod/allfriends.php:92 -#, php-format -msgid "Friends of %s" -msgstr "" - #: mod/events.php:71 mod/events.php:73 msgid "Event can not end before it has started." msgstr "" @@ -3339,11 +3363,11 @@ msgstr "" msgid "Sat" msgstr "" -#: mod/events.php:208 mod/settings.php:936 include/text.php:1274 +#: mod/events.php:208 mod/settings.php:939 include/text.php:1274 msgid "Sunday" msgstr "" -#: mod/events.php:209 mod/settings.php:936 include/text.php:1274 +#: mod/events.php:209 mod/settings.php:939 include/text.php:1274 msgid "Monday" msgstr "" @@ -3487,7 +3511,7 @@ msgstr "" msgid "link to source" msgstr "" -#: mod/events.php:456 include/identity.php:686 include/nav.php:79 +#: mod/events.php:456 include/identity.php:713 include/nav.php:79 #: include/nav.php:140 view/theme/diabook/theme.php:127 msgid "Events" msgstr "" @@ -3544,8 +3568,8 @@ msgstr "" msgid "Share this event" msgstr "" -#: mod/events.php:572 mod/content.php:721 mod/editpost.php:144 -#: mod/photos.php:1623 mod/photos.php:1671 mod/photos.php:1759 +#: mod/events.php:572 mod/content.php:721 mod/editpost.php:145 +#: mod/photos.php:1631 mod/photos.php:1679 mod/photos.php:1767 #: object/Item.php:719 include/conversation.php:1217 msgid "Preview" msgstr "" @@ -3561,7 +3585,7 @@ msgid "" "code or the translation of Friendica. Thank you all!" msgstr "" -#: mod/content.php:439 mod/content.php:742 mod/photos.php:1714 +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1722 #: object/Item.php:133 include/conversation.php:634 msgid "Select" msgstr "" @@ -3590,23 +3614,23 @@ msgstr[0] "" msgstr[1] "" #: mod/content.php:607 object/Item.php:421 object/Item.php:434 -#: include/text.php:1999 +#: include/text.php:1997 msgid "comment" msgid_plural "comments" msgstr[0] "" msgstr[1] "" -#: mod/content.php:608 boot.php:773 object/Item.php:422 +#: mod/content.php:608 boot.php:788 object/Item.php:422 #: include/contact_widgets.php:242 include/forums.php:110 -#: include/items.php:5152 view/theme/vier/theme.php:264 +#: include/items.php:5178 view/theme/vier/theme.php:264 msgid "show more" msgstr "" -#: mod/content.php:622 mod/photos.php:1410 object/Item.php:117 +#: mod/content.php:622 mod/photos.php:1418 object/Item.php:117 msgid "Private Message" msgstr "" -#: mod/content.php:686 mod/photos.php:1599 object/Item.php:253 +#: mod/content.php:686 mod/photos.php:1607 object/Item.php:253 msgid "I like this (toggle)" msgstr "" @@ -3614,7 +3638,7 @@ msgstr "" msgid "like" msgstr "" -#: mod/content.php:687 mod/photos.php:1600 object/Item.php:254 +#: mod/content.php:687 mod/photos.php:1608 object/Item.php:254 msgid "I don't like this (toggle)" msgstr "" @@ -3630,13 +3654,13 @@ msgstr "" msgid "share" msgstr "" -#: mod/content.php:709 mod/photos.php:1619 mod/photos.php:1667 -#: mod/photos.php:1755 object/Item.php:707 +#: mod/content.php:709 mod/photos.php:1627 mod/photos.php:1675 +#: mod/photos.php:1763 object/Item.php:707 msgid "This is you" msgstr "" -#: mod/content.php:711 mod/photos.php:1621 mod/photos.php:1669 -#: mod/photos.php:1757 boot.php:772 object/Item.php:393 object/Item.php:709 +#: mod/content.php:711 mod/photos.php:1629 mod/photos.php:1677 +#: mod/photos.php:1765 boot.php:787 object/Item.php:393 object/Item.php:709 msgid "Comment" msgstr "" @@ -3672,7 +3696,7 @@ msgstr "" msgid "Video" msgstr "" -#: mod/content.php:730 mod/settings.php:710 object/Item.php:122 +#: mod/content.php:730 mod/settings.php:712 object/Item.php:122 #: object/Item.php:124 msgid "Edit" msgstr "" @@ -4135,11 +4159,11 @@ msgstr "" msgid "Community" msgstr "" -#: mod/community.php:62 mod/community.php:71 mod/search.php:218 +#: mod/community.php:62 mod/community.php:71 mod/search.php:228 msgid "No results." msgstr "" -#: mod/settings.php:34 mod/photos.php:109 +#: mod/settings.php:34 mod/photos.php:117 msgid "everybody" msgstr "" @@ -4151,7 +4175,7 @@ msgstr "" msgid "Display" msgstr "" -#: mod/settings.php:60 mod/settings.php:853 +#: mod/settings.php:60 mod/settings.php:855 msgid "Social Networks" msgstr "" @@ -4187,654 +4211,656 @@ msgstr "" msgid "Features updated" msgstr "" -#: mod/settings.php:341 +#: mod/settings.php:343 msgid "Relocate message has been send to your contacts" msgstr "" -#: mod/settings.php:355 include/user.php:39 +#: mod/settings.php:357 include/user.php:39 msgid "Passwords do not match. Password unchanged." msgstr "" -#: mod/settings.php:360 +#: mod/settings.php:362 msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: mod/settings.php:368 +#: mod/settings.php:370 msgid "Wrong password." msgstr "" -#: mod/settings.php:379 +#: mod/settings.php:381 msgid "Password changed." msgstr "" -#: mod/settings.php:381 +#: mod/settings.php:383 msgid "Password update failed. Please try again." msgstr "" -#: mod/settings.php:450 +#: mod/settings.php:452 msgid " Please use a shorter name." msgstr "" -#: mod/settings.php:452 +#: mod/settings.php:454 msgid " Name too short." msgstr "" -#: mod/settings.php:461 +#: mod/settings.php:463 msgid "Wrong Password" msgstr "" -#: mod/settings.php:466 +#: mod/settings.php:468 msgid " Not valid email." msgstr "" -#: mod/settings.php:472 +#: mod/settings.php:474 msgid " Cannot change to that email." msgstr "" -#: mod/settings.php:528 +#: mod/settings.php:530 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "" -#: mod/settings.php:532 +#: mod/settings.php:534 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "" -#: mod/settings.php:571 +#: mod/settings.php:573 addons-extra/etherpadlite/etherpadlite.php:70 +#: addons-extra/fbgroup/fbgroup.php:153 addons-extra/donate/donate.php:55 msgid "Settings updated." msgstr "" -#: mod/settings.php:647 mod/settings.php:673 mod/settings.php:709 +#: mod/settings.php:649 mod/settings.php:675 mod/settings.php:711 msgid "Add application" msgstr "" -#: mod/settings.php:651 mod/settings.php:677 +#: mod/settings.php:653 mod/settings.php:679 msgid "Consumer Key" msgstr "" -#: mod/settings.php:652 mod/settings.php:678 +#: mod/settings.php:654 mod/settings.php:680 msgid "Consumer Secret" msgstr "" -#: mod/settings.php:653 mod/settings.php:679 +#: mod/settings.php:655 mod/settings.php:681 msgid "Redirect" msgstr "" -#: mod/settings.php:654 mod/settings.php:680 +#: mod/settings.php:656 mod/settings.php:682 msgid "Icon url" msgstr "" -#: mod/settings.php:665 +#: mod/settings.php:667 msgid "You can't edit this application." msgstr "" -#: mod/settings.php:708 +#: mod/settings.php:710 msgid "Connected Apps" msgstr "" -#: mod/settings.php:712 +#: mod/settings.php:714 msgid "Client key starts with" msgstr "" -#: mod/settings.php:713 +#: mod/settings.php:715 msgid "No name" msgstr "" -#: mod/settings.php:714 +#: mod/settings.php:716 msgid "Remove authorization" msgstr "" -#: mod/settings.php:726 +#: mod/settings.php:728 msgid "No Plugin settings configured" msgstr "" -#: mod/settings.php:734 +#: mod/settings.php:736 msgid "Plugin Settings" msgstr "" -#: mod/settings.php:748 +#: mod/settings.php:750 msgid "Off" msgstr "" -#: mod/settings.php:748 +#: mod/settings.php:750 msgid "On" msgstr "" -#: mod/settings.php:756 +#: mod/settings.php:758 msgid "Additional Features" msgstr "" -#: mod/settings.php:766 mod/settings.php:770 +#: mod/settings.php:768 mod/settings.php:772 msgid "General Social Media Settings" msgstr "" -#: mod/settings.php:776 +#: mod/settings.php:778 msgid "Disable intelligent shortening" msgstr "" -#: mod/settings.php:778 +#: mod/settings.php:780 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If this option is enabled then every shortened post will always point to the " "original friendica post." msgstr "" -#: mod/settings.php:784 +#: mod/settings.php:786 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" msgstr "" -#: mod/settings.php:786 +#: mod/settings.php:788 msgid "" "If you receive a message from an unknown OStatus user, this option decides " "what to do. If it is checked, a new contact will be created for every " "unknown user." msgstr "" -#: mod/settings.php:795 +#: mod/settings.php:797 msgid "Your legacy GNU Social account" msgstr "" -#: mod/settings.php:797 +#: mod/settings.php:799 msgid "" "If you enter your old GNU Social/Statusnet account name here (in the format " "user@domain.tld), your contacts will be added automatically. The field will " "be emptied when done." msgstr "" -#: mod/settings.php:800 +#: mod/settings.php:802 msgid "Repair OStatus subscriptions" msgstr "" -#: mod/settings.php:809 mod/settings.php:810 +#: mod/settings.php:811 mod/settings.php:812 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "" -#: mod/settings.php:809 mod/dfrn_request.php:858 +#: mod/settings.php:811 mod/dfrn_request.php:858 #: include/contact_selectors.php:80 msgid "Diaspora" msgstr "" -#: mod/settings.php:809 mod/settings.php:810 +#: mod/settings.php:811 mod/settings.php:812 msgid "enabled" msgstr "" -#: mod/settings.php:809 mod/settings.php:810 +#: mod/settings.php:811 mod/settings.php:812 msgid "disabled" msgstr "" -#: mod/settings.php:810 +#: mod/settings.php:812 msgid "GNU Social (OStatus)" msgstr "" -#: mod/settings.php:846 +#: mod/settings.php:848 msgid "Email access is disabled on this site." msgstr "" -#: mod/settings.php:858 +#: mod/settings.php:860 msgid "Email/Mailbox Setup" msgstr "" -#: mod/settings.php:859 +#: mod/settings.php:861 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "" -#: mod/settings.php:860 +#: mod/settings.php:862 msgid "Last successful email check:" msgstr "" -#: mod/settings.php:862 +#: mod/settings.php:864 msgid "IMAP server name:" msgstr "" -#: mod/settings.php:863 +#: mod/settings.php:865 msgid "IMAP port:" msgstr "" -#: mod/settings.php:864 +#: mod/settings.php:866 msgid "Security:" msgstr "" -#: mod/settings.php:864 mod/settings.php:869 +#: mod/settings.php:866 mod/settings.php:871 +#: addons-extra/fbgroup/fbgroup.php:253 addons-extra/fbgroup/fbgroup.php:255 msgid "None" msgstr "" -#: mod/settings.php:865 +#: mod/settings.php:867 msgid "Email login name:" msgstr "" -#: mod/settings.php:866 +#: mod/settings.php:868 msgid "Email password:" msgstr "" -#: mod/settings.php:867 +#: mod/settings.php:869 msgid "Reply-to address:" msgstr "" -#: mod/settings.php:868 +#: mod/settings.php:870 msgid "Send public posts to all email contacts:" msgstr "" -#: mod/settings.php:869 +#: mod/settings.php:871 msgid "Action after import:" msgstr "" -#: mod/settings.php:869 +#: mod/settings.php:871 msgid "Mark as seen" msgstr "" -#: mod/settings.php:869 +#: mod/settings.php:871 msgid "Move to folder" msgstr "" -#: mod/settings.php:870 +#: mod/settings.php:872 msgid "Move to folder:" msgstr "" -#: mod/settings.php:955 +#: mod/settings.php:958 msgid "Display Settings" msgstr "" -#: mod/settings.php:961 mod/settings.php:979 +#: mod/settings.php:964 mod/settings.php:982 msgid "Display Theme:" msgstr "" -#: mod/settings.php:962 +#: mod/settings.php:965 msgid "Mobile Theme:" msgstr "" -#: mod/settings.php:963 +#: mod/settings.php:966 msgid "Update browser every xx seconds" msgstr "" -#: mod/settings.php:963 -msgid "Minimum of 10 seconds, no maximum" -msgstr "" - -#: mod/settings.php:964 -msgid "Number of items to display per page:" -msgstr "" - -#: mod/settings.php:964 mod/settings.php:965 -msgid "Maximum of 100 items" -msgstr "" - -#: mod/settings.php:965 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" - #: mod/settings.php:966 -msgid "Don't show emoticons" +msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" #: mod/settings.php:967 -msgid "Calendar" +msgid "Number of items to display per page:" +msgstr "" + +#: mod/settings.php:967 mod/settings.php:968 +msgid "Maximum of 100 items" msgstr "" #: mod/settings.php:968 -msgid "Beginning of week:" +msgid "Number of items to display per page when viewed from mobile device:" msgstr "" #: mod/settings.php:969 -msgid "Don't show notices" +msgid "Don't show emoticons" msgstr "" #: mod/settings.php:970 -msgid "Infinite scroll" +msgid "Calendar" msgstr "" #: mod/settings.php:971 +msgid "Beginning of week:" +msgstr "" + +#: mod/settings.php:972 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:973 +msgid "Infinite scroll" +msgstr "" + +#: mod/settings.php:974 msgid "Automatic updates only at the top of the network page" msgstr "" -#: mod/settings.php:973 view/theme/cleanzero/config.php:82 +#: mod/settings.php:976 view/theme/cleanzero/config.php:82 #: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66 #: view/theme/diabook/config.php:150 view/theme/clean/config.php:85 #: view/theme/vier/config.php:109 view/theme/duepuntozero/config.php:61 msgid "Theme settings" msgstr "" -#: mod/settings.php:1050 +#: mod/settings.php:1053 msgid "User Types" msgstr "" -#: mod/settings.php:1051 +#: mod/settings.php:1054 msgid "Community Types" msgstr "" -#: mod/settings.php:1052 +#: mod/settings.php:1055 msgid "Normal Account Page" msgstr "" -#: mod/settings.php:1053 +#: mod/settings.php:1056 msgid "This account is a normal personal profile" msgstr "" -#: mod/settings.php:1056 +#: mod/settings.php:1059 msgid "Soapbox Page" msgstr "" -#: mod/settings.php:1057 +#: mod/settings.php:1060 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "" -#: mod/settings.php:1060 +#: mod/settings.php:1063 msgid "Community Forum/Celebrity Account" msgstr "" -#: mod/settings.php:1061 +#: mod/settings.php:1064 msgid "Automatically approve all connection/friend requests as read-write fans" msgstr "" -#: mod/settings.php:1064 +#: mod/settings.php:1067 msgid "Automatic Friend Page" msgstr "" -#: mod/settings.php:1065 +#: mod/settings.php:1068 msgid "Automatically approve all connection/friend requests as friends" msgstr "" -#: mod/settings.php:1068 +#: mod/settings.php:1071 msgid "Private Forum [Experimental]" msgstr "" -#: mod/settings.php:1069 +#: mod/settings.php:1072 msgid "Private forum - approved members only" msgstr "" -#: mod/settings.php:1081 +#: mod/settings.php:1084 msgid "OpenID:" msgstr "" -#: mod/settings.php:1081 +#: mod/settings.php:1084 msgid "(Optional) Allow this OpenID to login to this account." msgstr "" -#: mod/settings.php:1091 +#: mod/settings.php:1094 msgid "Publish your default profile in your local site directory?" msgstr "" -#: mod/settings.php:1097 +#: mod/settings.php:1100 msgid "Publish your default profile in the global social directory?" msgstr "" -#: mod/settings.php:1105 +#: mod/settings.php:1108 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "" -#: mod/settings.php:1109 include/acl_selectors.php:331 +#: mod/settings.php:1112 include/acl_selectors.php:331 msgid "Hide your profile details from unknown viewers?" msgstr "" -#: mod/settings.php:1109 +#: mod/settings.php:1112 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." msgstr "" -#: mod/settings.php:1114 +#: mod/settings.php:1117 msgid "Allow friends to post to your profile page?" msgstr "" -#: mod/settings.php:1120 +#: mod/settings.php:1123 msgid "Allow friends to tag your posts?" msgstr "" -#: mod/settings.php:1126 +#: mod/settings.php:1129 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: mod/settings.php:1132 +#: mod/settings.php:1135 msgid "Permit unknown people to send you private mail?" msgstr "" -#: mod/settings.php:1140 +#: mod/settings.php:1143 msgid "Profile is not published." msgstr "" -#: mod/settings.php:1148 +#: mod/settings.php:1151 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: mod/settings.php:1155 +#: mod/settings.php:1158 msgid "Automatically expire posts after this many days:" msgstr "" -#: mod/settings.php:1155 +#: mod/settings.php:1158 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: mod/settings.php:1156 +#: mod/settings.php:1159 msgid "Advanced expiration settings" msgstr "" -#: mod/settings.php:1157 +#: mod/settings.php:1160 msgid "Advanced Expiration" msgstr "" -#: mod/settings.php:1158 +#: mod/settings.php:1161 msgid "Expire posts:" msgstr "" -#: mod/settings.php:1159 +#: mod/settings.php:1162 msgid "Expire personal notes:" msgstr "" -#: mod/settings.php:1160 +#: mod/settings.php:1163 msgid "Expire starred posts:" msgstr "" -#: mod/settings.php:1161 +#: mod/settings.php:1164 msgid "Expire photos:" msgstr "" -#: mod/settings.php:1162 +#: mod/settings.php:1165 msgid "Only expire posts by others:" msgstr "" -#: mod/settings.php:1190 +#: mod/settings.php:1193 msgid "Account Settings" msgstr "" -#: mod/settings.php:1198 +#: mod/settings.php:1201 msgid "Password Settings" msgstr "" -#: mod/settings.php:1199 mod/register.php:274 +#: mod/settings.php:1202 mod/register.php:274 msgid "New Password:" msgstr "" -#: mod/settings.php:1200 mod/register.php:275 +#: mod/settings.php:1203 mod/register.php:275 msgid "Confirm:" msgstr "" -#: mod/settings.php:1200 +#: mod/settings.php:1203 msgid "Leave password fields blank unless changing" msgstr "" -#: mod/settings.php:1201 +#: mod/settings.php:1204 msgid "Current Password:" msgstr "" -#: mod/settings.php:1201 mod/settings.php:1202 +#: mod/settings.php:1204 mod/settings.php:1205 msgid "Your current password to confirm the changes" msgstr "" -#: mod/settings.php:1202 +#: mod/settings.php:1205 msgid "Password:" msgstr "" -#: mod/settings.php:1206 +#: mod/settings.php:1209 msgid "Basic Settings" msgstr "" -#: mod/settings.php:1207 include/identity.php:551 +#: mod/settings.php:1210 include/identity.php:578 msgid "Full Name:" msgstr "" -#: mod/settings.php:1208 +#: mod/settings.php:1211 msgid "Email Address:" msgstr "" -#: mod/settings.php:1209 +#: mod/settings.php:1212 msgid "Your Timezone:" msgstr "" -#: mod/settings.php:1210 +#: mod/settings.php:1213 msgid "Your Language:" msgstr "" -#: mod/settings.php:1210 +#: mod/settings.php:1213 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: mod/settings.php:1211 +#: mod/settings.php:1214 msgid "Default Post Location:" msgstr "" -#: mod/settings.php:1212 +#: mod/settings.php:1215 msgid "Use Browser Location:" msgstr "" -#: mod/settings.php:1215 +#: mod/settings.php:1218 msgid "Security and Privacy Settings" msgstr "" -#: mod/settings.php:1217 +#: mod/settings.php:1220 msgid "Maximum Friend Requests/Day:" msgstr "" -#: mod/settings.php:1217 mod/settings.php:1247 +#: mod/settings.php:1220 mod/settings.php:1250 msgid "(to prevent spam abuse)" msgstr "" -#: mod/settings.php:1218 +#: mod/settings.php:1221 msgid "Default Post Permissions" msgstr "" -#: mod/settings.php:1219 +#: mod/settings.php:1222 msgid "(click to open/close)" msgstr "" -#: mod/settings.php:1228 mod/photos.php:1191 mod/photos.php:1576 +#: mod/settings.php:1231 mod/photos.php:1199 mod/photos.php:1584 msgid "Show to Groups" msgstr "" -#: mod/settings.php:1229 mod/photos.php:1192 mod/photos.php:1577 +#: mod/settings.php:1232 mod/photos.php:1200 mod/photos.php:1585 msgid "Show to Contacts" msgstr "" -#: mod/settings.php:1230 +#: mod/settings.php:1233 msgid "Default Private Post" msgstr "" -#: mod/settings.php:1231 +#: mod/settings.php:1234 msgid "Default Public Post" msgstr "" -#: mod/settings.php:1235 +#: mod/settings.php:1238 msgid "Default Permissions for New Posts" msgstr "" -#: mod/settings.php:1247 +#: mod/settings.php:1250 msgid "Maximum private messages per day from unknown people:" msgstr "" -#: mod/settings.php:1250 +#: mod/settings.php:1253 msgid "Notification Settings" msgstr "" -#: mod/settings.php:1251 +#: mod/settings.php:1254 msgid "By default post a status message when:" msgstr "" -#: mod/settings.php:1252 +#: mod/settings.php:1255 msgid "accepting a friend request" msgstr "" -#: mod/settings.php:1253 +#: mod/settings.php:1256 msgid "joining a forum/community" msgstr "" -#: mod/settings.php:1254 +#: mod/settings.php:1257 msgid "making an interesting profile change" msgstr "" -#: mod/settings.php:1255 +#: mod/settings.php:1258 msgid "Send a notification email when:" msgstr "" -#: mod/settings.php:1256 +#: mod/settings.php:1259 msgid "You receive an introduction" msgstr "" -#: mod/settings.php:1257 +#: mod/settings.php:1260 msgid "Your introductions are confirmed" msgstr "" -#: mod/settings.php:1258 +#: mod/settings.php:1261 msgid "Someone writes on your profile wall" msgstr "" -#: mod/settings.php:1259 +#: mod/settings.php:1262 msgid "Someone writes a followup comment" msgstr "" -#: mod/settings.php:1260 +#: mod/settings.php:1263 msgid "You receive a private message" msgstr "" -#: mod/settings.php:1261 +#: mod/settings.php:1264 msgid "You receive a friend suggestion" msgstr "" -#: mod/settings.php:1262 +#: mod/settings.php:1265 msgid "You are tagged in a post" msgstr "" -#: mod/settings.php:1263 +#: mod/settings.php:1266 msgid "You are poked/prodded/etc. in a post" msgstr "" -#: mod/settings.php:1265 +#: mod/settings.php:1268 msgid "Activate desktop notifications" msgstr "" -#: mod/settings.php:1265 +#: mod/settings.php:1268 msgid "Show desktop popup on new notifications" msgstr "" -#: mod/settings.php:1267 +#: mod/settings.php:1270 msgid "Text-only notification emails" msgstr "" -#: mod/settings.php:1269 +#: mod/settings.php:1272 msgid "Send text only notification emails, without the html part" msgstr "" -#: mod/settings.php:1271 +#: mod/settings.php:1274 msgid "Advanced Account/Page Type Settings" msgstr "" -#: mod/settings.php:1272 +#: mod/settings.php:1275 msgid "Change the behaviour of this account for special situations" msgstr "" -#: mod/settings.php:1275 +#: mod/settings.php:1278 msgid "Relocate" msgstr "" -#: mod/settings.php:1276 +#: mod/settings.php:1279 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "" -#: mod/settings.php:1277 +#: mod/settings.php:1280 msgid "Resend relocate message to contacts" msgstr "" @@ -5070,7 +5096,7 @@ msgstr "" msgid "Choose a nickname: " msgstr "" -#: mod/register.php:280 boot.php:1256 include/nav.php:108 +#: mod/register.php:280 boot.php:1271 include/nav.php:108 msgid "Register" msgstr "" @@ -5090,62 +5116,54 @@ msgstr "" msgid "Only logged in users are permitted to perform a search." msgstr "" -#: mod/search.php:115 +#: mod/search.php:124 msgid "Too Many Requests" msgstr "" -#: mod/search.php:116 +#: mod/search.php:125 msgid "Only one search per minute is permitted for not logged in users." msgstr "" -#: mod/search.php:126 include/text.php:1003 include/nav.php:118 +#: mod/search.php:136 include/text.php:1003 include/nav.php:118 msgid "Search" msgstr "" -#: mod/search.php:224 +#: mod/search.php:234 #, php-format msgid "Items tagged with: %s" msgstr "" -#: mod/search.php:226 +#: mod/search.php:236 #, php-format msgid "Search results for: %s" msgstr "" -#: mod/directory.php:116 mod/profiles.php:760 -msgid "Age: " -msgstr "" - -#: mod/directory.php:119 -msgid "Gender: " -msgstr "" - -#: mod/directory.php:143 include/identity.php:283 include/identity.php:573 +#: mod/directory.php:149 include/identity.php:309 include/identity.php:600 msgid "Status:" msgstr "" -#: mod/directory.php:145 include/identity.php:285 include/identity.php:584 +#: mod/directory.php:151 include/identity.php:311 include/identity.php:611 msgid "Homepage:" msgstr "" -#: mod/directory.php:195 view/theme/diabook/theme.php:525 +#: mod/directory.php:203 view/theme/diabook/theme.php:525 #: view/theme/vier/theme.php:205 msgid "Global Directory" msgstr "" -#: mod/directory.php:197 +#: mod/directory.php:205 msgid "Find on this site" msgstr "" -#: mod/directory.php:199 +#: mod/directory.php:207 msgid "Finding:" msgstr "" -#: mod/directory.php:201 +#: mod/directory.php:209 msgid "Site Directory" msgstr "" -#: mod/directory.php:208 +#: mod/directory.php:216 msgid "No entries (some entries may be hidden)." msgstr "" @@ -5184,14 +5202,10 @@ msgstr "" msgid "No entries." msgstr "" -#: mod/common.php:85 +#: mod/common.php:87 msgid "No contacts in common." msgstr "" -#: mod/common.php:133 -msgid "Common Friends" -msgstr "" - #: mod/uexport.php:77 msgid "Export account" msgstr "" @@ -5273,11 +5287,11 @@ msgstr "" msgid "Romantic Partner" msgstr "" -#: mod/profiles.php:344 mod/photos.php:1639 include/conversation.php:508 +#: mod/profiles.php:344 mod/photos.php:1647 include/conversation.php:508 msgid "Likes" msgstr "" -#: mod/profiles.php:348 mod/photos.php:1639 include/conversation.php:508 +#: mod/profiles.php:348 mod/photos.php:1647 include/conversation.php:508 msgid "Dislikes" msgstr "" @@ -5456,7 +5470,7 @@ msgstr "" msgid "Since [date]:" msgstr "" -#: mod/profiles.php:724 include/identity.php:582 +#: mod/profiles.php:724 include/identity.php:609 msgid "Sexual Preference:" msgstr "" @@ -5464,11 +5478,11 @@ msgstr "" msgid "Homepage URL:" msgstr "" -#: mod/profiles.php:726 include/identity.php:586 +#: mod/profiles.php:726 include/identity.php:613 msgid "Hometown:" msgstr "" -#: mod/profiles.php:727 include/identity.php:590 +#: mod/profiles.php:727 include/identity.php:617 msgid "Political Views:" msgstr "" @@ -5484,11 +5498,11 @@ msgstr "" msgid "Private Keywords:" msgstr "" -#: mod/profiles.php:731 include/identity.php:598 +#: mod/profiles.php:731 include/identity.php:625 msgid "Likes:" msgstr "" -#: mod/profiles.php:732 include/identity.php:600 +#: mod/profiles.php:732 include/identity.php:627 msgid "Dislikes:" msgstr "" @@ -5550,27 +5564,31 @@ msgid "" "be visible to anybody using the internet." msgstr "" +#: mod/profiles.php:760 +msgid "Age: " +msgstr "" + #: mod/profiles.php:813 msgid "Edit/Manage Profiles" msgstr "" -#: mod/profiles.php:814 include/identity.php:241 include/identity.php:267 +#: mod/profiles.php:814 include/identity.php:257 include/identity.php:283 msgid "Change profile photo" msgstr "" -#: mod/profiles.php:815 include/identity.php:242 +#: mod/profiles.php:815 include/identity.php:258 msgid "Create New Profile" msgstr "" -#: mod/profiles.php:826 include/identity.php:252 +#: mod/profiles.php:826 include/identity.php:268 msgid "Profile Image" msgstr "" -#: mod/profiles.php:828 include/identity.php:255 +#: mod/profiles.php:828 include/identity.php:271 msgid "visible to everybody" msgstr "" -#: mod/profiles.php:829 include/identity.php:256 +#: mod/profiles.php:829 include/identity.php:272 msgid "Edit visibility" msgstr "" @@ -5582,75 +5600,75 @@ msgstr "" msgid "Edit post" msgstr "" -#: mod/editpost.php:110 include/conversation.php:1185 +#: mod/editpost.php:111 include/conversation.php:1185 msgid "upload photo" msgstr "" -#: mod/editpost.php:111 include/conversation.php:1186 +#: mod/editpost.php:112 include/conversation.php:1186 msgid "Attach file" msgstr "" -#: mod/editpost.php:112 include/conversation.php:1187 +#: mod/editpost.php:113 include/conversation.php:1187 msgid "attach file" msgstr "" -#: mod/editpost.php:114 include/conversation.php:1189 +#: mod/editpost.php:115 include/conversation.php:1189 msgid "web link" msgstr "" -#: mod/editpost.php:115 include/conversation.php:1190 +#: mod/editpost.php:116 include/conversation.php:1190 msgid "Insert video link" msgstr "" -#: mod/editpost.php:116 include/conversation.php:1191 +#: mod/editpost.php:117 include/conversation.php:1191 msgid "video link" msgstr "" -#: mod/editpost.php:117 include/conversation.php:1192 +#: mod/editpost.php:118 include/conversation.php:1192 msgid "Insert audio link" msgstr "" -#: mod/editpost.php:118 include/conversation.php:1193 +#: mod/editpost.php:119 include/conversation.php:1193 msgid "audio link" msgstr "" -#: mod/editpost.php:119 include/conversation.php:1194 +#: mod/editpost.php:120 include/conversation.php:1194 msgid "Set your location" msgstr "" -#: mod/editpost.php:120 include/conversation.php:1195 +#: mod/editpost.php:121 include/conversation.php:1195 msgid "set location" msgstr "" -#: mod/editpost.php:121 include/conversation.php:1196 +#: mod/editpost.php:122 include/conversation.php:1196 msgid "Clear browser location" msgstr "" -#: mod/editpost.php:122 include/conversation.php:1197 +#: mod/editpost.php:123 include/conversation.php:1197 msgid "clear location" msgstr "" -#: mod/editpost.php:124 include/conversation.php:1203 +#: mod/editpost.php:125 include/conversation.php:1203 msgid "Permission settings" msgstr "" -#: mod/editpost.php:132 include/acl_selectors.php:344 +#: mod/editpost.php:133 include/acl_selectors.php:344 msgid "CC: email addresses" msgstr "" -#: mod/editpost.php:133 include/conversation.php:1212 +#: mod/editpost.php:134 include/conversation.php:1212 msgid "Public post" msgstr "" -#: mod/editpost.php:136 include/conversation.php:1199 +#: mod/editpost.php:137 include/conversation.php:1199 msgid "Set title" msgstr "" -#: mod/editpost.php:138 include/conversation.php:1201 +#: mod/editpost.php:139 include/conversation.php:1201 msgid "Categories (comma-separated list)" msgstr "" -#: mod/editpost.php:139 include/acl_selectors.php:345 +#: mod/editpost.php:140 include/acl_selectors.php:345 msgid "Example: bob@example.com, mary@example.com" msgstr "" @@ -5716,7 +5734,7 @@ msgstr "" msgid "Visible to:" msgstr "" -#: mod/notes.php:46 include/identity.php:694 +#: mod/notes.php:46 include/identity.php:721 msgid "Personal Notes" msgstr "" @@ -5873,196 +5891,196 @@ msgid "" "important, please visit http://friendica.com" msgstr "" -#: mod/photos.php:91 include/identity.php:669 +#: mod/photos.php:99 include/identity.php:696 msgid "Photo Albums" msgstr "" -#: mod/photos.php:92 mod/photos.php:1891 +#: mod/photos.php:100 mod/photos.php:1899 msgid "Recent Photos" msgstr "" -#: mod/photos.php:95 mod/photos.php:1312 mod/photos.php:1893 +#: mod/photos.php:103 mod/photos.php:1320 mod/photos.php:1901 msgid "Upload New Photos" msgstr "" -#: mod/photos.php:173 +#: mod/photos.php:181 msgid "Contact information unavailable" msgstr "" -#: mod/photos.php:194 +#: mod/photos.php:202 msgid "Album not found." msgstr "" -#: mod/photos.php:224 mod/photos.php:236 mod/photos.php:1254 +#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1262 msgid "Delete Album" msgstr "" -#: mod/photos.php:234 +#: mod/photos.php:242 msgid "Do you really want to delete this photo album and all its photos?" msgstr "" -#: mod/photos.php:314 mod/photos.php:325 mod/photos.php:1572 +#: mod/photos.php:322 mod/photos.php:333 mod/photos.php:1580 msgid "Delete Photo" msgstr "" -#: mod/photos.php:323 +#: mod/photos.php:331 msgid "Do you really want to delete this photo?" msgstr "" -#: mod/photos.php:698 +#: mod/photos.php:706 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "" -#: mod/photos.php:698 +#: mod/photos.php:706 msgid "a photo" msgstr "" -#: mod/photos.php:811 +#: mod/photos.php:819 msgid "Image file is empty." msgstr "" -#: mod/photos.php:978 +#: mod/photos.php:986 msgid "No photos selected" msgstr "" -#: mod/photos.php:1139 +#: mod/photos.php:1147 #, php-format msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "" -#: mod/photos.php:1174 +#: mod/photos.php:1182 msgid "Upload Photos" msgstr "" -#: mod/photos.php:1178 mod/photos.php:1249 +#: mod/photos.php:1186 mod/photos.php:1257 msgid "New album name: " msgstr "" -#: mod/photos.php:1179 +#: mod/photos.php:1187 msgid "or existing album name: " msgstr "" -#: mod/photos.php:1180 +#: mod/photos.php:1188 msgid "Do not show a status post for this upload" msgstr "" -#: mod/photos.php:1182 mod/photos.php:1567 include/acl_selectors.php:347 +#: mod/photos.php:1190 mod/photos.php:1575 include/acl_selectors.php:347 msgid "Permissions" msgstr "" -#: mod/photos.php:1193 +#: mod/photos.php:1201 msgid "Private Photo" msgstr "" -#: mod/photos.php:1194 +#: mod/photos.php:1202 msgid "Public Photo" msgstr "" -#: mod/photos.php:1262 +#: mod/photos.php:1270 msgid "Edit Album" msgstr "" -#: mod/photos.php:1268 +#: mod/photos.php:1276 msgid "Show Newest First" msgstr "" -#: mod/photos.php:1270 +#: mod/photos.php:1278 msgid "Show Oldest First" msgstr "" -#: mod/photos.php:1298 mod/photos.php:1876 +#: mod/photos.php:1306 mod/photos.php:1884 msgid "View Photo" msgstr "" -#: mod/photos.php:1345 +#: mod/photos.php:1353 msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: mod/photos.php:1347 +#: mod/photos.php:1355 msgid "Photo not available" msgstr "" -#: mod/photos.php:1403 +#: mod/photos.php:1411 msgid "View photo" msgstr "" -#: mod/photos.php:1403 +#: mod/photos.php:1411 msgid "Edit photo" msgstr "" -#: mod/photos.php:1404 +#: mod/photos.php:1412 msgid "Use as profile photo" msgstr "" -#: mod/photos.php:1429 +#: mod/photos.php:1437 msgid "View Full Size" msgstr "" -#: mod/photos.php:1515 +#: mod/photos.php:1523 msgid "Tags: " msgstr "" -#: mod/photos.php:1518 +#: mod/photos.php:1526 msgid "[Remove any tag]" msgstr "" -#: mod/photos.php:1558 +#: mod/photos.php:1566 msgid "New album name" msgstr "" -#: mod/photos.php:1559 +#: mod/photos.php:1567 msgid "Caption" msgstr "" -#: mod/photos.php:1560 +#: mod/photos.php:1568 msgid "Add a Tag" msgstr "" -#: mod/photos.php:1560 +#: mod/photos.php:1568 msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "" -#: mod/photos.php:1561 +#: mod/photos.php:1569 msgid "Do not rotate" msgstr "" -#: mod/photos.php:1562 +#: mod/photos.php:1570 msgid "Rotate CW (right)" msgstr "" -#: mod/photos.php:1563 +#: mod/photos.php:1571 msgid "Rotate CCW (left)" msgstr "" -#: mod/photos.php:1578 +#: mod/photos.php:1586 msgid "Private photo" msgstr "" -#: mod/photos.php:1579 +#: mod/photos.php:1587 msgid "Public photo" msgstr "" -#: mod/photos.php:1601 include/conversation.php:1183 +#: mod/photos.php:1609 include/conversation.php:1183 msgid "Share" msgstr "" -#: mod/photos.php:1640 include/conversation.php:509 +#: mod/photos.php:1648 include/conversation.php:509 #: include/conversation.php:1414 msgid "Attending" msgid_plural "Attending" msgstr[0] "" msgstr[1] "" -#: mod/photos.php:1640 include/conversation.php:509 +#: mod/photos.php:1648 include/conversation.php:509 msgid "Not attending" msgstr "" -#: mod/photos.php:1640 include/conversation.php:509 +#: mod/photos.php:1648 include/conversation.php:509 msgid "Might attend" msgstr "" -#: mod/photos.php:1805 +#: mod/photos.php:1813 msgid "Map" msgstr "" @@ -6122,60 +6140,60 @@ msgstr "" msgid "Item was not found." msgstr "" -#: boot.php:771 +#: boot.php:786 msgid "Delete this item?" msgstr "" -#: boot.php:774 +#: boot.php:789 msgid "show fewer" msgstr "" -#: boot.php:1148 +#: boot.php:1163 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: boot.php:1255 +#: boot.php:1270 msgid "Create a New Account" msgstr "" -#: boot.php:1280 include/nav.php:72 +#: boot.php:1295 include/nav.php:72 msgid "Logout" msgstr "" -#: boot.php:1283 +#: boot.php:1298 msgid "Nickname or Email address: " msgstr "" -#: boot.php:1284 +#: boot.php:1299 msgid "Password: " msgstr "" -#: boot.php:1285 +#: boot.php:1300 msgid "Remember me" msgstr "" -#: boot.php:1288 +#: boot.php:1303 msgid "Or login using OpenID: " msgstr "" -#: boot.php:1294 +#: boot.php:1309 msgid "Forgot your password?" msgstr "" -#: boot.php:1297 +#: boot.php:1312 msgid "Website Terms of Service" msgstr "" -#: boot.php:1298 +#: boot.php:1313 msgid "terms of service" msgstr "" -#: boot.php:1300 +#: boot.php:1315 msgid "Website Privacy Policy" msgstr "" -#: boot.php:1301 +#: boot.php:1316 msgid "privacy policy" msgstr "" @@ -6237,11 +6255,11 @@ msgid "" "[pre]%s[/pre]" msgstr "" -#: include/dbstructure.php:152 +#: include/dbstructure.php:151 msgid "Errors encountered creating database tables." msgstr "" -#: include/dbstructure.php:210 +#: include/dbstructure.php:209 msgid "Errors encountered performing database changes." msgstr "" @@ -6324,6 +6342,13 @@ msgstr "" msgid "Categories" msgstr "" +#: include/contact_widgets.php:237 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "" +msgstr[1] "" + #: include/features.php:58 msgid "General Features" msgstr "" @@ -6670,12 +6695,12 @@ msgstr "" msgid "%1$d %2$s ago" msgstr "" -#: include/datetime.php:474 include/items.php:2444 +#: include/datetime.php:474 include/items.php:2470 #, php-format msgid "%s's birthday" msgstr "" -#: include/datetime.php:475 include/items.php:2445 +#: include/datetime.php:475 include/items.php:2471 #, php-format msgid "Happy Birthday %s" msgstr "" @@ -6684,148 +6709,132 @@ msgstr "" msgid "Requested account is not available." msgstr "" -#: include/identity.php:126 include/identity.php:265 include/identity.php:625 +#: include/identity.php:96 include/identity.php:281 include/identity.php:652 msgid "Edit profile" msgstr "" -#: include/identity.php:225 +#: include/identity.php:241 msgid "Atom feed" msgstr "" -#: include/identity.php:230 +#: include/identity.php:246 msgid "Message" msgstr "" -#: include/identity.php:236 include/nav.php:185 +#: include/identity.php:252 include/nav.php:185 msgid "Profiles" msgstr "" -#: include/identity.php:236 +#: include/identity.php:252 msgid "Manage/edit profiles" msgstr "" -#: include/identity.php:353 -msgid "Network:" -msgstr "" - -#: include/identity.php:385 include/identity.php:471 +#: include/identity.php:412 include/identity.php:498 msgid "g A l F d" msgstr "" -#: include/identity.php:386 include/identity.php:472 +#: include/identity.php:413 include/identity.php:499 msgid "F d" msgstr "" -#: include/identity.php:431 include/identity.php:518 +#: include/identity.php:458 include/identity.php:545 msgid "[today]" msgstr "" -#: include/identity.php:443 +#: include/identity.php:470 msgid "Birthday Reminders" msgstr "" -#: include/identity.php:444 +#: include/identity.php:471 msgid "Birthdays this week:" msgstr "" -#: include/identity.php:505 +#: include/identity.php:532 msgid "[No description]" msgstr "" -#: include/identity.php:529 +#: include/identity.php:556 msgid "Event Reminders" msgstr "" -#: include/identity.php:530 +#: include/identity.php:557 msgid "Events this week:" msgstr "" -#: include/identity.php:558 +#: include/identity.php:585 msgid "j F, Y" msgstr "" -#: include/identity.php:559 +#: include/identity.php:586 msgid "j F" msgstr "" -#: include/identity.php:566 +#: include/identity.php:593 msgid "Birthday:" msgstr "" -#: include/identity.php:570 +#: include/identity.php:597 msgid "Age:" msgstr "" -#: include/identity.php:579 +#: include/identity.php:606 #, php-format msgid "for %1$d %2$s" msgstr "" -#: include/identity.php:592 +#: include/identity.php:619 msgid "Religion:" msgstr "" -#: include/identity.php:596 +#: include/identity.php:623 msgid "Hobbies/Interests:" msgstr "" -#: include/identity.php:603 +#: include/identity.php:630 msgid "Contact information and Social Networks:" msgstr "" -#: include/identity.php:605 +#: include/identity.php:632 msgid "Musical interests:" msgstr "" -#: include/identity.php:607 +#: include/identity.php:634 msgid "Books, literature:" msgstr "" -#: include/identity.php:609 +#: include/identity.php:636 msgid "Television:" msgstr "" -#: include/identity.php:611 +#: include/identity.php:638 msgid "Film/dance/culture/entertainment:" msgstr "" -#: include/identity.php:613 +#: include/identity.php:640 msgid "Love/Romance:" msgstr "" -#: include/identity.php:615 +#: include/identity.php:642 msgid "Work/employment:" msgstr "" -#: include/identity.php:617 +#: include/identity.php:644 msgid "School/education:" msgstr "" -#: include/identity.php:621 +#: include/identity.php:648 msgid "Forums:" msgstr "" -#: include/identity.php:650 include/nav.php:75 -msgid "Status" -msgstr "" - -#: include/identity.php:653 -msgid "Status Messages and Posts" -msgstr "" - -#: include/identity.php:661 -msgid "Profile Details" -msgstr "" - -#: include/identity.php:674 include/identity.php:677 include/nav.php:78 +#: include/identity.php:701 include/identity.php:704 include/nav.php:78 msgid "Videos" msgstr "" -#: include/identity.php:689 include/nav.php:140 +#: include/identity.php:716 include/nav.php:140 msgid "Events and Calendar" msgstr "" -#: include/identity.php:697 +#: include/identity.php:724 msgid "Only You Can See This" msgstr "" @@ -7155,6 +7164,10 @@ msgid_plural "%d Contacts" msgstr[0] "" msgstr[1] "" +#: include/text.php:921 +msgid "View Contacts" +msgstr "" + #: include/text.php:1010 include/nav.php:121 msgid "Full Text" msgstr "" @@ -7307,19 +7320,21 @@ msgstr "" msgid "view on separate page" msgstr "" -#: include/text.php:1997 +#: include/text.php:1995 msgid "activity" msgstr "" -#: include/text.php:2000 +#: include/text.php:1998 msgid "post" msgstr "" -#: include/text.php:2168 +#: include/text.php:2166 msgid "Item filed" msgstr "" #: include/bbcode.php:483 include/bbcode.php:1143 include/bbcode.php:1144 +#: addons-extra/bbextra/bbextra.php:33 addons-extra/bbextra/bbextra.php:34 +#: addons-extra/bbextra/bbextra.php:35 addons-extra/bbextra/bbextra.php:36 msgid "Image/photo" msgstr "" @@ -7779,15 +7794,15 @@ msgstr "" msgid "Sharing notification from Diaspora network" msgstr "" -#: include/diaspora.php:2574 +#: include/diaspora.php:2606 msgid "Attachments:" msgstr "" -#: include/items.php:4871 +#: include/items.php:4897 msgid "Do you really want to delete this item?" msgstr "" -#: include/items.php:5146 +#: include/items.php:5172 msgid "Archives" msgstr "" @@ -8347,6 +8362,369 @@ msgstr[1] "" msgid "Done. You can now login with your username and password" msgstr "" +#: addons-extra/pool_master/pool_master.php:19 +msgid "Pool Master" +msgstr "" + +#: addons-extra/apps/apps.php:19 +msgid "Test Addon" +msgstr "" + +#: addons-extra/video_chat/video_chat.php:19 +msgid "Video Chat" +msgstr "" + +#: addons-extra/video_chat/video_chat.php:30 +msgid "" +"You must be authenticated to use this addon! Either login, or visit this " +"site via a magic link. " +msgstr "" + +#: addons-extra/moshimonsters/moshimonsters.php:19 +msgid "Moshi Monsters" +msgstr "" + +#: addons-extra/xkcd/xkcd.php:19 +msgid "XKCD" +msgstr "" + +#: addons-extra/mathletics/mathletics.php:19 +msgid "Mathletics" +msgstr "" + +#: addons-extra/fairy_fashion/fairy_fashion.php:20 +msgid "Fairy Fashion" +msgstr "" + +#: addons-extra/etherpadlite/etherpadlite.php:40 +msgid "Etherpad-Lite" +msgstr "" + +#: addons-extra/etherpadlite/etherpadlite.php:49 +msgid "Only local user can access the Etherpad-Lite app." +msgstr "" + +#: addons-extra/etherpadlite/etherpadlite.php:64 +msgid "Etherpad-Lite Base URL" +msgstr "" + +#: addons-extra/etherpadlite/etherpadlite.php:64 +msgid "Absolute path to your Etherpad-Lite installation. (with trailing slash)" +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:181 +msgid "Facebook Group disabled" +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:201 +msgid "Facebook API key is missing." +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:208 addons-extra/fbgroup/fbgroup.php:292 +msgid "Facebook Group" +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:214 +msgid "Install Facebook Group connector for this account." +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:221 +msgid "Remove Facebook Group connector" +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:226 +msgid "" +"Re-authenticate [This is necessary whenever your Facebook password is " +"changed.]" +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:233 +msgid "Post to Facebook group by default" +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:237 +msgid "Suppress \"View on friendica\"" +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:241 +msgid "Mirror wall posts from facebook to friendica." +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:251 +msgid "Post to page/group:" +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:293 +msgid "Facebook Group Settings" +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:308 +msgid "Facebook API Key" +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:315 +msgid "" +"Error: it appears that you have specified the App-ID and -Secret in your ." +"htconfig.php file. As long as they are specified there, they cannot be set " +"using this form.

" +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:317 +msgid "App-ID / API-Key" +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:318 +msgid "Application secret" +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:336 +msgid "The new values have been saved." +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:355 +msgid "Post to Facebook Group" +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:374 +#, php-format +msgid "%s:" +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:483 +msgid "" +"Post to Facebook cancelled because of multi-network access permission " +"conflict." +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:762 +msgid "View on Friendica" +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:798 +msgid "Facebook group post failed. Queued for retry." +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:816 +msgid "Administrator" +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:838 +msgid "Your Facebook connection became invalid. Please Re-authenticate." +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:839 +msgid "Facebook connection became invalid" +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:840 +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"The connection between your accounts on %2$s and Facebook became invalid. " +"This usually happens after you change your Facebook-password. To enable the " +"connection again, you have to %3$sre-authenticate the Facebook-connector%4$s." +msgstr "" + +#: addons-extra/fbgroup/fbgroup.php:1445 +#, php-format +msgid "%1$feed likes %2$feed's %3$feed" +msgstr "" + +#: addons-extra/urban_dead/urban_dead.php:19 +msgid "Urban Dead" +msgstr "" + +#: addons-extra/maya_locations/maya_locations.php:151 +msgid "Maya Location Settings" +msgstr "" + +#: addons-extra/maya_locations/maya_locations.php:153 +msgid "Enable Maya Locations Plugin" +msgstr "" + +#: addons-extra/lasttweets/lasttweets.php:64 +msgid "Twitter Widget Settings" +msgstr "" + +#: addons-extra/lasttweets/lasttweets.php:65 +msgid "" +"You can include the widget in the sidebar of your Network strean (for your " +"eyes only) and on the bottom of your profile page (for everybody). Both " +"locations can be enabled separately with different search items and settings." +msgstr "" + +#: addons-extra/lasttweets/lasttweets.php:67 +msgid "Sidebar Settings" +msgstr "" + +#: addons-extra/lasttweets/lasttweets.php:69 +#: addons-extra/lasttweets/lasttweets.php:86 +msgid "Search Item at Twitter" +msgstr "" + +#: addons-extra/lasttweets/lasttweets.php:73 +#: addons-extra/lasttweets/lasttweets.php:90 +msgid "Inner Color (hexcode)" +msgstr "" + +#: addons-extra/lasttweets/lasttweets.php:77 +#: addons-extra/lasttweets/lasttweets.php:94 +msgid "Outer Color (hexcode)" +msgstr "" + +#: addons-extra/lasttweets/lasttweets.php:81 +msgid "Enable Twitter Widget (Sidebar)" +msgstr "" + +#: addons-extra/lasttweets/lasttweets.php:84 +msgid "Profile Settings" +msgstr "" + +#: addons-extra/lasttweets/lasttweets.php:98 +msgid "Enable Twitter Widget (Below Profile)" +msgstr "" + +#: addons-extra/cthulhu_mythos_locations/cthulhu_mythos_locations.php:150 +msgid "Cthulhu Mythos Location Settings" +msgstr "" + +#: addons-extra/cthulhu_mythos_locations/cthulhu_mythos_locations.php:152 +msgid "Enable Cthulhu Mythos Locations Plugin" +msgstr "" + +#: addons-extra/browser_quest/browser_quest.php:19 +msgid "Browser Quest" +msgstr "" + +#: addons-extra/donate/donate.php:61 +msgid "Image location of your preffered payment method" +msgstr "" + +#: addons-extra/donate/donate.php:61 +msgid "eg http://somewebsite.com/someimage.jpg" +msgstr "" + +#: addons-extra/donate/donate.php:62 +msgid "Method one link" +msgstr "" + +#: addons-extra/donate/donate.php:62 addons-extra/donate/donate.php:64 +#: addons-extra/donate/donate.php:66 addons-extra/donate/donate.php:68 +#: addons-extra/donate/donate.php:70 +msgid "Link to the payment gateway provided by your payment processor." +msgstr "" + +#: addons-extra/donate/donate.php:63 +msgid "Method Two" +msgstr "" + +#: addons-extra/donate/donate.php:63 +msgid "Image location of your second payment method" +msgstr "" + +#: addons-extra/donate/donate.php:64 +msgid "Method two URL" +msgstr "" + +#: addons-extra/donate/donate.php:65 +msgid "Method Three" +msgstr "" + +#: addons-extra/donate/donate.php:65 +msgid "Image location of your third payment method" +msgstr "" + +#: addons-extra/donate/donate.php:66 +msgid "Method three URL" +msgstr "" + +#: addons-extra/donate/donate.php:67 +msgid "Method Four" +msgstr "" + +#: addons-extra/donate/donate.php:67 +msgid "Image location of your fourth payment method" +msgstr "" + +#: addons-extra/donate/donate.php:68 +msgid "Method four URL" +msgstr "" + +#: addons-extra/donate/donate.php:69 +msgid "Method Five" +msgstr "" + +#: addons-extra/donate/donate.php:69 +msgid "Image location of your fifth payment method" +msgstr "" + +#: addons-extra/donate/donate.php:70 +msgid "Method five URL" +msgstr "" + +#: addons-extra/donate/donate.php:77 +msgid "Donate" +msgstr "" + +#: addons-extra/donate/donate.php:78 +msgid "" +"Public servers are not actually \"free\". Someone has to put their time and " +"effort into creating, and maintaining them, handling support requests, " +"fixing bugs, answering support requests, etc, etc. Access to free Friendica " +"servers is a privilege, not a right and can cost admins a significant amount " +"of money. Public servers are not scalable in the long term. The only way " +"we can grow to support new users is with YOUR help." +msgstr "" + +#: addons-extra/donate/donate.php:80 +msgid "" +"It is estimated by public server admins that the cost of hosting an " +"individual is between 1 and 2 cents per contact, per month. This may not " +"sound a lot, but multiply your 500 Facebook contacts by just ten users, and " +"you can see how this is unsustainable. Below are the payment methods your " +"admin can accept to help spread the cost of this service and ensure " +"Friendica public servers are available for everybody who needs one." +msgstr "" + +#: addons-extra/donate/donate.php:82 +msgid "" +"Donations are taken in good faith, and are non-refundable other than in " +"cases of fraud" +msgstr "" + +#: addons-extra/canicheatdeath/canicheatdeath.php:20 +msgid "Can I Cheat Death?" +msgstr "" + +#: addons-extra/flip/flip.php:19 +msgid "Flip the text" +msgstr "" + +#: addons-extra/kids_chat/kids_chat.php:19 +msgid "Kids Chat" +msgstr "" + +#: addons-extra/girlsgogames/girlsgogames.php:19 +msgid "GirlsGoGames" +msgstr "" + +#: addons-extra/weknowwhatyouredoing/weknowwhatyouredoing.php:20 +msgid "We Know What You Are Doing" +msgstr "" + +#: addons-extra/dungeons_and_treasures/dungeons_and_treasures.php:19 +msgid "Dungeons And Treasures" +msgstr "" + +#: addons-extra/binweevils/binweevils.php:19 +msgid "BinWeevils" +msgstr "" + +#: addons-extra/reddit/reddit.php:19 +msgid "Reddit Reader" +msgstr "" + #: index.php:441 msgid "toggle mobile" msgstr "" From 143e1a4a836e1fe4d05ab5d1c6008aa0198d2db5 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 13 Dec 2015 09:43:47 +0100 Subject: [PATCH 29/52] Bugfix: Warning because of undefined constant --- include/conversation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/conversation.php b/include/conversation.php index 476ae80bea..f2d3cda33b 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -951,7 +951,7 @@ function item_photo_menu($item){ * @param array &$conv_responses (already created with builtin activity structure) * @return void */ -if(! function_exists(builtin_activity_puller)) { +if(! function_exists('builtin_activity_puller')) { function builtin_activity_puller($item, &$conv_responses) { foreach($conv_responses as $mode => $v) { $url = ''; From e0b53aa0ac2eb0886b03202fb52cc915a52b61ad Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 13 Dec 2015 14:10:18 +0100 Subject: [PATCH 30/52] OStatus: Make sure that mentions are always accepted --- include/ostatus.php | 39 ++++++++++++++++++++++++++++++++++++--- 1 file changed, 36 insertions(+), 3 deletions(-) diff --git a/include/ostatus.php b/include/ostatus.php index 932fc1fa9a..d2d25b76ff 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -1386,6 +1386,8 @@ function ostatus_entry($doc, $item, $owner, $toplevel = false) { xml_add_element($doc, $entry, "published", datetime_convert("UTC","UTC",$item["created"]."+00:00",ATOM_TIME)); xml_add_element($doc, $entry, "updated", datetime_convert("UTC","UTC",$item["edited"]."+00:00",ATOM_TIME)); + $mentioned = array(); + if (($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) { $parent = q("SELECT `guid` FROM `item` WHERE `id` = %d", intval($item["parent"])); $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']); @@ -1400,7 +1402,18 @@ function ostatus_entry($doc, $item, $owner, $toplevel = false) { "rel" => "related", "href" => $a->get_baseurl()."/display/".$parent[0]["guid"]); xml_add_element($doc, $entry, "link", "", $attributes); - } + + $mentioned[$parent[0]["author-link"]] = $parent[0]["author-link"]; + $mentioned[$parent[0]["owner-link"]] = $parent[0]["owner-link"]; + + $thrparent = q("SELECT `guid`, `author-link`, `owner-link` FROM `item` WHERE `uid` = %d AND `uri` = '%s'", + intval($owner["uid"]), + dbesc($parent_item)); + if ($thrparent) { + $mentioned[$thrparent[0]["author-link"]] = $thrparent[0]["author-link"]; + $mentioned[$thrparent[0]["owner-link"]] = $thrparent[0]["owner-link"]; + } + } xml_add_element($doc, $entry, "link", "", array("rel" => "ostatus:conversation", "href" => $a->get_baseurl()."/display/".$owner["nick"]."/".$item["parent"])); @@ -1411,9 +1424,29 @@ function ostatus_entry($doc, $item, $owner, $toplevel = false) { if(count($tags)) foreach($tags as $t) if ($t[0] == "@") - xml_add_element($doc, $entry, "link", "", array("rel" => "mentioned", + $mentioned[$t[1]] = $t[1]; + + // Make sure that mentions are accepted (GNU Social has problems with mixing HTTP and HTTPS) + $newmentions = array(); + foreach ($mentioned AS $mention) { + $newmentions[str_replace("http://", "https://", $mention)] = str_replace("http://", "https://", $mention); + $newmentions[str_replace("https://", "http://", $mention)] = str_replace("https://", "http://", $mention); + } + $mentioned = $newmentions; + + foreach ($mentioned AS $mention) { + $r = q("SELECT `forum`, `prv` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s'", + intval($owner["uid"]), + dbesc(normalise_link($mention))); + if ($r[0]["forum"] OR $r[0]["prv"]) + xml_add_element($doc, $entry, "link", "", array("rel" => "mentioned", + "ostatus:object-type" => ACTIVITY_OBJ_GROUP, + "href" => $mention)); + else + xml_add_element($doc, $entry, "link", "", array("rel" => "mentioned", "ostatus:object-type" => ACTIVITY_OBJ_PERSON, - "href" => $t[1])); + "href" => $mention)); + } if (!$item["private"]) xml_add_element($doc, $entry, "link", "", array("rel" => "mentioned", From 448be5cfbda4744f265bd33b488f6634626f7aae Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 14 Dec 2015 07:51:11 +0100 Subject: [PATCH 31/52] exclude addons-extra directory from the translation as well --- util/run_xgettext.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/run_xgettext.sh b/util/run_xgettext.sh index 8ecfec9446..78c1bae5f1 100755 --- a/util/run_xgettext.sh +++ b/util/run_xgettext.sh @@ -48,7 +48,7 @@ case "$MODE" in OUTFILE="$FULLPATH/messages.po" FINDSTARTDIR="." # skip addon folder - FINDOPTS="( -wholename */addon -or -wholename */smarty3 ) -prune -o" + FINDOPTS="( -wholename */addon -or -wholename */addons-extra -or -wholename */smarty3 ) -prune -o" F9KVERSION=$(sed -n "s/.*'FRIENDICA_VERSION'.*'\([0-9.]*\)'.*/\1/p" ./boot.php); echo "Friendica version $F9KVERSION" From c8b6c3bedfd2910d320e1c329d4b6d5a071a7bde Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 14 Dec 2015 07:51:27 +0100 Subject: [PATCH 32/52] regenerated messages.po file, excluding addons-extra stuff --- util/messages.po | 991 +++++++++++++++-------------------------------- 1 file changed, 303 insertions(+), 688 deletions(-) diff --git a/util/messages.po b/util/messages.po index b6e579b1a7..9dd02bbeb1 100644 --- a/util/messages.po +++ b/util/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-13 08:51+0100\n" +"POT-Creation-Date: 2015-12-14 07:48+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -70,8 +70,7 @@ msgstr "" #: mod/api.php:31 mod/notes.php:22 mod/poke.php:149 mod/repair_ostatus.php:9 #: mod/invite.php:15 mod/invite.php:101 mod/photos.php:171 mod/photos.php:1105 #: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33 -#: include/items.php:5067 addons-extra/fbgroup/fbgroup.php:168 -#: addons-extra/fbgroup/fbgroup.php:174 index.php:382 +#: include/items.php:5067 index.php:382 msgid "Permission denied." msgstr "" @@ -146,7 +145,7 @@ msgstr "" msgid "Private communications are not available for this contact." msgstr "" -#: mod/contacts.php:543 mod/admin.php:647 +#: mod/contacts.php:543 mod/admin.php:645 msgid "Never" msgstr "" @@ -175,7 +174,7 @@ msgstr "" msgid "Fetch further information for feeds" msgstr "" -#: mod/contacts.php:570 mod/admin.php:656 +#: mod/contacts.php:570 mod/admin.php:654 msgid "Disabled" msgstr "" @@ -194,16 +193,10 @@ msgstr "" #: mod/localtime.php:45 mod/poke.php:198 mod/invite.php:140 mod/photos.php:1137 #: mod/photos.php:1261 mod/photos.php:1579 mod/photos.php:1630 #: mod/photos.php:1678 mod/photos.php:1766 object/Item.php:710 -#: addons-extra/etherpadlite/etherpadlite.php:63 -#: addons-extra/fbgroup/fbgroup.php:278 -#: addons-extra/maya_locations/maya_locations.php:159 -#: addons-extra/lasttweets/lasttweets.php:102 -#: addons-extra/cthulhu_mythos_locations/cthulhu_mythos_locations.php:158 -#: addons-extra/donate/donate.php:60 view/theme/cleanzero/config.php:80 -#: view/theme/dispy/config.php:70 view/theme/quattro/config.php:64 -#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 -#: view/theme/clean/config.php:83 view/theme/vier/config.php:107 -#: view/theme/duepuntozero/config.php:59 +#: view/theme/cleanzero/config.php:80 view/theme/dispy/config.php:70 +#: view/theme/quattro/config.php:64 view/theme/diabook/config.php:148 +#: view/theme/diabook/theme.php:633 view/theme/clean/config.php:83 +#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 msgid "Submit" msgstr "" @@ -260,7 +253,7 @@ msgstr "" msgid "Update public posts" msgstr "" -#: mod/contacts.php:609 mod/admin.php:1656 +#: mod/contacts.php:609 mod/admin.php:1653 msgid "Update now" msgstr "" @@ -271,12 +264,12 @@ msgid "Connect/Follow" msgstr "" #: mod/contacts.php:614 mod/contacts.php:805 mod/contacts.php:864 -#: mod/admin.php:1120 +#: mod/admin.php:1117 msgid "Unblock" msgstr "" #: mod/contacts.php:614 mod/contacts.php:805 mod/contacts.php:864 -#: mod/admin.php:1119 +#: mod/admin.php:1116 msgid "Block" msgstr "" @@ -434,7 +427,7 @@ msgstr "" msgid "Unarchive" msgstr "" -#: mod/contacts.php:808 mod/group.php:171 mod/admin.php:1118 +#: mod/contacts.php:808 mod/group.php:171 mod/admin.php:1115 #: mod/content.php:440 mod/content.php:743 mod/settings.php:713 #: mod/photos.php:1723 object/Item.php:134 include/conversation.php:635 msgid "Delete" @@ -553,7 +546,7 @@ msgid "All Contacts (with secure profile access)" msgstr "" #: mod/display.php:82 mod/display.php:283 mod/display.php:500 -#: mod/viewsrc.php:15 mod/admin.php:196 mod/admin.php:1163 mod/admin.php:1384 +#: mod/viewsrc.php:15 mod/admin.php:196 mod/admin.php:1160 mod/admin.php:1381 #: mod/notice.php:15 include/items.php:4858 msgid "Item not found." msgstr "" @@ -603,7 +596,7 @@ msgid "" "join." msgstr "" -#: mod/newmember.php:22 mod/admin.php:1215 mod/admin.php:1460 +#: mod/newmember.php:22 mod/admin.php:1212 mod/admin.php:1457 #: mod/settings.php:99 include/nav.php:182 view/theme/diabook/theme.php:544 #: view/theme/diabook/theme.php:648 msgid "Settings" @@ -727,7 +720,7 @@ msgid "" "hours." msgstr "" -#: mod/newmember.php:66 include/group.php:283 addons-extra/groups/groups.php:19 +#: mod/newmember.php:66 include/group.php:283 msgid "Groups" msgstr "" @@ -872,8 +865,8 @@ msgstr "" #: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 mod/like.php:346 #: include/conversation.php:125 include/conversation.php:134 #: include/conversation.php:261 include/conversation.php:270 -#: include/diaspora.php:2146 addons-extra/fbgroup/fbgroup.php:1441 -#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 +#: include/diaspora.php:2146 view/theme/diabook/theme.php:466 +#: view/theme/diabook/theme.php:475 msgid "status" msgstr "" @@ -943,7 +936,6 @@ msgid "- select -" msgstr "" #: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:61 include/text.php:1004 -#: addons-extra/fbgroup/fbgroup.php:320 msgid "Save" msgstr "" @@ -1253,7 +1245,7 @@ msgstr "" #: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 #: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17 -#: mod/wall_attach.php:25 mod/wall_attach.php:76 include/api.php:1711 +#: mod/wall_attach.php:25 mod/wall_attach.php:76 include/api.php:1733 msgid "Invalid request." msgstr "" @@ -1311,7 +1303,7 @@ msgid "" "Password reset failed." msgstr "" -#: mod/lostpass.php:109 boot.php:1310 +#: mod/lostpass.php:109 boot.php:1307 msgid "Password Reset" msgstr "" @@ -1492,7 +1484,7 @@ msgstr "" msgid "if applicable" msgstr "" -#: mod/notifications.php:176 mod/notifications.php:257 mod/admin.php:1116 +#: mod/notifications.php:176 mod/notifications.php:257 mod/admin.php:1113 msgid "Approve" msgstr "" @@ -1849,8 +1841,8 @@ msgstr "" msgid "Refetch contact data" msgstr "" -#: mod/crepair.php:170 mod/admin.php:1114 mod/admin.php:1126 mod/admin.php:1127 -#: mod/admin.php:1140 mod/settings.php:652 mod/settings.php:678 +#: mod/crepair.php:170 mod/admin.php:1111 mod/admin.php:1123 mod/admin.php:1124 +#: mod/admin.php:1137 mod/settings.php:652 mod/settings.php:678 msgid "Name" msgstr "" @@ -1900,7 +1892,7 @@ msgid "" "entries from this contact." msgstr "" -#: mod/bookmarklet.php:12 boot.php:1296 include/nav.php:91 +#: mod/bookmarklet.php:12 boot.php:1293 include/nav.php:91 msgid "Login" msgstr "" @@ -1956,19 +1948,19 @@ msgstr "" msgid "Theme settings updated." msgstr "" -#: mod/admin.php:127 mod/admin.php:713 +#: mod/admin.php:127 mod/admin.php:711 msgid "Site" msgstr "" -#: mod/admin.php:128 mod/admin.php:657 mod/admin.php:1109 mod/admin.php:1124 +#: mod/admin.php:128 mod/admin.php:655 mod/admin.php:1106 mod/admin.php:1121 msgid "Users" msgstr "" -#: mod/admin.php:129 mod/admin.php:1213 mod/admin.php:1273 mod/settings.php:66 +#: mod/admin.php:129 mod/admin.php:1210 mod/admin.php:1270 mod/settings.php:66 msgid "Plugins" msgstr "" -#: mod/admin.php:130 mod/admin.php:1458 mod/admin.php:1509 +#: mod/admin.php:130 mod/admin.php:1455 mod/admin.php:1506 msgid "Themes" msgstr "" @@ -1980,7 +1972,7 @@ msgstr "" msgid "Inspect Queue" msgstr "" -#: mod/admin.php:147 mod/admin.php:156 mod/admin.php:1597 +#: mod/admin.php:147 mod/admin.php:156 mod/admin.php:1594 msgid "Logs" msgstr "" @@ -2008,9 +2000,9 @@ msgstr "" msgid "User registrations waiting for confirmation" msgstr "" -#: mod/admin.php:222 mod/admin.php:272 mod/admin.php:712 mod/admin.php:1108 -#: mod/admin.php:1212 mod/admin.php:1272 mod/admin.php:1457 mod/admin.php:1508 -#: mod/admin.php:1596 +#: mod/admin.php:222 mod/admin.php:272 mod/admin.php:710 mod/admin.php:1105 +#: mod/admin.php:1209 mod/admin.php:1269 mod/admin.php:1454 mod/admin.php:1505 +#: mod/admin.php:1593 msgid "Administration" msgstr "" @@ -2041,19 +2033,19 @@ msgid "" "eventually deleted if the delivery fails permanently." msgstr "" -#: mod/admin.php:243 mod/admin.php:1062 +#: mod/admin.php:243 mod/admin.php:1059 msgid "Normal Account" msgstr "" -#: mod/admin.php:244 mod/admin.php:1063 +#: mod/admin.php:244 mod/admin.php:1060 msgid "Soapbox Account" msgstr "" -#: mod/admin.php:245 mod/admin.php:1064 +#: mod/admin.php:245 mod/admin.php:1061 msgid "Community/Celebrity Account" msgstr "" -#: mod/admin.php:246 mod/admin.php:1065 +#: mod/admin.php:246 mod/admin.php:1062 msgid "Automatic Friend Account" msgstr "" @@ -2093,635 +2085,625 @@ msgstr "" msgid "Can not parse base url. Must have at least ://" msgstr "" -#: mod/admin.php:589 +#: mod/admin.php:587 msgid "RINO2 needs mcrypt php extension to work." msgstr "" -#: mod/admin.php:597 +#: mod/admin.php:595 msgid "Site settings updated." msgstr "" -#: mod/admin.php:621 mod/settings.php:903 +#: mod/admin.php:619 mod/settings.php:903 msgid "No special theme for mobile devices" msgstr "" -#: mod/admin.php:640 +#: mod/admin.php:638 msgid "No community page" msgstr "" -#: mod/admin.php:641 +#: mod/admin.php:639 msgid "Public postings from users of this site" msgstr "" -#: mod/admin.php:642 +#: mod/admin.php:640 msgid "Global community page" msgstr "" -#: mod/admin.php:648 +#: mod/admin.php:646 msgid "At post arrival" msgstr "" -#: mod/admin.php:649 include/contact_selectors.php:56 +#: mod/admin.php:647 include/contact_selectors.php:56 msgid "Frequently" msgstr "" -#: mod/admin.php:650 include/contact_selectors.php:57 +#: mod/admin.php:648 include/contact_selectors.php:57 msgid "Hourly" msgstr "" -#: mod/admin.php:651 include/contact_selectors.php:58 +#: mod/admin.php:649 include/contact_selectors.php:58 msgid "Twice daily" msgstr "" -#: mod/admin.php:652 include/contact_selectors.php:59 +#: mod/admin.php:650 include/contact_selectors.php:59 msgid "Daily" msgstr "" -#: mod/admin.php:658 +#: mod/admin.php:656 msgid "Users, Global Contacts" msgstr "" -#: mod/admin.php:659 +#: mod/admin.php:657 msgid "Users, Global Contacts/fallback" msgstr "" -#: mod/admin.php:663 +#: mod/admin.php:661 msgid "One month" msgstr "" -#: mod/admin.php:664 +#: mod/admin.php:662 msgid "Three months" msgstr "" -#: mod/admin.php:665 +#: mod/admin.php:663 msgid "Half a year" msgstr "" -#: mod/admin.php:666 +#: mod/admin.php:664 msgid "One year" msgstr "" -#: mod/admin.php:671 +#: mod/admin.php:669 msgid "Multi user instance" msgstr "" -#: mod/admin.php:694 +#: mod/admin.php:692 msgid "Closed" msgstr "" -#: mod/admin.php:695 +#: mod/admin.php:693 msgid "Requires approval" msgstr "" -#: mod/admin.php:696 +#: mod/admin.php:694 msgid "Open" msgstr "" -#: mod/admin.php:700 +#: mod/admin.php:698 msgid "No SSL policy, links will track page SSL state" msgstr "" -#: mod/admin.php:701 +#: mod/admin.php:699 msgid "Force all links to use SSL" msgstr "" -#: mod/admin.php:702 +#: mod/admin.php:700 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "" -#: mod/admin.php:714 mod/admin.php:1274 mod/admin.php:1510 mod/admin.php:1598 +#: mod/admin.php:712 mod/admin.php:1271 mod/admin.php:1507 mod/admin.php:1595 #: mod/settings.php:650 mod/settings.php:760 mod/settings.php:804 #: mod/settings.php:873 mod/settings.php:960 mod/settings.php:1195 msgid "Save Settings" msgstr "" -#: mod/admin.php:715 mod/register.php:263 +#: mod/admin.php:713 mod/register.php:263 msgid "Registration" msgstr "" -#: mod/admin.php:716 +#: mod/admin.php:714 msgid "File upload" msgstr "" -#: mod/admin.php:717 +#: mod/admin.php:715 msgid "Policies" msgstr "" -#: mod/admin.php:718 +#: mod/admin.php:716 msgid "Advanced" msgstr "" -#: mod/admin.php:719 +#: mod/admin.php:717 msgid "Auto Discovered Contact Directory" msgstr "" -#: mod/admin.php:720 +#: mod/admin.php:718 msgid "Performance" msgstr "" -#: mod/admin.php:721 +#: mod/admin.php:719 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "" -#: mod/admin.php:724 +#: mod/admin.php:722 msgid "Site name" msgstr "" -#: mod/admin.php:725 +#: mod/admin.php:723 msgid "Host name" msgstr "" -#: mod/admin.php:726 +#: mod/admin.php:724 msgid "Sender Email" msgstr "" -#: mod/admin.php:726 +#: mod/admin.php:724 msgid "" "The email address your server shall use to send notification emails from." msgstr "" -#: mod/admin.php:727 +#: mod/admin.php:725 msgid "Banner/Logo" msgstr "" -#: mod/admin.php:728 +#: mod/admin.php:726 msgid "Shortcut icon" msgstr "" -#: mod/admin.php:728 +#: mod/admin.php:726 msgid "Link to an icon that will be used for browsers." msgstr "" -#: mod/admin.php:729 +#: mod/admin.php:727 msgid "Touch icon" msgstr "" -#: mod/admin.php:729 +#: mod/admin.php:727 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: mod/admin.php:730 +#: mod/admin.php:728 msgid "Additional Info" msgstr "" -#: mod/admin.php:730 +#: mod/admin.php:728 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/siteinfo." msgstr "" -#: mod/admin.php:731 +#: mod/admin.php:729 msgid "System language" msgstr "" -#: mod/admin.php:732 +#: mod/admin.php:730 msgid "System theme" msgstr "" -#: mod/admin.php:732 +#: mod/admin.php:730 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: mod/admin.php:733 +#: mod/admin.php:731 msgid "Mobile system theme" msgstr "" -#: mod/admin.php:733 +#: mod/admin.php:731 msgid "Theme for mobile devices" msgstr "" -#: mod/admin.php:734 +#: mod/admin.php:732 msgid "SSL link policy" msgstr "" -#: mod/admin.php:734 +#: mod/admin.php:732 msgid "Determines whether generated links should be forced to use SSL" msgstr "" -#: mod/admin.php:735 +#: mod/admin.php:733 msgid "Force SSL" msgstr "" -#: mod/admin.php:735 +#: mod/admin.php:733 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead " "to endless loops." msgstr "" -#: mod/admin.php:736 +#: mod/admin.php:734 msgid "Old style 'Share'" msgstr "" -#: mod/admin.php:736 +#: mod/admin.php:734 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "" -#: mod/admin.php:737 +#: mod/admin.php:735 msgid "Hide help entry from navigation menu" msgstr "" -#: mod/admin.php:737 +#: mod/admin.php:735 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "" -#: mod/admin.php:738 +#: mod/admin.php:736 msgid "Single user instance" msgstr "" -#: mod/admin.php:738 +#: mod/admin.php:736 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: mod/admin.php:739 +#: mod/admin.php:737 msgid "Maximum image size" msgstr "" -#: mod/admin.php:739 +#: mod/admin.php:737 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "" -#: mod/admin.php:740 +#: mod/admin.php:738 msgid "Maximum image length" msgstr "" -#: mod/admin.php:740 +#: mod/admin.php:738 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "" -#: mod/admin.php:741 +#: mod/admin.php:739 msgid "JPEG image quality" msgstr "" -#: mod/admin.php:741 +#: mod/admin.php:739 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "" -#: mod/admin.php:743 +#: mod/admin.php:741 msgid "Register policy" msgstr "" -#: mod/admin.php:744 +#: mod/admin.php:742 msgid "Maximum Daily Registrations" msgstr "" -#: mod/admin.php:744 +#: mod/admin.php:742 msgid "" "If registration is permitted above, this sets the maximum number of new user " "registrations to accept per day. If register is set to closed, this setting " "has no effect." msgstr "" -#: mod/admin.php:745 +#: mod/admin.php:743 msgid "Register text" msgstr "" -#: mod/admin.php:745 +#: mod/admin.php:743 msgid "Will be displayed prominently on the registration page." msgstr "" -#: mod/admin.php:746 +#: mod/admin.php:744 msgid "Accounts abandoned after x days" msgstr "" -#: mod/admin.php:746 +#: mod/admin.php:744 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: mod/admin.php:747 +#: mod/admin.php:745 msgid "Allowed friend domains" msgstr "" -#: mod/admin.php:747 +#: mod/admin.php:745 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: mod/admin.php:748 +#: mod/admin.php:746 msgid "Allowed email domains" msgstr "" -#: mod/admin.php:748 +#: mod/admin.php:746 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 "" -#: mod/admin.php:749 +#: mod/admin.php:747 msgid "Block public" msgstr "" -#: mod/admin.php:749 +#: mod/admin.php:747 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "" -#: mod/admin.php:750 +#: mod/admin.php:748 msgid "Force publish" msgstr "" -#: mod/admin.php:750 +#: mod/admin.php:748 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: mod/admin.php:751 +#: mod/admin.php:749 msgid "Global directory URL" msgstr "" -#: mod/admin.php:751 +#: mod/admin.php:749 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "" -#: mod/admin.php:752 +#: mod/admin.php:750 msgid "Allow threaded items" msgstr "" -#: mod/admin.php:752 +#: mod/admin.php:750 msgid "Allow infinite level threading for items on this site." msgstr "" -#: mod/admin.php:753 +#: mod/admin.php:751 msgid "Private posts by default for new users" msgstr "" -#: mod/admin.php:753 +#: mod/admin.php:751 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "" -#: mod/admin.php:754 +#: mod/admin.php:752 msgid "Don't include post content in email notifications" msgstr "" -#: mod/admin.php:754 +#: mod/admin.php:752 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "" -#: mod/admin.php:755 +#: mod/admin.php:753 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: mod/admin.php:755 +#: mod/admin.php:753 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: mod/admin.php:756 +#: mod/admin.php:754 msgid "Don't embed private images in posts" msgstr "" -#: mod/admin.php:756 +#: mod/admin.php:754 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " "photos will have to authenticate and load each image, which may take a while." msgstr "" -#: mod/admin.php:757 +#: mod/admin.php:755 msgid "Allow Users to set remote_self" msgstr "" -#: mod/admin.php:757 +#: mod/admin.php:755 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "" -#: mod/admin.php:758 +#: mod/admin.php:756 msgid "Block multiple registrations" msgstr "" -#: mod/admin.php:758 +#: mod/admin.php:756 msgid "Disallow users to register additional accounts for use as pages." msgstr "" -#: mod/admin.php:759 +#: mod/admin.php:757 msgid "OpenID support" msgstr "" -#: mod/admin.php:759 +#: mod/admin.php:757 msgid "OpenID support for registration and logins." msgstr "" -#: mod/admin.php:760 +#: mod/admin.php:758 msgid "Fullname check" msgstr "" -#: mod/admin.php:760 +#: mod/admin.php:758 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "" -#: mod/admin.php:761 +#: mod/admin.php:759 msgid "UTF-8 Regular expressions" msgstr "" -#: mod/admin.php:761 +#: mod/admin.php:759 msgid "Use PHP UTF8 regular expressions" msgstr "" -#: mod/admin.php:762 +#: mod/admin.php:760 msgid "Community Page Style" msgstr "" -#: mod/admin.php:762 +#: mod/admin.php:760 msgid "" "Type of community page to show. 'Global community' shows every public " "posting from an open distributed network that arrived on this server." msgstr "" -#: mod/admin.php:763 +#: mod/admin.php:761 msgid "Posts per user on community page" msgstr "" -#: mod/admin.php:763 +#: mod/admin.php:761 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" msgstr "" -#: mod/admin.php:764 +#: mod/admin.php:762 msgid "Enable OStatus support" msgstr "" -#: mod/admin.php:764 +#: mod/admin.php:762 msgid "" "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "" -#: mod/admin.php:765 +#: mod/admin.php:763 msgid "OStatus conversation completion interval" msgstr "" -#: mod/admin.php:765 +#: mod/admin.php:763 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "" -#: mod/admin.php:766 +#: mod/admin.php:764 msgid "OStatus support can only be enabled if threading is enabled." msgstr "" -#: mod/admin.php:768 +#: mod/admin.php:766 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub " "directory." msgstr "" -#: mod/admin.php:769 +#: mod/admin.php:767 msgid "Enable Diaspora support" msgstr "" -#: mod/admin.php:769 +#: mod/admin.php:767 msgid "Provide built-in Diaspora network compatibility." msgstr "" -#: mod/admin.php:770 +#: mod/admin.php:768 msgid "Only allow Friendica contacts" msgstr "" -#: mod/admin.php:770 +#: mod/admin.php:768 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "" -#: mod/admin.php:771 +#: mod/admin.php:769 msgid "Verify SSL" msgstr "" -#: mod/admin.php:771 +#: mod/admin.php:769 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you " "cannot connect (at all) to self-signed SSL sites." msgstr "" -#: mod/admin.php:772 +#: mod/admin.php:770 msgid "Proxy user" msgstr "" -#: mod/admin.php:773 +#: mod/admin.php:771 msgid "Proxy URL" msgstr "" -#: mod/admin.php:774 +#: mod/admin.php:772 msgid "Network timeout" msgstr "" -#: mod/admin.php:774 +#: mod/admin.php:772 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: mod/admin.php:775 +#: mod/admin.php:773 msgid "Delivery interval" msgstr "" -#: mod/admin.php:775 +#: mod/admin.php:773 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 "" -#: mod/admin.php:776 +#: mod/admin.php:774 msgid "Poll interval" msgstr "" -#: mod/admin.php:776 +#: mod/admin.php:774 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "" -#: mod/admin.php:777 +#: mod/admin.php:775 msgid "Maximum Load Average" msgstr "" -#: mod/admin.php:777 +#: mod/admin.php:775 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "" -#: mod/admin.php:778 +#: mod/admin.php:776 msgid "Maximum Load Average (Frontend)" msgstr "" -#: mod/admin.php:778 +#: mod/admin.php:776 msgid "Maximum system load before the frontend quits service - default 50." msgstr "" -#: mod/admin.php:779 +#: mod/admin.php:777 msgid "Maximum table size for optimization" msgstr "" -#: mod/admin.php:779 +#: mod/admin.php:777 msgid "" "Maximum table size (in MB) for the automatic optimization - default 100 MB. " "Enter -1 to disable it." msgstr "" -#: mod/admin.php:780 -msgid "Minimum level of fragmentation" -msgstr "" - -#: mod/admin.php:780 -msgid "" -"Minimum fragmenation level to start the automatic optimization - default " -"value is 30%." -msgstr "" - -#: mod/admin.php:782 +#: mod/admin.php:779 msgid "Periodical check of global contacts" msgstr "" -#: mod/admin.php:782 +#: mod/admin.php:779 msgid "" "If enabled, the global contacts are checked periodically for missing or " "outdated data and the vitality of the contacts and servers." msgstr "" -#: mod/admin.php:783 +#: mod/admin.php:780 msgid "Days between requery" msgstr "" -#: mod/admin.php:783 +#: mod/admin.php:780 msgid "Number of days after which a server is requeried for his contacts." msgstr "" -#: mod/admin.php:784 +#: mod/admin.php:781 msgid "Discover contacts from other servers" msgstr "" -#: mod/admin.php:784 +#: mod/admin.php:781 msgid "" "Periodically query other servers for contacts. You can choose between " "'users': the users on the remote system, 'Global Contacts': active contacts " @@ -2731,32 +2713,32 @@ msgid "" "Global Contacts'." msgstr "" -#: mod/admin.php:785 +#: mod/admin.php:782 msgid "Timeframe for fetching global contacts" msgstr "" -#: mod/admin.php:785 +#: mod/admin.php:782 msgid "" "When the discovery is activated, this value defines the timeframe for the " "activity of the global contacts that are fetched from other servers." msgstr "" -#: mod/admin.php:786 +#: mod/admin.php:783 msgid "Search the local directory" msgstr "" -#: mod/admin.php:786 +#: mod/admin.php:783 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "" -#: mod/admin.php:788 +#: mod/admin.php:785 msgid "Publish server information" msgstr "" -#: mod/admin.php:788 +#: mod/admin.php:785 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -2764,204 +2746,204 @@ msgid "" "href='http://the-federation.info/'>the-federation.info for details." msgstr "" -#: mod/admin.php:790 +#: mod/admin.php:787 msgid "Use MySQL full text engine" msgstr "" -#: mod/admin.php:790 +#: mod/admin.php:787 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "" -#: mod/admin.php:791 +#: mod/admin.php:788 msgid "Suppress Language" msgstr "" -#: mod/admin.php:791 +#: mod/admin.php:788 msgid "Suppress language information in meta information about a posting." msgstr "" -#: mod/admin.php:792 +#: mod/admin.php:789 msgid "Suppress Tags" msgstr "" -#: mod/admin.php:792 +#: mod/admin.php:789 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: mod/admin.php:793 +#: mod/admin.php:790 msgid "Path to item cache" msgstr "" -#: mod/admin.php:793 +#: mod/admin.php:790 msgid "The item caches buffers generated bbcode and external images." msgstr "" -#: mod/admin.php:794 +#: mod/admin.php:791 msgid "Cache duration in seconds" msgstr "" -#: mod/admin.php:794 +#: mod/admin.php:791 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One " "day). To disable the item cache, set the value to -1." msgstr "" -#: mod/admin.php:795 +#: mod/admin.php:792 msgid "Maximum numbers of comments per post" msgstr "" -#: mod/admin.php:795 +#: mod/admin.php:792 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: mod/admin.php:796 +#: mod/admin.php:793 msgid "Path for lock file" msgstr "" -#: mod/admin.php:796 +#: mod/admin.php:793 msgid "" "The lock file is used to avoid multiple pollers at one time. Only define a " "folder here." msgstr "" -#: mod/admin.php:797 +#: mod/admin.php:794 msgid "Temp path" msgstr "" -#: mod/admin.php:797 +#: mod/admin.php:794 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "" -#: mod/admin.php:798 +#: mod/admin.php:795 msgid "Base path to installation" msgstr "" -#: mod/admin.php:798 +#: mod/admin.php:795 msgid "" "If the system cannot detect the correct path to your installation, enter the " "correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "" -#: mod/admin.php:799 +#: mod/admin.php:796 msgid "Disable picture proxy" msgstr "" -#: mod/admin.php:799 +#: mod/admin.php:796 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on " "systems with very low bandwith." msgstr "" -#: mod/admin.php:800 +#: mod/admin.php:797 msgid "Enable old style pager" msgstr "" -#: mod/admin.php:800 +#: mod/admin.php:797 msgid "" "The old style pager has page numbers but slows down massively the page speed." msgstr "" -#: mod/admin.php:801 +#: mod/admin.php:798 msgid "Only search in tags" msgstr "" -#: mod/admin.php:801 +#: mod/admin.php:798 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: mod/admin.php:803 +#: mod/admin.php:800 msgid "New base url" msgstr "" -#: mod/admin.php:803 +#: mod/admin.php:800 msgid "" "Change base url for this server. Sends relocate message to all DFRN contacts " "of all users." msgstr "" -#: mod/admin.php:805 +#: mod/admin.php:802 msgid "RINO Encryption" msgstr "" -#: mod/admin.php:805 +#: mod/admin.php:802 msgid "Encryption layer between nodes." msgstr "" -#: mod/admin.php:806 +#: mod/admin.php:803 msgid "Embedly API key" msgstr "" -#: mod/admin.php:806 +#: mod/admin.php:803 msgid "" "Embedly is used to fetch additional data for " "web pages. This is an optional parameter." msgstr "" -#: mod/admin.php:824 +#: mod/admin.php:821 msgid "Update has been marked successful" msgstr "" -#: mod/admin.php:832 +#: mod/admin.php:829 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: mod/admin.php:835 +#: mod/admin.php:832 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: mod/admin.php:847 +#: mod/admin.php:844 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: mod/admin.php:850 +#: mod/admin.php:847 #, php-format msgid "Update %s was successfully applied." msgstr "" -#: mod/admin.php:854 +#: mod/admin.php:851 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: mod/admin.php:856 +#: mod/admin.php:853 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: mod/admin.php:875 +#: mod/admin.php:872 msgid "No failed updates." msgstr "" -#: mod/admin.php:876 +#: mod/admin.php:873 msgid "Check database structure" msgstr "" -#: mod/admin.php:881 +#: mod/admin.php:878 msgid "Failed Updates" msgstr "" -#: mod/admin.php:882 +#: mod/admin.php:879 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "" -#: mod/admin.php:883 +#: mod/admin.php:880 msgid "Mark success (if update was manually applied)" msgstr "" -#: mod/admin.php:884 +#: mod/admin.php:881 msgid "Attempt to execute this update step automatically" msgstr "" -#: mod/admin.php:916 +#: mod/admin.php:913 #, php-format msgid "" "\n" @@ -2969,7 +2951,7 @@ msgid "" "\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: mod/admin.php:919 +#: mod/admin.php:916 #, php-format msgid "" "\n" @@ -3005,231 +2987,231 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "" -#: mod/admin.php:951 include/user.php:423 +#: mod/admin.php:948 include/user.php:423 #, php-format msgid "Registration details for %s" msgstr "" -#: mod/admin.php:963 +#: mod/admin.php:960 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "" msgstr[1] "" -#: mod/admin.php:970 +#: mod/admin.php:967 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "" msgstr[1] "" -#: mod/admin.php:1009 +#: mod/admin.php:1006 #, php-format msgid "User '%s' deleted" msgstr "" -#: mod/admin.php:1017 +#: mod/admin.php:1014 #, php-format msgid "User '%s' unblocked" msgstr "" -#: mod/admin.php:1017 +#: mod/admin.php:1014 #, php-format msgid "User '%s' blocked" msgstr "" -#: mod/admin.php:1110 +#: mod/admin.php:1107 msgid "Add User" msgstr "" -#: mod/admin.php:1111 +#: mod/admin.php:1108 msgid "select all" msgstr "" -#: mod/admin.php:1112 +#: mod/admin.php:1109 msgid "User registrations waiting for confirm" msgstr "" -#: mod/admin.php:1113 +#: mod/admin.php:1110 msgid "User waiting for permanent deletion" msgstr "" -#: mod/admin.php:1114 +#: mod/admin.php:1111 msgid "Request date" msgstr "" -#: mod/admin.php:1114 mod/admin.php:1126 mod/admin.php:1127 mod/admin.php:1142 +#: mod/admin.php:1111 mod/admin.php:1123 mod/admin.php:1124 mod/admin.php:1139 #: include/contact_selectors.php:79 include/contact_selectors.php:86 msgid "Email" msgstr "" -#: mod/admin.php:1115 +#: mod/admin.php:1112 msgid "No registrations." msgstr "" -#: mod/admin.php:1117 +#: mod/admin.php:1114 msgid "Deny" msgstr "" -#: mod/admin.php:1121 +#: mod/admin.php:1118 msgid "Site admin" msgstr "" -#: mod/admin.php:1122 +#: mod/admin.php:1119 msgid "Account expired" msgstr "" -#: mod/admin.php:1125 +#: mod/admin.php:1122 msgid "New User" msgstr "" -#: mod/admin.php:1126 mod/admin.php:1127 +#: mod/admin.php:1123 mod/admin.php:1124 msgid "Register date" msgstr "" -#: mod/admin.php:1126 mod/admin.php:1127 +#: mod/admin.php:1123 mod/admin.php:1124 msgid "Last login" msgstr "" -#: mod/admin.php:1126 mod/admin.php:1127 +#: mod/admin.php:1123 mod/admin.php:1124 msgid "Last item" msgstr "" -#: mod/admin.php:1126 +#: mod/admin.php:1123 msgid "Deleted since" msgstr "" -#: mod/admin.php:1127 mod/settings.php:41 +#: mod/admin.php:1124 mod/settings.php:41 msgid "Account" msgstr "" -#: mod/admin.php:1129 +#: mod/admin.php:1126 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: mod/admin.php:1130 +#: mod/admin.php:1127 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: mod/admin.php:1140 +#: mod/admin.php:1137 msgid "Name of the new user." msgstr "" -#: mod/admin.php:1141 +#: mod/admin.php:1138 msgid "Nickname" msgstr "" -#: mod/admin.php:1141 +#: mod/admin.php:1138 msgid "Nickname of the new user." msgstr "" -#: mod/admin.php:1142 +#: mod/admin.php:1139 msgid "Email address of the new user." msgstr "" -#: mod/admin.php:1175 +#: mod/admin.php:1172 #, php-format msgid "Plugin %s disabled." msgstr "" -#: mod/admin.php:1179 +#: mod/admin.php:1176 #, php-format msgid "Plugin %s enabled." msgstr "" -#: mod/admin.php:1189 mod/admin.php:1413 +#: mod/admin.php:1186 mod/admin.php:1410 msgid "Disable" msgstr "" -#: mod/admin.php:1191 mod/admin.php:1415 +#: mod/admin.php:1188 mod/admin.php:1412 msgid "Enable" msgstr "" -#: mod/admin.php:1214 mod/admin.php:1459 +#: mod/admin.php:1211 mod/admin.php:1456 msgid "Toggle" msgstr "" -#: mod/admin.php:1222 mod/admin.php:1469 +#: mod/admin.php:1219 mod/admin.php:1466 msgid "Author: " msgstr "" -#: mod/admin.php:1223 mod/admin.php:1470 +#: mod/admin.php:1220 mod/admin.php:1467 msgid "Maintainer: " msgstr "" -#: mod/admin.php:1275 +#: mod/admin.php:1272 #: view/smarty3/compiled/f835364006028b1061f37be121c9bd9db5fa50a9.file.admin_plugins.tpl.php:42 msgid "Reload active plugins" msgstr "" -#: mod/admin.php:1373 +#: mod/admin.php:1370 msgid "No themes found." msgstr "" -#: mod/admin.php:1451 +#: mod/admin.php:1448 msgid "Screenshot" msgstr "" -#: mod/admin.php:1511 +#: mod/admin.php:1508 msgid "Reload active themes" msgstr "" -#: mod/admin.php:1515 +#: mod/admin.php:1512 msgid "[Experimental]" msgstr "" -#: mod/admin.php:1516 +#: mod/admin.php:1513 msgid "[Unsupported]" msgstr "" -#: mod/admin.php:1543 +#: mod/admin.php:1540 msgid "Log settings updated." msgstr "" -#: mod/admin.php:1599 +#: mod/admin.php:1596 msgid "Clear" msgstr "" -#: mod/admin.php:1605 +#: mod/admin.php:1602 msgid "Enable Debugging" msgstr "" -#: mod/admin.php:1606 +#: mod/admin.php:1603 msgid "Log file" msgstr "" -#: mod/admin.php:1606 +#: mod/admin.php:1603 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "" -#: mod/admin.php:1607 +#: mod/admin.php:1604 msgid "Log level" msgstr "" -#: mod/admin.php:1657 include/acl_selectors.php:348 +#: mod/admin.php:1654 include/acl_selectors.php:348 msgid "Close" msgstr "" -#: mod/admin.php:1663 +#: mod/admin.php:1660 msgid "FTP Host" msgstr "" -#: mod/admin.php:1664 +#: mod/admin.php:1661 msgid "FTP Path" msgstr "" -#: mod/admin.php:1665 +#: mod/admin.php:1662 msgid "FTP User" msgstr "" -#: mod/admin.php:1666 +#: mod/admin.php:1663 msgid "FTP Password" msgstr "" @@ -3620,7 +3602,7 @@ msgid_plural "comments" msgstr[0] "" msgstr[1] "" -#: mod/content.php:608 boot.php:788 object/Item.php:422 +#: mod/content.php:608 boot.php:785 object/Item.php:422 #: include/contact_widgets.php:242 include/forums.php:110 #: include/items.php:5178 view/theme/vier/theme.php:264 msgid "show more" @@ -3660,7 +3642,7 @@ msgid "This is you" msgstr "" #: mod/content.php:711 mod/photos.php:1629 mod/photos.php:1677 -#: mod/photos.php:1765 boot.php:787 object/Item.php:393 object/Item.php:709 +#: mod/photos.php:1765 boot.php:784 object/Item.php:393 object/Item.php:709 msgid "Comment" msgstr "" @@ -4263,8 +4245,7 @@ msgstr "" msgid "Private forum has no privacy permissions and no default privacy group." msgstr "" -#: mod/settings.php:573 addons-extra/etherpadlite/etherpadlite.php:70 -#: addons-extra/fbgroup/fbgroup.php:153 addons-extra/donate/donate.php:55 +#: mod/settings.php:573 msgid "Settings updated." msgstr "" @@ -4422,7 +4403,6 @@ msgid "Security:" msgstr "" #: mod/settings.php:866 mod/settings.php:871 -#: addons-extra/fbgroup/fbgroup.php:253 addons-extra/fbgroup/fbgroup.php:255 msgid "None" msgstr "" @@ -5096,7 +5076,7 @@ msgstr "" msgid "Choose a nickname: " msgstr "" -#: mod/register.php:280 boot.php:1271 include/nav.php:108 +#: mod/register.php:280 boot.php:1268 include/nav.php:108 msgid "Register" msgstr "" @@ -6140,60 +6120,60 @@ msgstr "" msgid "Item was not found." msgstr "" -#: boot.php:786 +#: boot.php:783 msgid "Delete this item?" msgstr "" -#: boot.php:789 +#: boot.php:786 msgid "show fewer" msgstr "" -#: boot.php:1163 +#: boot.php:1160 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: boot.php:1270 +#: boot.php:1267 msgid "Create a New Account" msgstr "" -#: boot.php:1295 include/nav.php:72 +#: boot.php:1292 include/nav.php:72 msgid "Logout" msgstr "" -#: boot.php:1298 +#: boot.php:1295 msgid "Nickname or Email address: " msgstr "" -#: boot.php:1299 +#: boot.php:1296 msgid "Password: " msgstr "" -#: boot.php:1300 +#: boot.php:1297 msgid "Remember me" msgstr "" -#: boot.php:1303 +#: boot.php:1300 msgid "Or login using OpenID: " msgstr "" -#: boot.php:1309 +#: boot.php:1306 msgid "Forgot your password?" msgstr "" -#: boot.php:1312 +#: boot.php:1309 msgid "Website Terms of Service" msgstr "" -#: boot.php:1313 +#: boot.php:1310 msgid "terms of service" msgstr "" -#: boot.php:1315 +#: boot.php:1312 msgid "Website Privacy Policy" msgstr "" -#: boot.php:1316 +#: boot.php:1313 msgid "privacy policy" msgstr "" @@ -7333,8 +7313,6 @@ msgid "Item filed" msgstr "" #: include/bbcode.php:483 include/bbcode.php:1143 include/bbcode.php:1144 -#: addons-extra/bbextra/bbextra.php:33 addons-extra/bbextra/bbextra.php:34 -#: addons-extra/bbextra/bbextra.php:35 addons-extra/bbextra/bbextra.php:36 msgid "Image/photo" msgstr "" @@ -7631,43 +7609,43 @@ msgstr "" msgid "Site map" msgstr "" -#: include/api.php:321 include/api.php:332 include/api.php:441 -#: include/api.php:1160 include/api.php:1162 +#: include/api.php:343 include/api.php:354 include/api.php:463 +#: include/api.php:1182 include/api.php:1184 msgid "User not found." msgstr "" -#: include/api.php:808 +#: include/api.php:830 #, php-format msgid "Daily posting limit of %d posts reached. The post was rejected." msgstr "" -#: include/api.php:827 +#: include/api.php:849 #, php-format msgid "Weekly posting limit of %d posts reached. The post was rejected." msgstr "" -#: include/api.php:846 +#: include/api.php:868 #, php-format msgid "Monthly posting limit of %d posts reached. The post was rejected." msgstr "" -#: include/api.php:1369 +#: include/api.php:1391 msgid "There is no status with this id." msgstr "" -#: include/api.php:1443 +#: include/api.php:1465 msgid "There is no conversation with this id." msgstr "" -#: include/api.php:1722 +#: include/api.php:1744 msgid "Invalid item." msgstr "" -#: include/api.php:1732 +#: include/api.php:1754 msgid "Invalid action. " msgstr "" -#: include/api.php:1740 +#: include/api.php:1762 msgid "DB error" msgstr "" @@ -8362,369 +8340,6 @@ msgstr[1] "" msgid "Done. You can now login with your username and password" msgstr "" -#: addons-extra/pool_master/pool_master.php:19 -msgid "Pool Master" -msgstr "" - -#: addons-extra/apps/apps.php:19 -msgid "Test Addon" -msgstr "" - -#: addons-extra/video_chat/video_chat.php:19 -msgid "Video Chat" -msgstr "" - -#: addons-extra/video_chat/video_chat.php:30 -msgid "" -"You must be authenticated to use this addon! Either login, or visit this " -"site via a magic link. " -msgstr "" - -#: addons-extra/moshimonsters/moshimonsters.php:19 -msgid "Moshi Monsters" -msgstr "" - -#: addons-extra/xkcd/xkcd.php:19 -msgid "XKCD" -msgstr "" - -#: addons-extra/mathletics/mathletics.php:19 -msgid "Mathletics" -msgstr "" - -#: addons-extra/fairy_fashion/fairy_fashion.php:20 -msgid "Fairy Fashion" -msgstr "" - -#: addons-extra/etherpadlite/etherpadlite.php:40 -msgid "Etherpad-Lite" -msgstr "" - -#: addons-extra/etherpadlite/etherpadlite.php:49 -msgid "Only local user can access the Etherpad-Lite app." -msgstr "" - -#: addons-extra/etherpadlite/etherpadlite.php:64 -msgid "Etherpad-Lite Base URL" -msgstr "" - -#: addons-extra/etherpadlite/etherpadlite.php:64 -msgid "Absolute path to your Etherpad-Lite installation. (with trailing slash)" -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:181 -msgid "Facebook Group disabled" -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:201 -msgid "Facebook API key is missing." -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:208 addons-extra/fbgroup/fbgroup.php:292 -msgid "Facebook Group" -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:214 -msgid "Install Facebook Group connector for this account." -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:221 -msgid "Remove Facebook Group connector" -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:226 -msgid "" -"Re-authenticate [This is necessary whenever your Facebook password is " -"changed.]" -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:233 -msgid "Post to Facebook group by default" -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:237 -msgid "Suppress \"View on friendica\"" -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:241 -msgid "Mirror wall posts from facebook to friendica." -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:251 -msgid "Post to page/group:" -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:293 -msgid "Facebook Group Settings" -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:308 -msgid "Facebook API Key" -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:315 -msgid "" -"Error: it appears that you have specified the App-ID and -Secret in your ." -"htconfig.php file. As long as they are specified there, they cannot be set " -"using this form.

" -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:317 -msgid "App-ID / API-Key" -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:318 -msgid "Application secret" -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:336 -msgid "The new values have been saved." -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:355 -msgid "Post to Facebook Group" -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:374 -#, php-format -msgid "%s:" -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:483 -msgid "" -"Post to Facebook cancelled because of multi-network access permission " -"conflict." -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:762 -msgid "View on Friendica" -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:798 -msgid "Facebook group post failed. Queued for retry." -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:816 -msgid "Administrator" -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:838 -msgid "Your Facebook connection became invalid. Please Re-authenticate." -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:839 -msgid "Facebook connection became invalid" -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:840 -#, php-format -msgid "" -"Hi %1$s,\n" -"\n" -"The connection between your accounts on %2$s and Facebook became invalid. " -"This usually happens after you change your Facebook-password. To enable the " -"connection again, you have to %3$sre-authenticate the Facebook-connector%4$s." -msgstr "" - -#: addons-extra/fbgroup/fbgroup.php:1445 -#, php-format -msgid "%1$feed likes %2$feed's %3$feed" -msgstr "" - -#: addons-extra/urban_dead/urban_dead.php:19 -msgid "Urban Dead" -msgstr "" - -#: addons-extra/maya_locations/maya_locations.php:151 -msgid "Maya Location Settings" -msgstr "" - -#: addons-extra/maya_locations/maya_locations.php:153 -msgid "Enable Maya Locations Plugin" -msgstr "" - -#: addons-extra/lasttweets/lasttweets.php:64 -msgid "Twitter Widget Settings" -msgstr "" - -#: addons-extra/lasttweets/lasttweets.php:65 -msgid "" -"You can include the widget in the sidebar of your Network strean (for your " -"eyes only) and on the bottom of your profile page (for everybody). Both " -"locations can be enabled separately with different search items and settings." -msgstr "" - -#: addons-extra/lasttweets/lasttweets.php:67 -msgid "Sidebar Settings" -msgstr "" - -#: addons-extra/lasttweets/lasttweets.php:69 -#: addons-extra/lasttweets/lasttweets.php:86 -msgid "Search Item at Twitter" -msgstr "" - -#: addons-extra/lasttweets/lasttweets.php:73 -#: addons-extra/lasttweets/lasttweets.php:90 -msgid "Inner Color (hexcode)" -msgstr "" - -#: addons-extra/lasttweets/lasttweets.php:77 -#: addons-extra/lasttweets/lasttweets.php:94 -msgid "Outer Color (hexcode)" -msgstr "" - -#: addons-extra/lasttweets/lasttweets.php:81 -msgid "Enable Twitter Widget (Sidebar)" -msgstr "" - -#: addons-extra/lasttweets/lasttweets.php:84 -msgid "Profile Settings" -msgstr "" - -#: addons-extra/lasttweets/lasttweets.php:98 -msgid "Enable Twitter Widget (Below Profile)" -msgstr "" - -#: addons-extra/cthulhu_mythos_locations/cthulhu_mythos_locations.php:150 -msgid "Cthulhu Mythos Location Settings" -msgstr "" - -#: addons-extra/cthulhu_mythos_locations/cthulhu_mythos_locations.php:152 -msgid "Enable Cthulhu Mythos Locations Plugin" -msgstr "" - -#: addons-extra/browser_quest/browser_quest.php:19 -msgid "Browser Quest" -msgstr "" - -#: addons-extra/donate/donate.php:61 -msgid "Image location of your preffered payment method" -msgstr "" - -#: addons-extra/donate/donate.php:61 -msgid "eg http://somewebsite.com/someimage.jpg" -msgstr "" - -#: addons-extra/donate/donate.php:62 -msgid "Method one link" -msgstr "" - -#: addons-extra/donate/donate.php:62 addons-extra/donate/donate.php:64 -#: addons-extra/donate/donate.php:66 addons-extra/donate/donate.php:68 -#: addons-extra/donate/donate.php:70 -msgid "Link to the payment gateway provided by your payment processor." -msgstr "" - -#: addons-extra/donate/donate.php:63 -msgid "Method Two" -msgstr "" - -#: addons-extra/donate/donate.php:63 -msgid "Image location of your second payment method" -msgstr "" - -#: addons-extra/donate/donate.php:64 -msgid "Method two URL" -msgstr "" - -#: addons-extra/donate/donate.php:65 -msgid "Method Three" -msgstr "" - -#: addons-extra/donate/donate.php:65 -msgid "Image location of your third payment method" -msgstr "" - -#: addons-extra/donate/donate.php:66 -msgid "Method three URL" -msgstr "" - -#: addons-extra/donate/donate.php:67 -msgid "Method Four" -msgstr "" - -#: addons-extra/donate/donate.php:67 -msgid "Image location of your fourth payment method" -msgstr "" - -#: addons-extra/donate/donate.php:68 -msgid "Method four URL" -msgstr "" - -#: addons-extra/donate/donate.php:69 -msgid "Method Five" -msgstr "" - -#: addons-extra/donate/donate.php:69 -msgid "Image location of your fifth payment method" -msgstr "" - -#: addons-extra/donate/donate.php:70 -msgid "Method five URL" -msgstr "" - -#: addons-extra/donate/donate.php:77 -msgid "Donate" -msgstr "" - -#: addons-extra/donate/donate.php:78 -msgid "" -"Public servers are not actually \"free\". Someone has to put their time and " -"effort into creating, and maintaining them, handling support requests, " -"fixing bugs, answering support requests, etc, etc. Access to free Friendica " -"servers is a privilege, not a right and can cost admins a significant amount " -"of money. Public servers are not scalable in the long term. The only way " -"we can grow to support new users is with YOUR help." -msgstr "" - -#: addons-extra/donate/donate.php:80 -msgid "" -"It is estimated by public server admins that the cost of hosting an " -"individual is between 1 and 2 cents per contact, per month. This may not " -"sound a lot, but multiply your 500 Facebook contacts by just ten users, and " -"you can see how this is unsustainable. Below are the payment methods your " -"admin can accept to help spread the cost of this service and ensure " -"Friendica public servers are available for everybody who needs one." -msgstr "" - -#: addons-extra/donate/donate.php:82 -msgid "" -"Donations are taken in good faith, and are non-refundable other than in " -"cases of fraud" -msgstr "" - -#: addons-extra/canicheatdeath/canicheatdeath.php:20 -msgid "Can I Cheat Death?" -msgstr "" - -#: addons-extra/flip/flip.php:19 -msgid "Flip the text" -msgstr "" - -#: addons-extra/kids_chat/kids_chat.php:19 -msgid "Kids Chat" -msgstr "" - -#: addons-extra/girlsgogames/girlsgogames.php:19 -msgid "GirlsGoGames" -msgstr "" - -#: addons-extra/weknowwhatyouredoing/weknowwhatyouredoing.php:20 -msgid "We Know What You Are Doing" -msgstr "" - -#: addons-extra/dungeons_and_treasures/dungeons_and_treasures.php:19 -msgid "Dungeons And Treasures" -msgstr "" - -#: addons-extra/binweevils/binweevils.php:19 -msgid "BinWeevils" -msgstr "" - -#: addons-extra/reddit/reddit.php:19 -msgid "Reddit Reader" -msgstr "" - #: index.php:441 msgid "toggle mobile" msgstr "" From e61d6e030eefa00685020f44601d3363814a5dae Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Mon, 14 Dec 2015 14:12:56 +0100 Subject: [PATCH 33/52] fix account_type --- include/identity.php | 10 +++++----- mod/photos.php | 2 +- mod/videos.php | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/include/identity.php b/include/identity.php index 2230d98a42..b5791ba1e9 100644 --- a/include/identity.php +++ b/include/identity.php @@ -287,11 +287,11 @@ if(! function_exists('profile_sidebar')) { } // check if profile is a forum - if((x($profile['page-flags']) == 2) - || (x($profile['page-flags']) == 5) - || (x($profile['forum'])) - || (x($profile['prv'])) - || (x($profile['community']))) + if((intval($profile['page-flags']) == PAGE_COMMUNITY) + || (intval($profile['page-flags']) == PAGE_PRVGROUP) + || (intval($profile['forum'])) + || (intval($profile['prv'])) + || (intval($profile['community']))) $account_type = t('Forum'); else $account_type = ""; diff --git a/mod/photos.php b/mod/photos.php index 6b97d7d4fb..a9dade6a81 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -37,7 +37,7 @@ function photos_init(&$a) { $profile = get_profiledata_by_nick($nick, $a->profile_uid); - if((x($profile['page-flags']) == 2) || (x($profile['page-flags']) == 5)) + if((intval($profile['page-flags']) == PAGE_COMMUNITY) || (intval($profile['page-flags']) == PAGE_PRVGROUP)) $account_type = t('Forum'); else $account_type = ""; diff --git a/mod/videos.php b/mod/videos.php index 7ea09d6a93..bf8d696b60 100644 --- a/mod/videos.php +++ b/mod/videos.php @@ -33,7 +33,7 @@ function videos_init(&$a) { $profile = get_profiledata_by_nick($nick, $a->profile_uid); - if((x($profile['page-flags']) == 2) || (x($profile['page-flags']) == 5)) + if((intval($profile['page-flags']) == PAGE_COMMUNITY) || (intval($profile['page-flags']) == PAGE_PRVGROUP)) $account_type = t('Forum'); else $account_type = ""; From e97a6dfb77f27c03da63d96a2995891f05856d0c Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 14 Dec 2015 16:27:00 +0100 Subject: [PATCH 34/52] DE update to the strings --- view/de/messages.po | 1304 +++++++++++++++++++++---------------------- view/de/strings.php | 65 +-- 2 files changed, 679 insertions(+), 690 deletions(-) diff --git a/view/de/messages.po b/view/de/messages.po index 5f5b92e292..6a47a710e8 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -32,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-30 13:14+0100\n" -"PO-Revision-Date: 2015-12-01 09:46+0000\n" +"POT-Creation-Date: 2015-12-14 07:48+0100\n" +"PO-Revision-Date: 2015-12-14 09:27+0000\n" "Last-Translator: Andreas H.\n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -42,233 +42,182 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: mod/contacts.php:118 +#: mod/contacts.php:50 include/identity.php:380 +msgid "Network:" +msgstr "Netzwerk" + +#: mod/contacts.php:51 mod/contacts.php:986 mod/videos.php:37 +#: mod/viewcontacts.php:105 mod/dirfind.php:208 mod/network.php:596 +#: mod/allfriends.php:72 mod/match.php:82 mod/directory.php:172 +#: mod/common.php:124 mod/suggest.php:95 mod/photos.php:41 +#: include/identity.php:295 +msgid "Forum" +msgstr "Forum" + +#: mod/contacts.php:128 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" msgstr[0] "%d Kontakt bearbeitet." msgstr[1] "%d Kontakte bearbeitet" -#: mod/contacts.php:149 mod/contacts.php:372 +#: mod/contacts.php:159 mod/contacts.php:382 msgid "Could not access contact record." msgstr "Konnte nicht auf die Kontaktdaten zugreifen." -#: mod/contacts.php:163 +#: mod/contacts.php:173 msgid "Could not locate selected profile." msgstr "Konnte das ausgewählte Profil nicht finden." -#: mod/contacts.php:196 +#: mod/contacts.php:206 msgid "Contact updated." msgstr "Kontakt aktualisiert." -#: mod/contacts.php:198 mod/dfrn_request.php:578 +#: mod/contacts.php:208 mod/dfrn_request.php:578 msgid "Failed to update contact record." msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." -#: mod/contacts.php:354 mod/manage.php:96 mod/display.php:496 +#: mod/contacts.php:364 mod/manage.php:96 mod/display.php:496 #: mod/profile_photo.php:19 mod/profile_photo.php:175 #: mod/profile_photo.php:186 mod/profile_photo.php:199 #: mod/ostatus_subscribe.php:9 mod/follow.php:10 mod/follow.php:72 #: mod/follow.php:137 mod/item.php:169 mod/item.php:185 mod/group.php:19 #: mod/dfrn_confirm.php:55 mod/fsuggest.php:78 mod/wall_upload.php:77 -#: mod/wall_upload.php:80 mod/viewcontacts.php:24 mod/notifications.php:69 -#: mod/message.php:45 mod/message.php:181 mod/crepair.php:120 +#: mod/wall_upload.php:80 mod/viewcontacts.php:40 mod/notifications.php:69 +#: mod/message.php:45 mod/message.php:181 mod/crepair.php:117 #: mod/dirfind.php:11 mod/nogroup.php:25 mod/network.php:4 -#: mod/allfriends.php:11 mod/events.php:165 mod/wallmessage.php:9 +#: mod/allfriends.php:12 mod/events.php:165 mod/wallmessage.php:9 #: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 #: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/settings.php:20 -#: mod/settings.php:116 mod/settings.php:635 mod/register.php:42 -#: mod/delegate.php:12 mod/common.php:17 mod/mood.php:114 mod/suggest.php:58 +#: mod/settings.php:116 mod/settings.php:637 mod/register.php:42 +#: mod/delegate.php:12 mod/common.php:18 mod/mood.php:114 mod/suggest.php:58 #: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10 #: mod/api.php:26 mod/api.php:31 mod/notes.php:22 mod/poke.php:149 #: mod/repair_ostatus.php:9 mod/invite.php:15 mod/invite.php:101 -#: mod/photos.php:163 mod/photos.php:1097 mod/regmod.php:110 -#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5041 index.php:382 +#: mod/photos.php:171 mod/photos.php:1105 mod/regmod.php:110 +#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5067 index.php:382 msgid "Permission denied." msgstr "Zugriff verweigert." -#: mod/contacts.php:393 +#: mod/contacts.php:403 msgid "Contact has been blocked" msgstr "Kontakt wurde blockiert" -#: mod/contacts.php:393 +#: mod/contacts.php:403 msgid "Contact has been unblocked" msgstr "Kontakt wurde wieder freigegeben" -#: mod/contacts.php:404 +#: mod/contacts.php:414 msgid "Contact has been ignored" msgstr "Kontakt wurde ignoriert" -#: mod/contacts.php:404 +#: mod/contacts.php:414 msgid "Contact has been unignored" msgstr "Kontakt wird nicht mehr ignoriert" -#: mod/contacts.php:416 +#: mod/contacts.php:426 msgid "Contact has been archived" msgstr "Kontakt wurde archiviert" -#: mod/contacts.php:416 +#: mod/contacts.php:426 msgid "Contact has been unarchived" msgstr "Kontakt wurde aus dem Archiv geholt" -#: mod/contacts.php:443 mod/contacts.php:817 +#: mod/contacts.php:453 mod/contacts.php:801 msgid "Do you really want to delete this contact?" msgstr "Möchtest Du wirklich diesen Kontakt löschen?" -#: mod/contacts.php:445 mod/follow.php:105 mod/message.php:216 -#: mod/settings.php:1091 mod/settings.php:1097 mod/settings.php:1105 -#: mod/settings.php:1109 mod/settings.php:1114 mod/settings.php:1120 -#: mod/settings.php:1126 mod/settings.php:1132 mod/settings.php:1158 -#: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161 -#: mod/settings.php:1162 mod/dfrn_request.php:850 mod/register.php:238 +#: mod/contacts.php:455 mod/follow.php:105 mod/message.php:216 +#: mod/settings.php:1094 mod/settings.php:1100 mod/settings.php:1108 +#: mod/settings.php:1112 mod/settings.php:1117 mod/settings.php:1123 +#: mod/settings.php:1129 mod/settings.php:1135 mod/settings.php:1161 +#: mod/settings.php:1162 mod/settings.php:1163 mod/settings.php:1164 +#: mod/settings.php:1165 mod/dfrn_request.php:850 mod/register.php:238 #: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 -#: mod/profiles.php:687 mod/api.php:105 include/items.php:4873 +#: mod/profiles.php:687 mod/api.php:105 include/items.php:4899 msgid "Yes" msgstr "Ja" -#: mod/contacts.php:448 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:116 -#: mod/videos.php:123 mod/message.php:219 mod/fbrowser.php:93 -#: mod/fbrowser.php:128 mod/settings.php:649 mod/settings.php:675 -#: mod/dfrn_request.php:864 mod/suggest.php:32 mod/editpost.php:147 -#: mod/photos.php:239 mod/photos.php:328 include/conversation.php:1221 -#: include/items.php:4876 +#: mod/contacts.php:458 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:116 +#: mod/videos.php:131 mod/message.php:219 mod/fbrowser.php:93 +#: mod/fbrowser.php:128 mod/settings.php:651 mod/settings.php:677 +#: mod/dfrn_request.php:864 mod/suggest.php:32 mod/editpost.php:148 +#: mod/photos.php:247 mod/photos.php:336 include/conversation.php:1221 +#: include/items.php:4902 msgid "Cancel" msgstr "Abbrechen" -#: mod/contacts.php:460 +#: mod/contacts.php:470 msgid "Contact has been removed." msgstr "Kontakt wurde entfernt." -#: mod/contacts.php:498 +#: mod/contacts.php:511 #, php-format msgid "You are mutual friends with %s" msgstr "Du hast mit %s eine beidseitige Freundschaft" -#: mod/contacts.php:502 +#: mod/contacts.php:515 #, php-format msgid "You are sharing with %s" msgstr "Du teilst mit %s" -#: mod/contacts.php:507 +#: mod/contacts.php:520 #, php-format msgid "%s is sharing with you" msgstr "%s teilt mit Dir" -#: mod/contacts.php:527 +#: mod/contacts.php:540 msgid "Private communications are not available for this contact." msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." -#: mod/contacts.php:530 mod/admin.php:645 +#: mod/contacts.php:543 mod/admin.php:645 msgid "Never" msgstr "Niemals" -#: mod/contacts.php:534 +#: mod/contacts.php:547 msgid "(Update was successful)" msgstr "(Aktualisierung war erfolgreich)" -#: mod/contacts.php:534 +#: mod/contacts.php:547 msgid "(Update was not successful)" msgstr "(Aktualisierung war nicht erfolgreich)" -#: mod/contacts.php:536 +#: mod/contacts.php:549 msgid "Suggest friends" msgstr "Kontakte vorschlagen" -#: mod/contacts.php:540 +#: mod/contacts.php:553 #, php-format msgid "Network type: %s" msgstr "Netzwerktyp: %s" -#: mod/contacts.php:543 include/contact_widgets.php:237 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d gemeinsamer Kontakt" -msgstr[1] "%d gemeinsame Kontakte" - -#: mod/contacts.php:548 -msgid "View all contacts" -msgstr "Alle Kontakte anzeigen" - -#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:821 -#: mod/admin.php:1117 -msgid "Unblock" -msgstr "Entsperren" - -#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:821 -#: mod/admin.php:1116 -msgid "Block" -msgstr "Sperren" - -#: mod/contacts.php:556 -msgid "Toggle Blocked status" -msgstr "Geblockt-Status ein-/ausschalten" - -#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:822 -msgid "Unignore" -msgstr "Ignorieren aufheben" - -#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:822 -#: mod/notifications.php:54 mod/notifications.php:179 -#: mod/notifications.php:259 -msgid "Ignore" -msgstr "Ignorieren" - -#: mod/contacts.php:564 -msgid "Toggle Ignored status" -msgstr "Ignoriert-Status ein-/ausschalten" - -#: mod/contacts.php:570 mod/contacts.php:823 -msgid "Unarchive" -msgstr "Aus Archiv zurückholen" - -#: mod/contacts.php:570 mod/contacts.php:823 -msgid "Archive" -msgstr "Archivieren" - -#: mod/contacts.php:573 -msgid "Toggle Archive status" -msgstr "Archiviert-Status ein-/ausschalten" - -#: mod/contacts.php:578 -msgid "Repair" -msgstr "Reparieren" - -#: mod/contacts.php:581 -msgid "Advanced Contact Settings" -msgstr "Fortgeschrittene Kontakteinstellungen" - -#: mod/contacts.php:589 +#: mod/contacts.php:566 msgid "Communications lost with this contact!" msgstr "Verbindungen mit diesem Kontakt verloren!" -#: mod/contacts.php:592 +#: mod/contacts.php:569 msgid "Fetch further information for feeds" msgstr "Weitere Informationen zu Feeds holen" -#: mod/contacts.php:593 mod/admin.php:654 +#: mod/contacts.php:570 mod/admin.php:654 msgid "Disabled" msgstr "Deaktiviert" -#: mod/contacts.php:593 +#: mod/contacts.php:570 msgid "Fetch information" msgstr "Beziehe Information" -#: mod/contacts.php:593 +#: mod/contacts.php:570 msgid "Fetch information and keywords" msgstr "Beziehe Information und Schlüsselworte" -#: mod/contacts.php:606 -msgid "Contact Editor" -msgstr "Kontakt Editor" - -#: mod/contacts.php:608 mod/manage.php:143 mod/fsuggest.php:107 -#: mod/message.php:342 mod/message.php:525 mod/crepair.php:195 +#: mod/contacts.php:586 mod/manage.php:143 mod/fsuggest.php:107 +#: mod/message.php:342 mod/message.php:525 mod/crepair.php:196 #: mod/events.php:574 mod/content.php:712 mod/install.php:261 #: mod/install.php:299 mod/mood.php:137 mod/profiles.php:696 #: mod/localtime.php:45 mod/poke.php:198 mod/invite.php:140 -#: mod/photos.php:1129 mod/photos.php:1253 mod/photos.php:1571 -#: mod/photos.php:1622 mod/photos.php:1670 mod/photos.php:1758 +#: mod/photos.php:1137 mod/photos.php:1261 mod/photos.php:1579 +#: mod/photos.php:1630 mod/photos.php:1678 mod/photos.php:1766 #: object/Item.php:710 view/theme/cleanzero/config.php:80 #: view/theme/dispy/config.php:70 view/theme/quattro/config.php:64 #: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 @@ -277,208 +226,303 @@ msgstr "Kontakt Editor" msgid "Submit" msgstr "Senden" -#: mod/contacts.php:609 +#: mod/contacts.php:587 msgid "Profile Visibility" msgstr "Profil-Sichtbarkeit" -#: mod/contacts.php:610 +#: mod/contacts.php:588 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft." -#: mod/contacts.php:611 +#: mod/contacts.php:589 msgid "Contact Information / Notes" msgstr "Kontakt Informationen / Notizen" -#: mod/contacts.php:612 +#: mod/contacts.php:590 msgid "Edit contact notes" msgstr "Notizen zum Kontakt bearbeiten" -#: mod/contacts.php:617 mod/contacts.php:861 mod/viewcontacts.php:77 +#: mod/contacts.php:595 mod/contacts.php:977 mod/viewcontacts.php:97 #: mod/nogroup.php:41 #, php-format msgid "Visit %s's profile [%s]" msgstr "Besuche %ss Profil [%s]" -#: mod/contacts.php:618 +#: mod/contacts.php:596 msgid "Block/Unblock contact" msgstr "Kontakt blockieren/freischalten" -#: mod/contacts.php:619 +#: mod/contacts.php:597 msgid "Ignore contact" msgstr "Ignoriere den Kontakt" -#: mod/contacts.php:620 +#: mod/contacts.php:598 msgid "Repair URL settings" msgstr "URL Einstellungen reparieren" -#: mod/contacts.php:621 +#: mod/contacts.php:599 msgid "View conversations" msgstr "Unterhaltungen anzeigen" -#: mod/contacts.php:623 +#: mod/contacts.php:601 msgid "Delete contact" msgstr "Lösche den Kontakt" -#: mod/contacts.php:627 +#: mod/contacts.php:605 msgid "Last update:" msgstr "Letzte Aktualisierung: " -#: mod/contacts.php:629 +#: mod/contacts.php:607 msgid "Update public posts" msgstr "Öffentliche Beiträge aktualisieren" -#: mod/contacts.php:631 mod/admin.php:1653 +#: mod/contacts.php:609 mod/admin.php:1653 msgid "Update now" msgstr "Jetzt aktualisieren" -#: mod/contacts.php:633 mod/dirfind.php:190 mod/allfriends.php:67 +#: mod/contacts.php:611 mod/dirfind.php:190 mod/allfriends.php:60 #: mod/match.php:71 mod/suggest.php:82 include/contact_widgets.php:32 #: include/Contact.php:321 include/conversation.php:924 msgid "Connect/Follow" msgstr "Verbinden/Folgen" -#: mod/contacts.php:640 +#: mod/contacts.php:614 mod/contacts.php:805 mod/contacts.php:864 +#: mod/admin.php:1117 +msgid "Unblock" +msgstr "Entsperren" + +#: mod/contacts.php:614 mod/contacts.php:805 mod/contacts.php:864 +#: mod/admin.php:1116 +msgid "Block" +msgstr "Sperren" + +#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:871 +msgid "Unignore" +msgstr "Ignorieren aufheben" + +#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:871 +#: mod/notifications.php:54 mod/notifications.php:179 +#: mod/notifications.php:259 +msgid "Ignore" +msgstr "Ignorieren" + +#: mod/contacts.php:618 msgid "Currently blocked" msgstr "Derzeit geblockt" -#: mod/contacts.php:641 +#: mod/contacts.php:619 msgid "Currently ignored" msgstr "Derzeit ignoriert" -#: mod/contacts.php:642 +#: mod/contacts.php:620 msgid "Currently archived" msgstr "Momentan archiviert" -#: mod/contacts.php:643 mod/notifications.php:172 mod/notifications.php:251 +#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:251 msgid "Hide this contact from others" msgstr "Verbirg diesen Kontakt vor andere" -#: mod/contacts.php:643 +#: mod/contacts.php:621 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein" -#: mod/contacts.php:644 +#: mod/contacts.php:622 msgid "Notification for new posts" msgstr "Benachrichtigung bei neuen Beiträgen" -#: mod/contacts.php:644 +#: mod/contacts.php:622 msgid "Send a notification of every new post of this contact" msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt." -#: mod/contacts.php:647 +#: mod/contacts.php:625 msgid "Blacklisted keywords" msgstr "Blacklistete Schlüsselworte " -#: mod/contacts.php:647 +#: mod/contacts.php:625 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde" -#: mod/contacts.php:654 mod/follow.php:121 mod/notifications.php:255 +#: mod/contacts.php:632 mod/follow.php:121 mod/notifications.php:255 msgid "Profile URL" msgstr "Profil URL" -#: mod/contacts.php:700 +#: mod/contacts.php:635 mod/follow.php:125 mod/notifications.php:244 +#: mod/events.php:566 mod/directory.php:145 include/identity.php:304 +#: include/bb2diaspora.php:170 include/event.php:36 include/event.php:60 +msgid "Location:" +msgstr "Ort:" + +#: mod/contacts.php:637 mod/follow.php:127 mod/notifications.php:246 +#: mod/directory.php:153 include/identity.php:313 include/identity.php:621 +msgid "About:" +msgstr "Über:" + +#: mod/contacts.php:639 mod/follow.php:129 mod/notifications.php:248 +#: include/identity.php:615 +msgid "Tags:" +msgstr "Tags" + +#: mod/contacts.php:684 msgid "Suggestions" msgstr "Kontaktvorschläge" -#: mod/contacts.php:703 +#: mod/contacts.php:687 msgid "Suggest potential friends" msgstr "Freunde vorschlagen" -#: mod/contacts.php:708 mod/group.php:192 +#: mod/contacts.php:692 mod/group.php:192 msgid "All Contacts" msgstr "Alle Kontakte" -#: mod/contacts.php:711 +#: mod/contacts.php:695 msgid "Show all contacts" msgstr "Alle Kontakte anzeigen" -#: mod/contacts.php:716 +#: mod/contacts.php:700 msgid "Unblocked" msgstr "Ungeblockt" -#: mod/contacts.php:719 +#: mod/contacts.php:703 msgid "Only show unblocked contacts" msgstr "Nur nicht-blockierte Kontakte anzeigen" -#: mod/contacts.php:725 +#: mod/contacts.php:709 msgid "Blocked" msgstr "Geblockt" -#: mod/contacts.php:728 +#: mod/contacts.php:712 msgid "Only show blocked contacts" msgstr "Nur blockierte Kontakte anzeigen" -#: mod/contacts.php:734 +#: mod/contacts.php:718 msgid "Ignored" msgstr "Ignoriert" -#: mod/contacts.php:737 +#: mod/contacts.php:721 msgid "Only show ignored contacts" msgstr "Nur ignorierte Kontakte anzeigen" -#: mod/contacts.php:743 +#: mod/contacts.php:727 msgid "Archived" msgstr "Archiviert" -#: mod/contacts.php:746 +#: mod/contacts.php:730 msgid "Only show archived contacts" msgstr "Nur archivierte Kontakte anzeigen" -#: mod/contacts.php:752 +#: mod/contacts.php:736 msgid "Hidden" msgstr "Verborgen" -#: mod/contacts.php:755 +#: mod/contacts.php:739 msgid "Only show hidden contacts" msgstr "Nur verborgene Kontakte anzeigen" -#: mod/contacts.php:808 include/text.php:1012 include/nav.php:123 -#: include/nav.php:187 view/theme/diabook/theme.php:125 +#: mod/contacts.php:792 mod/contacts.php:840 mod/viewcontacts.php:116 +#: include/identity.php:732 include/identity.php:735 include/text.php:1012 +#: include/nav.php:123 include/nav.php:187 view/theme/diabook/theme.php:125 msgid "Contacts" msgstr "Kontakte" -#: mod/contacts.php:812 +#: mod/contacts.php:796 msgid "Search your contacts" msgstr "Suche in deinen Kontakten" -#: mod/contacts.php:813 +#: mod/contacts.php:797 msgid "Finding: " msgstr "Funde: " -#: mod/contacts.php:814 mod/directory.php:202 include/contact_widgets.php:34 +#: mod/contacts.php:798 mod/directory.php:210 include/contact_widgets.php:34 msgid "Find" msgstr "Finde" -#: mod/contacts.php:820 mod/settings.php:146 mod/settings.php:674 +#: mod/contacts.php:804 mod/settings.php:146 mod/settings.php:676 msgid "Update" msgstr "Aktualisierungen" -#: mod/contacts.php:824 mod/group.php:171 mod/admin.php:1115 -#: mod/content.php:440 mod/content.php:743 mod/settings.php:711 -#: mod/photos.php:1715 object/Item.php:134 include/conversation.php:635 +#: mod/contacts.php:807 mod/contacts.php:878 +msgid "Archive" +msgstr "Archivieren" + +#: mod/contacts.php:807 mod/contacts.php:878 +msgid "Unarchive" +msgstr "Aus Archiv zurückholen" + +#: mod/contacts.php:808 mod/group.php:171 mod/admin.php:1115 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:713 +#: mod/photos.php:1723 object/Item.php:134 include/conversation.php:635 msgid "Delete" msgstr "Löschen" -#: mod/contacts.php:837 +#: mod/contacts.php:821 include/identity.php:677 include/nav.php:75 +msgid "Status" +msgstr "Status" + +#: mod/contacts.php:824 include/identity.php:680 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" + +#: mod/contacts.php:829 mod/profperm.php:104 mod/newmember.php:32 +#: include/identity.php:569 include/identity.php:655 include/identity.php:685 +#: include/nav.php:76 view/theme/diabook/theme.php:124 +msgid "Profile" +msgstr "Profil" + +#: mod/contacts.php:832 include/identity.php:688 +msgid "Profile Details" +msgstr "Profildetails" + +#: mod/contacts.php:843 +msgid "View all contacts" +msgstr "Alle Kontakte anzeigen" + +#: mod/contacts.php:849 mod/common.php:135 +msgid "Common Friends" +msgstr "Gemeinsame Freunde" + +#: mod/contacts.php:852 +msgid "View all common friends" +msgstr "Alle Kontakte anzeigen" + +#: mod/contacts.php:856 +msgid "Repair" +msgstr "Reparieren" + +#: mod/contacts.php:859 +msgid "Advanced Contact Settings" +msgstr "Fortgeschrittene Kontakteinstellungen" + +#: mod/contacts.php:867 +msgid "Toggle Blocked status" +msgstr "Geblockt-Status ein-/ausschalten" + +#: mod/contacts.php:874 +msgid "Toggle Ignored status" +msgstr "Ignoriert-Status ein-/ausschalten" + +#: mod/contacts.php:881 +msgid "Toggle Archive status" +msgstr "Archiviert-Status ein-/ausschalten" + +#: mod/contacts.php:949 msgid "Mutual Friendship" msgstr "Beidseitige Freundschaft" -#: mod/contacts.php:841 +#: mod/contacts.php:953 msgid "is a fan of yours" msgstr "ist ein Fan von dir" -#: mod/contacts.php:845 +#: mod/contacts.php:957 msgid "you are a fan of" msgstr "Du bist Fan von" -#: mod/contacts.php:862 mod/nogroup.php:42 +#: mod/contacts.php:978 mod/nogroup.php:42 msgid "Edit contact" msgstr "Kontakt bearbeiten" @@ -516,13 +560,7 @@ msgstr "Ungültiger Profil-Bezeichner." msgid "Profile Visibility Editor" msgstr "Editor für die Profil-Sichtbarkeit" -#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:542 -#: include/identity.php:628 include/identity.php:658 include/nav.php:76 -#: view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Profil" - -#: mod/profperm.php:106 mod/group.php:222 +#: mod/profperm.php:106 mod/group.php:223 msgid "Click on a contact to add or remove." msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" @@ -536,13 +574,13 @@ msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" #: mod/display.php:82 mod/display.php:283 mod/display.php:500 #: mod/viewsrc.php:15 mod/admin.php:196 mod/admin.php:1160 mod/admin.php:1381 -#: mod/notice.php:15 include/items.php:4832 +#: mod/notice.php:15 include/items.php:4858 msgid "Item not found." msgstr "Beitrag nicht gefunden." -#: mod/display.php:211 mod/videos.php:189 mod/viewcontacts.php:19 +#: mod/display.php:211 mod/videos.php:197 mod/viewcontacts.php:35 #: mod/community.php:18 mod/dfrn_request.php:779 mod/search.php:93 -#: mod/search.php:99 mod/directory.php:37 mod/photos.php:968 +#: mod/search.php:99 mod/directory.php:37 mod/photos.php:976 msgid "Public access denied." msgstr "Öffentlicher Zugriff verweigert." @@ -768,9 +806,9 @@ msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl." #: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 #: mod/profile_photo.php:210 mod/profile_photo.php:302 -#: mod/profile_photo.php:311 mod/photos.php:70 mod/photos.php:184 -#: mod/photos.php:767 mod/photos.php:1237 mod/photos.php:1260 -#: mod/photos.php:1854 include/user.php:345 include/user.php:352 +#: mod/profile_photo.php:311 mod/photos.php:78 mod/photos.php:192 +#: mod/photos.php:775 mod/photos.php:1245 mod/photos.php:1268 +#: mod/photos.php:1862 include/user.php:345 include/user.php:352 #: include/user.php:359 view/theme/diabook/theme.php:500 msgid "Profile Photos" msgstr "Profilbilder" @@ -791,12 +829,12 @@ msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue msgid "Unable to process image" msgstr "Bild konnte nicht verarbeitet werden" -#: mod/profile_photo.php:150 mod/wall_upload.php:151 mod/photos.php:803 +#: mod/profile_photo.php:150 mod/wall_upload.php:151 mod/photos.php:811 #, php-format msgid "Image exceeds size limit of %s" msgstr "Bildgröße überschreitet das Limit von %s" -#: mod/profile_photo.php:159 mod/wall_upload.php:183 mod/photos.php:843 +#: mod/profile_photo.php:159 mod/wall_upload.php:183 mod/photos.php:851 msgid "Unable to process image." msgstr "Konnte das Bild nicht bearbeiten." @@ -840,13 +878,13 @@ msgstr "Bearbeitung abgeschlossen" msgid "Image uploaded successfully." msgstr "Bild erfolgreich hochgeladen." -#: mod/profile_photo.php:307 mod/wall_upload.php:216 mod/photos.php:870 +#: mod/profile_photo.php:307 mod/wall_upload.php:216 mod/photos.php:878 msgid "Image upload failed." msgstr "Hochladen des Bildes gescheitert." #: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 #: include/conversation.php:130 include/conversation.php:266 -#: include/text.php:1995 include/diaspora.php:2140 +#: include/text.php:1993 include/diaspora.php:2146 #: view/theme/diabook/theme.php:471 msgid "photo" msgstr "Foto" @@ -854,7 +892,7 @@ msgstr "Foto" #: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 mod/like.php:346 #: include/conversation.php:125 include/conversation.php:134 #: include/conversation.php:261 include/conversation.php:270 -#: include/diaspora.php:2140 view/theme/diabook/theme.php:466 +#: include/diaspora.php:2146 view/theme/diabook/theme.php:466 #: view/theme/diabook/theme.php:475 msgid "status" msgstr "Status" @@ -925,7 +963,7 @@ msgstr "In diesem Ordner speichern:" msgid "- select -" msgstr "- auswählen -" -#: mod/filer.php:31 mod/editpost.php:108 mod/notes.php:61 +#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:61 #: include/text.php:1004 msgid "Save" msgstr "Speichern" @@ -959,11 +997,11 @@ msgstr "Bitte beantworte folgendes:" msgid "Does %s know you?" msgstr "Kennt %s Dich?" -#: mod/follow.php:105 mod/settings.php:1091 mod/settings.php:1097 -#: mod/settings.php:1105 mod/settings.php:1109 mod/settings.php:1114 -#: mod/settings.php:1120 mod/settings.php:1126 mod/settings.php:1132 -#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160 -#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:850 +#: mod/follow.php:105 mod/settings.php:1094 mod/settings.php:1100 +#: mod/settings.php:1108 mod/settings.php:1112 mod/settings.php:1117 +#: mod/settings.php:1123 mod/settings.php:1129 mod/settings.php:1135 +#: mod/settings.php:1161 mod/settings.php:1162 mod/settings.php:1163 +#: mod/settings.php:1164 mod/settings.php:1165 mod/dfrn_request.php:850 #: mod/register.php:239 mod/profiles.php:658 mod/profiles.php:662 #: mod/profiles.php:687 mod/api.php:106 msgid "No" @@ -977,21 +1015,6 @@ msgstr "Eine persönliche Notiz beifügen:" msgid "Your Identity Address:" msgstr "Adresse Deines Profils:" -#: mod/follow.php:125 mod/notifications.php:244 mod/events.php:566 -#: mod/directory.php:139 include/identity.php:278 include/bb2diaspora.php:170 -#: include/event.php:36 include/event.php:60 -msgid "Location:" -msgstr "Ort:" - -#: mod/follow.php:127 mod/notifications.php:246 mod/directory.php:147 -#: include/identity.php:287 include/identity.php:594 -msgid "About:" -msgstr "Über:" - -#: mod/follow.php:129 mod/notifications.php:248 include/identity.php:588 -msgid "Tags:" -msgstr "Tags" - #: mod/follow.php:162 msgid "Contact added" msgstr "Kontakt hinzugefügt" @@ -1081,6 +1104,10 @@ msgstr "Gruppeneditor" msgid "Members" msgstr "Mitglieder" +#: mod/group.php:193 mod/network.php:563 mod/content.php:130 +msgid "Group is empty" +msgstr "Gruppe ist leer" + #: mod/apps.php:7 index.php:225 msgid "You must be logged in to use addons. " msgstr "Sie müssen angemeldet sein um Addons benutzen zu können." @@ -1099,7 +1126,7 @@ msgid "Profile not found." msgstr "Profil nicht gefunden." #: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/crepair.php:134 +#: mod/crepair.php:131 msgid "Contact not found." msgstr "Kontakt nicht gefunden." @@ -1179,7 +1206,7 @@ msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werd msgid "Unable to update your contact profile details on our system" msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden" -#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:734 include/items.php:4244 +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:734 include/items.php:4270 msgid "[Name Withheld]" msgstr "[Name unterdrückt]" @@ -1188,7 +1215,7 @@ msgstr "[Name unterdrückt]" msgid "%1$s has joined %2$s" msgstr "%1$s ist %2$s beigetreten" -#: mod/profile.php:21 include/identity.php:82 +#: mod/profile.php:21 include/identity.php:52 msgid "Requested profile is not available." msgstr "Das angefragte Profil ist nicht vorhanden." @@ -1196,35 +1223,35 @@ msgstr "Das angefragte Profil ist nicht vorhanden." msgid "Tips for New Members" msgstr "Tipps für neue Nutzer" -#: mod/videos.php:115 +#: mod/videos.php:123 msgid "Do you really want to delete this video?" msgstr "Möchtest Du dieses Video wirklich löschen?" -#: mod/videos.php:120 +#: mod/videos.php:128 msgid "Delete Video" msgstr "Video Löschen" -#: mod/videos.php:199 +#: mod/videos.php:207 msgid "No videos selected" msgstr "Keine Videos ausgewählt" -#: mod/videos.php:300 mod/photos.php:1079 +#: mod/videos.php:308 mod/photos.php:1087 msgid "Access to this item is restricted." msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." -#: mod/videos.php:375 include/text.php:1465 +#: mod/videos.php:383 include/text.php:1465 msgid "View Video" msgstr "Video ansehen" -#: mod/videos.php:382 mod/photos.php:1882 +#: mod/videos.php:390 mod/photos.php:1890 msgid "View Album" msgstr "Album betrachten" -#: mod/videos.php:391 +#: mod/videos.php:399 msgid "Recent Videos" msgstr "Neueste Videos" -#: mod/videos.php:393 +#: mod/videos.php:401 msgid "Upload New Videos" msgstr "Neues Video hochladen" @@ -1248,7 +1275,7 @@ msgstr "Schlage %s einen Kontakt vor" #: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 #: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17 -#: mod/wall_attach.php:25 mod/wall_attach.php:76 include/api.php:1711 +#: mod/wall_attach.php:25 mod/wall_attach.php:76 include/api.php:1733 msgid "Invalid request." msgstr "Ungültige Anfrage" @@ -1304,7 +1331,7 @@ msgid "" "Password reset failed." msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." -#: mod/lostpass.php:109 boot.php:1295 +#: mod/lostpass.php:109 boot.php:1307 msgid "Password Reset" msgstr "Passwort zurücksetzen" @@ -1379,11 +1406,11 @@ msgid "Reset" msgstr "Zurücksetzen" #: mod/like.php:170 include/conversation.php:122 include/conversation.php:258 -#: include/text.php:1993 view/theme/diabook/theme.php:463 +#: include/text.php:1991 view/theme/diabook/theme.php:463 msgid "event" msgstr "Event" -#: mod/like.php:187 include/conversation.php:141 include/diaspora.php:2156 +#: mod/like.php:187 include/conversation.php:141 include/diaspora.php:2162 #: view/theme/diabook/theme.php:480 #, php-format msgid "%1$s likes %2$s's %3$s" @@ -1409,32 +1436,22 @@ msgstr "%1$s nimmt nicht an %2$ss %3$s teil." msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s nimmt eventuell an %2$ss %3$s teil." -#: mod/ping.php:273 +#: mod/ping.php:265 msgid "{0} wants to be your friend" msgstr "{0} möchte mit Dir in Kontakt treten" -#: mod/ping.php:288 +#: mod/ping.php:280 msgid "{0} sent you a message" msgstr "{0} schickte Dir eine Nachricht" -#: mod/ping.php:303 +#: mod/ping.php:295 msgid "{0} requested registration" msgstr "{0} möchte sich registrieren" -#: mod/viewcontacts.php:52 +#: mod/viewcontacts.php:72 msgid "No contacts." msgstr "Keine Kontakte." -#: mod/viewcontacts.php:85 mod/dirfind.php:208 mod/network.php:596 -#: mod/allfriends.php:79 mod/match.php:82 mod/common.php:122 -#: mod/suggest.php:95 -msgid "Forum" -msgstr "Forum" - -#: mod/viewcontacts.php:96 include/text.php:921 -msgid "View Contacts" -msgstr "Kontakte anzeigen" - #: mod/notifications.php:29 msgid "Invalid request identifier." msgstr "Invalid request identifier." @@ -1544,8 +1561,8 @@ msgstr "Kontakt-/Freundschaftsanfrage" msgid "New Follower" msgstr "Neuer Bewunderer" -#: mod/notifications.php:250 mod/directory.php:141 include/identity.php:280 -#: include/identity.php:553 +#: mod/notifications.php:250 mod/directory.php:147 include/identity.php:306 +#: include/identity.php:580 msgid "Gender:" msgstr "Geschlecht:" @@ -1738,18 +1755,18 @@ msgid "Your message:" msgstr "Deine Nachricht:" #: mod/message.php:339 mod/message.php:523 mod/wallmessage.php:154 -#: mod/editpost.php:109 include/conversation.php:1184 +#: mod/editpost.php:110 include/conversation.php:1184 msgid "Upload photo" msgstr "Foto hochladen" #: mod/message.php:340 mod/message.php:524 mod/wallmessage.php:155 -#: mod/editpost.php:113 include/conversation.php:1188 +#: mod/editpost.php:114 include/conversation.php:1188 msgid "Insert web link" msgstr "Einen Link einfügen" #: mod/message.php:341 mod/message.php:526 mod/content.php:501 -#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:123 -#: mod/photos.php:1602 object/Item.php:396 include/conversation.php:713 +#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124 +#: mod/photos.php:1610 object/Item.php:396 include/conversation.php:713 #: include/conversation.php:1202 msgid "Please wait" msgstr "Bitte warten" @@ -1811,103 +1828,99 @@ msgstr[1] "%d Nachrichten" msgid "[Embedded content - reload page to view]" msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]" -#: mod/crepair.php:107 +#: mod/crepair.php:104 msgid "Contact settings applied." msgstr "Einstellungen zum Kontakt angewandt." -#: mod/crepair.php:109 +#: mod/crepair.php:106 msgid "Contact update failed." msgstr "Konnte den Kontakt nicht aktualisieren." -#: mod/crepair.php:140 +#: mod/crepair.php:137 msgid "" "WARNING: This is highly advanced and if you enter incorrect" " information your communications with this contact may stop working." msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." -#: mod/crepair.php:141 +#: mod/crepair.php:138 msgid "" "Please use your browser 'Back' button now if you are " "uncertain what to do on this page." msgstr "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst." -#: mod/crepair.php:154 mod/crepair.php:156 +#: mod/crepair.php:151 mod/crepair.php:153 msgid "No mirroring" msgstr "Kein Spiegeln" -#: mod/crepair.php:154 +#: mod/crepair.php:151 msgid "Mirror as forwarded posting" msgstr "Spiegeln als weitergeleitete Beiträge" -#: mod/crepair.php:154 mod/crepair.php:156 +#: mod/crepair.php:151 mod/crepair.php:153 msgid "Mirror as my own posting" msgstr "Spiegeln als meine eigenen Beiträge" -#: mod/crepair.php:162 -msgid "Repair Contact Settings" -msgstr "Kontakteinstellungen reparieren" - -#: mod/crepair.php:166 +#: mod/crepair.php:167 msgid "Return to contact editor" msgstr "Zurück zum Kontakteditor" -#: mod/crepair.php:168 +#: mod/crepair.php:169 msgid "Refetch contact data" msgstr "Kontaktdaten neu laden" -#: mod/crepair.php:169 mod/admin.php:1111 mod/admin.php:1123 -#: mod/admin.php:1124 mod/admin.php:1137 mod/settings.php:650 -#: mod/settings.php:676 +#: mod/crepair.php:170 mod/admin.php:1111 mod/admin.php:1123 +#: mod/admin.php:1124 mod/admin.php:1137 mod/settings.php:652 +#: mod/settings.php:678 msgid "Name" msgstr "Name" -#: mod/crepair.php:170 +#: mod/crepair.php:171 msgid "Account Nickname" msgstr "Konto-Spitzname" -#: mod/crepair.php:171 +#: mod/crepair.php:172 msgid "@Tagname - overrides Name/Nickname" msgstr "@Tagname - überschreibt Name/Spitzname" -#: mod/crepair.php:172 +#: mod/crepair.php:173 msgid "Account URL" msgstr "Konto-URL" -#: mod/crepair.php:173 +#: mod/crepair.php:174 msgid "Friend Request URL" msgstr "URL für Freundschaftsanfragen" -#: mod/crepair.php:174 +#: mod/crepair.php:175 msgid "Friend Confirm URL" msgstr "URL für Bestätigungen von Freundschaftsanfragen" -#: mod/crepair.php:175 +#: mod/crepair.php:176 msgid "Notification Endpoint URL" msgstr "URL-Endpunkt für Benachrichtigungen" -#: mod/crepair.php:176 +#: mod/crepair.php:177 msgid "Poll/Feed URL" msgstr "Pull/Feed-URL" -#: mod/crepair.php:177 +#: mod/crepair.php:178 msgid "New photo from this URL" msgstr "Neues Foto von dieser URL" -#: mod/crepair.php:178 +#: mod/crepair.php:179 msgid "Remote Self" msgstr "Entfernte Konten" -#: mod/crepair.php:181 +#: mod/crepair.php:182 msgid "Mirror postings from this contact" msgstr "Spiegle Beiträge dieses Kontakts" -#: mod/crepair.php:183 +#: mod/crepair.php:184 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden." -#: mod/bookmarklet.php:12 boot.php:1281 include/nav.php:91 +#: mod/bookmarklet.php:12 boot.php:1293 include/nav.php:91 msgid "Login" msgstr "Anmeldung" @@ -1919,13 +1932,13 @@ msgstr "Der Beitrag wurde angelegt" msgid "Access denied." msgstr "Zugriff verweigert." -#: mod/dirfind.php:188 mod/allfriends.php:82 mod/match.php:85 -#: mod/suggest.php:98 include/contact_widgets.php:10 include/identity.php:193 +#: mod/dirfind.php:188 mod/allfriends.php:75 mod/match.php:85 +#: mod/suggest.php:98 include/contact_widgets.php:10 include/identity.php:209 msgid "Connect" msgstr "Verbinden" -#: mod/dirfind.php:189 mod/allfriends.php:66 mod/match.php:70 -#: mod/directory.php:156 mod/suggest.php:81 include/Contact.php:307 +#: mod/dirfind.php:189 mod/allfriends.php:59 mod/match.php:70 +#: mod/directory.php:162 mod/suggest.php:81 include/Contact.php:307 #: include/Contact.php:320 include/Contact.php:362 #: include/conversation.php:912 include/conversation.php:926 msgid "View Profile" @@ -1940,14 +1953,14 @@ msgstr "Personensuche - %s" msgid "No matches" msgstr "Keine Übereinstimmungen" -#: mod/fbrowser.php:32 include/identity.php:666 include/nav.php:77 +#: mod/fbrowser.php:32 include/identity.php:693 include/nav.php:77 #: view/theme/diabook/theme.php:126 msgid "Photos" msgstr "Bilder" -#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:54 -#: mod/photos.php:184 mod/photos.php:1111 mod/photos.php:1237 -#: mod/photos.php:1260 mod/photos.php:1830 mod/photos.php:1842 +#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:62 +#: mod/photos.php:192 mod/photos.php:1119 mod/photos.php:1245 +#: mod/photos.php:1268 mod/photos.php:1838 mod/photos.php:1850 #: view/theme/diabook/theme.php:499 msgid "Contact Photos" msgstr "Kontaktbilder" @@ -2109,7 +2122,7 @@ msgstr "RINO2 benötigt die PHP Extension mcrypt." msgid "Site settings updated." msgstr "Seiteneinstellungen aktualisiert." -#: mod/admin.php:619 mod/settings.php:901 +#: mod/admin.php:619 mod/settings.php:903 msgid "No special theme for mobile devices" msgstr "Kein spezielles Theme für mobile Geräte verwenden." @@ -2198,8 +2211,8 @@ msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)" #: mod/admin.php:712 mod/admin.php:1271 mod/admin.php:1507 mod/admin.php:1595 -#: mod/settings.php:648 mod/settings.php:758 mod/settings.php:802 -#: mod/settings.php:871 mod/settings.php:957 mod/settings.php:1192 +#: mod/settings.php:650 mod/settings.php:760 mod/settings.php:804 +#: mod/settings.php:873 mod/settings.php:960 mod/settings.php:1195 msgid "Save Settings" msgstr "Einstellungen speichern" @@ -3157,6 +3170,7 @@ msgid "Maintainer: " msgstr "Betreuer:" #: mod/admin.php:1272 +#: view/smarty3/compiled/f835364006028b1061f37be121c9bd9db5fa50a9.file.admin_plugins.tpl.php:42 msgid "Reload active plugins" msgstr "Aktive Plugins neu laden" @@ -3303,10 +3317,6 @@ msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit gera msgid "No such group" msgstr "Es gibt keine solche Gruppe" -#: mod/network.php:563 mod/content.php:130 -msgid "Group is empty" -msgstr "Gruppe ist leer" - #: mod/network.php:574 mod/content.php:135 #, php-format msgid "Group: %s" @@ -3320,15 +3330,10 @@ msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gela msgid "Invalid contact." msgstr "Ungültiger Kontakt." -#: mod/allfriends.php:45 +#: mod/allfriends.php:38 msgid "No friends to display." msgstr "Keine Freunde zum Anzeigen." -#: mod/allfriends.php:92 -#, php-format -msgid "Friends of %s" -msgstr "Freunde von %s" - #: mod/events.php:71 mod/events.php:73 msgid "Event can not end before it has started." msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt." @@ -3365,11 +3370,11 @@ msgstr "Fr" msgid "Sat" msgstr "Sa" -#: mod/events.php:208 mod/settings.php:936 include/text.php:1274 +#: mod/events.php:208 mod/settings.php:939 include/text.php:1274 msgid "Sunday" msgstr "Sonntag" -#: mod/events.php:209 mod/settings.php:936 include/text.php:1274 +#: mod/events.php:209 mod/settings.php:939 include/text.php:1274 msgid "Monday" msgstr "Montag" @@ -3513,7 +3518,7 @@ msgstr "Veranstaltung bearbeiten" msgid "link to source" msgstr "Link zum Originalbeitrag" -#: mod/events.php:456 include/identity.php:686 include/nav.php:79 +#: mod/events.php:456 include/identity.php:713 include/nav.php:79 #: include/nav.php:140 view/theme/diabook/theme.php:127 msgid "Events" msgstr "Veranstaltungen" @@ -3570,8 +3575,8 @@ msgstr "Titel:" msgid "Share this event" msgstr "Veranstaltung teilen" -#: mod/events.php:572 mod/content.php:721 mod/editpost.php:144 -#: mod/photos.php:1623 mod/photos.php:1671 mod/photos.php:1759 +#: mod/events.php:572 mod/content.php:721 mod/editpost.php:145 +#: mod/photos.php:1631 mod/photos.php:1679 mod/photos.php:1767 #: object/Item.php:719 include/conversation.php:1217 msgid "Preview" msgstr "Vorschau" @@ -3587,7 +3592,7 @@ msgid "" "code or the translation of Friendica. Thank you all!" msgstr "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !" -#: mod/content.php:439 mod/content.php:742 mod/photos.php:1714 +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1722 #: object/Item.php:133 include/conversation.php:634 msgid "Select" msgstr "Auswählen" @@ -3616,23 +3621,23 @@ msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" #: mod/content.php:607 object/Item.php:421 object/Item.php:434 -#: include/text.php:1999 +#: include/text.php:1997 msgid "comment" msgid_plural "comments" msgstr[0] "Kommentar" msgstr[1] "Kommentare" -#: mod/content.php:608 boot.php:773 object/Item.php:422 +#: mod/content.php:608 boot.php:785 object/Item.php:422 #: include/contact_widgets.php:242 include/forums.php:110 -#: include/items.php:5152 view/theme/vier/theme.php:264 +#: include/items.php:5178 view/theme/vier/theme.php:264 msgid "show more" msgstr "mehr anzeigen" -#: mod/content.php:622 mod/photos.php:1410 object/Item.php:117 +#: mod/content.php:622 mod/photos.php:1418 object/Item.php:117 msgid "Private Message" msgstr "Private Nachricht" -#: mod/content.php:686 mod/photos.php:1599 object/Item.php:253 +#: mod/content.php:686 mod/photos.php:1607 object/Item.php:253 msgid "I like this (toggle)" msgstr "Ich mag das (toggle)" @@ -3640,7 +3645,7 @@ msgstr "Ich mag das (toggle)" msgid "like" msgstr "mag ich" -#: mod/content.php:687 mod/photos.php:1600 object/Item.php:254 +#: mod/content.php:687 mod/photos.php:1608 object/Item.php:254 msgid "I don't like this (toggle)" msgstr "Ich mag das nicht (toggle)" @@ -3656,13 +3661,13 @@ msgstr "Weitersagen" msgid "share" msgstr "Teilen" -#: mod/content.php:709 mod/photos.php:1619 mod/photos.php:1667 -#: mod/photos.php:1755 object/Item.php:707 +#: mod/content.php:709 mod/photos.php:1627 mod/photos.php:1675 +#: mod/photos.php:1763 object/Item.php:707 msgid "This is you" msgstr "Das bist Du" -#: mod/content.php:711 mod/photos.php:1621 mod/photos.php:1669 -#: mod/photos.php:1757 boot.php:772 object/Item.php:393 object/Item.php:709 +#: mod/content.php:711 mod/photos.php:1629 mod/photos.php:1677 +#: mod/photos.php:1765 boot.php:784 object/Item.php:393 object/Item.php:709 msgid "Comment" msgstr "Kommentar" @@ -3698,7 +3703,7 @@ msgstr "Link" msgid "Video" msgstr "Video" -#: mod/content.php:730 mod/settings.php:710 object/Item.php:122 +#: mod/content.php:730 mod/settings.php:712 object/Item.php:122 #: object/Item.php:124 msgid "Edit" msgstr "Bearbeiten" @@ -4162,11 +4167,11 @@ msgstr "Nicht verfügbar." msgid "Community" msgstr "Gemeinschaft" -#: mod/community.php:62 mod/community.php:71 mod/search.php:218 +#: mod/community.php:62 mod/community.php:71 mod/search.php:228 msgid "No results." msgstr "Keine Ergebnisse." -#: mod/settings.php:34 mod/photos.php:109 +#: mod/settings.php:34 mod/photos.php:117 msgid "everybody" msgstr "jeder" @@ -4178,7 +4183,7 @@ msgstr "Zusätzliche Features" msgid "Display" msgstr "Anzeige" -#: mod/settings.php:60 mod/settings.php:853 +#: mod/settings.php:60 mod/settings.php:855 msgid "Social Networks" msgstr "Soziale Netzwerke" @@ -4214,655 +4219,655 @@ msgstr "E-Mail Einstellungen bearbeitet." msgid "Features updated" msgstr "Features aktualisiert" -#: mod/settings.php:341 +#: mod/settings.php:343 msgid "Relocate message has been send to your contacts" msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." -#: mod/settings.php:355 include/user.php:39 +#: mod/settings.php:357 include/user.php:39 msgid "Passwords do not match. Password unchanged." msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." -#: mod/settings.php:360 +#: mod/settings.php:362 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert." -#: mod/settings.php:368 +#: mod/settings.php:370 msgid "Wrong password." msgstr "Falsches Passwort." -#: mod/settings.php:379 +#: mod/settings.php:381 msgid "Password changed." msgstr "Passwort geändert." -#: mod/settings.php:381 +#: mod/settings.php:383 msgid "Password update failed. Please try again." msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." -#: mod/settings.php:450 +#: mod/settings.php:452 msgid " Please use a shorter name." msgstr " Bitte verwende einen kürzeren Namen." -#: mod/settings.php:452 +#: mod/settings.php:454 msgid " Name too short." msgstr " Name ist zu kurz." -#: mod/settings.php:461 +#: mod/settings.php:463 msgid "Wrong Password" msgstr "Falsches Passwort" -#: mod/settings.php:466 +#: mod/settings.php:468 msgid " Not valid email." msgstr " Keine gültige E-Mail." -#: mod/settings.php:472 +#: mod/settings.php:474 msgid " Cannot change to that email." msgstr "Ändern der E-Mail nicht möglich. " -#: mod/settings.php:528 +#: mod/settings.php:530 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt." -#: mod/settings.php:532 +#: mod/settings.php:534 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte." -#: mod/settings.php:571 +#: mod/settings.php:573 msgid "Settings updated." msgstr "Einstellungen aktualisiert." -#: mod/settings.php:647 mod/settings.php:673 mod/settings.php:709 +#: mod/settings.php:649 mod/settings.php:675 mod/settings.php:711 msgid "Add application" msgstr "Programm hinzufügen" -#: mod/settings.php:651 mod/settings.php:677 +#: mod/settings.php:653 mod/settings.php:679 msgid "Consumer Key" msgstr "Consumer Key" -#: mod/settings.php:652 mod/settings.php:678 +#: mod/settings.php:654 mod/settings.php:680 msgid "Consumer Secret" msgstr "Consumer Secret" -#: mod/settings.php:653 mod/settings.php:679 +#: mod/settings.php:655 mod/settings.php:681 msgid "Redirect" msgstr "Umleiten" -#: mod/settings.php:654 mod/settings.php:680 +#: mod/settings.php:656 mod/settings.php:682 msgid "Icon url" msgstr "Icon URL" -#: mod/settings.php:665 +#: mod/settings.php:667 msgid "You can't edit this application." msgstr "Du kannst dieses Programm nicht bearbeiten." -#: mod/settings.php:708 +#: mod/settings.php:710 msgid "Connected Apps" msgstr "Verbundene Programme" -#: mod/settings.php:712 +#: mod/settings.php:714 msgid "Client key starts with" msgstr "Anwenderschlüssel beginnt mit" -#: mod/settings.php:713 +#: mod/settings.php:715 msgid "No name" msgstr "Kein Name" -#: mod/settings.php:714 +#: mod/settings.php:716 msgid "Remove authorization" msgstr "Autorisierung entziehen" -#: mod/settings.php:726 +#: mod/settings.php:728 msgid "No Plugin settings configured" msgstr "Keine Plugin-Einstellungen konfiguriert" -#: mod/settings.php:734 +#: mod/settings.php:736 msgid "Plugin Settings" msgstr "Plugin-Einstellungen" -#: mod/settings.php:748 +#: mod/settings.php:750 msgid "Off" msgstr "Aus" -#: mod/settings.php:748 +#: mod/settings.php:750 msgid "On" msgstr "An" -#: mod/settings.php:756 +#: mod/settings.php:758 msgid "Additional Features" msgstr "Zusätzliche Features" -#: mod/settings.php:766 mod/settings.php:770 +#: mod/settings.php:768 mod/settings.php:772 msgid "General Social Media Settings" msgstr "Allgemeine Einstellungen zu Sozialen Medien" -#: mod/settings.php:776 +#: mod/settings.php:778 msgid "Disable intelligent shortening" msgstr "Intelligentes Link kürzen ausschalten" -#: mod/settings.php:778 +#: mod/settings.php:780 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If this option is enabled then every shortened post will always point to the" " original friendica post." msgstr "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt." -#: mod/settings.php:784 +#: mod/settings.php:786 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen" -#: mod/settings.php:786 +#: mod/settings.php:788 msgid "" "If you receive a message from an unknown OStatus user, this option decides " "what to do. If it is checked, a new contact will be created for every " "unknown user." msgstr "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,." -#: mod/settings.php:795 +#: mod/settings.php:797 msgid "Your legacy GNU Social account" msgstr "Dein alter GNU Social Account" -#: mod/settings.php:797 +#: mod/settings.php:799 msgid "" "If you enter your old GNU Social/Statusnet account name here (in the format " "user@domain.tld), your contacts will be added automatically. The field will " "be emptied when done." msgstr "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden." -#: mod/settings.php:800 +#: mod/settings.php:802 msgid "Repair OStatus subscriptions" msgstr "OStatus Abonnements reparieren" -#: mod/settings.php:809 mod/settings.php:810 +#: mod/settings.php:811 mod/settings.php:812 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s" -#: mod/settings.php:809 mod/dfrn_request.php:858 +#: mod/settings.php:811 mod/dfrn_request.php:858 #: include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora" -#: mod/settings.php:809 mod/settings.php:810 +#: mod/settings.php:811 mod/settings.php:812 msgid "enabled" msgstr "eingeschaltet" -#: mod/settings.php:809 mod/settings.php:810 +#: mod/settings.php:811 mod/settings.php:812 msgid "disabled" msgstr "ausgeschaltet" -#: mod/settings.php:810 +#: mod/settings.php:812 msgid "GNU Social (OStatus)" msgstr "GNU Social (OStatus)" -#: mod/settings.php:846 +#: mod/settings.php:848 msgid "Email access is disabled on this site." msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." -#: mod/settings.php:858 +#: mod/settings.php:860 msgid "Email/Mailbox Setup" msgstr "E-Mail/Postfach-Einstellungen" -#: mod/settings.php:859 +#: mod/settings.php:861 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an." -#: mod/settings.php:860 +#: mod/settings.php:862 msgid "Last successful email check:" msgstr "Letzter erfolgreicher E-Mail Check" -#: mod/settings.php:862 +#: mod/settings.php:864 msgid "IMAP server name:" msgstr "IMAP-Server-Name:" -#: mod/settings.php:863 +#: mod/settings.php:865 msgid "IMAP port:" msgstr "IMAP-Port:" -#: mod/settings.php:864 +#: mod/settings.php:866 msgid "Security:" msgstr "Sicherheit:" -#: mod/settings.php:864 mod/settings.php:869 +#: mod/settings.php:866 mod/settings.php:871 msgid "None" msgstr "Keine" -#: mod/settings.php:865 +#: mod/settings.php:867 msgid "Email login name:" msgstr "E-Mail-Login-Name:" -#: mod/settings.php:866 +#: mod/settings.php:868 msgid "Email password:" msgstr "E-Mail-Passwort:" -#: mod/settings.php:867 +#: mod/settings.php:869 msgid "Reply-to address:" msgstr "Reply-to Adresse:" -#: mod/settings.php:868 +#: mod/settings.php:870 msgid "Send public posts to all email contacts:" msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" -#: mod/settings.php:869 +#: mod/settings.php:871 msgid "Action after import:" msgstr "Aktion nach Import:" -#: mod/settings.php:869 +#: mod/settings.php:871 msgid "Mark as seen" msgstr "Als gelesen markieren" -#: mod/settings.php:869 +#: mod/settings.php:871 msgid "Move to folder" msgstr "In einen Ordner verschieben" -#: mod/settings.php:870 +#: mod/settings.php:872 msgid "Move to folder:" msgstr "In diesen Ordner verschieben:" -#: mod/settings.php:955 +#: mod/settings.php:958 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: mod/settings.php:961 mod/settings.php:979 +#: mod/settings.php:964 mod/settings.php:982 msgid "Display Theme:" msgstr "Theme:" -#: mod/settings.php:962 +#: mod/settings.php:965 msgid "Mobile Theme:" msgstr "Mobiles Theme" -#: mod/settings.php:963 +#: mod/settings.php:966 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: mod/settings.php:963 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimal 10 Sekunden, kein Maximum" +#: mod/settings.php:966 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Minimum sind 10 Sekeunden. Gib -1 ein um abzuschalten." -#: mod/settings.php:964 +#: mod/settings.php:967 msgid "Number of items to display per page:" msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " -#: mod/settings.php:964 mod/settings.php:965 +#: mod/settings.php:967 mod/settings.php:968 msgid "Maximum of 100 items" msgstr "Maximal 100 Beiträge" -#: mod/settings.php:965 +#: mod/settings.php:968 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:" -#: mod/settings.php:966 +#: mod/settings.php:969 msgid "Don't show emoticons" msgstr "Keine Smilies anzeigen" -#: mod/settings.php:967 +#: mod/settings.php:970 msgid "Calendar" msgstr "Kalender" -#: mod/settings.php:968 +#: mod/settings.php:971 msgid "Beginning of week:" msgstr "Wochenbeginn:" -#: mod/settings.php:969 +#: mod/settings.php:972 msgid "Don't show notices" msgstr "Info-Popups nicht anzeigen" -#: mod/settings.php:970 +#: mod/settings.php:973 msgid "Infinite scroll" msgstr "Endloses Scrollen" -#: mod/settings.php:971 +#: mod/settings.php:974 msgid "Automatic updates only at the top of the network page" msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist." -#: mod/settings.php:973 view/theme/cleanzero/config.php:82 +#: mod/settings.php:976 view/theme/cleanzero/config.php:82 #: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66 #: view/theme/diabook/config.php:150 view/theme/clean/config.php:85 #: view/theme/vier/config.php:109 view/theme/duepuntozero/config.php:61 msgid "Theme settings" msgstr "Themeneinstellungen" -#: mod/settings.php:1050 +#: mod/settings.php:1053 msgid "User Types" msgstr "Nutzer Art" -#: mod/settings.php:1051 +#: mod/settings.php:1054 msgid "Community Types" msgstr "Gemeinschafts Art" -#: mod/settings.php:1052 +#: mod/settings.php:1055 msgid "Normal Account Page" msgstr "Normales Konto" -#: mod/settings.php:1053 +#: mod/settings.php:1056 msgid "This account is a normal personal profile" msgstr "Dieses Konto ist ein normales persönliches Profil" -#: mod/settings.php:1056 +#: mod/settings.php:1059 msgid "Soapbox Page" msgstr "Marktschreier-Konto" -#: mod/settings.php:1057 +#: mod/settings.php:1060 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert" -#: mod/settings.php:1060 +#: mod/settings.php:1063 msgid "Community Forum/Celebrity Account" msgstr "Forum/Promi-Konto" -#: mod/settings.php:1061 +#: mod/settings.php:1064 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert" -#: mod/settings.php:1064 +#: mod/settings.php:1067 msgid "Automatic Friend Page" msgstr "Automatische Freunde Seite" -#: mod/settings.php:1065 +#: mod/settings.php:1068 msgid "Automatically approve all connection/friend requests as friends" msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert" -#: mod/settings.php:1068 +#: mod/settings.php:1071 msgid "Private Forum [Experimental]" msgstr "Privates Forum [Versuchsstadium]" -#: mod/settings.php:1069 +#: mod/settings.php:1072 msgid "Private forum - approved members only" msgstr "Privates Forum, nur für Mitglieder" -#: mod/settings.php:1081 +#: mod/settings.php:1084 msgid "OpenID:" msgstr "OpenID:" -#: mod/settings.php:1081 +#: mod/settings.php:1084 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID." -#: mod/settings.php:1091 +#: mod/settings.php:1094 msgid "Publish your default profile in your local site directory?" msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?" -#: mod/settings.php:1097 +#: mod/settings.php:1100 msgid "Publish your default profile in the global social directory?" msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?" -#: mod/settings.php:1105 +#: mod/settings.php:1108 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?" -#: mod/settings.php:1109 include/acl_selectors.php:331 +#: mod/settings.php:1112 include/acl_selectors.php:331 msgid "Hide your profile details from unknown viewers?" msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" -#: mod/settings.php:1109 +#: mod/settings.php:1112 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich" -#: mod/settings.php:1114 +#: mod/settings.php:1117 msgid "Allow friends to post to your profile page?" msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?" -#: mod/settings.php:1120 +#: mod/settings.php:1123 msgid "Allow friends to tag your posts?" msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?" -#: mod/settings.php:1126 +#: mod/settings.php:1129 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" -#: mod/settings.php:1132 +#: mod/settings.php:1135 msgid "Permit unknown people to send you private mail?" msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?" -#: mod/settings.php:1140 +#: mod/settings.php:1143 msgid "Profile is not published." msgstr "Profil ist nicht veröffentlicht." -#: mod/settings.php:1148 +#: mod/settings.php:1151 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Die Adresse deines Profils lautet '%s' oder '%s'." -#: mod/settings.php:1155 +#: mod/settings.php:1158 msgid "Automatically expire posts after this many days:" msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" -#: mod/settings.php:1155 +#: mod/settings.php:1158 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht." -#: mod/settings.php:1156 +#: mod/settings.php:1159 msgid "Advanced expiration settings" msgstr "Erweiterte Verfallseinstellungen" -#: mod/settings.php:1157 +#: mod/settings.php:1160 msgid "Advanced Expiration" msgstr "Erweitertes Verfallen" -#: mod/settings.php:1158 +#: mod/settings.php:1161 msgid "Expire posts:" msgstr "Beiträge verfallen lassen:" -#: mod/settings.php:1159 +#: mod/settings.php:1162 msgid "Expire personal notes:" msgstr "Persönliche Notizen verfallen lassen:" -#: mod/settings.php:1160 +#: mod/settings.php:1163 msgid "Expire starred posts:" msgstr "Markierte Beiträge verfallen lassen:" -#: mod/settings.php:1161 +#: mod/settings.php:1164 msgid "Expire photos:" msgstr "Fotos verfallen lassen:" -#: mod/settings.php:1162 +#: mod/settings.php:1165 msgid "Only expire posts by others:" msgstr "Nur Beiträge anderer verfallen:" -#: mod/settings.php:1190 +#: mod/settings.php:1193 msgid "Account Settings" msgstr "Kontoeinstellungen" -#: mod/settings.php:1198 +#: mod/settings.php:1201 msgid "Password Settings" msgstr "Passwort-Einstellungen" -#: mod/settings.php:1199 mod/register.php:274 +#: mod/settings.php:1202 mod/register.php:274 msgid "New Password:" msgstr "Neues Passwort:" -#: mod/settings.php:1200 mod/register.php:275 +#: mod/settings.php:1203 mod/register.php:275 msgid "Confirm:" msgstr "Bestätigen:" -#: mod/settings.php:1200 +#: mod/settings.php:1203 msgid "Leave password fields blank unless changing" msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern" -#: mod/settings.php:1201 +#: mod/settings.php:1204 msgid "Current Password:" msgstr "Aktuelles Passwort:" -#: mod/settings.php:1201 mod/settings.php:1202 +#: mod/settings.php:1204 mod/settings.php:1205 msgid "Your current password to confirm the changes" msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" -#: mod/settings.php:1202 +#: mod/settings.php:1205 msgid "Password:" msgstr "Passwort:" -#: mod/settings.php:1206 +#: mod/settings.php:1209 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: mod/settings.php:1207 include/identity.php:551 +#: mod/settings.php:1210 include/identity.php:578 msgid "Full Name:" msgstr "Kompletter Name:" -#: mod/settings.php:1208 +#: mod/settings.php:1211 msgid "Email Address:" msgstr "E-Mail-Adresse:" -#: mod/settings.php:1209 +#: mod/settings.php:1212 msgid "Your Timezone:" msgstr "Deine Zeitzone:" -#: mod/settings.php:1210 +#: mod/settings.php:1213 msgid "Your Language:" msgstr "Deine Sprache:" -#: mod/settings.php:1210 +#: mod/settings.php:1213 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken" -#: mod/settings.php:1211 +#: mod/settings.php:1214 msgid "Default Post Location:" msgstr "Standardstandort:" -#: mod/settings.php:1212 +#: mod/settings.php:1215 msgid "Use Browser Location:" msgstr "Standort des Browsers verwenden:" -#: mod/settings.php:1215 +#: mod/settings.php:1218 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Privatsphäre-Einstellungen" -#: mod/settings.php:1217 +#: mod/settings.php:1220 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:" -#: mod/settings.php:1217 mod/settings.php:1247 +#: mod/settings.php:1220 mod/settings.php:1250 msgid "(to prevent spam abuse)" msgstr "(um SPAM zu vermeiden)" -#: mod/settings.php:1218 +#: mod/settings.php:1221 msgid "Default Post Permissions" msgstr "Standard-Zugriffsrechte für Beiträge" -#: mod/settings.php:1219 +#: mod/settings.php:1222 msgid "(click to open/close)" msgstr "(klicke zum öffnen/schließen)" -#: mod/settings.php:1228 mod/photos.php:1191 mod/photos.php:1576 +#: mod/settings.php:1231 mod/photos.php:1199 mod/photos.php:1584 msgid "Show to Groups" msgstr "Zeige den Gruppen" -#: mod/settings.php:1229 mod/photos.php:1192 mod/photos.php:1577 +#: mod/settings.php:1232 mod/photos.php:1200 mod/photos.php:1585 msgid "Show to Contacts" msgstr "Zeige den Kontakten" -#: mod/settings.php:1230 +#: mod/settings.php:1233 msgid "Default Private Post" msgstr "Privater Standardbeitrag" -#: mod/settings.php:1231 +#: mod/settings.php:1234 msgid "Default Public Post" msgstr "Öffentlicher Standardbeitrag" -#: mod/settings.php:1235 +#: mod/settings.php:1238 msgid "Default Permissions for New Posts" msgstr "Standardberechtigungen für neue Beiträge" -#: mod/settings.php:1247 +#: mod/settings.php:1250 msgid "Maximum private messages per day from unknown people:" msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" -#: mod/settings.php:1250 +#: mod/settings.php:1253 msgid "Notification Settings" msgstr "Benachrichtigungseinstellungen" -#: mod/settings.php:1251 +#: mod/settings.php:1254 msgid "By default post a status message when:" msgstr "Standardmäßig eine Statusnachricht posten, wenn:" -#: mod/settings.php:1252 +#: mod/settings.php:1255 msgid "accepting a friend request" msgstr "– Du eine Kontaktanfrage akzeptierst" -#: mod/settings.php:1253 +#: mod/settings.php:1256 msgid "joining a forum/community" msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst" -#: mod/settings.php:1254 +#: mod/settings.php:1257 msgid "making an interesting profile change" msgstr "– Du eine interessante Änderung an Deinem Profil durchführst" -#: mod/settings.php:1255 +#: mod/settings.php:1258 msgid "Send a notification email when:" msgstr "Benachrichtigungs-E-Mail senden wenn:" -#: mod/settings.php:1256 +#: mod/settings.php:1259 msgid "You receive an introduction" msgstr "– Du eine Kontaktanfrage erhältst" -#: mod/settings.php:1257 +#: mod/settings.php:1260 msgid "Your introductions are confirmed" msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" -#: mod/settings.php:1258 +#: mod/settings.php:1261 msgid "Someone writes on your profile wall" msgstr "– jemand etwas auf Deine Pinnwand schreibt" -#: mod/settings.php:1259 +#: mod/settings.php:1262 msgid "Someone writes a followup comment" msgstr "– jemand auch einen Kommentar verfasst" -#: mod/settings.php:1260 +#: mod/settings.php:1263 msgid "You receive a private message" msgstr "– Du eine private Nachricht erhältst" -#: mod/settings.php:1261 +#: mod/settings.php:1264 msgid "You receive a friend suggestion" msgstr "– Du eine Empfehlung erhältst" -#: mod/settings.php:1262 +#: mod/settings.php:1265 msgid "You are tagged in a post" msgstr "– Du in einem Beitrag erwähnt wirst" -#: mod/settings.php:1263 +#: mod/settings.php:1266 msgid "You are poked/prodded/etc. in a post" msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst" -#: mod/settings.php:1265 +#: mod/settings.php:1268 msgid "Activate desktop notifications" msgstr "Desktop Benachrichtigungen einschalten" -#: mod/settings.php:1265 +#: mod/settings.php:1268 msgid "Show desktop popup on new notifications" msgstr "Desktop Benachrichtigungen einschalten" -#: mod/settings.php:1267 +#: mod/settings.php:1270 msgid "Text-only notification emails" msgstr "Benachrichtigungs E-Mail als Rein-Text." -#: mod/settings.php:1269 +#: mod/settings.php:1272 msgid "Send text only notification emails, without the html part" msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil" -#: mod/settings.php:1271 +#: mod/settings.php:1274 msgid "Advanced Account/Page Type Settings" msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" -#: mod/settings.php:1272 +#: mod/settings.php:1275 msgid "Change the behaviour of this account for special situations" msgstr "Verhalten dieses Kontos in bestimmten Situationen:" -#: mod/settings.php:1275 +#: mod/settings.php:1278 msgid "Relocate" msgstr "Umziehen" -#: mod/settings.php:1276 +#: mod/settings.php:1279 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button." -#: mod/settings.php:1277 +#: mod/settings.php:1280 msgid "Resend relocate message to contacts" msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" @@ -5099,7 +5104,7 @@ msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstab msgid "Choose a nickname: " msgstr "Spitznamen wählen: " -#: mod/register.php:280 boot.php:1256 include/nav.php:108 +#: mod/register.php:280 boot.php:1268 include/nav.php:108 msgid "Register" msgstr "Registrieren" @@ -5119,62 +5124,54 @@ msgstr "System zur Wartung abgeschaltet" msgid "Only logged in users are permitted to perform a search." msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet." -#: mod/search.php:115 +#: mod/search.php:124 msgid "Too Many Requests" msgstr "Zu viele Abfragen" -#: mod/search.php:116 +#: mod/search.php:125 msgid "Only one search per minute is permitted for not logged in users." msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet." -#: mod/search.php:126 include/text.php:1003 include/nav.php:118 +#: mod/search.php:136 include/text.php:1003 include/nav.php:118 msgid "Search" msgstr "Suche" -#: mod/search.php:224 +#: mod/search.php:234 #, php-format msgid "Items tagged with: %s" msgstr "Beiträge markiert mit: %s" -#: mod/search.php:226 +#: mod/search.php:236 #, php-format msgid "Search results for: %s" msgstr "Suchergebnisse für: %s" -#: mod/directory.php:116 mod/profiles.php:760 -msgid "Age: " -msgstr "Alter: " - -#: mod/directory.php:119 -msgid "Gender: " -msgstr "Geschlecht:" - -#: mod/directory.php:143 include/identity.php:283 include/identity.php:573 +#: mod/directory.php:149 include/identity.php:309 include/identity.php:600 msgid "Status:" msgstr "Status:" -#: mod/directory.php:145 include/identity.php:285 include/identity.php:584 +#: mod/directory.php:151 include/identity.php:311 include/identity.php:611 msgid "Homepage:" msgstr "Homepage:" -#: mod/directory.php:195 view/theme/diabook/theme.php:525 +#: mod/directory.php:203 view/theme/diabook/theme.php:525 #: view/theme/vier/theme.php:205 msgid "Global Directory" msgstr "Weltweites Verzeichnis" -#: mod/directory.php:197 +#: mod/directory.php:205 msgid "Find on this site" msgstr "Auf diesem Server suchen" -#: mod/directory.php:199 +#: mod/directory.php:207 msgid "Finding:" msgstr "Funde:" -#: mod/directory.php:201 +#: mod/directory.php:209 msgid "Site Directory" msgstr "Verzeichnis" -#: mod/directory.php:208 +#: mod/directory.php:216 msgid "No entries (some entries may be hidden)." msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." @@ -5213,14 +5210,10 @@ msgstr "Hinzufügen" msgid "No entries." msgstr "Keine Einträge." -#: mod/common.php:85 +#: mod/common.php:87 msgid "No contacts in common." msgstr "Keine gemeinsamen Kontakte." -#: mod/common.php:133 -msgid "Common Friends" -msgstr "Gemeinsame Freunde" - #: mod/uexport.php:77 msgid "Export account" msgstr "Account exportieren" @@ -5302,11 +5295,11 @@ msgstr "Familienstand" msgid "Romantic Partner" msgstr "Romanze" -#: mod/profiles.php:344 mod/photos.php:1639 include/conversation.php:508 +#: mod/profiles.php:344 mod/photos.php:1647 include/conversation.php:508 msgid "Likes" msgstr "Likes" -#: mod/profiles.php:348 mod/photos.php:1639 include/conversation.php:508 +#: mod/profiles.php:348 mod/photos.php:1647 include/conversation.php:508 msgid "Dislikes" msgstr "Dislikes" @@ -5485,7 +5478,7 @@ msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" msgid "Since [date]:" msgstr "Seit [Datum]:" -#: mod/profiles.php:724 include/identity.php:582 +#: mod/profiles.php:724 include/identity.php:609 msgid "Sexual Preference:" msgstr "Sexuelle Vorlieben:" @@ -5493,11 +5486,11 @@ msgstr "Sexuelle Vorlieben:" msgid "Homepage URL:" msgstr "Adresse der Homepage:" -#: mod/profiles.php:726 include/identity.php:586 +#: mod/profiles.php:726 include/identity.php:613 msgid "Hometown:" msgstr "Heimatort:" -#: mod/profiles.php:727 include/identity.php:590 +#: mod/profiles.php:727 include/identity.php:617 msgid "Political Views:" msgstr "Politische Ansichten:" @@ -5513,11 +5506,11 @@ msgstr "Öffentliche Schlüsselwörter:" msgid "Private Keywords:" msgstr "Private Schlüsselwörter:" -#: mod/profiles.php:731 include/identity.php:598 +#: mod/profiles.php:731 include/identity.php:625 msgid "Likes:" msgstr "Likes:" -#: mod/profiles.php:732 include/identity.php:600 +#: mod/profiles.php:732 include/identity.php:627 msgid "Dislikes:" msgstr "Dislikes:" @@ -5579,27 +5572,31 @@ msgid "" "be visible to anybody using the internet." msgstr "Dies ist Dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein." +#: mod/profiles.php:760 +msgid "Age: " +msgstr "Alter: " + #: mod/profiles.php:813 msgid "Edit/Manage Profiles" msgstr "Bearbeite/Verwalte Profile" -#: mod/profiles.php:814 include/identity.php:241 include/identity.php:267 +#: mod/profiles.php:814 include/identity.php:257 include/identity.php:283 msgid "Change profile photo" msgstr "Profilbild ändern" -#: mod/profiles.php:815 include/identity.php:242 +#: mod/profiles.php:815 include/identity.php:258 msgid "Create New Profile" msgstr "Neues Profil anlegen" -#: mod/profiles.php:826 include/identity.php:252 +#: mod/profiles.php:826 include/identity.php:268 msgid "Profile Image" msgstr "Profilbild" -#: mod/profiles.php:828 include/identity.php:255 +#: mod/profiles.php:828 include/identity.php:271 msgid "visible to everybody" msgstr "sichtbar für jeden" -#: mod/profiles.php:829 include/identity.php:256 +#: mod/profiles.php:829 include/identity.php:272 msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" @@ -5611,75 +5608,75 @@ msgstr "Beitrag nicht gefunden" msgid "Edit post" msgstr "Beitrag bearbeiten" -#: mod/editpost.php:110 include/conversation.php:1185 +#: mod/editpost.php:111 include/conversation.php:1185 msgid "upload photo" msgstr "Bild hochladen" -#: mod/editpost.php:111 include/conversation.php:1186 +#: mod/editpost.php:112 include/conversation.php:1186 msgid "Attach file" msgstr "Datei anhängen" -#: mod/editpost.php:112 include/conversation.php:1187 +#: mod/editpost.php:113 include/conversation.php:1187 msgid "attach file" msgstr "Datei anhängen" -#: mod/editpost.php:114 include/conversation.php:1189 +#: mod/editpost.php:115 include/conversation.php:1189 msgid "web link" msgstr "Weblink" -#: mod/editpost.php:115 include/conversation.php:1190 +#: mod/editpost.php:116 include/conversation.php:1190 msgid "Insert video link" msgstr "Video-Adresse einfügen" -#: mod/editpost.php:116 include/conversation.php:1191 +#: mod/editpost.php:117 include/conversation.php:1191 msgid "video link" msgstr "Video-Link" -#: mod/editpost.php:117 include/conversation.php:1192 +#: mod/editpost.php:118 include/conversation.php:1192 msgid "Insert audio link" msgstr "Audio-Adresse einfügen" -#: mod/editpost.php:118 include/conversation.php:1193 +#: mod/editpost.php:119 include/conversation.php:1193 msgid "audio link" msgstr "Audio-Link" -#: mod/editpost.php:119 include/conversation.php:1194 +#: mod/editpost.php:120 include/conversation.php:1194 msgid "Set your location" msgstr "Deinen Standort festlegen" -#: mod/editpost.php:120 include/conversation.php:1195 +#: mod/editpost.php:121 include/conversation.php:1195 msgid "set location" msgstr "Ort setzen" -#: mod/editpost.php:121 include/conversation.php:1196 +#: mod/editpost.php:122 include/conversation.php:1196 msgid "Clear browser location" msgstr "Browser-Standort leeren" -#: mod/editpost.php:122 include/conversation.php:1197 +#: mod/editpost.php:123 include/conversation.php:1197 msgid "clear location" msgstr "Ort löschen" -#: mod/editpost.php:124 include/conversation.php:1203 +#: mod/editpost.php:125 include/conversation.php:1203 msgid "Permission settings" msgstr "Berechtigungseinstellungen" -#: mod/editpost.php:132 include/acl_selectors.php:344 +#: mod/editpost.php:133 include/acl_selectors.php:344 msgid "CC: email addresses" msgstr "Cc: E-Mail-Addressen" -#: mod/editpost.php:133 include/conversation.php:1212 +#: mod/editpost.php:134 include/conversation.php:1212 msgid "Public post" msgstr "Öffentlicher Beitrag" -#: mod/editpost.php:136 include/conversation.php:1199 +#: mod/editpost.php:137 include/conversation.php:1199 msgid "Set title" msgstr "Titel setzen" -#: mod/editpost.php:138 include/conversation.php:1201 +#: mod/editpost.php:139 include/conversation.php:1201 msgid "Categories (comma-separated list)" msgstr "Kategorien (kommasepariert)" -#: mod/editpost.php:139 include/acl_selectors.php:345 +#: mod/editpost.php:140 include/acl_selectors.php:345 msgid "Example: bob@example.com, mary@example.com" msgstr "Z.B.: bob@example.com, mary@example.com" @@ -5745,7 +5742,7 @@ msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." msgid "Visible to:" msgstr "Sichtbar für:" -#: mod/notes.php:46 include/identity.php:694 +#: mod/notes.php:46 include/identity.php:721 msgid "Personal Notes" msgstr "Persönliche Notizen" @@ -5902,197 +5899,197 @@ msgid "" "important, please visit http://friendica.com" msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com" -#: mod/photos.php:91 include/identity.php:669 +#: mod/photos.php:99 include/identity.php:696 msgid "Photo Albums" msgstr "Fotoalben" -#: mod/photos.php:92 mod/photos.php:1891 +#: mod/photos.php:100 mod/photos.php:1899 msgid "Recent Photos" msgstr "Neueste Fotos" -#: mod/photos.php:95 mod/photos.php:1312 mod/photos.php:1893 +#: mod/photos.php:103 mod/photos.php:1320 mod/photos.php:1901 msgid "Upload New Photos" msgstr "Neue Fotos hochladen" -#: mod/photos.php:173 +#: mod/photos.php:181 msgid "Contact information unavailable" msgstr "Kontaktinformationen nicht verfügbar" -#: mod/photos.php:194 +#: mod/photos.php:202 msgid "Album not found." msgstr "Album nicht gefunden." -#: mod/photos.php:224 mod/photos.php:236 mod/photos.php:1254 +#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1262 msgid "Delete Album" msgstr "Album löschen" -#: mod/photos.php:234 +#: mod/photos.php:242 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?" -#: mod/photos.php:314 mod/photos.php:325 mod/photos.php:1572 +#: mod/photos.php:322 mod/photos.php:333 mod/photos.php:1580 msgid "Delete Photo" msgstr "Foto löschen" -#: mod/photos.php:323 +#: mod/photos.php:331 msgid "Do you really want to delete this photo?" msgstr "Möchtest Du wirklich dieses Foto löschen?" -#: mod/photos.php:698 +#: mod/photos.php:706 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s wurde von %3$s in %2$s getaggt" -#: mod/photos.php:698 +#: mod/photos.php:706 msgid "a photo" msgstr "einem Foto" -#: mod/photos.php:811 +#: mod/photos.php:819 msgid "Image file is empty." msgstr "Bilddatei ist leer." -#: mod/photos.php:978 +#: mod/photos.php:986 msgid "No photos selected" msgstr "Keine Bilder ausgewählt" -#: mod/photos.php:1139 +#: mod/photos.php:1147 #, php-format msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers." -#: mod/photos.php:1174 +#: mod/photos.php:1182 msgid "Upload Photos" msgstr "Bilder hochladen" -#: mod/photos.php:1178 mod/photos.php:1249 +#: mod/photos.php:1186 mod/photos.php:1257 msgid "New album name: " msgstr "Name des neuen Albums: " -#: mod/photos.php:1179 +#: mod/photos.php:1187 msgid "or existing album name: " msgstr "oder existierender Albumname: " -#: mod/photos.php:1180 +#: mod/photos.php:1188 msgid "Do not show a status post for this upload" msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" -#: mod/photos.php:1182 mod/photos.php:1567 include/acl_selectors.php:347 +#: mod/photos.php:1190 mod/photos.php:1575 include/acl_selectors.php:347 msgid "Permissions" msgstr "Berechtigungen" -#: mod/photos.php:1193 +#: mod/photos.php:1201 msgid "Private Photo" msgstr "Privates Foto" -#: mod/photos.php:1194 +#: mod/photos.php:1202 msgid "Public Photo" msgstr "Öffentliches Foto" -#: mod/photos.php:1262 +#: mod/photos.php:1270 msgid "Edit Album" msgstr "Album bearbeiten" -#: mod/photos.php:1268 +#: mod/photos.php:1276 msgid "Show Newest First" msgstr "Zeige neueste zuerst" -#: mod/photos.php:1270 +#: mod/photos.php:1278 msgid "Show Oldest First" msgstr "Zeige älteste zuerst" -#: mod/photos.php:1298 mod/photos.php:1876 +#: mod/photos.php:1306 mod/photos.php:1884 msgid "View Photo" msgstr "Foto betrachten" -#: mod/photos.php:1345 +#: mod/photos.php:1353 msgid "Permission denied. Access to this item may be restricted." msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." -#: mod/photos.php:1347 +#: mod/photos.php:1355 msgid "Photo not available" msgstr "Foto nicht verfügbar" -#: mod/photos.php:1403 +#: mod/photos.php:1411 msgid "View photo" msgstr "Fotos ansehen" -#: mod/photos.php:1403 +#: mod/photos.php:1411 msgid "Edit photo" msgstr "Foto bearbeiten" -#: mod/photos.php:1404 +#: mod/photos.php:1412 msgid "Use as profile photo" msgstr "Als Profilbild verwenden" -#: mod/photos.php:1429 +#: mod/photos.php:1437 msgid "View Full Size" msgstr "Betrachte Originalgröße" -#: mod/photos.php:1515 +#: mod/photos.php:1523 msgid "Tags: " msgstr "Tags: " -#: mod/photos.php:1518 +#: mod/photos.php:1526 msgid "[Remove any tag]" msgstr "[Tag entfernen]" -#: mod/photos.php:1558 +#: mod/photos.php:1566 msgid "New album name" msgstr "Name des neuen Albums" -#: mod/photos.php:1559 +#: mod/photos.php:1567 msgid "Caption" msgstr "Bildunterschrift" -#: mod/photos.php:1560 +#: mod/photos.php:1568 msgid "Add a Tag" msgstr "Tag hinzufügen" -#: mod/photos.php:1560 +#: mod/photos.php:1568 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1561 +#: mod/photos.php:1569 msgid "Do not rotate" msgstr "Nicht rotieren" -#: mod/photos.php:1562 +#: mod/photos.php:1570 msgid "Rotate CW (right)" msgstr "Drehen US (rechts)" -#: mod/photos.php:1563 +#: mod/photos.php:1571 msgid "Rotate CCW (left)" msgstr "Drehen EUS (links)" -#: mod/photos.php:1578 +#: mod/photos.php:1586 msgid "Private photo" msgstr "Privates Foto" -#: mod/photos.php:1579 +#: mod/photos.php:1587 msgid "Public photo" msgstr "Öffentliches Foto" -#: mod/photos.php:1601 include/conversation.php:1183 +#: mod/photos.php:1609 include/conversation.php:1183 msgid "Share" msgstr "Teilen" -#: mod/photos.php:1640 include/conversation.php:509 +#: mod/photos.php:1648 include/conversation.php:509 #: include/conversation.php:1414 msgid "Attending" msgid_plural "Attending" msgstr[0] "Teilnehmend" msgstr[1] "Teilnehmend" -#: mod/photos.php:1640 include/conversation.php:509 +#: mod/photos.php:1648 include/conversation.php:509 msgid "Not attending" msgstr "Nicht teilnehmend" -#: mod/photos.php:1640 include/conversation.php:509 +#: mod/photos.php:1648 include/conversation.php:509 msgid "Might attend" msgstr "Eventuell teilnehmend" -#: mod/photos.php:1805 +#: mod/photos.php:1813 msgid "Map" msgstr "Karte" @@ -6152,60 +6149,60 @@ msgstr "Beitrag nicht verfügbar." msgid "Item was not found." msgstr "Beitrag konnte nicht gefunden werden." -#: boot.php:771 +#: boot.php:783 msgid "Delete this item?" msgstr "Diesen Beitrag löschen?" -#: boot.php:774 +#: boot.php:786 msgid "show fewer" msgstr "weniger anzeigen" -#: boot.php:1148 +#: boot.php:1160 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." -#: boot.php:1255 +#: boot.php:1267 msgid "Create a New Account" msgstr "Neues Konto erstellen" -#: boot.php:1280 include/nav.php:72 +#: boot.php:1292 include/nav.php:72 msgid "Logout" msgstr "Abmelden" -#: boot.php:1283 +#: boot.php:1295 msgid "Nickname or Email address: " msgstr "Spitzname oder E-Mail-Adresse: " -#: boot.php:1284 +#: boot.php:1296 msgid "Password: " msgstr "Passwort: " -#: boot.php:1285 +#: boot.php:1297 msgid "Remember me" msgstr "Anmeldedaten merken" -#: boot.php:1288 +#: boot.php:1300 msgid "Or login using OpenID: " msgstr "Oder melde Dich mit Deiner OpenID an: " -#: boot.php:1294 +#: boot.php:1306 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: boot.php:1297 +#: boot.php:1309 msgid "Website Terms of Service" msgstr "Website Nutzungsbedingungen" -#: boot.php:1298 +#: boot.php:1310 msgid "terms of service" msgstr "Nutzungsbedingungen" -#: boot.php:1300 +#: boot.php:1312 msgid "Website Privacy Policy" msgstr "Website Datenschutzerklärung" -#: boot.php:1301 +#: boot.php:1313 msgid "privacy policy" msgstr "Datenschutzerklärung" @@ -6266,11 +6263,11 @@ msgid "" "[pre]%s[/pre]" msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" -#: include/dbstructure.php:152 +#: include/dbstructure.php:151 msgid "Errors encountered creating database tables." msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." -#: include/dbstructure.php:210 +#: include/dbstructure.php:209 msgid "Errors encountered performing database changes." msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." @@ -6353,6 +6350,13 @@ msgstr "Alles" msgid "Categories" msgstr "Kategorien" +#: include/contact_widgets.php:237 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d gemeinsamer Kontakt" +msgstr[1] "%d gemeinsame Kontakte" + #: include/features.php:58 msgid "General Features" msgstr "Allgemeine Features" @@ -6699,12 +6703,12 @@ msgstr "Sekunden" msgid "%1$d %2$s ago" msgstr "%1$d %2$s her" -#: include/datetime.php:474 include/items.php:2444 +#: include/datetime.php:474 include/items.php:2470 #, php-format msgid "%s's birthday" msgstr "%ss Geburtstag" -#: include/datetime.php:475 include/items.php:2445 +#: include/datetime.php:475 include/items.php:2471 #, php-format msgid "Happy Birthday %s" msgstr "Herzlichen Glückwunsch %s" @@ -6713,148 +6717,132 @@ msgstr "Herzlichen Glückwunsch %s" msgid "Requested account is not available." msgstr "Das angefragte Profil ist nicht vorhanden." -#: include/identity.php:126 include/identity.php:265 include/identity.php:625 +#: include/identity.php:96 include/identity.php:281 include/identity.php:652 msgid "Edit profile" msgstr "Profil bearbeiten" -#: include/identity.php:225 +#: include/identity.php:241 msgid "Atom feed" msgstr "Atom-Feed" -#: include/identity.php:230 +#: include/identity.php:246 msgid "Message" msgstr "Nachricht" -#: include/identity.php:236 include/nav.php:185 +#: include/identity.php:252 include/nav.php:185 msgid "Profiles" msgstr "Profile" -#: include/identity.php:236 +#: include/identity.php:252 msgid "Manage/edit profiles" msgstr "Profile verwalten/editieren" -#: include/identity.php:353 -msgid "Network:" -msgstr "Netzwerk" - -#: include/identity.php:385 include/identity.php:471 +#: include/identity.php:412 include/identity.php:498 msgid "g A l F d" msgstr "l, d. F G \\U\\h\\r" -#: include/identity.php:386 include/identity.php:472 +#: include/identity.php:413 include/identity.php:499 msgid "F d" msgstr "d. F" -#: include/identity.php:431 include/identity.php:518 +#: include/identity.php:458 include/identity.php:545 msgid "[today]" msgstr "[heute]" -#: include/identity.php:443 +#: include/identity.php:470 msgid "Birthday Reminders" msgstr "Geburtstagserinnerungen" -#: include/identity.php:444 +#: include/identity.php:471 msgid "Birthdays this week:" msgstr "Geburtstage diese Woche:" -#: include/identity.php:505 +#: include/identity.php:532 msgid "[No description]" msgstr "[keine Beschreibung]" -#: include/identity.php:529 +#: include/identity.php:556 msgid "Event Reminders" msgstr "Veranstaltungserinnerungen" -#: include/identity.php:530 +#: include/identity.php:557 msgid "Events this week:" msgstr "Veranstaltungen diese Woche" -#: include/identity.php:558 +#: include/identity.php:585 msgid "j F, Y" msgstr "j F, Y" -#: include/identity.php:559 +#: include/identity.php:586 msgid "j F" msgstr "j F" -#: include/identity.php:566 +#: include/identity.php:593 msgid "Birthday:" msgstr "Geburtstag:" -#: include/identity.php:570 +#: include/identity.php:597 msgid "Age:" msgstr "Alter:" -#: include/identity.php:579 +#: include/identity.php:606 #, php-format msgid "for %1$d %2$s" msgstr "für %1$d %2$s" -#: include/identity.php:592 +#: include/identity.php:619 msgid "Religion:" msgstr "Religion:" -#: include/identity.php:596 +#: include/identity.php:623 msgid "Hobbies/Interests:" msgstr "Hobbies/Interessen:" -#: include/identity.php:603 +#: include/identity.php:630 msgid "Contact information and Social Networks:" msgstr "Kontaktinformationen und Soziale Netzwerke:" -#: include/identity.php:605 +#: include/identity.php:632 msgid "Musical interests:" msgstr "Musikalische Interessen:" -#: include/identity.php:607 +#: include/identity.php:634 msgid "Books, literature:" msgstr "Literatur/Bücher:" -#: include/identity.php:609 +#: include/identity.php:636 msgid "Television:" msgstr "Fernsehen:" -#: include/identity.php:611 +#: include/identity.php:638 msgid "Film/dance/culture/entertainment:" msgstr "Filme/Tänze/Kultur/Unterhaltung:" -#: include/identity.php:613 +#: include/identity.php:640 msgid "Love/Romance:" msgstr "Liebesleben:" -#: include/identity.php:615 +#: include/identity.php:642 msgid "Work/employment:" msgstr "Arbeit/Beschäftigung:" -#: include/identity.php:617 +#: include/identity.php:644 msgid "School/education:" msgstr "Schule/Ausbildung:" -#: include/identity.php:621 +#: include/identity.php:648 msgid "Forums:" msgstr "Foren:" -#: include/identity.php:650 include/nav.php:75 -msgid "Status" -msgstr "Status" - -#: include/identity.php:653 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" - -#: include/identity.php:661 -msgid "Profile Details" -msgstr "Profildetails" - -#: include/identity.php:674 include/identity.php:677 include/nav.php:78 +#: include/identity.php:701 include/identity.php:704 include/nav.php:78 msgid "Videos" msgstr "Videos" -#: include/identity.php:689 include/nav.php:140 +#: include/identity.php:716 include/nav.php:140 msgid "Events and Calendar" msgstr "Ereignisse und Kalender" -#: include/identity.php:697 +#: include/identity.php:724 msgid "Only You Can See This" msgstr "Nur Du kannst das sehen" @@ -7184,6 +7172,10 @@ msgid_plural "%d Contacts" msgstr[0] "%d Kontakt" msgstr[1] "%d Kontakte" +#: include/text.php:921 +msgid "View Contacts" +msgstr "Kontakte anzeigen" + #: include/text.php:1010 include/nav.php:121 msgid "Full Text" msgstr "Volltext" @@ -7336,15 +7328,15 @@ msgstr "Auf separater Seite ansehen" msgid "view on separate page" msgstr "auf separater Seite ansehen" -#: include/text.php:1997 +#: include/text.php:1995 msgid "activity" msgstr "Aktivität" -#: include/text.php:2000 +#: include/text.php:1998 msgid "post" msgstr "Beitrag" -#: include/text.php:2168 +#: include/text.php:2166 msgid "Item filed" msgstr "Beitrag abgelegt" @@ -7645,43 +7637,43 @@ msgstr "Navigation" msgid "Site map" msgstr "Sitemap" -#: include/api.php:321 include/api.php:332 include/api.php:441 -#: include/api.php:1160 include/api.php:1162 +#: include/api.php:343 include/api.php:354 include/api.php:463 +#: include/api.php:1182 include/api.php:1184 msgid "User not found." msgstr "Nutzer nicht gefunden." -#: include/api.php:808 +#: include/api.php:830 #, php-format msgid "Daily posting limit of %d posts reached. The post was rejected." msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." -#: include/api.php:827 +#: include/api.php:849 #, php-format msgid "Weekly posting limit of %d posts reached. The post was rejected." msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." -#: include/api.php:846 +#: include/api.php:868 #, php-format msgid "Monthly posting limit of %d posts reached. The post was rejected." msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." -#: include/api.php:1369 +#: include/api.php:1391 msgid "There is no status with this id." msgstr "Es gibt keinen Status mit dieser ID." -#: include/api.php:1443 +#: include/api.php:1465 msgid "There is no conversation with this id." msgstr "Es existiert keine Unterhaltung mit dieser ID." -#: include/api.php:1722 +#: include/api.php:1744 msgid "Invalid item." msgstr "Ungültiges Objekt" -#: include/api.php:1732 +#: include/api.php:1754 msgid "Invalid action. " msgstr "Ungültige Aktion" -#: include/api.php:1740 +#: include/api.php:1762 msgid "DB error" msgstr "DB Error" @@ -7803,15 +7795,15 @@ msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\ msgid "Sharing notification from Diaspora network" msgstr "Freigabe-Benachrichtigung von Diaspora" -#: include/diaspora.php:2574 +#: include/diaspora.php:2606 msgid "Attachments:" msgstr "Anhänge:" -#: include/items.php:4871 +#: include/items.php:4897 msgid "Do you really want to delete this item?" msgstr "Möchtest Du wirklich dieses Item löschen?" -#: include/items.php:5146 +#: include/items.php:5172 msgid "Archives" msgstr "Archiv" diff --git a/view/de/strings.php b/view/de/strings.php index cfb5df6fed..e82b468126 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -5,6 +5,8 @@ function string_plural_select_de($n){ return ($n != 1);; }} ; +$a->strings["Network:"] = "Netzwerk"; +$a->strings["Forum"] = "Forum"; $a->strings["%d contact edited."] = array( 0 => "%d Kontakt bearbeitet.", 1 => "%d Kontakte bearbeitet", @@ -33,28 +35,11 @@ $a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)"; $a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)"; $a->strings["Suggest friends"] = "Kontakte vorschlagen"; $a->strings["Network type: %s"] = "Netzwerktyp: %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d gemeinsamer Kontakt", - 1 => "%d gemeinsame Kontakte", -); -$a->strings["View all contacts"] = "Alle Kontakte anzeigen"; -$a->strings["Unblock"] = "Entsperren"; -$a->strings["Block"] = "Sperren"; -$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten"; -$a->strings["Unignore"] = "Ignorieren aufheben"; -$a->strings["Ignore"] = "Ignorieren"; -$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten"; -$a->strings["Unarchive"] = "Aus Archiv zurückholen"; -$a->strings["Archive"] = "Archivieren"; -$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten"; -$a->strings["Repair"] = "Reparieren"; -$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen"; $a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!"; $a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen"; $a->strings["Disabled"] = "Deaktiviert"; $a->strings["Fetch information"] = "Beziehe Information"; $a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte"; -$a->strings["Contact Editor"] = "Kontakt Editor"; $a->strings["Submit"] = "Senden"; $a->strings["Profile Visibility"] = "Profil-Sichtbarkeit"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."; @@ -70,6 +55,10 @@ $a->strings["Last update:"] = "Letzte Aktualisierung: "; $a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; $a->strings["Update now"] = "Jetzt aktualisieren"; $a->strings["Connect/Follow"] = "Verbinden/Folgen"; +$a->strings["Unblock"] = "Entsperren"; +$a->strings["Block"] = "Sperren"; +$a->strings["Unignore"] = "Ignorieren aufheben"; +$a->strings["Ignore"] = "Ignorieren"; $a->strings["Currently blocked"] = "Derzeit geblockt"; $a->strings["Currently ignored"] = "Derzeit ignoriert"; $a->strings["Currently archived"] = "Momentan archiviert"; @@ -80,6 +69,9 @@ $a->strings["Send a notification of every new post of this contact"] = "Sende ei $a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte "; $a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"; $a->strings["Profile URL"] = "Profil URL"; +$a->strings["Location:"] = "Ort:"; +$a->strings["About:"] = "Über:"; +$a->strings["Tags:"] = "Tags"; $a->strings["Suggestions"] = "Kontaktvorschläge"; $a->strings["Suggest potential friends"] = "Freunde vorschlagen"; $a->strings["All Contacts"] = "Alle Kontakte"; @@ -99,7 +91,21 @@ $a->strings["Search your contacts"] = "Suche in deinen Kontakten"; $a->strings["Finding: "] = "Funde: "; $a->strings["Find"] = "Finde"; $a->strings["Update"] = "Aktualisierungen"; +$a->strings["Archive"] = "Archivieren"; +$a->strings["Unarchive"] = "Aus Archiv zurückholen"; $a->strings["Delete"] = "Löschen"; +$a->strings["Status"] = "Status"; +$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; +$a->strings["Profile"] = "Profil"; +$a->strings["Profile Details"] = "Profildetails"; +$a->strings["View all contacts"] = "Alle Kontakte anzeigen"; +$a->strings["Common Friends"] = "Gemeinsame Freunde"; +$a->strings["View all common friends"] = "Alle Kontakte anzeigen"; +$a->strings["Repair"] = "Reparieren"; +$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen"; +$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten"; +$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten"; +$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten"; $a->strings["Mutual Friendship"] = "Beidseitige Freundschaft"; $a->strings["is a fan of yours"] = "ist ein Fan von dir"; $a->strings["you are a fan of"] = "Du bist Fan von"; @@ -112,7 +118,6 @@ $a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht."; $a->strings["Permission denied"] = "Zugriff verweigert"; $a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner."; $a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit"; -$a->strings["Profile"] = "Profil"; $a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"; $a->strings["Visible To"] = "Sichtbar für"; $a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)"; @@ -206,9 +211,6 @@ $a->strings["Does %s know you?"] = "Kennt %s Dich?"; $a->strings["No"] = "Nein"; $a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:"; $a->strings["Your Identity Address:"] = "Adresse Deines Profils:"; -$a->strings["Location:"] = "Ort:"; -$a->strings["About:"] = "Über:"; -$a->strings["Tags:"] = "Tags"; $a->strings["Contact added"] = "Kontakt hinzugefügt"; $a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden."; $a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen."; @@ -229,6 +231,7 @@ $a->strings["Group removed."] = "Gruppe entfernt."; $a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen."; $a->strings["Group Editor"] = "Gruppeneditor"; $a->strings["Members"] = "Mitglieder"; +$a->strings["Group is empty"] = "Gruppe ist leer"; $a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können."; $a->strings["Applications"] = "Anwendungen"; $a->strings["No installed applications."] = "Keine Applikationen installiert."; @@ -297,8 +300,6 @@ $a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt tre $a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht"; $a->strings["{0} requested registration"] = "{0} möchte sich registrieren"; $a->strings["No contacts."] = "Keine Kontakte."; -$a->strings["Forum"] = "Forum"; -$a->strings["View Contacts"] = "Kontakte anzeigen"; $a->strings["Invalid request identifier."] = "Invalid request identifier."; $a->strings["Discard"] = "Verwerfen"; $a->strings["System"] = "System"; @@ -394,7 +395,6 @@ $a->strings["Please use your browser 'Back' button now if you a $a->strings["No mirroring"] = "Kein Spiegeln"; $a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge"; $a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge"; -$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren"; $a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; $a->strings["Refetch contact data"] = "Kontaktdaten neu laden"; $a->strings["Name"] = "Name"; @@ -721,12 +721,10 @@ $a->strings["Warning: This group contains %s member from an insecure network."] ); $a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."; $a->strings["No such group"] = "Es gibt keine solche Gruppe"; -$a->strings["Group is empty"] = "Gruppe ist leer"; $a->strings["Group: %s"] = "Gruppe: %s"; $a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."; $a->strings["Invalid contact."] = "Ungültiger Kontakt."; $a->strings["No friends to display."] = "Keine Freunde zum Anzeigen."; -$a->strings["Friends of %s"] = "Freunde von %s"; $a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt."; $a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."; $a->strings["Sun"] = "So"; @@ -996,7 +994,7 @@ $a->strings["Display Settings"] = "Anzeige-Einstellungen"; $a->strings["Display Theme:"] = "Theme:"; $a->strings["Mobile Theme:"] = "Mobiles Theme"; $a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimal 10 Sekunden, kein Maximum"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum sind 10 Sekeunden. Gib -1 ein um abzuschalten."; $a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "; $a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge"; $a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"; @@ -1154,8 +1152,6 @@ $a->strings["Only one search per minute is permitted for not logged in users."] $a->strings["Search"] = "Suche"; $a->strings["Items tagged with: %s"] = "Beiträge markiert mit: %s"; $a->strings["Search results for: %s"] = "Suchergebnisse für: %s"; -$a->strings["Age: "] = "Alter: "; -$a->strings["Gender: "] = "Geschlecht:"; $a->strings["Status:"] = "Status:"; $a->strings["Homepage:"] = "Homepage:"; $a->strings["Global Directory"] = "Weltweites Verzeichnis"; @@ -1172,7 +1168,6 @@ $a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; $a->strings["Add"] = "Hinzufügen"; $a->strings["No entries."] = "Keine Einträge."; $a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; -$a->strings["Common Friends"] = "Gemeinsame Freunde"; $a->strings["Export account"] = "Account exportieren"; $a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."; $a->strings["Export all"] = "Alles exportieren"; @@ -1259,6 +1254,7 @@ $a->strings["Love/romance"] = "Liebe/Romantik"; $a->strings["Work/employment"] = "Arbeit/Anstellung"; $a->strings["School/education"] = "Schule/Ausbildung"; $a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Dies ist Dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein."; +$a->strings["Age: "] = "Alter: "; $a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile"; $a->strings["Change profile photo"] = "Profilbild ändern"; $a->strings["Create New Profile"] = "Neues Profil anlegen"; @@ -1445,6 +1441,10 @@ $a->strings["All Networks"] = "Alle Netzwerke"; $a->strings["Saved Folders"] = "Gespeicherte Ordner"; $a->strings["Everything"] = "Alles"; $a->strings["Categories"] = "Kategorien"; +$a->strings["%d contact in common"] = array( + 0 => "%d gemeinsamer Kontakt", + 1 => "%d gemeinsame Kontakte", +); $a->strings["General Features"] = "Allgemeine Features"; $a->strings["Multiple Profiles"] = "Mehrere Profile"; $a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen"; @@ -1536,7 +1536,6 @@ $a->strings["Atom feed"] = "Atom-Feed"; $a->strings["Message"] = "Nachricht"; $a->strings["Profiles"] = "Profile"; $a->strings["Manage/edit profiles"] = "Profile verwalten/editieren"; -$a->strings["Network:"] = "Netzwerk"; $a->strings["g A l F d"] = "l, d. F G \\U\\h\\r"; $a->strings["F d"] = "d. F"; $a->strings["[today]"] = "[heute]"; @@ -1561,9 +1560,6 @@ $a->strings["Love/Romance:"] = "Liebesleben:"; $a->strings["Work/employment:"] = "Arbeit/Beschäftigung:"; $a->strings["School/education:"] = "Schule/Ausbildung:"; $a->strings["Forums:"] = "Foren:"; -$a->strings["Status"] = "Status"; -$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; -$a->strings["Profile Details"] = "Profildetails"; $a->strings["Videos"] = "Videos"; $a->strings["Events and Calendar"] = "Ereignisse und Kalender"; $a->strings["Only You Can See This"] = "Nur Du kannst das sehen"; @@ -1654,6 +1650,7 @@ $a->strings["%d Contact"] = array( 0 => "%d Kontakt", 1 => "%d Kontakte", ); +$a->strings["View Contacts"] = "Kontakte anzeigen"; $a->strings["Full Text"] = "Volltext"; $a->strings["Tags"] = "Tags"; $a->strings["poke"] = "anstupsen"; From 053b69eee41d3c832646d8ba391fbf94b9a8ee3f Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 14 Dec 2015 16:30:28 +0100 Subject: [PATCH 35/52] FR update to the strings --- view/fr/messages.po | 1352 +++++++++++++++++++++---------------------- view/fr/strings.php | 111 ++-- 2 files changed, 726 insertions(+), 737 deletions(-) diff --git a/view/fr/messages.po b/view/fr/messages.po index beaa652175..7e38a4be31 100644 --- a/view/fr/messages.po +++ b/view/fr/messages.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-30 13:14+0100\n" -"PO-Revision-Date: 2015-12-11 01:05+0000\n" -"Last-Translator: Perig Gouanvic \n" +"POT-Creation-Date: 2015-12-14 07:48+0100\n" +"PO-Revision-Date: 2015-12-14 09:23+0000\n" +"Last-Translator: fabrixxm \n" "Language-Team: French (http://www.transifex.com/Friendica/friendica/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,233 +31,182 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: mod/contacts.php:118 +#: mod/contacts.php:50 include/identity.php:380 +msgid "Network:" +msgstr "Réseau" + +#: mod/contacts.php:51 mod/contacts.php:986 mod/videos.php:37 +#: mod/viewcontacts.php:105 mod/dirfind.php:208 mod/network.php:596 +#: mod/allfriends.php:72 mod/match.php:82 mod/directory.php:172 +#: mod/common.php:124 mod/suggest.php:95 mod/photos.php:41 +#: include/identity.php:295 +msgid "Forum" +msgstr "Forum" + +#: mod/contacts.php:128 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" msgstr[0] "%d contact édité" msgstr[1] "%d contacts édités." -#: mod/contacts.php:149 mod/contacts.php:372 +#: mod/contacts.php:159 mod/contacts.php:382 msgid "Could not access contact record." msgstr "Impossible d'accéder à l'enregistrement du contact." -#: mod/contacts.php:163 +#: mod/contacts.php:173 msgid "Could not locate selected profile." msgstr "Impossible de localiser le profil séléctionné." -#: mod/contacts.php:196 +#: mod/contacts.php:206 msgid "Contact updated." msgstr "Contact mis à jour." -#: mod/contacts.php:198 mod/dfrn_request.php:578 +#: mod/contacts.php:208 mod/dfrn_request.php:578 msgid "Failed to update contact record." msgstr "Échec de mise à jour du contact." -#: mod/contacts.php:354 mod/manage.php:96 mod/display.php:496 +#: mod/contacts.php:364 mod/manage.php:96 mod/display.php:496 #: mod/profile_photo.php:19 mod/profile_photo.php:175 #: mod/profile_photo.php:186 mod/profile_photo.php:199 #: mod/ostatus_subscribe.php:9 mod/follow.php:10 mod/follow.php:72 #: mod/follow.php:137 mod/item.php:169 mod/item.php:185 mod/group.php:19 #: mod/dfrn_confirm.php:55 mod/fsuggest.php:78 mod/wall_upload.php:77 -#: mod/wall_upload.php:80 mod/viewcontacts.php:24 mod/notifications.php:69 -#: mod/message.php:45 mod/message.php:181 mod/crepair.php:120 +#: mod/wall_upload.php:80 mod/viewcontacts.php:40 mod/notifications.php:69 +#: mod/message.php:45 mod/message.php:181 mod/crepair.php:117 #: mod/dirfind.php:11 mod/nogroup.php:25 mod/network.php:4 -#: mod/allfriends.php:11 mod/events.php:165 mod/wallmessage.php:9 +#: mod/allfriends.php:12 mod/events.php:165 mod/wallmessage.php:9 #: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 #: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/settings.php:20 -#: mod/settings.php:116 mod/settings.php:635 mod/register.php:42 -#: mod/delegate.php:12 mod/common.php:17 mod/mood.php:114 mod/suggest.php:58 +#: mod/settings.php:116 mod/settings.php:637 mod/register.php:42 +#: mod/delegate.php:12 mod/common.php:18 mod/mood.php:114 mod/suggest.php:58 #: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10 #: mod/api.php:26 mod/api.php:31 mod/notes.php:22 mod/poke.php:149 #: mod/repair_ostatus.php:9 mod/invite.php:15 mod/invite.php:101 -#: mod/photos.php:163 mod/photos.php:1097 mod/regmod.php:110 -#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5041 index.php:382 +#: mod/photos.php:171 mod/photos.php:1105 mod/regmod.php:110 +#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5067 index.php:382 msgid "Permission denied." msgstr "Permission refusée." -#: mod/contacts.php:393 +#: mod/contacts.php:403 msgid "Contact has been blocked" msgstr "Le contact a été bloqué" -#: mod/contacts.php:393 +#: mod/contacts.php:403 msgid "Contact has been unblocked" msgstr "Le contact n'est plus bloqué" -#: mod/contacts.php:404 +#: mod/contacts.php:414 msgid "Contact has been ignored" msgstr "Le contact a été ignoré" -#: mod/contacts.php:404 +#: mod/contacts.php:414 msgid "Contact has been unignored" msgstr "Le contact n'est plus ignoré" -#: mod/contacts.php:416 +#: mod/contacts.php:426 msgid "Contact has been archived" msgstr "Contact archivé" -#: mod/contacts.php:416 +#: mod/contacts.php:426 msgid "Contact has been unarchived" msgstr "Contact désarchivé" -#: mod/contacts.php:443 mod/contacts.php:817 +#: mod/contacts.php:453 mod/contacts.php:801 msgid "Do you really want to delete this contact?" msgstr "Voulez-vous vraiment supprimer ce contact?" -#: mod/contacts.php:445 mod/follow.php:105 mod/message.php:216 -#: mod/settings.php:1091 mod/settings.php:1097 mod/settings.php:1105 -#: mod/settings.php:1109 mod/settings.php:1114 mod/settings.php:1120 -#: mod/settings.php:1126 mod/settings.php:1132 mod/settings.php:1158 -#: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161 -#: mod/settings.php:1162 mod/dfrn_request.php:850 mod/register.php:238 +#: mod/contacts.php:455 mod/follow.php:105 mod/message.php:216 +#: mod/settings.php:1094 mod/settings.php:1100 mod/settings.php:1108 +#: mod/settings.php:1112 mod/settings.php:1117 mod/settings.php:1123 +#: mod/settings.php:1129 mod/settings.php:1135 mod/settings.php:1161 +#: mod/settings.php:1162 mod/settings.php:1163 mod/settings.php:1164 +#: mod/settings.php:1165 mod/dfrn_request.php:850 mod/register.php:238 #: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 -#: mod/profiles.php:687 mod/api.php:105 include/items.php:4873 +#: mod/profiles.php:687 mod/api.php:105 include/items.php:4899 msgid "Yes" msgstr "Oui" -#: mod/contacts.php:448 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:116 -#: mod/videos.php:123 mod/message.php:219 mod/fbrowser.php:93 -#: mod/fbrowser.php:128 mod/settings.php:649 mod/settings.php:675 -#: mod/dfrn_request.php:864 mod/suggest.php:32 mod/editpost.php:147 -#: mod/photos.php:239 mod/photos.php:328 include/conversation.php:1221 -#: include/items.php:4876 +#: mod/contacts.php:458 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:116 +#: mod/videos.php:131 mod/message.php:219 mod/fbrowser.php:93 +#: mod/fbrowser.php:128 mod/settings.php:651 mod/settings.php:677 +#: mod/dfrn_request.php:864 mod/suggest.php:32 mod/editpost.php:148 +#: mod/photos.php:247 mod/photos.php:336 include/conversation.php:1221 +#: include/items.php:4902 msgid "Cancel" msgstr "Annuler" -#: mod/contacts.php:460 +#: mod/contacts.php:470 msgid "Contact has been removed." msgstr "Ce contact a été retiré." -#: mod/contacts.php:498 +#: mod/contacts.php:511 #, php-format msgid "You are mutual friends with %s" msgstr "Vous êtes ami (et réciproquement) avec %s" -#: mod/contacts.php:502 +#: mod/contacts.php:515 #, php-format msgid "You are sharing with %s" msgstr "Vous partagez avec %s" -#: mod/contacts.php:507 +#: mod/contacts.php:520 #, php-format msgid "%s is sharing with you" msgstr "%s partage avec vous" -#: mod/contacts.php:527 +#: mod/contacts.php:540 msgid "Private communications are not available for this contact." msgstr "Les communications privées ne sont pas disponibles pour ce contact." -#: mod/contacts.php:530 mod/admin.php:645 +#: mod/contacts.php:543 mod/admin.php:645 msgid "Never" msgstr "Jamais" -#: mod/contacts.php:534 +#: mod/contacts.php:547 msgid "(Update was successful)" msgstr "(Mise à jour effectuée avec succès)" -#: mod/contacts.php:534 +#: mod/contacts.php:547 msgid "(Update was not successful)" msgstr "(Échec de la mise à jour)" -#: mod/contacts.php:536 +#: mod/contacts.php:549 msgid "Suggest friends" msgstr "Suggérer amitié/contact" -#: mod/contacts.php:540 +#: mod/contacts.php:553 #, php-format msgid "Network type: %s" msgstr "Type de réseau %s" -#: mod/contacts.php:543 include/contact_widgets.php:237 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contact en commun" -msgstr[1] "%d contacts en commun" - -#: mod/contacts.php:548 -msgid "View all contacts" -msgstr "Voir tous les contacts" - -#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:821 -#: mod/admin.php:1117 -msgid "Unblock" -msgstr "Débloquer" - -#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:821 -#: mod/admin.php:1116 -msgid "Block" -msgstr "Bloquer" - -#: mod/contacts.php:556 -msgid "Toggle Blocked status" -msgstr "(dés)activer l'état \"bloqué\"" - -#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:822 -msgid "Unignore" -msgstr "Ne plus ignorer" - -#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:822 -#: mod/notifications.php:54 mod/notifications.php:179 -#: mod/notifications.php:259 -msgid "Ignore" -msgstr "Ignorer" - -#: mod/contacts.php:564 -msgid "Toggle Ignored status" -msgstr "(dés)activer l'état \"ignoré\"" - -#: mod/contacts.php:570 mod/contacts.php:823 -msgid "Unarchive" -msgstr "Désarchiver" - -#: mod/contacts.php:570 mod/contacts.php:823 -msgid "Archive" -msgstr "Archiver" - -#: mod/contacts.php:573 -msgid "Toggle Archive status" -msgstr "(dés)activer l'état \"archivé\"" - -#: mod/contacts.php:578 -msgid "Repair" -msgstr "Réparer" - -#: mod/contacts.php:581 -msgid "Advanced Contact Settings" -msgstr "Réglages avancés du contact" - -#: mod/contacts.php:589 +#: mod/contacts.php:566 msgid "Communications lost with this contact!" msgstr "Communications perdues avec ce contact !" -#: mod/contacts.php:592 +#: mod/contacts.php:569 msgid "Fetch further information for feeds" msgstr "Chercher plus d'informations pour les flux" -#: mod/contacts.php:593 mod/admin.php:654 +#: mod/contacts.php:570 mod/admin.php:654 msgid "Disabled" msgstr "Désactivé" -#: mod/contacts.php:593 +#: mod/contacts.php:570 msgid "Fetch information" msgstr "Récupérer informations" -#: mod/contacts.php:593 +#: mod/contacts.php:570 msgid "Fetch information and keywords" msgstr "Récupérer informations" -#: mod/contacts.php:606 -msgid "Contact Editor" -msgstr "Éditeur de contact" - -#: mod/contacts.php:608 mod/manage.php:143 mod/fsuggest.php:107 -#: mod/message.php:342 mod/message.php:525 mod/crepair.php:195 +#: mod/contacts.php:586 mod/manage.php:143 mod/fsuggest.php:107 +#: mod/message.php:342 mod/message.php:525 mod/crepair.php:196 #: mod/events.php:574 mod/content.php:712 mod/install.php:261 #: mod/install.php:299 mod/mood.php:137 mod/profiles.php:696 #: mod/localtime.php:45 mod/poke.php:198 mod/invite.php:140 -#: mod/photos.php:1129 mod/photos.php:1253 mod/photos.php:1571 -#: mod/photos.php:1622 mod/photos.php:1670 mod/photos.php:1758 +#: mod/photos.php:1137 mod/photos.php:1261 mod/photos.php:1579 +#: mod/photos.php:1630 mod/photos.php:1678 mod/photos.php:1766 #: object/Item.php:710 view/theme/cleanzero/config.php:80 #: view/theme/dispy/config.php:70 view/theme/quattro/config.php:64 #: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 @@ -266,208 +215,303 @@ msgstr "Éditeur de contact" msgid "Submit" msgstr "Envoyer" -#: mod/contacts.php:609 +#: mod/contacts.php:587 msgid "Profile Visibility" msgstr "Visibilité du profil" -#: mod/contacts.php:610 +#: mod/contacts.php:588 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée." -#: mod/contacts.php:611 +#: mod/contacts.php:589 msgid "Contact Information / Notes" msgstr "Informations de contact / Notes" -#: mod/contacts.php:612 +#: mod/contacts.php:590 msgid "Edit contact notes" msgstr "Éditer les notes des contacts" -#: mod/contacts.php:617 mod/contacts.php:861 mod/viewcontacts.php:77 +#: mod/contacts.php:595 mod/contacts.php:977 mod/viewcontacts.php:97 #: mod/nogroup.php:41 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visiter le profil de %s [%s]" -#: mod/contacts.php:618 +#: mod/contacts.php:596 msgid "Block/Unblock contact" msgstr "Bloquer/débloquer ce contact" -#: mod/contacts.php:619 +#: mod/contacts.php:597 msgid "Ignore contact" msgstr "Ignorer ce contact" -#: mod/contacts.php:620 +#: mod/contacts.php:598 msgid "Repair URL settings" msgstr "Réglages de réparation des URL" -#: mod/contacts.php:621 +#: mod/contacts.php:599 msgid "View conversations" msgstr "Voir les conversations" -#: mod/contacts.php:623 +#: mod/contacts.php:601 msgid "Delete contact" msgstr "Effacer ce contact" -#: mod/contacts.php:627 +#: mod/contacts.php:605 msgid "Last update:" msgstr "Dernière mise-à-jour :" -#: mod/contacts.php:629 +#: mod/contacts.php:607 msgid "Update public posts" msgstr "Mettre à jour les publications publiques:" -#: mod/contacts.php:631 mod/admin.php:1653 +#: mod/contacts.php:609 mod/admin.php:1653 msgid "Update now" msgstr "Mettre à jour" -#: mod/contacts.php:633 mod/dirfind.php:190 mod/allfriends.php:67 +#: mod/contacts.php:611 mod/dirfind.php:190 mod/allfriends.php:60 #: mod/match.php:71 mod/suggest.php:82 include/contact_widgets.php:32 #: include/Contact.php:321 include/conversation.php:924 msgid "Connect/Follow" msgstr "Connecter/Suivre" -#: mod/contacts.php:640 +#: mod/contacts.php:614 mod/contacts.php:805 mod/contacts.php:864 +#: mod/admin.php:1117 +msgid "Unblock" +msgstr "Débloquer" + +#: mod/contacts.php:614 mod/contacts.php:805 mod/contacts.php:864 +#: mod/admin.php:1116 +msgid "Block" +msgstr "Bloquer" + +#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:871 +msgid "Unignore" +msgstr "Ne plus ignorer" + +#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:871 +#: mod/notifications.php:54 mod/notifications.php:179 +#: mod/notifications.php:259 +msgid "Ignore" +msgstr "Ignorer" + +#: mod/contacts.php:618 msgid "Currently blocked" msgstr "Actuellement bloqué" -#: mod/contacts.php:641 +#: mod/contacts.php:619 msgid "Currently ignored" msgstr "Actuellement ignoré" -#: mod/contacts.php:642 +#: mod/contacts.php:620 msgid "Currently archived" msgstr "Actuellement archivé" -#: mod/contacts.php:643 mod/notifications.php:172 mod/notifications.php:251 +#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:251 msgid "Hide this contact from others" msgstr "Cacher ce contact aux autres" -#: mod/contacts.php:643 +#: mod/contacts.php:621 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Les réponses et \"j'aime\" à vos publications publiques peuvent être toujours visibles" -#: mod/contacts.php:644 +#: mod/contacts.php:622 msgid "Notification for new posts" msgstr "Notification des nouvelles publications" -#: mod/contacts.php:644 +#: mod/contacts.php:622 msgid "Send a notification of every new post of this contact" msgstr "Envoyer une notification de chaque nouveau message en provenance de ce contact" -#: mod/contacts.php:647 +#: mod/contacts.php:625 msgid "Blacklisted keywords" msgstr "Mots-clés sur la liste noire" -#: mod/contacts.php:647 +#: mod/contacts.php:625 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand « Récupérer informations et mots-clés » est sélectionné." -#: mod/contacts.php:654 mod/follow.php:121 mod/notifications.php:255 +#: mod/contacts.php:632 mod/follow.php:121 mod/notifications.php:255 msgid "Profile URL" msgstr "URL du Profil" -#: mod/contacts.php:700 +#: mod/contacts.php:635 mod/follow.php:125 mod/notifications.php:244 +#: mod/events.php:566 mod/directory.php:145 include/identity.php:304 +#: include/bb2diaspora.php:170 include/event.php:36 include/event.php:60 +msgid "Location:" +msgstr "Localisation:" + +#: mod/contacts.php:637 mod/follow.php:127 mod/notifications.php:246 +#: mod/directory.php:153 include/identity.php:313 include/identity.php:621 +msgid "About:" +msgstr "À propos:" + +#: mod/contacts.php:639 mod/follow.php:129 mod/notifications.php:248 +#: include/identity.php:615 +msgid "Tags:" +msgstr "Étiquette:" + +#: mod/contacts.php:684 msgid "Suggestions" msgstr "Suggestions" -#: mod/contacts.php:703 +#: mod/contacts.php:687 msgid "Suggest potential friends" msgstr "Suggérer des amis potentiels" -#: mod/contacts.php:708 mod/group.php:192 +#: mod/contacts.php:692 mod/group.php:192 msgid "All Contacts" msgstr "Tous les contacts" -#: mod/contacts.php:711 +#: mod/contacts.php:695 msgid "Show all contacts" msgstr "Montrer tous les contacts" -#: mod/contacts.php:716 +#: mod/contacts.php:700 msgid "Unblocked" msgstr "Non-bloqués" -#: mod/contacts.php:719 +#: mod/contacts.php:703 msgid "Only show unblocked contacts" msgstr "Ne montrer que les contacts non-bloqués" -#: mod/contacts.php:725 +#: mod/contacts.php:709 msgid "Blocked" msgstr "Bloqués" -#: mod/contacts.php:728 +#: mod/contacts.php:712 msgid "Only show blocked contacts" msgstr "Ne montrer que les contacts bloqués" -#: mod/contacts.php:734 +#: mod/contacts.php:718 msgid "Ignored" msgstr "Ignorés" -#: mod/contacts.php:737 +#: mod/contacts.php:721 msgid "Only show ignored contacts" msgstr "Ne montrer que les contacts ignorés" -#: mod/contacts.php:743 +#: mod/contacts.php:727 msgid "Archived" msgstr "Archivés" -#: mod/contacts.php:746 +#: mod/contacts.php:730 msgid "Only show archived contacts" msgstr "Ne montrer que les contacts archivés" -#: mod/contacts.php:752 +#: mod/contacts.php:736 msgid "Hidden" msgstr "Cachés" -#: mod/contacts.php:755 +#: mod/contacts.php:739 msgid "Only show hidden contacts" msgstr "Ne montrer que les contacts masqués" -#: mod/contacts.php:808 include/text.php:1012 include/nav.php:123 -#: include/nav.php:187 view/theme/diabook/theme.php:125 +#: mod/contacts.php:792 mod/contacts.php:840 mod/viewcontacts.php:116 +#: include/identity.php:732 include/identity.php:735 include/text.php:1012 +#: include/nav.php:123 include/nav.php:187 view/theme/diabook/theme.php:125 msgid "Contacts" msgstr "Contacts" -#: mod/contacts.php:812 +#: mod/contacts.php:796 msgid "Search your contacts" msgstr "Rechercher dans vos contacts" -#: mod/contacts.php:813 +#: mod/contacts.php:797 msgid "Finding: " msgstr "Trouvé: " -#: mod/contacts.php:814 mod/directory.php:202 include/contact_widgets.php:34 +#: mod/contacts.php:798 mod/directory.php:210 include/contact_widgets.php:34 msgid "Find" msgstr "Trouver" -#: mod/contacts.php:820 mod/settings.php:146 mod/settings.php:674 +#: mod/contacts.php:804 mod/settings.php:146 mod/settings.php:676 msgid "Update" msgstr "Mises-à-jour" -#: mod/contacts.php:824 mod/group.php:171 mod/admin.php:1115 -#: mod/content.php:440 mod/content.php:743 mod/settings.php:711 -#: mod/photos.php:1715 object/Item.php:134 include/conversation.php:635 +#: mod/contacts.php:807 mod/contacts.php:878 +msgid "Archive" +msgstr "Archiver" + +#: mod/contacts.php:807 mod/contacts.php:878 +msgid "Unarchive" +msgstr "Désarchiver" + +#: mod/contacts.php:808 mod/group.php:171 mod/admin.php:1115 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:713 +#: mod/photos.php:1723 object/Item.php:134 include/conversation.php:635 msgid "Delete" msgstr "Supprimer" -#: mod/contacts.php:837 +#: mod/contacts.php:821 include/identity.php:677 include/nav.php:75 +msgid "Status" +msgstr "Statut" + +#: mod/contacts.php:824 include/identity.php:680 +msgid "Status Messages and Posts" +msgstr "Messages d'état et publications" + +#: mod/contacts.php:829 mod/profperm.php:104 mod/newmember.php:32 +#: include/identity.php:569 include/identity.php:655 include/identity.php:685 +#: include/nav.php:76 view/theme/diabook/theme.php:124 +msgid "Profile" +msgstr "Profil" + +#: mod/contacts.php:832 include/identity.php:688 +msgid "Profile Details" +msgstr "Détails du profil" + +#: mod/contacts.php:843 +msgid "View all contacts" +msgstr "Voir tous les contacts" + +#: mod/contacts.php:849 mod/common.php:135 +msgid "Common Friends" +msgstr "Amis communs" + +#: mod/contacts.php:852 +msgid "View all common friends" +msgstr "" + +#: mod/contacts.php:856 +msgid "Repair" +msgstr "Réparer" + +#: mod/contacts.php:859 +msgid "Advanced Contact Settings" +msgstr "Réglages avancés du contact" + +#: mod/contacts.php:867 +msgid "Toggle Blocked status" +msgstr "(dés)activer l'état \"bloqué\"" + +#: mod/contacts.php:874 +msgid "Toggle Ignored status" +msgstr "(dés)activer l'état \"ignoré\"" + +#: mod/contacts.php:881 +msgid "Toggle Archive status" +msgstr "(dés)activer l'état \"archivé\"" + +#: mod/contacts.php:949 msgid "Mutual Friendship" msgstr "Relation réciproque" -#: mod/contacts.php:841 +#: mod/contacts.php:953 msgid "is a fan of yours" msgstr "Vous suit" -#: mod/contacts.php:845 +#: mod/contacts.php:957 msgid "you are a fan of" msgstr "Vous le/la suivez" -#: mod/contacts.php:862 mod/nogroup.php:42 +#: mod/contacts.php:978 mod/nogroup.php:42 msgid "Edit contact" msgstr "Éditer le contact" @@ -505,13 +549,7 @@ msgstr "Identifiant de profil invalide." msgid "Profile Visibility Editor" msgstr "Éditer la visibilité du profil" -#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:542 -#: include/identity.php:628 include/identity.php:658 include/nav.php:76 -#: view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Profil" - -#: mod/profperm.php:106 mod/group.php:222 +#: mod/profperm.php:106 mod/group.php:223 msgid "Click on a contact to add or remove." msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer." @@ -525,13 +563,13 @@ msgstr "Tous les contacts (ayant un accès sécurisé)" #: mod/display.php:82 mod/display.php:283 mod/display.php:500 #: mod/viewsrc.php:15 mod/admin.php:196 mod/admin.php:1160 mod/admin.php:1381 -#: mod/notice.php:15 include/items.php:4832 +#: mod/notice.php:15 include/items.php:4858 msgid "Item not found." msgstr "Élément introuvable." -#: mod/display.php:211 mod/videos.php:189 mod/viewcontacts.php:19 +#: mod/display.php:211 mod/videos.php:197 mod/viewcontacts.php:35 #: mod/community.php:18 mod/dfrn_request.php:779 mod/search.php:93 -#: mod/search.php:99 mod/directory.php:37 mod/photos.php:968 +#: mod/search.php:99 mod/directory.php:37 mod/photos.php:976 msgid "Public access denied." msgstr "Accès public refusé." @@ -757,9 +795,9 @@ msgstr "Image envoyée, mais impossible de la retailler." #: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 #: mod/profile_photo.php:210 mod/profile_photo.php:302 -#: mod/profile_photo.php:311 mod/photos.php:70 mod/photos.php:184 -#: mod/photos.php:767 mod/photos.php:1237 mod/photos.php:1260 -#: mod/photos.php:1854 include/user.php:345 include/user.php:352 +#: mod/profile_photo.php:311 mod/photos.php:78 mod/photos.php:192 +#: mod/photos.php:775 mod/photos.php:1245 mod/photos.php:1268 +#: mod/photos.php:1862 include/user.php:345 include/user.php:352 #: include/user.php:359 view/theme/diabook/theme.php:500 msgid "Profile Photos" msgstr "Photos du profil" @@ -780,12 +818,12 @@ msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache msgid "Unable to process image" msgstr "Impossible de traiter l'image" -#: mod/profile_photo.php:150 mod/wall_upload.php:151 mod/photos.php:803 +#: mod/profile_photo.php:150 mod/wall_upload.php:151 mod/photos.php:811 #, php-format msgid "Image exceeds size limit of %s" msgstr "L'image dépasse la taille limite de %s" -#: mod/profile_photo.php:159 mod/wall_upload.php:183 mod/photos.php:843 +#: mod/profile_photo.php:159 mod/wall_upload.php:183 mod/photos.php:851 msgid "Unable to process image." msgstr "Impossible de traiter l'image." @@ -829,13 +867,13 @@ msgstr "Édition terminée" msgid "Image uploaded successfully." msgstr "Image téléversée avec succès." -#: mod/profile_photo.php:307 mod/wall_upload.php:216 mod/photos.php:870 +#: mod/profile_photo.php:307 mod/wall_upload.php:216 mod/photos.php:878 msgid "Image upload failed." msgstr "Le téléversement de l'image a échoué." #: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 #: include/conversation.php:130 include/conversation.php:266 -#: include/text.php:1995 include/diaspora.php:2140 +#: include/text.php:1993 include/diaspora.php:2146 #: view/theme/diabook/theme.php:471 msgid "photo" msgstr "photo" @@ -843,7 +881,7 @@ msgstr "photo" #: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 mod/like.php:346 #: include/conversation.php:125 include/conversation.php:134 #: include/conversation.php:261 include/conversation.php:270 -#: include/diaspora.php:2140 view/theme/diabook/theme.php:466 +#: include/diaspora.php:2146 view/theme/diabook/theme.php:466 #: view/theme/diabook/theme.php:475 msgid "status" msgstr "le statut" @@ -875,27 +913,27 @@ msgstr "" #: mod/ostatus_subscribe.php:25 msgid "No contact provided." -msgstr "" +msgstr "Pas de contact fourni." #: mod/ostatus_subscribe.php:30 msgid "Couldn't fetch information for contact." -msgstr "" +msgstr "Impossible de récupérer les informations pour ce contact." #: mod/ostatus_subscribe.php:38 msgid "Couldn't fetch friends for contact." -msgstr "" +msgstr "Impossible de récupérer les amis de ce contact." #: mod/ostatus_subscribe.php:51 mod/repair_ostatus.php:44 msgid "Done" -msgstr "" +msgstr "Terminé" #: mod/ostatus_subscribe.php:65 msgid "success" -msgstr "" +msgstr "réussite" #: mod/ostatus_subscribe.php:67 msgid "failed" -msgstr "" +msgstr "échec" #: mod/ostatus_subscribe.php:69 object/Item.php:235 msgid "ignored" @@ -914,7 +952,7 @@ msgstr "Sauver dans le Dossier:" msgid "- select -" msgstr "- choisir -" -#: mod/filer.php:31 mod/editpost.php:108 mod/notes.php:61 +#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:61 #: include/text.php:1004 msgid "Save" msgstr "Sauver" @@ -948,11 +986,11 @@ msgstr "Merci de répondre à ce qui suit:" msgid "Does %s know you?" msgstr "Est-ce que %s vous connaît?" -#: mod/follow.php:105 mod/settings.php:1091 mod/settings.php:1097 -#: mod/settings.php:1105 mod/settings.php:1109 mod/settings.php:1114 -#: mod/settings.php:1120 mod/settings.php:1126 mod/settings.php:1132 -#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160 -#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:850 +#: mod/follow.php:105 mod/settings.php:1094 mod/settings.php:1100 +#: mod/settings.php:1108 mod/settings.php:1112 mod/settings.php:1117 +#: mod/settings.php:1123 mod/settings.php:1129 mod/settings.php:1135 +#: mod/settings.php:1161 mod/settings.php:1162 mod/settings.php:1163 +#: mod/settings.php:1164 mod/settings.php:1165 mod/dfrn_request.php:850 #: mod/register.php:239 mod/profiles.php:658 mod/profiles.php:662 #: mod/profiles.php:687 mod/api.php:106 msgid "No" @@ -966,21 +1004,6 @@ msgstr "Ajouter une note personnelle:" msgid "Your Identity Address:" msgstr "Votre adresse d'identité:" -#: mod/follow.php:125 mod/notifications.php:244 mod/events.php:566 -#: mod/directory.php:139 include/identity.php:278 include/bb2diaspora.php:170 -#: include/event.php:36 include/event.php:60 -msgid "Location:" -msgstr "Localisation:" - -#: mod/follow.php:127 mod/notifications.php:246 mod/directory.php:147 -#: include/identity.php:287 include/identity.php:594 -msgid "About:" -msgstr "À propos:" - -#: mod/follow.php:129 mod/notifications.php:248 include/identity.php:588 -msgid "Tags:" -msgstr "Étiquette:" - #: mod/follow.php:162 msgid "Contact added" msgstr "Contact ajouté" @@ -1070,6 +1093,10 @@ msgstr "Éditeur de groupe" msgid "Members" msgstr "Membres" +#: mod/group.php:193 mod/network.php:563 mod/content.php:130 +msgid "Group is empty" +msgstr "Groupe vide" + #: mod/apps.php:7 index.php:225 msgid "You must be logged in to use addons. " msgstr "Vous devez être connecté pour utiliser les greffons." @@ -1088,7 +1115,7 @@ msgid "Profile not found." msgstr "Profil introuvable." #: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/crepair.php:134 +#: mod/crepair.php:131 msgid "Contact not found." msgstr "Contact introuvable." @@ -1168,7 +1195,7 @@ msgstr "Impossible de vous définir des permissions sur notre système." msgid "Unable to update your contact profile details on our system" msgstr "Impossible de mettre les détails de votre profil à jour sur notre système" -#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:734 include/items.php:4244 +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:734 include/items.php:4270 msgid "[Name Withheld]" msgstr "[Nom non-publié]" @@ -1177,7 +1204,7 @@ msgstr "[Nom non-publié]" msgid "%1$s has joined %2$s" msgstr "%1$s a rejoint %2$s" -#: mod/profile.php:21 include/identity.php:82 +#: mod/profile.php:21 include/identity.php:52 msgid "Requested profile is not available." msgstr "Le profil demandé n'est pas disponible." @@ -1185,35 +1212,35 @@ msgstr "Le profil demandé n'est pas disponible." msgid "Tips for New Members" msgstr "Conseils aux nouveaux venus" -#: mod/videos.php:115 +#: mod/videos.php:123 msgid "Do you really want to delete this video?" msgstr "Voulez-vous vraiment supprimer cette vidéo?" -#: mod/videos.php:120 +#: mod/videos.php:128 msgid "Delete Video" msgstr "Supprimer la vidéo" -#: mod/videos.php:199 +#: mod/videos.php:207 msgid "No videos selected" msgstr "Pas de vidéo sélectionné" -#: mod/videos.php:300 mod/photos.php:1079 +#: mod/videos.php:308 mod/photos.php:1087 msgid "Access to this item is restricted." msgstr "Accès restreint à cet élément." -#: mod/videos.php:375 include/text.php:1465 +#: mod/videos.php:383 include/text.php:1465 msgid "View Video" msgstr "Regarder la vidéo" -#: mod/videos.php:382 mod/photos.php:1882 +#: mod/videos.php:390 mod/photos.php:1890 msgid "View Album" msgstr "Voir l'album" -#: mod/videos.php:391 +#: mod/videos.php:399 msgid "Recent Videos" msgstr "Vidéos récente" -#: mod/videos.php:393 +#: mod/videos.php:401 msgid "Upload New Videos" msgstr "Téléversé une nouvelle vidéo" @@ -1237,7 +1264,7 @@ msgstr "Suggérer un ami/contact pour %s" #: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 #: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17 -#: mod/wall_attach.php:25 mod/wall_attach.php:76 include/api.php:1711 +#: mod/wall_attach.php:25 mod/wall_attach.php:76 include/api.php:1733 msgid "Invalid request." msgstr "Requête invalide." @@ -1293,7 +1320,7 @@ msgid "" "Password reset failed." msgstr "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué." -#: mod/lostpass.php:109 boot.php:1295 +#: mod/lostpass.php:109 boot.php:1307 msgid "Password Reset" msgstr "Réinitialiser le mot de passe" @@ -1368,11 +1395,11 @@ msgid "Reset" msgstr "Réinitialiser" #: mod/like.php:170 include/conversation.php:122 include/conversation.php:258 -#: include/text.php:1993 view/theme/diabook/theme.php:463 +#: include/text.php:1991 view/theme/diabook/theme.php:463 msgid "event" msgstr "évènement" -#: mod/like.php:187 include/conversation.php:141 include/diaspora.php:2156 +#: mod/like.php:187 include/conversation.php:141 include/diaspora.php:2162 #: view/theme/diabook/theme.php:480 #, php-format msgid "%1$s likes %2$s's %3$s" @@ -1398,32 +1425,22 @@ msgstr "%1$s ne participe pas à %3$s de %2$s" msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s participera peut-être à %3$s de %2$s" -#: mod/ping.php:273 +#: mod/ping.php:265 msgid "{0} wants to be your friend" msgstr "{0} souhaite être votre ami(e)" -#: mod/ping.php:288 +#: mod/ping.php:280 msgid "{0} sent you a message" msgstr "{0} vous a envoyé un message" -#: mod/ping.php:303 +#: mod/ping.php:295 msgid "{0} requested registration" msgstr "{0} a demandé à s'inscrire" -#: mod/viewcontacts.php:52 +#: mod/viewcontacts.php:72 msgid "No contacts." msgstr "Aucun contact." -#: mod/viewcontacts.php:85 mod/dirfind.php:208 mod/network.php:596 -#: mod/allfriends.php:79 mod/match.php:82 mod/common.php:122 -#: mod/suggest.php:95 -msgid "Forum" -msgstr "Forum" - -#: mod/viewcontacts.php:96 include/text.php:921 -msgid "View Contacts" -msgstr "Voir les contacts" - #: mod/notifications.php:29 msgid "Invalid request identifier." msgstr "Identifiant de demande invalide." @@ -1533,8 +1550,8 @@ msgstr "Demande de connexion/relation" msgid "New Follower" msgstr "Nouvel abonné" -#: mod/notifications.php:250 mod/directory.php:141 include/identity.php:280 -#: include/identity.php:553 +#: mod/notifications.php:250 mod/directory.php:147 include/identity.php:306 +#: include/identity.php:580 msgid "Gender:" msgstr "Genre:" @@ -1727,18 +1744,18 @@ msgid "Your message:" msgstr "Votre message:" #: mod/message.php:339 mod/message.php:523 mod/wallmessage.php:154 -#: mod/editpost.php:109 include/conversation.php:1184 +#: mod/editpost.php:110 include/conversation.php:1184 msgid "Upload photo" msgstr "Joindre photo" #: mod/message.php:340 mod/message.php:524 mod/wallmessage.php:155 -#: mod/editpost.php:113 include/conversation.php:1188 +#: mod/editpost.php:114 include/conversation.php:1188 msgid "Insert web link" msgstr "Insérer lien web" #: mod/message.php:341 mod/message.php:526 mod/content.php:501 -#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:123 -#: mod/photos.php:1602 object/Item.php:396 include/conversation.php:713 +#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124 +#: mod/photos.php:1610 object/Item.php:396 include/conversation.php:713 #: include/conversation.php:1202 msgid "Please wait" msgstr "Patientez" @@ -1800,103 +1817,99 @@ msgstr[1] "%d messages" msgid "[Embedded content - reload page to view]" msgstr "[contenu incorporé - rechargez la page pour le voir]" -#: mod/crepair.php:107 +#: mod/crepair.php:104 msgid "Contact settings applied." msgstr "Réglages du contact appliqués." -#: mod/crepair.php:109 +#: mod/crepair.php:106 msgid "Contact update failed." msgstr "Impossible d'appliquer les réglages." -#: mod/crepair.php:140 +#: mod/crepair.php:137 msgid "" "WARNING: This is highly advanced and if you enter incorrect" " information your communications with this contact may stop working." msgstr "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact." -#: mod/crepair.php:141 +#: mod/crepair.php:138 msgid "" "Please use your browser 'Back' button now if you are " "uncertain what to do on this page." msgstr "une photo" -#: mod/crepair.php:154 mod/crepair.php:156 +#: mod/crepair.php:151 mod/crepair.php:153 msgid "No mirroring" msgstr "Pas de miroir" -#: mod/crepair.php:154 +#: mod/crepair.php:151 msgid "Mirror as forwarded posting" msgstr "" -#: mod/crepair.php:154 mod/crepair.php:156 +#: mod/crepair.php:151 mod/crepair.php:153 msgid "Mirror as my own posting" msgstr "" -#: mod/crepair.php:162 -msgid "Repair Contact Settings" -msgstr "Réglages de réparation des contacts" - -#: mod/crepair.php:166 +#: mod/crepair.php:167 msgid "Return to contact editor" msgstr "Retour à l'éditeur de contact" -#: mod/crepair.php:168 +#: mod/crepair.php:169 msgid "Refetch contact data" msgstr "Récupérer à nouveau les données de contact" -#: mod/crepair.php:169 mod/admin.php:1111 mod/admin.php:1123 -#: mod/admin.php:1124 mod/admin.php:1137 mod/settings.php:650 -#: mod/settings.php:676 +#: mod/crepair.php:170 mod/admin.php:1111 mod/admin.php:1123 +#: mod/admin.php:1124 mod/admin.php:1137 mod/settings.php:652 +#: mod/settings.php:678 msgid "Name" msgstr "Nom" -#: mod/crepair.php:170 +#: mod/crepair.php:171 msgid "Account Nickname" msgstr "Pseudo du compte" -#: mod/crepair.php:171 +#: mod/crepair.php:172 msgid "@Tagname - overrides Name/Nickname" msgstr "@NomEtiquette - prend le pas sur Nom/Pseudo" -#: mod/crepair.php:172 +#: mod/crepair.php:173 msgid "Account URL" msgstr "URL du compte" -#: mod/crepair.php:173 +#: mod/crepair.php:174 msgid "Friend Request URL" msgstr "Echec du téléversement de l'image." -#: mod/crepair.php:174 +#: mod/crepair.php:175 msgid "Friend Confirm URL" msgstr "Accès public refusé." -#: mod/crepair.php:175 +#: mod/crepair.php:176 msgid "Notification Endpoint URL" msgstr "Aucune photo sélectionnée" -#: mod/crepair.php:176 +#: mod/crepair.php:177 msgid "Poll/Feed URL" msgstr "Téléverser des photos" -#: mod/crepair.php:177 +#: mod/crepair.php:178 msgid "New photo from this URL" msgstr "Nouvelle photo depuis cette URL" -#: mod/crepair.php:178 +#: mod/crepair.php:179 msgid "Remote Self" msgstr "" -#: mod/crepair.php:181 +#: mod/crepair.php:182 msgid "Mirror postings from this contact" msgstr "" -#: mod/crepair.php:183 +#: mod/crepair.php:184 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact." -#: mod/bookmarklet.php:12 boot.php:1281 include/nav.php:91 +#: mod/bookmarklet.php:12 boot.php:1293 include/nav.php:91 msgid "Login" msgstr "Connexion" @@ -1908,13 +1921,13 @@ msgstr "La publication a été créée" msgid "Access denied." msgstr "Accès refusé." -#: mod/dirfind.php:188 mod/allfriends.php:82 mod/match.php:85 -#: mod/suggest.php:98 include/contact_widgets.php:10 include/identity.php:193 +#: mod/dirfind.php:188 mod/allfriends.php:75 mod/match.php:85 +#: mod/suggest.php:98 include/contact_widgets.php:10 include/identity.php:209 msgid "Connect" msgstr "Relier" -#: mod/dirfind.php:189 mod/allfriends.php:66 mod/match.php:70 -#: mod/directory.php:156 mod/suggest.php:81 include/Contact.php:307 +#: mod/dirfind.php:189 mod/allfriends.php:59 mod/match.php:70 +#: mod/directory.php:162 mod/suggest.php:81 include/Contact.php:307 #: include/Contact.php:320 include/Contact.php:362 #: include/conversation.php:912 include/conversation.php:926 msgid "View Profile" @@ -1929,14 +1942,14 @@ msgstr "Recherche de personne - %s" msgid "No matches" msgstr "Aucune correspondance" -#: mod/fbrowser.php:32 include/identity.php:666 include/nav.php:77 +#: mod/fbrowser.php:32 include/identity.php:693 include/nav.php:77 #: view/theme/diabook/theme.php:126 msgid "Photos" msgstr "Photos" -#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:54 -#: mod/photos.php:184 mod/photos.php:1111 mod/photos.php:1237 -#: mod/photos.php:1260 mod/photos.php:1830 mod/photos.php:1842 +#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:62 +#: mod/photos.php:192 mod/photos.php:1119 mod/photos.php:1245 +#: mod/photos.php:1268 mod/photos.php:1838 mod/photos.php:1850 #: view/theme/diabook/theme.php:499 msgid "Contact Photos" msgstr "Photos du contact" @@ -1983,7 +1996,7 @@ msgstr "Journaux" #: mod/admin.php:148 msgid "probe address" -msgstr "" +msgstr "Tester une adresse" #: mod/admin.php:149 msgid "check webfinger" @@ -2098,7 +2111,7 @@ msgstr "RINO2 a besoin du module php mcrypt pour fonctionner." msgid "Site settings updated." msgstr "Réglages du site mis-à-jour." -#: mod/admin.php:619 mod/settings.php:901 +#: mod/admin.php:619 mod/settings.php:903 msgid "No special theme for mobile devices" msgstr "Pas de thème particulier pour les terminaux mobiles" @@ -2187,8 +2200,8 @@ msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)" #: mod/admin.php:712 mod/admin.php:1271 mod/admin.php:1507 mod/admin.php:1595 -#: mod/settings.php:648 mod/settings.php:758 mod/settings.php:802 -#: mod/settings.php:871 mod/settings.php:957 mod/settings.php:1192 +#: mod/settings.php:650 mod/settings.php:760 mod/settings.php:804 +#: mod/settings.php:873 mod/settings.php:960 mod/settings.php:1195 msgid "Save Settings" msgstr "Sauvegarder les paramétres" @@ -2252,7 +2265,7 @@ msgstr "Lien vers une icône qui sera utilisée pour les navigateurs." #: mod/admin.php:727 msgid "Touch icon" -msgstr "" +msgstr "Icône pour systèmes tactiles" #: mod/admin.php:727 msgid "Link to an icon that will be used for tablets and mobiles." @@ -2742,7 +2755,7 @@ msgstr "" #: mod/admin.php:785 msgid "Publish server information" -msgstr "" +msgstr "Publier les informations du serveur" #: mod/admin.php:785 msgid "" @@ -2750,7 +2763,7 @@ msgid "" "contains the name and version of the server, number of users with public " "profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "" +msgstr "Si cette option est activée, des informations sur le serveur et son utilisation seront publiées. Ces informations incluent le nom et la version du serveur, le nombre d’utilisateurs avec des profils publics, le nombre de messages, les protocoles supportés et les connecteurs disponibles. Plus de détails sur the-federation.info." #: mod/admin.php:787 msgid "Use MySQL full text engine" @@ -2772,11 +2785,11 @@ msgstr "Supprimer les informations de langue dans les métadonnées des publicat #: mod/admin.php:789 msgid "Suppress Tags" -msgstr "" +msgstr "Masquer les tags" #: mod/admin.php:789 msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" +msgstr "Ne pas afficher la liste des hashtags à la fin d’un message." #: mod/admin.php:790 msgid "Path to item cache" @@ -2875,11 +2888,11 @@ msgstr "" #: mod/admin.php:802 msgid "RINO Encryption" -msgstr "" +msgstr "Chiffrement RINO" #: mod/admin.php:802 msgid "Encryption layer between nodes." -msgstr "" +msgstr "Couche de chiffrement entre les nœuds du réseau." #: mod/admin.php:803 msgid "Embedly API key" @@ -3146,8 +3159,9 @@ msgid "Maintainer: " msgstr "Mainteneur: " #: mod/admin.php:1272 +#: view/smarty3/compiled/f835364006028b1061f37be121c9bd9db5fa50a9.file.admin_plugins.tpl.php:42 msgid "Reload active plugins" -msgstr "" +msgstr "Recharger les extensions actives" #: mod/admin.php:1370 msgid "No themes found." @@ -3159,7 +3173,7 @@ msgstr "Capture d'écran" #: mod/admin.php:1508 msgid "Reload active themes" -msgstr "" +msgstr "Recharger les thèmes actifs" #: mod/admin.php:1512 msgid "[Experimental]" @@ -3292,10 +3306,6 @@ msgstr "Les messages privés envoyés à ce groupe s'exposent à une diffusion i msgid "No such group" msgstr "Groupe inexistant" -#: mod/network.php:563 mod/content.php:130 -msgid "Group is empty" -msgstr "Groupe vide" - #: mod/network.php:574 mod/content.php:135 #, php-format msgid "Group: %s" @@ -3309,15 +3319,10 @@ msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion msgid "Invalid contact." msgstr "Contact invalide." -#: mod/allfriends.php:45 +#: mod/allfriends.php:38 msgid "No friends to display." msgstr "Pas d'amis à afficher." -#: mod/allfriends.php:92 -#, php-format -msgid "Friends of %s" -msgstr "Amis de %s" - #: mod/events.php:71 mod/events.php:73 msgid "Event can not end before it has started." msgstr "" @@ -3354,11 +3359,11 @@ msgstr "Ven" msgid "Sat" msgstr "Sam" -#: mod/events.php:208 mod/settings.php:936 include/text.php:1274 +#: mod/events.php:208 mod/settings.php:939 include/text.php:1274 msgid "Sunday" msgstr "Dimanche" -#: mod/events.php:209 mod/settings.php:936 include/text.php:1274 +#: mod/events.php:209 mod/settings.php:939 include/text.php:1274 msgid "Monday" msgstr "Lundi" @@ -3502,7 +3507,7 @@ msgstr "Editer l'événement" msgid "link to source" msgstr "lien original" -#: mod/events.php:456 include/identity.php:686 include/nav.php:79 +#: mod/events.php:456 include/identity.php:713 include/nav.php:79 #: include/nav.php:140 view/theme/diabook/theme.php:127 msgid "Events" msgstr "Événements" @@ -3559,8 +3564,8 @@ msgstr "Titre :" msgid "Share this event" msgstr "Partager cet événement" -#: mod/events.php:572 mod/content.php:721 mod/editpost.php:144 -#: mod/photos.php:1623 mod/photos.php:1671 mod/photos.php:1759 +#: mod/events.php:572 mod/content.php:721 mod/editpost.php:145 +#: mod/photos.php:1631 mod/photos.php:1679 mod/photos.php:1767 #: object/Item.php:719 include/conversation.php:1217 msgid "Preview" msgstr "Aperçu" @@ -3576,7 +3581,7 @@ msgid "" "code or the translation of Friendica. Thank you all!" msgstr "Friendica est un projet communautaire, qui ne serait pas possible sans l'aide de beaucoup de gens. Voici une liste de ceux qui ont contribué au code ou à la traduction de Friendica. Merci à tous!" -#: mod/content.php:439 mod/content.php:742 mod/photos.php:1714 +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1722 #: object/Item.php:133 include/conversation.php:634 msgid "Select" msgstr "Sélectionner" @@ -3605,23 +3610,23 @@ msgstr[0] "%d commentaire" msgstr[1] "%d commentaires" #: mod/content.php:607 object/Item.php:421 object/Item.php:434 -#: include/text.php:1999 +#: include/text.php:1997 msgid "comment" msgid_plural "comments" msgstr[0] "" msgstr[1] "commentaire" -#: mod/content.php:608 boot.php:773 object/Item.php:422 +#: mod/content.php:608 boot.php:785 object/Item.php:422 #: include/contact_widgets.php:242 include/forums.php:110 -#: include/items.php:5152 view/theme/vier/theme.php:264 +#: include/items.php:5178 view/theme/vier/theme.php:264 msgid "show more" msgstr "montrer plus" -#: mod/content.php:622 mod/photos.php:1410 object/Item.php:117 +#: mod/content.php:622 mod/photos.php:1418 object/Item.php:117 msgid "Private Message" msgstr "Message privé" -#: mod/content.php:686 mod/photos.php:1599 object/Item.php:253 +#: mod/content.php:686 mod/photos.php:1607 object/Item.php:253 msgid "I like this (toggle)" msgstr "J'aime" @@ -3629,7 +3634,7 @@ msgstr "J'aime" msgid "like" msgstr "aime" -#: mod/content.php:687 mod/photos.php:1600 object/Item.php:254 +#: mod/content.php:687 mod/photos.php:1608 object/Item.php:254 msgid "I don't like this (toggle)" msgstr "Je n'aime pas" @@ -3645,13 +3650,13 @@ msgstr "Partager" msgid "share" msgstr "partager" -#: mod/content.php:709 mod/photos.php:1619 mod/photos.php:1667 -#: mod/photos.php:1755 object/Item.php:707 +#: mod/content.php:709 mod/photos.php:1627 mod/photos.php:1675 +#: mod/photos.php:1763 object/Item.php:707 msgid "This is you" msgstr "C'est vous" -#: mod/content.php:711 mod/photos.php:1621 mod/photos.php:1669 -#: mod/photos.php:1757 boot.php:772 object/Item.php:393 object/Item.php:709 +#: mod/content.php:711 mod/photos.php:1629 mod/photos.php:1677 +#: mod/photos.php:1765 boot.php:784 object/Item.php:393 object/Item.php:709 msgid "Comment" msgstr "Commenter" @@ -3687,7 +3692,7 @@ msgstr "Lien" msgid "Video" msgstr "Vidéo" -#: mod/content.php:730 mod/settings.php:710 object/Item.php:122 +#: mod/content.php:730 mod/settings.php:712 object/Item.php:122 #: object/Item.php:124 msgid "Edit" msgstr "Éditer" @@ -4040,11 +4045,11 @@ msgstr "La réécriture d'URL fonctionne." #: mod/install.php:526 msgid "ImageMagick PHP extension is installed" -msgstr "" +msgstr "L’extension PHP ImageMagick est installée" #: mod/install.php:528 msgid "ImageMagick supports GIF" -msgstr "" +msgstr "ImageMagick supporte le format GIF" #: mod/install.php:536 msgid "" @@ -4120,7 +4125,7 @@ msgstr "Ou — auriez-vous essayé de télécharger un fichier vide ?" #: mod/wall_attach.php:105 #, php-format msgid "File exceeds size limit of %s" -msgstr "" +msgstr "La taille du fichier dépasse la limite de %s" #: mod/wall_attach.php:156 mod/wall_attach.php:172 msgid "File upload failed." @@ -4151,11 +4156,11 @@ msgstr "Indisponible." msgid "Community" msgstr "Communauté" -#: mod/community.php:62 mod/community.php:71 mod/search.php:218 +#: mod/community.php:62 mod/community.php:71 mod/search.php:228 msgid "No results." msgstr "Aucun résultat." -#: mod/settings.php:34 mod/photos.php:109 +#: mod/settings.php:34 mod/photos.php:117 msgid "everybody" msgstr "tout le monde" @@ -4167,7 +4172,7 @@ msgstr "Fonctions supplémentaires" msgid "Display" msgstr "Afficher" -#: mod/settings.php:60 mod/settings.php:853 +#: mod/settings.php:60 mod/settings.php:855 msgid "Social Networks" msgstr "Réseaux sociaux" @@ -4203,655 +4208,655 @@ msgstr "Réglages de courriel mis-à-jour." msgid "Features updated" msgstr "Fonctionnalités mises à jour" -#: mod/settings.php:341 +#: mod/settings.php:343 msgid "Relocate message has been send to your contacts" msgstr "Un message de relocalisation a été envoyé à vos contacts." -#: mod/settings.php:355 include/user.php:39 +#: mod/settings.php:357 include/user.php:39 msgid "Passwords do not match. Password unchanged." msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." -#: mod/settings.php:360 +#: mod/settings.php:362 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué." -#: mod/settings.php:368 +#: mod/settings.php:370 msgid "Wrong password." msgstr "Mauvais mot de passe." -#: mod/settings.php:379 +#: mod/settings.php:381 msgid "Password changed." msgstr "Mots de passe changés." -#: mod/settings.php:381 +#: mod/settings.php:383 msgid "Password update failed. Please try again." msgstr "Le changement de mot de passe a échoué. Merci de recommencer." -#: mod/settings.php:450 +#: mod/settings.php:452 msgid " Please use a shorter name." msgstr " Merci d'utiliser un nom plus court." -#: mod/settings.php:452 +#: mod/settings.php:454 msgid " Name too short." msgstr " Nom trop court." -#: mod/settings.php:461 +#: mod/settings.php:463 msgid "Wrong Password" msgstr "Mauvais mot de passe" -#: mod/settings.php:466 +#: mod/settings.php:468 msgid " Not valid email." msgstr " Email invalide." -#: mod/settings.php:472 +#: mod/settings.php:474 msgid " Cannot change to that email." msgstr " Impossible de changer pour cet email." -#: mod/settings.php:528 +#: mod/settings.php:530 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut." -#: mod/settings.php:532 +#: mod/settings.php:534 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut." -#: mod/settings.php:571 +#: mod/settings.php:573 msgid "Settings updated." msgstr "Réglages mis à jour." -#: mod/settings.php:647 mod/settings.php:673 mod/settings.php:709 +#: mod/settings.php:649 mod/settings.php:675 mod/settings.php:711 msgid "Add application" msgstr "Ajouter une application" -#: mod/settings.php:651 mod/settings.php:677 +#: mod/settings.php:653 mod/settings.php:679 msgid "Consumer Key" msgstr "Clé utilisateur" -#: mod/settings.php:652 mod/settings.php:678 +#: mod/settings.php:654 mod/settings.php:680 msgid "Consumer Secret" msgstr "Secret utilisateur" -#: mod/settings.php:653 mod/settings.php:679 +#: mod/settings.php:655 mod/settings.php:681 msgid "Redirect" msgstr "Rediriger" -#: mod/settings.php:654 mod/settings.php:680 +#: mod/settings.php:656 mod/settings.php:682 msgid "Icon url" msgstr "URL de l'icône" -#: mod/settings.php:665 +#: mod/settings.php:667 msgid "You can't edit this application." msgstr "Vous ne pouvez pas éditer cette application." -#: mod/settings.php:708 +#: mod/settings.php:710 msgid "Connected Apps" msgstr "Applications connectées" -#: mod/settings.php:712 +#: mod/settings.php:714 msgid "Client key starts with" msgstr "La clé cliente commence par" -#: mod/settings.php:713 +#: mod/settings.php:715 msgid "No name" msgstr "Sans nom" -#: mod/settings.php:714 +#: mod/settings.php:716 msgid "Remove authorization" msgstr "Révoquer l'autorisation" -#: mod/settings.php:726 +#: mod/settings.php:728 msgid "No Plugin settings configured" msgstr "Pas de réglages d'extensions configurés" -#: mod/settings.php:734 +#: mod/settings.php:736 msgid "Plugin Settings" msgstr "Extensions" -#: mod/settings.php:748 +#: mod/settings.php:750 msgid "Off" msgstr "Éteint" -#: mod/settings.php:748 +#: mod/settings.php:750 msgid "On" msgstr "Allumé" -#: mod/settings.php:756 +#: mod/settings.php:758 msgid "Additional Features" msgstr "Fonctions supplémentaires" -#: mod/settings.php:766 mod/settings.php:770 +#: mod/settings.php:768 mod/settings.php:772 msgid "General Social Media Settings" msgstr "Paramètres généraux des réseaux sociaux" -#: mod/settings.php:776 +#: mod/settings.php:778 msgid "Disable intelligent shortening" msgstr "Désactiver la réduction d'URL" -#: mod/settings.php:778 +#: mod/settings.php:780 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If this option is enabled then every shortened post will always point to the" " original friendica post." msgstr "Normalement, le système tente de trouver le meilleur lien à ajouter aux publications raccourcies. Si cette option est activée, les publications raccourcies dirigeront toujours vers leur publication d'origine sur Friendica." -#: mod/settings.php:784 +#: mod/settings.php:786 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" msgstr "Suivre automatiquement ceux qui me suivent ou me mentionnent sur GNU Social (OStatus)" -#: mod/settings.php:786 +#: mod/settings.php:788 msgid "" "If you receive a message from an unknown OStatus user, this option decides " "what to do. If it is checked, a new contact will be created for every " "unknown user." msgstr "Si vous recevez un message d'un utilisateur OStatus inconnu, cette option détermine ce qui sera fait. Si elle est cochée, un nouveau contact sera créé pour chaque utilisateur inconnu." -#: mod/settings.php:795 +#: mod/settings.php:797 msgid "Your legacy GNU Social account" msgstr "Le compte GNU Social que vous avez déjà" -#: mod/settings.php:797 +#: mod/settings.php:799 msgid "" "If you enter your old GNU Social/Statusnet account name here (in the format " "user@domain.tld), your contacts will be added automatically. The field will " "be emptied when done." msgstr "Si vous entrez votre le nom de votre ancien compte GNU Social / StatusNet ici (utiliser le format utilisateur@domaine.tld), vos contacts seront ajoutés automatiquement. Le champ sera vidé lorsque ce sera terminé." -#: mod/settings.php:800 +#: mod/settings.php:802 msgid "Repair OStatus subscriptions" msgstr "Réparer les abonnements OStatus" -#: mod/settings.php:809 mod/settings.php:810 +#: mod/settings.php:811 mod/settings.php:812 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Le support natif pour la connectivité %s est %s" -#: mod/settings.php:809 mod/dfrn_request.php:858 +#: mod/settings.php:811 mod/dfrn_request.php:858 #: include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora" -#: mod/settings.php:809 mod/settings.php:810 +#: mod/settings.php:811 mod/settings.php:812 msgid "enabled" msgstr "activé" -#: mod/settings.php:809 mod/settings.php:810 +#: mod/settings.php:811 mod/settings.php:812 msgid "disabled" msgstr "désactivé" -#: mod/settings.php:810 +#: mod/settings.php:812 msgid "GNU Social (OStatus)" msgstr "GNU Social (OStatus)" -#: mod/settings.php:846 +#: mod/settings.php:848 msgid "Email access is disabled on this site." msgstr "L'accès courriel est désactivé sur ce site." -#: mod/settings.php:858 +#: mod/settings.php:860 msgid "Email/Mailbox Setup" msgstr "Réglages de courriel/boîte à lettre" -#: mod/settings.php:859 +#: mod/settings.php:861 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte." -#: mod/settings.php:860 +#: mod/settings.php:862 msgid "Last successful email check:" msgstr "Dernière vérification réussie des courriels:" -#: mod/settings.php:862 +#: mod/settings.php:864 msgid "IMAP server name:" msgstr "Nom du serveur IMAP:" -#: mod/settings.php:863 +#: mod/settings.php:865 msgid "IMAP port:" msgstr "Port IMAP:" -#: mod/settings.php:864 +#: mod/settings.php:866 msgid "Security:" msgstr "Sécurité:" -#: mod/settings.php:864 mod/settings.php:869 +#: mod/settings.php:866 mod/settings.php:871 msgid "None" msgstr "Aucun(e)" -#: mod/settings.php:865 +#: mod/settings.php:867 msgid "Email login name:" msgstr "Nom de connexion:" -#: mod/settings.php:866 +#: mod/settings.php:868 msgid "Email password:" msgstr "Mot de passe:" -#: mod/settings.php:867 +#: mod/settings.php:869 msgid "Reply-to address:" msgstr "Adresse de réponse:" -#: mod/settings.php:868 +#: mod/settings.php:870 msgid "Send public posts to all email contacts:" msgstr "Envoyer les publications publiques à tous les contacts courriels:" -#: mod/settings.php:869 +#: mod/settings.php:871 msgid "Action after import:" msgstr "Action après import:" -#: mod/settings.php:869 +#: mod/settings.php:871 msgid "Mark as seen" msgstr "Marquer comme vu" -#: mod/settings.php:869 +#: mod/settings.php:871 msgid "Move to folder" msgstr "Déplacer vers" -#: mod/settings.php:870 +#: mod/settings.php:872 msgid "Move to folder:" msgstr "Déplacer vers:" -#: mod/settings.php:955 +#: mod/settings.php:958 msgid "Display Settings" msgstr "Affichage" -#: mod/settings.php:961 mod/settings.php:979 +#: mod/settings.php:964 mod/settings.php:982 msgid "Display Theme:" msgstr "Thème d'affichage:" -#: mod/settings.php:962 +#: mod/settings.php:965 msgid "Mobile Theme:" msgstr "Thème mobile:" -#: mod/settings.php:963 +#: mod/settings.php:966 msgid "Update browser every xx seconds" msgstr "Mettre-à-jour l'affichage toutes les xx secondes" -#: mod/settings.php:963 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Délai minimum de 10 secondes, pas de maximum" +#: mod/settings.php:966 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "" -#: mod/settings.php:964 +#: mod/settings.php:967 msgid "Number of items to display per page:" msgstr "Nombre d’éléments par page:" -#: mod/settings.php:964 mod/settings.php:965 +#: mod/settings.php:967 mod/settings.php:968 msgid "Maximum of 100 items" msgstr "Maximum de 100 éléments" -#: mod/settings.php:965 +#: mod/settings.php:968 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Nombre d'éléments a afficher par page pour un appareil mobile" -#: mod/settings.php:966 +#: mod/settings.php:969 msgid "Don't show emoticons" msgstr "Ne pas afficher les émoticônes (smileys grahiques)" -#: mod/settings.php:967 +#: mod/settings.php:970 msgid "Calendar" msgstr "Calendrier" -#: mod/settings.php:968 +#: mod/settings.php:971 msgid "Beginning of week:" msgstr "Début de la semaine :" -#: mod/settings.php:969 +#: mod/settings.php:972 msgid "Don't show notices" msgstr "Ne plus afficher les avis" -#: mod/settings.php:970 +#: mod/settings.php:973 msgid "Infinite scroll" msgstr "Défilement infini" -#: mod/settings.php:971 +#: mod/settings.php:974 msgid "Automatic updates only at the top of the network page" msgstr "" -#: mod/settings.php:973 view/theme/cleanzero/config.php:82 +#: mod/settings.php:976 view/theme/cleanzero/config.php:82 #: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66 #: view/theme/diabook/config.php:150 view/theme/clean/config.php:85 #: view/theme/vier/config.php:109 view/theme/duepuntozero/config.php:61 msgid "Theme settings" msgstr "Réglages du thème graphique" -#: mod/settings.php:1050 +#: mod/settings.php:1053 msgid "User Types" msgstr "Types d'utilisateurs" -#: mod/settings.php:1051 +#: mod/settings.php:1054 msgid "Community Types" msgstr "Genre de communautés" -#: mod/settings.php:1052 +#: mod/settings.php:1055 msgid "Normal Account Page" msgstr "Compte normal" -#: mod/settings.php:1053 +#: mod/settings.php:1056 msgid "This account is a normal personal profile" msgstr "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)" -#: mod/settings.php:1056 +#: mod/settings.php:1059 msgid "Soapbox Page" msgstr "Compte \"boîte à savon\"" -#: mod/settings.php:1057 +#: mod/settings.php:1060 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'" -#: mod/settings.php:1060 +#: mod/settings.php:1063 msgid "Community Forum/Celebrity Account" msgstr "Compte de communauté/célébrité" -#: mod/settings.php:1061 +#: mod/settings.php:1064 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'" -#: mod/settings.php:1064 +#: mod/settings.php:1067 msgid "Automatic Friend Page" msgstr "Compte d'\"amitié automatique\"" -#: mod/settings.php:1065 +#: mod/settings.php:1068 msgid "Automatically approve all connection/friend requests as friends" msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis" -#: mod/settings.php:1068 +#: mod/settings.php:1071 msgid "Private Forum [Experimental]" msgstr "Forum privé [expérimental]" -#: mod/settings.php:1069 +#: mod/settings.php:1072 msgid "Private forum - approved members only" msgstr "Forum privé - modéré en inscription" -#: mod/settings.php:1081 +#: mod/settings.php:1084 msgid "OpenID:" msgstr "OpenID:" -#: mod/settings.php:1081 +#: mod/settings.php:1084 msgid "(Optional) Allow this OpenID to login to this account." msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte." -#: mod/settings.php:1091 +#: mod/settings.php:1094 msgid "Publish your default profile in your local site directory?" msgstr "Publier votre profil par défaut sur l'annuaire local de ce site?" -#: mod/settings.php:1097 +#: mod/settings.php:1100 msgid "Publish your default profile in the global social directory?" msgstr "Publier votre profil par défaut sur l'annuaire social global?" -#: mod/settings.php:1105 +#: mod/settings.php:1108 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?" -#: mod/settings.php:1109 include/acl_selectors.php:331 +#: mod/settings.php:1112 include/acl_selectors.php:331 msgid "Hide your profile details from unknown viewers?" msgstr "Cacher les détails du profil aux visiteurs inconnus?" -#: mod/settings.php:1109 +#: mod/settings.php:1112 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." msgstr "" -#: mod/settings.php:1114 +#: mod/settings.php:1117 msgid "Allow friends to post to your profile page?" msgstr "Autoriser vos amis à publier sur votre profil?" -#: mod/settings.php:1120 +#: mod/settings.php:1123 msgid "Allow friends to tag your posts?" msgstr "Autoriser vos amis à étiqueter vos publications?" -#: mod/settings.php:1126 +#: mod/settings.php:1129 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?" -#: mod/settings.php:1132 +#: mod/settings.php:1135 msgid "Permit unknown people to send you private mail?" msgstr "Autoriser les messages privés d'inconnus?" -#: mod/settings.php:1140 +#: mod/settings.php:1143 msgid "Profile is not published." msgstr "Ce profil n'est pas publié." -#: mod/settings.php:1148 +#: mod/settings.php:1151 #, php-format msgid "Your Identity Address is '%s' or '%s'." -msgstr "" +msgstr "L’adresse de votre identité est '%s' or '%s'." -#: mod/settings.php:1155 +#: mod/settings.php:1158 msgid "Automatically expire posts after this many days:" msgstr "Les publications expirent automatiquement après (en jours) :" -#: mod/settings.php:1155 +#: mod/settings.php:1158 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées" -#: mod/settings.php:1156 +#: mod/settings.php:1159 msgid "Advanced expiration settings" msgstr "Réglages avancés de l'expiration" -#: mod/settings.php:1157 +#: mod/settings.php:1160 msgid "Advanced Expiration" msgstr "Expiration (avancé)" -#: mod/settings.php:1158 +#: mod/settings.php:1161 msgid "Expire posts:" msgstr "Faire expirer les publications:" -#: mod/settings.php:1159 +#: mod/settings.php:1162 msgid "Expire personal notes:" msgstr "Faire expirer les notes personnelles:" -#: mod/settings.php:1160 +#: mod/settings.php:1163 msgid "Expire starred posts:" msgstr "Faire expirer les publications marqués:" -#: mod/settings.php:1161 +#: mod/settings.php:1164 msgid "Expire photos:" msgstr "Faire expirer les photos:" -#: mod/settings.php:1162 +#: mod/settings.php:1165 msgid "Only expire posts by others:" msgstr "Faire expirer seulement les publications des autres:" -#: mod/settings.php:1190 +#: mod/settings.php:1193 msgid "Account Settings" msgstr "Compte" -#: mod/settings.php:1198 +#: mod/settings.php:1201 msgid "Password Settings" msgstr "Réglages de mot de passe" -#: mod/settings.php:1199 mod/register.php:274 +#: mod/settings.php:1202 mod/register.php:274 msgid "New Password:" msgstr "Nouveau mot de passe:" -#: mod/settings.php:1200 mod/register.php:275 +#: mod/settings.php:1203 mod/register.php:275 msgid "Confirm:" msgstr "Confirmer:" -#: mod/settings.php:1200 +#: mod/settings.php:1203 msgid "Leave password fields blank unless changing" msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer" -#: mod/settings.php:1201 +#: mod/settings.php:1204 msgid "Current Password:" msgstr "Mot de passe actuel:" -#: mod/settings.php:1201 mod/settings.php:1202 +#: mod/settings.php:1204 mod/settings.php:1205 msgid "Your current password to confirm the changes" msgstr "Votre mot de passe actuel pour confirmer les modifications" -#: mod/settings.php:1202 +#: mod/settings.php:1205 msgid "Password:" msgstr "Mot de passe:" -#: mod/settings.php:1206 +#: mod/settings.php:1209 msgid "Basic Settings" msgstr "Réglages basiques" -#: mod/settings.php:1207 include/identity.php:551 +#: mod/settings.php:1210 include/identity.php:578 msgid "Full Name:" msgstr "Nom complet:" -#: mod/settings.php:1208 +#: mod/settings.php:1211 msgid "Email Address:" msgstr "Adresse courriel:" -#: mod/settings.php:1209 +#: mod/settings.php:1212 msgid "Your Timezone:" msgstr "Votre fuseau horaire:" -#: mod/settings.php:1210 +#: mod/settings.php:1213 msgid "Your Language:" msgstr "Votre langue :" -#: mod/settings.php:1210 +#: mod/settings.php:1213 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Détermine la langue que nous utilisons pour afficher votre interface Friendica et pour vous envoyer des courriels" -#: mod/settings.php:1211 +#: mod/settings.php:1214 msgid "Default Post Location:" msgstr "Emplacement de publication par défaut:" -#: mod/settings.php:1212 +#: mod/settings.php:1215 msgid "Use Browser Location:" msgstr "Utiliser la localisation géographique du navigateur:" -#: mod/settings.php:1215 +#: mod/settings.php:1218 msgid "Security and Privacy Settings" msgstr "Réglages de sécurité et vie privée" -#: mod/settings.php:1217 +#: mod/settings.php:1220 msgid "Maximum Friend Requests/Day:" msgstr "Nombre maximal de requêtes d'amitié/jour:" -#: mod/settings.php:1217 mod/settings.php:1247 +#: mod/settings.php:1220 mod/settings.php:1250 msgid "(to prevent spam abuse)" msgstr "(pour limiter l'impact du spam)" -#: mod/settings.php:1218 +#: mod/settings.php:1221 msgid "Default Post Permissions" msgstr "Permissions de publication par défaut" -#: mod/settings.php:1219 +#: mod/settings.php:1222 msgid "(click to open/close)" msgstr "(cliquer pour ouvrir/fermer)" -#: mod/settings.php:1228 mod/photos.php:1191 mod/photos.php:1576 +#: mod/settings.php:1231 mod/photos.php:1199 mod/photos.php:1584 msgid "Show to Groups" msgstr "Montrer aux groupes" -#: mod/settings.php:1229 mod/photos.php:1192 mod/photos.php:1577 +#: mod/settings.php:1232 mod/photos.php:1200 mod/photos.php:1585 msgid "Show to Contacts" msgstr "Montrer aux Contacts" -#: mod/settings.php:1230 +#: mod/settings.php:1233 msgid "Default Private Post" msgstr "Message privé par défaut" -#: mod/settings.php:1231 +#: mod/settings.php:1234 msgid "Default Public Post" msgstr "Message publique par défaut" -#: mod/settings.php:1235 +#: mod/settings.php:1238 msgid "Default Permissions for New Posts" msgstr "Permissions par défaut pour les nouvelles publications" -#: mod/settings.php:1247 +#: mod/settings.php:1250 msgid "Maximum private messages per day from unknown people:" msgstr "Maximum de messages privés d'inconnus par jour:" -#: mod/settings.php:1250 +#: mod/settings.php:1253 msgid "Notification Settings" msgstr "Réglages de notification" -#: mod/settings.php:1251 +#: mod/settings.php:1254 msgid "By default post a status message when:" msgstr "Par défaut, poster un statut quand:" -#: mod/settings.php:1252 +#: mod/settings.php:1255 msgid "accepting a friend request" msgstr "j'accepte un ami" -#: mod/settings.php:1253 +#: mod/settings.php:1256 msgid "joining a forum/community" msgstr "joignant un forum/une communauté" -#: mod/settings.php:1254 +#: mod/settings.php:1257 msgid "making an interesting profile change" msgstr "je fais une modification intéressante de mon profil" -#: mod/settings.php:1255 +#: mod/settings.php:1258 msgid "Send a notification email when:" msgstr "Envoyer un courriel de notification quand:" -#: mod/settings.php:1256 +#: mod/settings.php:1259 msgid "You receive an introduction" msgstr "Vous recevez une introduction" -#: mod/settings.php:1257 +#: mod/settings.php:1260 msgid "Your introductions are confirmed" msgstr "Vos introductions sont confirmées" -#: mod/settings.php:1258 +#: mod/settings.php:1261 msgid "Someone writes on your profile wall" msgstr "Quelqu'un écrit sur votre mur" -#: mod/settings.php:1259 +#: mod/settings.php:1262 msgid "Someone writes a followup comment" msgstr "Quelqu'un vous commente" -#: mod/settings.php:1260 +#: mod/settings.php:1263 msgid "You receive a private message" msgstr "Vous recevez un message privé" -#: mod/settings.php:1261 +#: mod/settings.php:1264 msgid "You receive a friend suggestion" msgstr "Vous avez reçu une suggestion d'ami" -#: mod/settings.php:1262 +#: mod/settings.php:1265 msgid "You are tagged in a post" msgstr "Vous avez été étiquetté dans une publication" -#: mod/settings.php:1263 +#: mod/settings.php:1266 msgid "You are poked/prodded/etc. in a post" msgstr "Vous avez été sollicité dans une publication" -#: mod/settings.php:1265 +#: mod/settings.php:1268 msgid "Activate desktop notifications" msgstr "Activer les notifications de bureau" -#: mod/settings.php:1265 +#: mod/settings.php:1268 msgid "Show desktop popup on new notifications" msgstr "Afficher dans des pops-ups les nouvelles notifications" -#: mod/settings.php:1267 +#: mod/settings.php:1270 msgid "Text-only notification emails" msgstr "Courriels de notification en format texte" -#: mod/settings.php:1269 +#: mod/settings.php:1272 msgid "Send text only notification emails, without the html part" msgstr "Envoyer le texte des courriels de notification, sans la composante html" -#: mod/settings.php:1271 +#: mod/settings.php:1274 msgid "Advanced Account/Page Type Settings" msgstr "Paramètres avancés de compte/page" -#: mod/settings.php:1272 +#: mod/settings.php:1275 msgid "Change the behaviour of this account for special situations" msgstr "Modifier le comportement de ce compte dans certaines situations" -#: mod/settings.php:1275 +#: mod/settings.php:1278 msgid "Relocate" msgstr "Relocaliser" -#: mod/settings.php:1276 +#: mod/settings.php:1279 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton." -#: mod/settings.php:1277 +#: mod/settings.php:1280 msgid "Resend relocate message to contacts" msgstr "Renvoyer un message de relocalisation aux contacts." @@ -4980,7 +4985,7 @@ msgid "" "If you are not yet a member of the free social web, follow this link to find a public Friendica site and " "join us today." -msgstr "" +msgstr "Si vous n’êtes pas encore membre du web social libre, suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd’hui." #: mod/dfrn_request.php:847 msgid "Friend/Connection Request" @@ -5021,7 +5026,7 @@ msgstr "Impossible d’envoyer le courriel de confirmation. Voici vos informatio #: mod/register.php:104 msgid "Registration successful." -msgstr "" +msgstr "Inscription réussie." #: mod/register.php:110 msgid "Your registration can not be processed." @@ -5067,7 +5072,7 @@ msgstr "Votre ID d'invitation: " #: mod/register.php:271 msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "" +msgstr "Votre nom complet (p. ex. Michel Dupont):" #: mod/register.php:272 msgid "Your Email Address: " @@ -5088,7 +5093,7 @@ msgstr "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de msgid "Choose a nickname: " msgstr "Choisir un pseudo: " -#: mod/register.php:280 boot.php:1256 include/nav.php:108 +#: mod/register.php:280 boot.php:1268 include/nav.php:108 msgid "Register" msgstr "S'inscrire" @@ -5108,62 +5113,54 @@ msgstr "Système indisponible pour cause de maintenance" msgid "Only logged in users are permitted to perform a search." msgstr "" -#: mod/search.php:115 +#: mod/search.php:124 msgid "Too Many Requests" msgstr "" -#: mod/search.php:116 +#: mod/search.php:125 msgid "Only one search per minute is permitted for not logged in users." msgstr "" -#: mod/search.php:126 include/text.php:1003 include/nav.php:118 +#: mod/search.php:136 include/text.php:1003 include/nav.php:118 msgid "Search" msgstr "Recherche" -#: mod/search.php:224 +#: mod/search.php:234 #, php-format msgid "Items tagged with: %s" msgstr "" -#: mod/search.php:226 +#: mod/search.php:236 #, php-format msgid "Search results for: %s" msgstr "" -#: mod/directory.php:116 mod/profiles.php:760 -msgid "Age: " -msgstr "Age : " - -#: mod/directory.php:119 -msgid "Gender: " -msgstr "Genre : " - -#: mod/directory.php:143 include/identity.php:283 include/identity.php:573 +#: mod/directory.php:149 include/identity.php:309 include/identity.php:600 msgid "Status:" msgstr "Statut:" -#: mod/directory.php:145 include/identity.php:285 include/identity.php:584 +#: mod/directory.php:151 include/identity.php:311 include/identity.php:611 msgid "Homepage:" msgstr "Page personnelle:" -#: mod/directory.php:195 view/theme/diabook/theme.php:525 +#: mod/directory.php:203 view/theme/diabook/theme.php:525 #: view/theme/vier/theme.php:205 msgid "Global Directory" msgstr "Annuaire global" -#: mod/directory.php:197 +#: mod/directory.php:205 msgid "Find on this site" msgstr "Trouver sur ce site" -#: mod/directory.php:199 +#: mod/directory.php:207 msgid "Finding:" msgstr "" -#: mod/directory.php:201 +#: mod/directory.php:209 msgid "Site Directory" msgstr "Annuaire local" -#: mod/directory.php:208 +#: mod/directory.php:216 msgid "No entries (some entries may be hidden)." msgstr "Aucune entrée (certaines peuvent être cachées)." @@ -5202,14 +5199,10 @@ msgstr "Ajouter" msgid "No entries." msgstr "Aucune entrée." -#: mod/common.php:85 +#: mod/common.php:87 msgid "No contacts in common." msgstr "Pas de contacts en commun." -#: mod/common.php:133 -msgid "Common Friends" -msgstr "Amis communs" - #: mod/uexport.php:77 msgid "Export account" msgstr "Exporter le compte" @@ -5291,11 +5284,11 @@ msgstr "Statut marital" msgid "Romantic Partner" msgstr "Partenaire / conjoint" -#: mod/profiles.php:344 mod/photos.php:1639 include/conversation.php:508 +#: mod/profiles.php:344 mod/photos.php:1647 include/conversation.php:508 msgid "Likes" msgstr "Derniers \"J'aime\"" -#: mod/profiles.php:348 mod/photos.php:1639 include/conversation.php:508 +#: mod/profiles.php:348 mod/photos.php:1647 include/conversation.php:508 msgid "Dislikes" msgstr "Derniers \"Je n'aime pas\"" @@ -5474,7 +5467,7 @@ msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" msgid "Since [date]:" msgstr "Depuis [date] :" -#: mod/profiles.php:724 include/identity.php:582 +#: mod/profiles.php:724 include/identity.php:609 msgid "Sexual Preference:" msgstr "Préférence sexuelle:" @@ -5482,11 +5475,11 @@ msgstr "Préférence sexuelle:" msgid "Homepage URL:" msgstr "Page personnelle :" -#: mod/profiles.php:726 include/identity.php:586 +#: mod/profiles.php:726 include/identity.php:613 msgid "Hometown:" msgstr " Ville d'origine:" -#: mod/profiles.php:727 include/identity.php:590 +#: mod/profiles.php:727 include/identity.php:617 msgid "Political Views:" msgstr "Opinions politiques:" @@ -5502,11 +5495,11 @@ msgstr "Mots-clés publics :" msgid "Private Keywords:" msgstr "Mots-clés privés :" -#: mod/profiles.php:731 include/identity.php:598 +#: mod/profiles.php:731 include/identity.php:625 msgid "Likes:" msgstr "J'aime :" -#: mod/profiles.php:732 include/identity.php:600 +#: mod/profiles.php:732 include/identity.php:627 msgid "Dislikes:" msgstr "Je n'aime pas :" @@ -5568,27 +5561,31 @@ msgid "" "be visible to anybody using the internet." msgstr "Ceci est votre profil public.
Il peut être visible par n'importe quel utilisateur d'Internet." +#: mod/profiles.php:760 +msgid "Age: " +msgstr "Age : " + #: mod/profiles.php:813 msgid "Edit/Manage Profiles" msgstr "Editer / gérer les profils" -#: mod/profiles.php:814 include/identity.php:241 include/identity.php:267 +#: mod/profiles.php:814 include/identity.php:257 include/identity.php:283 msgid "Change profile photo" msgstr "Changer de photo de profil" -#: mod/profiles.php:815 include/identity.php:242 +#: mod/profiles.php:815 include/identity.php:258 msgid "Create New Profile" msgstr "Créer un nouveau profil" -#: mod/profiles.php:826 include/identity.php:252 +#: mod/profiles.php:826 include/identity.php:268 msgid "Profile Image" msgstr "Image du profil" -#: mod/profiles.php:828 include/identity.php:255 +#: mod/profiles.php:828 include/identity.php:271 msgid "visible to everybody" msgstr "visible par tous" -#: mod/profiles.php:829 include/identity.php:256 +#: mod/profiles.php:829 include/identity.php:272 msgid "Edit visibility" msgstr "Changer la visibilité" @@ -5600,75 +5597,75 @@ msgstr "Élément introuvable" msgid "Edit post" msgstr "Éditer la publication" -#: mod/editpost.php:110 include/conversation.php:1185 +#: mod/editpost.php:111 include/conversation.php:1185 msgid "upload photo" msgstr "envoi image" -#: mod/editpost.php:111 include/conversation.php:1186 +#: mod/editpost.php:112 include/conversation.php:1186 msgid "Attach file" msgstr "Joindre fichier" -#: mod/editpost.php:112 include/conversation.php:1187 +#: mod/editpost.php:113 include/conversation.php:1187 msgid "attach file" msgstr "ajout fichier" -#: mod/editpost.php:114 include/conversation.php:1189 +#: mod/editpost.php:115 include/conversation.php:1189 msgid "web link" msgstr "lien web" -#: mod/editpost.php:115 include/conversation.php:1190 +#: mod/editpost.php:116 include/conversation.php:1190 msgid "Insert video link" msgstr "Insérer un lien video" -#: mod/editpost.php:116 include/conversation.php:1191 +#: mod/editpost.php:117 include/conversation.php:1191 msgid "video link" msgstr "lien vidéo" -#: mod/editpost.php:117 include/conversation.php:1192 +#: mod/editpost.php:118 include/conversation.php:1192 msgid "Insert audio link" msgstr "Insérer un lien audio" -#: mod/editpost.php:118 include/conversation.php:1193 +#: mod/editpost.php:119 include/conversation.php:1193 msgid "audio link" msgstr "lien audio" -#: mod/editpost.php:119 include/conversation.php:1194 +#: mod/editpost.php:120 include/conversation.php:1194 msgid "Set your location" msgstr "Définir votre localisation" -#: mod/editpost.php:120 include/conversation.php:1195 +#: mod/editpost.php:121 include/conversation.php:1195 msgid "set location" msgstr "spéc. localisation" -#: mod/editpost.php:121 include/conversation.php:1196 +#: mod/editpost.php:122 include/conversation.php:1196 msgid "Clear browser location" msgstr "Effacer la localisation du navigateur" -#: mod/editpost.php:122 include/conversation.php:1197 +#: mod/editpost.php:123 include/conversation.php:1197 msgid "clear location" msgstr "supp. localisation" -#: mod/editpost.php:124 include/conversation.php:1203 +#: mod/editpost.php:125 include/conversation.php:1203 msgid "Permission settings" msgstr "Réglages des permissions" -#: mod/editpost.php:132 include/acl_selectors.php:344 +#: mod/editpost.php:133 include/acl_selectors.php:344 msgid "CC: email addresses" msgstr "CC: adresses de courriel" -#: mod/editpost.php:133 include/conversation.php:1212 +#: mod/editpost.php:134 include/conversation.php:1212 msgid "Public post" msgstr "Publication publique" -#: mod/editpost.php:136 include/conversation.php:1199 +#: mod/editpost.php:137 include/conversation.php:1199 msgid "Set title" msgstr "Définir un titre" -#: mod/editpost.php:138 include/conversation.php:1201 +#: mod/editpost.php:139 include/conversation.php:1201 msgid "Categories (comma-separated list)" msgstr "Catégories (séparées par des virgules)" -#: mod/editpost.php:139 include/acl_selectors.php:345 +#: mod/editpost.php:140 include/acl_selectors.php:345 msgid "Example: bob@example.com, mary@example.com" msgstr "Exemple: bob@exemple.com, mary@exemple.com" @@ -5734,7 +5731,7 @@ msgstr "Informations de confidentialité indisponibles." msgid "Visible to:" msgstr "Visible par:" -#: mod/notes.php:46 include/identity.php:694 +#: mod/notes.php:46 include/identity.php:721 msgid "Personal Notes" msgstr "Notes personnelles" @@ -5891,197 +5888,197 @@ msgid "" "important, please visit http://friendica.com" msgstr "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com" -#: mod/photos.php:91 include/identity.php:669 +#: mod/photos.php:99 include/identity.php:696 msgid "Photo Albums" msgstr "Albums photo" -#: mod/photos.php:92 mod/photos.php:1891 +#: mod/photos.php:100 mod/photos.php:1899 msgid "Recent Photos" msgstr "Photos récentes" -#: mod/photos.php:95 mod/photos.php:1312 mod/photos.php:1893 +#: mod/photos.php:103 mod/photos.php:1320 mod/photos.php:1901 msgid "Upload New Photos" msgstr "Téléverser de nouvelles photos" -#: mod/photos.php:173 +#: mod/photos.php:181 msgid "Contact information unavailable" msgstr "Informations de contact indisponibles" -#: mod/photos.php:194 +#: mod/photos.php:202 msgid "Album not found." msgstr "Album introuvable." -#: mod/photos.php:224 mod/photos.php:236 mod/photos.php:1254 +#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1262 msgid "Delete Album" msgstr "Effacer l'album" -#: mod/photos.php:234 +#: mod/photos.php:242 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?" -#: mod/photos.php:314 mod/photos.php:325 mod/photos.php:1572 +#: mod/photos.php:322 mod/photos.php:333 mod/photos.php:1580 msgid "Delete Photo" msgstr "Effacer la photo" -#: mod/photos.php:323 +#: mod/photos.php:331 msgid "Do you really want to delete this photo?" msgstr "Voulez-vous vraiment supprimer cette photo ?" -#: mod/photos.php:698 +#: mod/photos.php:706 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s a été étiqueté dans %2$s par %3$s" -#: mod/photos.php:698 +#: mod/photos.php:706 msgid "a photo" msgstr "une photo" -#: mod/photos.php:811 +#: mod/photos.php:819 msgid "Image file is empty." msgstr "Fichier image vide." -#: mod/photos.php:978 +#: mod/photos.php:986 msgid "No photos selected" msgstr "Aucune photo sélectionnée" -#: mod/photos.php:1139 +#: mod/photos.php:1147 #, php-format msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos." -#: mod/photos.php:1174 +#: mod/photos.php:1182 msgid "Upload Photos" msgstr "Téléverser des photos" -#: mod/photos.php:1178 mod/photos.php:1249 +#: mod/photos.php:1186 mod/photos.php:1257 msgid "New album name: " msgstr "Nom du nouvel album: " -#: mod/photos.php:1179 +#: mod/photos.php:1187 msgid "or existing album name: " msgstr "ou nom d'un album existant: " -#: mod/photos.php:1180 +#: mod/photos.php:1188 msgid "Do not show a status post for this upload" msgstr "Ne pas publier de notice de statut pour cet envoi" -#: mod/photos.php:1182 mod/photos.php:1567 include/acl_selectors.php:347 +#: mod/photos.php:1190 mod/photos.php:1575 include/acl_selectors.php:347 msgid "Permissions" msgstr "Permissions" -#: mod/photos.php:1193 +#: mod/photos.php:1201 msgid "Private Photo" msgstr "Photo privée" -#: mod/photos.php:1194 +#: mod/photos.php:1202 msgid "Public Photo" msgstr "Photo publique" -#: mod/photos.php:1262 +#: mod/photos.php:1270 msgid "Edit Album" msgstr "Éditer l'album" -#: mod/photos.php:1268 +#: mod/photos.php:1276 msgid "Show Newest First" msgstr "Plus récent d'abord" -#: mod/photos.php:1270 +#: mod/photos.php:1278 msgid "Show Oldest First" msgstr "Plus ancien d'abord" -#: mod/photos.php:1298 mod/photos.php:1876 +#: mod/photos.php:1306 mod/photos.php:1884 msgid "View Photo" msgstr "Voir la photo" -#: mod/photos.php:1345 +#: mod/photos.php:1353 msgid "Permission denied. Access to this item may be restricted." msgstr "Interdit. L'accès à cet élément peut avoir été restreint." -#: mod/photos.php:1347 +#: mod/photos.php:1355 msgid "Photo not available" msgstr "Photo indisponible" -#: mod/photos.php:1403 +#: mod/photos.php:1411 msgid "View photo" msgstr "Voir photo" -#: mod/photos.php:1403 +#: mod/photos.php:1411 msgid "Edit photo" msgstr "Éditer la photo" -#: mod/photos.php:1404 +#: mod/photos.php:1412 msgid "Use as profile photo" msgstr "Utiliser comme photo de profil" -#: mod/photos.php:1429 +#: mod/photos.php:1437 msgid "View Full Size" msgstr "Voir en taille réelle" -#: mod/photos.php:1515 +#: mod/photos.php:1523 msgid "Tags: " msgstr "Étiquettes:" -#: mod/photos.php:1518 +#: mod/photos.php:1526 msgid "[Remove any tag]" msgstr "[Retirer toutes les étiquettes]" -#: mod/photos.php:1558 +#: mod/photos.php:1566 msgid "New album name" msgstr "Nom du nouvel album" -#: mod/photos.php:1559 +#: mod/photos.php:1567 msgid "Caption" msgstr "Titre" -#: mod/photos.php:1560 +#: mod/photos.php:1568 msgid "Add a Tag" msgstr "Ajouter une étiquette" -#: mod/photos.php:1560 +#: mod/photos.php:1568 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" -#: mod/photos.php:1561 +#: mod/photos.php:1569 msgid "Do not rotate" msgstr "" -#: mod/photos.php:1562 +#: mod/photos.php:1570 msgid "Rotate CW (right)" msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" -#: mod/photos.php:1563 +#: mod/photos.php:1571 msgid "Rotate CCW (left)" msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" -#: mod/photos.php:1578 +#: mod/photos.php:1586 msgid "Private photo" msgstr "Photo privée" -#: mod/photos.php:1579 +#: mod/photos.php:1587 msgid "Public photo" msgstr "Photo publique" -#: mod/photos.php:1601 include/conversation.php:1183 +#: mod/photos.php:1609 include/conversation.php:1183 msgid "Share" msgstr "Partager" -#: mod/photos.php:1640 include/conversation.php:509 +#: mod/photos.php:1648 include/conversation.php:509 #: include/conversation.php:1414 msgid "Attending" msgid_plural "Attending" msgstr[0] "" msgstr[1] "" -#: mod/photos.php:1640 include/conversation.php:509 +#: mod/photos.php:1648 include/conversation.php:509 msgid "Not attending" msgstr "" -#: mod/photos.php:1640 include/conversation.php:509 +#: mod/photos.php:1648 include/conversation.php:509 msgid "Might attend" msgstr "" -#: mod/photos.php:1805 +#: mod/photos.php:1813 msgid "Map" msgstr "" @@ -6141,60 +6138,60 @@ msgstr "Elément non disponible." msgid "Item was not found." msgstr "Element introuvable." -#: boot.php:771 +#: boot.php:783 msgid "Delete this item?" msgstr "Effacer cet élément?" -#: boot.php:774 +#: boot.php:786 msgid "show fewer" msgstr "montrer moins" -#: boot.php:1148 +#: boot.php:1160 #, php-format msgid "Update %s failed. See error logs." msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur." -#: boot.php:1255 +#: boot.php:1267 msgid "Create a New Account" msgstr "Créer un nouveau compte" -#: boot.php:1280 include/nav.php:72 +#: boot.php:1292 include/nav.php:72 msgid "Logout" msgstr "Se déconnecter" -#: boot.php:1283 +#: boot.php:1295 msgid "Nickname or Email address: " msgstr "Pseudo ou courriel: " -#: boot.php:1284 +#: boot.php:1296 msgid "Password: " msgstr "Mot de passe: " -#: boot.php:1285 +#: boot.php:1297 msgid "Remember me" msgstr "Se souvenir de moi" -#: boot.php:1288 +#: boot.php:1300 msgid "Or login using OpenID: " msgstr "Ou connectez-vous via OpenID: " -#: boot.php:1294 +#: boot.php:1306 msgid "Forgot your password?" msgstr "Mot de passe oublié?" -#: boot.php:1297 +#: boot.php:1309 msgid "Website Terms of Service" msgstr "Conditions d'utilisation du site internet" -#: boot.php:1298 +#: boot.php:1310 msgid "terms of service" msgstr "conditions d'utilisation" -#: boot.php:1300 +#: boot.php:1312 msgid "Website Privacy Policy" msgstr "Politique de confidentialité du site internet" -#: boot.php:1301 +#: boot.php:1313 msgid "privacy policy" msgstr "politique de confidentialité" @@ -6255,11 +6252,11 @@ msgid "" "[pre]%s[/pre]" msgstr "Le message d’erreur est\n[pre]%s[/pre]" -#: include/dbstructure.php:152 +#: include/dbstructure.php:151 msgid "Errors encountered creating database tables." msgstr "Des erreurs ont été signalées lors de la création des tables." -#: include/dbstructure.php:210 +#: include/dbstructure.php:209 msgid "Errors encountered performing database changes." msgstr "Des erreurs sont survenues lors de la mise à jour de la base de données." @@ -6342,6 +6339,13 @@ msgstr "Tout" msgid "Categories" msgstr "Catégories" +#: include/contact_widgets.php:237 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contact en commun" +msgstr[1] "%d contacts en commun" + #: include/features.php:58 msgid "General Features" msgstr "Fonctions générales" @@ -6688,12 +6692,12 @@ msgstr "secondes" msgid "%1$d %2$s ago" msgstr "%1$d %2$s auparavant" -#: include/datetime.php:474 include/items.php:2444 +#: include/datetime.php:474 include/items.php:2470 #, php-format msgid "%s's birthday" msgstr "Anniversaire de %s's" -#: include/datetime.php:475 include/items.php:2445 +#: include/datetime.php:475 include/items.php:2471 #, php-format msgid "Happy Birthday %s" msgstr "Joyeux anniversaire, %s !" @@ -6702,148 +6706,132 @@ msgstr "Joyeux anniversaire, %s !" msgid "Requested account is not available." msgstr "Le compte demandé n'est pas disponible." -#: include/identity.php:126 include/identity.php:265 include/identity.php:625 +#: include/identity.php:96 include/identity.php:281 include/identity.php:652 msgid "Edit profile" msgstr "Editer le profil" -#: include/identity.php:225 +#: include/identity.php:241 msgid "Atom feed" msgstr "" -#: include/identity.php:230 +#: include/identity.php:246 msgid "Message" msgstr "Message" -#: include/identity.php:236 include/nav.php:185 +#: include/identity.php:252 include/nav.php:185 msgid "Profiles" msgstr "Profils" -#: include/identity.php:236 +#: include/identity.php:252 msgid "Manage/edit profiles" msgstr "Gérer/éditer les profils" -#: include/identity.php:353 -msgid "Network:" -msgstr "Réseau" - -#: include/identity.php:385 include/identity.php:471 +#: include/identity.php:412 include/identity.php:498 msgid "g A l F d" msgstr "g A | F d" -#: include/identity.php:386 include/identity.php:472 +#: include/identity.php:413 include/identity.php:499 msgid "F d" msgstr "F d" -#: include/identity.php:431 include/identity.php:518 +#: include/identity.php:458 include/identity.php:545 msgid "[today]" msgstr "[aujourd'hui]" -#: include/identity.php:443 +#: include/identity.php:470 msgid "Birthday Reminders" msgstr "Rappels d'anniversaires" -#: include/identity.php:444 +#: include/identity.php:471 msgid "Birthdays this week:" msgstr "Anniversaires cette semaine:" -#: include/identity.php:505 +#: include/identity.php:532 msgid "[No description]" msgstr "[Sans description]" -#: include/identity.php:529 +#: include/identity.php:556 msgid "Event Reminders" msgstr "Rappels d'événements" -#: include/identity.php:530 +#: include/identity.php:557 msgid "Events this week:" msgstr "Evénements cette semaine :" -#: include/identity.php:558 +#: include/identity.php:585 msgid "j F, Y" msgstr "j F, Y" -#: include/identity.php:559 +#: include/identity.php:586 msgid "j F" msgstr "j F" -#: include/identity.php:566 +#: include/identity.php:593 msgid "Birthday:" msgstr "Anniversaire:" -#: include/identity.php:570 +#: include/identity.php:597 msgid "Age:" msgstr "Age:" -#: include/identity.php:579 +#: include/identity.php:606 #, php-format msgid "for %1$d %2$s" msgstr "depuis %1$d %2$s" -#: include/identity.php:592 +#: include/identity.php:619 msgid "Religion:" msgstr "Religion:" -#: include/identity.php:596 +#: include/identity.php:623 msgid "Hobbies/Interests:" msgstr "Passe-temps/Centres d'intérêt:" -#: include/identity.php:603 +#: include/identity.php:630 msgid "Contact information and Social Networks:" msgstr "Coordonnées/Réseaux sociaux:" -#: include/identity.php:605 +#: include/identity.php:632 msgid "Musical interests:" msgstr "Goûts musicaux:" -#: include/identity.php:607 +#: include/identity.php:634 msgid "Books, literature:" msgstr "Lectures:" -#: include/identity.php:609 +#: include/identity.php:636 msgid "Television:" msgstr "Télévision:" -#: include/identity.php:611 +#: include/identity.php:638 msgid "Film/dance/culture/entertainment:" msgstr "Cinéma/Danse/Culture/Divertissement:" -#: include/identity.php:613 +#: include/identity.php:640 msgid "Love/Romance:" msgstr "Amour/Romance:" -#: include/identity.php:615 +#: include/identity.php:642 msgid "Work/employment:" msgstr "Activité professionnelle/Occupation:" -#: include/identity.php:617 +#: include/identity.php:644 msgid "School/education:" msgstr "Études/Formation:" -#: include/identity.php:621 +#: include/identity.php:648 msgid "Forums:" msgstr "" -#: include/identity.php:650 include/nav.php:75 -msgid "Status" -msgstr "Statut" - -#: include/identity.php:653 -msgid "Status Messages and Posts" -msgstr "Messages d'état et publications" - -#: include/identity.php:661 -msgid "Profile Details" -msgstr "Détails du profil" - -#: include/identity.php:674 include/identity.php:677 include/nav.php:78 +#: include/identity.php:701 include/identity.php:704 include/nav.php:78 msgid "Videos" msgstr "Vidéos" -#: include/identity.php:689 include/nav.php:140 +#: include/identity.php:716 include/nav.php:140 msgid "Events and Calendar" msgstr "Événements et agenda" -#: include/identity.php:697 +#: include/identity.php:724 msgid "Only You Can See This" msgstr "Vous seul pouvez voir ça" @@ -7173,6 +7161,10 @@ msgid_plural "%d Contacts" msgstr[0] "%d contact" msgstr[1] "%d contacts" +#: include/text.php:921 +msgid "View Contacts" +msgstr "Voir les contacts" + #: include/text.php:1010 include/nav.php:121 msgid "Full Text" msgstr "" @@ -7325,15 +7317,15 @@ msgstr "" msgid "view on separate page" msgstr "" -#: include/text.php:1997 +#: include/text.php:1995 msgid "activity" msgstr "activité" -#: include/text.php:2000 +#: include/text.php:1998 msgid "post" msgstr "publication" -#: include/text.php:2168 +#: include/text.php:2166 msgid "Item filed" msgstr "Élément classé" @@ -7634,43 +7626,43 @@ msgstr "Navigation" msgid "Site map" msgstr "Carte du site" -#: include/api.php:321 include/api.php:332 include/api.php:441 -#: include/api.php:1160 include/api.php:1162 +#: include/api.php:343 include/api.php:354 include/api.php:463 +#: include/api.php:1182 include/api.php:1184 msgid "User not found." msgstr "Utilisateur non trouvé" -#: include/api.php:808 +#: include/api.php:830 #, php-format msgid "Daily posting limit of %d posts reached. The post was rejected." msgstr "Le quota journalier de %d publications a été atteint. La publication a été rejetée." -#: include/api.php:827 +#: include/api.php:849 #, php-format msgid "Weekly posting limit of %d posts reached. The post was rejected." msgstr "Le quota hebdomadaire de %d publications a été atteint. La publication a été rejetée." -#: include/api.php:846 +#: include/api.php:868 #, php-format msgid "Monthly posting limit of %d posts reached. The post was rejected." msgstr "Le quota mensuel de %d publications a été atteint. La publication a été rejetée." -#: include/api.php:1369 +#: include/api.php:1391 msgid "There is no status with this id." msgstr "Il n'y a pas de statut avec cet id." -#: include/api.php:1443 +#: include/api.php:1465 msgid "There is no conversation with this id." msgstr "Il n'y a pas de conversation avec cet id." -#: include/api.php:1722 +#: include/api.php:1744 msgid "Invalid item." msgstr "Item invalide." -#: include/api.php:1732 +#: include/api.php:1754 msgid "Invalid action. " msgstr "Action invalide." -#: include/api.php:1740 +#: include/api.php:1762 msgid "DB error" msgstr "" @@ -7792,15 +7784,15 @@ msgstr "\n\t\tVoici vos informations de connexion :\n\t\t\tAdresse :\t%3$s\n\t msgid "Sharing notification from Diaspora network" msgstr "Notification de partage du réseau Diaspora" -#: include/diaspora.php:2574 +#: include/diaspora.php:2606 msgid "Attachments:" msgstr "Pièces jointes : " -#: include/items.php:4871 +#: include/items.php:4897 msgid "Do you really want to delete this item?" msgstr "Voulez-vous vraiment supprimer cet élément ?" -#: include/items.php:5146 +#: include/items.php:5172 msgid "Archives" msgstr "Archives" diff --git a/view/fr/strings.php b/view/fr/strings.php index 95642eb3b2..6ebfd5dbba 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -5,6 +5,8 @@ function string_plural_select_fr($n){ return ($n > 1);; }} ; +$a->strings["Network:"] = "Réseau"; +$a->strings["Forum"] = "Forum"; $a->strings["%d contact edited."] = array( 0 => "%d contact édité", 1 => "%d contacts édités.", @@ -33,28 +35,11 @@ $a->strings["(Update was successful)"] = "(Mise à jour effectuée avec succès) $a->strings["(Update was not successful)"] = "(Échec de la mise à jour)"; $a->strings["Suggest friends"] = "Suggérer amitié/contact"; $a->strings["Network type: %s"] = "Type de réseau %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d contact en commun", - 1 => "%d contacts en commun", -); -$a->strings["View all contacts"] = "Voir tous les contacts"; -$a->strings["Unblock"] = "Débloquer"; -$a->strings["Block"] = "Bloquer"; -$a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\""; -$a->strings["Unignore"] = "Ne plus ignorer"; -$a->strings["Ignore"] = "Ignorer"; -$a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\""; -$a->strings["Unarchive"] = "Désarchiver"; -$a->strings["Archive"] = "Archiver"; -$a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\""; -$a->strings["Repair"] = "Réparer"; -$a->strings["Advanced Contact Settings"] = "Réglages avancés du contact"; $a->strings["Communications lost with this contact!"] = "Communications perdues avec ce contact !"; $a->strings["Fetch further information for feeds"] = "Chercher plus d'informations pour les flux"; $a->strings["Disabled"] = "Désactivé"; $a->strings["Fetch information"] = "Récupérer informations"; $a->strings["Fetch information and keywords"] = "Récupérer informations"; -$a->strings["Contact Editor"] = "Éditeur de contact"; $a->strings["Submit"] = "Envoyer"; $a->strings["Profile Visibility"] = "Visibilité du profil"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée."; @@ -70,6 +55,10 @@ $a->strings["Last update:"] = "Dernière mise-à-jour :"; $a->strings["Update public posts"] = "Mettre à jour les publications publiques:"; $a->strings["Update now"] = "Mettre à jour"; $a->strings["Connect/Follow"] = "Connecter/Suivre"; +$a->strings["Unblock"] = "Débloquer"; +$a->strings["Block"] = "Bloquer"; +$a->strings["Unignore"] = "Ne plus ignorer"; +$a->strings["Ignore"] = "Ignorer"; $a->strings["Currently blocked"] = "Actuellement bloqué"; $a->strings["Currently ignored"] = "Actuellement ignoré"; $a->strings["Currently archived"] = "Actuellement archivé"; @@ -80,6 +69,9 @@ $a->strings["Send a notification of every new post of this contact"] = "Envoyer $a->strings["Blacklisted keywords"] = "Mots-clés sur la liste noire"; $a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand « Récupérer informations et mots-clés » est sélectionné."; $a->strings["Profile URL"] = "URL du Profil"; +$a->strings["Location:"] = "Localisation:"; +$a->strings["About:"] = "À propos:"; +$a->strings["Tags:"] = "Étiquette:"; $a->strings["Suggestions"] = "Suggestions"; $a->strings["Suggest potential friends"] = "Suggérer des amis potentiels"; $a->strings["All Contacts"] = "Tous les contacts"; @@ -99,7 +91,21 @@ $a->strings["Search your contacts"] = "Rechercher dans vos contacts"; $a->strings["Finding: "] = "Trouvé: "; $a->strings["Find"] = "Trouver"; $a->strings["Update"] = "Mises-à-jour"; +$a->strings["Archive"] = "Archiver"; +$a->strings["Unarchive"] = "Désarchiver"; $a->strings["Delete"] = "Supprimer"; +$a->strings["Status"] = "Statut"; +$a->strings["Status Messages and Posts"] = "Messages d'état et publications"; +$a->strings["Profile"] = "Profil"; +$a->strings["Profile Details"] = "Détails du profil"; +$a->strings["View all contacts"] = "Voir tous les contacts"; +$a->strings["Common Friends"] = "Amis communs"; +$a->strings["View all common friends"] = ""; +$a->strings["Repair"] = "Réparer"; +$a->strings["Advanced Contact Settings"] = "Réglages avancés du contact"; +$a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\""; +$a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\""; +$a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\""; $a->strings["Mutual Friendship"] = "Relation réciproque"; $a->strings["is a fan of yours"] = "Vous suit"; $a->strings["you are a fan of"] = "Vous le/la suivez"; @@ -112,7 +118,6 @@ $a->strings["Post successful."] = "Publication réussie."; $a->strings["Permission denied"] = "Permission refusée"; $a->strings["Invalid profile identifier."] = "Identifiant de profil invalide."; $a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil"; -$a->strings["Profile"] = "Profil"; $a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer."; $a->strings["Visible To"] = "Visible par"; $a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)"; @@ -185,12 +190,12 @@ $a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément"; $a->strings["Select a tag to remove: "] = "Sélectionner une étiquette à supprimer: "; $a->strings["Remove"] = "Utiliser comme photo de profil"; $a->strings["Subsribing to OStatus contacts"] = ""; -$a->strings["No contact provided."] = ""; -$a->strings["Couldn't fetch information for contact."] = ""; -$a->strings["Couldn't fetch friends for contact."] = ""; -$a->strings["Done"] = ""; -$a->strings["success"] = ""; -$a->strings["failed"] = ""; +$a->strings["No contact provided."] = "Pas de contact fourni."; +$a->strings["Couldn't fetch information for contact."] = "Impossible de récupérer les informations pour ce contact."; +$a->strings["Couldn't fetch friends for contact."] = "Impossible de récupérer les amis de ce contact."; +$a->strings["Done"] = "Terminé"; +$a->strings["success"] = "réussite"; +$a->strings["failed"] = "échec"; $a->strings["ignored"] = "ignoré"; $a->strings["Keep this window open until done."] = "Veuillez garder cette fenêtre ouverte jusqu'à la fin."; $a->strings["Save to Folder:"] = "Sauver dans le Dossier:"; @@ -206,9 +211,6 @@ $a->strings["Does %s know you?"] = "Est-ce que %s vous connaît?"; $a->strings["No"] = "Non"; $a->strings["Add a personal note:"] = "Ajouter une note personnelle:"; $a->strings["Your Identity Address:"] = "Votre adresse d'identité:"; -$a->strings["Location:"] = "Localisation:"; -$a->strings["About:"] = "À propos:"; -$a->strings["Tags:"] = "Étiquette:"; $a->strings["Contact added"] = "Contact ajouté"; $a->strings["Unable to locate original post."] = "Impossible de localiser la publication originale."; $a->strings["Empty post discarded."] = "Publication vide rejetée."; @@ -229,6 +231,7 @@ $a->strings["Group removed."] = "Groupe enlevé."; $a->strings["Unable to remove group."] = "Impossible d'enlever le groupe."; $a->strings["Group Editor"] = "Éditeur de groupe"; $a->strings["Members"] = "Membres"; +$a->strings["Group is empty"] = "Groupe vide"; $a->strings["You must be logged in to use addons. "] = "Vous devez être connecté pour utiliser les greffons."; $a->strings["Applications"] = "Applications"; $a->strings["No installed applications."] = "Pas d'application installée."; @@ -297,8 +300,6 @@ $a->strings["{0} wants to be your friend"] = "{0} souhaite être votre ami(e)"; $a->strings["{0} sent you a message"] = "{0} vous a envoyé un message"; $a->strings["{0} requested registration"] = "{0} a demandé à s'inscrire"; $a->strings["No contacts."] = "Aucun contact."; -$a->strings["Forum"] = "Forum"; -$a->strings["View Contacts"] = "Voir les contacts"; $a->strings["Invalid request identifier."] = "Identifiant de demande invalide."; $a->strings["Discard"] = "Rejeter"; $a->strings["System"] = "Système"; @@ -394,7 +395,6 @@ $a->strings["Please use your browser 'Back' button now if you a $a->strings["No mirroring"] = "Pas de miroir"; $a->strings["Mirror as forwarded posting"] = ""; $a->strings["Mirror as my own posting"] = ""; -$a->strings["Repair Contact Settings"] = "Réglages de réparation des contacts"; $a->strings["Return to contact editor"] = "Retour à l'éditeur de contact"; $a->strings["Refetch contact data"] = "Récupérer à nouveau les données de contact"; $a->strings["Name"] = "Nom"; @@ -428,7 +428,7 @@ $a->strings["Themes"] = "Thèmes"; $a->strings["DB updates"] = "Mise-à-jour de la base"; $a->strings["Inspect Queue"] = "Inspecter la file d'attente"; $a->strings["Logs"] = "Journaux"; -$a->strings["probe address"] = ""; +$a->strings["probe address"] = "Tester une adresse"; $a->strings["check webfinger"] = "vérification de webfinger"; $a->strings["Admin"] = "Admin"; $a->strings["Plugin Features"] = "Propriétés des extensions"; @@ -493,7 +493,7 @@ $a->strings["The email address your server shall use to send notification emails $a->strings["Banner/Logo"] = "Bannière/Logo"; $a->strings["Shortcut icon"] = "Icône de raccourci"; $a->strings["Link to an icon that will be used for browsers."] = "Lien vers une icône qui sera utilisée pour les navigateurs."; -$a->strings["Touch icon"] = ""; +$a->strings["Touch icon"] = "Icône pour systèmes tactiles"; $a->strings["Link to an icon that will be used for tablets and mobiles."] = "Lien vers une icône qui sera utilisée pour les tablettes et les mobiles."; $a->strings["Additional Info"] = "Informations supplémentaires"; $a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "Pour les serveurs publics : vous pouvez ajouter des informations supplémentaires ici, qui figureront dans %s/siteinfo."; @@ -595,14 +595,14 @@ $a->strings["Timeframe for fetching global contacts"] = ""; $a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = ""; $a->strings["Search the local directory"] = ""; $a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = ""; -$a->strings["Publish server information"] = ""; -$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = ""; +$a->strings["Publish server information"] = "Publier les informations du serveur"; +$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details."] = "Si cette option est activée, des informations sur le serveur et son utilisation seront publiées. Ces informations incluent le nom et la version du serveur, le nombre d’utilisateurs avec des profils publics, le nombre de messages, les protocoles supportés et les connecteurs disponibles. Plus de détails sur the-federation.info."; $a->strings["Use MySQL full text engine"] = "Utiliser le moteur de recherche plein texte de MySQL"; $a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus."; $a->strings["Suppress Language"] = "Supprimer un langage"; $a->strings["Suppress language information in meta information about a posting."] = "Supprimer les informations de langue dans les métadonnées des publications."; -$a->strings["Suppress Tags"] = ""; -$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; +$a->strings["Suppress Tags"] = "Masquer les tags"; +$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Ne pas afficher la liste des hashtags à la fin d’un message."; $a->strings["Path to item cache"] = "Chemin vers le cache des objets."; $a->strings["The item caches buffers generated bbcode and external images."] = ""; $a->strings["Cache duration in seconds"] = "Durée du cache en secondes"; @@ -623,8 +623,8 @@ $a->strings["Only search in tags"] = ""; $a->strings["On large systems the text search can slow down the system extremely."] = ""; $a->strings["New base url"] = "Nouvelle URL de base"; $a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = ""; -$a->strings["RINO Encryption"] = ""; -$a->strings["Encryption layer between nodes."] = ""; +$a->strings["RINO Encryption"] = "Chiffrement RINO"; +$a->strings["Encryption layer between nodes."] = "Couche de chiffrement entre les nœuds du réseau."; $a->strings["Embedly API key"] = ""; $a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = ""; $a->strings["Update has been marked successful"] = "Mise-à-jour validée comme 'réussie'"; @@ -683,10 +683,10 @@ $a->strings["Enable"] = "Activer"; $a->strings["Toggle"] = "Activer/Désactiver"; $a->strings["Author: "] = "Auteur: "; $a->strings["Maintainer: "] = "Mainteneur: "; -$a->strings["Reload active plugins"] = ""; +$a->strings["Reload active plugins"] = "Recharger les extensions actives"; $a->strings["No themes found."] = "Aucun thème trouvé."; $a->strings["Screenshot"] = "Capture d'écran"; -$a->strings["Reload active themes"] = ""; +$a->strings["Reload active themes"] = "Recharger les thèmes actifs"; $a->strings["[Experimental]"] = "[Expérimental]"; $a->strings["[Unsupported]"] = "[Non supporté]"; $a->strings["Log settings updated."] = "Réglages des journaux mis-à-jour."; @@ -721,12 +721,10 @@ $a->strings["Warning: This group contains %s member from an insecure network."] ); $a->strings["Private messages to this group are at risk of public disclosure."] = "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée."; $a->strings["No such group"] = "Groupe inexistant"; -$a->strings["Group is empty"] = "Groupe vide"; $a->strings["Group: %s"] = ""; $a->strings["Private messages to this person are at risk of public disclosure."] = "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée."; $a->strings["Invalid contact."] = "Contact invalide."; $a->strings["No friends to display."] = "Pas d'amis à afficher."; -$a->strings["Friends of %s"] = "Amis de %s"; $a->strings["Event can not end before it has started."] = ""; $a->strings["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement."; $a->strings["Sun"] = "Dim"; @@ -896,8 +894,8 @@ $a->strings["Note: as a security measure, you should give the web server write a $a->strings["view/smarty3 is writable"] = "view/smarty3 est autorisé à l écriture"; $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur."; $a->strings["Url rewrite is working"] = "La réécriture d'URL fonctionne."; -$a->strings["ImageMagick PHP extension is installed"] = ""; -$a->strings["ImageMagick supports GIF"] = ""; +$a->strings["ImageMagick PHP extension is installed"] = "L’extension PHP ImageMagick est installée"; +$a->strings["ImageMagick supports GIF"] = "ImageMagick supporte le format GIF"; $a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement."; $a->strings["

What next

"] = "

Ensuite

"; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le \"poller\"."; @@ -913,7 +911,7 @@ $a->strings["%1\$s welcomes %2\$s"] = "%1\$s accueille %2\$s"; $a->strings["Welcome to %s"] = "Bienvenue sur %s"; $a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise"; $a->strings["Or - did you try to upload an empty file?"] = "Ou — auriez-vous essayé de télécharger un fichier vide ?"; -$a->strings["File exceeds size limit of %s"] = ""; +$a->strings["File exceeds size limit of %s"] = "La taille du fichier dépasse la limite de %s"; $a->strings["File upload failed."] = "Le téléversement a échoué."; $a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."; $a->strings["is interested in:"] = "s'intéresse à :"; @@ -996,7 +994,7 @@ $a->strings["Display Settings"] = "Affichage"; $a->strings["Display Theme:"] = "Thème d'affichage:"; $a->strings["Mobile Theme:"] = "Thème mobile:"; $a->strings["Update browser every xx seconds"] = "Mettre-à-jour l'affichage toutes les xx secondes"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Délai minimum de 10 secondes, pas de maximum"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; $a->strings["Number of items to display per page:"] = "Nombre d’éléments par page:"; $a->strings["Maximum of 100 items"] = "Maximum de 100 éléments"; $a->strings["Number of items to display per page when viewed from mobile device:"] = "Nombre d'éléments a afficher par page pour un appareil mobile"; @@ -1031,7 +1029,7 @@ $a->strings["Allow friends to tag your posts?"] = "Autoriser vos amis à étique $a->strings["Allow us to suggest you as a potential friend to new members?"] = "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?"; $a->strings["Permit unknown people to send you private mail?"] = "Autoriser les messages privés d'inconnus?"; $a->strings["Profile is not published."] = "Ce profil n'est pas publié."; -$a->strings["Your Identity Address is '%s' or '%s'."] = ""; +$a->strings["Your Identity Address is '%s' or '%s'."] = "L’adresse de votre identité est '%s' or '%s'."; $a->strings["Automatically expire posts after this many days:"] = "Les publications expirent automatiquement après (en jours) :"; $a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées"; $a->strings["Advanced expiration settings"] = "Réglages avancés de l'expiration"; @@ -1121,7 +1119,7 @@ $a->strings["Hide this contact"] = "Cacher ce contact"; $a->strings["Welcome home %s."] = "Bienvenue chez vous, %s."; $a->strings["Please confirm your introduction/connection request to %s."] = "Merci de confirmer votre demande d'introduction auprès de %s."; $a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = ""; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Si vous n’êtes pas encore membre du web social libre, suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd’hui."; $a->strings["Friend/Connection Request"] = "Requête de relation/amitié"; $a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; $a->strings["Friendica"] = "Friendica"; @@ -1129,7 +1127,7 @@ $a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web" $a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de recherche Diaspora."; $a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions."; $a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:
identifiant : %s
mot de passe : %s

Vous pourrez changer votre mot de passe une fois connecté."; -$a->strings["Registration successful."] = ""; +$a->strings["Registration successful."] = "Inscription réussie."; $a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée."; $a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site."; $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."; @@ -1139,7 +1137,7 @@ $a->strings["Your OpenID (optional): "] = "Votre OpenID (facultatif): "; $a->strings["Include your profile in member directory?"] = "Inclure votre profil dans l'annuaire des membres?"; $a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation."; $a->strings["Your invitation ID: "] = "Votre ID d'invitation: "; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Votre nom complet (p. ex. Michel Dupont):"; $a->strings["Your Email Address: "] = "Votre adresse courriel: "; $a->strings["Leave empty for an auto generated password."] = ""; $a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@\$sitename</strong>'."; @@ -1154,8 +1152,6 @@ $a->strings["Only one search per minute is permitted for not logged in users."] $a->strings["Search"] = "Recherche"; $a->strings["Items tagged with: %s"] = ""; $a->strings["Search results for: %s"] = ""; -$a->strings["Age: "] = "Age : "; -$a->strings["Gender: "] = "Genre : "; $a->strings["Status:"] = "Statut:"; $a->strings["Homepage:"] = "Page personnelle:"; $a->strings["Global Directory"] = "Annuaire global"; @@ -1172,7 +1168,6 @@ $a->strings["Potential Delegates"] = "Délégataires potentiels"; $a->strings["Add"] = "Ajouter"; $a->strings["No entries."] = "Aucune entrée."; $a->strings["No contacts in common."] = "Pas de contacts en commun."; -$a->strings["Common Friends"] = "Amis communs"; $a->strings["Export account"] = "Exporter le compte"; $a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur."; $a->strings["Export all"] = "Tout exporter"; @@ -1259,6 +1254,7 @@ $a->strings["Love/romance"] = "Amour / Romance"; $a->strings["Work/employment"] = "Activité professionnelle / Occupation"; $a->strings["School/education"] = "Études / Formation"; $a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Ceci est votre profil public.
Il peut être visible par n'importe quel utilisateur d'Internet."; +$a->strings["Age: "] = "Age : "; $a->strings["Edit/Manage Profiles"] = "Editer / gérer les profils"; $a->strings["Change profile photo"] = "Changer de photo de profil"; $a->strings["Create New Profile"] = "Créer un nouveau profil"; @@ -1445,6 +1441,10 @@ $a->strings["All Networks"] = "Tous réseaux"; $a->strings["Saved Folders"] = "Dossiers sauvegardés"; $a->strings["Everything"] = "Tout"; $a->strings["Categories"] = "Catégories"; +$a->strings["%d contact in common"] = array( + 0 => "%d contact en commun", + 1 => "%d contacts en commun", +); $a->strings["General Features"] = "Fonctions générales"; $a->strings["Multiple Profiles"] = "Profils multiples"; $a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils"; @@ -1536,7 +1536,6 @@ $a->strings["Atom feed"] = ""; $a->strings["Message"] = "Message"; $a->strings["Profiles"] = "Profils"; $a->strings["Manage/edit profiles"] = "Gérer/éditer les profils"; -$a->strings["Network:"] = "Réseau"; $a->strings["g A l F d"] = "g A | F d"; $a->strings["F d"] = "F d"; $a->strings["[today]"] = "[aujourd'hui]"; @@ -1561,9 +1560,6 @@ $a->strings["Love/Romance:"] = "Amour/Romance:"; $a->strings["Work/employment:"] = "Activité professionnelle/Occupation:"; $a->strings["School/education:"] = "Études/Formation:"; $a->strings["Forums:"] = ""; -$a->strings["Status"] = "Statut"; -$a->strings["Status Messages and Posts"] = "Messages d'état et publications"; -$a->strings["Profile Details"] = "Détails du profil"; $a->strings["Videos"] = "Vidéos"; $a->strings["Events and Calendar"] = "Événements et agenda"; $a->strings["Only You Can See This"] = "Vous seul pouvez voir ça"; @@ -1654,6 +1650,7 @@ $a->strings["%d Contact"] = array( 0 => "%d contact", 1 => "%d contacts", ); +$a->strings["View Contacts"] = "Voir les contacts"; $a->strings["Full Text"] = ""; $a->strings["Tags"] = ""; $a->strings["poke"] = "titiller"; From 9640eb7c817530ceb85e0ae67f8a7d8927524c35 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 14 Dec 2015 16:56:40 +0100 Subject: [PATCH 36/52] IT update to the strings --- view/it/messages.po | 14616 +++++++++++++++++++++--------------------- view/it/strings.php | 2228 +++---- 2 files changed, 8639 insertions(+), 8205 deletions(-) diff --git a/view/it/messages.po b/view/it/messages.po index efe44618a7..5f0129fb0a 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-22 09:58+0200\n" -"PO-Revision-Date: 2015-10-06 17:43+0000\n" -"Last-Translator: Sandro Santilli \n" +"POT-Creation-Date: 2015-12-14 07:48+0100\n" +"PO-Revision-Date: 2015-12-14 13:05+0000\n" +"Last-Translator: fabrixxm \n" "Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,3333 +25,345 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: object/Item.php:95 -msgid "This entry was edited" -msgstr "Questa voce è stata modificata" - -#: object/Item.php:117 mod/photos.php:1379 mod/content.php:622 -msgid "Private Message" -msgstr "Messaggio privato" - -#: object/Item.php:121 mod/settings.php:694 mod/content.php:730 -msgid "Edit" -msgstr "Modifica" - -#: object/Item.php:130 mod/photos.php:1672 mod/content.php:439 -#: mod/content.php:742 include/conversation.php:612 -msgid "Select" -msgstr "Seleziona" - -#: object/Item.php:131 mod/admin.php:1087 mod/photos.php:1673 -#: mod/contacts.php:801 mod/settings.php:695 mod/group.php:171 -#: mod/content.php:440 mod/content.php:743 include/conversation.php:613 -msgid "Delete" -msgstr "Rimuovi" - -#: object/Item.php:134 mod/content.php:765 -msgid "save to folder" -msgstr "salva nella cartella" - -#: object/Item.php:196 mod/content.php:755 -msgid "add star" -msgstr "aggiungi a speciali" - -#: object/Item.php:197 mod/content.php:756 -msgid "remove star" -msgstr "rimuovi da speciali" - -#: object/Item.php:198 mod/content.php:757 -msgid "toggle star status" -msgstr "Inverti stato preferito" - -#: object/Item.php:201 mod/content.php:760 -msgid "starred" -msgstr "preferito" - -#: object/Item.php:209 -msgid "ignore thread" -msgstr "ignora la discussione" - -#: object/Item.php:210 -msgid "unignore thread" -msgstr "non ignorare la discussione" - -#: object/Item.php:211 -msgid "toggle ignore status" -msgstr "inverti stato \"Ignora\"" - -#: object/Item.php:214 mod/ostatus_subscribe.php:69 -msgid "ignored" -msgstr "ignorato" - -#: object/Item.php:221 mod/content.php:761 -msgid "add tag" -msgstr "aggiungi tag" - -#: object/Item.php:232 mod/photos.php:1561 mod/content.php:686 -msgid "I like this (toggle)" -msgstr "Mi piace (clic per cambiare)" - -#: object/Item.php:232 mod/content.php:686 -msgid "like" -msgstr "mi piace" - -#: object/Item.php:233 mod/photos.php:1562 mod/content.php:687 -msgid "I don't like this (toggle)" -msgstr "Non mi piace (clic per cambiare)" - -#: object/Item.php:233 mod/content.php:687 -msgid "dislike" -msgstr "non mi piace" - -#: object/Item.php:235 mod/content.php:689 -msgid "Share this" -msgstr "Condividi questo" - -#: object/Item.php:235 mod/content.php:689 -msgid "share" -msgstr "condividi" - -#: object/Item.php:318 include/conversation.php:665 -msgid "Categories:" -msgstr "Categorie:" - -#: object/Item.php:319 include/conversation.php:666 -msgid "Filed under:" -msgstr "Archiviato in:" - -#: object/Item.php:328 object/Item.php:329 mod/content.php:473 -#: mod/content.php:854 mod/content.php:855 include/conversation.php:653 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" - -#: object/Item.php:330 mod/content.php:856 -msgid "to" -msgstr "a" - -#: object/Item.php:331 -msgid "via" -msgstr "via" - -#: object/Item.php:332 mod/content.php:857 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" - -#: object/Item.php:333 mod/content.php:858 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca" - -#: object/Item.php:342 mod/content.php:483 mod/content.php:866 -#: include/conversation.php:673 -#, php-format -msgid "%s from %s" -msgstr "%s da %s" - -#: object/Item.php:363 object/Item.php:679 mod/photos.php:1583 -#: mod/photos.php:1627 mod/photos.php:1715 mod/content.php:711 boot.php:764 -msgid "Comment" -msgstr "Commento" - -#: object/Item.php:366 mod/message.php:335 mod/message.php:566 -#: mod/editpost.php:124 mod/wallmessage.php:156 mod/photos.php:1564 -#: mod/content.php:501 mod/content.php:885 include/conversation.php:691 -#: include/conversation.php:1074 -msgid "Please wait" -msgstr "Attendi" - -#: object/Item.php:389 mod/content.php:605 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" - -#: object/Item.php:391 object/Item.php:404 mod/content.php:607 -#: include/text.php:2038 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "commento" - -#: object/Item.php:392 mod/content.php:608 boot.php:765 include/items.php:5147 -#: include/contact_widgets.php:205 -msgid "show more" -msgstr "mostra di più" - -#: object/Item.php:677 mod/photos.php:1581 mod/photos.php:1625 -#: mod/photos.php:1713 mod/content.php:709 -msgid "This is you" -msgstr "Questo sei tu" - -#: object/Item.php:680 mod/fsuggest.php:107 mod/message.php:336 -#: mod/message.php:565 mod/events.php:511 mod/photos.php:1104 -#: mod/photos.php:1223 mod/photos.php:1533 mod/photos.php:1584 -#: mod/photos.php:1628 mod/photos.php:1716 mod/contacts.php:596 -#: mod/invite.php:140 mod/profiles.php:683 mod/manage.php:110 mod/poke.php:199 -#: mod/localtime.php:45 mod/install.php:250 mod/install.php:288 -#: mod/content.php:712 mod/mood.php:137 mod/crepair.php:191 -#: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148 -#: view/theme/vier/config.php:56 view/theme/dispy/config.php:70 -#: view/theme/duepuntozero/config.php:59 view/theme/quattro/config.php:64 -#: view/theme/cleanzero/config.php:80 -msgid "Submit" -msgstr "Invia" - -#: object/Item.php:681 mod/content.php:713 -msgid "Bold" -msgstr "Grassetto" - -#: object/Item.php:682 mod/content.php:714 -msgid "Italic" -msgstr "Corsivo" - -#: object/Item.php:683 mod/content.php:715 -msgid "Underline" -msgstr "Sottolineato" - -#: object/Item.php:684 mod/content.php:716 -msgid "Quote" -msgstr "Citazione" - -#: object/Item.php:685 mod/content.php:717 -msgid "Code" -msgstr "Codice" - -#: object/Item.php:686 mod/content.php:718 -msgid "Image" -msgstr "Immagine" - -#: object/Item.php:687 mod/content.php:719 -msgid "Link" -msgstr "Link" - -#: object/Item.php:688 mod/content.php:720 -msgid "Video" -msgstr "Video" - -#: object/Item.php:689 mod/editpost.php:145 mod/events.php:509 -#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 -#: mod/content.php:721 include/conversation.php:1089 -msgid "Preview" -msgstr "Anteprima" - -#: index.php:225 mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "Devi aver effettuato il login per usare gli addons." - -#: index.php:269 mod/help.php:42 mod/p.php:16 mod/p.php:25 -msgid "Not Found" -msgstr "Non trovato" - -#: index.php:272 mod/help.php:45 -msgid "Page not found." -msgstr "Pagina non trovata." - -#: index.php:381 mod/profperm.php:19 mod/group.php:72 -msgid "Permission denied" -msgstr "Permesso negato" - -#: index.php:382 mod/fsuggest.php:78 mod/files.php:170 -#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 -#: mod/editpost.php:10 mod/dfrn_confirm.php:55 mod/events.php:164 -#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 -#: mod/wallmessage.php:103 mod/nogroup.php:25 mod/wall_upload.php:70 -#: mod/wall_upload.php:71 mod/api.php:26 mod/api.php:31 mod/photos.php:156 -#: mod/photos.php:1072 mod/register.php:42 mod/attach.php:33 -#: mod/contacts.php:350 mod/follow.php:9 mod/follow.php:44 mod/follow.php:83 -#: mod/uimport.php:23 mod/allfriends.php:9 mod/invite.php:15 -#: mod/invite.php:101 mod/settings.php:20 mod/settings.php:116 -#: mod/settings.php:619 mod/display.php:508 mod/profiles.php:165 -#: mod/profiles.php:615 mod/wall_attach.php:60 mod/wall_attach.php:61 -#: mod/suggest.php:58 mod/repair_ostatus.php:9 mod/manage.php:96 -#: mod/delegate.php:12 mod/viewcontacts.php:24 mod/notes.php:20 -#: mod/poke.php:135 mod/ostatus_subscribe.php:9 mod/profile_photo.php:19 -#: mod/profile_photo.php:169 mod/profile_photo.php:180 -#: mod/profile_photo.php:193 mod/group.php:19 mod/regmod.php:110 -#: mod/item.php:170 mod/item.php:186 mod/mood.php:114 mod/network.php:4 -#: mod/crepair.php:120 include/items.php:5036 -msgid "Permission denied." -msgstr "Permesso negato." - -#: index.php:441 -msgid "toggle mobile" -msgstr "commuta tema mobile" - -#: mod/update_notes.php:37 mod/update_profile.php:41 -#: mod/update_community.php:18 mod/update_network.php:25 -#: mod/update_display.php:22 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" - -#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/dfrn_confirm.php:120 -#: mod/crepair.php:134 -msgid "Contact not found." -msgstr "Contatto non trovato." - -#: mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggerimento di amicizia inviato." - -#: mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggerisci amici" - -#: mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerisci un amico a %s" - -#: mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Questa presentazione è già stata accettata." - -#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." - -#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." - -#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Attenzione: l'indirizzo del profilo non ha una foto." - -#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato" -msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" - -#: mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Presentazione completa." - -#: mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Errore di comunicazione." - -#: mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profilo non disponibile." - -#: mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s ha ricevuto troppe richieste di connessione per oggi." - -#: mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Sono state attivate le misure di protezione contro lo spam." - -#: mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Gli amici sono pregati di riprovare tra 24 ore." - -#: mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Invalid locator" - -#: mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Indirizzo email non valido." - -#: mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Questo account non è stato configurato per l'email. Richiesta fallita." - -#: mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Impossibile risolvere il tuo nome nella posizione indicata." - -#: mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Ti sei già presentato qui." - -#: mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Pare che tu e %s siate già amici." - -#: mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Indirizzo profilo non valido." - -#: mod/dfrn_request.php:507 include/follow.php:70 -msgid "Disallowed profile URL." -msgstr "Indirizzo profilo non permesso." - -#: mod/dfrn_request.php:576 mod/contacts.php:194 -msgid "Failed to update contact record." -msgstr "Errore nell'aggiornamento del contatto." - -#: mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "La tua presentazione è stata inviata." - -#: mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Accedi per confermare la presentazione." - -#: mod/dfrn_request.php:660 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." - -#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 -msgid "Confirm" -msgstr "Conferma" - -#: mod/dfrn_request.php:686 -msgid "Hide this contact" -msgstr "Nascondi questo contatto" - -#: mod/dfrn_request.php:689 -#, php-format -msgid "Welcome home %s." -msgstr "Bentornato a casa %s." - -#: mod/dfrn_request.php:690 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Conferma la tua richiesta di connessione con %s." - -#: mod/dfrn_request.php:732 mod/dfrn_confirm.php:753 include/items.php:4250 -msgid "[Name Withheld]" -msgstr "[Nome Nascosto]" - -#: mod/dfrn_request.php:777 mod/photos.php:942 mod/videos.php:187 -#: mod/search.php:93 mod/search.php:98 mod/display.php:223 -#: mod/community.php:18 mod/viewcontacts.php:19 mod/directory.php:35 -msgid "Public access denied." -msgstr "Accesso negato." - -#: mod/dfrn_request.php:819 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:" - -#: mod/dfrn_request.php:840 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " -"join us today." -msgstr "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi" - -#: mod/dfrn_request.php:845 -msgid "Friend/Connection Request" -msgstr "Richieste di amicizia/connessione" - -#: mod/dfrn_request.php:846 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: mod/dfrn_request.php:847 mod/follow.php:58 -msgid "Please answer the following:" -msgstr "Rispondi:" - -#: mod/dfrn_request.php:848 mod/follow.php:59 -#, php-format -msgid "Does %s know you?" -msgstr "%s ti conosce?" - -#: mod/dfrn_request.php:848 mod/api.php:106 mod/register.php:236 -#: mod/follow.php:59 mod/settings.php:1068 mod/settings.php:1074 -#: mod/settings.php:1082 mod/settings.php:1086 mod/settings.php:1091 -#: mod/settings.php:1097 mod/settings.php:1103 mod/settings.php:1109 -#: mod/settings.php:1135 mod/settings.php:1136 mod/settings.php:1137 -#: mod/settings.php:1138 mod/settings.php:1139 mod/profiles.php:658 -#: mod/profiles.php:662 -msgid "No" -msgstr "No" - -#: mod/dfrn_request.php:848 mod/message.php:210 mod/api.php:105 -#: mod/register.php:235 mod/contacts.php:441 mod/follow.php:59 -#: mod/settings.php:1068 mod/settings.php:1074 mod/settings.php:1082 -#: mod/settings.php:1086 mod/settings.php:1091 mod/settings.php:1097 -#: mod/settings.php:1103 mod/settings.php:1109 mod/settings.php:1135 -#: mod/settings.php:1136 mod/settings.php:1137 mod/settings.php:1138 -#: mod/settings.php:1139 mod/profiles.php:658 mod/profiles.php:661 -#: mod/suggest.php:29 include/items.php:4868 -msgid "Yes" -msgstr "Si" - -#: mod/dfrn_request.php:852 mod/follow.php:60 -msgid "Add a personal note:" -msgstr "Aggiungi una nota personale:" - -#: mod/dfrn_request.php:854 include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:855 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: mod/dfrn_request.php:856 mod/settings.php:793 -#: include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: mod/dfrn_request.php:857 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora." - -#: mod/dfrn_request.php:858 mod/follow.php:66 -msgid "Your Identity Address:" -msgstr "L'indirizzo della tua identità:" - -#: mod/dfrn_request.php:861 mod/follow.php:69 -msgid "Submit Request" -msgstr "Invia richiesta" - -#: mod/dfrn_request.php:862 mod/message.php:213 mod/editpost.php:148 -#: mod/fbrowser.php:89 mod/fbrowser.php:125 mod/photos.php:225 -#: mod/photos.php:314 mod/contacts.php:444 mod/videos.php:121 -#: mod/follow.php:70 mod/tagrm.php:11 mod/tagrm.php:94 mod/settings.php:633 -#: mod/settings.php:659 mod/suggest.php:32 include/items.php:4871 -#: include/conversation.php:1093 -msgid "Cancel" -msgstr "Annulla" - -#: mod/files.php:156 mod/videos.php:373 include/text.php:1460 -msgid "View Video" -msgstr "Guarda Video" - -#: mod/profile.php:21 include/identity.php:77 -msgid "Requested profile is not available." -msgstr "Profilo richiesto non disponibile." - -#: mod/profile.php:155 mod/display.php:343 -msgid "Access to this profile has been restricted." -msgstr "L'accesso a questo profilo è stato limitato." - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Consigli per i Nuovi Utenti" - -#: mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." - -#: mod/notifications.php:35 mod/notifications.php:175 -#: mod/notifications.php:234 -msgid "Discard" -msgstr "Scarta" - -#: mod/notifications.php:51 mod/notifications.php:174 -#: mod/notifications.php:233 mod/contacts.php:556 mod/contacts.php:623 -#: mod/contacts.php:799 -msgid "Ignore" -msgstr "Ignora" - -#: mod/notifications.php:78 -msgid "System" -msgstr "Sistema" - -#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 -msgid "Network" -msgstr "Rete" - -#: mod/notifications.php:90 mod/network.php:375 -msgid "Personal" -msgstr "Personale" - -#: mod/notifications.php:96 view/theme/diabook/theme.php:123 -#: include/nav.php:105 include/nav.php:156 -msgid "Home" -msgstr "Home" - -#: mod/notifications.php:102 include/nav.php:161 -msgid "Introductions" -msgstr "Presentazioni" - -#: mod/notifications.php:127 -msgid "Show Ignored Requests" -msgstr "Mostra richieste ignorate" - -#: mod/notifications.php:127 -msgid "Hide Ignored Requests" -msgstr "Nascondi richieste ignorate" - -#: mod/notifications.php:159 mod/notifications.php:209 -msgid "Notification type: " -msgstr "Tipo di notifica: " - -#: mod/notifications.php:160 -msgid "Friend Suggestion" -msgstr "Amico suggerito" - -#: mod/notifications.php:162 -#, php-format -msgid "suggested by %s" -msgstr "sugerito da %s" - -#: mod/notifications.php:167 mod/notifications.php:227 mod/contacts.php:629 -msgid "Hide this contact from others" -msgstr "Nascondi questo contatto agli altri" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "Post a new friend activity" -msgstr "Invia una attività \"è ora amico con\"" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "if applicable" -msgstr "se applicabile" - -#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1085 -msgid "Approve" -msgstr "Approva" - -#: mod/notifications.php:191 -msgid "Claims to be known to you: " -msgstr "Dice di conoscerti: " - -#: mod/notifications.php:191 -msgid "yes" -msgstr "si" - -#: mod/notifications.php:191 -msgid "no" -msgstr "no" - -#: mod/notifications.php:192 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " -msgstr "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Fan/Ammiratore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:" - -#: mod/notifications.php:195 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " -msgstr "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Condivisore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:" - -#: mod/notifications.php:203 -msgid "Friend" -msgstr "Amico" - -#: mod/notifications.php:204 -msgid "Sharer" -msgstr "Condivisore" - -#: mod/notifications.php:204 -msgid "Fan/Admirer" -msgstr "Fan/Ammiratore" - -#: mod/notifications.php:210 -msgid "Friend/Connect Request" -msgstr "Richiesta amicizia/connessione" - -#: mod/notifications.php:210 -msgid "New Follower" -msgstr "Qualcuno inizia a seguirti" - -#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 -#: mod/directory.php:152 include/event.php:42 include/identity.php:268 -#: include/bb2diaspora.php:170 -msgid "Location:" -msgstr "Posizione:" - -#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 -#: include/identity.php:582 -msgid "About:" -msgstr "Informazioni:" - -#: mod/notifications.php:224 include/identity.php:576 -msgid "Tags:" -msgstr "Tag:" - -#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 -#: include/identity.php:541 -msgid "Gender:" -msgstr "Genere:" - -#: mod/notifications.php:240 -msgid "No introductions." -msgstr "Nessuna presentazione." - -#: mod/notifications.php:243 include/nav.php:164 -msgid "Notifications" -msgstr "Notifiche" - -#: mod/notifications.php:281 mod/notifications.php:410 -#: mod/notifications.php:501 -#, php-format -msgid "%s liked %s's post" -msgstr "a %s è piaciuto il messaggio di %s" - -#: mod/notifications.php:291 mod/notifications.php:420 -#: mod/notifications.php:511 -#, php-format -msgid "%s disliked %s's post" -msgstr "a %s non è piaciuto il messaggio di %s" - -#: mod/notifications.php:306 mod/notifications.php:435 -#: mod/notifications.php:526 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s è ora amico di %s" - -#: mod/notifications.php:313 mod/notifications.php:442 -#, php-format -msgid "%s created a new post" -msgstr "%s a creato un nuovo messaggio" - -#: mod/notifications.php:314 mod/notifications.php:443 -#: mod/notifications.php:536 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s ha commentato il messaggio di %s" - -#: mod/notifications.php:329 -msgid "No more network notifications." -msgstr "Nessuna nuova." - -#: mod/notifications.php:333 -msgid "Network Notifications" -msgstr "Notifiche dalla rete" - -#: mod/notifications.php:359 mod/notify.php:72 -msgid "No more system notifications." -msgstr "Nessuna nuova notifica di sistema." - -#: mod/notifications.php:363 mod/notify.php:76 -msgid "System Notifications" -msgstr "Notifiche di sistema" - -#: mod/notifications.php:458 -msgid "No more personal notifications." -msgstr "Nessuna nuova." - -#: mod/notifications.php:462 -msgid "Personal Notifications" -msgstr "Notifiche personali" - -#: mod/notifications.php:543 -msgid "No more home notifications." -msgstr "Nessuna nuova." - -#: mod/notifications.php:547 -msgid "Home Notifications" -msgstr "Notifiche bacheca" - -#: mod/like.php:149 mod/tagger.php:62 mod/subthread.php:87 -#: view/theme/diabook/theme.php:471 include/text.php:2034 -#: include/diaspora.php:2134 include/conversation.php:126 -#: include/conversation.php:253 -msgid "photo" -msgstr "foto" - -#: mod/like.php:149 mod/like.php:319 mod/tagger.php:62 mod/subthread.php:87 -#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 -#: include/diaspora.php:2134 include/conversation.php:121 -#: include/conversation.php:130 include/conversation.php:248 -#: include/conversation.php:257 -msgid "status" -msgstr "stato" - -#: mod/like.php:166 view/theme/diabook/theme.php:480 include/diaspora.php:2150 -#: include/conversation.php:137 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" - -#: mod/like.php:168 include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" - -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Errore protocollo OpenID. Nessun ID ricevuto." - -#: mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito." - -#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 -msgid "Login failed." -msgstr "Accesso fallito." - -#: mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Testo sorgente (bbcode):" - -#: mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:" - -#: mod/babel.php:31 -msgid "Source input: " -msgstr "Sorgente:" - -#: mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (HTML grezzo):" - -#: mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html:" - -#: mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Sorgente (formato Diaspora):" - -#: mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Impostazioni del tema aggiornate." - -#: mod/admin.php:104 mod/admin.php:687 -msgid "Site" -msgstr "Sito" - -#: mod/admin.php:105 mod/admin.php:633 mod/admin.php:1078 mod/admin.php:1093 -msgid "Users" -msgstr "Utenti" - -#: mod/admin.php:106 mod/admin.php:1182 mod/admin.php:1242 mod/settings.php:66 -msgid "Plugins" -msgstr "Plugin" - -#: mod/admin.php:107 mod/admin.php:1410 mod/admin.php:1444 -msgid "Themes" -msgstr "Temi" - -#: mod/admin.php:108 -msgid "DB updates" -msgstr "Aggiornamenti Database" - -#: mod/admin.php:109 mod/admin.php:200 -msgid "Inspect Queue" -msgstr "Ispeziona Coda di invio" - -#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1531 -msgid "Logs" -msgstr "Log" - -#: mod/admin.php:125 -msgid "probe address" -msgstr "controlla indirizzo" - -#: mod/admin.php:126 -msgid "check webfinger" -msgstr "verifica webfinger" - -#: mod/admin.php:131 include/nav.php:193 -msgid "Admin" -msgstr "Amministrazione" - -#: mod/admin.php:132 -msgid "Plugin Features" -msgstr "Impostazioni Plugins" - -#: mod/admin.php:134 -msgid "diagnostics" -msgstr "diagnostiche" - -#: mod/admin.php:135 -msgid "User registrations waiting for confirmation" -msgstr "Utenti registrati in attesa di conferma" - -#: mod/admin.php:173 mod/admin.php:1132 mod/admin.php:1352 mod/notice.php:15 -#: mod/display.php:82 mod/display.php:295 mod/display.php:512 -#: mod/viewsrc.php:15 include/items.php:4827 -msgid "Item not found." -msgstr "Elemento non trovato." - -#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:686 mod/admin.php:1077 -#: mod/admin.php:1181 mod/admin.php:1241 mod/admin.php:1409 mod/admin.php:1443 -#: mod/admin.php:1530 -msgid "Administration" -msgstr "Amministrazione" - -#: mod/admin.php:202 -msgid "ID" -msgstr "ID" - -#: mod/admin.php:203 -msgid "Recipient Name" -msgstr "Nome Destinatario" - -#: mod/admin.php:204 -msgid "Recipient Profile" -msgstr "Profilo Destinatario" - -#: mod/admin.php:206 -msgid "Created" -msgstr "Creato" - -#: mod/admin.php:207 -msgid "Last Tried" -msgstr "Ultimo Tentativo" - -#: mod/admin.php:208 -msgid "" -"This page lists the content of the queue for outgoing postings. These are " -"postings the initial delivery failed for. They will be resend later and " -"eventually deleted if the delivery fails permanently." -msgstr "Questa pagina elenca il contenuto della coda di invo dei post. Questi sono post la cui consegna è fallita. Verranno reinviati più tardi ed eventualmente cancellati se la consegna continua a fallire." - -#: mod/admin.php:220 mod/admin.php:1031 -msgid "Normal Account" -msgstr "Account normale" - -#: mod/admin.php:221 mod/admin.php:1032 -msgid "Soapbox Account" -msgstr "Account per comunicati e annunci" - -#: mod/admin.php:222 mod/admin.php:1033 -msgid "Community/Celebrity Account" -msgstr "Account per celebrità o per comunità" - -#: mod/admin.php:223 mod/admin.php:1034 -msgid "Automatic Friend Account" -msgstr "Account per amicizia automatizzato" - -#: mod/admin.php:224 -msgid "Blog Account" -msgstr "Account Blog" - -#: mod/admin.php:225 -msgid "Private Forum" -msgstr "Forum Privato" - -#: mod/admin.php:244 -msgid "Message queues" -msgstr "Code messaggi" - -#: mod/admin.php:250 -msgid "Summary" -msgstr "Sommario" - -#: mod/admin.php:252 -msgid "Registered users" -msgstr "Utenti registrati" - -#: mod/admin.php:254 -msgid "Pending registrations" -msgstr "Registrazioni in attesa" - -#: mod/admin.php:255 -msgid "Version" -msgstr "Versione" - -#: mod/admin.php:260 -msgid "Active plugins" -msgstr "Plugin attivi" - -#: mod/admin.php:283 -msgid "Can not parse base url. Must have at least ://" -msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]" - -#: mod/admin.php:556 -msgid "RINO2 needs mcrypt php extension to work." -msgstr "" - -#: mod/admin.php:564 -msgid "Site settings updated." -msgstr "Impostazioni del sito aggiornate." - -#: mod/admin.php:599 mod/settings.php:885 -msgid "No special theme for mobile devices" -msgstr "Nessun tema speciale per i dispositivi mobili" - -#: mod/admin.php:616 -msgid "No community page" -msgstr "Nessuna pagina Comunità" - -#: mod/admin.php:617 -msgid "Public postings from users of this site" -msgstr "Messaggi pubblici dagli utenti di questo sito" - -#: mod/admin.php:618 -msgid "Global community page" -msgstr "Pagina Comunità globale" - -#: mod/admin.php:623 mod/contacts.php:526 -msgid "Never" -msgstr "Mai" - -#: mod/admin.php:624 -msgid "At post arrival" -msgstr "All'arrivo di un messaggio" - -#: mod/admin.php:625 include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frequentemente" - -#: mod/admin.php:626 include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Ogni ora" - -#: mod/admin.php:627 include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Due volte al dì" - -#: mod/admin.php:628 include/contact_selectors.php:59 -msgid "Daily" -msgstr "Giornalmente" - -#: mod/admin.php:632 mod/contacts.php:585 -msgid "Disabled" -msgstr "Disabilitato" - -#: mod/admin.php:634 -msgid "Users, Global Contacts" -msgstr "Utenti, Contatti Globali" - -#: mod/admin.php:635 -msgid "Users, Global Contacts/fallback" -msgstr "Utenti, Contatti Globali/fallback" - -#: mod/admin.php:639 -msgid "One month" -msgstr "Un mese" - -#: mod/admin.php:640 -msgid "Three months" -msgstr "Tre mesi" - -#: mod/admin.php:641 -msgid "Half a year" -msgstr "Sei mesi" - -#: mod/admin.php:642 -msgid "One year" -msgstr "Un anno" - -#: mod/admin.php:647 -msgid "Multi user instance" -msgstr "Istanza multi utente" - -#: mod/admin.php:670 -msgid "Closed" -msgstr "Chiusa" - -#: mod/admin.php:671 -msgid "Requires approval" -msgstr "Richiede l'approvazione" - -#: mod/admin.php:672 -msgid "Open" -msgstr "Aperta" - -#: mod/admin.php:676 -msgid "No SSL policy, links will track page SSL state" -msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina" - -#: mod/admin.php:677 -msgid "Force all links to use SSL" -msgstr "Forza tutti i linki ad usare SSL" - -#: mod/admin.php:678 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)" - -#: mod/admin.php:688 mod/admin.php:1243 mod/admin.php:1445 mod/admin.php:1532 -#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:786 -#: mod/settings.php:855 mod/settings.php:937 mod/settings.php:1167 -msgid "Save Settings" -msgstr "Salva Impostazioni" - -#: mod/admin.php:689 mod/register.php:260 -msgid "Registration" -msgstr "Registrazione" - -#: mod/admin.php:690 -msgid "File upload" -msgstr "Caricamento file" - -#: mod/admin.php:691 -msgid "Policies" -msgstr "Politiche" - -#: mod/admin.php:692 -msgid "Advanced" -msgstr "Avanzate" - -#: mod/admin.php:693 -msgid "Auto Discovered Contact Directory" -msgstr "Elenco Contatti Scoperto Automaticamente" - -#: mod/admin.php:694 -msgid "Performance" -msgstr "Performance" - -#: mod/admin.php:695 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile." - -#: mod/admin.php:698 -msgid "Site name" -msgstr "Nome del sito" - -#: mod/admin.php:699 -msgid "Host name" -msgstr "Nome host" - -#: mod/admin.php:700 -msgid "Sender Email" -msgstr "Mittente email" - -#: mod/admin.php:700 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "L'indirizzo email che il tuo server dovrà usare per inviare notifiche via email." - -#: mod/admin.php:701 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: mod/admin.php:702 -msgid "Shortcut icon" -msgstr "Icona shortcut" - -#: mod/admin.php:702 -msgid "Link to an icon that will be used for browsers." -msgstr "Link verso un'icona che verrà usata dai browsers." - -#: mod/admin.php:703 -msgid "Touch icon" -msgstr "Icona touch" - -#: mod/admin.php:703 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "Link verso un'icona che verrà usata dai tablet e i telefonini." - -#: mod/admin.php:704 -msgid "Additional Info" -msgstr "Informazioni aggiuntive" - -#: mod/admin.php:704 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/siteinfo." -msgstr "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su %s/siteinfo." - -#: mod/admin.php:705 -msgid "System language" -msgstr "Lingua di sistema" - -#: mod/admin.php:706 -msgid "System theme" -msgstr "Tema di sistema" - -#: mod/admin.php:706 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema" - -#: mod/admin.php:707 -msgid "Mobile system theme" -msgstr "Tema mobile di sistema" - -#: mod/admin.php:707 -msgid "Theme for mobile devices" -msgstr "Tema per dispositivi mobili" - -#: mod/admin.php:708 -msgid "SSL link policy" -msgstr "Gestione link SSL" - -#: mod/admin.php:708 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determina se i link generati devono essere forzati a usare SSL" - -#: mod/admin.php:709 -msgid "Force SSL" -msgstr "Forza SSL" - -#: mod/admin.php:709 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "Forza tutte le richieste non SSL su SSL - Attenzione: su alcuni sistemi puo' portare a loop senza fine" - -#: mod/admin.php:710 -msgid "Old style 'Share'" -msgstr "Ricondivisione vecchio stile" - -#: mod/admin.php:710 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti" - -#: mod/admin.php:711 -msgid "Hide help entry from navigation menu" -msgstr "Nascondi la voce 'Guida' dal menu di navigazione" - -#: mod/admin.php:711 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente." - -#: mod/admin.php:712 -msgid "Single user instance" -msgstr "Instanza a singolo utente" - -#: mod/admin.php:712 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato" - -#: mod/admin.php:713 -msgid "Maximum image size" -msgstr "Massima dimensione immagini" - -#: mod/admin.php:713 -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:714 -msgid "Maximum image length" -msgstr "Massima lunghezza immagine" - -#: mod/admin.php:714 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite." - -#: mod/admin.php:715 -msgid "JPEG image quality" -msgstr "Qualità immagini JPEG" - -#: mod/admin.php:715 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena." - -#: mod/admin.php:717 -msgid "Register policy" -msgstr "Politica di registrazione" - -#: mod/admin.php:718 -msgid "Maximum Daily Registrations" -msgstr "Massime registrazioni giornaliere" - -#: mod/admin.php:718 -msgid "" -"If registration is permitted above, this sets the maximum number of new user" -" registrations to accept per day. If register is set to closed, this " -"setting has no effect." -msgstr "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto." - -#: mod/admin.php:719 -msgid "Register text" -msgstr "Testo registrazione" - -#: mod/admin.php:719 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." - -#: mod/admin.php:720 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo x giorni" - -#: mod/admin.php:720 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo." - -#: mod/admin.php:721 -msgid "Allowed friend domains" -msgstr "Domini amici consentiti" - -#: mod/admin.php:721 -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 virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." - -#: mod/admin.php:722 -msgid "Allowed email domains" -msgstr "Domini email consentiti" - -#: mod/admin.php:722 -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 a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." - -#: mod/admin.php:723 -msgid "Block public" -msgstr "Blocca pagine pubbliche" - -#: mod/admin.php:723 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato." - -#: mod/admin.php:724 -msgid "Force publish" -msgstr "Forza publicazione" - -#: mod/admin.php:724 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito." - -#: mod/admin.php:725 -msgid "Global directory URL" -msgstr "URL della directory globale" - -#: mod/admin.php:725 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "" - -#: mod/admin.php:726 -msgid "Allow threaded items" -msgstr "Permetti commenti nidificati" - -#: mod/admin.php:726 -msgid "Allow infinite level threading for items on this site." -msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito." - -#: mod/admin.php:727 -msgid "Private posts by default for new users" -msgstr "Post privati di default per i nuovi utenti" - -#: mod/admin.php:727 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici." - -#: mod/admin.php:728 -msgid "Don't include post content in email notifications" -msgstr "Non includere il contenuto dei post nelle notifiche via email" - -#: mod/admin.php:728 -msgid "" -"Don't include the content of a post/comment/private message/etc. in the " -"email notifications that are sent out from this site, as a privacy measure." -msgstr "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy" - -#: mod/admin.php:729 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps." - -#: mod/admin.php:729 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Selezionando questo box si limiterà ai soli membri l'accesso agli addon nel menu applicazioni" - -#: mod/admin.php:730 -msgid "Don't embed private images in posts" -msgstr "Non inglobare immagini private nei post" - -#: mod/admin.php:730 -msgid "" -"Don't replace locally-hosted private photos in posts with an embedded copy " -"of the image. This means that contacts who receive posts containing private " -"photos will have to authenticate and load each image, which may take a " -"while." -msgstr "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che puo' richiedere un po' di tempo." - -#: mod/admin.php:731 -msgid "Allow Users to set remote_self" -msgstr "Permetti agli utenti di impostare 'io remoto'" - -#: mod/admin.php:731 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." -msgstr "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream del'utente." - -#: mod/admin.php:732 -msgid "Block multiple registrations" -msgstr "Blocca registrazioni multiple" - -#: mod/admin.php:732 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Non permette all'utente di registrare account extra da usare come pagine." - -#: mod/admin.php:733 -msgid "OpenID support" -msgstr "Supporto OpenID" - -#: mod/admin.php:733 -msgid "OpenID support for registration and logins." -msgstr "Supporta OpenID per la registrazione e il login" - -#: mod/admin.php:734 -msgid "Fullname check" -msgstr "Controllo nome completo" - -#: mod/admin.php:734 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam" - -#: mod/admin.php:735 -msgid "UTF-8 Regular expressions" -msgstr "Espressioni regolari UTF-8" - -#: mod/admin.php:735 -msgid "Use PHP UTF8 regular expressions" -msgstr "Usa le espressioni regolari PHP in UTF8" - -#: mod/admin.php:736 -msgid "Community Page Style" -msgstr "Stile pagina Comunità" - -#: mod/admin.php:736 -msgid "" -"Type of community page to show. 'Global community' shows every public " -"posting from an open distributed network that arrived on this server." -msgstr "Tipo di pagina Comunità da mostrare. 'Comunità Globale' mostra tutti i messaggi pubblici arrivati su questo server da network aperti distribuiti." - -#: mod/admin.php:737 -msgid "Posts per user on community page" -msgstr "Messaggi per utente nella pagina Comunità" - -#: mod/admin.php:737 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "Il numero massimo di messaggi per utente mostrato nella pagina Comuntà (non valido per 'Comunità globale')" - -#: mod/admin.php:738 -msgid "Enable OStatus support" -msgstr "Abilita supporto OStatus" - -#: mod/admin.php:738 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente." - -#: mod/admin.php:739 -msgid "OStatus conversation completion interval" -msgstr "Intervallo completamento conversazioni OStatus" - -#: mod/admin.php:739 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse." - -#: mod/admin.php:740 -msgid "Enable Diaspora support" -msgstr "Abilita il supporto a Diaspora" - -#: mod/admin.php:740 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Fornisce compatibilità con il network Diaspora." - -#: mod/admin.php:741 -msgid "Only allow Friendica contacts" -msgstr "Permetti solo contatti Friendica" - -#: mod/admin.php:741 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati." - -#: mod/admin.php:742 -msgid "Verify SSL" -msgstr "Verifica SSL" - -#: mod/admin.php:742 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you" -" cannot connect (at all) to self-signed SSL sites." -msgstr "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati." - -#: mod/admin.php:743 -msgid "Proxy user" -msgstr "Utente Proxy" - -#: mod/admin.php:744 -msgid "Proxy URL" -msgstr "URL Proxy" - -#: mod/admin.php:745 -msgid "Network timeout" -msgstr "Timeout rete" - -#: mod/admin.php:745 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)." - -#: mod/admin.php:746 -msgid "Delivery interval" -msgstr "Intervallo di invio" - -#: mod/admin.php:746 -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 "Ritarda il processo di invio in background di n secondi per ridurre il carico di sistema. Raccomandato: 4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati." - -#: mod/admin.php:747 -msgid "Poll interval" -msgstr "Intervallo di poll" - -#: mod/admin.php:747 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio." - -#: mod/admin.php:748 -msgid "Maximum Load Average" -msgstr "Massimo carico medio" - -#: mod/admin.php:748 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50." - -#: mod/admin.php:749 -msgid "Maximum Load Average (Frontend)" -msgstr "Media Massimo Carico (Frontend)" - -#: mod/admin.php:749 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Massimo carico di sistema prima che il frontend fermi il servizio - default 50." - -#: mod/admin.php:751 -msgid "Periodical check of global contacts" -msgstr "Check periodico dei contatti globali" - -#: mod/admin.php:751 -msgid "" -"If enabled, the global contacts are checked periodically for missing or " -"outdated data and the vitality of the contacts and servers." -msgstr "Se abilitato, i contatti globali sono controllati periodicamente per verificare dati mancanti o sorpassati e la vitaltà dei contatti e dei server." - -#: mod/admin.php:752 -msgid "Days between requery" -msgstr "" - -#: mod/admin.php:752 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "" - -#: mod/admin.php:753 -msgid "Discover contacts from other servers" -msgstr "Trova contatti dagli altri server" - -#: mod/admin.php:753 -msgid "" -"Periodically query other servers for contacts. You can choose between " -"'users': the users on the remote system, 'Global Contacts': active contacts " -"that are known on the system. The fallback is meant for Redmatrix servers " -"and older friendica servers, where global contacts weren't available. The " -"fallback increases the server load, so the recommened setting is 'Users, " -"Global Contacts'." -msgstr "Richiede periodicamente contatti agli altri server. Puoi scegliere tra 'utenti', gli uenti sul sistema remoto, o 'contatti globali', i contatti attivi che sono conosciuti dal sistema. Il fallback è pensato per i server Redmatrix e i vecchi server Friendica, dove i contatti globali non sono disponibili. Il fallback incrementa il carico di sistema, per cui l'impostazione consigliata è \"Utenti, Contatti Globali\"." - -#: mod/admin.php:754 -msgid "Timeframe for fetching global contacts" -msgstr "Termine per il recupero contatti globali" - -#: mod/admin.php:754 -msgid "" -"When the discovery is activated, this value defines the timeframe for the " -"activity of the global contacts that are fetched from other servers." -msgstr "Quando si attiva la scoperta, questo valore definisce il periodo di tempo per l'attività dei contatti globali che vengono prelevati da altri server." - -#: mod/admin.php:755 -msgid "Search the local directory" -msgstr "Cerca la directory locale" - -#: mod/admin.php:755 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "Cerca nella directory locale invece che nella directory globale. Durante la ricerca a livello locale, ogni ricerca verrà eseguita sulla directory globale in background. Ciò migliora i risultati della ricerca quando la ricerca viene ripetuta." - -#: mod/admin.php:757 -msgid "Publish server information" -msgstr "Pubblica informazioni server" - -#: mod/admin.php:757 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "Se abilitata, saranno pubblicati i dati generali del server e i dati di utilizzo. I dati contengono il nome e la versione del server, il numero di utenti con profili pubblici, numero dei posti e dei protocolli e connettori attivati. Per informazioni, vedere the-federation.info ." - -#: mod/admin.php:759 -msgid "Use MySQL full text engine" -msgstr "Usa il motore MySQL full text" - -#: mod/admin.php:759 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri." - -#: mod/admin.php:760 -msgid "Suppress Language" -msgstr "Disattiva lingua" - -#: mod/admin.php:760 -msgid "Suppress language information in meta information about a posting." -msgstr "Disattiva le informazioni sulla lingua nei meta di un post." - -#: mod/admin.php:761 -msgid "Suppress Tags" -msgstr "Sopprimi Tags" - -#: mod/admin.php:761 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Non mostra la lista di hashtag in coda al messaggio" - -#: mod/admin.php:762 -msgid "Path to item cache" -msgstr "Percorso cache elementi" - -#: mod/admin.php:762 -msgid "The item caches buffers generated bbcode and external images." -msgstr "La cache degli elementi memorizza il bbcode generato e le immagini esterne." - -#: mod/admin.php:763 -msgid "Cache duration in seconds" -msgstr "Durata della cache in secondi" - -#: mod/admin.php:763 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno). Per disabilitare la cache, imposta il valore a -1." - -#: mod/admin.php:764 -msgid "Maximum numbers of comments per post" -msgstr "Numero massimo di commenti per post" - -#: mod/admin.php:764 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "Quanti commenti devono essere mostrati per ogni post? Default : 100." - -#: mod/admin.php:765 -msgid "Path for lock file" -msgstr "Percorso al file di lock" - -#: mod/admin.php:765 -msgid "" -"The lock file is used to avoid multiple pollers at one time. Only define a " -"folder here." -msgstr "Il file di lock è usato per evitare l'avvio di poller multipli allo stesso tempo. Inserisci solo la cartella, qui." - -#: mod/admin.php:766 -msgid "Temp path" -msgstr "Percorso file temporanei" - -#: mod/admin.php:766 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "Se si dispone di un sistema ristretto in cui il server web non può accedere al percorso temporaneo di sistema, inserire un altro percorso qui." - -#: mod/admin.php:767 -msgid "Base path to installation" -msgstr "Percorso base all'installazione" - -#: mod/admin.php:767 -msgid "" -"If the system cannot detect the correct path to your installation, enter the" -" correct path here. This setting should only be set if you are using a " -"restricted system and symbolic links to your webroot." -msgstr "Se il sistema non è in grado di rilevare il percorso corretto per l'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot." - -#: mod/admin.php:768 -msgid "Disable picture proxy" -msgstr "Disabilita il proxy immagini" - -#: mod/admin.php:768 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "Il proxy immagini aumenta le performace e la privacy. Non dovrebbe essere usato su server con poca banda disponibile." - -#: mod/admin.php:769 -msgid "Enable old style pager" -msgstr "Abilita la paginazione vecchio stile" - -#: mod/admin.php:769 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "La paginazione vecchio stile mostra i numeri delle pagine, ma rallenta la velocità di caricamento della pagina." - -#: mod/admin.php:770 -msgid "Only search in tags" -msgstr "Cerca solo nei tag" - -#: mod/admin.php:770 -msgid "On large systems the text search can slow down the system extremely." -msgstr "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema." - -#: mod/admin.php:772 -msgid "New base url" -msgstr "Nuovo url base" - -#: mod/admin.php:772 -msgid "" -"Change base url for this server. Sends relocate message to all DFRN contacts" -" of all users." -msgstr "Cambia l'url base di questo server. Invia il messaggio di trasloco a tutti i contatti DFRN di tutti gli utenti." - -#: mod/admin.php:774 -msgid "RINO Encryption" -msgstr "Crittografia RINO" - -#: mod/admin.php:774 -msgid "Encryption layer between nodes." -msgstr "Crittografia delle comunicazioni tra nodi." - -#: mod/admin.php:775 -msgid "Embedly API key" -msgstr "Embedly API key" - -#: mod/admin.php:775 -msgid "" -"Embedly is used to fetch additional data for " -"web pages. This is an optional parameter." -msgstr "Embedly è usato per recuperate informazioni addizionali dalle pagine web. Questo parametro è opzionale." - -#: mod/admin.php:793 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato segnato come di successo" - -#: mod/admin.php:801 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Aggiornamento struttura database %s applicata con successo." - -#: mod/admin.php:804 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "Aggiornamento struttura database %s fallita con errore: %s" - -#: mod/admin.php:816 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Esecuzione di %s fallita con errore: %s" - -#: mod/admin.php:819 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è stato applicato con successo" - -#: mod/admin.php:823 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine." - -#: mod/admin.php:825 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "Non ci sono altre funzioni di aggiornamento %s da richiamare." - -#: mod/admin.php:844 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." - -#: mod/admin.php:845 -msgid "Check database structure" -msgstr "Controlla struttura database" - -#: mod/admin.php:850 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti" - -#: mod/admin.php:851 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato." - -#: mod/admin.php:852 -msgid "Mark success (if update was manually applied)" -msgstr "Segna completato (se l'update è stato applicato manualmente)" - -#: mod/admin.php:853 -msgid "Attempt to execute this update step automatically" -msgstr "Cerco di eseguire questo aggiornamento in automatico" - -#: mod/admin.php:885 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "\nGentile %1$s,\n l'amministratore di %2$s ha impostato un account per te." - -#: mod/admin.php:888 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %4$s" - -#: mod/admin.php:920 include/user.php:421 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" - -#: mod/admin.php:932 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s utente bloccato/sbloccato" -msgstr[1] "%s utenti bloccati/sbloccati" - -#: mod/admin.php:939 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s utente cancellato" -msgstr[1] "%s utenti cancellati" - -#: mod/admin.php:978 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' cancellato" - -#: mod/admin.php:986 -#, php-format -msgid "User '%s' unblocked" -msgstr "Utente '%s' sbloccato" - -#: mod/admin.php:986 -#, php-format -msgid "User '%s' blocked" -msgstr "Utente '%s' bloccato" - -#: mod/admin.php:1079 -msgid "Add User" -msgstr "Aggiungi utente" - -#: mod/admin.php:1080 -msgid "select all" -msgstr "seleziona tutti" - -#: mod/admin.php:1081 -msgid "User registrations waiting for confirm" -msgstr "Richieste di registrazione in attesa di conferma" - -#: mod/admin.php:1082 -msgid "User waiting for permanent deletion" -msgstr "Utente in attesa di cancellazione definitiva" - -#: mod/admin.php:1083 -msgid "Request date" -msgstr "Data richiesta" - -#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1109 -#: mod/settings.php:634 mod/settings.php:660 mod/crepair.php:170 -msgid "Name" -msgstr "Nome" - -#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1111 -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -msgid "Email" -msgstr "Email" - -#: mod/admin.php:1084 -msgid "No registrations." -msgstr "Nessuna registrazione." - -#: mod/admin.php:1086 -msgid "Deny" -msgstr "Nega" - -#: mod/admin.php:1088 mod/contacts.php:549 mod/contacts.php:622 -#: mod/contacts.php:798 -msgid "Block" -msgstr "Blocca" - -#: mod/admin.php:1089 mod/contacts.php:549 mod/contacts.php:622 -#: mod/contacts.php:798 -msgid "Unblock" -msgstr "Sblocca" - -#: mod/admin.php:1090 -msgid "Site admin" -msgstr "Amministrazione sito" - -#: mod/admin.php:1091 -msgid "Account expired" -msgstr "Account scaduto" - -#: mod/admin.php:1094 -msgid "New User" -msgstr "Nuovo Utente" - -#: mod/admin.php:1095 mod/admin.php:1096 -msgid "Register date" -msgstr "Data registrazione" - -#: mod/admin.php:1095 mod/admin.php:1096 -msgid "Last login" -msgstr "Ultimo accesso" - -#: mod/admin.php:1095 mod/admin.php:1096 -msgid "Last item" -msgstr "Ultimo elemento" - -#: mod/admin.php:1095 -msgid "Deleted since" -msgstr "Rimosso da" - -#: mod/admin.php:1096 mod/settings.php:41 -msgid "Account" -msgstr "Account" - -#: mod/admin.php:1098 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" - -#: mod/admin.php:1099 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?" - -#: mod/admin.php:1109 -msgid "Name of the new user." -msgstr "Nome del nuovo utente." - -#: mod/admin.php:1110 -msgid "Nickname" -msgstr "Nome utente" - -#: mod/admin.php:1110 -msgid "Nickname of the new user." -msgstr "Nome utente del nuovo utente." - -#: mod/admin.php:1111 -msgid "Email address of the new user." -msgstr "Indirizzo Email del nuovo utente." - -#: mod/admin.php:1144 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s disabilitato." - -#: mod/admin.php:1148 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s abilitato." - -#: mod/admin.php:1158 mod/admin.php:1381 -msgid "Disable" -msgstr "Disabilita" - -#: mod/admin.php:1160 mod/admin.php:1383 -msgid "Enable" -msgstr "Abilita" - -#: mod/admin.php:1183 mod/admin.php:1411 -msgid "Toggle" -msgstr "Inverti" - -#: mod/admin.php:1184 mod/admin.php:1412 mod/newmember.php:22 -#: mod/settings.php:99 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:648 include/nav.php:181 -msgid "Settings" -msgstr "Impostazioni" - -#: mod/admin.php:1191 mod/admin.php:1421 -msgid "Author: " -msgstr "Autore: " - -#: mod/admin.php:1192 mod/admin.php:1422 -msgid "Maintainer: " -msgstr "Manutentore: " - -#: mod/admin.php:1341 -msgid "No themes found." -msgstr "Nessun tema trovato." - -#: mod/admin.php:1403 -msgid "Screenshot" -msgstr "Anteprima" - -#: mod/admin.php:1449 -msgid "[Experimental]" -msgstr "[Sperimentale]" - -#: mod/admin.php:1450 -msgid "[Unsupported]" -msgstr "[Non supportato]" - -#: mod/admin.php:1477 -msgid "Log settings updated." -msgstr "Impostazioni Log aggiornate." - -#: mod/admin.php:1533 -msgid "Clear" -msgstr "Pulisci" - -#: mod/admin.php:1539 -msgid "Enable Debugging" -msgstr "Abilita Debugging" - -#: mod/admin.php:1540 -msgid "Log file" -msgstr "File di Log" - -#: mod/admin.php:1540 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica." - -#: mod/admin.php:1541 -msgid "Log level" -msgstr "Livello di Log" - -#: mod/admin.php:1590 mod/contacts.php:619 -msgid "Update now" -msgstr "Aggiorna adesso" - -#: mod/admin.php:1591 include/acl_selectors.php:347 -msgid "Close" -msgstr "Chiudi" - -#: mod/admin.php:1597 -msgid "FTP Host" -msgstr "Indirizzo FTP" - -#: mod/admin.php:1598 -msgid "FTP Path" -msgstr "Percorso FTP" - -#: mod/admin.php:1599 -msgid "FTP User" -msgstr "Utente FTP" - -#: mod/admin.php:1600 -msgid "FTP Password" -msgstr "Pasword FTP" - -#: mod/message.php:9 include/nav.php:173 -msgid "New Message" -msgstr "Nuovo messaggio" - -#: mod/message.php:64 mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Nessun destinatario selezionato." - -#: mod/message.php:68 -msgid "Unable to locate contact information." -msgstr "Impossibile trovare le informazioni del contatto." - -#: mod/message.php:71 mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Il messaggio non puo' essere inviato." - -#: mod/message.php:74 mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Errore recuperando il messaggio." - -#: mod/message.php:77 mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Messaggio inviato." - -#: mod/message.php:183 include/nav.php:170 -msgid "Messages" -msgstr "Messaggi" - -#: mod/message.php:208 -msgid "Do you really want to delete this message?" -msgstr "Vuoi veramente cancellare questo messaggio?" - -#: mod/message.php:228 -msgid "Message deleted." -msgstr "Messaggio eliminato." - -#: mod/message.php:259 -msgid "Conversation removed." -msgstr "Conversazione rimossa." - -#: mod/message.php:284 mod/message.php:292 mod/message.php:467 -#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135 -#: include/conversation.php:1001 include/conversation.php:1019 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" - -#: mod/message.php:320 mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" - -#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 -msgid "To:" -msgstr "A:" - -#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Oggetto:" - -#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 -#: mod/invite.php:134 -msgid "Your message:" -msgstr "Il tuo messaggio:" - -#: mod/message.php:333 mod/message.php:563 mod/editpost.php:110 -#: mod/wallmessage.php:154 include/conversation.php:1056 -msgid "Upload photo" -msgstr "Carica foto" - -#: mod/message.php:334 mod/message.php:564 mod/editpost.php:114 -#: mod/wallmessage.php:155 include/conversation.php:1060 -msgid "Insert web link" -msgstr "Inserisci link" - -#: mod/message.php:372 -msgid "No messages." -msgstr "Nessun messaggio." - -#: mod/message.php:379 -#, php-format -msgid "Unknown sender - %s" -msgstr "Mittente sconosciuto - %s" - -#: mod/message.php:382 -#, php-format -msgid "You and %s" -msgstr "Tu e %s" - -#: mod/message.php:385 -#, php-format -msgid "%s and You" -msgstr "%s e Tu" - -#: mod/message.php:406 mod/message.php:547 -msgid "Delete conversation" -msgstr "Elimina la conversazione" - -#: mod/message.php:409 -msgid "D, d M Y - g:i A" -msgstr "D d M Y - G:i" - -#: mod/message.php:412 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d messaggio" -msgstr[1] "%d messaggi" - -#: mod/message.php:451 -msgid "Message not available." -msgstr "Messaggio non disponibile." - -#: mod/message.php:521 -msgid "Delete message" -msgstr "Elimina il messaggio" - -#: mod/message.php:549 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente." - -#: mod/message.php:553 -msgid "Send Reply" -msgstr "Invia la risposta" - -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "Oggetto non trovato" - -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "Modifica messaggio" - -#: mod/editpost.php:109 mod/filer.php:31 mod/notes.php:59 include/text.php:997 -msgid "Save" -msgstr "Salva" - -#: mod/editpost.php:111 include/conversation.php:1057 -msgid "upload photo" -msgstr "carica foto" - -#: mod/editpost.php:112 include/conversation.php:1058 -msgid "Attach file" -msgstr "Allega file" - -#: mod/editpost.php:113 include/conversation.php:1059 -msgid "attach file" -msgstr "allega file" - -#: mod/editpost.php:115 include/conversation.php:1061 -msgid "web link" -msgstr "link web" - -#: mod/editpost.php:116 include/conversation.php:1062 -msgid "Insert video link" -msgstr "Inserire collegamento video" - -#: mod/editpost.php:117 include/conversation.php:1063 -msgid "video link" -msgstr "link video" - -#: mod/editpost.php:118 include/conversation.php:1064 -msgid "Insert audio link" -msgstr "Inserisci collegamento audio" - -#: mod/editpost.php:119 include/conversation.php:1065 -msgid "audio link" -msgstr "link audio" - -#: mod/editpost.php:120 include/conversation.php:1066 -msgid "Set your location" -msgstr "La tua posizione" - -#: mod/editpost.php:121 include/conversation.php:1067 -msgid "set location" -msgstr "posizione" - -#: mod/editpost.php:122 include/conversation.php:1068 -msgid "Clear browser location" -msgstr "Rimuovi la localizzazione data dal browser" - -#: mod/editpost.php:123 include/conversation.php:1069 -msgid "clear location" -msgstr "canc. pos." - -#: mod/editpost.php:125 include/conversation.php:1075 -msgid "Permission settings" -msgstr "Impostazioni permessi" - -#: mod/editpost.php:133 include/acl_selectors.php:343 -msgid "CC: email addresses" -msgstr "CC: indirizzi email" - -#: mod/editpost.php:134 include/conversation.php:1084 -msgid "Public post" -msgstr "Messaggio pubblico" - -#: mod/editpost.php:137 include/conversation.php:1071 -msgid "Set title" -msgstr "Scegli un titolo" - -#: mod/editpost.php:139 include/conversation.php:1073 -msgid "Categories (comma-separated list)" -msgstr "Categorie (lista separata da virgola)" - -#: mod/editpost.php:140 include/acl_selectors.php:344 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Esempio: bob@example.com, mary@example.com" - -#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 -#: mod/profiles.php:179 mod/profiles.php:627 -msgid "Profile not found." -msgstr "Profilo non trovato." - -#: mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata." - -#: mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Errore di comunicazione con l'altro sito." - -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "La risposta dell'altro sito non può essere gestita: " - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Conferma completata con successo." - -#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Il sito remoto riporta: " - -#: mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Problema temporaneo. Attendi e riprova." - -#: mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "La presentazione ha generato un errore o è stata revocata." - -#: mod/dfrn_confirm.php:430 -msgid "Unable to set contact photo." -msgstr "Impossibile impostare la foto del contatto." - -#: mod/dfrn_confirm.php:487 include/diaspora.php:633 -#: include/conversation.php:172 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s e %2$s adesso sono amici" - -#: mod/dfrn_confirm.php:572 -#, php-format -msgid "No user record found for '%s' " -msgstr "Nessun utente trovato '%s'" - -#: mod/dfrn_confirm.php:582 -msgid "Our site encryption key is apparently messed up." -msgstr "La nostra chiave di criptazione del sito sembra essere corrotta." - -#: mod/dfrn_confirm.php:593 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo." - -#: mod/dfrn_confirm.php:614 -msgid "Contact record was not found for you on our site." -msgstr "Il contatto non è stato trovato sul nostro sito." - -#: mod/dfrn_confirm.php:628 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "La chiave pubblica del sito non è disponibile per l'URL %s" - -#: mod/dfrn_confirm.php:648 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare." - -#: mod/dfrn_confirm.php:659 -msgid "Unable to set your contact credentials on our system." -msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema." - -#: mod/dfrn_confirm.php:726 -msgid "Unable to update your contact profile details on our system" -msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema" - -#: mod/dfrn_confirm.php:798 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s si è unito a %2$s" - -#: mod/events.php:71 mod/events.php:73 -msgid "Event can not end before it has started." -msgstr "Un evento non puo' finire prima di iniziare." - -#: mod/events.php:80 mod/events.php:82 -msgid "Event title and start time are required." -msgstr "Titolo e ora di inizio dell'evento sono richiesti." - -#: mod/events.php:317 -msgid "l, F j" -msgstr "l j F" - -#: mod/events.php:339 -msgid "Edit event" -msgstr "Modifca l'evento" - -#: mod/events.php:361 include/text.php:1716 include/text.php:1723 -msgid "link to source" -msgstr "Collegamento all'originale" - -#: mod/events.php:396 view/theme/diabook/theme.php:127 -#: include/identity.php:668 include/nav.php:80 -msgid "Events" -msgstr "Eventi" - -#: mod/events.php:397 -msgid "Create New Event" -msgstr "Crea un nuovo evento" - -#: mod/events.php:398 -msgid "Previous" -msgstr "Precendente" - -#: mod/events.php:399 mod/install.php:209 -msgid "Next" -msgstr "Successivo" - -#: mod/events.php:491 -msgid "Event details" -msgstr "Dettagli dell'evento" - -#: mod/events.php:492 -msgid "Starting date and Title are required." -msgstr "La data di inizio e il titolo sono richiesti." - -#: mod/events.php:493 -msgid "Event Starts:" -msgstr "L'evento inizia:" - -#: mod/events.php:493 mod/events.php:505 -msgid "Required" -msgstr "Richiesto" - -#: mod/events.php:495 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/ora di fine non è definita" - -#: mod/events.php:497 -msgid "Event Finishes:" -msgstr "L'evento finisce:" - -#: mod/events.php:499 -msgid "Adjust for viewer timezone" -msgstr "Visualizza con il fuso orario di chi legge" - -#: mod/events.php:501 -msgid "Description:" -msgstr "Descrizione:" - -#: mod/events.php:505 -msgid "Title:" -msgstr "Titolo:" - -#: mod/events.php:507 -msgid "Share this event" -msgstr "Condividi questo evento" - -#: mod/fbrowser.php:32 view/theme/diabook/theme.php:126 -#: include/identity.php:649 include/nav.php:78 -msgid "Photos" -msgstr "Foto" - -#: mod/fbrowser.php:122 -msgid "Files" -msgstr "File" - -#: mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Benvenuto su %s" - -#: mod/lockview.php:31 mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informazioni remote sulla privacy non disponibili." - -#: mod/lockview.php:48 -msgid "Visible to:" -msgstr "Visibile a:" - -#: mod/wallmessage.php:42 mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito." - -#: mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Impossibile controllare la tua posizione di origine." - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Nessun destinatario." - -#: mod/wallmessage.php:143 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti." - -#: mod/nogroup.php:40 mod/contacts.php:605 mod/contacts.php:838 -#: mod/viewcontacts.php:64 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" - -#: mod/nogroup.php:41 mod/contacts.php:839 -msgid "Edit contact" -msgstr "Modifca contatto" - -#: mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Contatti che non sono membri di un gruppo" - -#: mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Questo è Friendica, versione" - -#: mod/friendica.php:60 -msgid "running at web location" -msgstr "in esecuzione all'indirizzo web" - -#: mod/friendica.php:62 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." - -#: mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Segnalazioni di bug e problemi: visita" - -#: mod/friendica.php:64 -msgid "the bugtracker at github" -msgstr "il bugtracker su github" - -#: mod/friendica.php:65 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com" - -#: mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Plugin/addon/applicazioni instalate" - -#: mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Nessun plugin/addons/applicazione installata" - -#: mod/removeme.php:46 mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Rimuovi il mio account" - -#: mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." - -#: mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" - -#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76 -#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16 -#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692 -msgid "Invalid request." -msgstr "Richiesta non valida." - -#: mod/wall_upload.php:137 mod/photos.php:789 mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "La dimensione dell'immagine supera il limite di %s" - -#: mod/wall_upload.php:169 mod/photos.php:829 mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Impossibile caricare l'immagine." - -#: mod/wall_upload.php:199 mod/wall_upload.php:213 mod/wall_upload.php:220 -#: mod/item.php:486 include/message.php:145 include/Photo.php:951 -#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995 -msgid "Wall Photos" -msgstr "Foto della bacheca" - -#: mod/wall_upload.php:202 mod/photos.php:856 mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Caricamento immagine fallito." - -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizza la connessione dell'applicazione" - -#: mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:" - -#: mod/api.php:89 -msgid "Please login to continue." -msgstr "Effettua il login per continuare." - -#: mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?" - -#: mod/tagger.php:95 include/conversation.php:265 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha taggato %3$s di %2$s con %4$s" - -#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 -#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779 -#: mod/photos.php:1791 view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "Foto dei contatti" - -#: mod/photos.php:84 include/identity.php:652 -msgid "Photo Albums" -msgstr "Album foto" - -#: mod/photos.php:85 mod/photos.php:1836 -msgid "Recent Photos" -msgstr "Foto recenti" - -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 -msgid "Upload New Photos" -msgstr "Carica nuove foto" - -#: mod/photos.php:102 mod/settings.php:34 -msgid "everybody" -msgstr "tutti" - -#: mod/photos.php:166 -msgid "Contact information unavailable" -msgstr "I dati di questo contatto non sono disponibili" - -#: mod/photos.php:177 mod/photos.php:753 mod/photos.php:1207 -#: mod/photos.php:1230 mod/profile_photo.php:74 mod/profile_photo.php:81 -#: mod/profile_photo.php:88 mod/profile_photo.php:204 -#: mod/profile_photo.php:296 mod/profile_photo.php:305 -#: view/theme/diabook/theme.php:500 include/user.php:343 include/user.php:350 -#: include/user.php:357 -msgid "Profile Photos" -msgstr "Foto del profilo" - -#: mod/photos.php:187 -msgid "Album not found." -msgstr "Album non trovato." - -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 -msgid "Delete Album" -msgstr "Rimuovi album" - -#: mod/photos.php:220 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?" - -#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 -msgid "Delete Photo" -msgstr "Rimuovi foto" - -#: mod/photos.php:309 -msgid "Do you really want to delete this photo?" -msgstr "Vuoi veramente cancellare questa foto?" - -#: mod/photos.php:684 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s è stato taggato in %2$s da %3$s" - -#: mod/photos.php:684 -msgid "a photo" -msgstr "una foto" - -#: mod/photos.php:797 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." - -#: mod/photos.php:952 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" - -#: mod/photos.php:1053 mod/videos.php:298 -msgid "Access to this item is restricted." -msgstr "Questo oggetto non è visibile a tutti." - -#: mod/photos.php:1114 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili." - -#: mod/photos.php:1149 -msgid "Upload Photos" -msgstr "Carica foto" - -#: mod/photos.php:1153 mod/photos.php:1219 -msgid "New album name: " -msgstr "Nome nuovo album: " - -#: mod/photos.php:1154 -msgid "or existing album name: " -msgstr "o nome di un album esistente: " - -#: mod/photos.php:1155 -msgid "Do not show a status post for this upload" -msgstr "Non creare un post per questo upload" - -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 -msgid "Permissions" -msgstr "Permessi" - -#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1202 -msgid "Show to Groups" -msgstr "Mostra ai gruppi" - -#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1203 -msgid "Show to Contacts" -msgstr "Mostra ai contatti" - -#: mod/photos.php:1168 -msgid "Private Photo" -msgstr "Foto privata" - -#: mod/photos.php:1169 -msgid "Public Photo" -msgstr "Foto pubblica" - -#: mod/photos.php:1232 -msgid "Edit Album" -msgstr "Modifica album" - -#: mod/photos.php:1238 -msgid "Show Newest First" -msgstr "Mostra nuove foto per prime" - -#: mod/photos.php:1240 -msgid "Show Oldest First" -msgstr "Mostra vecchie foto per prime" - -#: mod/photos.php:1268 mod/photos.php:1821 -msgid "View Photo" -msgstr "Vedi foto" - -#: mod/photos.php:1314 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." - -#: mod/photos.php:1316 -msgid "Photo not available" -msgstr "Foto non disponibile" - -#: mod/photos.php:1372 -msgid "View photo" -msgstr "Vedi foto" - -#: mod/photos.php:1372 -msgid "Edit photo" -msgstr "Modifica foto" - -#: mod/photos.php:1373 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" - -#: mod/photos.php:1398 -msgid "View Full Size" -msgstr "Vedi dimensione intera" - -#: mod/photos.php:1477 -msgid "Tags: " -msgstr "Tag: " - -#: mod/photos.php:1480 -msgid "[Remove any tag]" -msgstr "[Rimuovi tutti i tag]" - -#: mod/photos.php:1520 -msgid "New album name" -msgstr "Nuovo nome dell'album" - -#: mod/photos.php:1521 -msgid "Caption" -msgstr "Titolo" - -#: mod/photos.php:1522 -msgid "Add a Tag" -msgstr "Aggiungi tag" - -#: mod/photos.php:1522 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1523 -msgid "Do not rotate" -msgstr "Non ruotare" - -#: mod/photos.php:1524 -msgid "Rotate CW (right)" -msgstr "Ruota a destra" - -#: mod/photos.php:1525 -msgid "Rotate CCW (left)" -msgstr "Ruota a sinistra" - -#: mod/photos.php:1540 -msgid "Private photo" -msgstr "Foto privata" - -#: mod/photos.php:1541 -msgid "Public photo" -msgstr "Foto pubblica" - -#: mod/photos.php:1563 include/conversation.php:1055 -msgid "Share" -msgstr "Condividi" - -#: mod/photos.php:1827 mod/videos.php:380 -msgid "View Album" -msgstr "Sfoglia l'album" - -#: mod/hcard.php:10 -msgid "No profile" -msgstr "Nessun profilo" - -#: mod/register.php:92 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni." - -#: mod/register.php:97 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "Si è verificato un errore inviando l'email. I dettagli del tuo account:
login: %s
password: %s

Puoi cambiare la password dopo il login." - -#: mod/register.php:107 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere elaborata." - -#: mod/register.php:150 -msgid "Your registration is pending approval by the site owner." -msgstr "La tua richiesta è in attesa di approvazione da parte del prorietario del sito." - -#: mod/register.php:188 mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." - -#: mod/register.php:216 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'." - -#: mod/register.php:217 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera." - -#: mod/register.php:218 -msgid "Your OpenID (optional): " -msgstr "Il tuo OpenID (opzionale): " - -#: mod/register.php:232 -msgid "Include your profile in member directory?" -msgstr "Includi il tuo profilo nell'elenco pubblico?" - -#: mod/register.php:256 -msgid "Membership on this site is by invitation only." -msgstr "La registrazione su questo sito è solo su invito." - -#: mod/register.php:257 -msgid "Your invitation ID: " -msgstr "L'ID del tuo invito:" - -#: mod/register.php:268 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Il tuo nome completo (es. Mario Rossi): " - -#: mod/register.php:269 -msgid "Your Email Address: " -msgstr "Il tuo indirizzo email: " - -#: mod/register.php:271 mod/settings.php:1174 -msgid "New Password:" -msgstr "Nuova password:" - -#: mod/register.php:271 -msgid "Leave empty for an auto generated password." -msgstr "Lascia vuoto per generare automaticamente una password." - -#: mod/register.php:272 mod/settings.php:1175 -msgid "Confirm:" -msgstr "Conferma:" - -#: mod/register.php:273 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@$sitename'." - -#: mod/register.php:274 -msgid "Choose a nickname: " -msgstr "Scegli un nome utente: " - -#: mod/register.php:277 boot.php:1248 include/nav.php:109 -msgid "Register" -msgstr "Registrati" - -#: mod/register.php:283 mod/uimport.php:64 -msgid "Import" -msgstr "Importa" - -#: mod/register.php:284 -msgid "Import your profile to this friendica instance" -msgstr "Importa il tuo profilo in questo server friendica" - -#: mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Nessun account valido trovato." - -#: mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." - -#: mod/lostpass.php:42 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "\nGentile %1$s,\n abbiamo ricevuto su \"%2$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica." - -#: mod/lostpass.php:53 -#, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "\nSegui questo link per verificare la tua identità:\n\n%1$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2$s\n Nome utente: %3$s" - -#: mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Richiesta reimpostazione password su %s" - -#: mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita." - -#: mod/lostpass.php:109 boot.php:1287 -msgid "Password Reset" -msgstr "Reimpostazione password" - -#: mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "La tua password è stata reimpostata come richiesto." - -#: mod/lostpass.php:111 -msgid "Your new password is" -msgstr "La tua nuova password è" - -#: mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" - -#: mod/lostpass.php:113 -msgid "click here to login" -msgstr "clicca qui per entrare" - -#: mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso." - -#: mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "\nGentile %1$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare." - -#: mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato." - -#: mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "La tua password presso %s è stata cambiata" - -#: mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" - -#: mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Inserisci il tuo indirizzo email per reimpostare la password." - -#: mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Nome utente o email: " - -#: mod/lostpass.php:162 -msgid "Reset" -msgstr "Reimposta" - -#: mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Sistema in manutenzione" - -#: mod/attach.php:8 -msgid "Item not available." -msgstr "Oggetto non disponibile." - -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "Oggetto non trovato." - -#: mod/apps.php:11 -msgid "Applications" -msgstr "Applicazioni" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Nessuna applicazione installata." - -#: mod/help.php:31 -msgid "Help:" -msgstr "Guida:" - -#: mod/help.php:36 include/nav.php:114 -msgid "Help" -msgstr "Guida" - -#: mod/contacts.php:114 +#: mod/contacts.php:50 include/identity.php:380 +msgid "Network:" +msgstr "Rete:" + +#: mod/contacts.php:51 mod/contacts.php:986 mod/videos.php:37 +#: mod/viewcontacts.php:105 mod/dirfind.php:208 mod/network.php:596 +#: mod/allfriends.php:72 mod/match.php:82 mod/directory.php:172 +#: mod/common.php:124 mod/suggest.php:95 mod/photos.php:41 +#: include/identity.php:295 +msgid "Forum" +msgstr "Forum" + +#: mod/contacts.php:128 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" msgstr[0] "%d contatto modificato" msgstr[1] "%d contatti modificati" -#: mod/contacts.php:145 mod/contacts.php:368 +#: mod/contacts.php:159 mod/contacts.php:382 msgid "Could not access contact record." msgstr "Non è possibile accedere al contatto." -#: mod/contacts.php:159 +#: mod/contacts.php:173 msgid "Could not locate selected profile." msgstr "Non riesco a trovare il profilo selezionato." -#: mod/contacts.php:192 +#: mod/contacts.php:206 msgid "Contact updated." msgstr "Contatto aggiornato." -#: mod/contacts.php:389 +#: mod/contacts.php:208 mod/dfrn_request.php:578 +msgid "Failed to update contact record." +msgstr "Errore nell'aggiornamento del contatto." + +#: mod/contacts.php:364 mod/manage.php:96 mod/display.php:496 +#: mod/profile_photo.php:19 mod/profile_photo.php:175 +#: mod/profile_photo.php:186 mod/profile_photo.php:199 +#: mod/ostatus_subscribe.php:9 mod/follow.php:10 mod/follow.php:72 +#: mod/follow.php:137 mod/item.php:169 mod/item.php:185 mod/group.php:19 +#: mod/dfrn_confirm.php:55 mod/fsuggest.php:78 mod/wall_upload.php:77 +#: mod/wall_upload.php:80 mod/viewcontacts.php:40 mod/notifications.php:69 +#: mod/message.php:45 mod/message.php:181 mod/crepair.php:117 +#: mod/dirfind.php:11 mod/nogroup.php:25 mod/network.php:4 +#: mod/allfriends.php:12 mod/events.php:165 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/settings.php:20 +#: mod/settings.php:116 mod/settings.php:637 mod/register.php:42 +#: mod/delegate.php:12 mod/common.php:18 mod/mood.php:114 mod/suggest.php:58 +#: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10 +#: mod/api.php:26 mod/api.php:31 mod/notes.php:22 mod/poke.php:149 +#: mod/repair_ostatus.php:9 mod/invite.php:15 mod/invite.php:101 +#: mod/photos.php:171 mod/photos.php:1105 mod/regmod.php:110 +#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5067 index.php:382 +msgid "Permission denied." +msgstr "Permesso negato." + +#: mod/contacts.php:403 msgid "Contact has been blocked" msgstr "Il contatto è stato bloccato" -#: mod/contacts.php:389 +#: mod/contacts.php:403 msgid "Contact has been unblocked" msgstr "Il contatto è stato sbloccato" -#: mod/contacts.php:400 +#: mod/contacts.php:414 msgid "Contact has been ignored" msgstr "Il contatto è ignorato" -#: mod/contacts.php:400 +#: mod/contacts.php:414 msgid "Contact has been unignored" msgstr "Il contatto non è più ignorato" -#: mod/contacts.php:412 +#: mod/contacts.php:426 msgid "Contact has been archived" msgstr "Il contatto è stato archiviato" -#: mod/contacts.php:412 +#: mod/contacts.php:426 msgid "Contact has been unarchived" msgstr "Il contatto è stato dearchiviato" -#: mod/contacts.php:439 mod/contacts.php:795 +#: mod/contacts.php:453 mod/contacts.php:801 msgid "Do you really want to delete this contact?" msgstr "Vuoi veramente cancellare questo contatto?" -#: mod/contacts.php:456 +#: mod/contacts.php:455 mod/follow.php:105 mod/message.php:216 +#: mod/settings.php:1094 mod/settings.php:1100 mod/settings.php:1108 +#: mod/settings.php:1112 mod/settings.php:1117 mod/settings.php:1123 +#: mod/settings.php:1129 mod/settings.php:1135 mod/settings.php:1161 +#: mod/settings.php:1162 mod/settings.php:1163 mod/settings.php:1164 +#: mod/settings.php:1165 mod/dfrn_request.php:850 mod/register.php:238 +#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 +#: mod/profiles.php:687 mod/api.php:105 include/items.php:4899 +msgid "Yes" +msgstr "Si" + +#: mod/contacts.php:458 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:116 +#: mod/videos.php:131 mod/message.php:219 mod/fbrowser.php:93 +#: mod/fbrowser.php:128 mod/settings.php:651 mod/settings.php:677 +#: mod/dfrn_request.php:864 mod/suggest.php:32 mod/editpost.php:148 +#: mod/photos.php:247 mod/photos.php:336 include/conversation.php:1221 +#: include/items.php:4902 +msgid "Cancel" +msgstr "Annulla" + +#: mod/contacts.php:470 msgid "Contact has been removed." msgstr "Il contatto è stato rimosso." -#: mod/contacts.php:494 +#: mod/contacts.php:511 #, php-format msgid "You are mutual friends with %s" msgstr "Sei amico reciproco con %s" -#: mod/contacts.php:498 +#: mod/contacts.php:515 #, php-format msgid "You are sharing with %s" msgstr "Stai condividendo con %s" -#: mod/contacts.php:503 +#: mod/contacts.php:520 #, php-format msgid "%s is sharing with you" msgstr "%s sta condividendo con te" -#: mod/contacts.php:523 +#: mod/contacts.php:540 msgid "Private communications are not available for this contact." msgstr "Le comunicazioni private non sono disponibili per questo contatto." -#: mod/contacts.php:530 +#: mod/contacts.php:543 mod/admin.php:645 +msgid "Never" +msgstr "Mai" + +#: mod/contacts.php:547 msgid "(Update was successful)" msgstr "(L'aggiornamento è stato completato)" -#: mod/contacts.php:530 +#: mod/contacts.php:547 msgid "(Update was not successful)" msgstr "(L'aggiornamento non è stato completato)" -#: mod/contacts.php:532 +#: mod/contacts.php:549 msgid "Suggest friends" msgstr "Suggerisci amici" -#: mod/contacts.php:536 +#: mod/contacts.php:553 #, php-format msgid "Network type: %s" msgstr "Tipo di rete: %s" -#: mod/contacts.php:539 include/contact_widgets.php:200 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contatto in comune" -msgstr[1] "%d contatti in comune" - -#: mod/contacts.php:544 -msgid "View all contacts" -msgstr "Vedi tutti i contatti" - -#: mod/contacts.php:552 -msgid "Toggle Blocked status" -msgstr "Inverti stato \"Blocca\"" - -#: mod/contacts.php:556 mod/contacts.php:623 mod/contacts.php:799 -msgid "Unignore" -msgstr "Non ignorare" - -#: mod/contacts.php:559 -msgid "Toggle Ignored status" -msgstr "Inverti stato \"Ignora\"" - -#: mod/contacts.php:564 mod/contacts.php:800 -msgid "Unarchive" -msgstr "Dearchivia" - -#: mod/contacts.php:564 mod/contacts.php:800 -msgid "Archive" -msgstr "Archivia" - -#: mod/contacts.php:567 -msgid "Toggle Archive status" -msgstr "Inverti stato \"Archiviato\"" - -#: mod/contacts.php:571 -msgid "Repair" -msgstr "Ripara" - -#: mod/contacts.php:574 -msgid "Advanced Contact Settings" -msgstr "Impostazioni avanzate Contatto" - -#: mod/contacts.php:581 +#: mod/contacts.php:566 msgid "Communications lost with this contact!" msgstr "Comunicazione con questo contatto persa!" -#: mod/contacts.php:584 +#: mod/contacts.php:569 msgid "Fetch further information for feeds" msgstr "Recupera maggiori infomazioni per i feed" -#: mod/contacts.php:585 +#: mod/contacts.php:570 mod/admin.php:654 +msgid "Disabled" +msgstr "Disabilitato" + +#: mod/contacts.php:570 msgid "Fetch information" msgstr "Recupera informazioni" -#: mod/contacts.php:585 +#: mod/contacts.php:570 msgid "Fetch information and keywords" msgstr "Recupera informazioni e parole chiave" -#: mod/contacts.php:594 -msgid "Contact Editor" -msgstr "Editor dei Contatti" +#: mod/contacts.php:586 mod/manage.php:143 mod/fsuggest.php:107 +#: mod/message.php:342 mod/message.php:525 mod/crepair.php:196 +#: mod/events.php:574 mod/content.php:712 mod/install.php:261 +#: mod/install.php:299 mod/mood.php:137 mod/profiles.php:696 +#: mod/localtime.php:45 mod/poke.php:198 mod/invite.php:140 +#: mod/photos.php:1137 mod/photos.php:1261 mod/photos.php:1579 +#: mod/photos.php:1630 mod/photos.php:1678 mod/photos.php:1766 +#: object/Item.php:710 view/theme/cleanzero/config.php:80 +#: view/theme/dispy/config.php:70 view/theme/quattro/config.php:64 +#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633 +#: view/theme/clean/config.php:83 view/theme/vier/config.php:107 +#: view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Invia" -#: mod/contacts.php:597 +#: mod/contacts.php:587 msgid "Profile Visibility" msgstr "Visibilità del profilo" -#: mod/contacts.php:598 +#: mod/contacts.php:588 #, 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 quando visita il tuo profilo in modo sicuro." -#: mod/contacts.php:599 +#: mod/contacts.php:589 msgid "Contact Information / Notes" msgstr "Informazioni / Note sul contatto" -#: mod/contacts.php:600 +#: mod/contacts.php:590 msgid "Edit contact notes" msgstr "Modifica note contatto" -#: mod/contacts.php:606 +#: mod/contacts.php:595 mod/contacts.php:977 mod/viewcontacts.php:97 +#: mod/nogroup.php:41 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" + +#: mod/contacts.php:596 msgid "Block/Unblock contact" msgstr "Blocca/Sblocca contatto" -#: mod/contacts.php:607 +#: mod/contacts.php:597 msgid "Ignore contact" msgstr "Ignora il contatto" -#: mod/contacts.php:608 +#: mod/contacts.php:598 msgid "Repair URL settings" msgstr "Impostazioni riparazione URL" -#: mod/contacts.php:609 +#: mod/contacts.php:599 msgid "View conversations" msgstr "Vedi conversazioni" -#: mod/contacts.php:611 +#: mod/contacts.php:601 msgid "Delete contact" msgstr "Rimuovi contatto" -#: mod/contacts.php:615 +#: mod/contacts.php:605 msgid "Last update:" msgstr "Ultimo aggiornamento:" -#: mod/contacts.php:617 +#: mod/contacts.php:607 msgid "Update public posts" msgstr "Aggiorna messaggi pubblici" -#: mod/contacts.php:626 +#: mod/contacts.php:609 mod/admin.php:1653 +msgid "Update now" +msgstr "Aggiorna adesso" + +#: mod/contacts.php:611 mod/dirfind.php:190 mod/allfriends.php:60 +#: mod/match.php:71 mod/suggest.php:82 include/contact_widgets.php:32 +#: include/Contact.php:321 include/conversation.php:924 +msgid "Connect/Follow" +msgstr "Connetti/segui" + +#: mod/contacts.php:614 mod/contacts.php:805 mod/contacts.php:864 +#: mod/admin.php:1117 +msgid "Unblock" +msgstr "Sblocca" + +#: mod/contacts.php:614 mod/contacts.php:805 mod/contacts.php:864 +#: mod/admin.php:1116 +msgid "Block" +msgstr "Blocca" + +#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:871 +msgid "Unignore" +msgstr "Non ignorare" + +#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:871 +#: mod/notifications.php:54 mod/notifications.php:179 +#: mod/notifications.php:259 +msgid "Ignore" +msgstr "Ignora" + +#: mod/contacts.php:618 msgid "Currently blocked" msgstr "Bloccato" -#: mod/contacts.php:627 +#: mod/contacts.php:619 msgid "Currently ignored" msgstr "Ignorato" -#: mod/contacts.php:628 +#: mod/contacts.php:620 msgid "Currently archived" msgstr "Al momento archiviato" -#: mod/contacts.php:629 +#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:251 +msgid "Hide this contact from others" +msgstr "Nascondi questo contatto agli altri" + +#: mod/contacts.php:621 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Risposte ai tuoi post pubblici possono essere comunque visibili" -#: mod/contacts.php:630 +#: mod/contacts.php:622 msgid "Notification for new posts" msgstr "Notifica per i nuovi messaggi" -#: mod/contacts.php:630 +#: mod/contacts.php:622 msgid "Send a notification of every new post of this contact" msgstr "Invia una notifica per ogni nuovo messaggio di questo contatto" -#: mod/contacts.php:633 +#: mod/contacts.php:625 msgid "Blacklisted keywords" msgstr "Parole chiave in blacklist" -#: mod/contacts.php:633 +#: mod/contacts.php:625 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Lista separata da virgola di parole chiave che non dovranno essere convertite in hastag, quando \"Recupera informazioni e parole chiave\" è selezionato" -#: mod/contacts.php:640 +#: mod/contacts.php:632 mod/follow.php:121 mod/notifications.php:255 msgid "Profile URL" msgstr "URL Profilo" -#: mod/contacts.php:686 +#: mod/contacts.php:635 mod/follow.php:125 mod/notifications.php:244 +#: mod/events.php:566 mod/directory.php:145 include/identity.php:304 +#: include/bb2diaspora.php:170 include/event.php:36 include/event.php:60 +msgid "Location:" +msgstr "Posizione:" + +#: mod/contacts.php:637 mod/follow.php:127 mod/notifications.php:246 +#: mod/directory.php:153 include/identity.php:313 include/identity.php:621 +msgid "About:" +msgstr "Informazioni:" + +#: mod/contacts.php:639 mod/follow.php:129 mod/notifications.php:248 +#: include/identity.php:615 +msgid "Tags:" +msgstr "Tag:" + +#: mod/contacts.php:684 msgid "Suggestions" msgstr "Suggerimenti" -#: mod/contacts.php:689 +#: mod/contacts.php:687 msgid "Suggest potential friends" msgstr "Suggerisci potenziali amici" -#: mod/contacts.php:693 mod/group.php:192 +#: mod/contacts.php:692 mod/group.php:192 msgid "All Contacts" msgstr "Tutti i contatti" -#: mod/contacts.php:696 +#: mod/contacts.php:695 msgid "Show all contacts" msgstr "Mostra tutti i contatti" @@ -3363,175 +375,205 @@ msgstr "Sbloccato" msgid "Only show unblocked contacts" msgstr "Mostra solo contatti non bloccati" -#: mod/contacts.php:708 +#: mod/contacts.php:709 msgid "Blocked" msgstr "Bloccato" -#: mod/contacts.php:711 +#: mod/contacts.php:712 msgid "Only show blocked contacts" msgstr "Mostra solo contatti bloccati" -#: mod/contacts.php:716 +#: mod/contacts.php:718 msgid "Ignored" msgstr "Ignorato" -#: mod/contacts.php:719 +#: mod/contacts.php:721 msgid "Only show ignored contacts" msgstr "Mostra solo contatti ignorati" -#: mod/contacts.php:724 +#: mod/contacts.php:727 msgid "Archived" msgstr "Achiviato" -#: mod/contacts.php:727 +#: mod/contacts.php:730 msgid "Only show archived contacts" msgstr "Mostra solo contatti archiviati" -#: mod/contacts.php:732 +#: mod/contacts.php:736 msgid "Hidden" msgstr "Nascosto" -#: mod/contacts.php:735 +#: mod/contacts.php:739 msgid "Only show hidden contacts" msgstr "Mostra solo contatti nascosti" -#: mod/contacts.php:786 view/theme/diabook/theme.php:125 include/text.php:1005 -#: include/nav.php:124 include/nav.php:186 +#: mod/contacts.php:792 mod/contacts.php:840 mod/viewcontacts.php:116 +#: include/identity.php:732 include/identity.php:735 include/text.php:1012 +#: include/nav.php:123 include/nav.php:187 view/theme/diabook/theme.php:125 msgid "Contacts" msgstr "Contatti" -#: mod/contacts.php:790 +#: mod/contacts.php:796 msgid "Search your contacts" msgstr "Cerca nei tuoi contatti" -#: mod/contacts.php:791 mod/directory.php:63 +#: mod/contacts.php:797 msgid "Finding: " msgstr "Ricerca: " -#: mod/contacts.php:792 mod/directory.php:65 include/contact_widgets.php:34 +#: mod/contacts.php:798 mod/directory.php:210 include/contact_widgets.php:34 msgid "Find" msgstr "Trova" -#: mod/contacts.php:797 mod/settings.php:146 mod/settings.php:658 +#: mod/contacts.php:804 mod/settings.php:146 mod/settings.php:676 msgid "Update" msgstr "Aggiorna" -#: mod/contacts.php:814 -msgid "Mutual Friendship" -msgstr "Amicizia reciproca" +#: mod/contacts.php:807 mod/contacts.php:878 +msgid "Archive" +msgstr "Archivia" -#: mod/contacts.php:818 -msgid "is a fan of yours" -msgstr "è un tuo fan" +#: mod/contacts.php:807 mod/contacts.php:878 +msgid "Unarchive" +msgstr "Dearchivia" -#: mod/contacts.php:822 -msgid "you are a fan of" -msgstr "sei un fan di" +#: mod/contacts.php:808 mod/group.php:171 mod/admin.php:1115 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:713 +#: mod/photos.php:1723 object/Item.php:134 include/conversation.php:635 +msgid "Delete" +msgstr "Rimuovi" -#: mod/videos.php:113 -msgid "Do you really want to delete this video?" -msgstr "Vuoi veramente cancellare questo video?" +#: mod/contacts.php:821 include/identity.php:677 include/nav.php:75 +msgid "Status" +msgstr "Stato" -#: mod/videos.php:118 -msgid "Delete Video" -msgstr "Rimuovi video" +#: mod/contacts.php:824 include/identity.php:680 +msgid "Status Messages and Posts" +msgstr "Messaggi di stato e post" -#: mod/videos.php:197 -msgid "No videos selected" -msgstr "Nessun video selezionato" +#: mod/contacts.php:829 mod/profperm.php:104 mod/newmember.php:32 +#: include/identity.php:569 include/identity.php:655 include/identity.php:685 +#: include/nav.php:76 view/theme/diabook/theme.php:124 +msgid "Profile" +msgstr "Profilo" -#: mod/videos.php:389 -msgid "Recent Videos" -msgstr "Video Recenti" +#: mod/contacts.php:832 include/identity.php:688 +msgid "Profile Details" +msgstr "Dettagli del profilo" -#: mod/videos.php:391 -msgid "Upload New Videos" -msgstr "Carica Nuovo Video" +#: mod/contacts.php:843 +msgid "View all contacts" +msgstr "Vedi tutti i contatti" -#: mod/common.php:45 +#: mod/contacts.php:849 mod/common.php:135 msgid "Common Friends" msgstr "Amici in comune" -#: mod/common.php:82 -msgid "No contacts in common." -msgstr "Nessun contatto in comune." +#: mod/contacts.php:852 +msgid "View all common friends" +msgstr "Vedi tutti gli amici in comune" -#: mod/follow.php:26 -msgid "You already added this contact." -msgstr "Hai già aggiunto questo contatto." +#: mod/contacts.php:856 +msgid "Repair" +msgstr "Ripara" -#: mod/follow.php:108 -msgid "Contact added" -msgstr "Contatto aggiunto" +#: mod/contacts.php:859 +msgid "Advanced Contact Settings" +msgstr "Impostazioni avanzate Contatto" -#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 -msgid "Login" -msgstr "Accedi" +#: mod/contacts.php:867 +msgid "Toggle Blocked status" +msgstr "Inverti stato \"Blocca\"" -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "Il messaggio è stato creato" +#: mod/contacts.php:874 +msgid "Toggle Ignored status" +msgstr "Inverti stato \"Ignora\"" -#: mod/uimport.php:66 -msgid "Move account" -msgstr "Muovi account" +#: mod/contacts.php:881 +msgid "Toggle Archive status" +msgstr "Inverti stato \"Archiviato\"" -#: mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Puoi importare un account da un altro server Friendica." +#: mod/contacts.php:949 +msgid "Mutual Friendship" +msgstr "Amicizia reciproca" -#: mod/uimport.php:68 +#: mod/contacts.php:953 +msgid "is a fan of yours" +msgstr "è un tuo fan" + +#: mod/contacts.php:957 +msgid "you are a fan of" +msgstr "sei un fan di" + +#: mod/contacts.php:978 mod/nogroup.php:42 +msgid "Edit contact" +msgstr "Modifca contatto" + +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Nessun profilo" + +#: mod/manage.php:139 +msgid "Manage Identities and/or Pages" +msgstr "Gestisci indentità e/o pagine" + +#: mod/manage.php:140 msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui." +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" -#: mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora" +#: mod/manage.php:141 +msgid "Select an identity to manage: " +msgstr "Seleziona un'identità da gestire:" -#: mod/uimport.php:70 -msgid "Account file" -msgstr "File account" +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Inviato!" -#: mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"" +#: mod/profperm.php:19 mod/group.php:72 index.php:381 +msgid "Permission denied" +msgstr "Permesso negato" -#: mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." -#: mod/allfriends.php:37 -#, php-format -msgid "Friends of %s" -msgstr "Amici di %s" +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Modifica visibilità del profilo" -#: mod/allfriends.php:44 -msgid "No friends to display." -msgstr "Nessun amico da visualizzare." +#: mod/profperm.php:106 mod/group.php:223 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." -#: mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag rimosso" +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Visibile a" -#: mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Tutti i contatti (con profilo ad accesso sicuro)" -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " +#: mod/display.php:82 mod/display.php:283 mod/display.php:500 +#: mod/viewsrc.php:15 mod/admin.php:196 mod/admin.php:1160 mod/admin.php:1381 +#: mod/notice.php:15 include/items.php:4858 +msgid "Item not found." +msgstr "Elemento non trovato." -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "Rimuovi" +#: mod/display.php:211 mod/videos.php:197 mod/viewcontacts.php:35 +#: mod/community.php:18 mod/dfrn_request.php:779 mod/search.php:93 +#: mod/search.php:99 mod/directory.php:37 mod/photos.php:976 +msgid "Public access denied." +msgstr "Accesso negato." + +#: mod/display.php:331 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "L'accesso a questo profilo è stato limitato." + +#: mod/display.php:493 +msgid "Item has been removed." +msgstr "L'oggetto è stato rimosso." #: mod/newmember.php:6 msgid "Welcome to Friendica" @@ -3564,6 +606,12 @@ msgid "" " join." msgstr "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti." +#: mod/newmember.php:22 mod/admin.php:1212 mod/admin.php:1457 +#: mod/settings.php:99 include/nav.php:182 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:648 +msgid "Settings" +msgstr "Impostazioni" + #: mod/newmember.php:26 msgid "Go to Your Settings" msgstr "Vai alle tue Impostazioni" @@ -3583,13 +631,7 @@ msgid "" "potential friends know exactly how to find you." msgstr "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti." -#: mod/newmember.php:32 mod/profperm.php:104 view/theme/diabook/theme.php:124 -#: include/identity.php:530 include/identity.php:611 include/identity.php:641 -#: include/nav.php:77 -msgid "Profile" -msgstr "Profilo" - -#: mod/newmember.php:36 mod/profiles.php:696 mod/profile_photo.php:244 +#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:709 msgid "Upload Profile Photo" msgstr "Carica la foto del profilo" @@ -3688,7 +730,7 @@ msgid "" "hours." msgstr "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore." -#: mod/newmember.php:66 include/group.php:270 +#: mod/newmember.php:66 include/group.php:283 msgid "Groups" msgstr "Gruppi" @@ -3728,32 +770,5026 @@ msgid "" " features and resources." msgstr "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse." -#: mod/search.php:25 mod/network.php:187 +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Errore protocollo OpenID. Nessun ID ricevuto." + +#: mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito." + +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 +msgid "Login failed." +msgstr "Accesso fallito." + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." + +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:210 mod/profile_photo.php:302 +#: mod/profile_photo.php:311 mod/photos.php:78 mod/photos.php:192 +#: mod/photos.php:775 mod/photos.php:1245 mod/photos.php:1268 +#: mod/photos.php:1862 include/user.php:345 include/user.php:352 +#: include/user.php:359 view/theme/diabook/theme.php:500 +msgid "Profile Photos" +msgstr "Foto del profilo" + +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:314 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Il ridimensionamento del'immagine [%s] è fallito." + +#: mod/profile_photo.php:124 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." + +#: mod/profile_photo.php:134 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" + +#: mod/profile_photo.php:150 mod/wall_upload.php:151 mod/photos.php:811 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "La dimensione dell'immagine supera il limite di %s" + +#: mod/profile_photo.php:159 mod/wall_upload.php:183 mod/photos.php:851 +msgid "Unable to process image." +msgstr "Impossibile caricare l'immagine." + +#: mod/profile_photo.php:248 +msgid "Upload File:" +msgstr "Carica un file:" + +#: mod/profile_photo.php:249 +msgid "Select a profile:" +msgstr "Seleziona un profilo:" + +#: mod/profile_photo.php:251 +msgid "Upload" +msgstr "Carica" + +#: mod/profile_photo.php:254 +msgid "or" +msgstr "o" + +#: mod/profile_photo.php:254 +msgid "skip this step" +msgstr "salta questo passaggio" + +#: mod/profile_photo.php:254 +msgid "select a photo from your photo albums" +msgstr "seleziona una foto dai tuoi album" + +#: mod/profile_photo.php:268 +msgid "Crop Image" +msgstr "Ritaglia immagine" + +#: mod/profile_photo.php:269 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ritaglia l'imagine per una visualizzazione migliore." + +#: mod/profile_photo.php:271 +msgid "Done Editing" +msgstr "Finito" + +#: mod/profile_photo.php:305 +msgid "Image uploaded successfully." +msgstr "Immagine caricata con successo." + +#: mod/profile_photo.php:307 mod/wall_upload.php:216 mod/photos.php:878 +msgid "Image upload failed." +msgstr "Caricamento immagine fallito." + +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 +#: include/conversation.php:130 include/conversation.php:266 +#: include/text.php:1993 include/diaspora.php:2146 +#: view/theme/diabook/theme.php:471 +msgid "photo" +msgstr "foto" + +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 mod/like.php:346 +#: include/conversation.php:125 include/conversation.php:134 +#: include/conversation.php:261 include/conversation.php:270 +#: include/diaspora.php:2146 view/theme/diabook/theme.php:466 +#: view/theme/diabook/theme.php:475 +msgid "status" +msgstr "stato" + +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" + +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag rimosso" + +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" + +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " + +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Rimuovi" + +#: mod/ostatus_subscribe.php:14 +msgid "Subsribing to OStatus contacts" +msgstr "Iscrizione a contatti OStatus" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "Nessun contatto disponibile." + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "Non è stato possibile recuperare le informazioni del contatto." + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "Non è stato possibile recuperare gli amici del contatto." + +#: mod/ostatus_subscribe.php:51 mod/repair_ostatus.php:44 +msgid "Done" +msgstr "Fatto" + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "successo" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "fallito" + +#: mod/ostatus_subscribe.php:69 object/Item.php:235 +msgid "ignored" +msgstr "ignorato" + +#: mod/ostatus_subscribe.php:73 mod/repair_ostatus.php:50 +msgid "Keep this window open until done." +msgstr "Tieni questa finestra aperta fino a che ha finito." + +#: mod/filer.php:30 include/conversation.php:1133 +#: include/conversation.php:1151 +msgid "Save to Folder:" +msgstr "Salva nella Cartella:" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- seleziona -" + +#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:61 +#: include/text.php:1004 +msgid "Save" +msgstr "Salva" + +#: mod/follow.php:18 mod/dfrn_request.php:863 +msgid "Submit Request" +msgstr "Invia richiesta" + +#: mod/follow.php:29 +msgid "You already added this contact." +msgstr "Hai già aggiunto questo contatto." + +#: mod/follow.php:38 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "Il supporto Diaspora non è abilitato. Il contatto non puo' essere aggiunto." + +#: mod/follow.php:45 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "Il supporto OStatus non è abilitato. Il contatto non puo' essere aggiunto." + +#: mod/follow.php:52 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Non è possibile rilevare il tipo di rete. Il contatto non puo' essere aggiunto." + +#: mod/follow.php:104 mod/dfrn_request.php:849 +msgid "Please answer the following:" +msgstr "Rispondi:" + +#: mod/follow.php:105 mod/dfrn_request.php:850 +#, php-format +msgid "Does %s know you?" +msgstr "%s ti conosce?" + +#: mod/follow.php:105 mod/settings.php:1094 mod/settings.php:1100 +#: mod/settings.php:1108 mod/settings.php:1112 mod/settings.php:1117 +#: mod/settings.php:1123 mod/settings.php:1129 mod/settings.php:1135 +#: mod/settings.php:1161 mod/settings.php:1162 mod/settings.php:1163 +#: mod/settings.php:1164 mod/settings.php:1165 mod/dfrn_request.php:850 +#: mod/register.php:239 mod/profiles.php:658 mod/profiles.php:662 +#: mod/profiles.php:687 mod/api.php:106 +msgid "No" +msgstr "No" + +#: mod/follow.php:106 mod/dfrn_request.php:854 +msgid "Add a personal note:" +msgstr "Aggiungi una nota personale:" + +#: mod/follow.php:112 mod/dfrn_request.php:860 +msgid "Your Identity Address:" +msgstr "L'indirizzo della tua identità:" + +#: mod/follow.php:162 +msgid "Contact added" +msgstr "Contatto aggiunto" + +#: mod/item.php:114 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." + +#: mod/item.php:322 +msgid "Empty post discarded." +msgstr "Messaggio vuoto scartato." + +#: mod/item.php:460 mod/wall_upload.php:213 mod/wall_upload.php:227 +#: mod/wall_upload.php:234 include/Photo.php:954 include/Photo.php:969 +#: include/Photo.php:976 include/Photo.php:998 include/message.php:145 +msgid "Wall Photos" +msgstr "Foto della bacheca" + +#: mod/item.php:834 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Messaggio non salvato." + +#: mod/item.php:963 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica." + +#: mod/item.php:965 +#, php-format +msgid "You may visit them online at %s" +msgstr "Puoi visitarli online su %s" + +#: mod/item.php:966 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi." + +#: mod/item.php:970 +#, php-format +msgid "%s posted an update." +msgstr "%s ha inviato un aggiornamento." + +#: mod/group.php:29 +msgid "Group created." +msgstr "Gruppo creato." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Impossibile creare il gruppo." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Gruppo non trovato." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Il nome del gruppo è cambiato." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "Salva gruppo" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Crea un gruppo di amici/contatti." + +#: mod/group.php:94 mod/group.php:178 include/group.php:289 +msgid "Group Name: " +msgstr "Nome del gruppo:" + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Gruppo rimosso." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Impossibile rimuovere il gruppo." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Modifica gruppo" + +#: mod/group.php:190 +msgid "Members" +msgstr "Membri" + +#: mod/group.php:193 mod/network.php:563 mod/content.php:130 +msgid "Group is empty" +msgstr "Il gruppo è vuoto" + +#: mod/apps.php:7 index.php:225 +msgid "You must be logged in to use addons. " +msgstr "Devi aver effettuato il login per usare gli addons." + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Applicazioni" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Nessuna applicazione installata." + +#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133 +#: mod/profiles.php:179 mod/profiles.php:627 +msgid "Profile not found." +msgstr "Profilo non trovato." + +#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/crepair.php:131 +msgid "Contact not found." +msgstr "Contatto non trovato." + +#: mod/dfrn_confirm.php:121 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata." + +#: mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Errore di comunicazione con l'altro sito." + +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "La risposta dell'altro sito non può essere gestita: " + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Conferma completata con successo." + +#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Il sito remoto riporta: " + +#: mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Problema temporaneo. Attendi e riprova." + +#: mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "La presentazione ha generato un errore o è stata revocata." + +#: mod/dfrn_confirm.php:430 +msgid "Unable to set contact photo." +msgstr "Impossibile impostare la foto del contatto." + +#: mod/dfrn_confirm.php:487 include/conversation.php:185 +#: include/diaspora.php:636 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s e %2$s adesso sono amici" + +#: mod/dfrn_confirm.php:572 +#, php-format +msgid "No user record found for '%s' " +msgstr "Nessun utente trovato '%s'" + +#: mod/dfrn_confirm.php:582 +msgid "Our site encryption key is apparently messed up." +msgstr "La nostra chiave di criptazione del sito sembra essere corrotta." + +#: mod/dfrn_confirm.php:593 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo." + +#: mod/dfrn_confirm.php:614 +msgid "Contact record was not found for you on our site." +msgstr "Il contatto non è stato trovato sul nostro sito." + +#: mod/dfrn_confirm.php:628 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "La chiave pubblica del sito non è disponibile per l'URL %s" + +#: mod/dfrn_confirm.php:648 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare." + +#: mod/dfrn_confirm.php:659 +msgid "Unable to set your contact credentials on our system." +msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema." + +#: mod/dfrn_confirm.php:726 +msgid "Unable to update your contact profile details on our system" +msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema" + +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:734 include/items.php:4270 +msgid "[Name Withheld]" +msgstr "[Nome Nascosto]" + +#: mod/dfrn_confirm.php:798 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s si è unito a %2$s" + +#: mod/profile.php:21 include/identity.php:52 +msgid "Requested profile is not available." +msgstr "Profilo richiesto non disponibile." + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Consigli per i Nuovi Utenti" + +#: mod/videos.php:123 +msgid "Do you really want to delete this video?" +msgstr "Vuoi veramente cancellare questo video?" + +#: mod/videos.php:128 +msgid "Delete Video" +msgstr "Rimuovi video" + +#: mod/videos.php:207 +msgid "No videos selected" +msgstr "Nessun video selezionato" + +#: mod/videos.php:308 mod/photos.php:1087 +msgid "Access to this item is restricted." +msgstr "Questo oggetto non è visibile a tutti." + +#: mod/videos.php:383 include/text.php:1465 +msgid "View Video" +msgstr "Guarda Video" + +#: mod/videos.php:390 mod/photos.php:1890 +msgid "View Album" +msgstr "Sfoglia l'album" + +#: mod/videos.php:399 +msgid "Recent Videos" +msgstr "Video Recenti" + +#: mod/videos.php:401 +msgid "Upload New Videos" +msgstr "Carica Nuovo Video" + +#: mod/tagger.php:95 include/conversation.php:278 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha taggato %3$s di %2$s con %4$s" + +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Suggerimento di amicizia inviato." + +#: mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Suggerisci amici" + +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Suggerisci un amico a %s" + +#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 +#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17 +#: mod/wall_attach.php:25 mod/wall_attach.php:76 include/api.php:1733 +msgid "Invalid request." +msgstr "Richiesta non valida." + +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Nessun account valido trovato." + +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." + +#: mod/lostpass.php:42 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "\nGentile %1$s,\n abbiamo ricevuto su \"%2$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica." + +#: mod/lostpass.php:53 +#, php-format +msgid "" +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "\nSegui questo link per verificare la tua identità:\n\n%1$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2$s\n Nome utente: %3$s" + +#: mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Richiesta reimpostazione password su %s" + +#: mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita." + +#: mod/lostpass.php:109 boot.php:1307 +msgid "Password Reset" +msgstr "Reimpostazione password" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "La tua password è stata reimpostata come richiesto." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "La tua nuova password è" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Salva o copia la tua nuova password, quindi" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "clicca qui per entrare" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso." + +#: mod/lostpass.php:125 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" +msgstr "\nGentile %1$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare." + +#: mod/lostpass.php:131 +#, php-format +msgid "" +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t\t" +msgstr "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato." + +#: mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "La tua password presso %s è stata cambiata" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" + +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Inserisci il tuo indirizzo email per reimpostare la password." + +#: mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Nome utente o email: " + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Reimposta" + +#: mod/like.php:170 include/conversation.php:122 include/conversation.php:258 +#: include/text.php:1991 view/theme/diabook/theme.php:463 +msgid "event" +msgstr "l'evento" + +#: mod/like.php:187 include/conversation.php:141 include/diaspora.php:2162 +#: view/theme/diabook/theme.php:480 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" + +#: mod/like.php:189 include/conversation.php:144 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" + +#: mod/like.php:191 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s parteciperà a %3$s di %2$s" + +#: mod/like.php:193 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s non parteciperà a %3$s di %2$s" + +#: mod/like.php:195 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s forse parteciperà a %3$s di %2$s" + +#: mod/ping.php:265 +msgid "{0} wants to be your friend" +msgstr "{0} vuole essere tuo amico" + +#: mod/ping.php:280 +msgid "{0} sent you a message" +msgstr "{0} ti ha inviato un messaggio" + +#: mod/ping.php:295 +msgid "{0} requested registration" +msgstr "{0} chiede la registrazione" + +#: mod/viewcontacts.php:72 +msgid "No contacts." +msgstr "Nessun contatto." + +#: mod/notifications.php:29 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." + +#: mod/notifications.php:38 mod/notifications.php:180 +#: mod/notifications.php:260 +msgid "Discard" +msgstr "Scarta" + +#: mod/notifications.php:81 +msgid "System" +msgstr "Sistema" + +#: mod/notifications.php:87 mod/admin.php:228 include/nav.php:154 +msgid "Network" +msgstr "Rete" + +#: mod/notifications.php:93 mod/network.php:381 +msgid "Personal" +msgstr "Personale" + +#: mod/notifications.php:99 include/nav.php:104 include/nav.php:157 +#: view/theme/diabook/theme.php:123 +msgid "Home" +msgstr "Home" + +#: mod/notifications.php:105 include/nav.php:162 +msgid "Introductions" +msgstr "Presentazioni" + +#: mod/notifications.php:130 +msgid "Show Ignored Requests" +msgstr "Mostra richieste ignorate" + +#: mod/notifications.php:130 +msgid "Hide Ignored Requests" +msgstr "Nascondi richieste ignorate" + +#: mod/notifications.php:164 mod/notifications.php:234 +msgid "Notification type: " +msgstr "Tipo di notifica: " + +#: mod/notifications.php:165 +msgid "Friend Suggestion" +msgstr "Amico suggerito" + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "sugerito da %s" + +#: mod/notifications.php:173 mod/notifications.php:252 +msgid "Post a new friend activity" +msgstr "Invia una attività \"è ora amico con\"" + +#: mod/notifications.php:173 mod/notifications.php:252 +msgid "if applicable" +msgstr "se applicabile" + +#: mod/notifications.php:176 mod/notifications.php:257 mod/admin.php:1113 +msgid "Approve" +msgstr "Approva" + +#: mod/notifications.php:196 +msgid "Claims to be known to you: " +msgstr "Dice di conoscerti: " + +#: mod/notifications.php:196 +msgid "yes" +msgstr "si" + +#: mod/notifications.php:196 +msgid "no" +msgstr "no" + +#: mod/notifications.php:197 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " +msgstr "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Fan/Ammiratore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:" + +#: mod/notifications.php:200 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " +msgstr "La connessione dovrà essere bidirezionale o no? \"Amici\" implica che tu permetti al contatto di leggere i tuoi post e tu leggerai i suoi. \"Condivisore\" significa che permetti al contatto di leggere i tuoi posto ma tu non vuoi leggere i suoi. Approva come:" + +#: mod/notifications.php:208 +msgid "Friend" +msgstr "Amico" + +#: mod/notifications.php:209 +msgid "Sharer" +msgstr "Condivisore" + +#: mod/notifications.php:209 +msgid "Fan/Admirer" +msgstr "Fan/Ammiratore" + +#: mod/notifications.php:235 +msgid "Friend/Connect Request" +msgstr "Richiesta amicizia/connessione" + +#: mod/notifications.php:235 +msgid "New Follower" +msgstr "Qualcuno inizia a seguirti" + +#: mod/notifications.php:250 mod/directory.php:147 include/identity.php:306 +#: include/identity.php:580 +msgid "Gender:" +msgstr "Genere:" + +#: mod/notifications.php:266 +msgid "No introductions." +msgstr "Nessuna presentazione." + +#: mod/notifications.php:269 include/nav.php:165 +msgid "Notifications" +msgstr "Notifiche" + +#: mod/notifications.php:307 mod/notifications.php:436 +#: mod/notifications.php:527 +#, php-format +msgid "%s liked %s's post" +msgstr "a %s è piaciuto il messaggio di %s" + +#: mod/notifications.php:317 mod/notifications.php:446 +#: mod/notifications.php:537 +#, php-format +msgid "%s disliked %s's post" +msgstr "a %s non è piaciuto il messaggio di %s" + +#: mod/notifications.php:332 mod/notifications.php:461 +#: mod/notifications.php:552 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s è ora amico di %s" + +#: mod/notifications.php:339 mod/notifications.php:468 +#, php-format +msgid "%s created a new post" +msgstr "%s a creato un nuovo messaggio" + +#: mod/notifications.php:340 mod/notifications.php:469 +#: mod/notifications.php:562 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s ha commentato il messaggio di %s" + +#: mod/notifications.php:355 +msgid "No more network notifications." +msgstr "Nessuna nuova." + +#: mod/notifications.php:359 +msgid "Network Notifications" +msgstr "Notifiche dalla rete" + +#: mod/notifications.php:385 mod/notify.php:72 +msgid "No more system notifications." +msgstr "Nessuna nuova notifica di sistema." + +#: mod/notifications.php:389 mod/notify.php:76 +msgid "System Notifications" +msgstr "Notifiche di sistema" + +#: mod/notifications.php:484 +msgid "No more personal notifications." +msgstr "Nessuna nuova." + +#: mod/notifications.php:488 +msgid "Personal Notifications" +msgstr "Notifiche personali" + +#: mod/notifications.php:569 +msgid "No more home notifications." +msgstr "Nessuna nuova." + +#: mod/notifications.php:573 +msgid "Home Notifications" +msgstr "Notifiche bacheca" + +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Testo sorgente (bbcode):" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "Sorgente:" + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (HTML grezzo):" + +#: mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html:" + +#: mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " + +#: mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Sorgente (formato Diaspora):" + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/navigation.php:19 include/nav.php:33 +msgid "Nothing new here" +msgstr "Niente di nuovo qui" + +#: mod/navigation.php:23 include/nav.php:37 +msgid "Clear notifications" +msgstr "Pulisci le notifiche" + +#: mod/message.php:15 include/nav.php:174 +msgid "New Message" +msgstr "Nuovo messaggio" + +#: mod/message.php:70 mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Nessun destinatario selezionato." + +#: mod/message.php:74 +msgid "Unable to locate contact information." +msgstr "Impossibile trovare le informazioni del contatto." + +#: mod/message.php:77 mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Il messaggio non puo' essere inviato." + +#: mod/message.php:80 mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Errore recuperando il messaggio." + +#: mod/message.php:83 mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Messaggio inviato." + +#: mod/message.php:189 include/nav.php:171 +msgid "Messages" +msgstr "Messaggi" + +#: mod/message.php:214 +msgid "Do you really want to delete this message?" +msgstr "Vuoi veramente cancellare questo messaggio?" + +#: mod/message.php:234 +msgid "Message deleted." +msgstr "Messaggio eliminato." + +#: mod/message.php:265 +msgid "Conversation removed." +msgstr "Conversazione rimossa." + +#: mod/message.php:290 mod/message.php:298 mod/message.php:427 +#: mod/message.php:435 mod/wallmessage.php:127 mod/wallmessage.php:135 +#: include/conversation.php:1129 include/conversation.php:1147 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" + +#: mod/message.php:326 mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" + +#: mod/message.php:327 mod/message.php:514 mod/wallmessage.php:144 +msgid "To:" +msgstr "A:" + +#: mod/message.php:332 mod/message.php:516 mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Oggetto:" + +#: mod/message.php:336 mod/message.php:519 mod/wallmessage.php:151 +#: mod/invite.php:134 +msgid "Your message:" +msgstr "Il tuo messaggio:" + +#: mod/message.php:339 mod/message.php:523 mod/wallmessage.php:154 +#: mod/editpost.php:110 include/conversation.php:1184 +msgid "Upload photo" +msgstr "Carica foto" + +#: mod/message.php:340 mod/message.php:524 mod/wallmessage.php:155 +#: mod/editpost.php:114 include/conversation.php:1188 +msgid "Insert web link" +msgstr "Inserisci link" + +#: mod/message.php:341 mod/message.php:526 mod/content.php:501 +#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124 +#: mod/photos.php:1610 object/Item.php:396 include/conversation.php:713 +#: include/conversation.php:1202 +msgid "Please wait" +msgstr "Attendi" + +#: mod/message.php:368 +msgid "No messages." +msgstr "Nessun messaggio." + +#: mod/message.php:411 +msgid "Message not available." +msgstr "Messaggio non disponibile." + +#: mod/message.php:481 +msgid "Delete message" +msgstr "Elimina il messaggio" + +#: mod/message.php:507 mod/message.php:582 +msgid "Delete conversation" +msgstr "Elimina la conversazione" + +#: mod/message.php:509 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente." + +#: mod/message.php:513 +msgid "Send Reply" +msgstr "Invia la risposta" + +#: mod/message.php:555 +#, php-format +msgid "Unknown sender - %s" +msgstr "Mittente sconosciuto - %s" + +#: mod/message.php:558 +#, php-format +msgid "You and %s" +msgstr "Tu e %s" + +#: mod/message.php:561 +#, php-format +msgid "%s and You" +msgstr "%s e Tu" + +#: mod/message.php:585 +msgid "D, d M Y - g:i A" +msgstr "D d M Y - G:i" + +#: mod/message.php:588 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d messaggio" +msgstr[1] "%d messaggi" + +#: mod/update_display.php:22 mod/update_community.php:18 +#: mod/update_notes.php:37 mod/update_profile.php:41 mod/update_network.php:25 +msgid "[Embedded content - reload page to view]" +msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" + +#: mod/crepair.php:104 +msgid "Contact settings applied." +msgstr "Contatto modificato." + +#: mod/crepair.php:106 +msgid "Contact update failed." +msgstr "Le modifiche al contatto non sono state salvate." + +#: mod/crepair.php:137 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più" + +#: mod/crepair.php:138 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina." + +#: mod/crepair.php:151 mod/crepair.php:153 +msgid "No mirroring" +msgstr "Non duplicare" + +#: mod/crepair.php:151 +msgid "Mirror as forwarded posting" +msgstr "Duplica come messaggi ricondivisi" + +#: mod/crepair.php:151 mod/crepair.php:153 +msgid "Mirror as my own posting" +msgstr "Duplica come miei messaggi" + +#: mod/crepair.php:167 +msgid "Return to contact editor" +msgstr "Ritorna alla modifica contatto" + +#: mod/crepair.php:169 +msgid "Refetch contact data" +msgstr "Ricarica dati contatto" + +#: mod/crepair.php:170 mod/admin.php:1111 mod/admin.php:1123 +#: mod/admin.php:1124 mod/admin.php:1137 mod/settings.php:652 +#: mod/settings.php:678 +msgid "Name" +msgstr "Nome" + +#: mod/crepair.php:171 +msgid "Account Nickname" +msgstr "Nome utente" + +#: mod/crepair.php:172 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@TagName - al posto del nome utente" + +#: mod/crepair.php:173 +msgid "Account URL" +msgstr "URL dell'utente" + +#: mod/crepair.php:174 +msgid "Friend Request URL" +msgstr "URL Richiesta Amicizia" + +#: mod/crepair.php:175 +msgid "Friend Confirm URL" +msgstr "URL Conferma Amicizia" + +#: mod/crepair.php:176 +msgid "Notification Endpoint URL" +msgstr "URL Notifiche" + +#: mod/crepair.php:177 +msgid "Poll/Feed URL" +msgstr "URL Feed" + +#: mod/crepair.php:178 +msgid "New photo from this URL" +msgstr "Nuova foto da questo URL" + +#: mod/crepair.php:179 +msgid "Remote Self" +msgstr "Io remoto" + +#: mod/crepair.php:182 +msgid "Mirror postings from this contact" +msgstr "Ripeti i messaggi di questo contatto" + +#: mod/crepair.php:184 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto." + +#: mod/bookmarklet.php:12 boot.php:1293 include/nav.php:91 +msgid "Login" +msgstr "Accedi" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "Il messaggio è stato creato" + +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accesso negato." + +#: mod/dirfind.php:188 mod/allfriends.php:75 mod/match.php:85 +#: mod/suggest.php:98 include/contact_widgets.php:10 include/identity.php:209 +msgid "Connect" +msgstr "Connetti" + +#: mod/dirfind.php:189 mod/allfriends.php:59 mod/match.php:70 +#: mod/directory.php:162 mod/suggest.php:81 include/Contact.php:307 +#: include/Contact.php:320 include/Contact.php:362 +#: include/conversation.php:912 include/conversation.php:926 +msgid "View Profile" +msgstr "Visualizza profilo" + +#: mod/dirfind.php:218 +#, php-format +msgid "People Search - %s" +msgstr "Cerca persone - %s" + +#: mod/dirfind.php:225 mod/match.php:105 +msgid "No matches" +msgstr "Nessun risultato" + +#: mod/fbrowser.php:32 include/identity.php:693 include/nav.php:77 +#: view/theme/diabook/theme.php:126 +msgid "Photos" +msgstr "Foto" + +#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:62 +#: mod/photos.php:192 mod/photos.php:1119 mod/photos.php:1245 +#: mod/photos.php:1268 mod/photos.php:1838 mod/photos.php:1850 +#: view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Foto dei contatti" + +#: mod/fbrowser.php:125 +msgid "Files" +msgstr "File" + +#: mod/nogroup.php:63 +msgid "Contacts who are not members of a group" +msgstr "Contatti che non sono membri di un gruppo" + +#: mod/admin.php:80 +msgid "Theme settings updated." +msgstr "Impostazioni del tema aggiornate." + +#: mod/admin.php:127 mod/admin.php:711 +msgid "Site" +msgstr "Sito" + +#: mod/admin.php:128 mod/admin.php:655 mod/admin.php:1106 mod/admin.php:1121 +msgid "Users" +msgstr "Utenti" + +#: mod/admin.php:129 mod/admin.php:1210 mod/admin.php:1270 mod/settings.php:66 +msgid "Plugins" +msgstr "Plugin" + +#: mod/admin.php:130 mod/admin.php:1455 mod/admin.php:1506 +msgid "Themes" +msgstr "Temi" + +#: mod/admin.php:131 +msgid "DB updates" +msgstr "Aggiornamenti Database" + +#: mod/admin.php:132 mod/admin.php:223 +msgid "Inspect Queue" +msgstr "Ispeziona Coda di invio" + +#: mod/admin.php:147 mod/admin.php:156 mod/admin.php:1594 +msgid "Logs" +msgstr "Log" + +#: mod/admin.php:148 +msgid "probe address" +msgstr "controlla indirizzo" + +#: mod/admin.php:149 +msgid "check webfinger" +msgstr "verifica webfinger" + +#: mod/admin.php:154 include/nav.php:194 +msgid "Admin" +msgstr "Amministrazione" + +#: mod/admin.php:155 +msgid "Plugin Features" +msgstr "Impostazioni Plugins" + +#: mod/admin.php:157 +msgid "diagnostics" +msgstr "diagnostiche" + +#: mod/admin.php:158 +msgid "User registrations waiting for confirmation" +msgstr "Utenti registrati in attesa di conferma" + +#: mod/admin.php:222 mod/admin.php:272 mod/admin.php:710 mod/admin.php:1105 +#: mod/admin.php:1209 mod/admin.php:1269 mod/admin.php:1454 mod/admin.php:1505 +#: mod/admin.php:1593 +msgid "Administration" +msgstr "Amministrazione" + +#: mod/admin.php:225 +msgid "ID" +msgstr "ID" + +#: mod/admin.php:226 +msgid "Recipient Name" +msgstr "Nome Destinatario" + +#: mod/admin.php:227 +msgid "Recipient Profile" +msgstr "Profilo Destinatario" + +#: mod/admin.php:229 +msgid "Created" +msgstr "Creato" + +#: mod/admin.php:230 +msgid "Last Tried" +msgstr "Ultimo Tentativo" + +#: mod/admin.php:231 +msgid "" +"This page lists the content of the queue for outgoing postings. These are " +"postings the initial delivery failed for. They will be resend later and " +"eventually deleted if the delivery fails permanently." +msgstr "Questa pagina elenca il contenuto della coda di invo dei post. Questi sono post la cui consegna è fallita. Verranno reinviati più tardi ed eventualmente cancellati se la consegna continua a fallire." + +#: mod/admin.php:243 mod/admin.php:1059 +msgid "Normal Account" +msgstr "Account normale" + +#: mod/admin.php:244 mod/admin.php:1060 +msgid "Soapbox Account" +msgstr "Account per comunicati e annunci" + +#: mod/admin.php:245 mod/admin.php:1061 +msgid "Community/Celebrity Account" +msgstr "Account per celebrità o per comunità" + +#: mod/admin.php:246 mod/admin.php:1062 +msgid "Automatic Friend Account" +msgstr "Account per amicizia automatizzato" + +#: mod/admin.php:247 +msgid "Blog Account" +msgstr "Account Blog" + +#: mod/admin.php:248 +msgid "Private Forum" +msgstr "Forum Privato" + +#: mod/admin.php:267 +msgid "Message queues" +msgstr "Code messaggi" + +#: mod/admin.php:273 +msgid "Summary" +msgstr "Sommario" + +#: mod/admin.php:275 +msgid "Registered users" +msgstr "Utenti registrati" + +#: mod/admin.php:277 +msgid "Pending registrations" +msgstr "Registrazioni in attesa" + +#: mod/admin.php:278 +msgid "Version" +msgstr "Versione" + +#: mod/admin.php:283 +msgid "Active plugins" +msgstr "Plugin attivi" + +#: mod/admin.php:306 +msgid "Can not parse base url. Must have at least ://" +msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]" + +#: mod/admin.php:587 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "RINO2 necessita dell'estensione php mcrypt per funzionare." + +#: mod/admin.php:595 +msgid "Site settings updated." +msgstr "Impostazioni del sito aggiornate." + +#: mod/admin.php:619 mod/settings.php:903 +msgid "No special theme for mobile devices" +msgstr "Nessun tema speciale per i dispositivi mobili" + +#: mod/admin.php:638 +msgid "No community page" +msgstr "Nessuna pagina Comunità" + +#: mod/admin.php:639 +msgid "Public postings from users of this site" +msgstr "Messaggi pubblici dagli utenti di questo sito" + +#: mod/admin.php:640 +msgid "Global community page" +msgstr "Pagina Comunità globale" + +#: mod/admin.php:646 +msgid "At post arrival" +msgstr "All'arrivo di un messaggio" + +#: mod/admin.php:647 include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Frequentemente" + +#: mod/admin.php:648 include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Ogni ora" + +#: mod/admin.php:649 include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Due volte al dì" + +#: mod/admin.php:650 include/contact_selectors.php:59 +msgid "Daily" +msgstr "Giornalmente" + +#: mod/admin.php:656 +msgid "Users, Global Contacts" +msgstr "Utenti, Contatti Globali" + +#: mod/admin.php:657 +msgid "Users, Global Contacts/fallback" +msgstr "Utenti, Contatti Globali/fallback" + +#: mod/admin.php:661 +msgid "One month" +msgstr "Un mese" + +#: mod/admin.php:662 +msgid "Three months" +msgstr "Tre mesi" + +#: mod/admin.php:663 +msgid "Half a year" +msgstr "Sei mesi" + +#: mod/admin.php:664 +msgid "One year" +msgstr "Un anno" + +#: mod/admin.php:669 +msgid "Multi user instance" +msgstr "Istanza multi utente" + +#: mod/admin.php:692 +msgid "Closed" +msgstr "Chiusa" + +#: mod/admin.php:693 +msgid "Requires approval" +msgstr "Richiede l'approvazione" + +#: mod/admin.php:694 +msgid "Open" +msgstr "Aperta" + +#: mod/admin.php:698 +msgid "No SSL policy, links will track page SSL state" +msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina" + +#: mod/admin.php:699 +msgid "Force all links to use SSL" +msgstr "Forza tutti i linki ad usare SSL" + +#: mod/admin.php:700 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)" + +#: mod/admin.php:712 mod/admin.php:1271 mod/admin.php:1507 mod/admin.php:1595 +#: mod/settings.php:650 mod/settings.php:760 mod/settings.php:804 +#: mod/settings.php:873 mod/settings.php:960 mod/settings.php:1195 +msgid "Save Settings" +msgstr "Salva Impostazioni" + +#: mod/admin.php:713 mod/register.php:263 +msgid "Registration" +msgstr "Registrazione" + +#: mod/admin.php:714 +msgid "File upload" +msgstr "Caricamento file" + +#: mod/admin.php:715 +msgid "Policies" +msgstr "Politiche" + +#: mod/admin.php:716 +msgid "Advanced" +msgstr "Avanzate" + +#: mod/admin.php:717 +msgid "Auto Discovered Contact Directory" +msgstr "Elenco Contatti Scoperto Automaticamente" + +#: mod/admin.php:718 +msgid "Performance" +msgstr "Performance" + +#: mod/admin.php:719 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile." + +#: mod/admin.php:722 +msgid "Site name" +msgstr "Nome del sito" + +#: mod/admin.php:723 +msgid "Host name" +msgstr "Nome host" + +#: mod/admin.php:724 +msgid "Sender Email" +msgstr "Mittente email" + +#: mod/admin.php:724 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "L'indirizzo email che il tuo server dovrà usare per inviare notifiche via email." + +#: mod/admin.php:725 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: mod/admin.php:726 +msgid "Shortcut icon" +msgstr "Icona shortcut" + +#: mod/admin.php:726 +msgid "Link to an icon that will be used for browsers." +msgstr "Link verso un'icona che verrà usata dai browsers." + +#: mod/admin.php:727 +msgid "Touch icon" +msgstr "Icona touch" + +#: mod/admin.php:727 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Link verso un'icona che verrà usata dai tablet e i telefonini." + +#: mod/admin.php:728 +msgid "Additional Info" +msgstr "Informazioni aggiuntive" + +#: mod/admin.php:728 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su %s/siteinfo." + +#: mod/admin.php:729 +msgid "System language" +msgstr "Lingua di sistema" + +#: mod/admin.php:730 +msgid "System theme" +msgstr "Tema di sistema" + +#: mod/admin.php:730 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema" + +#: mod/admin.php:731 +msgid "Mobile system theme" +msgstr "Tema mobile di sistema" + +#: mod/admin.php:731 +msgid "Theme for mobile devices" +msgstr "Tema per dispositivi mobili" + +#: mod/admin.php:732 +msgid "SSL link policy" +msgstr "Gestione link SSL" + +#: mod/admin.php:732 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Determina se i link generati devono essere forzati a usare SSL" + +#: mod/admin.php:733 +msgid "Force SSL" +msgstr "Forza SSL" + +#: mod/admin.php:733 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "Forza tutte le richieste non SSL su SSL - Attenzione: su alcuni sistemi puo' portare a loop senza fine" + +#: mod/admin.php:734 +msgid "Old style 'Share'" +msgstr "Ricondivisione vecchio stile" + +#: mod/admin.php:734 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti" + +#: mod/admin.php:735 +msgid "Hide help entry from navigation menu" +msgstr "Nascondi la voce 'Guida' dal menu di navigazione" + +#: mod/admin.php:735 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente." + +#: mod/admin.php:736 +msgid "Single user instance" +msgstr "Instanza a singolo utente" + +#: mod/admin.php:736 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato" + +#: mod/admin.php:737 +msgid "Maximum image size" +msgstr "Massima dimensione immagini" + +#: mod/admin.php:737 +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:738 +msgid "Maximum image length" +msgstr "Massima lunghezza immagine" + +#: mod/admin.php:738 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite." + +#: mod/admin.php:739 +msgid "JPEG image quality" +msgstr "Qualità immagini JPEG" + +#: mod/admin.php:739 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena." + +#: mod/admin.php:741 +msgid "Register policy" +msgstr "Politica di registrazione" + +#: mod/admin.php:742 +msgid "Maximum Daily Registrations" +msgstr "Massime registrazioni giornaliere" + +#: mod/admin.php:742 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto." + +#: mod/admin.php:743 +msgid "Register text" +msgstr "Testo registrazione" + +#: mod/admin.php:743 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." + +#: mod/admin.php:744 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo x giorni" + +#: mod/admin.php:744 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo." + +#: mod/admin.php:745 +msgid "Allowed friend domains" +msgstr "Domini amici consentiti" + +#: mod/admin.php:745 +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 virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." + +#: mod/admin.php:746 +msgid "Allowed email domains" +msgstr "Domini email consentiti" + +#: mod/admin.php:746 +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 a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." + +#: mod/admin.php:747 +msgid "Block public" +msgstr "Blocca pagine pubbliche" + +#: mod/admin.php:747 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato." + +#: mod/admin.php:748 +msgid "Force publish" +msgstr "Forza publicazione" + +#: mod/admin.php:748 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito." + +#: mod/admin.php:749 +msgid "Global directory URL" +msgstr "URL della directory globale" + +#: mod/admin.php:749 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato." + +#: mod/admin.php:750 +msgid "Allow threaded items" +msgstr "Permetti commenti nidificati" + +#: mod/admin.php:750 +msgid "Allow infinite level threading for items on this site." +msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito." + +#: mod/admin.php:751 +msgid "Private posts by default for new users" +msgstr "Post privati di default per i nuovi utenti" + +#: mod/admin.php:751 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici." + +#: mod/admin.php:752 +msgid "Don't include post content in email notifications" +msgstr "Non includere il contenuto dei post nelle notifiche via email" + +#: mod/admin.php:752 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy" + +#: mod/admin.php:753 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps." + +#: mod/admin.php:753 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Selezionando questo box si limiterà ai soli membri l'accesso agli addon nel menu applicazioni" + +#: mod/admin.php:754 +msgid "Don't embed private images in posts" +msgstr "Non inglobare immagini private nei post" + +#: mod/admin.php:754 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che puo' richiedere un po' di tempo." + +#: mod/admin.php:755 +msgid "Allow Users to set remote_self" +msgstr "Permetti agli utenti di impostare 'io remoto'" + +#: mod/admin.php:755 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream del'utente." + +#: mod/admin.php:756 +msgid "Block multiple registrations" +msgstr "Blocca registrazioni multiple" + +#: mod/admin.php:756 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Non permette all'utente di registrare account extra da usare come pagine." + +#: mod/admin.php:757 +msgid "OpenID support" +msgstr "Supporto OpenID" + +#: mod/admin.php:757 +msgid "OpenID support for registration and logins." +msgstr "Supporta OpenID per la registrazione e il login" + +#: mod/admin.php:758 +msgid "Fullname check" +msgstr "Controllo nome completo" + +#: mod/admin.php:758 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam" + +#: mod/admin.php:759 +msgid "UTF-8 Regular expressions" +msgstr "Espressioni regolari UTF-8" + +#: mod/admin.php:759 +msgid "Use PHP UTF8 regular expressions" +msgstr "Usa le espressioni regolari PHP in UTF8" + +#: mod/admin.php:760 +msgid "Community Page Style" +msgstr "Stile pagina Comunità" + +#: mod/admin.php:760 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "Tipo di pagina Comunità da mostrare. 'Comunità Globale' mostra tutti i messaggi pubblici arrivati su questo server da network aperti distribuiti." + +#: mod/admin.php:761 +msgid "Posts per user on community page" +msgstr "Messaggi per utente nella pagina Comunità" + +#: mod/admin.php:761 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "Il numero massimo di messaggi per utente mostrato nella pagina Comuntà (non valido per 'Comunità globale')" + +#: mod/admin.php:762 +msgid "Enable OStatus support" +msgstr "Abilita supporto OStatus" + +#: mod/admin.php:762 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente." + +#: mod/admin.php:763 +msgid "OStatus conversation completion interval" +msgstr "Intervallo completamento conversazioni OStatus" + +#: mod/admin.php:763 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse." + +#: mod/admin.php:764 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "Il supporto OStatus puo' essere abilitato solo se è abilitato il threading." + +#: mod/admin.php:766 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "Il supporto a Diaspora non puo' essere abilitato perchè Friendica è stato installato in una sotto directory." + +#: mod/admin.php:767 +msgid "Enable Diaspora support" +msgstr "Abilita il supporto a Diaspora" + +#: mod/admin.php:767 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Fornisce compatibilità con il network Diaspora." + +#: mod/admin.php:768 +msgid "Only allow Friendica contacts" +msgstr "Permetti solo contatti Friendica" + +#: mod/admin.php:768 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati." + +#: mod/admin.php:769 +msgid "Verify SSL" +msgstr "Verifica SSL" + +#: mod/admin.php:769 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati." + +#: mod/admin.php:770 +msgid "Proxy user" +msgstr "Utente Proxy" + +#: mod/admin.php:771 +msgid "Proxy URL" +msgstr "URL Proxy" + +#: mod/admin.php:772 +msgid "Network timeout" +msgstr "Timeout rete" + +#: mod/admin.php:772 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)." + +#: mod/admin.php:773 +msgid "Delivery interval" +msgstr "Intervallo di invio" + +#: mod/admin.php:773 +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 "Ritarda il processo di invio in background di n secondi per ridurre il carico di sistema. Raccomandato: 4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati." + +#: mod/admin.php:774 +msgid "Poll interval" +msgstr "Intervallo di poll" + +#: mod/admin.php:774 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio." + +#: mod/admin.php:775 +msgid "Maximum Load Average" +msgstr "Massimo carico medio" + +#: mod/admin.php:775 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50." + +#: mod/admin.php:776 +msgid "Maximum Load Average (Frontend)" +msgstr "Media Massimo Carico (Frontend)" + +#: mod/admin.php:776 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Massimo carico di sistema prima che il frontend fermi il servizio - default 50." + +#: mod/admin.php:777 +msgid "Maximum table size for optimization" +msgstr "Dimensione massima della tabella per l'ottimizzazione" + +#: mod/admin.php:777 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "La dimensione massima (in MB) per l'ottimizzazione automatica - default 100 MB. Inserisci -1 per disabilitarlo." + +#: mod/admin.php:779 +msgid "Periodical check of global contacts" +msgstr "Check periodico dei contatti globali" + +#: mod/admin.php:779 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "Se abilitato, i contatti globali sono controllati periodicamente per verificare dati mancanti o sorpassati e la vitaltà dei contatti e dei server." + +#: mod/admin.php:780 +msgid "Days between requery" +msgstr "Giorni tra le richieste" + +#: mod/admin.php:780 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "Numero di giorni dopo i quali al server vengono richiesti i suoi contatti." + +#: mod/admin.php:781 +msgid "Discover contacts from other servers" +msgstr "Trova contatti dagli altri server" + +#: mod/admin.php:781 +msgid "" +"Periodically query other servers for contacts. You can choose between " +"'users': the users on the remote system, 'Global Contacts': active contacts " +"that are known on the system. The fallback is meant for Redmatrix servers " +"and older friendica servers, where global contacts weren't available. The " +"fallback increases the server load, so the recommened setting is 'Users, " +"Global Contacts'." +msgstr "Richiede periodicamente contatti agli altri server. Puoi scegliere tra 'utenti', gli uenti sul sistema remoto, o 'contatti globali', i contatti attivi che sono conosciuti dal sistema. Il fallback è pensato per i server Redmatrix e i vecchi server Friendica, dove i contatti globali non sono disponibili. Il fallback incrementa il carico di sistema, per cui l'impostazione consigliata è \"Utenti, Contatti Globali\"." + +#: mod/admin.php:782 +msgid "Timeframe for fetching global contacts" +msgstr "Termine per il recupero contatti globali" + +#: mod/admin.php:782 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "Quando si attiva la scoperta, questo valore definisce il periodo di tempo per l'attività dei contatti globali che vengono prelevati da altri server." + +#: mod/admin.php:783 +msgid "Search the local directory" +msgstr "Cerca la directory locale" + +#: mod/admin.php:783 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "Cerca nella directory locale invece che nella directory globale. Durante la ricerca a livello locale, ogni ricerca verrà eseguita sulla directory globale in background. Ciò migliora i risultati della ricerca quando la ricerca viene ripetuta." + +#: mod/admin.php:785 +msgid "Publish server information" +msgstr "Pubblica informazioni server" + +#: mod/admin.php:785 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "Se abilitata, saranno pubblicati i dati generali del server e i dati di utilizzo. I dati contengono il nome e la versione del server, il numero di utenti con profili pubblici, numero dei posti e dei protocolli e connettori attivati. Per informazioni, vedere the-federation.info ." + +#: mod/admin.php:787 +msgid "Use MySQL full text engine" +msgstr "Usa il motore MySQL full text" + +#: mod/admin.php:787 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri." + +#: mod/admin.php:788 +msgid "Suppress Language" +msgstr "Disattiva lingua" + +#: mod/admin.php:788 +msgid "Suppress language information in meta information about a posting." +msgstr "Disattiva le informazioni sulla lingua nei meta di un post." + +#: mod/admin.php:789 +msgid "Suppress Tags" +msgstr "Sopprimi Tags" + +#: mod/admin.php:789 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "Non mostra la lista di hashtag in coda al messaggio" + +#: mod/admin.php:790 +msgid "Path to item cache" +msgstr "Percorso cache elementi" + +#: mod/admin.php:790 +msgid "The item caches buffers generated bbcode and external images." +msgstr "La cache degli elementi memorizza il bbcode generato e le immagini esterne." + +#: mod/admin.php:791 +msgid "Cache duration in seconds" +msgstr "Durata della cache in secondi" + +#: mod/admin.php:791 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno). Per disabilitare la cache, imposta il valore a -1." + +#: mod/admin.php:792 +msgid "Maximum numbers of comments per post" +msgstr "Numero massimo di commenti per post" + +#: mod/admin.php:792 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "Quanti commenti devono essere mostrati per ogni post? Default : 100." + +#: mod/admin.php:793 +msgid "Path for lock file" +msgstr "Percorso al file di lock" + +#: mod/admin.php:793 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "Il file di lock è usato per evitare l'avvio di poller multipli allo stesso tempo. Inserisci solo la cartella, qui." + +#: mod/admin.php:794 +msgid "Temp path" +msgstr "Percorso file temporanei" + +#: mod/admin.php:794 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Se si dispone di un sistema ristretto in cui il server web non può accedere al percorso temporaneo di sistema, inserire un altro percorso qui." + +#: mod/admin.php:795 +msgid "Base path to installation" +msgstr "Percorso base all'installazione" + +#: mod/admin.php:795 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "Se il sistema non è in grado di rilevare il percorso corretto per l'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot." + +#: mod/admin.php:796 +msgid "Disable picture proxy" +msgstr "Disabilita il proxy immagini" + +#: mod/admin.php:796 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "Il proxy immagini aumenta le performace e la privacy. Non dovrebbe essere usato su server con poca banda disponibile." + +#: mod/admin.php:797 +msgid "Enable old style pager" +msgstr "Abilita la paginazione vecchio stile" + +#: mod/admin.php:797 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "La paginazione vecchio stile mostra i numeri delle pagine, ma rallenta la velocità di caricamento della pagina." + +#: mod/admin.php:798 +msgid "Only search in tags" +msgstr "Cerca solo nei tag" + +#: mod/admin.php:798 +msgid "On large systems the text search can slow down the system extremely." +msgstr "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema." + +#: mod/admin.php:800 +msgid "New base url" +msgstr "Nuovo url base" + +#: mod/admin.php:800 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "Cambia l'url base di questo server. Invia il messaggio di trasloco a tutti i contatti DFRN di tutti gli utenti." + +#: mod/admin.php:802 +msgid "RINO Encryption" +msgstr "Crittografia RINO" + +#: mod/admin.php:802 +msgid "Encryption layer between nodes." +msgstr "Crittografia delle comunicazioni tra nodi." + +#: mod/admin.php:803 +msgid "Embedly API key" +msgstr "Embedly API key" + +#: mod/admin.php:803 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "Embedly è usato per recuperate informazioni addizionali dalle pagine web. Questo parametro è opzionale." + +#: mod/admin.php:821 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato segnato come di successo" + +#: mod/admin.php:829 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Aggiornamento struttura database %s applicata con successo." + +#: mod/admin.php:832 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "Aggiornamento struttura database %s fallita con errore: %s" + +#: mod/admin.php:844 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Esecuzione di %s fallita con errore: %s" + +#: mod/admin.php:847 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è stato applicato con successo" + +#: mod/admin.php:851 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine." + +#: mod/admin.php:853 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "Non ci sono altre funzioni di aggiornamento %s da richiamare." + +#: mod/admin.php:872 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." + +#: mod/admin.php:873 +msgid "Check database structure" +msgstr "Controlla struttura database" + +#: mod/admin.php:878 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti" + +#: mod/admin.php:879 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato." + +#: mod/admin.php:880 +msgid "Mark success (if update was manually applied)" +msgstr "Segna completato (se l'update è stato applicato manualmente)" + +#: mod/admin.php:881 +msgid "Attempt to execute this update step automatically" +msgstr "Cerco di eseguire questo aggiornamento in automatico" + +#: mod/admin.php:913 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "\nGentile %1$s,\n l'amministratore di %2$s ha impostato un account per te." + +#: mod/admin.php:916 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tThank you and welcome to %4$s." +msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %4$s" + +#: mod/admin.php:948 include/user.php:423 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" + +#: mod/admin.php:960 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s utente bloccato/sbloccato" +msgstr[1] "%s utenti bloccati/sbloccati" + +#: mod/admin.php:967 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utente cancellato" +msgstr[1] "%s utenti cancellati" + +#: mod/admin.php:1006 +#, php-format +msgid "User '%s' deleted" +msgstr "Utente '%s' cancellato" + +#: mod/admin.php:1014 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utente '%s' sbloccato" + +#: mod/admin.php:1014 +#, php-format +msgid "User '%s' blocked" +msgstr "Utente '%s' bloccato" + +#: mod/admin.php:1107 +msgid "Add User" +msgstr "Aggiungi utente" + +#: mod/admin.php:1108 +msgid "select all" +msgstr "seleziona tutti" + +#: mod/admin.php:1109 +msgid "User registrations waiting for confirm" +msgstr "Richieste di registrazione in attesa di conferma" + +#: mod/admin.php:1110 +msgid "User waiting for permanent deletion" +msgstr "Utente in attesa di cancellazione definitiva" + +#: mod/admin.php:1111 +msgid "Request date" +msgstr "Data richiesta" + +#: mod/admin.php:1111 mod/admin.php:1123 mod/admin.php:1124 mod/admin.php:1139 +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +msgid "Email" +msgstr "Email" + +#: mod/admin.php:1112 +msgid "No registrations." +msgstr "Nessuna registrazione." + +#: mod/admin.php:1114 +msgid "Deny" +msgstr "Nega" + +#: mod/admin.php:1118 +msgid "Site admin" +msgstr "Amministrazione sito" + +#: mod/admin.php:1119 +msgid "Account expired" +msgstr "Account scaduto" + +#: mod/admin.php:1122 +msgid "New User" +msgstr "Nuovo Utente" + +#: mod/admin.php:1123 mod/admin.php:1124 +msgid "Register date" +msgstr "Data registrazione" + +#: mod/admin.php:1123 mod/admin.php:1124 +msgid "Last login" +msgstr "Ultimo accesso" + +#: mod/admin.php:1123 mod/admin.php:1124 +msgid "Last item" +msgstr "Ultimo elemento" + +#: mod/admin.php:1123 +msgid "Deleted since" +msgstr "Rimosso da" + +#: mod/admin.php:1124 mod/settings.php:41 +msgid "Account" +msgstr "Account" + +#: mod/admin.php:1126 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" + +#: mod/admin.php:1127 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?" + +#: mod/admin.php:1137 +msgid "Name of the new user." +msgstr "Nome del nuovo utente." + +#: mod/admin.php:1138 +msgid "Nickname" +msgstr "Nome utente" + +#: mod/admin.php:1138 +msgid "Nickname of the new user." +msgstr "Nome utente del nuovo utente." + +#: mod/admin.php:1139 +msgid "Email address of the new user." +msgstr "Indirizzo Email del nuovo utente." + +#: mod/admin.php:1172 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s disabilitato." + +#: mod/admin.php:1176 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s abilitato." + +#: mod/admin.php:1186 mod/admin.php:1410 +msgid "Disable" +msgstr "Disabilita" + +#: mod/admin.php:1188 mod/admin.php:1412 +msgid "Enable" +msgstr "Abilita" + +#: mod/admin.php:1211 mod/admin.php:1456 +msgid "Toggle" +msgstr "Inverti" + +#: mod/admin.php:1219 mod/admin.php:1466 +msgid "Author: " +msgstr "Autore: " + +#: mod/admin.php:1220 mod/admin.php:1467 +msgid "Maintainer: " +msgstr "Manutentore: " + +#: mod/admin.php:1272 +#: view/smarty3/compiled/f835364006028b1061f37be121c9bd9db5fa50a9.file.admin_plugins.tpl.php:42 +msgid "Reload active plugins" +msgstr "Ricarica i plugin attivi" + +#: mod/admin.php:1370 +msgid "No themes found." +msgstr "Nessun tema trovato." + +#: mod/admin.php:1448 +msgid "Screenshot" +msgstr "Anteprima" + +#: mod/admin.php:1508 +msgid "Reload active themes" +msgstr "Ricarica i temi attivi" + +#: mod/admin.php:1512 +msgid "[Experimental]" +msgstr "[Sperimentale]" + +#: mod/admin.php:1513 +msgid "[Unsupported]" +msgstr "[Non supportato]" + +#: mod/admin.php:1540 +msgid "Log settings updated." +msgstr "Impostazioni Log aggiornate." + +#: mod/admin.php:1596 +msgid "Clear" +msgstr "Pulisci" + +#: mod/admin.php:1602 +msgid "Enable Debugging" +msgstr "Abilita Debugging" + +#: mod/admin.php:1603 +msgid "Log file" +msgstr "File di Log" + +#: mod/admin.php:1603 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica." + +#: mod/admin.php:1604 +msgid "Log level" +msgstr "Livello di Log" + +#: mod/admin.php:1654 include/acl_selectors.php:348 +msgid "Close" +msgstr "Chiudi" + +#: mod/admin.php:1660 +msgid "FTP Host" +msgstr "Indirizzo FTP" + +#: mod/admin.php:1661 +msgid "FTP Path" +msgstr "Percorso FTP" + +#: mod/admin.php:1662 +msgid "FTP User" +msgstr "Utente FTP" + +#: mod/admin.php:1663 +msgid "FTP Password" +msgstr "Pasword FTP" + +#: mod/network.php:146 +#, php-format +msgid "Search Results For: %s" +msgstr "Risultato della ricerca per: %s" + +#: mod/network.php:191 mod/search.php:25 msgid "Remove term" msgstr "Rimuovi termine" -#: mod/search.php:34 mod/network.php:196 include/features.php:42 +#: mod/network.php:200 mod/search.php:34 include/features.php:79 msgid "Saved Searches" msgstr "Ricerche salvate" -#: mod/search.php:107 include/text.php:996 include/nav.php:119 -msgid "Search" -msgstr "Cerca" +#: mod/network.php:201 include/group.php:293 +msgid "add" +msgstr "aggiungi" -#: mod/search.php:199 mod/community.php:62 mod/community.php:71 +#: mod/network.php:362 +msgid "Commented Order" +msgstr "Ordina per commento" + +#: mod/network.php:365 +msgid "Sort by Comment Date" +msgstr "Ordina per data commento" + +#: mod/network.php:370 +msgid "Posted Order" +msgstr "Ordina per invio" + +#: mod/network.php:373 +msgid "Sort by Post Date" +msgstr "Ordina per data messaggio" + +#: mod/network.php:384 +msgid "Posts that mention or involve you" +msgstr "Messaggi che ti citano o coinvolgono" + +#: mod/network.php:392 +msgid "New" +msgstr "Nuovo" + +#: mod/network.php:395 +msgid "Activity Stream - by date" +msgstr "Activity Stream - per data" + +#: mod/network.php:403 +msgid "Shared Links" +msgstr "Links condivisi" + +#: mod/network.php:406 +msgid "Interesting Links" +msgstr "Link Interessanti" + +#: mod/network.php:414 +msgid "Starred" +msgstr "Preferiti" + +#: mod/network.php:417 +msgid "Favourite Posts" +msgstr "Messaggi preferiti" + +#: mod/network.php:476 +#, php-format +msgid "Warning: This group contains %s member from an insecure network." +msgid_plural "" +"Warning: This group contains %s members from an insecure network." +msgstr[0] "Attenzione: questo gruppo contiene %s membro da un network insicuro." +msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro." + +#: mod/network.php:479 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente." + +#: mod/network.php:546 mod/content.php:119 +msgid "No such group" +msgstr "Nessun gruppo" + +#: mod/network.php:574 mod/content.php:135 +#, php-format +msgid "Group: %s" +msgstr "Gruppo: %s" + +#: mod/network.php:606 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente." + +#: mod/network.php:611 +msgid "Invalid contact." +msgstr "Contatto non valido." + +#: mod/allfriends.php:38 +msgid "No friends to display." +msgstr "Nessun amico da visualizzare." + +#: mod/events.php:71 mod/events.php:73 +msgid "Event can not end before it has started." +msgstr "Un evento non puo' finire prima di iniziare." + +#: mod/events.php:80 mod/events.php:82 +msgid "Event title and start time are required." +msgstr "Titolo e ora di inizio dell'evento sono richiesti." + +#: mod/events.php:201 +msgid "Sun" +msgstr "Dom" + +#: mod/events.php:202 +msgid "Mon" +msgstr "Lun" + +#: mod/events.php:203 +msgid "Tue" +msgstr "Mar" + +#: mod/events.php:204 +msgid "Wed" +msgstr "Mer" + +#: mod/events.php:205 +msgid "Thu" +msgstr "Gio" + +#: mod/events.php:206 +msgid "Fri" +msgstr "Ven" + +#: mod/events.php:207 +msgid "Sat" +msgstr "Sab" + +#: mod/events.php:208 mod/settings.php:939 include/text.php:1274 +msgid "Sunday" +msgstr "Domenica" + +#: mod/events.php:209 mod/settings.php:939 include/text.php:1274 +msgid "Monday" +msgstr "Lunedì" + +#: mod/events.php:210 include/text.php:1274 +msgid "Tuesday" +msgstr "Martedì" + +#: mod/events.php:211 include/text.php:1274 +msgid "Wednesday" +msgstr "Mercoledì" + +#: mod/events.php:212 include/text.php:1274 +msgid "Thursday" +msgstr "Giovedì" + +#: mod/events.php:213 include/text.php:1274 +msgid "Friday" +msgstr "Venerdì" + +#: mod/events.php:214 include/text.php:1274 +msgid "Saturday" +msgstr "Sabato" + +#: mod/events.php:215 +msgid "Jan" +msgstr "Gen" + +#: mod/events.php:216 +msgid "Feb" +msgstr "Feb" + +#: mod/events.php:217 +msgid "Mar" +msgstr "Mar" + +#: mod/events.php:218 +msgid "Apr" +msgstr "Apr" + +#: mod/events.php:219 mod/events.php:231 include/text.php:1278 +msgid "May" +msgstr "Maggio" + +#: mod/events.php:220 +msgid "Jun" +msgstr "Giu" + +#: mod/events.php:221 +msgid "Jul" +msgstr "Lug" + +#: mod/events.php:222 +msgid "Aug" +msgstr "Ago" + +#: mod/events.php:223 +msgid "Sept" +msgstr "Set" + +#: mod/events.php:224 +msgid "Oct" +msgstr "Ott" + +#: mod/events.php:225 +msgid "Nov" +msgstr "Nov" + +#: mod/events.php:226 +msgid "Dec" +msgstr "Dic" + +#: mod/events.php:227 include/text.php:1278 +msgid "January" +msgstr "Gennaio" + +#: mod/events.php:228 include/text.php:1278 +msgid "February" +msgstr "Febbraio" + +#: mod/events.php:229 include/text.php:1278 +msgid "March" +msgstr "Marzo" + +#: mod/events.php:230 include/text.php:1278 +msgid "April" +msgstr "Aprile" + +#: mod/events.php:232 include/text.php:1278 +msgid "June" +msgstr "Giugno" + +#: mod/events.php:233 include/text.php:1278 +msgid "July" +msgstr "Luglio" + +#: mod/events.php:234 include/text.php:1278 +msgid "August" +msgstr "Agosto" + +#: mod/events.php:235 include/text.php:1278 +msgid "September" +msgstr "Settembre" + +#: mod/events.php:236 include/text.php:1278 +msgid "October" +msgstr "Ottobre" + +#: mod/events.php:237 include/text.php:1278 +msgid "November" +msgstr "Novembre" + +#: mod/events.php:238 include/text.php:1278 +msgid "December" +msgstr "Dicembre" + +#: mod/events.php:239 +msgid "today" +msgstr "oggi" + +#: mod/events.php:240 include/datetime.php:288 +msgid "month" +msgstr "mese" + +#: mod/events.php:241 include/datetime.php:289 +msgid "week" +msgstr "settimana" + +#: mod/events.php:242 include/datetime.php:290 +msgid "day" +msgstr "giorno" + +#: mod/events.php:377 +msgid "l, F j" +msgstr "l j F" + +#: mod/events.php:399 +msgid "Edit event" +msgstr "Modifca l'evento" + +#: mod/events.php:421 include/text.php:1721 include/text.php:1728 +msgid "link to source" +msgstr "Collegamento all'originale" + +#: mod/events.php:456 include/identity.php:713 include/nav.php:79 +#: include/nav.php:140 view/theme/diabook/theme.php:127 +msgid "Events" +msgstr "Eventi" + +#: mod/events.php:457 +msgid "Create New Event" +msgstr "Crea un nuovo evento" + +#: mod/events.php:458 +msgid "Previous" +msgstr "Precendente" + +#: mod/events.php:459 mod/install.php:220 +msgid "Next" +msgstr "Successivo" + +#: mod/events.php:554 +msgid "Event details" +msgstr "Dettagli dell'evento" + +#: mod/events.php:555 +msgid "Starting date and Title are required." +msgstr "La data di inizio e il titolo sono richiesti." + +#: mod/events.php:556 +msgid "Event Starts:" +msgstr "L'evento inizia:" + +#: mod/events.php:556 mod/events.php:568 +msgid "Required" +msgstr "Richiesto" + +#: mod/events.php:558 +msgid "Finish date/time is not known or not relevant" +msgstr "La data/ora di fine non è definita" + +#: mod/events.php:560 +msgid "Event Finishes:" +msgstr "L'evento finisce:" + +#: mod/events.php:562 +msgid "Adjust for viewer timezone" +msgstr "Visualizza con il fuso orario di chi legge" + +#: mod/events.php:564 +msgid "Description:" +msgstr "Descrizione:" + +#: mod/events.php:568 +msgid "Title:" +msgstr "Titolo:" + +#: mod/events.php:570 +msgid "Share this event" +msgstr "Condividi questo evento" + +#: mod/events.php:572 mod/content.php:721 mod/editpost.php:145 +#: mod/photos.php:1631 mod/photos.php:1679 mod/photos.php:1767 +#: object/Item.php:719 include/conversation.php:1217 +msgid "Preview" +msgstr "Anteprima" + +#: mod/credits.php:16 +msgid "Credits" +msgstr "Credits" + +#: mod/credits.php:17 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "Friendica è un progetto comunitario, che non sarebbe stato possibile realizzare senza l'aiuto di molte persone.\nQuesta è una lista di chi ha contribuito al codice o alle traduzioni di Friendica. Grazie a tutti!" + +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1722 +#: object/Item.php:133 include/conversation.php:634 +msgid "Select" +msgstr "Seleziona" + +#: mod/content.php:473 mod/content.php:854 mod/content.php:855 +#: object/Item.php:357 object/Item.php:358 include/conversation.php:675 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" + +#: mod/content.php:483 mod/content.php:866 object/Item.php:371 +#: include/conversation.php:695 +#, php-format +msgid "%s from %s" +msgstr "%s da %s" + +#: mod/content.php:499 include/conversation.php:711 +msgid "View in context" +msgstr "Vedi nel contesto" + +#: mod/content.php:605 object/Item.php:419 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" + +#: mod/content.php:607 object/Item.php:421 object/Item.php:434 +#: include/text.php:1997 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "commento" + +#: mod/content.php:608 boot.php:785 object/Item.php:422 +#: include/contact_widgets.php:242 include/forums.php:110 +#: include/items.php:5178 view/theme/vier/theme.php:264 +msgid "show more" +msgstr "mostra di più" + +#: mod/content.php:622 mod/photos.php:1418 object/Item.php:117 +msgid "Private Message" +msgstr "Messaggio privato" + +#: mod/content.php:686 mod/photos.php:1607 object/Item.php:253 +msgid "I like this (toggle)" +msgstr "Mi piace (clic per cambiare)" + +#: mod/content.php:686 object/Item.php:253 +msgid "like" +msgstr "mi piace" + +#: mod/content.php:687 mod/photos.php:1608 object/Item.php:254 +msgid "I don't like this (toggle)" +msgstr "Non mi piace (clic per cambiare)" + +#: mod/content.php:687 object/Item.php:254 +msgid "dislike" +msgstr "non mi piace" + +#: mod/content.php:689 object/Item.php:256 +msgid "Share this" +msgstr "Condividi questo" + +#: mod/content.php:689 object/Item.php:256 +msgid "share" +msgstr "condividi" + +#: mod/content.php:709 mod/photos.php:1627 mod/photos.php:1675 +#: mod/photos.php:1763 object/Item.php:707 +msgid "This is you" +msgstr "Questo sei tu" + +#: mod/content.php:711 mod/photos.php:1629 mod/photos.php:1677 +#: mod/photos.php:1765 boot.php:784 object/Item.php:393 object/Item.php:709 +msgid "Comment" +msgstr "Commento" + +#: mod/content.php:713 object/Item.php:711 +msgid "Bold" +msgstr "Grassetto" + +#: mod/content.php:714 object/Item.php:712 +msgid "Italic" +msgstr "Corsivo" + +#: mod/content.php:715 object/Item.php:713 +msgid "Underline" +msgstr "Sottolineato" + +#: mod/content.php:716 object/Item.php:714 +msgid "Quote" +msgstr "Citazione" + +#: mod/content.php:717 object/Item.php:715 +msgid "Code" +msgstr "Codice" + +#: mod/content.php:718 object/Item.php:716 +msgid "Image" +msgstr "Immagine" + +#: mod/content.php:719 object/Item.php:717 +msgid "Link" +msgstr "Link" + +#: mod/content.php:720 object/Item.php:718 +msgid "Video" +msgstr "Video" + +#: mod/content.php:730 mod/settings.php:712 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "Modifica" + +#: mod/content.php:755 object/Item.php:217 +msgid "add star" +msgstr "aggiungi a speciali" + +#: mod/content.php:756 object/Item.php:218 +msgid "remove star" +msgstr "rimuovi da speciali" + +#: mod/content.php:757 object/Item.php:219 +msgid "toggle star status" +msgstr "Inverti stato preferito" + +#: mod/content.php:760 object/Item.php:222 +msgid "starred" +msgstr "preferito" + +#: mod/content.php:761 object/Item.php:242 +msgid "add tag" +msgstr "aggiungi tag" + +#: mod/content.php:765 object/Item.php:137 +msgid "save to folder" +msgstr "salva nella cartella" + +#: mod/content.php:856 object/Item.php:359 +msgid "to" +msgstr "a" + +#: mod/content.php:857 object/Item.php:361 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" + +#: mod/content.php:858 object/Item.php:362 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca" + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Rimuovi il mio account" + +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." + +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" + +#: mod/install.php:128 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica Comunicazione Server - Impostazioni" + +#: mod/install.php:134 +msgid "Could not connect to database." +msgstr " Impossibile collegarsi con il database." + +#: mod/install.php:138 +msgid "Could not create table." +msgstr "Impossibile creare le tabelle." + +#: mod/install.php:144 +msgid "Your Friendica site database has been installed." +msgstr "Il tuo Friendica è stato installato." + +#: mod/install.php:149 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql" + +#: mod/install.php:150 mod/install.php:219 mod/install.php:577 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Leggi il file \"INSTALL.txt\"." + +#: mod/install.php:162 +msgid "Database already in use." +msgstr "Database già in uso." + +#: mod/install.php:216 +msgid "System check" +msgstr "Controllo sistema" + +#: mod/install.php:221 +msgid "Check again" +msgstr "Controlla ancora" + +#: mod/install.php:240 +msgid "Database connection" +msgstr "Connessione al database" + +#: mod/install.php:241 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database." + +#: mod/install.php:242 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." + +#: mod/install.php:243 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare." + +#: mod/install.php:247 +msgid "Database Server Name" +msgstr "Nome del database server" + +#: mod/install.php:248 +msgid "Database Login Name" +msgstr "Nome utente database" + +#: mod/install.php:249 +msgid "Database Login Password" +msgstr "Password utente database" + +#: mod/install.php:250 +msgid "Database Name" +msgstr "Nome database" + +#: mod/install.php:251 mod/install.php:290 +msgid "Site administrator email address" +msgstr "Indirizzo email dell'amministratore del sito" + +#: mod/install.php:251 mod/install.php:290 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web." + +#: mod/install.php:255 mod/install.php:293 +msgid "Please select a default timezone for your website" +msgstr "Seleziona il fuso orario predefinito per il tuo sito web" + +#: mod/install.php:280 +msgid "Site settings" +msgstr "Impostazioni sito" + +#: mod/install.php:334 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web" + +#: mod/install.php:335 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Setup the poller'" +msgstr "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Setup the poller'" + +#: mod/install.php:339 +msgid "PHP executable path" +msgstr "Percorso eseguibile PHP" + +#: mod/install.php:339 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione." + +#: mod/install.php:344 +msgid "Command line PHP" +msgstr "PHP da riga di comando" + +#: mod/install.php:353 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)" + +#: mod/install.php:354 +msgid "Found PHP version: " +msgstr "Versione PHP:" + +#: mod/install.php:356 +msgid "PHP cli binary" +msgstr "Binario PHP cli" + +#: mod/install.php:367 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." + +#: mod/install.php:368 +msgid "This is required for message delivery to work." +msgstr "E' obbligatorio per far funzionare la consegna dei messaggi." + +#: mod/install.php:370 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: mod/install.php:391 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione" + +#: mod/install.php:392 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: mod/install.php:394 +msgid "Generate encryption keys" +msgstr "Genera chiavi di criptazione" + +#: mod/install.php:401 +msgid "libCurl PHP module" +msgstr "modulo PHP libCurl" + +#: mod/install.php:402 +msgid "GD graphics PHP module" +msgstr "modulo PHP GD graphics" + +#: mod/install.php:403 +msgid "OpenSSL PHP module" +msgstr "modulo PHP OpenSSL" + +#: mod/install.php:404 +msgid "mysqli PHP module" +msgstr "modulo PHP mysqli" + +#: mod/install.php:405 +msgid "mb_string PHP module" +msgstr "modulo PHP mb_string" + +#: mod/install.php:406 +msgid "mcrypt PHP module" +msgstr "modulo PHP mcrypt" + +#: mod/install.php:411 mod/install.php:413 +msgid "Apache mod_rewrite module" +msgstr "Modulo mod_rewrite di Apache" + +#: mod/install.php:411 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato" + +#: mod/install.php:419 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato." + +#: mod/install.php:423 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato." + +#: mod/install.php:427 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato." + +#: mod/install.php:431 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato" + +#: mod/install.php:435 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato." + +#: mod/install.php:439 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Errore: il modulo mcrypt di PHP è richiesto, ma non risulta installato" + +#: mod/install.php:451 +msgid "" +"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " +"encryption layer." +msgstr "La funzione mcrypt _create_iv() non è definita. E' richiesta per abilitare il livello di criptazione RINO2" + +#: mod/install.php:453 +msgid "mcrypt_create_iv() function" +msgstr "funzione mcrypt_create_iv()" + +#: mod/install.php:469 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo." + +#: mod/install.php:470 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi." + +#: mod/install.php:471 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica" + +#: mod/install.php:472 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni." + +#: mod/install.php:475 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php è scrivibile" + +#: mod/install.php:485 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering." + +#: mod/install.php:486 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica." + +#: mod/install.php:487 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella." + +#: mod/install.php:488 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene." + +#: mod/install.php:491 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 è scrivibile" + +#: mod/install.php:507 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server." + +#: mod/install.php:509 +msgid "Url rewrite is working" +msgstr "La riscrittura degli url funziona" + +#: mod/install.php:526 +msgid "ImageMagick PHP extension is installed" +msgstr "L'estensione PHP ImageMagick è installata" + +#: mod/install.php:528 +msgid "ImageMagick supports GIF" +msgstr "ImageMagick supporta i GIF" + +#: mod/install.php:536 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito." + +#: mod/install.php:575 +msgid "

What next

" +msgstr "

Cosa fare ora

" + +#: mod/install.php:576 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller." + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito." + +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Impossibile controllare la tua posizione di origine." + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Nessun destinatario." + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti." + +#: mod/help.php:31 +msgid "Help:" +msgstr "Guida:" + +#: mod/help.php:36 include/nav.php:113 view/theme/vier/theme.php:302 +msgid "Help" +msgstr "Guida" + +#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 +msgid "Not Found" +msgstr "Non trovato" + +#: mod/help.php:45 index.php:272 +msgid "Page not found." +msgstr "Pagina non trovata." + +#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%s dà il benvenuto a %s" + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Benvenuto su %s" + +#: mod/wall_attach.php:94 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta" + +#: mod/wall_attach.php:94 +msgid "Or - did you try to upload an empty file?" +msgstr "O.. non avrai provato a caricare un file vuoto?" + +#: mod/wall_attach.php:105 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Il file supera la dimensione massima di %s" + +#: mod/wall_attach.php:156 mod/wall_attach.php:172 +msgid "File upload failed." +msgstr "Caricamento del file non riuscito." + +#: mod/match.php:33 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito." + +#: mod/match.php:84 +msgid "is interested in:" +msgstr "è interessato a:" + +#: mod/match.php:98 +msgid "Profile Match" +msgstr "Profili corrispondenti" + +#: mod/share.php:38 +msgid "link" +msgstr "collegamento" + +#: mod/community.php:23 +msgid "Not available." +msgstr "Non disponibile." + +#: mod/community.php:32 include/nav.php:136 include/nav.php:138 +#: view/theme/diabook/theme.php:129 +msgid "Community" +msgstr "Comunità" + +#: mod/community.php:62 mod/community.php:71 mod/search.php:228 msgid "No results." msgstr "Nessun risultato." -#: mod/search.php:205 +#: mod/settings.php:34 mod/photos.php:117 +msgid "everybody" +msgstr "tutti" + +#: mod/settings.php:47 +msgid "Additional features" +msgstr "Funzionalità aggiuntive" + +#: mod/settings.php:53 +msgid "Display" +msgstr "Visualizzazione" + +#: mod/settings.php:60 mod/settings.php:855 +msgid "Social Networks" +msgstr "Social Networks" + +#: mod/settings.php:72 include/nav.php:180 +msgid "Delegations" +msgstr "Delegazioni" + +#: mod/settings.php:78 +msgid "Connected apps" +msgstr "Applicazioni collegate" + +#: mod/settings.php:84 mod/uexport.php:85 +msgid "Export personal data" +msgstr "Esporta dati personali" + +#: mod/settings.php:90 +msgid "Remove account" +msgstr "Rimuovi account" + +#: mod/settings.php:143 +msgid "Missing some important data!" +msgstr "Mancano alcuni dati importanti!" + +#: mod/settings.php:256 +msgid "Failed to connect with email account using the settings provided." +msgstr "Impossibile collegarsi all'account email con i parametri forniti." + +#: mod/settings.php:261 +msgid "Email settings updated." +msgstr "Impostazioni e-mail aggiornate." + +#: mod/settings.php:276 +msgid "Features updated" +msgstr "Funzionalità aggiornate" + +#: mod/settings.php:343 +msgid "Relocate message has been send to your contacts" +msgstr "Il messaggio di trasloco è stato inviato ai tuoi contatti" + +#: mod/settings.php:357 include/user.php:39 +msgid "Passwords do not match. Password unchanged." +msgstr "Le password non corrispondono. Password non cambiata." + +#: mod/settings.php:362 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Le password non possono essere vuote. Password non cambiata." + +#: mod/settings.php:370 +msgid "Wrong password." +msgstr "Password sbagliata." + +#: mod/settings.php:381 +msgid "Password changed." +msgstr "Password cambiata." + +#: mod/settings.php:383 +msgid "Password update failed. Please try again." +msgstr "Aggiornamento password fallito. Prova ancora." + +#: mod/settings.php:452 +msgid " Please use a shorter name." +msgstr " Usa un nome più corto." + +#: mod/settings.php:454 +msgid " Name too short." +msgstr " Nome troppo corto." + +#: mod/settings.php:463 +msgid "Wrong Password" +msgstr "Password Sbagliata" + +#: mod/settings.php:468 +msgid " Not valid email." +msgstr " Email non valida." + +#: mod/settings.php:474 +msgid " Cannot change to that email." +msgstr "Non puoi usare quella email." + +#: mod/settings.php:530 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito." + +#: mod/settings.php:534 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito." + +#: mod/settings.php:573 +msgid "Settings updated." +msgstr "Impostazioni aggiornate." + +#: mod/settings.php:649 mod/settings.php:675 mod/settings.php:711 +msgid "Add application" +msgstr "Aggiungi applicazione" + +#: mod/settings.php:653 mod/settings.php:679 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: mod/settings.php:654 mod/settings.php:680 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: mod/settings.php:655 mod/settings.php:681 +msgid "Redirect" +msgstr "Redirect" + +#: mod/settings.php:656 mod/settings.php:682 +msgid "Icon url" +msgstr "Url icona" + +#: mod/settings.php:667 +msgid "You can't edit this application." +msgstr "Non puoi modificare questa applicazione." + +#: mod/settings.php:710 +msgid "Connected Apps" +msgstr "Applicazioni Collegate" + +#: mod/settings.php:714 +msgid "Client key starts with" +msgstr "Chiave del client inizia con" + +#: mod/settings.php:715 +msgid "No name" +msgstr "Nessun nome" + +#: mod/settings.php:716 +msgid "Remove authorization" +msgstr "Rimuovi l'autorizzazione" + +#: mod/settings.php:728 +msgid "No Plugin settings configured" +msgstr "Nessun plugin ha impostazioni modificabili" + +#: mod/settings.php:736 +msgid "Plugin Settings" +msgstr "Impostazioni plugin" + +#: mod/settings.php:750 +msgid "Off" +msgstr "Spento" + +#: mod/settings.php:750 +msgid "On" +msgstr "Acceso" + +#: mod/settings.php:758 +msgid "Additional Features" +msgstr "Funzionalità aggiuntive" + +#: mod/settings.php:768 mod/settings.php:772 +msgid "General Social Media Settings" +msgstr "Impostazioni Media Sociali" + +#: mod/settings.php:778 +msgid "Disable intelligent shortening" +msgstr "Disabilita accorciamento intelligente" + +#: mod/settings.php:780 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "Normalmente il sistema tenta di trovare il migliore link da aggiungere a un post accorciato. Se questa opzione è abilitata, ogni post accorciato conterrà sempre un link al post originale su Friendica." + +#: mod/settings.php:786 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Segui automanticamente chiunque da GNU Social (OStatus) ti segua o ti menzioni" + +#: mod/settings.php:788 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "Se ricevi un messaggio da un utente OStatus sconosciuto, questa opzione decide cosa fare. Se selezionato, un nuovo contatto verrà creato per ogni utente sconosciuto." + +#: mod/settings.php:797 +msgid "Your legacy GNU Social account" +msgstr "Il tuo vecchio account GNU Social" + +#: mod/settings.php:799 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "Se inserisci il nome del tuo vecchio account GNU Social/Statusnet qui (nel formato utente@dominio.tld), i tuoi contatti verranno automaticamente aggiunti. Il campo verrà svuotato una volta terminato." + +#: mod/settings.php:802 +msgid "Repair OStatus subscriptions" +msgstr "Ripara le iscrizioni OStatus" + +#: mod/settings.php:811 mod/settings.php:812 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Il supporto integrato per la connettività con %s è %s" + +#: mod/settings.php:811 mod/dfrn_request.php:858 +#: include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: mod/settings.php:811 mod/settings.php:812 +msgid "enabled" +msgstr "abilitato" + +#: mod/settings.php:811 mod/settings.php:812 +msgid "disabled" +msgstr "disabilitato" + +#: mod/settings.php:812 +msgid "GNU Social (OStatus)" +msgstr "GNU Social (OStatus)" + +#: mod/settings.php:848 +msgid "Email access is disabled on this site." +msgstr "L'accesso email è disabilitato su questo sito." + +#: mod/settings.php:860 +msgid "Email/Mailbox Setup" +msgstr "Impostazioni email" + +#: mod/settings.php:861 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)" + +#: mod/settings.php:862 +msgid "Last successful email check:" +msgstr "Ultimo controllo email eseguito con successo:" + +#: mod/settings.php:864 +msgid "IMAP server name:" +msgstr "Nome server IMAP:" + +#: mod/settings.php:865 +msgid "IMAP port:" +msgstr "Porta IMAP:" + +#: mod/settings.php:866 +msgid "Security:" +msgstr "Sicurezza:" + +#: mod/settings.php:866 mod/settings.php:871 +msgid "None" +msgstr "Nessuna" + +#: mod/settings.php:867 +msgid "Email login name:" +msgstr "Nome utente email:" + +#: mod/settings.php:868 +msgid "Email password:" +msgstr "Password email:" + +#: mod/settings.php:869 +msgid "Reply-to address:" +msgstr "Indirizzo di risposta:" + +#: mod/settings.php:870 +msgid "Send public posts to all email contacts:" +msgstr "Invia i messaggi pubblici ai contatti email:" + +#: mod/settings.php:871 +msgid "Action after import:" +msgstr "Azione post importazione:" + +#: mod/settings.php:871 +msgid "Mark as seen" +msgstr "Segna come letto" + +#: mod/settings.php:871 +msgid "Move to folder" +msgstr "Sposta nella cartella" + +#: mod/settings.php:872 +msgid "Move to folder:" +msgstr "Sposta nella cartella:" + +#: mod/settings.php:958 +msgid "Display Settings" +msgstr "Impostazioni Grafiche" + +#: mod/settings.php:964 mod/settings.php:982 +msgid "Display Theme:" +msgstr "Tema:" + +#: mod/settings.php:965 +msgid "Mobile Theme:" +msgstr "Tema mobile:" + +#: mod/settings.php:966 +msgid "Update browser every xx seconds" +msgstr "Aggiorna il browser ogni x secondi" + +#: mod/settings.php:966 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Minimo 10 secondi. Inserisci -1 per disabilitarlo" + +#: mod/settings.php:967 +msgid "Number of items to display per page:" +msgstr "Numero di elementi da mostrare per pagina:" + +#: mod/settings.php:967 mod/settings.php:968 +msgid "Maximum of 100 items" +msgstr "Massimo 100 voci" + +#: mod/settings.php:968 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:" + +#: mod/settings.php:969 +msgid "Don't show emoticons" +msgstr "Non mostrare le emoticons" + +#: mod/settings.php:970 +msgid "Calendar" +msgstr "Calendario" + +#: mod/settings.php:971 +msgid "Beginning of week:" +msgstr "Inizio della settimana:" + +#: mod/settings.php:972 +msgid "Don't show notices" +msgstr "Non mostrare gli avvisi" + +#: mod/settings.php:973 +msgid "Infinite scroll" +msgstr "Scroll infinito" + +#: mod/settings.php:974 +msgid "Automatic updates only at the top of the network page" +msgstr "Aggiornamenti automatici solo in cima alla pagina \"rete\"" + +#: mod/settings.php:976 view/theme/cleanzero/config.php:82 +#: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66 +#: view/theme/diabook/config.php:150 view/theme/clean/config.php:85 +#: view/theme/vier/config.php:109 view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Impostazioni tema" + +#: mod/settings.php:1053 +msgid "User Types" +msgstr "Tipi di Utenti" + +#: mod/settings.php:1054 +msgid "Community Types" +msgstr "Tipi di Comunità" + +#: mod/settings.php:1055 +msgid "Normal Account Page" +msgstr "Pagina Account Normale" + +#: mod/settings.php:1056 +msgid "This account is a normal personal profile" +msgstr "Questo account è un normale profilo personale" + +#: mod/settings.php:1059 +msgid "Soapbox Page" +msgstr "Pagina Sandbox" + +#: mod/settings.php:1060 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca" + +#: mod/settings.php:1063 +msgid "Community Forum/Celebrity Account" +msgstr "Account Celebrità/Forum comunitario" + +#: mod/settings.php:1064 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca" + +#: mod/settings.php:1067 +msgid "Automatic Friend Page" +msgstr "Pagina con amicizia automatica" + +#: mod/settings.php:1068 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" + +#: mod/settings.php:1071 +msgid "Private Forum [Experimental]" +msgstr "Forum privato [sperimentale]" + +#: mod/settings.php:1072 +msgid "Private forum - approved members only" +msgstr "Forum privato - solo membri approvati" + +#: mod/settings.php:1084 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1084 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" + +#: mod/settings.php:1094 +msgid "Publish your default profile in your local site directory?" +msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" + +#: mod/settings.php:1100 +msgid "Publish your default profile in the global social directory?" +msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" + +#: mod/settings.php:1108 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito" + +#: mod/settings.php:1112 include/acl_selectors.php:331 +msgid "Hide your profile details from unknown viewers?" +msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" + +#: mod/settings.php:1112 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "Se abilitato, l'invio di messaggi pubblici verso Diaspora e altri network non sarà possibile" + +#: mod/settings.php:1117 +msgid "Allow friends to post to your profile page?" +msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" + +#: mod/settings.php:1123 +msgid "Allow friends to tag your posts?" +msgstr "Permetti agli amici di taggare i tuoi messaggi?" + +#: mod/settings.php:1129 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Ci permetti di suggerirti come potenziale amico ai nuovi membri?" + +#: mod/settings.php:1135 +msgid "Permit unknown people to send you private mail?" +msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" + +#: mod/settings.php:1143 +msgid "Profile is not published." +msgstr "Il profilo non è pubblicato." + +#: mod/settings.php:1151 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "L'indirizzo della tua identità è '%s' or '%s'." + +#: mod/settings.php:1158 +msgid "Automatically expire posts after this many days:" +msgstr "Fai scadere i post automaticamente dopo x giorni:" + +#: mod/settings.php:1158 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." + +#: mod/settings.php:1159 +msgid "Advanced expiration settings" +msgstr "Impostazioni avanzate di scandenza" + +#: mod/settings.php:1160 +msgid "Advanced Expiration" +msgstr "Scadenza avanzata" + +#: mod/settings.php:1161 +msgid "Expire posts:" +msgstr "Fai scadere i post:" + +#: mod/settings.php:1162 +msgid "Expire personal notes:" +msgstr "Fai scadere le Note personali:" + +#: mod/settings.php:1163 +msgid "Expire starred posts:" +msgstr "Fai scadere i post Speciali:" + +#: mod/settings.php:1164 +msgid "Expire photos:" +msgstr "Fai scadere le foto:" + +#: mod/settings.php:1165 +msgid "Only expire posts by others:" +msgstr "Fai scadere solo i post degli altri:" + +#: mod/settings.php:1193 +msgid "Account Settings" +msgstr "Impostazioni account" + +#: mod/settings.php:1201 +msgid "Password Settings" +msgstr "Impostazioni password" + +#: mod/settings.php:1202 mod/register.php:274 +msgid "New Password:" +msgstr "Nuova password:" + +#: mod/settings.php:1203 mod/register.php:275 +msgid "Confirm:" +msgstr "Conferma:" + +#: mod/settings.php:1203 +msgid "Leave password fields blank unless changing" +msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" + +#: mod/settings.php:1204 +msgid "Current Password:" +msgstr "Password Attuale:" + +#: mod/settings.php:1204 mod/settings.php:1205 +msgid "Your current password to confirm the changes" +msgstr "La tua password attuale per confermare le modifiche" + +#: mod/settings.php:1205 +msgid "Password:" +msgstr "Password:" + +#: mod/settings.php:1209 +msgid "Basic Settings" +msgstr "Impostazioni base" + +#: mod/settings.php:1210 include/identity.php:578 +msgid "Full Name:" +msgstr "Nome completo:" + +#: mod/settings.php:1211 +msgid "Email Address:" +msgstr "Indirizzo Email:" + +#: mod/settings.php:1212 +msgid "Your Timezone:" +msgstr "Il tuo fuso orario:" + +#: mod/settings.php:1213 +msgid "Your Language:" +msgstr "La tua lingua:" + +#: mod/settings.php:1213 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Imposta la lingua che sarà usata per mostrarti l'interfaccia di Friendica e per inviarti le email" + +#: mod/settings.php:1214 +msgid "Default Post Location:" +msgstr "Località predefinita:" + +#: mod/settings.php:1215 +msgid "Use Browser Location:" +msgstr "Usa la località rilevata dal browser:" + +#: mod/settings.php:1218 +msgid "Security and Privacy Settings" +msgstr "Impostazioni di sicurezza e privacy" + +#: mod/settings.php:1220 +msgid "Maximum Friend Requests/Day:" +msgstr "Numero massimo di richieste di amicizia al giorno:" + +#: mod/settings.php:1220 mod/settings.php:1250 +msgid "(to prevent spam abuse)" +msgstr "(per prevenire lo spam)" + +#: mod/settings.php:1221 +msgid "Default Post Permissions" +msgstr "Permessi predefiniti per i messaggi" + +#: mod/settings.php:1222 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" + +#: mod/settings.php:1231 mod/photos.php:1199 mod/photos.php:1584 +msgid "Show to Groups" +msgstr "Mostra ai gruppi" + +#: mod/settings.php:1232 mod/photos.php:1200 mod/photos.php:1585 +msgid "Show to Contacts" +msgstr "Mostra ai contatti" + +#: mod/settings.php:1233 +msgid "Default Private Post" +msgstr "Default Post Privato" + +#: mod/settings.php:1234 +msgid "Default Public Post" +msgstr "Default Post Pubblico" + +#: mod/settings.php:1238 +msgid "Default Permissions for New Posts" +msgstr "Permessi predefiniti per i nuovi post" + +#: mod/settings.php:1250 +msgid "Maximum private messages per day from unknown people:" +msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" + +#: mod/settings.php:1253 +msgid "Notification Settings" +msgstr "Impostazioni notifiche" + +#: mod/settings.php:1254 +msgid "By default post a status message when:" +msgstr "Invia un messaggio di stato quando:" + +#: mod/settings.php:1255 +msgid "accepting a friend request" +msgstr "accetti una richiesta di amicizia" + +#: mod/settings.php:1256 +msgid "joining a forum/community" +msgstr "ti unisci a un forum/comunità" + +#: mod/settings.php:1257 +msgid "making an interesting profile change" +msgstr "fai un interessante modifica al profilo" + +#: mod/settings.php:1258 +msgid "Send a notification email when:" +msgstr "Invia una mail di notifica quando:" + +#: mod/settings.php:1259 +msgid "You receive an introduction" +msgstr "Ricevi una presentazione" + +#: mod/settings.php:1260 +msgid "Your introductions are confirmed" +msgstr "Le tue presentazioni sono confermate" + +#: mod/settings.php:1261 +msgid "Someone writes on your profile wall" +msgstr "Qualcuno scrive sulla bacheca del tuo profilo" + +#: mod/settings.php:1262 +msgid "Someone writes a followup comment" +msgstr "Qualcuno scrive un commento a un tuo messaggio" + +#: mod/settings.php:1263 +msgid "You receive a private message" +msgstr "Ricevi un messaggio privato" + +#: mod/settings.php:1264 +msgid "You receive a friend suggestion" +msgstr "Hai ricevuto un suggerimento di amicizia" + +#: mod/settings.php:1265 +msgid "You are tagged in a post" +msgstr "Sei stato taggato in un post" + +#: mod/settings.php:1266 +msgid "You are poked/prodded/etc. in a post" +msgstr "Sei 'toccato'/'spronato'/ecc. in un post" + +#: mod/settings.php:1268 +msgid "Activate desktop notifications" +msgstr "Attiva notifiche desktop" + +#: mod/settings.php:1268 +msgid "Show desktop popup on new notifications" +msgstr "Mostra un popup di notifica sul desktop all'arrivo di nuove notifiche" + +#: mod/settings.php:1270 +msgid "Text-only notification emails" +msgstr "Email di notifica in solo testo" + +#: mod/settings.php:1272 +msgid "Send text only notification emails, without the html part" +msgstr "Invia le email di notifica in solo testo, senza la parte in html" + +#: mod/settings.php:1274 +msgid "Advanced Account/Page Type Settings" +msgstr "Impostazioni avanzate Account/Tipo di pagina" + +#: mod/settings.php:1275 +msgid "Change the behaviour of this account for special situations" +msgstr "Modifica il comportamento di questo account in situazioni speciali" + +#: mod/settings.php:1278 +msgid "Relocate" +msgstr "Trasloca" + +#: mod/settings.php:1279 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone." + +#: mod/settings.php:1280 +msgid "Resend relocate message to contacts" +msgstr "Reinvia il messaggio di trasloco" + +#: mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Questa presentazione è già stata accettata." + +#: mod/dfrn_request.php:120 mod/dfrn_request.php:519 +msgid "Profile location is not valid or does not contain profile information." +msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." + +#: mod/dfrn_request.php:125 mod/dfrn_request.php:524 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." + +#: mod/dfrn_request.php:127 mod/dfrn_request.php:526 +msgid "Warning: profile location has no profile photo." +msgstr "Attenzione: l'indirizzo del profilo non ha una foto." + +#: mod/dfrn_request.php:130 mod/dfrn_request.php:529 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato" +msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" + +#: mod/dfrn_request.php:173 +msgid "Introduction complete." +msgstr "Presentazione completa." + +#: mod/dfrn_request.php:215 +msgid "Unrecoverable protocol error." +msgstr "Errore di comunicazione." + +#: mod/dfrn_request.php:243 +msgid "Profile unavailable." +msgstr "Profilo non disponibile." + +#: mod/dfrn_request.php:268 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s ha ricevuto troppe richieste di connessione per oggi." + +#: mod/dfrn_request.php:269 +msgid "Spam protection measures have been invoked." +msgstr "Sono state attivate le misure di protezione contro lo spam." + +#: mod/dfrn_request.php:270 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Gli amici sono pregati di riprovare tra 24 ore." + +#: mod/dfrn_request.php:332 +msgid "Invalid locator" +msgstr "Invalid locator" + +#: mod/dfrn_request.php:341 +msgid "Invalid email address." +msgstr "Indirizzo email non valido." + +#: mod/dfrn_request.php:368 +msgid "This account has not been configured for email. Request failed." +msgstr "Questo account non è stato configurato per l'email. Richiesta fallita." + +#: mod/dfrn_request.php:464 +msgid "Unable to resolve your name at the provided location." +msgstr "Impossibile risolvere il tuo nome nella posizione indicata." + +#: mod/dfrn_request.php:477 +msgid "You have already introduced yourself here." +msgstr "Ti sei già presentato qui." + +#: mod/dfrn_request.php:481 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Pare che tu e %s siate già amici." + +#: mod/dfrn_request.php:502 +msgid "Invalid profile URL." +msgstr "Indirizzo profilo non valido." + +#: mod/dfrn_request.php:508 include/follow.php:72 +msgid "Disallowed profile URL." +msgstr "Indirizzo profilo non permesso." + +#: mod/dfrn_request.php:599 +msgid "Your introduction has been sent." +msgstr "La tua presentazione è stata inviata." + +#: mod/dfrn_request.php:652 +msgid "Please login to confirm introduction." +msgstr "Accedi per confermare la presentazione." + +#: mod/dfrn_request.php:662 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." + +#: mod/dfrn_request.php:676 mod/dfrn_request.php:693 +msgid "Confirm" +msgstr "Conferma" + +#: mod/dfrn_request.php:688 +msgid "Hide this contact" +msgstr "Nascondi questo contatto" + +#: mod/dfrn_request.php:691 +#, php-format +msgid "Welcome home %s." +msgstr "Bentornato a casa %s." + +#: mod/dfrn_request.php:692 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Conferma la tua richiesta di connessione con %s." + +#: mod/dfrn_request.php:821 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:" + +#: mod/dfrn_request.php:842 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " +"join us today." +msgstr "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi" + +#: mod/dfrn_request.php:847 +msgid "Friend/Connection Request" +msgstr "Richieste di amicizia/connessione" + +#: mod/dfrn_request.php:848 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: mod/dfrn_request.php:856 include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: mod/dfrn_request.php:857 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: mod/dfrn_request.php:859 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora." + +#: mod/register.php:92 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni." + +#: mod/register.php:97 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "Si è verificato un errore inviando l'email. I dettagli del tuo account:
login: %s
password: %s

Puoi cambiare la password dopo il login." + +#: mod/register.php:104 +msgid "Registration successful." +msgstr "Registrazione completata." + +#: mod/register.php:110 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere elaborata." + +#: mod/register.php:153 +msgid "Your registration is pending approval by the site owner." +msgstr "La tua richiesta è in attesa di approvazione da parte del prorietario del sito." + +#: mod/register.php:191 mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." + +#: mod/register.php:219 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'." + +#: mod/register.php:220 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera." + +#: mod/register.php:221 +msgid "Your OpenID (optional): " +msgstr "Il tuo OpenID (opzionale): " + +#: mod/register.php:235 +msgid "Include your profile in member directory?" +msgstr "Includi il tuo profilo nell'elenco pubblico?" + +#: mod/register.php:259 +msgid "Membership on this site is by invitation only." +msgstr "La registrazione su questo sito è solo su invito." + +#: mod/register.php:260 +msgid "Your invitation ID: " +msgstr "L'ID del tuo invito:" + +#: mod/register.php:271 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Il tuo nome completo (es. Mario Rossi, vero o che sembri vero): " + +#: mod/register.php:272 +msgid "Your Email Address: " +msgstr "Il tuo indirizzo email: " + +#: mod/register.php:274 +msgid "Leave empty for an auto generated password." +msgstr "Lascia vuoto per generare automaticamente una password." + +#: mod/register.php:276 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@$sitename'." + +#: mod/register.php:277 +msgid "Choose a nickname: " +msgstr "Scegli un nome utente: " + +#: mod/register.php:280 boot.php:1268 include/nav.php:108 +msgid "Register" +msgstr "Registrati" + +#: mod/register.php:286 mod/uimport.php:64 +msgid "Import" +msgstr "Importa" + +#: mod/register.php:287 +msgid "Import your profile to this friendica instance" +msgstr "Importa il tuo profilo in questo server friendica" + +#: mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Sistema in manutenzione" + +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "Solo agli utenti loggati è permesso eseguire ricerche." + +#: mod/search.php:124 +msgid "Too Many Requests" +msgstr "Troppe richieste" + +#: mod/search.php:125 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "Solo una ricerca al minuto è permessa agli utenti non loggati." + +#: mod/search.php:136 include/text.php:1003 include/nav.php:118 +msgid "Search" +msgstr "Cerca" + +#: mod/search.php:234 #, php-format msgid "Items tagged with: %s" msgstr "Elementi taggati con: %s" -#: mod/search.php:207 +#: mod/search.php:236 #, php-format msgid "Search results for: %s" msgstr "Risultato della ricerca per: %s" +#: mod/directory.php:149 include/identity.php:309 include/identity.php:600 +msgid "Status:" +msgstr "Stato:" + +#: mod/directory.php:151 include/identity.php:311 include/identity.php:611 +msgid "Homepage:" +msgstr "Homepage:" + +#: mod/directory.php:203 view/theme/diabook/theme.php:525 +#: view/theme/vier/theme.php:205 +msgid "Global Directory" +msgstr "Elenco globale" + +#: mod/directory.php:205 +msgid "Find on this site" +msgstr "Cerca nel sito" + +#: mod/directory.php:207 +msgid "Finding:" +msgstr "Ricerca:" + +#: mod/directory.php:209 +msgid "Site Directory" +msgstr "Elenco del sito" + +#: mod/directory.php:216 +msgid "No entries (some entries may be hidden)." +msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Nessun potenziale delegato per la pagina è stato trovato." + +#: mod/delegate.php:130 include/nav.php:180 +msgid "Delegate Page Management" +msgstr "Gestione delegati per la pagina" + +#: mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Gestori Pagina Esistenti" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Delegati Pagina Esistenti" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Delegati Potenziali" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Aggiungi" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Nessuna voce." + +#: mod/common.php:87 +msgid "No contacts in common." +msgstr "Nessun contatto in comune." + +#: mod/uexport.php:77 +msgid "Export account" +msgstr "Esporta account" + +#: mod/uexport.php:77 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server." + +#: mod/uexport.php:78 +msgid "Export all" +msgstr "Esporta tutto" + +#: mod/uexport.php:78 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" + +#: mod/mood.php:62 include/conversation.php:239 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s al momento è %2$s" + +#: mod/mood.php:133 +msgid "Mood" +msgstr "Umore" + +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Condividi il tuo umore con i tuoi amici" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Vuoi veramente cancellare questo suggerimento?" + +#: mod/suggest.php:71 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." + +#: mod/suggest.php:83 mod/suggest.php:101 +msgid "Ignore/Hide" +msgstr "Ignora / Nascondi" + +#: mod/suggest.php:111 include/contact_widgets.php:35 +#: view/theme/diabook/theme.php:527 view/theme/vier/theme.php:207 +msgid "Friend Suggestions" +msgstr "Contatti suggeriti" + +#: mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profilo elminato." + +#: mod/profiles.php:55 mod/profiles.php:89 +msgid "Profile-" +msgstr "Profilo-" + +#: mod/profiles.php:74 mod/profiles.php:117 +msgid "New profile created." +msgstr "Il nuovo profilo è stato creato." + +#: mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il profilo." + +#: mod/profiles.php:189 +msgid "Profile Name is required." +msgstr "Il nome profilo è obbligatorio ." + +#: mod/profiles.php:336 +msgid "Marital Status" +msgstr "Stato civile" + +#: mod/profiles.php:340 +msgid "Romantic Partner" +msgstr "Partner romantico" + +#: mod/profiles.php:344 mod/photos.php:1647 include/conversation.php:508 +msgid "Likes" +msgstr "Mi piace" + +#: mod/profiles.php:348 mod/photos.php:1647 include/conversation.php:508 +msgid "Dislikes" +msgstr "Non mi piace" + +#: mod/profiles.php:352 +msgid "Work/Employment" +msgstr "Lavoro/Impiego" + +#: mod/profiles.php:355 +msgid "Religion" +msgstr "Religione" + +#: mod/profiles.php:359 +msgid "Political Views" +msgstr "Orientamento Politico" + +#: mod/profiles.php:363 +msgid "Gender" +msgstr "Sesso" + +#: mod/profiles.php:367 +msgid "Sexual Preference" +msgstr "Preferenza sessuale" + +#: mod/profiles.php:371 +msgid "Homepage" +msgstr "Homepage" + +#: mod/profiles.php:375 mod/profiles.php:708 +msgid "Interests" +msgstr "Interessi" + +#: mod/profiles.php:379 +msgid "Address" +msgstr "Indirizzo" + +#: mod/profiles.php:386 mod/profiles.php:704 +msgid "Location" +msgstr "Posizione" + +#: mod/profiles.php:469 +msgid "Profile updated." +msgstr "Profilo aggiornato." + +#: mod/profiles.php:565 +msgid " and " +msgstr "e " + +#: mod/profiles.php:573 +msgid "public profile" +msgstr "profilo pubblico" + +#: mod/profiles.php:576 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiato %2$s in “%3$s”" + +#: mod/profiles.php:577 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "- Visita %2$s di %1$s" + +#: mod/profiles.php:580 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha un %2$s aggiornato. Ha cambiato %3$s" + +#: mod/profiles.php:655 +msgid "Hide contacts and friends:" +msgstr "Nascondi contatti:" + +#: mod/profiles.php:660 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?" + +#: mod/profiles.php:684 +msgid "Show more profile fields:" +msgstr "Mostra più informazioni di profilo:" + +#: mod/profiles.php:695 +msgid "Edit Profile Details" +msgstr "Modifica i dettagli del profilo" + +#: mod/profiles.php:697 +msgid "Change Profile Photo" +msgstr "Cambia la foto del profilo" + +#: mod/profiles.php:698 +msgid "View this profile" +msgstr "Visualizza questo profilo" + +#: mod/profiles.php:699 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" + +#: mod/profiles.php:700 +msgid "Clone this profile" +msgstr "Clona questo profilo" + +#: mod/profiles.php:701 +msgid "Delete this profile" +msgstr "Elimina questo profilo" + +#: mod/profiles.php:702 +msgid "Basic information" +msgstr "Informazioni di base" + +#: mod/profiles.php:703 +msgid "Profile picture" +msgstr "Immagine del profilo" + +#: mod/profiles.php:705 +msgid "Preferences" +msgstr "Preferenze" + +#: mod/profiles.php:706 +msgid "Status information" +msgstr "Informazioni stato" + +#: mod/profiles.php:707 +msgid "Additional information" +msgstr "Informazioni aggiuntive" + +#: mod/profiles.php:710 +msgid "Profile Name:" +msgstr "Nome del profilo:" + +#: mod/profiles.php:711 +msgid "Your Full Name:" +msgstr "Il tuo nome completo:" + +#: mod/profiles.php:712 +msgid "Title/Description:" +msgstr "Breve descrizione (es. titolo, posizione, altro):" + +#: mod/profiles.php:713 +msgid "Your Gender:" +msgstr "Il tuo sesso:" + +#: mod/profiles.php:714 +msgid "Birthday :" +msgstr "Compleanno:" + +#: mod/profiles.php:715 +msgid "Street Address:" +msgstr "Indirizzo (via/piazza):" + +#: mod/profiles.php:716 +msgid "Locality/City:" +msgstr "Località:" + +#: mod/profiles.php:717 +msgid "Postal/Zip Code:" +msgstr "CAP:" + +#: mod/profiles.php:718 +msgid "Country:" +msgstr "Nazione:" + +#: mod/profiles.php:719 +msgid "Region/State:" +msgstr "Regione/Stato:" + +#: mod/profiles.php:720 +msgid " Marital Status:" +msgstr " Stato sentimentale:" + +#: mod/profiles.php:721 +msgid "Who: (if applicable)" +msgstr "Con chi: (se possibile)" + +#: mod/profiles.php:722 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" + +#: mod/profiles.php:723 +msgid "Since [date]:" +msgstr "Dal [data]:" + +#: mod/profiles.php:724 include/identity.php:609 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" + +#: mod/profiles.php:725 +msgid "Homepage URL:" +msgstr "Homepage:" + +#: mod/profiles.php:726 include/identity.php:613 +msgid "Hometown:" +msgstr "Paese natale:" + +#: mod/profiles.php:727 include/identity.php:617 +msgid "Political Views:" +msgstr "Orientamento politico:" + +#: mod/profiles.php:728 +msgid "Religious Views:" +msgstr "Orientamento religioso:" + +#: mod/profiles.php:729 +msgid "Public Keywords:" +msgstr "Parole chiave visibili a tutti:" + +#: mod/profiles.php:730 +msgid "Private Keywords:" +msgstr "Parole chiave private:" + +#: mod/profiles.php:731 include/identity.php:625 +msgid "Likes:" +msgstr "Mi piace:" + +#: mod/profiles.php:732 include/identity.php:627 +msgid "Dislikes:" +msgstr "Non mi piace:" + +#: mod/profiles.php:733 +msgid "Example: fishing photography software" +msgstr "Esempio: pesca fotografia programmazione" + +#: mod/profiles.php:734 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)" + +#: mod/profiles.php:735 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" + +#: mod/profiles.php:736 +msgid "Tell us about yourself..." +msgstr "Raccontaci di te..." + +#: mod/profiles.php:737 +msgid "Hobbies/Interests" +msgstr "Hobby/interessi" + +#: mod/profiles.php:738 +msgid "Contact information and Social Networks" +msgstr "Informazioni su contatti e social network" + +#: mod/profiles.php:739 +msgid "Musical interests" +msgstr "Interessi musicali" + +#: mod/profiles.php:740 +msgid "Books, literature" +msgstr "Libri, letteratura" + +#: mod/profiles.php:741 +msgid "Television" +msgstr "Televisione" + +#: mod/profiles.php:742 +msgid "Film/dance/culture/entertainment" +msgstr "Film/danza/cultura/intrattenimento" + +#: mod/profiles.php:743 +msgid "Love/romance" +msgstr "Amore" + +#: mod/profiles.php:744 +msgid "Work/employment" +msgstr "Lavoro/impiego" + +#: mod/profiles.php:745 +msgid "School/education" +msgstr "Scuola/educazione" + +#: mod/profiles.php:750 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet." + +#: mod/profiles.php:760 +msgid "Age: " +msgstr "Età : " + +#: mod/profiles.php:813 +msgid "Edit/Manage Profiles" +msgstr "Modifica / Gestisci profili" + +#: mod/profiles.php:814 include/identity.php:257 include/identity.php:283 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" + +#: mod/profiles.php:815 include/identity.php:258 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" + +#: mod/profiles.php:826 include/identity.php:268 +msgid "Profile Image" +msgstr "Immagine del Profilo" + +#: mod/profiles.php:828 include/identity.php:271 +msgid "visible to everybody" +msgstr "visibile a tutti" + +#: mod/profiles.php:829 include/identity.php:272 +msgid "Edit visibility" +msgstr "Modifica visibilità" + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Oggetto non trovato" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Modifica messaggio" + +#: mod/editpost.php:111 include/conversation.php:1185 +msgid "upload photo" +msgstr "carica foto" + +#: mod/editpost.php:112 include/conversation.php:1186 +msgid "Attach file" +msgstr "Allega file" + +#: mod/editpost.php:113 include/conversation.php:1187 +msgid "attach file" +msgstr "allega file" + +#: mod/editpost.php:115 include/conversation.php:1189 +msgid "web link" +msgstr "link web" + +#: mod/editpost.php:116 include/conversation.php:1190 +msgid "Insert video link" +msgstr "Inserire collegamento video" + +#: mod/editpost.php:117 include/conversation.php:1191 +msgid "video link" +msgstr "link video" + +#: mod/editpost.php:118 include/conversation.php:1192 +msgid "Insert audio link" +msgstr "Inserisci collegamento audio" + +#: mod/editpost.php:119 include/conversation.php:1193 +msgid "audio link" +msgstr "link audio" + +#: mod/editpost.php:120 include/conversation.php:1194 +msgid "Set your location" +msgstr "La tua posizione" + +#: mod/editpost.php:121 include/conversation.php:1195 +msgid "set location" +msgstr "posizione" + +#: mod/editpost.php:122 include/conversation.php:1196 +msgid "Clear browser location" +msgstr "Rimuovi la localizzazione data dal browser" + +#: mod/editpost.php:123 include/conversation.php:1197 +msgid "clear location" +msgstr "canc. pos." + +#: mod/editpost.php:125 include/conversation.php:1203 +msgid "Permission settings" +msgstr "Impostazioni permessi" + +#: mod/editpost.php:133 include/acl_selectors.php:344 +msgid "CC: email addresses" +msgstr "CC: indirizzi email" + +#: mod/editpost.php:134 include/conversation.php:1212 +msgid "Public post" +msgstr "Messaggio pubblico" + +#: mod/editpost.php:137 include/conversation.php:1199 +msgid "Set title" +msgstr "Scegli un titolo" + +#: mod/editpost.php:139 include/conversation.php:1201 +msgid "Categories (comma-separated list)" +msgstr "Categorie (lista separata da virgola)" + +#: mod/editpost.php:140 include/acl_selectors.php:345 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Esempio: bob@example.com, mary@example.com" + +#: mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "Questo è Friendica, versione" + +#: mod/friendica.php:60 +msgid "running at web location" +msgstr "in esecuzione all'indirizzo web" + +#: mod/friendica.php:62 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." + +#: mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "Segnalazioni di bug e problemi: visita" + +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "il bugtracker su github" + +#: mod/friendica.php:65 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com" + +#: mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "Plugin/addon/applicazioni instalate" + +#: mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "Nessun plugin/addons/applicazione installata" + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizza la connessione dell'applicazione" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Effettua il login per continuare." + +#: mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?" + +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informazioni remote sulla privacy non disponibili." + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "Visibile a:" + +#: mod/notes.php:46 include/identity.php:721 +msgid "Personal Notes" +msgstr "Note personali" + +#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Conversione Ora" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti." + +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "Ora UTC: %s" + +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Fuso orario corrente: %s" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Ora locale convertita: %s" + +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Selezionare il tuo fuso orario:" + +#: mod/poke.php:191 +msgid "Poke/Prod" +msgstr "Tocca/Pungola" + +#: mod/poke.php:192 +msgid "poke, prod or do other things to somebody" +msgstr "tocca, pungola o fai altre cose a qualcuno" + +#: mod/poke.php:193 +msgid "Recipient" +msgstr "Destinatario" + +#: mod/poke.php:194 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi fare al destinatario" + +#: mod/poke.php:197 +msgid "Make this post private" +msgstr "Rendi questo post privato" + +#: mod/repair_ostatus.php:14 +msgid "Resubsribing to OStatus contacts" +msgstr "Reiscrizione a contatti OStatus" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "Errore" + #: mod/invite.php:27 msgid "Total invitation limit exceeded." msgstr "Limite totale degli inviti superato." @@ -3846,1754 +5882,204 @@ msgid "" "important, please visit http://friendica.com" msgstr "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com" -#: mod/settings.php:47 -msgid "Additional features" -msgstr "Funzionalità aggiuntive" +#: mod/photos.php:99 include/identity.php:696 +msgid "Photo Albums" +msgstr "Album foto" -#: mod/settings.php:53 -msgid "Display" -msgstr "Visualizzazione" +#: mod/photos.php:100 mod/photos.php:1899 +msgid "Recent Photos" +msgstr "Foto recenti" -#: mod/settings.php:60 mod/settings.php:837 -msgid "Social Networks" -msgstr "Social Networks" +#: mod/photos.php:103 mod/photos.php:1320 mod/photos.php:1901 +msgid "Upload New Photos" +msgstr "Carica nuove foto" -#: mod/settings.php:72 include/nav.php:179 -msgid "Delegations" -msgstr "Delegazioni" +#: mod/photos.php:181 +msgid "Contact information unavailable" +msgstr "I dati di questo contatto non sono disponibili" -#: mod/settings.php:78 -msgid "Connected apps" -msgstr "Applicazioni collegate" +#: mod/photos.php:202 +msgid "Album not found." +msgstr "Album non trovato." -#: mod/settings.php:84 mod/uexport.php:85 -msgid "Export personal data" -msgstr "Esporta dati personali" +#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1262 +msgid "Delete Album" +msgstr "Rimuovi album" -#: mod/settings.php:90 -msgid "Remove account" -msgstr "Rimuovi account" +#: mod/photos.php:242 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?" -#: mod/settings.php:143 -msgid "Missing some important data!" -msgstr "Mancano alcuni dati importanti!" +#: mod/photos.php:322 mod/photos.php:333 mod/photos.php:1580 +msgid "Delete Photo" +msgstr "Rimuovi foto" -#: mod/settings.php:256 -msgid "Failed to connect with email account using the settings provided." -msgstr "Impossibile collegarsi all'account email con i parametri forniti." +#: mod/photos.php:331 +msgid "Do you really want to delete this photo?" +msgstr "Vuoi veramente cancellare questa foto?" -#: mod/settings.php:261 -msgid "Email settings updated." -msgstr "Impostazioni e-mail aggiornate." - -#: mod/settings.php:276 -msgid "Features updated" -msgstr "Funzionalità aggiornate" - -#: mod/settings.php:339 -msgid "Relocate message has been send to your contacts" -msgstr "Il messaggio di trasloco è stato inviato ai tuoi contatti" - -#: mod/settings.php:353 include/user.php:39 -msgid "Passwords do not match. Password unchanged." -msgstr "Le password non corrispondono. Password non cambiata." - -#: mod/settings.php:358 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Le password non possono essere vuote. Password non cambiata." - -#: mod/settings.php:366 -msgid "Wrong password." -msgstr "Password sbagliata." - -#: mod/settings.php:377 -msgid "Password changed." -msgstr "Password cambiata." - -#: mod/settings.php:379 -msgid "Password update failed. Please try again." -msgstr "Aggiornamento password fallito. Prova ancora." - -#: mod/settings.php:446 -msgid " Please use a shorter name." -msgstr " Usa un nome più corto." - -#: mod/settings.php:448 -msgid " Name too short." -msgstr " Nome troppo corto." - -#: mod/settings.php:457 -msgid "Wrong Password" -msgstr "Password Sbagliata" - -#: mod/settings.php:462 -msgid " Not valid email." -msgstr " Email non valida." - -#: mod/settings.php:468 -msgid " Cannot change to that email." -msgstr "Non puoi usare quella email." - -#: mod/settings.php:524 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito." - -#: mod/settings.php:528 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito." - -#: mod/settings.php:558 -msgid "Settings updated." -msgstr "Impostazioni aggiornate." - -#: mod/settings.php:631 mod/settings.php:657 mod/settings.php:693 -msgid "Add application" -msgstr "Aggiungi applicazione" - -#: mod/settings.php:635 mod/settings.php:661 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: mod/settings.php:636 mod/settings.php:662 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: mod/settings.php:637 mod/settings.php:663 -msgid "Redirect" -msgstr "Redirect" - -#: mod/settings.php:638 mod/settings.php:664 -msgid "Icon url" -msgstr "Url icona" - -#: mod/settings.php:649 -msgid "You can't edit this application." -msgstr "Non puoi modificare questa applicazione." - -#: mod/settings.php:692 -msgid "Connected Apps" -msgstr "Applicazioni Collegate" - -#: mod/settings.php:696 -msgid "Client key starts with" -msgstr "Chiave del client inizia con" - -#: mod/settings.php:697 -msgid "No name" -msgstr "Nessun nome" - -#: mod/settings.php:698 -msgid "Remove authorization" -msgstr "Rimuovi l'autorizzazione" - -#: mod/settings.php:710 -msgid "No Plugin settings configured" -msgstr "Nessun plugin ha impostazioni modificabili" - -#: mod/settings.php:718 -msgid "Plugin Settings" -msgstr "Impostazioni plugin" - -#: mod/settings.php:732 -msgid "Off" -msgstr "Spento" - -#: mod/settings.php:732 -msgid "On" -msgstr "Acceso" - -#: mod/settings.php:740 -msgid "Additional Features" -msgstr "Funzionalità aggiuntive" - -#: mod/settings.php:750 mod/settings.php:754 -msgid "General Social Media Settings" -msgstr "Impostazioni Media Sociali" - -#: mod/settings.php:760 -msgid "Disable intelligent shortening" -msgstr "Disabilita accorciamento intelligente" - -#: mod/settings.php:762 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the" -" original friendica post." -msgstr "Normalmente il sistema tenta di trovare il migliore link da aggiungere a un post accorciato. Se questa opzione è abilitata, ogni post accorciato conterrà sempre un link al post originale su Friendica." - -#: mod/settings.php:768 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Segui automanticamente chiunque da GNU Social (OStatus) ti segua o ti menzioni" - -#: mod/settings.php:770 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "Se ricevi un messaggio da un utente OStatus sconosciuto, questa opzione decide cosa fare. Se selezionato, un nuovo contatto verrà creato per ogni utente sconosciuto." - -#: mod/settings.php:779 -msgid "Your legacy GNU Social account" -msgstr "" - -#: mod/settings.php:781 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "" - -#: mod/settings.php:784 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: mod/settings.php:793 mod/settings.php:794 +#: mod/photos.php:706 #, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Il supporto integrato per la connettività con %s è %s" +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s è stato taggato in %2$s da %3$s" -#: mod/settings.php:793 mod/settings.php:794 -msgid "enabled" -msgstr "abilitato" +#: mod/photos.php:706 +msgid "a photo" +msgstr "una foto" -#: mod/settings.php:793 mod/settings.php:794 -msgid "disabled" -msgstr "disabilitato" +#: mod/photos.php:819 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." -#: mod/settings.php:794 -msgid "GNU Social (OStatus)" -msgstr "GNU Social (OStatus)" +#: mod/photos.php:986 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" -#: mod/settings.php:830 -msgid "Email access is disabled on this site." -msgstr "L'accesso email è disabilitato su questo sito." - -#: mod/settings.php:842 -msgid "Email/Mailbox Setup" -msgstr "Impostazioni email" - -#: mod/settings.php:843 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)" - -#: mod/settings.php:844 -msgid "Last successful email check:" -msgstr "Ultimo controllo email eseguito con successo:" - -#: mod/settings.php:846 -msgid "IMAP server name:" -msgstr "Nome server IMAP:" - -#: mod/settings.php:847 -msgid "IMAP port:" -msgstr "Porta IMAP:" - -#: mod/settings.php:848 -msgid "Security:" -msgstr "Sicurezza:" - -#: mod/settings.php:848 mod/settings.php:853 -msgid "None" -msgstr "Nessuna" - -#: mod/settings.php:849 -msgid "Email login name:" -msgstr "Nome utente email:" - -#: mod/settings.php:850 -msgid "Email password:" -msgstr "Password email:" - -#: mod/settings.php:851 -msgid "Reply-to address:" -msgstr "Indirizzo di risposta:" - -#: mod/settings.php:852 -msgid "Send public posts to all email contacts:" -msgstr "Invia i messaggi pubblici ai contatti email:" - -#: mod/settings.php:853 -msgid "Action after import:" -msgstr "Azione post importazione:" - -#: mod/settings.php:853 -msgid "Mark as seen" -msgstr "Segna come letto" - -#: mod/settings.php:853 -msgid "Move to folder" -msgstr "Sposta nella cartella" - -#: mod/settings.php:854 -msgid "Move to folder:" -msgstr "Sposta nella cartella:" - -#: mod/settings.php:935 -msgid "Display Settings" -msgstr "Impostazioni Grafiche" - -#: mod/settings.php:941 mod/settings.php:957 -msgid "Display Theme:" -msgstr "Tema:" - -#: mod/settings.php:942 -msgid "Mobile Theme:" -msgstr "Tema mobile:" - -#: mod/settings.php:943 -msgid "Update browser every xx seconds" -msgstr "Aggiorna il browser ogni x secondi" - -#: mod/settings.php:943 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimo 10 secondi, nessun limite massimo" - -#: mod/settings.php:944 -msgid "Number of items to display per page:" -msgstr "Numero di elementi da mostrare per pagina:" - -#: mod/settings.php:944 mod/settings.php:945 -msgid "Maximum of 100 items" -msgstr "Massimo 100 voci" - -#: mod/settings.php:945 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:" - -#: mod/settings.php:946 -msgid "Don't show emoticons" -msgstr "Non mostrare le emoticons" - -#: mod/settings.php:947 -msgid "Don't show notices" -msgstr "Non mostrare gli avvisi" - -#: mod/settings.php:948 -msgid "Infinite scroll" -msgstr "Scroll infinito" - -#: mod/settings.php:949 -msgid "Automatic updates only at the top of the network page" -msgstr "Aggiornamenti automatici solo in cima alla pagina \"rete\"" - -#: mod/settings.php:951 view/theme/diabook/config.php:150 -#: view/theme/vier/config.php:58 view/theme/dispy/config.php:72 -#: view/theme/duepuntozero/config.php:61 view/theme/quattro/config.php:66 -#: view/theme/cleanzero/config.php:82 -msgid "Theme settings" -msgstr "Impostazioni tema" - -#: mod/settings.php:1027 -msgid "User Types" -msgstr "Tipi di Utenti" - -#: mod/settings.php:1028 -msgid "Community Types" -msgstr "Tipi di Comunità" - -#: mod/settings.php:1029 -msgid "Normal Account Page" -msgstr "Pagina Account Normale" - -#: mod/settings.php:1030 -msgid "This account is a normal personal profile" -msgstr "Questo account è un normale profilo personale" - -#: mod/settings.php:1033 -msgid "Soapbox Page" -msgstr "Pagina Sandbox" - -#: mod/settings.php:1034 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca" - -#: mod/settings.php:1037 -msgid "Community Forum/Celebrity Account" -msgstr "Account Celebrità/Forum comunitario" - -#: mod/settings.php:1038 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca" - -#: mod/settings.php:1041 -msgid "Automatic Friend Page" -msgstr "Pagina con amicizia automatica" - -#: mod/settings.php:1042 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" - -#: mod/settings.php:1045 -msgid "Private Forum [Experimental]" -msgstr "Forum privato [sperimentale]" - -#: mod/settings.php:1046 -msgid "Private forum - approved members only" -msgstr "Forum privato - solo membri approvati" - -#: mod/settings.php:1058 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1058 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" - -#: mod/settings.php:1068 -msgid "Publish your default profile in your local site directory?" -msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" - -#: mod/settings.php:1074 -msgid "Publish your default profile in the global social directory?" -msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" - -#: mod/settings.php:1082 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito" - -#: mod/settings.php:1086 include/acl_selectors.php:330 -msgid "Hide your profile details from unknown viewers?" -msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" - -#: mod/settings.php:1086 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "Se abilitato, l'invio di messaggi pubblici verso Diaspora e altri network non sarà possibile" - -#: mod/settings.php:1091 -msgid "Allow friends to post to your profile page?" -msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" - -#: mod/settings.php:1097 -msgid "Allow friends to tag your posts?" -msgstr "Permetti agli amici di taggare i tuoi messaggi?" - -#: mod/settings.php:1103 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Ci permetti di suggerirti come potenziale amico ai nuovi membri?" - -#: mod/settings.php:1109 -msgid "Permit unknown people to send you private mail?" -msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" - -#: mod/settings.php:1117 -msgid "Profile is not published." -msgstr "Il profilo non è pubblicato." - -#: mod/settings.php:1125 +#: mod/photos.php:1147 #, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "L'indirizzo della tua identità è '%s' or '%s'." +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili." -#: mod/settings.php:1132 -msgid "Automatically expire posts after this many days:" -msgstr "Fai scadere i post automaticamente dopo x giorni:" +#: mod/photos.php:1182 +msgid "Upload Photos" +msgstr "Carica foto" -#: mod/settings.php:1132 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." +#: mod/photos.php:1186 mod/photos.php:1257 +msgid "New album name: " +msgstr "Nome nuovo album: " -#: mod/settings.php:1133 -msgid "Advanced expiration settings" -msgstr "Impostazioni avanzate di scandenza" +#: mod/photos.php:1187 +msgid "or existing album name: " +msgstr "o nome di un album esistente: " -#: mod/settings.php:1134 -msgid "Advanced Expiration" -msgstr "Scadenza avanzata" +#: mod/photos.php:1188 +msgid "Do not show a status post for this upload" +msgstr "Non creare un post per questo upload" -#: mod/settings.php:1135 -msgid "Expire posts:" -msgstr "Fai scadere i post:" +#: mod/photos.php:1190 mod/photos.php:1575 include/acl_selectors.php:347 +msgid "Permissions" +msgstr "Permessi" -#: mod/settings.php:1136 -msgid "Expire personal notes:" -msgstr "Fai scadere le Note personali:" +#: mod/photos.php:1201 +msgid "Private Photo" +msgstr "Foto privata" -#: mod/settings.php:1137 -msgid "Expire starred posts:" -msgstr "Fai scadere i post Speciali:" +#: mod/photos.php:1202 +msgid "Public Photo" +msgstr "Foto pubblica" -#: mod/settings.php:1138 -msgid "Expire photos:" -msgstr "Fai scadere le foto:" +#: mod/photos.php:1270 +msgid "Edit Album" +msgstr "Modifica album" -#: mod/settings.php:1139 -msgid "Only expire posts by others:" -msgstr "Fai scadere solo i post degli altri:" +#: mod/photos.php:1276 +msgid "Show Newest First" +msgstr "Mostra nuove foto per prime" -#: mod/settings.php:1165 -msgid "Account Settings" -msgstr "Impostazioni account" +#: mod/photos.php:1278 +msgid "Show Oldest First" +msgstr "Mostra vecchie foto per prime" -#: mod/settings.php:1173 -msgid "Password Settings" -msgstr "Impostazioni password" +#: mod/photos.php:1306 mod/photos.php:1884 +msgid "View Photo" +msgstr "Vedi foto" -#: mod/settings.php:1175 -msgid "Leave password fields blank unless changing" -msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" +#: mod/photos.php:1353 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." -#: mod/settings.php:1176 -msgid "Current Password:" -msgstr "Password Attuale:" +#: mod/photos.php:1355 +msgid "Photo not available" +msgstr "Foto non disponibile" -#: mod/settings.php:1176 mod/settings.php:1177 -msgid "Your current password to confirm the changes" -msgstr "La tua password attuale per confermare le modifiche" +#: mod/photos.php:1411 +msgid "View photo" +msgstr "Vedi foto" -#: mod/settings.php:1177 -msgid "Password:" -msgstr "Password:" +#: mod/photos.php:1411 +msgid "Edit photo" +msgstr "Modifica foto" -#: mod/settings.php:1181 -msgid "Basic Settings" -msgstr "Impostazioni base" +#: mod/photos.php:1412 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" -#: mod/settings.php:1182 include/identity.php:539 -msgid "Full Name:" -msgstr "Nome completo:" +#: mod/photos.php:1437 +msgid "View Full Size" +msgstr "Vedi dimensione intera" -#: mod/settings.php:1183 -msgid "Email Address:" -msgstr "Indirizzo Email:" +#: mod/photos.php:1523 +msgid "Tags: " +msgstr "Tag: " -#: mod/settings.php:1184 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" +#: mod/photos.php:1526 +msgid "[Remove any tag]" +msgstr "[Rimuovi tutti i tag]" -#: mod/settings.php:1185 -msgid "Default Post Location:" -msgstr "Località predefinita:" +#: mod/photos.php:1566 +msgid "New album name" +msgstr "Nuovo nome dell'album" -#: mod/settings.php:1186 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" +#: mod/photos.php:1567 +msgid "Caption" +msgstr "Titolo" -#: mod/settings.php:1189 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di sicurezza e privacy" +#: mod/photos.php:1568 +msgid "Add a Tag" +msgstr "Aggiungi tag" -#: mod/settings.php:1191 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo di richieste di amicizia al giorno:" - -#: mod/settings.php:1191 mod/settings.php:1221 -msgid "(to prevent spam abuse)" -msgstr "(per prevenire lo spam)" - -#: mod/settings.php:1192 -msgid "Default Post Permissions" -msgstr "Permessi predefiniti per i messaggi" - -#: mod/settings.php:1193 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" - -#: mod/settings.php:1204 -msgid "Default Private Post" -msgstr "Default Post Privato" - -#: mod/settings.php:1205 -msgid "Default Public Post" -msgstr "Default Post Pubblico" - -#: mod/settings.php:1209 -msgid "Default Permissions for New Posts" -msgstr "Permessi predefiniti per i nuovi post" - -#: mod/settings.php:1221 -msgid "Maximum private messages per day from unknown people:" -msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" - -#: mod/settings.php:1224 -msgid "Notification Settings" -msgstr "Impostazioni notifiche" - -#: mod/settings.php:1225 -msgid "By default post a status message when:" -msgstr "Invia un messaggio di stato quando:" - -#: mod/settings.php:1226 -msgid "accepting a friend request" -msgstr "accetti una richiesta di amicizia" - -#: mod/settings.php:1227 -msgid "joining a forum/community" -msgstr "ti unisci a un forum/comunità" - -#: mod/settings.php:1228 -msgid "making an interesting profile change" -msgstr "fai un interessante modifica al profilo" - -#: mod/settings.php:1229 -msgid "Send a notification email when:" -msgstr "Invia una mail di notifica quando:" - -#: mod/settings.php:1230 -msgid "You receive an introduction" -msgstr "Ricevi una presentazione" - -#: mod/settings.php:1231 -msgid "Your introductions are confirmed" -msgstr "Le tue presentazioni sono confermate" - -#: mod/settings.php:1232 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla bacheca del tuo profilo" - -#: mod/settings.php:1233 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento a un tuo messaggio" - -#: mod/settings.php:1234 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" - -#: mod/settings.php:1235 -msgid "You receive a friend suggestion" -msgstr "Hai ricevuto un suggerimento di amicizia" - -#: mod/settings.php:1236 -msgid "You are tagged in a post" -msgstr "Sei stato taggato in un post" - -#: mod/settings.php:1237 -msgid "You are poked/prodded/etc. in a post" -msgstr "Sei 'toccato'/'spronato'/ecc. in un post" - -#: mod/settings.php:1239 -msgid "Activate desktop notifications" -msgstr "Attiva notifiche desktop" - -#: mod/settings.php:1239 -msgid "Show desktop popup on new notifications" -msgstr "Mostra un popup di notifica sul desktop all'arrivo di nuove notifiche" - -#: mod/settings.php:1241 -msgid "Text-only notification emails" -msgstr "Email di notifica in solo testo" - -#: mod/settings.php:1243 -msgid "Send text only notification emails, without the html part" -msgstr "Invia le email di notifica in solo testo, senza la parte in html" - -#: mod/settings.php:1245 -msgid "Advanced Account/Page Type Settings" -msgstr "Impostazioni avanzate Account/Tipo di pagina" - -#: mod/settings.php:1246 -msgid "Change the behaviour of this account for special situations" -msgstr "Modifica il comportamento di questo account in situazioni speciali" - -#: mod/settings.php:1249 -msgid "Relocate" -msgstr "Trasloca" - -#: mod/settings.php:1250 +#: mod/photos.php:1568 msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone." - -#: mod/settings.php:1251 -msgid "Resend relocate message to contacts" -msgstr "Reinvia il messaggio di trasloco" - -#: mod/display.php:505 -msgid "Item has been removed." -msgstr "L'oggetto è stato rimosso." - -#: mod/dirfind.php:36 -#, php-format -msgid "People Search - %s" -msgstr "Cerca persone - %s" - -#: mod/dirfind.php:125 mod/suggest.php:92 mod/match.php:70 -#: include/identity.php:188 include/contact_widgets.php:10 -msgid "Connect" -msgstr "Connetti" - -#: mod/dirfind.php:141 mod/match.php:77 -msgid "No matches" -msgstr "Nessun risultato" - -#: mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profilo elminato." - -#: mod/profiles.php:55 mod/profiles.php:89 -msgid "Profile-" -msgstr "Profilo-" - -#: mod/profiles.php:74 mod/profiles.php:117 -msgid "New profile created." -msgstr "Il nuovo profilo è stato creato." - -#: mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il profilo." - -#: mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Il nome profilo è obbligatorio ." - -#: mod/profiles.php:336 -msgid "Marital Status" -msgstr "Stato civile" - -#: mod/profiles.php:340 -msgid "Romantic Partner" -msgstr "Partner romantico" - -#: mod/profiles.php:344 -msgid "Likes" -msgstr "Mi piace" - -#: mod/profiles.php:348 -msgid "Dislikes" -msgstr "Non mi piace" - -#: mod/profiles.php:352 -msgid "Work/Employment" -msgstr "Lavoro/Impiego" - -#: mod/profiles.php:355 -msgid "Religion" -msgstr "Religione" - -#: mod/profiles.php:359 -msgid "Political Views" -msgstr "Orientamento Politico" - -#: mod/profiles.php:363 -msgid "Gender" -msgstr "Sesso" - -#: mod/profiles.php:367 -msgid "Sexual Preference" -msgstr "Preferenza sessuale" - -#: mod/profiles.php:371 -msgid "Homepage" -msgstr "Homepage" - -#: mod/profiles.php:375 mod/profiles.php:695 -msgid "Interests" -msgstr "Interessi" - -#: mod/profiles.php:379 -msgid "Address" -msgstr "Indirizzo" - -#: mod/profiles.php:386 mod/profiles.php:691 -msgid "Location" -msgstr "Posizione" - -#: mod/profiles.php:469 -msgid "Profile updated." -msgstr "Profilo aggiornato." - -#: mod/profiles.php:565 -msgid " and " -msgstr "e " - -#: mod/profiles.php:573 -msgid "public profile" -msgstr "profilo pubblico" - -#: mod/profiles.php:576 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiato %2$s in “%3$s”" - -#: mod/profiles.php:577 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "- Visita %2$s di %1$s" - -#: mod/profiles.php:580 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha un %2$s aggiornato. Ha cambiato %3$s" - -#: mod/profiles.php:655 -msgid "Hide contacts and friends:" -msgstr "Nascondi contatti:" - -#: mod/profiles.php:660 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?" - -#: mod/profiles.php:682 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" - -#: mod/profiles.php:684 -msgid "Change Profile Photo" -msgstr "Cambia la foto del profilo" - -#: mod/profiles.php:685 -msgid "View this profile" -msgstr "Visualizza questo profilo" - -#: mod/profiles.php:686 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" - -#: mod/profiles.php:687 -msgid "Clone this profile" -msgstr "Clona questo profilo" - -#: mod/profiles.php:688 -msgid "Delete this profile" -msgstr "Elimina questo profilo" - -#: mod/profiles.php:689 -msgid "Basic information" -msgstr "Informazioni di base" - -#: mod/profiles.php:690 -msgid "Profile picture" -msgstr "Immagine del profilo" - -#: mod/profiles.php:692 -msgid "Preferences" -msgstr "Preferenze" - -#: mod/profiles.php:693 -msgid "Status information" -msgstr "Informazioni stato" - -#: mod/profiles.php:694 -msgid "Additional information" -msgstr "Informazioni aggiuntive" - -#: mod/profiles.php:697 -msgid "Profile Name:" -msgstr "Nome del profilo:" - -#: mod/profiles.php:698 -msgid "Your Full Name:" -msgstr "Il tuo nome completo:" - -#: mod/profiles.php:699 -msgid "Title/Description:" -msgstr "Breve descrizione (es. titolo, posizione, altro):" - -#: mod/profiles.php:700 -msgid "Your Gender:" -msgstr "Il tuo sesso:" - -#: mod/profiles.php:701 -msgid "Birthday :" -msgstr "Compleanno:" - -#: mod/profiles.php:702 -msgid "Street Address:" -msgstr "Indirizzo (via/piazza):" - -#: mod/profiles.php:703 -msgid "Locality/City:" -msgstr "Località:" - -#: mod/profiles.php:704 -msgid "Postal/Zip Code:" -msgstr "CAP:" - -#: mod/profiles.php:705 -msgid "Country:" -msgstr "Nazione:" - -#: mod/profiles.php:706 -msgid "Region/State:" -msgstr "Regione/Stato:" - -#: mod/profiles.php:707 -msgid " Marital Status:" -msgstr " Stato sentimentale:" - -#: mod/profiles.php:708 -msgid "Who: (if applicable)" -msgstr "Con chi: (se possibile)" - -#: mod/profiles.php:709 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" - -#: mod/profiles.php:710 -msgid "Since [date]:" -msgstr "Dal [data]:" - -#: mod/profiles.php:711 include/identity.php:570 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" - -#: mod/profiles.php:712 -msgid "Homepage URL:" -msgstr "Homepage:" - -#: mod/profiles.php:713 include/identity.php:574 -msgid "Hometown:" -msgstr "Paese natale:" - -#: mod/profiles.php:714 include/identity.php:578 -msgid "Political Views:" -msgstr "Orientamento politico:" - -#: mod/profiles.php:715 -msgid "Religious Views:" -msgstr "Orientamento religioso:" - -#: mod/profiles.php:716 -msgid "Public Keywords:" -msgstr "Parole chiave visibili a tutti:" - -#: mod/profiles.php:717 -msgid "Private Keywords:" -msgstr "Parole chiave private:" - -#: mod/profiles.php:718 include/identity.php:586 -msgid "Likes:" -msgstr "Mi piace:" - -#: mod/profiles.php:719 include/identity.php:588 -msgid "Dislikes:" -msgstr "Non mi piace:" - -#: mod/profiles.php:720 -msgid "Example: fishing photography software" -msgstr "Esempio: pesca fotografia programmazione" - -#: mod/profiles.php:721 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)" - -#: mod/profiles.php:722 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" - -#: mod/profiles.php:723 -msgid "Tell us about yourself..." -msgstr "Raccontaci di te..." - -#: mod/profiles.php:724 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" - -#: mod/profiles.php:725 -msgid "Contact information and Social Networks" -msgstr "Informazioni su contatti e social network" - -#: mod/profiles.php:726 -msgid "Musical interests" -msgstr "Interessi musicali" - -#: mod/profiles.php:727 -msgid "Books, literature" -msgstr "Libri, letteratura" - -#: mod/profiles.php:728 -msgid "Television" -msgstr "Televisione" - -#: mod/profiles.php:729 -msgid "Film/dance/culture/entertainment" -msgstr "Film/danza/cultura/intrattenimento" - -#: mod/profiles.php:730 -msgid "Love/romance" -msgstr "Amore" - -#: mod/profiles.php:731 -msgid "Work/employment" -msgstr "Lavoro/impiego" - -#: mod/profiles.php:732 -msgid "School/education" -msgstr "Scuola/educazione" - -#: mod/profiles.php:737 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet." - -#: mod/profiles.php:747 mod/directory.php:129 -msgid "Age: " -msgstr "Età : " - -#: mod/profiles.php:800 -msgid "Edit/Manage Profiles" -msgstr "Modifica / Gestisci profili" - -#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" - -#: mod/profiles.php:802 include/identity.php:232 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" - -#: mod/profiles.php:813 include/identity.php:242 -msgid "Profile Image" -msgstr "Immagine del Profilo" - -#: mod/profiles.php:815 include/identity.php:245 -msgid "visible to everybody" -msgstr "visibile a tutti" - -#: mod/profiles.php:816 include/identity.php:246 -msgid "Edit visibility" -msgstr "Modifica visibilità" - -#: mod/share.php:38 -msgid "link" -msgstr "collegamento" - -#: mod/uexport.php:77 -msgid "Export account" -msgstr "Esporta account" - -#: mod/uexport.php:77 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server." - -#: mod/uexport.php:78 -msgid "Export all" -msgstr "Esporta tutto" - -#: mod/uexport.php:78 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" - -#: mod/ping.php:233 -msgid "{0} wants to be your friend" -msgstr "{0} vuole essere tuo amico" - -#: mod/ping.php:248 -msgid "{0} sent you a message" -msgstr "{0} ti ha inviato un messaggio" - -#: mod/ping.php:263 -msgid "{0} requested registration" -msgstr "{0} chiede la registrazione" - -#: mod/navigation.php:20 include/nav.php:34 -msgid "Nothing new here" -msgstr "Niente di nuovo qui" - -#: mod/navigation.php:24 include/nav.php:38 -msgid "Clear notifications" -msgstr "Pulisci le notifiche" - -#: mod/community.php:23 -msgid "Not available." -msgstr "Non disponibile." - -#: mod/community.php:32 view/theme/diabook/theme.php:129 include/nav.php:137 -#: include/nav.php:139 -msgid "Community" -msgstr "Comunità" - -#: mod/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 -msgid "Save to Folder:" -msgstr "Salva nella Cartella:" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "- seleziona -" - -#: mod/wall_attach.php:83 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta" - -#: mod/wall_attach.php:83 -msgid "Or - did you try to upload an empty file?" -msgstr "O.. non avrai provato a caricare un file vuoto?" - -#: mod/wall_attach.php:94 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Il file supera la dimensione massima di %s" - -#: mod/wall_attach.php:145 mod/wall_attach.php:161 -msgid "File upload failed." -msgstr "Caricamento del file non riuscito." - -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." - -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "Modifica visibilità del profilo" - -#: mod/profperm.php:106 mod/group.php:222 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." - -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "Visibile a" - -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "Tutti i contatti (con profilo ad accesso sicuro)" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Vuoi veramente cancellare questo suggerimento?" - -#: mod/suggest.php:69 view/theme/diabook/theme.php:527 -#: include/contact_widgets.php:35 -msgid "Friend Suggestions" -msgstr "Contatti suggeriti" - -#: mod/suggest.php:76 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." - -#: mod/suggest.php:94 -msgid "Ignore/Hide" -msgstr "Ignora / Nascondi" - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Accesso negato." - -#: mod/repair_ostatus.php:14 -msgid "Resubsribing to OStatus contacts" -msgstr "" - -#: mod/repair_ostatus.php:30 -msgid "Error" -msgstr "" - -#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 -msgid "Done" -msgstr "" - -#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 -msgid "Keep this window open until done." -msgstr "" - -#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%s dà il benvenuto a %s" - -#: mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Gestisci indentità e/o pagine" - -#: mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" - -#: mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Seleziona un'identità da gestire:" - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Nessun potenziale delegato per la pagina è stato trovato." - -#: mod/delegate.php:130 include/nav.php:179 -msgid "Delegate Page Management" -msgstr "Gestione delegati per la pagina" - -#: mod/delegate.php:132 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." - -#: mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Gestori Pagina Esistenti" - -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Delegati Pagina Esistenti" - -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Delegati Potenziali" - -#: mod/delegate.php:140 -msgid "Add" -msgstr "Aggiungi" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "Nessuna voce." - -#: mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Nessun contatto." - -#: mod/viewcontacts.php:78 include/text.php:917 -msgid "View Contacts" -msgstr "Visualizza i contatti" - -#: mod/notes.php:44 include/identity.php:676 -msgid "Personal Notes" -msgstr "Note personali" - -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Tocca/Pungola" - -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "tocca, pungola o fai altre cose a qualcuno" - -#: mod/poke.php:194 -msgid "Recipient" -msgstr "Destinatario" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi fare al destinatario" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "Rendi questo post privato" - -#: mod/directory.php:53 view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Elenco globale" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "Cerca nel sito" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "Elenco del sito" - -#: mod/directory.php:132 -msgid "Gender: " -msgstr "Genere:" - -#: mod/directory.php:156 include/identity.php:273 include/identity.php:561 -msgid "Status:" -msgstr "Stato:" - -#: mod/directory.php:158 include/identity.php:275 include/identity.php:572 -msgid "Homepage:" -msgstr "Homepage:" - -#: mod/directory.php:205 -msgid "No entries (some entries may be hidden)." -msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." - -#: mod/ostatus_subscribe.php:14 -msgid "Subsribing to OStatus contacts" -msgstr "" - -#: mod/ostatus_subscribe.php:25 -msgid "No contact provided." -msgstr "" - -#: mod/ostatus_subscribe.php:30 -msgid "Couldn't fetch information for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:38 -msgid "Couldn't fetch friends for contact." -msgstr "" - -#: mod/ostatus_subscribe.php:65 -msgid "success" -msgstr "" - -#: mod/ostatus_subscribe.php:67 -msgid "failed" -msgstr "" - -#: mod/localtime.php:12 include/event.php:13 include/bb2diaspora.php:148 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - -#: mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Conversione Ora" - -#: mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti." - -#: mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "Ora UTC: %s" - -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Fuso orario corrente: %s" - -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Ora locale convertita: %s" - -#: mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Selezionare il tuo fuso orario:" - -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "Inviato!" - -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." - -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:308 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Il ridimensionamento del'immagine [%s] è fallito." - -#: mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." - -#: mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" - -#: mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Carica un file:" - -#: mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Seleziona un profilo:" - -#: mod/profile_photo.php:245 -#: view/smarty3/compiled/7ed3c1755557256685d55b3a8e5cca927de090fb.file.filebrowser_plain.tpl.php:96 -#: view/smarty3/compiled/48b358673d34ee5cf1512cb114ef7f14c9f5b9d0.file.filebrowser_plain.tpl.php:96 -#: view/smarty3/compiled/be03ead94b64e658f07d62d8fbdc13a08b408e62.file.filebrowser_plain.tpl.php:103 -msgid "Upload" -msgstr "Carica" - -#: mod/profile_photo.php:248 -msgid "or" -msgstr "o" - -#: mod/profile_photo.php:248 -msgid "skip this step" -msgstr "salta questo passaggio" - -#: mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "seleziona una foto dai tuoi album" - -#: mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Ritaglia immagine" - -#: mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ritaglia l'imagine per una visualizzazione migliore." - -#: mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Finito" - -#: mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Immagine caricata con successo." - -#: mod/install.php:119 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica Comunicazione Server - Impostazioni" - -#: mod/install.php:125 -msgid "Could not connect to database." -msgstr " Impossibile collegarsi con il database." - -#: mod/install.php:129 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." - -#: mod/install.php:135 -msgid "Your Friendica site database has been installed." -msgstr "Il tuo Friendica è stato installato." - -#: mod/install.php:140 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql" - -#: mod/install.php:141 mod/install.php:208 mod/install.php:537 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Leggi il file \"INSTALL.txt\"." - -#: mod/install.php:153 -msgid "Database already in use." -msgstr "Database già in uso." - -#: mod/install.php:205 -msgid "System check" -msgstr "Controllo sistema" - -#: mod/install.php:210 -msgid "Check again" -msgstr "Controlla ancora" - -#: mod/install.php:229 -msgid "Database connection" -msgstr "Connessione al database" - -#: mod/install.php:230 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database." - -#: mod/install.php:231 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." - -#: mod/install.php:232 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare." - -#: mod/install.php:236 -msgid "Database Server Name" -msgstr "Nome del database server" - -#: mod/install.php:237 -msgid "Database Login Name" -msgstr "Nome utente database" - -#: mod/install.php:238 -msgid "Database Login Password" -msgstr "Password utente database" - -#: mod/install.php:239 -msgid "Database Name" -msgstr "Nome database" - -#: mod/install.php:240 mod/install.php:279 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del sito" - -#: mod/install.php:240 mod/install.php:279 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web." - -#: mod/install.php:244 mod/install.php:282 -msgid "Please select a default timezone for your website" -msgstr "Seleziona il fuso orario predefinito per il tuo sito web" - -#: mod/install.php:269 -msgid "Site settings" -msgstr "Impostazioni sito" - -#: mod/install.php:323 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web" - -#: mod/install.php:324 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Activating scheduled tasks'" - -#: mod/install.php:328 -msgid "PHP executable path" -msgstr "Percorso eseguibile PHP" - -#: mod/install.php:328 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione." - -#: mod/install.php:333 -msgid "Command line PHP" -msgstr "PHP da riga di comando" - -#: mod/install.php:342 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)" - -#: mod/install.php:343 -msgid "Found PHP version: " -msgstr "Versione PHP:" - -#: mod/install.php:345 -msgid "PHP cli binary" -msgstr "Binario PHP cli" - -#: mod/install.php:356 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." - -#: mod/install.php:357 -msgid "This is required for message delivery to work." -msgstr "E' obbligatorio per far funzionare la consegna dei messaggi." - -#: mod/install.php:359 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: mod/install.php:380 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione" - -#: mod/install.php:381 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: mod/install.php:383 -msgid "Generate encryption keys" -msgstr "Genera chiavi di criptazione" - -#: mod/install.php:390 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" - -#: mod/install.php:391 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" - -#: mod/install.php:392 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" - -#: mod/install.php:393 -msgid "mysqli PHP module" -msgstr "modulo PHP mysqli" - -#: mod/install.php:394 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" - -#: mod/install.php:395 -msgid "mcrypt PHP module" -msgstr "" - -#: mod/install.php:400 mod/install.php:402 -msgid "Apache mod_rewrite module" -msgstr "Modulo mod_rewrite di Apache" - -#: mod/install.php:400 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato" - -#: mod/install.php:408 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato." - -#: mod/install.php:412 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato." - -#: mod/install.php:416 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato." - -#: mod/install.php:420 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato" - -#: mod/install.php:424 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato." - -#: mod/install.php:428 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "" - -#: mod/install.php:447 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo." - -#: mod/install.php:448 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi." - -#: mod/install.php:449 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica" - -#: mod/install.php:450 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni." - -#: mod/install.php:453 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" - -#: mod/install.php:463 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering." - -#: mod/install.php:464 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica." - -#: mod/install.php:465 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella." - -#: mod/install.php:466 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene." - -#: mod/install.php:469 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 è scrivibile" - -#: mod/install.php:485 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server." - -#: mod/install.php:487 -msgid "Url rewrite is working" -msgstr "La riscrittura degli url funziona" - -#: mod/install.php:496 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito." - -#: mod/install.php:535 -msgid "

What next

" -msgstr "

Cosa fare ora

" - -#: mod/install.php:536 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller." +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1569 +msgid "Do not rotate" +msgstr "Non ruotare" + +#: mod/photos.php:1570 +msgid "Rotate CW (right)" +msgstr "Ruota a destra" + +#: mod/photos.php:1571 +msgid "Rotate CCW (left)" +msgstr "Ruota a sinistra" + +#: mod/photos.php:1586 +msgid "Private photo" +msgstr "Foto privata" + +#: mod/photos.php:1587 +msgid "Public photo" +msgstr "Foto pubblica" + +#: mod/photos.php:1609 include/conversation.php:1183 +msgid "Share" +msgstr "Condividi" + +#: mod/photos.php:1648 include/conversation.php:509 +#: include/conversation.php:1414 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Partecipa" +msgstr[1] "Partecipano" + +#: mod/photos.php:1648 include/conversation.php:509 +msgid "Not attending" +msgstr "Non partecipa" + +#: mod/photos.php:1648 include/conversation.php:509 +msgid "Might attend" +msgstr "Forse partecipa" + +#: mod/photos.php:1813 +msgid "Map" +msgstr "Mappa" #: mod/p.php:9 msgid "Not Extended" msgstr "Not Extended" -#: mod/group.php:29 -msgid "Group created." -msgstr "Gruppo creato." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Impossibile creare il gruppo." - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "Gruppo non trovato." - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "Il nome del gruppo è cambiato." - -#: mod/group.php:87 -msgid "Save Group" -msgstr "Salva gruppo" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Crea un gruppo di amici/contatti." - -#: mod/group.php:94 mod/group.php:178 include/group.php:273 -msgid "Group Name: " -msgstr "Nome del gruppo:" - -#: mod/group.php:113 -msgid "Group removed." -msgstr "Gruppo rimosso." - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "Impossibile rimuovere il gruppo." - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "Modifica gruppo" - -#: mod/group.php:190 -msgid "Members" -msgstr "Membri" - -#: mod/content.php:119 mod/network.php:532 -msgid "No such group" -msgstr "Nessun gruppo" - -#: mod/content.php:130 mod/network.php:549 -msgid "Group is empty" -msgstr "Il gruppo è vuoto" - -#: mod/content.php:135 mod/network.php:560 -#, php-format -msgid "Group: %s" -msgstr "Gruppo: %s" - -#: mod/content.php:499 include/conversation.php:689 -msgid "View in context" -msgstr "Vedi nel contesto" - #: mod/regmod.php:55 msgid "Account approved." msgstr "Account approvato." @@ -5607,749 +6093,166 @@ msgstr "Registrazione revocata per %s" msgid "Please login." msgstr "Accedi." -#: mod/match.php:18 -msgid "Profile Match" -msgstr "Profili corrispondenti" +#: mod/uimport.php:66 +msgid "Move account" +msgstr "Muovi account" -#: mod/match.php:27 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito." +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Puoi importare un account da un altro server Friendica." -#: mod/match.php:69 -msgid "is interested in:" -msgstr "è interessato a:" - -#: mod/item.php:115 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." - -#: mod/item.php:347 -msgid "Empty post discarded." -msgstr "Messaggio vuoto scartato." - -#: mod/item.php:860 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Messaggio non salvato." - -#: mod/item.php:989 -#, php-format +#: mod/uimport.php:68 msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica." +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui." -#: mod/item.php:991 -#, php-format -msgid "You may visit them online at %s" -msgstr "Puoi visitarli online su %s" - -#: mod/item.php:992 +#: mod/uimport.php:69 msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi." +"This feature is experimental. We can't import contacts from the OStatus " +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (GNU Social/Statusnet) o da Diaspora" -#: mod/item.php:996 -#, php-format -msgid "%s posted an update." -msgstr "%s ha inviato un aggiornamento." +#: mod/uimport.php:70 +msgid "Account file" +msgstr "File account" -#: mod/mood.php:62 include/conversation.php:226 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s al momento è %2$s" - -#: mod/mood.php:133 -msgid "Mood" -msgstr "Umore" - -#: mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Condividi il tuo umore con i tuoi amici" - -#: mod/network.php:143 -#, php-format -msgid "Search Results For: %s" -msgstr "Risultato della ricerca per: %s" - -#: mod/network.php:197 include/group.php:277 -msgid "add" -msgstr "aggiungi" - -#: mod/network.php:358 -msgid "Commented Order" -msgstr "Ordina per commento" - -#: mod/network.php:361 -msgid "Sort by Comment Date" -msgstr "Ordina per data commento" - -#: mod/network.php:365 -msgid "Posted Order" -msgstr "Ordina per invio" - -#: mod/network.php:368 -msgid "Sort by Post Date" -msgstr "Ordina per data messaggio" - -#: mod/network.php:378 -msgid "Posts that mention or involve you" -msgstr "Messaggi che ti citano o coinvolgono" - -#: mod/network.php:385 -msgid "New" -msgstr "Nuovo" - -#: mod/network.php:388 -msgid "Activity Stream - by date" -msgstr "Activity Stream - per data" - -#: mod/network.php:395 -msgid "Shared Links" -msgstr "Links condivisi" - -#: mod/network.php:398 -msgid "Interesting Links" -msgstr "Link Interessanti" - -#: mod/network.php:405 -msgid "Starred" -msgstr "Preferiti" - -#: mod/network.php:408 -msgid "Favourite Posts" -msgstr "Messaggi preferiti" - -#: mod/network.php:466 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Attenzione: questo gruppo contiene %s membro da un network insicuro." -msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro." - -#: mod/network.php:469 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente." - -#: mod/network.php:578 -#, php-format -msgid "Contact: %s" -msgstr "Contatto: %s" - -#: mod/network.php:582 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente." - -#: mod/network.php:587 -msgid "Invalid contact." -msgstr "Contatto non valido." - -#: mod/crepair.php:107 -msgid "Contact settings applied." -msgstr "Contatto modificato." - -#: mod/crepair.php:109 -msgid "Contact update failed." -msgstr "Le modifiche al contatto non sono state salvate." - -#: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "Ripara il contatto" - -#: mod/crepair.php:142 +#: mod/uimport.php:70 msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"" -#: mod/crepair.php:143 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina." +#: mod/attach.php:8 +msgid "Item not available." +msgstr "Oggetto non disponibile." -#: mod/crepair.php:149 -msgid "Return to contact editor" -msgstr "Ritorna alla modifica contatto" +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Oggetto non trovato." -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "No mirroring" -msgstr "Non duplicare" - -#: mod/crepair.php:160 -msgid "Mirror as forwarded posting" -msgstr "Duplica come messaggi ricondivisi" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "Mirror as my own posting" -msgstr "Duplica come miei messaggi" - -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "Ricarica dati contatto" - -#: mod/crepair.php:171 -msgid "Account Nickname" -msgstr "Nome utente" - -#: mod/crepair.php:172 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@TagName - al posto del nome utente" - -#: mod/crepair.php:173 -msgid "Account URL" -msgstr "URL dell'utente" - -#: mod/crepair.php:174 -msgid "Friend Request URL" -msgstr "URL Richiesta Amicizia" - -#: mod/crepair.php:175 -msgid "Friend Confirm URL" -msgstr "URL Conferma Amicizia" - -#: mod/crepair.php:176 -msgid "Notification Endpoint URL" -msgstr "URL Notifiche" - -#: mod/crepair.php:177 -msgid "Poll/Feed URL" -msgstr "URL Feed" - -#: mod/crepair.php:178 -msgid "New photo from this URL" -msgstr "Nuova foto da questo URL" - -#: mod/crepair.php:179 -msgid "Remote Self" -msgstr "Io remoto" - -#: mod/crepair.php:181 -msgid "Mirror postings from this contact" -msgstr "Ripeti i messaggi di questo contatto" - -#: mod/crepair.php:181 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto." - -#: view/theme/diabook/theme.php:123 include/nav.php:76 include/nav.php:156 -msgid "Your posts and conversations" -msgstr "I tuoi messaggi e le tue conversazioni" - -#: view/theme/diabook/theme.php:124 include/nav.php:77 -msgid "Your profile page" -msgstr "Pagina del tuo profilo" - -#: view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "I tuoi contatti" - -#: view/theme/diabook/theme.php:126 include/nav.php:78 -msgid "Your photos" -msgstr "Le tue foto" - -#: view/theme/diabook/theme.php:127 include/nav.php:80 -msgid "Your events" -msgstr "I tuoi eventi" - -#: view/theme/diabook/theme.php:128 include/nav.php:81 -msgid "Personal notes" -msgstr "Note personali" - -#: view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Le tue foto personali" - -#: view/theme/diabook/theme.php:130 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:624 view/theme/diabook/config.php:158 -msgid "Community Pages" -msgstr "Pagine Comunitarie" - -#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626 -#: view/theme/diabook/config.php:160 -msgid "Community Profiles" -msgstr "Profili Comunità" - -#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630 -#: view/theme/diabook/config.php:164 -msgid "Last users" -msgstr "Ultimi utenti" - -#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632 -#: view/theme/diabook/config.php:166 -msgid "Last likes" -msgstr "Ultimi \"mi piace\"" - -#: view/theme/diabook/theme.php:463 include/text.php:2032 -#: include/conversation.php:118 include/conversation.php:245 -msgid "event" -msgstr "l'evento" - -#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631 -#: view/theme/diabook/config.php:165 -msgid "Last photos" -msgstr "Ultime foto" - -#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629 -#: view/theme/diabook/config.php:163 -msgid "Find Friends" -msgstr "Trova Amici" - -#: view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Elenco Locale" - -#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "Interessi simili" - -#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "Invita amici" - -#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625 -#: view/theme/diabook/config.php:159 -msgid "Earth Layers" -msgstr "Earth Layers" - -#: view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Livello di zoom per Earth Layers" - -#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156 -msgid "Set longitude (X) for Earth Layers" -msgstr "Longitudine (X) per Earth Layers" - -#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Latitudine (Y) per Earth Layers" - -#: view/theme/diabook/theme.php:599 view/theme/diabook/theme.php:627 -#: view/theme/diabook/config.php:161 -msgid "Help or @NewHere ?" -msgstr "Serve aiuto? Sei nuovo?" - -#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628 -#: view/theme/diabook/config.php:162 -msgid "Connect Services" -msgstr "Servizi di conessione" - -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -#: include/acl_selectors.php:337 -msgid "don't show" -msgstr "non mostrare" - -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -#: include/acl_selectors.php:336 -msgid "show" -msgstr "mostra" - -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Mostra/Nascondi riquadri nella colonna destra" - -#: view/theme/diabook/config.php:151 view/theme/dispy/config.php:73 -#: view/theme/cleanzero/config.php:84 -msgid "Set font-size for posts and comments" -msgstr "Dimensione del carattere di messaggi e commenti" - -#: view/theme/diabook/config.php:152 view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Altezza della linea di testo di messaggi e commenti" - -#: view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Imposta la dimensione della colonna centrale" - -#: view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Imposta lo schema dei colori" - -#: view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Livello di zoom per Earth Layer" - -#: view/theme/vier/config.php:59 -msgid "Set style" -msgstr "Imposta stile" - -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Imposta schema colori" - -#: view/theme/duepuntozero/config.php:44 include/text.php:1768 -#: include/user.php:255 -msgid "default" -msgstr "default" - -#: view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "easterbunny" - -#: view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "darkzero" - -#: view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "slackr" - -#: view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "Varianti" - -#: view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Allineamento" - -#: view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Sinistra" - -#: view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Centrato" - -#: view/theme/quattro/config.php:68 view/theme/cleanzero/config.php:86 -msgid "Color scheme" -msgstr "Schema colori" - -#: view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Dimensione caratteri post" - -#: view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Dimensione caratteri nelle aree di testo" - -#: view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)" - -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Imposta la larghezza del tema" - -#: view/smarty3/compiled/de93dd804a3e4e0c280f6a6ccb3ab9b0eaebd65d.file.blob.tpl.php:106 -msgid "Click here to download" -msgstr "" - -#: view/smarty3/compiled/e3e71db17e5b19827a9ae25070c4171ecb4fad17.file.project.tpl.php:149 -#: view/smarty3/compiled/681c121d981f553bdaa9e163d8a08e0bb4bd88ec.file.tree.tpl.php:121 -msgid "Create new pull request" -msgstr "" - -#: view/smarty3/compiled/919a59d5a78d842406e0afa69e5825d6feb5dc06.file.admin_plugins.tpl.php:42 -msgid "Reload active plugins" -msgstr "" - -#: view/smarty3/compiled/1708ab6fbb592af5399438bf991f7b474286b1b1.file.contact_drop_confirm.tpl.php:22 -msgid "Drop contact" -msgstr "" - -#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:32 -msgid "Public projects on this node" -msgstr "" - -#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:79 -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:68 -#, php-format -msgid "" -"Do you want to delete the project '%s'?\\n\\nThis operation cannot be " -"undone." -msgstr "" - -#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:56 -msgid "Visibility" -msgstr "" - -#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:72 -#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:69 -msgid "Create" -msgstr "" - -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:107 -msgid "No pull requests to show" -msgstr "" - -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:123 -msgid "opened by" -msgstr "" - -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:128 -msgid "closed" -msgstr "" - -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:133 -msgid "merged" -msgstr "" - -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:31 -msgid "Projects" -msgstr "" - -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:32 -msgid "add new" -msgstr "" - -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:51 -msgid "delete" -msgstr "" - -#: view/smarty3/compiled/4bbe2f5d3d1015c250383e229b603c26c960f47c.file.commits.tpl.php:80 -#: view/smarty3/compiled/1cdeb5a00fc3621815c983a6f754af6d16ff85c9.file.commit.tpl.php:80 -#: view/smarty3/compiled/0427bde50f01fd26112193bc4daba7b58c19ca11.file.aside.tpl.php:51 -msgid "Clone this project:" -msgstr "" - -#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:38 -msgid "New pull request" -msgstr "" - -#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:63 -msgid "Can't show you the diff at the moment. Sorry" -msgstr "" - -#: boot.php:763 +#: boot.php:783 msgid "Delete this item?" msgstr "Cancellare questo elemento?" -#: boot.php:766 +#: boot.php:786 msgid "show fewer" msgstr "mostra di meno" -#: boot.php:1140 +#: boot.php:1160 #, php-format msgid "Update %s failed. See error logs." msgstr "aggiornamento %s fallito. Guarda i log di errore." -#: boot.php:1247 +#: boot.php:1267 msgid "Create a New Account" msgstr "Crea un nuovo account" -#: boot.php:1272 include/nav.php:73 +#: boot.php:1292 include/nav.php:72 msgid "Logout" msgstr "Esci" -#: boot.php:1275 +#: boot.php:1295 msgid "Nickname or Email address: " msgstr "Nome utente o indirizzo email: " -#: boot.php:1276 +#: boot.php:1296 msgid "Password: " msgstr "Password: " -#: boot.php:1277 +#: boot.php:1297 msgid "Remember me" msgstr "Ricordati di me" -#: boot.php:1280 +#: boot.php:1300 msgid "Or login using OpenID: " msgstr "O entra con OpenID:" -#: boot.php:1286 +#: boot.php:1306 msgid "Forgot your password?" msgstr "Hai dimenticato la password?" -#: boot.php:1289 +#: boot.php:1309 msgid "Website Terms of Service" msgstr "Condizioni di servizio del sito web " -#: boot.php:1290 +#: boot.php:1310 msgid "terms of service" msgstr "condizioni del servizio" -#: boot.php:1292 +#: boot.php:1312 msgid "Website Privacy Policy" msgstr "Politiche di privacy del sito" -#: boot.php:1293 +#: boot.php:1313 msgid "privacy policy" msgstr "politiche di privacy" -#: include/features.php:23 -msgid "General Features" -msgstr "Funzionalità generali" +#: object/Item.php:95 +msgid "This entry was edited" +msgstr "Questa voce è stata modificata" -#: include/features.php:25 -msgid "Multiple Profiles" -msgstr "Profili multipli" +#: object/Item.php:191 +msgid "I will attend" +msgstr "Parteciperò" -#: include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Possibilità di creare profili multipli" +#: object/Item.php:191 +msgid "I will not attend" +msgstr "Non parteciperò" -#: include/features.php:30 -msgid "Post Composition Features" -msgstr "Funzionalità di composizione dei post" +#: object/Item.php:191 +msgid "I might attend" +msgstr "Forse parteciperò" -#: include/features.php:31 -msgid "Richtext Editor" -msgstr "Editor visuale" +#: object/Item.php:230 +msgid "ignore thread" +msgstr "ignora la discussione" -#: include/features.php:31 -msgid "Enable richtext editor" -msgstr "Abilita l'editor visuale" +#: object/Item.php:231 +msgid "unignore thread" +msgstr "non ignorare la discussione" -#: include/features.php:32 -msgid "Post Preview" -msgstr "Anteprima dei post" +#: object/Item.php:232 +msgid "toggle ignore status" +msgstr "inverti stato \"Ignora\"" -#: include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli" +#: object/Item.php:345 include/conversation.php:687 +msgid "Categories:" +msgstr "Categorie:" -#: include/features.php:33 -msgid "Auto-mention Forums" -msgstr "Auto-cita i Forum" +#: object/Item.php:346 include/conversation.php:688 +msgid "Filed under:" +msgstr "Archiviato in:" -#: include/features.php:33 +#: object/Item.php:360 +msgid "via" +msgstr "via" + +#: include/dbstructure.php:26 +#, php-format msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "Aggiunge o rimuove una citazione quando un forum è selezionato o deselezionato nella finestra dei permessi." +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido." -#: include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Widget della barra laterale nella pagina Rete" +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Il messaggio di errore è\n[pre]%s[/pre]" -#: include/features.php:39 -msgid "Search by Date" -msgstr "Cerca per data" +#: include/dbstructure.php:151 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." -#: include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Permette di filtrare i post per data" - -#: include/features.php:40 -msgid "Group Filter" -msgstr "Filtra gruppi" - -#: include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Abilita il widget per filtrare i post solo per il gruppo selezionato" - -#: include/features.php:41 -msgid "Network Filter" -msgstr "Filtro reti" - -#: include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Abilita il widget per mostare i post solo per la rete selezionata" - -#: include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Salva i termini cercati per riutilizzarli" - -#: include/features.php:47 -msgid "Network Tabs" -msgstr "Schede pagina Rete" - -#: include/features.php:48 -msgid "Network Personal Tab" -msgstr "Scheda Personali" - -#: include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Abilita la scheda per mostrare solo i post a cui hai partecipato" - -#: include/features.php:49 -msgid "Network New Tab" -msgstr "Scheda Nuovi" - -#: include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)" - -#: include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "Scheda Link Condivisi" - -#: include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Abilita la scheda per mostrare solo i post che contengono link" - -#: include/features.php:55 -msgid "Post/Comment Tools" -msgstr "Strumenti per messaggi/commenti" - -#: include/features.php:56 -msgid "Multiple Deletion" -msgstr "Eliminazione multipla" - -#: include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Seleziona ed elimina vari messagi e commenti in una volta sola" - -#: include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Modifica i post inviati" - -#: include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "Modifica e correggi messaggi e commenti dopo averli inviati" - -#: include/features.php:58 -msgid "Tagging" -msgstr "Aggiunta tag" - -#: include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Permette di aggiungere tag ai post già esistenti" - -#: include/features.php:59 -msgid "Post Categories" -msgstr "Cateorie post" - -#: include/features.php:59 -msgid "Add categories to your posts" -msgstr "Aggiungi categorie ai tuoi post" - -#: include/features.php:60 include/contact_widgets.php:104 -msgid "Saved Folders" -msgstr "Cartelle Salvate" - -#: include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Permette di archiviare i post in cartelle" - -#: include/features.php:61 -msgid "Dislike Posts" -msgstr "Non mi piace" - -#: include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Permetti di inviare \"non mi piace\" ai messaggi" - -#: include/features.php:62 -msgid "Star Posts" -msgstr "Post preferiti" - -#: include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "Permette di segnare i post preferiti con una stella" - -#: include/features.php:63 -msgid "Mute Post Notifications" -msgstr "Silenzia le notifiche di nuovi post" - -#: include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "Permette di silenziare le notifiche di nuovi post in una discussione" +#: include/dbstructure.php:209 +msgid "Errors encountered performing database changes." +msgstr "Riscontrati errori applicando le modifiche al database." #: include/auth.php:38 msgid "Logged out." @@ -6365,588 +6268,626 @@ msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che msgid "The error message was:" msgstr "Il messaggio riportato era:" -#: include/event.php:22 include/bb2diaspora.php:154 -msgid "Starts:" -msgstr "Inizia:" +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Aggiungi nuovo contatto" -#: include/event.php:32 include/bb2diaspora.php:162 -msgid "Finishes:" -msgstr "Finisce:" +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Inserisci posizione o indirizzo web" -#: include/message.php:15 include/message.php:173 -msgid "[no subject]" -msgstr "[nessun oggetto]" +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Esempio: bob@example.com, http://example.com/barbara" -#: include/Scrape.php:603 -msgid " on Last.fm" -msgstr "su Last.fm" - -#: include/text.php:299 -msgid "newer" -msgstr "nuovi" - -#: include/text.php:301 -msgid "older" -msgstr "vecchi" - -#: include/text.php:306 -msgid "prev" -msgstr "prec" - -#: include/text.php:308 -msgid "first" -msgstr "primo" - -#: include/text.php:340 -msgid "last" -msgstr "ultimo" - -#: include/text.php:343 -msgid "next" -msgstr "succ" - -#: include/text.php:398 -msgid "Loading more entries..." -msgstr "Carico più elementi..." - -#: include/text.php:399 -msgid "The end" -msgstr "Fine" - -#: include/text.php:890 -msgid "No contacts" -msgstr "Nessun contatto" - -#: include/text.php:905 +#: include/contact_widgets.php:24 #, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contatto" -msgstr[1] "%d contatti" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invito disponibile" +msgstr[1] "%d inviti disponibili" -#: include/text.php:1003 include/nav.php:122 -msgid "Full Text" -msgstr "Testo Completo" +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "Trova persone" -#: include/text.php:1004 include/nav.php:123 -msgid "Tags" -msgstr "Tags:" +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Inserisci un nome o un interesse" -#: include/text.php:1008 include/nav.php:127 -msgid "Forums" -msgstr "Forum" +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Esempi: Mario Rossi, Pesca" -#: include/text.php:1058 -msgid "poke" -msgstr "stuzzica" +#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 +#: view/theme/vier/theme.php:206 +msgid "Similar Interests" +msgstr "Interessi simili" -#: include/text.php:1058 -msgid "poked" -msgstr "ha stuzzicato" +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Profilo causale" -#: include/text.php:1059 -msgid "ping" -msgstr "invia un ping" +#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 +#: view/theme/vier/theme.php:208 +msgid "Invite Friends" +msgstr "Invita amici" -#: include/text.php:1059 -msgid "pinged" -msgstr "ha inviato un ping" +#: include/contact_widgets.php:108 +msgid "Networks" +msgstr "Reti" -#: include/text.php:1060 -msgid "prod" -msgstr "pungola" +#: include/contact_widgets.php:111 +msgid "All Networks" +msgstr "Tutte le Reti" -#: include/text.php:1060 -msgid "prodded" -msgstr "ha pungolato" +#: include/contact_widgets.php:141 include/features.php:97 +msgid "Saved Folders" +msgstr "Cartelle Salvate" -#: include/text.php:1061 -msgid "slap" -msgstr "schiaffeggia" +#: include/contact_widgets.php:144 include/contact_widgets.php:176 +msgid "Everything" +msgstr "Tutto" -#: include/text.php:1061 -msgid "slapped" -msgstr "ha schiaffeggiato" +#: include/contact_widgets.php:173 +msgid "Categories" +msgstr "Categorie" -#: include/text.php:1062 -msgid "finger" -msgstr "tocca" - -#: include/text.php:1062 -msgid "fingered" -msgstr "ha toccato" - -#: include/text.php:1063 -msgid "rebuff" -msgstr "respingi" - -#: include/text.php:1063 -msgid "rebuffed" -msgstr "ha respinto" - -#: include/text.php:1077 -msgid "happy" -msgstr "felice" - -#: include/text.php:1078 -msgid "sad" -msgstr "triste" - -#: include/text.php:1079 -msgid "mellow" -msgstr "rilassato" - -#: include/text.php:1080 -msgid "tired" -msgstr "stanco" - -#: include/text.php:1081 -msgid "perky" -msgstr "vivace" - -#: include/text.php:1082 -msgid "angry" -msgstr "arrabbiato" - -#: include/text.php:1083 -msgid "stupified" -msgstr "stupefatto" - -#: include/text.php:1084 -msgid "puzzled" -msgstr "confuso" - -#: include/text.php:1085 -msgid "interested" -msgstr "interessato" - -#: include/text.php:1086 -msgid "bitter" -msgstr "risentito" - -#: include/text.php:1087 -msgid "cheerful" -msgstr "giocoso" - -#: include/text.php:1088 -msgid "alive" -msgstr "vivo" - -#: include/text.php:1089 -msgid "annoyed" -msgstr "annoiato" - -#: include/text.php:1090 -msgid "anxious" -msgstr "ansioso" - -#: include/text.php:1091 -msgid "cranky" -msgstr "irritabile" - -#: include/text.php:1092 -msgid "disturbed" -msgstr "disturbato" - -#: include/text.php:1093 -msgid "frustrated" -msgstr "frustato" - -#: include/text.php:1094 -msgid "motivated" -msgstr "motivato" - -#: include/text.php:1095 -msgid "relaxed" -msgstr "rilassato" - -#: include/text.php:1096 -msgid "surprised" -msgstr "sorpreso" - -#: include/text.php:1266 -msgid "Monday" -msgstr "Lunedì" - -#: include/text.php:1266 -msgid "Tuesday" -msgstr "Martedì" - -#: include/text.php:1266 -msgid "Wednesday" -msgstr "Mercoledì" - -#: include/text.php:1266 -msgid "Thursday" -msgstr "Giovedì" - -#: include/text.php:1266 -msgid "Friday" -msgstr "Venerdì" - -#: include/text.php:1266 -msgid "Saturday" -msgstr "Sabato" - -#: include/text.php:1266 -msgid "Sunday" -msgstr "Domenica" - -#: include/text.php:1270 -msgid "January" -msgstr "Gennaio" - -#: include/text.php:1270 -msgid "February" -msgstr "Febbraio" - -#: include/text.php:1270 -msgid "March" -msgstr "Marzo" - -#: include/text.php:1270 -msgid "April" -msgstr "Aprile" - -#: include/text.php:1270 -msgid "May" -msgstr "Maggio" - -#: include/text.php:1270 -msgid "June" -msgstr "Giugno" - -#: include/text.php:1270 -msgid "July" -msgstr "Luglio" - -#: include/text.php:1270 -msgid "August" -msgstr "Agosto" - -#: include/text.php:1270 -msgid "September" -msgstr "Settembre" - -#: include/text.php:1270 -msgid "October" -msgstr "Ottobre" - -#: include/text.php:1270 -msgid "November" -msgstr "Novembre" - -#: include/text.php:1270 -msgid "December" -msgstr "Dicembre" - -#: include/text.php:1492 -msgid "bytes" -msgstr "bytes" - -#: include/text.php:1524 include/text.php:1536 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" - -#: include/text.php:1710 -msgid "View on separate page" -msgstr "Vedi in una pagina separata" - -#: include/text.php:1711 -msgid "view on separate page" -msgstr "vedi in una pagina separata" - -#: include/text.php:1780 -msgid "Select an alternate language" -msgstr "Seleziona una diversa lingua" - -#: include/text.php:2036 -msgid "activity" -msgstr "attività" - -#: include/text.php:2039 -msgid "post" -msgstr "messaggio" - -#: include/text.php:2207 -msgid "Item filed" -msgstr "Messaggio salvato" - -#: include/api.php:321 include/api.php:332 include/api.php:441 -#: include/api.php:1141 include/api.php:1143 -msgid "User not found." -msgstr "Utente non trovato." - -#: include/api.php:795 +#: include/contact_widgets.php:237 #, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato" +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contatto in comune" +msgstr[1] "%d contatti in comune" -#: include/api.php:814 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato" +#: include/features.php:58 +msgid "General Features" +msgstr "Funzionalità generali" -#: include/api.php:833 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "Limite mensile di %d messaggi raggiunto. Il messaggio è stato rifiutato" +#: include/features.php:60 +msgid "Multiple Profiles" +msgstr "Profili multipli" -#: include/api.php:1350 -msgid "There is no status with this id." -msgstr "Non c'è nessuno status con questo id." +#: include/features.php:60 +msgid "Ability to create multiple profiles" +msgstr "Possibilità di creare profili multipli" -#: include/api.php:1424 -msgid "There is no conversation with this id." -msgstr "Non c'è nessuna conversazione con questo id" +#: include/features.php:61 +msgid "Photo Location" +msgstr "Località Foto" -#: include/api.php:1703 -msgid "Invalid item." -msgstr "Elemento non valido." +#: include/features.php:61 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "I metadati delle foto vengono rimossi. Questa opzione estrae la località (se presenta) prima di rimuovere i metadati e la collega a una mappa." -#: include/api.php:1713 -msgid "Invalid action. " -msgstr "Azione non valida." +#: include/features.php:66 +msgid "Post Composition Features" +msgstr "Funzionalità di composizione dei post" -#: include/api.php:1721 -msgid "DB error" -msgstr "Errore database" +#: include/features.php:67 +msgid "Richtext Editor" +msgstr "Editor visuale" -#: include/dba.php:56 include/dba_pdo.php:72 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" +#: include/features.php:67 +msgid "Enable richtext editor" +msgstr "Abilita l'editor visuale" -#: include/items.php:2445 include/datetime.php:459 -#, php-format -msgid "%s's birthday" -msgstr "Compleanno di %s" +#: include/features.php:68 +msgid "Post Preview" +msgstr "Anteprima dei post" -#: include/items.php:2446 include/datetime.php:460 -#, php-format -msgid "Happy Birthday %s" -msgstr "Buon compleanno %s" +#: include/features.php:68 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli" -#: include/items.php:4866 -msgid "Do you really want to delete this item?" -msgstr "Vuoi veramente cancellare questo elemento?" +#: include/features.php:69 +msgid "Auto-mention Forums" +msgstr "Auto-cita i Forum" -#: include/items.php:5141 -msgid "Archives" -msgstr "Archivi" +#: include/features.php:69 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "Aggiunge o rimuove una citazione quando un forum è selezionato o deselezionato nella finestra dei permessi." -#: include/delivery.php:456 include/notifier.php:834 -msgid "(no subject)" -msgstr "(nessun oggetto)" +#: include/features.php:74 +msgid "Network Sidebar Widgets" +msgstr "Widget della barra laterale nella pagina Rete" -#: include/delivery.php:467 include/notifier.php:844 include/enotify.php:33 -msgid "noreply" -msgstr "nessuna risposta" +#: include/features.php:75 +msgid "Search by Date" +msgstr "Cerca per data" -#: include/diaspora.php:716 -msgid "Sharing notification from Diaspora network" -msgstr "Notifica di condivisione dal network Diaspora*" +#: include/features.php:75 +msgid "Ability to select posts by date ranges" +msgstr "Permette di filtrare i post per data" -#: include/diaspora.php:2567 -msgid "Attachments:" -msgstr "Allegati:" +#: include/features.php:76 include/features.php:106 +msgid "List Forums" +msgstr "Elenco forum" -#: include/identity.php:38 -msgid "Requested account is not available." -msgstr "L'account richiesto non è disponibile." +#: include/features.php:76 +msgid "Enable widget to display the forums your are connected with" +msgstr "Abilita il widget che mostra i forum ai quali sei connesso" -#: include/identity.php:121 include/identity.php:255 include/identity.php:608 -msgid "Edit profile" -msgstr "Modifica il profilo" +#: include/features.php:77 +msgid "Group Filter" +msgstr "Filtra gruppi" -#: include/identity.php:220 -msgid "Message" -msgstr "Messaggio" +#: include/features.php:77 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Abilita il widget per filtrare i post solo per il gruppo selezionato" -#: include/identity.php:226 include/nav.php:184 -msgid "Profiles" -msgstr "Profili" +#: include/features.php:78 +msgid "Network Filter" +msgstr "Filtro reti" -#: include/identity.php:226 -msgid "Manage/edit profiles" -msgstr "Gestisci/modifica i profili" +#: include/features.php:78 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Abilita il widget per mostare i post solo per la rete selezionata" -#: include/identity.php:342 -msgid "Network:" -msgstr "Rete:" +#: include/features.php:79 +msgid "Save search terms for re-use" +msgstr "Salva i termini cercati per riutilizzarli" -#: include/identity.php:374 include/identity.php:460 -msgid "g A l F d" -msgstr "g A l d F" +#: include/features.php:84 +msgid "Network Tabs" +msgstr "Schede pagina Rete" -#: include/identity.php:375 include/identity.php:461 -msgid "F d" -msgstr "d F" +#: include/features.php:85 +msgid "Network Personal Tab" +msgstr "Scheda Personali" -#: include/identity.php:420 include/identity.php:507 -msgid "[today]" -msgstr "[oggi]" +#: include/features.php:85 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Abilita la scheda per mostrare solo i post a cui hai partecipato" -#: include/identity.php:432 -msgid "Birthday Reminders" -msgstr "Promemoria compleanni" +#: include/features.php:86 +msgid "Network New Tab" +msgstr "Scheda Nuovi" -#: include/identity.php:433 -msgid "Birthdays this week:" -msgstr "Compleanni questa settimana:" +#: include/features.php:86 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)" -#: include/identity.php:494 -msgid "[No description]" -msgstr "[Nessuna descrizione]" +#: include/features.php:87 +msgid "Network Shared Links Tab" +msgstr "Scheda Link Condivisi" -#: include/identity.php:518 -msgid "Event Reminders" -msgstr "Promemoria" +#: include/features.php:87 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Abilita la scheda per mostrare solo i post che contengono link" -#: include/identity.php:519 -msgid "Events this week:" -msgstr "Eventi di questa settimana:" +#: include/features.php:92 +msgid "Post/Comment Tools" +msgstr "Strumenti per messaggi/commenti" -#: include/identity.php:546 -msgid "j F, Y" -msgstr "j F Y" +#: include/features.php:93 +msgid "Multiple Deletion" +msgstr "Eliminazione multipla" -#: include/identity.php:547 -msgid "j F" -msgstr "j F" +#: include/features.php:93 +msgid "Select and delete multiple posts/comments at once" +msgstr "Seleziona ed elimina vari messagi e commenti in una volta sola" -#: include/identity.php:554 -msgid "Birthday:" -msgstr "Compleanno:" +#: include/features.php:94 +msgid "Edit Sent Posts" +msgstr "Modifica i post inviati" -#: include/identity.php:558 -msgid "Age:" -msgstr "Età:" +#: include/features.php:94 +msgid "Edit and correct posts and comments after sending" +msgstr "Modifica e correggi messaggi e commenti dopo averli inviati" -#: include/identity.php:567 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" +#: include/features.php:95 +msgid "Tagging" +msgstr "Aggiunta tag" -#: include/identity.php:580 -msgid "Religion:" -msgstr "Religione:" +#: include/features.php:95 +msgid "Ability to tag existing posts" +msgstr "Permette di aggiungere tag ai post già esistenti" -#: include/identity.php:584 -msgid "Hobbies/Interests:" -msgstr "Hobby/Interessi:" +#: include/features.php:96 +msgid "Post Categories" +msgstr "Cateorie post" -#: include/identity.php:591 -msgid "Contact information and Social Networks:" -msgstr "Informazioni su contatti e social network:" +#: include/features.php:96 +msgid "Add categories to your posts" +msgstr "Aggiungi categorie ai tuoi post" -#: include/identity.php:593 -msgid "Musical interests:" -msgstr "Interessi musicali:" +#: include/features.php:97 +msgid "Ability to file posts under folders" +msgstr "Permette di archiviare i post in cartelle" -#: include/identity.php:595 -msgid "Books, literature:" -msgstr "Libri, letteratura:" +#: include/features.php:98 +msgid "Dislike Posts" +msgstr "Non mi piace" -#: include/identity.php:597 -msgid "Television:" -msgstr "Televisione:" +#: include/features.php:98 +msgid "Ability to dislike posts/comments" +msgstr "Permetti di inviare \"non mi piace\" ai messaggi" -#: include/identity.php:599 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/danza/cultura/intrattenimento:" +#: include/features.php:99 +msgid "Star Posts" +msgstr "Post preferiti" -#: include/identity.php:601 -msgid "Love/Romance:" -msgstr "Amore:" +#: include/features.php:99 +msgid "Ability to mark special posts with a star indicator" +msgstr "Permette di segnare i post preferiti con una stella" -#: include/identity.php:603 -msgid "Work/employment:" -msgstr "Lavoro:" +#: include/features.php:100 +msgid "Mute Post Notifications" +msgstr "Silenzia le notifiche di nuovi post" -#: include/identity.php:605 -msgid "School/education:" -msgstr "Scuola:" +#: include/features.php:100 +msgid "Ability to mute notifications for a thread" +msgstr "Permette di silenziare le notifiche di nuovi post in una discussione" -#: include/identity.php:633 include/nav.php:76 -msgid "Status" -msgstr "Stato" +#: include/features.php:105 +msgid "Advanced Profile Settings" +msgstr "Impostazioni Avanzate Profilo" -#: include/identity.php:636 -msgid "Status Messages and Posts" -msgstr "Messaggi di stato e post" +#: include/features.php:106 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "Mostra ai visitatori i forum nella pagina Profilo Avanzato" -#: include/identity.php:644 -msgid "Profile Details" -msgstr "Dettagli del profilo" - -#: include/identity.php:657 include/identity.php:660 include/nav.php:79 -msgid "Videos" -msgstr "Video" - -#: include/identity.php:671 -msgid "Events and Calendar" -msgstr "Eventi e calendario" - -#: include/identity.php:679 -msgid "Only You Can See This" -msgstr "Solo tu puoi vedere questo" - -#: include/follow.php:75 +#: include/follow.php:77 msgid "Connect URL missing." msgstr "URL di connessione mancante." -#: include/follow.php:102 +#: include/follow.php:104 msgid "" "This site is not configured to allow communications with other networks." msgstr "Questo sito non è configurato per permettere la comunicazione con altri network." -#: include/follow.php:103 include/follow.php:123 +#: include/follow.php:105 include/follow.php:125 msgid "No compatible communication protocols or feeds were discovered." msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." -#: include/follow.php:121 +#: include/follow.php:123 msgid "The profile address specified does not provide adequate information." msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." -#: include/follow.php:125 +#: include/follow.php:127 msgid "An author or name was not found." msgstr "Non è stato trovato un nome o un autore" -#: include/follow.php:127 +#: include/follow.php:129 msgid "No browser URL could be matched to this address." msgstr "Nessun URL puo' essere associato a questo indirizzo." -#: include/follow.php:129 +#: include/follow.php:131 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email." -#: include/follow.php:130 +#: include/follow.php:132 msgid "Use mailto: in front of address to force email check." msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email." -#: include/follow.php:136 +#: include/follow.php:138 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito." -#: include/follow.php:146 +#: include/follow.php:148 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te." -#: include/follow.php:253 +#: include/follow.php:249 msgid "Unable to retrieve contact information." msgstr "Impossibile recuperare informazioni sul contatto." -#: include/follow.php:306 +#: include/follow.php:302 msgid "following" msgstr "segue" +#: include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso." + +#: include/group.php:209 +msgid "Default privacy group for new contacts" +msgstr "Gruppo predefinito per i nuovi contatti" + +#: include/group.php:239 +msgid "Everybody" +msgstr "Tutti" + +#: include/group.php:262 +msgid "edit" +msgstr "modifica" + +#: include/group.php:285 +msgid "Edit groups" +msgstr "Modifica gruppi" + +#: include/group.php:287 +msgid "Edit group" +msgstr "Modifica gruppo" + +#: include/group.php:288 +msgid "Create a new group" +msgstr "Crea un nuovo gruppo" + +#: include/group.php:291 +msgid "Contacts not in any group" +msgstr "Contatti in nessun gruppo." + +#: include/datetime.php:43 include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Varie" + +#: include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-GG o MM-GG" + +#: include/datetime.php:271 +msgid "never" +msgstr "mai" + +#: include/datetime.php:277 +msgid "less than a second ago" +msgstr "meno di un secondo fa" + +#: include/datetime.php:287 +msgid "year" +msgstr "anno" + +#: include/datetime.php:287 +msgid "years" +msgstr "anni" + +#: include/datetime.php:288 +msgid "months" +msgstr "mesi" + +#: include/datetime.php:289 +msgid "weeks" +msgstr "settimane" + +#: include/datetime.php:290 +msgid "days" +msgstr "giorni" + +#: include/datetime.php:291 +msgid "hour" +msgstr "ora" + +#: include/datetime.php:291 +msgid "hours" +msgstr "ore" + +#: include/datetime.php:292 +msgid "minute" +msgstr "minuto" + +#: include/datetime.php:292 +msgid "minutes" +msgstr "minuti" + +#: include/datetime.php:293 +msgid "second" +msgstr "secondo" + +#: include/datetime.php:293 +msgid "seconds" +msgstr "secondi" + +#: include/datetime.php:302 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s fa" + +#: include/datetime.php:474 include/items.php:2470 +#, php-format +msgid "%s's birthday" +msgstr "Compleanno di %s" + +#: include/datetime.php:475 include/items.php:2471 +#, php-format +msgid "Happy Birthday %s" +msgstr "Buon compleanno %s" + +#: include/identity.php:43 +msgid "Requested account is not available." +msgstr "L'account richiesto non è disponibile." + +#: include/identity.php:96 include/identity.php:281 include/identity.php:652 +msgid "Edit profile" +msgstr "Modifica il profilo" + +#: include/identity.php:241 +msgid "Atom feed" +msgstr "Feed Atom" + +#: include/identity.php:246 +msgid "Message" +msgstr "Messaggio" + +#: include/identity.php:252 include/nav.php:185 +msgid "Profiles" +msgstr "Profili" + +#: include/identity.php:252 +msgid "Manage/edit profiles" +msgstr "Gestisci/modifica i profili" + +#: include/identity.php:412 include/identity.php:498 +msgid "g A l F d" +msgstr "g A l d F" + +#: include/identity.php:413 include/identity.php:499 +msgid "F d" +msgstr "d F" + +#: include/identity.php:458 include/identity.php:545 +msgid "[today]" +msgstr "[oggi]" + +#: include/identity.php:470 +msgid "Birthday Reminders" +msgstr "Promemoria compleanni" + +#: include/identity.php:471 +msgid "Birthdays this week:" +msgstr "Compleanni questa settimana:" + +#: include/identity.php:532 +msgid "[No description]" +msgstr "[Nessuna descrizione]" + +#: include/identity.php:556 +msgid "Event Reminders" +msgstr "Promemoria" + +#: include/identity.php:557 +msgid "Events this week:" +msgstr "Eventi di questa settimana:" + +#: include/identity.php:585 +msgid "j F, Y" +msgstr "j F Y" + +#: include/identity.php:586 +msgid "j F" +msgstr "j F" + +#: include/identity.php:593 +msgid "Birthday:" +msgstr "Compleanno:" + +#: include/identity.php:597 +msgid "Age:" +msgstr "Età:" + +#: include/identity.php:606 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" + +#: include/identity.php:619 +msgid "Religion:" +msgstr "Religione:" + +#: include/identity.php:623 +msgid "Hobbies/Interests:" +msgstr "Hobby/Interessi:" + +#: include/identity.php:630 +msgid "Contact information and Social Networks:" +msgstr "Informazioni su contatti e social network:" + +#: include/identity.php:632 +msgid "Musical interests:" +msgstr "Interessi musicali:" + +#: include/identity.php:634 +msgid "Books, literature:" +msgstr "Libri, letteratura:" + +#: include/identity.php:636 +msgid "Television:" +msgstr "Televisione:" + +#: include/identity.php:638 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/danza/cultura/intrattenimento:" + +#: include/identity.php:640 +msgid "Love/Romance:" +msgstr "Amore:" + +#: include/identity.php:642 +msgid "Work/employment:" +msgstr "Lavoro:" + +#: include/identity.php:644 +msgid "School/education:" +msgstr "Scuola:" + +#: include/identity.php:648 +msgid "Forums:" +msgstr "Forum:" + +#: include/identity.php:701 include/identity.php:704 include/nav.php:78 +msgid "Videos" +msgstr "Video" + +#: include/identity.php:716 include/nav.php:140 +msgid "Events and Calendar" +msgstr "Eventi e calendario" + +#: include/identity.php:724 +msgid "Only You Can See This" +msgstr "Solo tu puoi vedere questo" + +#: include/acl_selectors.php:325 +msgid "Post to Email" +msgstr "Invia a email" + +#: include/acl_selectors.php:330 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." + +#: include/acl_selectors.php:336 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 +msgid "show" +msgstr "mostra" + +#: include/acl_selectors.php:338 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 +msgid "don't show" +msgstr "non mostrare" + +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[nessun oggetto]" + +#: include/Contact.php:119 +msgid "stopped following" +msgstr "tolto dai seguiti" + +#: include/Contact.php:361 include/conversation.php:911 +msgid "View Status" +msgstr "Visualizza stato" + +#: include/Contact.php:363 include/conversation.php:913 +msgid "View Photos" +msgstr "Visualizza foto" + +#: include/Contact.php:364 include/conversation.php:914 +msgid "Network Posts" +msgstr "Post della Rete" + +#: include/Contact.php:365 include/conversation.php:915 +msgid "Edit Contact" +msgstr "Modifica contatto" + +#: include/Contact.php:366 +msgid "Drop Contact" +msgstr "Rimuovi contatto" + +#: include/Contact.php:367 include/conversation.php:916 +msgid "Send PM" +msgstr "Invia messaggio privato" + +#: include/Contact.php:368 include/conversation.php:920 +msgid "Poke" +msgstr "Stuzzica" + #: include/security.php:22 msgid "Welcome " msgstr "Ciao" @@ -6965,6 +6906,890 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla." +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "%1$s partecipa a %3$s di %2$s" + +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "%1$s non partecipa a %3$s di %2$s" + +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "%1$s forse partecipa a %3$s di %2$s" + +#: include/conversation.php:219 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha stuzzicato %2$s" + +#: include/conversation.php:303 +msgid "post/item" +msgstr "post/elemento" + +#: include/conversation.php:304 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito" + +#: include/conversation.php:792 +msgid "remove" +msgstr "rimuovi" + +#: include/conversation.php:796 +msgid "Delete Selected Items" +msgstr "Cancella elementi selezionati" + +#: include/conversation.php:910 +msgid "Follow Thread" +msgstr "Segui la discussione" + +#: include/conversation.php:1035 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: include/conversation.php:1038 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: include/conversation.php:1041 +#, php-format +msgid "%s attends." +msgstr "%s partecipa." + +#: include/conversation.php:1044 +#, php-format +msgid "%s doesn't attend." +msgstr "%s non partecipa." + +#: include/conversation.php:1047 +#, php-format +msgid "%s attends maybe." +msgstr "%s forse partecipa." + +#: include/conversation.php:1057 +msgid "and" +msgstr "e" + +#: include/conversation.php:1063 +#, php-format +msgid ", and %d other people" +msgstr "e altre %d persone" + +#: include/conversation.php:1072 +#, php-format +msgid "%2$d people like this" +msgstr "Piace a %2$d persone." + +#: include/conversation.php:1073 +#, php-format +msgid "%s like this." +msgstr "a %s piace." + +#: include/conversation.php:1076 +#, php-format +msgid "%2$d people don't like this" +msgstr "Non piace a %2$d persone." + +#: include/conversation.php:1077 +#, php-format +msgid "%s don't like this." +msgstr "a %s non piace." + +#: include/conversation.php:1080 +#, php-format +msgid "%2$d people attend" +msgstr "%2$d persone partecipano" + +#: include/conversation.php:1081 +#, php-format +msgid "%s attend." +msgstr "%s partecipa." + +#: include/conversation.php:1084 +#, php-format +msgid "%2$d people don't attend" +msgstr "%2$d persone non partecipano" + +#: include/conversation.php:1085 +#, php-format +msgid "%s don't attend." +msgstr "%s non partecipa." + +#: include/conversation.php:1088 +#, php-format +msgid "%2$d people anttend maybe" +msgstr "%2$d persone forse partecipano" + +#: include/conversation.php:1089 +#, php-format +msgid "%s anttend maybe." +msgstr "%s forse partecipano." + +#: include/conversation.php:1128 include/conversation.php:1146 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: include/conversation.php:1130 include/conversation.php:1148 +msgid "Please enter a video link/URL:" +msgstr "Inserisci un collegamento video / URL:" + +#: include/conversation.php:1131 include/conversation.php:1149 +msgid "Please enter an audio link/URL:" +msgstr "Inserisci un collegamento audio / URL:" + +#: include/conversation.php:1132 include/conversation.php:1150 +msgid "Tag term:" +msgstr "Tag:" + +#: include/conversation.php:1134 include/conversation.php:1152 +msgid "Where are you right now?" +msgstr "Dove sei ora?" + +#: include/conversation.php:1135 +msgid "Delete item(s)?" +msgstr "Cancellare questo elemento/i?" + +#: include/conversation.php:1204 +msgid "permissions" +msgstr "permessi" + +#: include/conversation.php:1227 +msgid "Post to Groups" +msgstr "Invia ai Gruppi" + +#: include/conversation.php:1228 +msgid "Post to Contacts" +msgstr "Invia ai Contatti" + +#: include/conversation.php:1229 +msgid "Private post" +msgstr "Post privato" + +#: include/conversation.php:1386 +msgid "View all" +msgstr "Mostra tutto" + +#: include/conversation.php:1408 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Mi piace" +msgstr[1] "Mi piace" + +#: include/conversation.php:1411 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Non mi piace" +msgstr[1] "Non mi piace" + +#: include/conversation.php:1417 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Non partecipa" +msgstr[1] "Non partecipano" + +#: include/conversation.php:1420 include/profile_selectors.php:6 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indeciso" +msgstr[1] "Indecisi" + +#: include/forums.php:105 include/text.php:1015 include/nav.php:126 +#: view/theme/vier/theme.php:259 +msgid "Forums" +msgstr "Forum" + +#: include/forums.php:107 view/theme/vier/theme.php:261 +msgid "External link to forum" +msgstr "Link esterno al forum" + +#: include/network.php:967 +msgid "view full size" +msgstr "vedi a schermo intero" + +#: include/text.php:303 +msgid "newer" +msgstr "nuovi" + +#: include/text.php:305 +msgid "older" +msgstr "vecchi" + +#: include/text.php:310 +msgid "prev" +msgstr "prec" + +#: include/text.php:312 +msgid "first" +msgstr "primo" + +#: include/text.php:344 +msgid "last" +msgstr "ultimo" + +#: include/text.php:347 +msgid "next" +msgstr "succ" + +#: include/text.php:402 +msgid "Loading more entries..." +msgstr "Carico più elementi..." + +#: include/text.php:403 +msgid "The end" +msgstr "Fine" + +#: include/text.php:894 +msgid "No contacts" +msgstr "Nessun contatto" + +#: include/text.php:909 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contatto" +msgstr[1] "%d contatti" + +#: include/text.php:921 +msgid "View Contacts" +msgstr "Visualizza i contatti" + +#: include/text.php:1010 include/nav.php:121 +msgid "Full Text" +msgstr "Testo Completo" + +#: include/text.php:1011 include/nav.php:122 +msgid "Tags" +msgstr "Tags:" + +#: include/text.php:1066 +msgid "poke" +msgstr "stuzzica" + +#: include/text.php:1066 +msgid "poked" +msgstr "ha stuzzicato" + +#: include/text.php:1067 +msgid "ping" +msgstr "invia un ping" + +#: include/text.php:1067 +msgid "pinged" +msgstr "ha inviato un ping" + +#: include/text.php:1068 +msgid "prod" +msgstr "pungola" + +#: include/text.php:1068 +msgid "prodded" +msgstr "ha pungolato" + +#: include/text.php:1069 +msgid "slap" +msgstr "schiaffeggia" + +#: include/text.php:1069 +msgid "slapped" +msgstr "ha schiaffeggiato" + +#: include/text.php:1070 +msgid "finger" +msgstr "tocca" + +#: include/text.php:1070 +msgid "fingered" +msgstr "ha toccato" + +#: include/text.php:1071 +msgid "rebuff" +msgstr "respingi" + +#: include/text.php:1071 +msgid "rebuffed" +msgstr "ha respinto" + +#: include/text.php:1085 +msgid "happy" +msgstr "felice" + +#: include/text.php:1086 +msgid "sad" +msgstr "triste" + +#: include/text.php:1087 +msgid "mellow" +msgstr "rilassato" + +#: include/text.php:1088 +msgid "tired" +msgstr "stanco" + +#: include/text.php:1089 +msgid "perky" +msgstr "vivace" + +#: include/text.php:1090 +msgid "angry" +msgstr "arrabbiato" + +#: include/text.php:1091 +msgid "stupified" +msgstr "stupefatto" + +#: include/text.php:1092 +msgid "puzzled" +msgstr "confuso" + +#: include/text.php:1093 +msgid "interested" +msgstr "interessato" + +#: include/text.php:1094 +msgid "bitter" +msgstr "risentito" + +#: include/text.php:1095 +msgid "cheerful" +msgstr "giocoso" + +#: include/text.php:1096 +msgid "alive" +msgstr "vivo" + +#: include/text.php:1097 +msgid "annoyed" +msgstr "annoiato" + +#: include/text.php:1098 +msgid "anxious" +msgstr "ansioso" + +#: include/text.php:1099 +msgid "cranky" +msgstr "irritabile" + +#: include/text.php:1100 +msgid "disturbed" +msgstr "disturbato" + +#: include/text.php:1101 +msgid "frustrated" +msgstr "frustato" + +#: include/text.php:1102 +msgid "motivated" +msgstr "motivato" + +#: include/text.php:1103 +msgid "relaxed" +msgstr "rilassato" + +#: include/text.php:1104 +msgid "surprised" +msgstr "sorpreso" + +#: include/text.php:1497 +msgid "bytes" +msgstr "bytes" + +#: include/text.php:1529 include/text.php:1541 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" + +#: include/text.php:1715 +msgid "View on separate page" +msgstr "Vedi in una pagina separata" + +#: include/text.php:1716 +msgid "view on separate page" +msgstr "vedi in una pagina separata" + +#: include/text.php:1995 +msgid "activity" +msgstr "attività" + +#: include/text.php:1998 +msgid "post" +msgstr "messaggio" + +#: include/text.php:2166 +msgid "Item filed" +msgstr "Messaggio salvato" + +#: include/bbcode.php:483 include/bbcode.php:1143 include/bbcode.php:1144 +msgid "Image/photo" +msgstr "Immagine/foto" + +#: include/bbcode.php:581 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:615 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s ha scritto il seguente messaggio" + +#: include/bbcode.php:1103 include/bbcode.php:1123 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" + +#: include/bbcode.php:1152 include/bbcode.php:1153 +msgid "Encrypted content" +msgstr "Contenuto criptato" + +#: include/notifier.php:843 include/delivery.php:458 +msgid "(no subject)" +msgstr "(nessun oggetto)" + +#: include/notifier.php:853 include/delivery.php:469 include/enotify.php:37 +msgid "noreply" +msgstr "nessuna risposta" + +#: include/dba_pdo.php:72 include/dba.php:56 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Sconosciuto | non categorizzato" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Blocca immediatamente" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Shady, spammer, self-marketer" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Lo conosco, ma non ho un'opinione particolare" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "E' ok, probabilmente innocuo" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Rispettabile, ha la mia fiducia" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Settimanalmente" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mensilmente" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "Ostatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS / Atom" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Connettore Diaspora" + +#: include/contact_selectors.php:91 +msgid "GNU Social" +msgstr "GNU Social" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" + +#: include/contact_selectors.php:103 +msgid "Redmatrix" +msgstr "Redmatrix" + +#: include/Scrape.php:610 +msgid " on Last.fm" +msgstr "su Last.fm" + +#: include/bb2diaspora.php:154 include/event.php:30 include/event.php:48 +msgid "Starts:" +msgstr "Inizia:" + +#: include/bb2diaspora.php:162 include/event.php:33 include/event.php:54 +msgid "Finishes:" +msgstr "Finisce:" + +#: include/plugin.php:522 include/plugin.php:524 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." + +#: include/plugin.php:530 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione." + +#: include/plugin.php:535 +msgid "This action is not available under your subscription plan." +msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." + +#: include/nav.php:72 +msgid "End this session" +msgstr "Finisci questa sessione" + +#: include/nav.php:75 include/nav.php:157 view/theme/diabook/theme.php:123 +msgid "Your posts and conversations" +msgstr "I tuoi messaggi e le tue conversazioni" + +#: include/nav.php:76 view/theme/diabook/theme.php:124 +msgid "Your profile page" +msgstr "Pagina del tuo profilo" + +#: include/nav.php:77 view/theme/diabook/theme.php:126 +msgid "Your photos" +msgstr "Le tue foto" + +#: include/nav.php:78 +msgid "Your videos" +msgstr "I tuoi video" + +#: include/nav.php:79 view/theme/diabook/theme.php:127 +msgid "Your events" +msgstr "I tuoi eventi" + +#: include/nav.php:80 view/theme/diabook/theme.php:128 +msgid "Personal notes" +msgstr "Note personali" + +#: include/nav.php:80 +msgid "Your personal notes" +msgstr "Le tue note personali" + +#: include/nav.php:91 +msgid "Sign in" +msgstr "Entra" + +#: include/nav.php:104 +msgid "Home Page" +msgstr "Home Page" + +#: include/nav.php:108 +msgid "Create an account" +msgstr "Crea un account" + +#: include/nav.php:113 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: include/nav.php:116 +msgid "Apps" +msgstr "Applicazioni" + +#: include/nav.php:116 +msgid "Addon applications, utilities, games" +msgstr "Applicazioni, utilità e giochi aggiuntivi" + +#: include/nav.php:118 +msgid "Search site content" +msgstr "Cerca nel contenuto del sito" + +#: include/nav.php:136 +msgid "Conversations on this site" +msgstr "Conversazioni su questo sito" + +#: include/nav.php:138 +msgid "Conversations on the network" +msgstr "Conversazioni nella rete" + +#: include/nav.php:142 +msgid "Directory" +msgstr "Elenco" + +#: include/nav.php:142 +msgid "People directory" +msgstr "Elenco delle persone" + +#: include/nav.php:144 +msgid "Information" +msgstr "Informazioni" + +#: include/nav.php:144 +msgid "Information about this friendica instance" +msgstr "Informazioni su questo server friendica" + +#: include/nav.php:154 +msgid "Conversations from your friends" +msgstr "Conversazioni dai tuoi amici" + +#: include/nav.php:155 +msgid "Network Reset" +msgstr "Reset pagina Rete" + +#: include/nav.php:155 +msgid "Load Network page with no filters" +msgstr "Carica la pagina Rete senza nessun filtro" + +#: include/nav.php:162 +msgid "Friend Requests" +msgstr "Richieste di amicizia" + +#: include/nav.php:166 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" + +#: include/nav.php:167 +msgid "Mark all system notifications seen" +msgstr "Segna tutte le notifiche come viste" + +#: include/nav.php:171 +msgid "Private mail" +msgstr "Posta privata" + +#: include/nav.php:172 +msgid "Inbox" +msgstr "In arrivo" + +#: include/nav.php:173 +msgid "Outbox" +msgstr "Inviati" + +#: include/nav.php:177 +msgid "Manage" +msgstr "Gestisci" + +#: include/nav.php:177 +msgid "Manage other pages" +msgstr "Gestisci altre pagine" + +#: include/nav.php:182 +msgid "Account settings" +msgstr "Parametri account" + +#: include/nav.php:185 +msgid "Manage/Edit Profiles" +msgstr "Gestisci/Modifica i profili" + +#: include/nav.php:187 +msgid "Manage/edit friends and contacts" +msgstr "Gestisci/modifica amici e contatti" + +#: include/nav.php:194 +msgid "Site setup and configuration" +msgstr "Configurazione del sito" + +#: include/nav.php:198 +msgid "Navigation" +msgstr "Navigazione" + +#: include/nav.php:198 +msgid "Site map" +msgstr "Mappa del sito" + +#: include/api.php:343 include/api.php:354 include/api.php:463 +#: include/api.php:1182 include/api.php:1184 +msgid "User not found." +msgstr "Utente non trovato." + +#: include/api.php:830 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato" + +#: include/api.php:849 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato" + +#: include/api.php:868 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "Limite mensile di %d messaggi raggiunto. Il messaggio è stato rifiutato" + +#: include/api.php:1391 +msgid "There is no status with this id." +msgstr "Non c'è nessuno status con questo id." + +#: include/api.php:1465 +msgid "There is no conversation with this id." +msgstr "Non c'è nessuna conversazione con questo id" + +#: include/api.php:1744 +msgid "Invalid item." +msgstr "Elemento non valido." + +#: include/api.php:1754 +msgid "Invalid action. " +msgstr "Azione non valida." + +#: include/api.php:1762 +msgid "DB error" +msgstr "Errore database" + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "E' richiesto un invito." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "L'invito non puo' essere verificato." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Url OpenID non valido" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Usa un nome più corto." + +#: include/user.php:98 +msgid "Name too short." +msgstr "Il nome è troppo corto." + +#: include/user.php:113 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." + +#: include/user.php:118 +msgid "Your email domain is not among those allowed on this site." +msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito." + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "L'indirizzo email non è valido." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "Non puoi usare quell'email." + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "Il tuo nome utente può contenere solo \"a-z\", \"0-9\", e \"_\"." + +#: include/user.php:147 include/user.php:245 +msgid "Nickname is already registered. Please choose another." +msgstr "Nome utente già registrato. Scegline un altro." + +#: include/user.php:157 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo." + +#: include/user.php:173 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." + +#: include/user.php:231 +msgid "An error occurred during registration. Please try again." +msgstr "C'è stato un errore durante la registrazione. Prova ancora." + +#: include/user.php:256 view/theme/clean/config.php:56 +#: view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "default" + +#: include/user.php:266 +msgid "An error occurred creating your default profile. Please try again." +msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora." + +#: include/user.php:299 include/user.php:303 include/profile_selectors.php:42 +msgid "Friends" +msgstr "Amici" + +#: include/user.php:387 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\nGentile %1$s,\nGrazie per esserti registrato su %2$s. Il tuo account è stato creato." + +#: include/user.php:391 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3$s\n Nome utente: %1$s\n Password: %5$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2$s" + +#: include/diaspora.php:719 +msgid "Sharing notification from Diaspora network" +msgstr "Notifica di condivisione dal network Diaspora*" + +#: include/diaspora.php:2606 +msgid "Attachments:" +msgstr "Allegati:" + +#: include/items.php:4897 +msgid "Do you really want to delete this item?" +msgstr "Vuoi veramente cancellare questo elemento?" + +#: include/items.php:5172 +msgid "Archives" +msgstr "Archivi" + #: include/profile_selectors.php:6 msgid "Male" msgstr "Maschio" @@ -7017,10 +7842,6 @@ msgstr "Non specificato" msgid "Other" msgstr "Altro" -#: include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indeciso" - #: include/profile_selectors.php:23 msgid "Males" msgstr "Maschi" @@ -7109,10 +7930,6 @@ msgstr "Infedele" msgid "Sex Addict" msgstr "Sesso-dipendente" -#: include/profile_selectors.php:42 include/user.php:297 include/user.php:301 -msgid "Friends" -msgstr "Amici" - #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Amici con benefici" @@ -7197,6 +8014,302 @@ msgstr "Non interessa" msgid "Ask me" msgstr "Chiedimelo" +#: include/enotify.php:18 +msgid "Friendica Notification" +msgstr "Notifica Friendica" + +#: include/enotify.php:21 +msgid "Thank You," +msgstr "Grazie," + +#: include/enotify.php:24 +#, php-format +msgid "%s Administrator" +msgstr "Amministratore %s" + +#: include/enotify.php:26 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "%1$s, amministratore di %2$s" + +#: include/enotify.php:68 +#, php-format +msgid "%s " +msgstr "%s " + +#: include/enotify.php:82 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s" + +#: include/enotify.php:84 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s ti ha inviato un nuovo messaggio privato su %2$s." + +#: include/enotify.php:85 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s ti ha inviato %2$s" + +#: include/enotify.php:85 +msgid "a private message" +msgstr "un messaggio privato" + +#: include/enotify.php:86 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Visita %s per vedere e/o rispodere ai tuoi messaggi privati." + +#: include/enotify.php:138 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s ha commentato [url=%2$s]%3$s[/url]" + +#: include/enotify.php:145 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s ha commentato [url=%2$s]%4$s di %3$s[/url]" + +#: include/enotify.php:153 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s ha commentato un [url=%2$s]tuo %3$s[/url]" + +#: include/enotify.php:163 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Notifica] Commento di %2$s alla conversazione #%1$d" + +#: include/enotify.php:164 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s ha commentato un elemento che stavi seguendo." + +#: include/enotify.php:167 include/enotify.php:182 include/enotify.php:195 +#: include/enotify.php:208 include/enotify.php:226 include/enotify.php:239 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Visita %s per vedere e/o commentare la conversazione" + +#: include/enotify.php:174 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notifica] %s ha scritto sulla tua bacheca" + +#: include/enotify.php:176 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s ha scritto sulla tua bacheca su %2$s" + +#: include/enotify.php:178 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s ha inviato un messaggio sulla [url=%2$s]tua bacheca[/url]" + +#: include/enotify.php:189 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notifica] %s ti ha taggato" + +#: include/enotify.php:190 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s ti ha taggato su %2$s" + +#: include/enotify.php:191 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]ti ha taggato[/url]." + +#: include/enotify.php:202 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notifica] %s ha condiviso un nuovo messaggio" + +#: include/enotify.php:203 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s ha condiviso un nuovo messaggio su %2$s" + +#: include/enotify.php:204 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s]ha condiviso un messaggio[/url]." + +#: include/enotify.php:216 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notifica] %1$s ti ha stuzzicato" + +#: include/enotify.php:217 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s ti ha stuzzicato su %2$s" + +#: include/enotify.php:218 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s [url=%2$s]ti ha stuzzicato[/url]." + +#: include/enotify.php:233 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio" + +#: include/enotify.php:234 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s ha taggato il tuo post su %2$s" + +#: include/enotify.php:235 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s ha taggato [url=%2$s]il tuo post[/url]" + +#: include/enotify.php:246 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notifica] Hai ricevuto una presentazione" + +#: include/enotify.php:247 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Hai ricevuto un'introduzione da '%1$s' su %2$s" + +#: include/enotify.php:248 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Hai ricevuto [url=%1$s]un'introduzione[/url] da %2$s." + +#: include/enotify.php:251 include/enotify.php:293 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Puoi visitare il suo profilo presso %s" + +#: include/enotify.php:253 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Visita %s per approvare o rifiutare la presentazione." + +#: include/enotify.php:261 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "[Friendica:Notifica] Una nuova persona sta condividendo con te" + +#: include/enotify.php:262 include/enotify.php:263 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "%1$s sta condividendo con te su %2$s" + +#: include/enotify.php:269 +msgid "[Friendica:Notify] You have a new follower" +msgstr "[Friendica:Notifica] Una nuova persona ti segue" + +#: include/enotify.php:270 include/enotify.php:271 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "Un nuovo utente ha iniziato a seguirti su %2$s : %1$s" + +#: include/enotify.php:284 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia" + +#: include/enotify.php:285 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Hai ricevuto un suggerimento di amicizia da '%1$s' su %2$s" + +#: include/enotify.php:286 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Hai ricevuto [url=%1$s]un suggerimento di amicizia[/url] per %2$s su %3$s" + +#: include/enotify.php:291 +msgid "Name:" +msgstr "Nome:" + +#: include/enotify.php:292 +msgid "Photo:" +msgstr "Foto:" + +#: include/enotify.php:295 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Visita %s per approvare o rifiutare il suggerimento." + +#: include/enotify.php:303 include/enotify.php:316 +msgid "[Friendica:Notify] Connection accepted" +msgstr "[Friendica:Notifica] Connessione accettata" + +#: include/enotify.php:304 include/enotify.php:317 +#, php-format +msgid "'%1$s' has accepted your connection request at %2$s" +msgstr "'%1$s' ha accettato la tua richiesta di connessione su %2$s" + +#: include/enotify.php:305 include/enotify.php:318 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$s ha accettato la tua [url=%1$s]richiesta di connessione[/url]" + +#: include/enotify.php:308 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and email\n" +"\twithout restriction." +msgstr "Ora siete connessi reciprocamente e potete scambiarvi aggiornamenti di stato, foto e email\nsenza restrizioni" + +#: include/enotify.php:311 include/enotify.php:325 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Visita %s se desideri modificare questo collegamento." + +#: include/enotify.php:321 +#, php-format +msgid "" +"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." +msgstr "'%1$s' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibiltà di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente." + +#: include/enotify.php:323 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future. " +msgstr "'%1$s' può decidere in futuro di estendere la connessione in una reciproca o più permissiva." + +#: include/enotify.php:336 +msgid "[Friendica System:Notify] registration request" +msgstr "[Friendica System:Notifica] richiesta di registrazione" + +#: include/enotify.php:337 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "Hai ricevuto una richiesta di registrazione da '%1$s' su %2$s" + +#: include/enotify.php:338 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "Hai ricevuto una [url=%1$s]richiesta di registrazione[/url] da %2$s." + +#: include/enotify.php:341 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "Nome completo: %1$s\nIndirizzo del sito: %2$s\nNome utente: %3$s (%4$s)" + +#: include/enotify.php:344 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Visita %s per approvare o rifiutare la richiesta." + +#: include/oembed.php:220 +msgid "Embedded content" +msgstr "Contenuto incorporato" + +#: include/oembed.php:229 +msgid "Embedding disabled" +msgstr "Embed disabilitato" + #: include/uimport.php:94 msgid "Error decoding account file" msgstr "Errore decodificando il file account" @@ -7233,999 +8346,232 @@ msgstr[1] "%d contatti non importati" msgid "Done. You can now login with your username and password" msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password" -#: include/plugin.php:458 include/plugin.php:460 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." - -#: include/plugin.php:466 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione." - -#: include/plugin.php:471 -msgid "This action is not available under your subscription plan." -msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." - -#: include/conversation.php:206 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha stuzzicato %2$s" - -#: include/conversation.php:290 -msgid "post/item" -msgstr "post/elemento" - -#: include/conversation.php:291 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito" - -#: include/conversation.php:771 -msgid "remove" -msgstr "rimuovi" - -#: include/conversation.php:775 -msgid "Delete Selected Items" -msgstr "Cancella elementi selezionati" - -#: include/conversation.php:874 -msgid "Follow Thread" -msgstr "Segui la discussione" - -#: include/conversation.php:875 include/Contact.php:233 -msgid "View Status" -msgstr "Visualizza stato" - -#: include/conversation.php:876 include/Contact.php:234 -msgid "View Profile" -msgstr "Visualizza profilo" - -#: include/conversation.php:877 include/Contact.php:235 -msgid "View Photos" -msgstr "Visualizza foto" - -#: include/conversation.php:878 include/Contact.php:236 -#: include/Contact.php:259 -msgid "Network Posts" -msgstr "Post della Rete" - -#: include/conversation.php:879 include/Contact.php:237 -#: include/Contact.php:259 -msgid "Edit Contact" -msgstr "Modifica contatti" - -#: include/conversation.php:880 include/Contact.php:239 -#: include/Contact.php:259 -msgid "Send PM" -msgstr "Invia messaggio privato" - -#: include/conversation.php:881 include/Contact.php:232 -msgid "Poke" -msgstr "Stuzzica" - -#: include/conversation.php:943 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." - -#: include/conversation.php:943 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." - -#: include/conversation.php:948 -#, php-format -msgid "%2$d people like this" -msgstr "Piace a %2$d persone." - -#: include/conversation.php:951 -#, php-format -msgid "%2$d people don't like this" -msgstr "Non piace a %2$d persone." - -#: include/conversation.php:965 -msgid "and" -msgstr "e" - -#: include/conversation.php:971 -#, php-format -msgid ", and %d other people" -msgstr "e altre %d persone" - -#: include/conversation.php:973 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." - -#: include/conversation.php:973 -#, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." - -#: include/conversation.php:1000 include/conversation.php:1018 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: include/conversation.php:1002 include/conversation.php:1020 -msgid "Please enter a video link/URL:" -msgstr "Inserisci un collegamento video / URL:" - -#: include/conversation.php:1003 include/conversation.php:1021 -msgid "Please enter an audio link/URL:" -msgstr "Inserisci un collegamento audio / URL:" - -#: include/conversation.php:1004 include/conversation.php:1022 -msgid "Tag term:" -msgstr "Tag:" - -#: include/conversation.php:1006 include/conversation.php:1024 -msgid "Where are you right now?" -msgstr "Dove sei ora?" - -#: include/conversation.php:1007 -msgid "Delete item(s)?" -msgstr "Cancellare questo elemento/i?" - -#: include/conversation.php:1076 -msgid "permissions" -msgstr "permessi" - -#: include/conversation.php:1099 -msgid "Post to Groups" -msgstr "Invia ai Gruppi" - -#: include/conversation.php:1100 -msgid "Post to Contacts" -msgstr "Invia ai Contatti" - -#: include/conversation.php:1101 -msgid "Private post" -msgstr "Post privato" - -#: include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Aggiungi nuovo contatto" - -#: include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Inserisci posizione o indirizzo web" - -#: include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Esempio: bob@example.com, http://example.com/barbara" - -#: include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" - -#: include/contact_widgets.php:30 -msgid "Find People" -msgstr "Trova persone" - -#: include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Inserisci un nome o un interesse" - -#: include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Connetti/segui" - -#: include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Esempi: Mario Rossi, Pesca" - -#: include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Profilo causale" - -#: include/contact_widgets.php:71 -msgid "Networks" -msgstr "Reti" - -#: include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Tutte le Reti" - -#: include/contact_widgets.php:107 include/contact_widgets.php:139 -msgid "Everything" -msgstr "Tutto" - -#: include/contact_widgets.php:136 -msgid "Categories" -msgstr "Categorie" - -#: include/nav.php:73 -msgid "End this session" -msgstr "Finisci questa sessione" - -#: include/nav.php:79 -msgid "Your videos" -msgstr "I tuoi video" - -#: include/nav.php:81 -msgid "Your personal notes" -msgstr "Le tue note personali" - -#: include/nav.php:92 -msgid "Sign in" -msgstr "Entra" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "Home Page" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "Crea un account" - -#: include/nav.php:114 -msgid "Help and documentation" -msgstr "Guida e documentazione" - -#: include/nav.php:117 -msgid "Apps" -msgstr "Applicazioni" - -#: include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Applicazioni, utilità e giochi aggiuntivi" - -#: include/nav.php:119 -msgid "Search site content" -msgstr "Cerca nel contenuto del sito" - -#: include/nav.php:137 -msgid "Conversations on this site" -msgstr "Conversazioni su questo sito" - -#: include/nav.php:139 -msgid "Conversations on the network" -msgstr "Conversazioni nella rete" - -#: include/nav.php:141 -msgid "Directory" -msgstr "Elenco" - -#: include/nav.php:141 -msgid "People directory" -msgstr "Elenco delle persone" - -#: include/nav.php:143 -msgid "Information" -msgstr "Informazioni" - -#: include/nav.php:143 -msgid "Information about this friendica instance" -msgstr "Informazioni su questo server friendica" - -#: include/nav.php:153 -msgid "Conversations from your friends" -msgstr "Conversazioni dai tuoi amici" - -#: include/nav.php:154 -msgid "Network Reset" -msgstr "Reset pagina Rete" - -#: include/nav.php:154 -msgid "Load Network page with no filters" -msgstr "Carica la pagina Rete senza nessun filtro" - -#: include/nav.php:161 -msgid "Friend Requests" -msgstr "Richieste di amicizia" - -#: include/nav.php:165 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" - -#: include/nav.php:166 -msgid "Mark all system notifications seen" -msgstr "Segna tutte le notifiche come viste" - -#: include/nav.php:170 -msgid "Private mail" -msgstr "Posta privata" - -#: include/nav.php:171 -msgid "Inbox" -msgstr "In arrivo" - -#: include/nav.php:172 -msgid "Outbox" -msgstr "Inviati" - -#: include/nav.php:176 -msgid "Manage" -msgstr "Gestisci" - -#: include/nav.php:176 -msgid "Manage other pages" -msgstr "Gestisci altre pagine" - -#: include/nav.php:181 -msgid "Account settings" -msgstr "Parametri account" - -#: include/nav.php:184 -msgid "Manage/Edit Profiles" -msgstr "Gestisci/Modifica i profili" - -#: include/nav.php:186 -msgid "Manage/edit friends and contacts" -msgstr "Gestisci/modifica amici e contatti" - -#: include/nav.php:193 -msgid "Site setup and configuration" -msgstr "Configurazione del sito" - -#: include/nav.php:197 -msgid "Navigation" -msgstr "Navigazione" - -#: include/nav.php:197 -msgid "Site map" -msgstr "Mappa del sito" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Sconosciuto | non categorizzato" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Blocca immediatamente" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Shady, spammer, self-marketer" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Lo conosco, ma non ho un'opinione particolare" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "E' ok, probabilmente innocuo" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Rispettabile, ha la mia fiducia" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Settimanalmente" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensilmente" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "Ostatus" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS / Atom" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Connettore Diaspora" - -#: include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: include/contact_selectors.php:103 -msgid "Redmatrix" -msgstr "Redmatrix" - -#: include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Notifica Friendica" - -#: include/enotify.php:21 -msgid "Thank You," -msgstr "Grazie," - -#: include/enotify.php:23 -#, php-format -msgid "%s Administrator" -msgstr "Amministratore %s" - -#: include/enotify.php:64 -#, php-format -msgid "%s " -msgstr "%s " - -#: include/enotify.php:78 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s" - -#: include/enotify.php:80 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s ti ha inviato un nuovo messaggio privato su %2$s." - -#: include/enotify.php:81 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s ti ha inviato %2$s" - -#: include/enotify.php:81 -msgid "a private message" -msgstr "un messaggio privato" - -#: include/enotify.php:82 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Visita %s per vedere e/o rispodere ai tuoi messaggi privati." - -#: include/enotify.php:134 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s ha commentato [url=%2$s]%3$s[/url]" - -#: include/enotify.php:141 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s ha commentato [url=%2$s]%4$s di %3$s[/url]" - -#: include/enotify.php:149 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s ha commentato un [url=%2$s]tuo %3$s[/url]" - -#: include/enotify.php:159 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Notifica] Commento di %2$s alla conversazione #%1$d" - -#: include/enotify.php:160 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s ha commentato un elemento che stavi seguendo." - -#: include/enotify.php:163 include/enotify.php:178 include/enotify.php:191 -#: include/enotify.php:204 include/enotify.php:222 include/enotify.php:235 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Visita %s per vedere e/o commentare la conversazione" - -#: include/enotify.php:170 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notifica] %s ha scritto sulla tua bacheca" - -#: include/enotify.php:172 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s ha scritto sulla tua bacheca su %2$s" - -#: include/enotify.php:174 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s ha inviato un messaggio sulla [url=%2$s]tua bacheca[/url]" - -#: include/enotify.php:185 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notifica] %s ti ha taggato" - -#: include/enotify.php:186 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s ti ha taggato su %2$s" - -#: include/enotify.php:187 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]ti ha taggato[/url]." - -#: include/enotify.php:198 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica:Notifica] %s ha condiviso un nuovo messaggio" - -#: include/enotify.php:199 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s ha condiviso un nuovo messaggio su %2$s" - -#: include/enotify.php:200 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]ha condiviso un messaggio[/url]." - -#: include/enotify.php:212 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notifica] %1$s ti ha stuzzicato" - -#: include/enotify.php:213 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s ti ha stuzzicato su %2$s" - -#: include/enotify.php:214 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]ti ha stuzzicato[/url]." - -#: include/enotify.php:229 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio" - -#: include/enotify.php:230 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s ha taggato il tuo post su %2$s" - -#: include/enotify.php:231 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s ha taggato [url=%2$s]il tuo post[/url]" - -#: include/enotify.php:242 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notifica] Hai ricevuto una presentazione" - -#: include/enotify.php:243 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Hai ricevuto un'introduzione da '%1$s' su %2$s" - -#: include/enotify.php:244 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Hai ricevuto [url=%1$s]un'introduzione[/url] da %2$s." - -#: include/enotify.php:247 include/enotify.php:289 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Puoi visitare il suo profilo presso %s" - -#: include/enotify.php:249 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Visita %s per approvare o rifiutare la presentazione." - -#: include/enotify.php:257 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "[Friendica:Notifica] Una nuova persona sta condividendo con te" - -#: include/enotify.php:258 include/enotify.php:259 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "%1$s sta condividendo con te su %2$s" - -#: include/enotify.php:265 -msgid "[Friendica:Notify] You have a new follower" -msgstr "[Friendica:Notifica] Una nuova persona ti segue" - -#: include/enotify.php:266 include/enotify.php:267 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "Un nuovo utente ha iniziato a seguirti su %2$s : %1$s" - -#: include/enotify.php:280 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia" - -#: include/enotify.php:281 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Hai ricevuto un suggerimento di amicizia da '%1$s' su %2$s" - -#: include/enotify.php:282 -#, php-format +#: index.php:441 +msgid "toggle mobile" +msgstr "commuta tema mobile" + +#: view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)" + +#: view/theme/cleanzero/config.php:84 view/theme/dispy/config.php:73 +#: view/theme/diabook/config.php:151 +msgid "Set font-size for posts and comments" +msgstr "Dimensione del carattere di messaggi e commenti" + +#: view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Imposta la larghezza del tema" + +#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 +#: view/theme/clean/config.php:88 +msgid "Color scheme" +msgstr "Schema colori" + +#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152 +msgid "Set line-height for posts and comments" +msgstr "Altezza della linea di testo di messaggi e commenti" + +#: view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Imposta schema colori" + +#: view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Allineamento" + +#: view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Sinistra" + +#: view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Centrato" + +#: view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Dimensione caratteri post" + +#: view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Dimensione caratteri nelle aree di testo" + +#: view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Imposta la dimensione della colonna centrale" + +#: view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Imposta lo schema dei colori" + +#: view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Livello di zoom per Earth Layer" + +#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" +msgstr "Longitudine (X) per Earth Layers" + +#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Latitudine (Y) per Earth Layers" + +#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130 +#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 +#: view/theme/vier/config.php:111 +msgid "Community Pages" +msgstr "Pagine Comunitarie" + +#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 +#: view/theme/diabook/theme.php:625 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 +#: view/theme/diabook/theme.php:626 view/theme/vier/config.php:112 +#: view/theme/vier/theme.php:156 +msgid "Community Profiles" +msgstr "Profili Comunità" + +#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 +#: view/theme/diabook/theme.php:627 view/theme/vier/config.php:113 +msgid "Help or @NewHere ?" +msgstr "Serve aiuto? Sei nuovo?" + +#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 +#: view/theme/diabook/theme.php:628 view/theme/vier/config.php:114 +#: view/theme/vier/theme.php:377 +msgid "Connect Services" +msgstr "Servizi di conessione" + +#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 +#: view/theme/diabook/theme.php:629 view/theme/vier/config.php:115 +#: view/theme/vier/theme.php:203 +msgid "Find Friends" +msgstr "Trova Amici" + +#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 +#: view/theme/diabook/theme.php:630 view/theme/vier/config.php:116 +#: view/theme/vier/theme.php:185 +msgid "Last users" +msgstr "Ultimi utenti" + +#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 +#: view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "Ultime foto" + +#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 +#: view/theme/diabook/theme.php:632 +msgid "Last likes" +msgstr "Ultimi \"mi piace\"" + +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "I tuoi contatti" + +#: view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Le tue foto personali" + +#: view/theme/diabook/theme.php:524 view/theme/vier/theme.php:204 +msgid "Local Directory" +msgstr "Elenco Locale" + +#: view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Livello di zoom per Earth Layers" + +#: view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Mostra/Nascondi riquadri nella colonna destra" + +#: view/theme/clean/config.php:57 +msgid "Midnight" +msgstr "Mezzanotte" + +#: view/theme/clean/config.php:58 +msgid "Zenburn" +msgstr "Zenburn" + +#: view/theme/clean/config.php:59 +msgid "Bootstrap" +msgstr "Bootstrap" + +#: view/theme/clean/config.php:60 +msgid "Shades of Pink" +msgstr "Sfumature di Rosa" + +#: view/theme/clean/config.php:61 +msgid "Lime and Orange" +msgstr "Lime e Arancia" + +#: view/theme/clean/config.php:62 +msgid "GeoCities Retro" +msgstr "GeoCities Retro" + +#: view/theme/clean/config.php:86 +msgid "Background Image" +msgstr "Immagine di sfondo" + +#: view/theme/clean/config.php:86 msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Hai ricevuto [url=%1$s]un suggerimento di amicizia[/url] per %2$s su %3$s" +"The URL to a picture (e.g. from your photo album) that should be used as " +"background image." +msgstr "L'URL a un'immagine (p.e. dal tuo album foto) che viene usata come immagine di sfondo." -#: include/enotify.php:287 -msgid "Name:" -msgstr "Nome:" +#: view/theme/clean/config.php:87 +msgid "Background Color" +msgstr "Colore di sfondo" -#: include/enotify.php:288 -msgid "Photo:" -msgstr "Foto:" +#: view/theme/clean/config.php:87 +msgid "HEX value for the background color. Don't include the #" +msgstr "Valore esadecimale del colore di sfondo. Non includere il #" -#: include/enotify.php:291 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Visita %s per approvare o rifiutare il suggerimento." +#: view/theme/clean/config.php:89 +msgid "font size" +msgstr "dimensione font" -#: include/enotify.php:299 include/enotify.php:312 -msgid "[Friendica:Notify] Connection accepted" -msgstr "[Friendica:Notifica] Connessione accettata" +#: view/theme/clean/config.php:89 +msgid "base font size for your interface" +msgstr "dimensione di base dei font per la tua interfaccia" -#: include/enotify.php:300 include/enotify.php:313 -#, php-format -msgid "'%1$s' has accepted your connection request at %2$s" -msgstr "'%1$s' ha accettato la tua richiesta di connessione su %2$s" +#: view/theme/vier/config.php:64 +msgid "Comma separated list of helper forums" +msgstr "Lista separata da virgola di forum di aiuto" -#: include/enotify.php:301 include/enotify.php:314 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "%2$s ha accettato la tua [url=%1$s]richiesta di connessione[/url]" +#: view/theme/vier/config.php:110 +msgid "Set style" +msgstr "Imposta stile" -#: include/enotify.php:304 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." -msgstr "Ora siete connessi reciprocamente e potete scambiarvi aggiornamenti di stato, foto e email\nsenza restrizioni" +#: view/theme/vier/theme.php:295 +msgid "Quick Start" +msgstr "Quick Start" -#: include/enotify.php:307 include/enotify.php:321 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Visita %s se desideri modificare questo collegamento." +#: view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "greenzero" -#: include/enotify.php:317 -#, php-format -msgid "" -"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." -msgstr "'%1$s' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibiltà di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente." +#: view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "purplezero" -#: include/enotify.php:319 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " -msgstr "'%1$s' può decidere in futuro di estendere la connessione in una reciproca o più permissiva." +#: view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "easterbunny" -#: include/enotify.php:332 -msgid "[Friendica System:Notify] registration request" -msgstr "[Friendica System:Notifica] richiesta di registrazione" +#: view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "darkzero" -#: include/enotify.php:333 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "Hai ricevuto una richiesta di registrazione da '%1$s' su %2$s" +#: view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "comix" -#: include/enotify.php:334 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "Hai ricevuto una [url=%1$s]richiesta di registrazione[/url] da %2$s." +#: view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "slackr" -#: include/enotify.php:337 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "Nome completo: %1$s\nIndirizzo del sito: %2$s\nNome utente: %3$s (%4$s)" - -#: include/enotify.php:340 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Visita %s per approvare o rifiutare la richiesta." - -#: include/user.php:48 -msgid "An invitation is required." -msgstr "E' richiesto un invito." - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "L'invito non puo' essere verificato." - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "Url OpenID non valido" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "Usa un nome più corto." - -#: include/user.php:98 -msgid "Name too short." -msgstr "Il nome è troppo corto." - -#: include/user.php:113 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." - -#: include/user.php:118 -msgid "Your email domain is not among those allowed on this site." -msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito." - -#: include/user.php:121 -msgid "Not a valid email address." -msgstr "L'indirizzo email non è valido." - -#: include/user.php:134 -msgid "Cannot use that email." -msgstr "Non puoi usare quell'email." - -#: include/user.php:140 -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." -msgstr "Il tuo nome utente può contenere solo \"a-z\", \"0-9\", e \"_\"." - -#: include/user.php:146 include/user.php:244 -msgid "Nickname is already registered. Please choose another." -msgstr "Nome utente già registrato. Scegline un altro." - -#: include/user.php:156 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo." - -#: include/user.php:172 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." - -#: include/user.php:230 -msgid "An error occurred during registration. Please try again." -msgstr "C'è stato un errore durante la registrazione. Prova ancora." - -#: include/user.php:265 -msgid "An error occurred creating your default profile. Please try again." -msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora." - -#: include/user.php:385 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "\nGentile %1$s,\nGrazie per esserti registrato su %2$s. Il tuo account è stato creato." - -#: include/user.php:389 -#, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." -msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3$s\n Nome utente: %1$s\n Password: %5$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2$s" - -#: include/acl_selectors.php:324 -msgid "Post to Email" -msgstr "Invia a email" - -#: include/acl_selectors.php:329 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." - -#: include/acl_selectors.php:335 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 -msgid "Image/photo" -msgstr "Immagine/foto" - -#: include/bbcode.php:556 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: include/bbcode.php:590 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s ha scritto il seguente messaggio" - -#: include/bbcode.php:1076 include/bbcode.php:1096 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" - -#: include/bbcode.php:1121 include/bbcode.php:1122 -msgid "Encrypted content" -msgstr "Contenuto criptato" - -#: include/oembed.php:220 -msgid "Embedded content" -msgstr "Contenuto incorporato" - -#: include/oembed.php:229 -msgid "Embedding disabled" -msgstr "Embed disabilitato" - -#: include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso." - -#: include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Gruppo predefinito per i nuovi contatti" - -#: include/group.php:226 -msgid "Everybody" -msgstr "Tutti" - -#: include/group.php:249 -msgid "edit" -msgstr "modifica" - -#: include/group.php:271 -msgid "Edit group" -msgstr "Modifica gruppo" - -#: include/group.php:272 -msgid "Create a new group" -msgstr "Crea un nuovo gruppo" - -#: include/group.php:275 -msgid "Contacts not in any group" -msgstr "Contatti in nessun gruppo." - -#: include/Contact.php:119 -msgid "stopped following" -msgstr "tolto dai seguiti" - -#: include/Contact.php:238 -msgid "Drop Contact" -msgstr "Rimuovi contatto" - -#: include/datetime.php:43 include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Varie" - -#: include/datetime.php:141 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-GG o MM-GG" - -#: include/datetime.php:256 -msgid "never" -msgstr "mai" - -#: include/datetime.php:262 -msgid "less than a second ago" -msgstr "meno di un secondo fa" - -#: include/datetime.php:272 -msgid "year" -msgstr "anno" - -#: include/datetime.php:272 -msgid "years" -msgstr "anni" - -#: include/datetime.php:273 -msgid "month" -msgstr "mese" - -#: include/datetime.php:273 -msgid "months" -msgstr "mesi" - -#: include/datetime.php:274 -msgid "week" -msgstr "settimana" - -#: include/datetime.php:274 -msgid "weeks" -msgstr "settimane" - -#: include/datetime.php:275 -msgid "day" -msgstr "giorno" - -#: include/datetime.php:275 -msgid "days" -msgstr "giorni" - -#: include/datetime.php:276 -msgid "hour" -msgstr "ora" - -#: include/datetime.php:276 -msgid "hours" -msgstr "ore" - -#: include/datetime.php:277 -msgid "minute" -msgstr "minuto" - -#: include/datetime.php:277 -msgid "minutes" -msgstr "minuti" - -#: include/datetime.php:278 -msgid "second" -msgstr "secondo" - -#: include/datetime.php:278 -msgid "seconds" -msgstr "secondi" - -#: include/datetime.php:287 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" - -#: include/network.php:959 -msgid "view full size" -msgstr "vedi a schermo intero" - -#: include/dbstructure.php:26 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido." - -#: include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Il messaggio di errore è\n[pre]%s[/pre]" - -#: include/dbstructure.php:152 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." - -#: include/dbstructure.php:210 -msgid "Errors encountered performing database changes." -msgstr "Riscontrati errori applicando le modifiche al database." +#: view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "Varianti" diff --git a/view/it/strings.php b/view/it/strings.php index 2e186c8b8f..fb30c73573 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -5,123 +5,303 @@ function string_plural_select_it($n){ return ($n != 1);; }} ; -$a->strings["This entry was edited"] = "Questa voce è stata modificata"; -$a->strings["Private Message"] = "Messaggio privato"; -$a->strings["Edit"] = "Modifica"; -$a->strings["Select"] = "Seleziona"; -$a->strings["Delete"] = "Rimuovi"; -$a->strings["save to folder"] = "salva nella cartella"; -$a->strings["add star"] = "aggiungi a speciali"; -$a->strings["remove star"] = "rimuovi da speciali"; -$a->strings["toggle star status"] = "Inverti stato preferito"; -$a->strings["starred"] = "preferito"; -$a->strings["ignore thread"] = "ignora la discussione"; -$a->strings["unignore thread"] = "non ignorare la discussione"; -$a->strings["toggle ignore status"] = "inverti stato \"Ignora\""; -$a->strings["ignored"] = "ignorato"; -$a->strings["add tag"] = "aggiungi tag"; -$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)"; -$a->strings["like"] = "mi piace"; -$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)"; -$a->strings["dislike"] = "non mi piace"; -$a->strings["Share this"] = "Condividi questo"; -$a->strings["share"] = "condividi"; -$a->strings["Categories:"] = "Categorie:"; -$a->strings["Filed under:"] = "Archiviato in:"; -$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; -$a->strings["to"] = "a"; -$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["%s from %s"] = "%s da %s"; -$a->strings["Comment"] = "Commento"; -$a->strings["Please wait"] = "Attendi"; -$a->strings["%d comment"] = array( - 0 => "%d commento", - 1 => "%d commenti", +$a->strings["Network:"] = "Rete:"; +$a->strings["Forum"] = "Forum"; +$a->strings["%d contact edited."] = array( + 0 => "%d contatto modificato", + 1 => "%d contatti modificati", ); -$a->strings["comment"] = array( - 0 => "", - 1 => "commento", -); -$a->strings["show more"] = "mostra di più"; -$a->strings["This is you"] = "Questo sei tu"; -$a->strings["Submit"] = "Invia"; -$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["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Preview"] = "Anteprima"; -$a->strings["You must be logged in to use addons. "] = "Devi aver effettuato il login per usare gli addons."; -$a->strings["Not Found"] = "Non trovato"; -$a->strings["Page not found."] = "Pagina non trovata."; -$a->strings["Permission denied"] = "Permesso negato"; -$a->strings["Permission denied."] = "Permesso negato."; -$a->strings["toggle mobile"] = "commuta tema mobile"; -$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; -$a->strings["Contact not found."] = "Contatto non trovato."; -$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato."; -$a->strings["Suggest Friends"] = "Suggerisci amici"; -$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s"; -$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; -$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; -$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", - 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", -); -$a->strings["Introduction complete."] = "Presentazione completa."; -$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; -$a->strings["Profile unavailable."] = "Profilo non disponibile."; -$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; -$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; -$a->strings["Invalid locator"] = "Invalid locator"; -$a->strings["Invalid email address."] = "Indirizzo email non valido."; -$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita."; -$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata."; -$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; -$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; -$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; -$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; +$a->strings["Could not access contact record."] = "Non è possibile accedere al contatto."; +$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; +$a->strings["Contact updated."] = "Contatto aggiornato."; $a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto."; -$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; -$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; -$a->strings["Confirm"] = "Conferma"; -$a->strings["Hide this contact"] = "Nascondi questo contatto"; -$a->strings["Welcome home %s."] = "Bentornato a casa %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s."; -$a->strings["[Name Withheld]"] = "[Nome Nascosto]"; +$a->strings["Permission denied."] = "Permesso negato."; +$a->strings["Contact has been blocked"] = "Il contatto è stato bloccato"; +$a->strings["Contact has been unblocked"] = "Il contatto è stato sbloccato"; +$a->strings["Contact has been ignored"] = "Il contatto è ignorato"; +$a->strings["Contact has been unignored"] = "Il contatto non è più ignorato"; +$a->strings["Contact has been archived"] = "Il contatto è stato archiviato"; +$a->strings["Contact has been unarchived"] = "Il contatto è stato dearchiviato"; +$a->strings["Do you really want to delete this contact?"] = "Vuoi veramente cancellare questo contatto?"; +$a->strings["Yes"] = "Si"; +$a->strings["Cancel"] = "Annulla"; +$a->strings["Contact has been removed."] = "Il contatto è stato rimosso."; +$a->strings["You are mutual friends with %s"] = "Sei amico reciproco con %s"; +$a->strings["You are sharing with %s"] = "Stai condividendo con %s"; +$a->strings["%s is sharing with you"] = "%s sta condividendo con te"; +$a->strings["Private communications are not available for this contact."] = "Le comunicazioni private non sono disponibili per questo contatto."; +$a->strings["Never"] = "Mai"; +$a->strings["(Update was successful)"] = "(L'aggiornamento è stato completato)"; +$a->strings["(Update was not successful)"] = "(L'aggiornamento non è stato completato)"; +$a->strings["Suggest friends"] = "Suggerisci amici"; +$a->strings["Network type: %s"] = "Tipo di rete: %s"; +$a->strings["Communications lost with this contact!"] = "Comunicazione con questo contatto persa!"; +$a->strings["Fetch further information for feeds"] = "Recupera maggiori infomazioni per i feed"; +$a->strings["Disabled"] = "Disabilitato"; +$a->strings["Fetch information"] = "Recupera informazioni"; +$a->strings["Fetch information and keywords"] = "Recupera informazioni e parole chiave"; +$a->strings["Submit"] = "Invia"; +$a->strings["Profile Visibility"] = "Visibilità del profilo"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."; +$a->strings["Contact Information / Notes"] = "Informazioni / Note sul contatto"; +$a->strings["Edit contact notes"] = "Modifica note contatto"; +$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; +$a->strings["Block/Unblock contact"] = "Blocca/Sblocca contatto"; +$a->strings["Ignore contact"] = "Ignora il contatto"; +$a->strings["Repair URL settings"] = "Impostazioni riparazione URL"; +$a->strings["View conversations"] = "Vedi conversazioni"; +$a->strings["Delete contact"] = "Rimuovi contatto"; +$a->strings["Last update:"] = "Ultimo aggiornamento:"; +$a->strings["Update public posts"] = "Aggiorna messaggi pubblici"; +$a->strings["Update now"] = "Aggiorna adesso"; +$a->strings["Connect/Follow"] = "Connetti/segui"; +$a->strings["Unblock"] = "Sblocca"; +$a->strings["Block"] = "Blocca"; +$a->strings["Unignore"] = "Non ignorare"; +$a->strings["Ignore"] = "Ignora"; +$a->strings["Currently blocked"] = "Bloccato"; +$a->strings["Currently ignored"] = "Ignorato"; +$a->strings["Currently archived"] = "Al momento archiviato"; +$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Risposte ai tuoi post pubblici possono essere comunque visibili"; +$a->strings["Notification for new posts"] = "Notifica per i nuovi messaggi"; +$a->strings["Send a notification of every new post of this contact"] = "Invia una notifica per ogni nuovo messaggio di questo contatto"; +$a->strings["Blacklisted keywords"] = "Parole chiave in blacklist"; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista separata da virgola di parole chiave che non dovranno essere convertite in hastag, quando \"Recupera informazioni e parole chiave\" è selezionato"; +$a->strings["Profile URL"] = "URL Profilo"; +$a->strings["Location:"] = "Posizione:"; +$a->strings["About:"] = "Informazioni:"; +$a->strings["Tags:"] = "Tag:"; +$a->strings["Suggestions"] = "Suggerimenti"; +$a->strings["Suggest potential friends"] = "Suggerisci potenziali amici"; +$a->strings["All Contacts"] = "Tutti i contatti"; +$a->strings["Show all contacts"] = "Mostra tutti i contatti"; +$a->strings["Unblocked"] = "Sbloccato"; +$a->strings["Only show unblocked contacts"] = "Mostra solo contatti non bloccati"; +$a->strings["Blocked"] = "Bloccato"; +$a->strings["Only show blocked contacts"] = "Mostra solo contatti bloccati"; +$a->strings["Ignored"] = "Ignorato"; +$a->strings["Only show ignored contacts"] = "Mostra solo contatti ignorati"; +$a->strings["Archived"] = "Achiviato"; +$a->strings["Only show archived contacts"] = "Mostra solo contatti archiviati"; +$a->strings["Hidden"] = "Nascosto"; +$a->strings["Only show hidden contacts"] = "Mostra solo contatti nascosti"; +$a->strings["Contacts"] = "Contatti"; +$a->strings["Search your contacts"] = "Cerca nei tuoi contatti"; +$a->strings["Finding: "] = "Ricerca: "; +$a->strings["Find"] = "Trova"; +$a->strings["Update"] = "Aggiorna"; +$a->strings["Archive"] = "Archivia"; +$a->strings["Unarchive"] = "Dearchivia"; +$a->strings["Delete"] = "Rimuovi"; +$a->strings["Status"] = "Stato"; +$a->strings["Status Messages and Posts"] = "Messaggi di stato e post"; +$a->strings["Profile"] = "Profilo"; +$a->strings["Profile Details"] = "Dettagli del profilo"; +$a->strings["View all contacts"] = "Vedi tutti i contatti"; +$a->strings["Common Friends"] = "Amici in comune"; +$a->strings["View all common friends"] = "Vedi tutti gli amici in comune"; +$a->strings["Repair"] = "Ripara"; +$a->strings["Advanced Contact Settings"] = "Impostazioni avanzate Contatto"; +$a->strings["Toggle Blocked status"] = "Inverti stato \"Blocca\""; +$a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\""; +$a->strings["Toggle Archive status"] = "Inverti stato \"Archiviato\""; +$a->strings["Mutual Friendship"] = "Amicizia reciproca"; +$a->strings["is a fan of yours"] = "è un tuo fan"; +$a->strings["you are a fan of"] = "sei un fan di"; +$a->strings["Edit contact"] = "Modifca contatto"; +$a->strings["No profile"] = "Nessun profilo"; +$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"; +$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:"; +$a->strings["Post successful."] = "Inviato!"; +$a->strings["Permission denied"] = "Permesso negato"; +$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; +$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo"; +$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; +$a->strings["Visible To"] = "Visibile a"; +$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)"; +$a->strings["Item not found."] = "Elemento non trovato."; $a->strings["Public access denied."] = "Accesso negato."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi"; -$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; +$a->strings["Item has been removed."] = "L'oggetto è stato rimosso."; +$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica"; +$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."; +$a->strings["Getting Started"] = "Come Iniziare"; +$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."; +$a->strings["Settings"] = "Impostazioni"; +$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."; +$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; +$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; +$a->strings["Profile Keywords"] = "Parole chiave del profilo"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; +$a->strings["Connecting"] = "Collegarsi"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["Importing Emails"] = "Importare le Email"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; +$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; +$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; +$a->strings["Finding New People"] = "Trova nuove persone"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; +$a->strings["Groups"] = "Gruppi"; +$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; +$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."; +$a->strings["Getting Help"] = "Ottenere Aiuto"; +$a->strings["Go to the Help Section"] = "Vai alla sezione Guida"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; +$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."; +$a->strings["Login failed."] = "Accesso fallito."; +$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; +$a->strings["Profile Photos"] = "Foto del profilo"; +$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; +$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; +$a->strings["Image exceeds size limit of %s"] = "La dimensione dell'immagine supera il limite di %s"; +$a->strings["Unable to process image."] = "Impossibile caricare l'immagine."; +$a->strings["Upload File:"] = "Carica un file:"; +$a->strings["Select a profile:"] = "Seleziona un profilo:"; +$a->strings["Upload"] = "Carica"; +$a->strings["or"] = "o"; +$a->strings["skip this step"] = "salta questo passaggio"; +$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; +$a->strings["Crop Image"] = "Ritaglia immagine"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore."; +$a->strings["Done Editing"] = "Finito"; +$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; +$a->strings["Image upload failed."] = "Caricamento immagine fallito."; +$a->strings["photo"] = "foto"; +$a->strings["status"] = "stato"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; +$a->strings["Tag removed"] = "Tag rimosso"; +$a->strings["Remove Item Tag"] = "Rimuovi il tag"; +$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; +$a->strings["Remove"] = "Rimuovi"; +$a->strings["Subsribing to OStatus contacts"] = "Iscrizione a contatti OStatus"; +$a->strings["No contact provided."] = "Nessun contatto disponibile."; +$a->strings["Couldn't fetch information for contact."] = "Non è stato possibile recuperare le informazioni del contatto."; +$a->strings["Couldn't fetch friends for contact."] = "Non è stato possibile recuperare gli amici del contatto."; +$a->strings["Done"] = "Fatto"; +$a->strings["success"] = "successo"; +$a->strings["failed"] = "fallito"; +$a->strings["ignored"] = "ignorato"; +$a->strings["Keep this window open until done."] = "Tieni questa finestra aperta fino a che ha finito."; +$a->strings["Save to Folder:"] = "Salva nella Cartella:"; +$a->strings["- select -"] = "- seleziona -"; +$a->strings["Save"] = "Salva"; +$a->strings["Submit Request"] = "Invia richiesta"; +$a->strings["You already added this contact."] = "Hai già aggiunto questo contatto."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Il supporto Diaspora non è abilitato. Il contatto non puo' essere aggiunto."; +$a->strings["OStatus support is disabled. Contact can't be added."] = "Il supporto OStatus non è abilitato. Il contatto non puo' essere aggiunto."; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "Non è possibile rilevare il tipo di rete. Il contatto non puo' essere aggiunto."; $a->strings["Please answer the following:"] = "Rispondi:"; $a->strings["Does %s know you?"] = "%s ti conosce?"; $a->strings["No"] = "No"; -$a->strings["Yes"] = "Si"; $a->strings["Add a personal note:"] = "Aggiungi una nota personale:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."; $a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:"; -$a->strings["Submit Request"] = "Invia richiesta"; -$a->strings["Cancel"] = "Annulla"; -$a->strings["View Video"] = "Guarda Video"; +$a->strings["Contact added"] = "Contatto aggiunto"; +$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; +$a->strings["Wall Photos"] = "Foto della bacheca"; +$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."; +$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."; +$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento."; +$a->strings["Group created."] = "Gruppo creato."; +$a->strings["Could not create group."] = "Impossibile creare il gruppo."; +$a->strings["Group not found."] = "Gruppo non trovato."; +$a->strings["Group name changed."] = "Il nome del gruppo è cambiato."; +$a->strings["Save Group"] = "Salva gruppo"; +$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti."; +$a->strings["Group Name: "] = "Nome del gruppo:"; +$a->strings["Group removed."] = "Gruppo rimosso."; +$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; +$a->strings["Group Editor"] = "Modifica gruppo"; +$a->strings["Members"] = "Membri"; +$a->strings["Group is empty"] = "Il gruppo è vuoto"; +$a->strings["You must be logged in to use addons. "] = "Devi aver effettuato il login per usare gli addons."; +$a->strings["Applications"] = "Applicazioni"; +$a->strings["No installed applications."] = "Nessuna applicazione installata."; +$a->strings["Profile not found."] = "Profilo non trovato."; +$a->strings["Contact not found."] = "Contatto non trovato."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata."; +$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito."; +$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: "; +$a->strings["Confirmation completed successfully."] = "Conferma completata con successo."; +$a->strings["Remote site reported: "] = "Il sito remoto riporta: "; +$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova."; +$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata."; +$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici"; +$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."; +$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito."; +$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s"; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."; +$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."; +$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"; +$a->strings["[Name Withheld]"] = "[Nome Nascosto]"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s"; $a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile."; -$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; $a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti"; +$a->strings["Do you really want to delete this video?"] = "Vuoi veramente cancellare questo video?"; +$a->strings["Delete Video"] = "Rimuovi video"; +$a->strings["No videos selected"] = "Nessun video selezionato"; +$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti."; +$a->strings["View Video"] = "Guarda Video"; +$a->strings["View Album"] = "Sfoglia l'album"; +$a->strings["Recent Videos"] = "Video Recenti"; +$a->strings["Upload New Videos"] = "Carica Nuovo Video"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; +$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato."; +$a->strings["Suggest Friends"] = "Suggerisci amici"; +$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s"; +$a->strings["Invalid request."] = "Richiesta non valida."; +$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["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nGentile %1\$s,\n abbiamo ricevuto su \"%2\$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica."; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nSegui questo link per verificare la tua identità:\n\n%1\$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2\$s\n Nome utente: %3\$s"; +$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."; +$a->strings["Password Reset"] = "Reimpostazione password"; +$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto."; +$a->strings["Your new password is"] = "La tua nuova password è"; +$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; +$a->strings["click here to login"] = "clicca qui per entrare"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nGentile %1\$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare."; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1\$s\n Nome utente: %2\$s\n Password: %3\$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato."; +$a->strings["Your password has been changed at %s"] = "La tua password presso %s è stata cambiata"; +$a->strings["Forgot your Password?"] = "Hai dimenticato la password?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password."; +$a->strings["Nickname or Email: "] = "Nome utente o email: "; +$a->strings["Reset"] = "Reimposta"; +$a->strings["event"] = "l'evento"; +$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 attending %2\$s's %3\$s"] = "%1\$s parteciperà a %3\$s di %2\$s"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s non parteciperà a %3\$s di %2\$s"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s forse parteciperà a %3\$s di %2\$s"; +$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico"; +$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio"; +$a->strings["{0} requested registration"] = "{0} chiede la registrazione"; +$a->strings["No contacts."] = "Nessun contatto."; $a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; $a->strings["Discard"] = "Scarta"; -$a->strings["Ignore"] = "Ignora"; $a->strings["System"] = "Sistema"; $a->strings["Network"] = "Rete"; $a->strings["Personal"] = "Personale"; @@ -132,7 +312,6 @@ $a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate"; $a->strings["Notification type: "] = "Tipo di notifica: "; $a->strings["Friend Suggestion"] = "Amico suggerito"; $a->strings["suggested by %s"] = "sugerito da %s"; -$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; $a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\""; $a->strings["if applicable"] = "se applicabile"; $a->strings["Approve"] = "Approva"; @@ -146,9 +325,6 @@ $a->strings["Sharer"] = "Condivisore"; $a->strings["Fan/Admirer"] = "Fan/Ammiratore"; $a->strings["Friend/Connect Request"] = "Richiesta amicizia/connessione"; $a->strings["New Follower"] = "Qualcuno inizia a seguirti"; -$a->strings["Location:"] = "Posizione:"; -$a->strings["About:"] = "Informazioni:"; -$a->strings["Tags:"] = "Tag:"; $a->strings["Gender:"] = "Genere:"; $a->strings["No introductions."] = "Nessuna presentazione."; $a->strings["Notifications"] = "Notifiche"; @@ -165,13 +341,6 @@ $a->strings["No more personal notifications."] = "Nessuna nuova."; $a->strings["Personal Notifications"] = "Notifiche personali"; $a->strings["No more home notifications."] = "Nessuna nuova."; $a->strings["Home Notifications"] = "Notifiche bacheca"; -$a->strings["photo"] = "foto"; -$a->strings["status"] = "stato"; -$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["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."; -$a->strings["Login failed."] = "Accesso fallito."; $a->strings["Source (bbcode) text:"] = "Testo sorgente (bbcode):"; $a->strings["Source (Diaspora) text to convert to BBcode:"] = "Testo sorgente (da Diaspora) da convertire in BBcode:"; $a->strings["Source input: "] = "Sorgente:"; @@ -184,6 +353,73 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb: "; $a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; $a->strings["Source input (Diaspora format): "] = "Sorgente (formato Diaspora):"; $a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Nothing new here"] = "Niente di nuovo qui"; +$a->strings["Clear notifications"] = "Pulisci le notifiche"; +$a->strings["New Message"] = "Nuovo messaggio"; +$a->strings["No recipient selected."] = "Nessun destinatario selezionato."; +$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto."; +$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato."; +$a->strings["Message collection failure."] = "Errore recuperando il messaggio."; +$a->strings["Message sent."] = "Messaggio inviato."; +$a->strings["Messages"] = "Messaggi"; +$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?"; +$a->strings["Message deleted."] = "Messaggio eliminato."; +$a->strings["Conversation removed."] = "Conversazione rimossa."; +$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; +$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["Upload photo"] = "Carica foto"; +$a->strings["Insert web link"] = "Inserisci link"; +$a->strings["Please wait"] = "Attendi"; +$a->strings["No messages."] = "Nessun messaggio."; +$a->strings["Message not available."] = "Messaggio non disponibile."; +$a->strings["Delete message"] = "Elimina il messaggio"; +$a->strings["Delete conversation"] = "Elimina la conversazione"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente."; +$a->strings["Send Reply"] = "Invia la risposta"; +$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s"; +$a->strings["You and %s"] = "Tu e %s"; +$a->strings["%s and You"] = "%s e Tu"; +$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; +$a->strings["%d message"] = array( + 0 => "%d messaggio", + 1 => "%d messaggi", +); +$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; +$a->strings["Contact settings applied."] = "Contatto modificato."; +$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; +$a->strings["No mirroring"] = "Non duplicare"; +$a->strings["Mirror as forwarded posting"] = "Duplica come messaggi ricondivisi"; +$a->strings["Mirror as my own posting"] = "Duplica come miei messaggi"; +$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; +$a->strings["Refetch contact data"] = "Ricarica dati contatto"; +$a->strings["Name"] = "Nome"; +$a->strings["Account Nickname"] = "Nome utente"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; +$a->strings["Account URL"] = "URL dell'utente"; +$a->strings["Friend Request URL"] = "URL Richiesta Amicizia"; +$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia"; +$a->strings["Notification Endpoint URL"] = "URL Notifiche"; +$a->strings["Poll/Feed URL"] = "URL Feed"; +$a->strings["New photo from this URL"] = "Nuova foto da questo URL"; +$a->strings["Remote Self"] = "Io remoto"; +$a->strings["Mirror postings from this contact"] = "Ripeti i messaggi di questo contatto"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto."; +$a->strings["Login"] = "Accedi"; +$a->strings["The post was created"] = "Il messaggio è stato creato"; +$a->strings["Access denied."] = "Accesso negato."; +$a->strings["Connect"] = "Connetti"; +$a->strings["View Profile"] = "Visualizza profilo"; +$a->strings["People Search - %s"] = "Cerca persone - %s"; +$a->strings["No matches"] = "Nessun risultato"; +$a->strings["Photos"] = "Foto"; +$a->strings["Contact Photos"] = "Foto dei contatti"; +$a->strings["Files"] = "File"; +$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo"; $a->strings["Theme settings updated."] = "Impostazioni del tema aggiornate."; $a->strings["Site"] = "Sito"; $a->strings["Users"] = "Utenti"; @@ -198,7 +434,6 @@ $a->strings["Admin"] = "Amministrazione"; $a->strings["Plugin Features"] = "Impostazioni Plugins"; $a->strings["diagnostics"] = "diagnostiche"; $a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma"; -$a->strings["Item not found."] = "Elemento non trovato."; $a->strings["Administration"] = "Amministrazione"; $a->strings["ID"] = "ID"; $a->strings["Recipient Name"] = "Nome Destinatario"; @@ -219,19 +454,17 @@ $a->strings["Pending registrations"] = "Registrazioni in attesa"; $a->strings["Version"] = "Versione"; $a->strings["Active plugins"] = "Plugin attivi"; $a->strings["Can not parse base url. Must have at least ://"] = "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]"; -$a->strings["RINO2 needs mcrypt php extension to work."] = ""; +$a->strings["RINO2 needs mcrypt php extension to work."] = "RINO2 necessita dell'estensione php mcrypt per funzionare."; $a->strings["Site settings updated."] = "Impostazioni del sito aggiornate."; $a->strings["No special theme for mobile devices"] = "Nessun tema speciale per i dispositivi mobili"; $a->strings["No community page"] = "Nessuna pagina Comunità"; $a->strings["Public postings from users of this site"] = "Messaggi pubblici dagli utenti di questo sito"; $a->strings["Global community page"] = "Pagina Comunità globale"; -$a->strings["Never"] = "Mai"; $a->strings["At post arrival"] = "All'arrivo di un messaggio"; $a->strings["Frequently"] = "Frequentemente"; $a->strings["Hourly"] = "Ogni ora"; $a->strings["Twice daily"] = "Due volte al dì"; $a->strings["Daily"] = "Giornalmente"; -$a->strings["Disabled"] = "Disabilitato"; $a->strings["Users, Global Contacts"] = "Utenti, Contatti Globali"; $a->strings["Users, Global Contacts/fallback"] = "Utenti, Contatti Globali/fallback"; $a->strings["One month"] = "Un mese"; @@ -301,7 +534,7 @@ $a->strings["Check to block public access to all otherwise public personal pages $a->strings["Force publish"] = "Forza publicazione"; $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito."; $a->strings["Global directory URL"] = "URL della directory globale"; -$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato."; $a->strings["Allow threaded items"] = "Permetti commenti nidificati"; $a->strings["Allow infinite level threading for items on this site."] = "Permette un infinito livello di nidificazione dei commenti su questo sito."; $a->strings["Private posts by default for new users"] = "Post privati di default per i nuovi utenti"; @@ -330,6 +563,8 @@ $a->strings["Enable OStatus support"] = "Abilita supporto OStatus"; $a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente."; $a->strings["OStatus conversation completion interval"] = "Intervallo completamento conversazioni OStatus"; $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse."; +$a->strings["OStatus support can only be enabled if threading is enabled."] = "Il supporto OStatus puo' essere abilitato solo se è abilitato il threading."; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Il supporto a Diaspora non puo' essere abilitato perchè Friendica è stato installato in una sotto directory."; $a->strings["Enable Diaspora support"] = "Abilita il supporto a Diaspora"; $a->strings["Provide built-in Diaspora network compatibility."] = "Fornisce compatibilità con il network Diaspora."; $a->strings["Only allow Friendica contacts"] = "Permetti solo contatti Friendica"; @@ -348,10 +583,12 @@ $a->strings["Maximum Load Average"] = "Massimo carico medio"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50."; $a->strings["Maximum Load Average (Frontend)"] = "Media Massimo Carico (Frontend)"; $a->strings["Maximum system load before the frontend quits service - default 50."] = "Massimo carico di sistema prima che il frontend fermi il servizio - default 50."; +$a->strings["Maximum table size for optimization"] = "Dimensione massima della tabella per l'ottimizzazione"; +$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "La dimensione massima (in MB) per l'ottimizzazione automatica - default 100 MB. Inserisci -1 per disabilitarlo."; $a->strings["Periodical check of global contacts"] = "Check periodico dei contatti globali"; $a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Se abilitato, i contatti globali sono controllati periodicamente per verificare dati mancanti o sorpassati e la vitaltà dei contatti e dei server."; -$a->strings["Days between requery"] = ""; -$a->strings["Number of days after which a server is requeried for his contacts."] = ""; +$a->strings["Days between requery"] = "Giorni tra le richieste"; +$a->strings["Number of days after which a server is requeried for his contacts."] = "Numero di giorni dopo i quali al server vengono richiesti i suoi contatti."; $a->strings["Discover contacts from other servers"] = "Trova contatti dagli altri server"; $a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "Richiede periodicamente contatti agli altri server. Puoi scegliere tra 'utenti', gli uenti sul sistema remoto, o 'contatti globali', i contatti attivi che sono conosciuti dal sistema. Il fallback è pensato per i server Redmatrix e i vecchi server Friendica, dove i contatti globali non sono disponibili. Il fallback incrementa il carico di sistema, per cui l'impostazione consigliata è \"Utenti, Contatti Globali\"."; $a->strings["Timeframe for fetching global contacts"] = "Termine per il recupero contatti globali"; @@ -422,12 +659,9 @@ $a->strings["select all"] = "seleziona tutti"; $a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma"; $a->strings["User waiting for permanent deletion"] = "Utente in attesa di cancellazione definitiva"; $a->strings["Request date"] = "Data richiesta"; -$a->strings["Name"] = "Nome"; $a->strings["Email"] = "Email"; $a->strings["No registrations."] = "Nessuna registrazione."; $a->strings["Deny"] = "Nega"; -$a->strings["Block"] = "Blocca"; -$a->strings["Unblock"] = "Sblocca"; $a->strings["Site admin"] = "Amministrazione sito"; $a->strings["Account expired"] = "Account scaduto"; $a->strings["New User"] = "Nuovo Utente"; @@ -447,11 +681,12 @@ $a->strings["Plugin %s enabled."] = "Plugin %s abilitato."; $a->strings["Disable"] = "Disabilita"; $a->strings["Enable"] = "Abilita"; $a->strings["Toggle"] = "Inverti"; -$a->strings["Settings"] = "Impostazioni"; $a->strings["Author: "] = "Autore: "; $a->strings["Maintainer: "] = "Manutentore: "; +$a->strings["Reload active plugins"] = "Ricarica i plugin attivi"; $a->strings["No themes found."] = "Nessun tema trovato."; $a->strings["Screenshot"] = "Anteprima"; +$a->strings["Reload active themes"] = "Ricarica i temi attivi"; $a->strings["[Experimental]"] = "[Sperimentale]"; $a->strings["[Unsupported]"] = "[Non supportato]"; $a->strings["Log settings updated."] = "Impostazioni Log aggiornate."; @@ -460,85 +695,79 @@ $a->strings["Enable Debugging"] = "Abilita Debugging"; $a->strings["Log file"] = "File di Log"; $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica."; $a->strings["Log level"] = "Livello di Log"; -$a->strings["Update now"] = "Aggiorna adesso"; $a->strings["Close"] = "Chiudi"; $a->strings["FTP Host"] = "Indirizzo FTP"; $a->strings["FTP Path"] = "Percorso FTP"; $a->strings["FTP User"] = "Utente FTP"; $a->strings["FTP Password"] = "Pasword FTP"; -$a->strings["New Message"] = "Nuovo messaggio"; -$a->strings["No recipient selected."] = "Nessun destinatario selezionato."; -$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto."; -$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato."; -$a->strings["Message collection failure."] = "Errore recuperando il messaggio."; -$a->strings["Message sent."] = "Messaggio inviato."; -$a->strings["Messages"] = "Messaggi"; -$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?"; -$a->strings["Message deleted."] = "Messaggio eliminato."; -$a->strings["Conversation removed."] = "Conversazione rimossa."; -$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; -$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["Upload photo"] = "Carica foto"; -$a->strings["Insert web link"] = "Inserisci link"; -$a->strings["No messages."] = "Nessun messaggio."; -$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s"; -$a->strings["You and %s"] = "Tu e %s"; -$a->strings["%s and You"] = "%s e Tu"; -$a->strings["Delete conversation"] = "Elimina la conversazione"; -$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; -$a->strings["%d message"] = array( - 0 => "%d messaggio", - 1 => "%d messaggi", +$a->strings["Search Results For: %s"] = "Risultato della ricerca per: %s"; +$a->strings["Remove term"] = "Rimuovi termine"; +$a->strings["Saved Searches"] = "Ricerche salvate"; +$a->strings["add"] = "aggiungi"; +$a->strings["Commented Order"] = "Ordina per commento"; +$a->strings["Sort by Comment Date"] = "Ordina per data commento"; +$a->strings["Posted Order"] = "Ordina per invio"; +$a->strings["Sort by Post Date"] = "Ordina per data messaggio"; +$a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono"; +$a->strings["New"] = "Nuovo"; +$a->strings["Activity Stream - by date"] = "Activity Stream - per data"; +$a->strings["Shared Links"] = "Links condivisi"; +$a->strings["Interesting Links"] = "Link Interessanti"; +$a->strings["Starred"] = "Preferiti"; +$a->strings["Favourite Posts"] = "Messaggi preferiti"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Attenzione: questo gruppo contiene %s membro da un network insicuro.", + 1 => "Attenzione: questo gruppo contiene %s membri da un network insicuro.", ); -$a->strings["Message not available."] = "Messaggio non disponibile."; -$a->strings["Delete message"] = "Elimina il messaggio"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente."; -$a->strings["Send Reply"] = "Invia la risposta"; -$a->strings["Item not found"] = "Oggetto non trovato"; -$a->strings["Edit post"] = "Modifica messaggio"; -$a->strings["Save"] = "Salva"; -$a->strings["upload photo"] = "carica foto"; -$a->strings["Attach file"] = "Allega file"; -$a->strings["attach file"] = "allega file"; -$a->strings["web link"] = "link web"; -$a->strings["Insert video link"] = "Inserire collegamento video"; -$a->strings["video link"] = "link video"; -$a->strings["Insert audio link"] = "Inserisci collegamento audio"; -$a->strings["audio link"] = "link audio"; -$a->strings["Set your location"] = "La tua posizione"; -$a->strings["set location"] = "posizione"; -$a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser"; -$a->strings["clear location"] = "canc. pos."; -$a->strings["Permission settings"] = "Impostazioni permessi"; -$a->strings["CC: email addresses"] = "CC: indirizzi email"; -$a->strings["Public post"] = "Messaggio pubblico"; -$a->strings["Set title"] = "Scegli un titolo"; -$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com"; -$a->strings["Profile not found."] = "Profilo non trovato."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata."; -$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito."; -$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: "; -$a->strings["Confirmation completed successfully."] = "Conferma completata con successo."; -$a->strings["Remote site reported: "] = "Il sito remoto riporta: "; -$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova."; -$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata."; -$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici"; -$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."; -$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito."; -$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s"; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."; -$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."; -$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s"; +$a->strings["Private messages to this group are at risk of public disclosure."] = "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente."; +$a->strings["No such group"] = "Nessun gruppo"; +$a->strings["Group: %s"] = "Gruppo: %s"; +$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."; +$a->strings["Invalid contact."] = "Contatto non valido."; +$a->strings["No friends to display."] = "Nessun amico da visualizzare."; $a->strings["Event can not end before it has started."] = "Un evento non puo' finire prima di iniziare."; $a->strings["Event title and start time are required."] = "Titolo e ora di inizio dell'evento sono richiesti."; +$a->strings["Sun"] = "Dom"; +$a->strings["Mon"] = "Lun"; +$a->strings["Tue"] = "Mar"; +$a->strings["Wed"] = "Mer"; +$a->strings["Thu"] = "Gio"; +$a->strings["Fri"] = "Ven"; +$a->strings["Sat"] = "Sab"; +$a->strings["Sunday"] = "Domenica"; +$a->strings["Monday"] = "Lunedì"; +$a->strings["Tuesday"] = "Martedì"; +$a->strings["Wednesday"] = "Mercoledì"; +$a->strings["Thursday"] = "Giovedì"; +$a->strings["Friday"] = "Venerdì"; +$a->strings["Saturday"] = "Sabato"; +$a->strings["Jan"] = "Gen"; +$a->strings["Feb"] = "Feb"; +$a->strings["Mar"] = "Mar"; +$a->strings["Apr"] = "Apr"; +$a->strings["May"] = "Maggio"; +$a->strings["Jun"] = "Giu"; +$a->strings["Jul"] = "Lug"; +$a->strings["Aug"] = "Ago"; +$a->strings["Sept"] = "Set"; +$a->strings["Oct"] = "Ott"; +$a->strings["Nov"] = "Nov"; +$a->strings["Dec"] = "Dic"; +$a->strings["January"] = "Gennaio"; +$a->strings["February"] = "Febbraio"; +$a->strings["March"] = "Marzo"; +$a->strings["April"] = "Aprile"; +$a->strings["June"] = "Giugno"; +$a->strings["July"] = "Luglio"; +$a->strings["August"] = "Agosto"; +$a->strings["September"] = "Settembre"; +$a->strings["October"] = "Ottobre"; +$a->strings["November"] = "Novembre"; +$a->strings["December"] = "Dicembre"; +$a->strings["today"] = "oggi"; +$a->strings["month"] = "mese"; +$a->strings["week"] = "settimana"; +$a->strings["day"] = "giorno"; $a->strings["l, F j"] = "l j F"; $a->strings["Edit event"] = "Modifca l'evento"; $a->strings["link to source"] = "Collegamento all'originale"; @@ -556,306 +785,142 @@ $a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di ch $a->strings["Description:"] = "Descrizione:"; $a->strings["Title:"] = "Titolo:"; $a->strings["Share this event"] = "Condividi questo evento"; -$a->strings["Photos"] = "Foto"; -$a->strings["Files"] = "File"; -$a->strings["Welcome to %s"] = "Benvenuto su %s"; -$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; -$a->strings["Visible to:"] = "Visibile a:"; +$a->strings["Preview"] = "Anteprima"; +$a->strings["Credits"] = "Credits"; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica è un progetto comunitario, che non sarebbe stato possibile realizzare senza l'aiuto di molte persone.\nQuesta è una lista di chi ha contribuito al codice o alle traduzioni di Friendica. Grazie a tutti!"; +$a->strings["Select"] = "Seleziona"; +$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; +$a->strings["%s from %s"] = "%s da %s"; +$a->strings["View in context"] = "Vedi nel contesto"; +$a->strings["%d comment"] = array( + 0 => "%d commento", + 1 => "%d commenti", +); +$a->strings["comment"] = array( + 0 => "", + 1 => "commento", +); +$a->strings["show more"] = "mostra di più"; +$a->strings["Private Message"] = "Messaggio privato"; +$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)"; +$a->strings["like"] = "mi piace"; +$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)"; +$a->strings["dislike"] = "non mi piace"; +$a->strings["Share this"] = "Condividi questo"; +$a->strings["share"] = "condividi"; +$a->strings["This is you"] = "Questo sei tu"; +$a->strings["Comment"] = "Commento"; +$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["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Edit"] = "Modifica"; +$a->strings["add star"] = "aggiungi a speciali"; +$a->strings["remove star"] = "rimuovi da speciali"; +$a->strings["toggle star status"] = "Inverti stato preferito"; +$a->strings["starred"] = "preferito"; +$a->strings["add tag"] = "aggiungi tag"; +$a->strings["save to folder"] = "salva nella cartella"; +$a->strings["to"] = "a"; +$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; +$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca"; +$a->strings["Remove My Account"] = "Rimuovi il mio account"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."; +$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica Comunicazione Server - Impostazioni"; +$a->strings["Could not connect to database."] = " Impossibile collegarsi con il database."; +$a->strings["Could not create table."] = "Impossibile creare le tabelle."; +$a->strings["Your Friendica site database has been installed."] = "Il tuo Friendica è stato installato."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Leggi il file \"INSTALL.txt\"."; +$a->strings["Database already in use."] = "Database già in uso."; +$a->strings["System check"] = "Controllo sistema"; +$a->strings["Check again"] = "Controlla ancora"; +$a->strings["Database connection"] = "Connessione al database"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per installare Friendica dobbiamo sapere come collegarci al tuo database."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."; +$a->strings["Database Server Name"] = "Nome del database server"; +$a->strings["Database Login Name"] = "Nome utente database"; +$a->strings["Database Login Password"] = "Password utente database"; +$a->strings["Database Name"] = "Nome database"; +$a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."; +$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web"; +$a->strings["Site settings"] = "Impostazioni sito"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Setup the poller'"] = "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Setup the poller'"; +$a->strings["PHP executable path"] = "Percorso eseguibile PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione."; +$a->strings["Command line PHP"] = "PHP da riga di comando"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)"; +$a->strings["Found PHP version: "] = "Versione PHP:"; +$a->strings["PHP cli binary"] = "Binario PHP cli"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; +$a->strings["This is required for message delivery to work."] = "E' obbligatorio per far funzionare la consegna dei messaggi."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Genera chiavi di criptazione"; +$a->strings["libCurl PHP module"] = "modulo PHP libCurl"; +$a->strings["GD graphics PHP module"] = "modulo PHP GD graphics"; +$a->strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; +$a->strings["mysqli PHP module"] = "modulo PHP mysqli"; +$a->strings["mb_string PHP module"] = "modulo PHP mb_string"; +$a->strings["mcrypt PHP module"] = "modulo PHP mcrypt"; +$a->strings["Apache mod_rewrite module"] = "Modulo mod_rewrite di Apache"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato."; +$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato"; +$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Errore: il modulo mcrypt di PHP è richiesto, ma non risulta installato"; +$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "La funzione mcrypt _create_iv() non è definita. E' richiesta per abilitare il livello di criptazione RINO2"; +$a->strings["mcrypt_create_iv() function"] = "funzione mcrypt_create_iv()"; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica"; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 è scrivibile"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server."; +$a->strings["Url rewrite is working"] = "La riscrittura degli url funziona"; +$a->strings["ImageMagick PHP extension is installed"] = "L'estensione PHP ImageMagick è installata"; +$a->strings["ImageMagick supports GIF"] = "ImageMagick supporta i GIF"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito."; +$a->strings["

What next

"] = "

Cosa fare ora

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."; $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numero giornaliero di messaggi per %s superato. Invio fallito."; $a->strings["Unable to check your home location."] = "Impossibile controllare la tua posizione di origine."; $a->strings["No recipient."] = "Nessun destinatario."; $a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti."; -$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; -$a->strings["Edit contact"] = "Modifca contatto"; -$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo"; -$a->strings["This is Friendica, version"] = "Questo è Friendica, versione"; -$a->strings["running at web location"] = "in esecuzione all'indirizzo web"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Visita Friendica.com per saperne di più sul progetto Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita"; -$a->strings["the bugtracker at github"] = "il bugtracker su github"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com"; -$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate"; -$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata"; -$a->strings["Remove My Account"] = "Rimuovi il mio account"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."; -$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; -$a->strings["Invalid request."] = "Richiesta non valida."; -$a->strings["Image exceeds size limit of %s"] = "La dimensione dell'immagine supera il limite di %s"; -$a->strings["Unable to process image."] = "Impossibile caricare l'immagine."; -$a->strings["Wall Photos"] = "Foto della bacheca"; -$a->strings["Image upload failed."] = "Caricamento immagine fallito."; -$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione"; -$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:"; -$a->strings["Please login to continue."] = "Effettua il login per continuare."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; -$a->strings["Contact Photos"] = "Foto dei contatti"; -$a->strings["Photo Albums"] = "Album foto"; -$a->strings["Recent Photos"] = "Foto recenti"; -$a->strings["Upload New Photos"] = "Carica nuove foto"; -$a->strings["everybody"] = "tutti"; -$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili"; -$a->strings["Profile Photos"] = "Foto del profilo"; -$a->strings["Album not found."] = "Album non trovato."; -$a->strings["Delete Album"] = "Rimuovi album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Vuoi davvero cancellare questo album e tutte le sue foto?"; -$a->strings["Delete Photo"] = "Rimuovi foto"; -$a->strings["Do you really want to delete this photo?"] = "Vuoi veramente cancellare questa foto?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s è stato taggato in %2\$s da %3\$s"; -$a->strings["a photo"] = "una foto"; -$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; -$a->strings["No photos selected"] = "Nessuna foto selezionata"; -$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti."; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Hai usato %1$.2f MBytes su %2$.2f disponibili."; -$a->strings["Upload Photos"] = "Carica foto"; -$a->strings["New album name: "] = "Nome nuovo album: "; -$a->strings["or existing album name: "] = "o nome di un album esistente: "; -$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload"; -$a->strings["Permissions"] = "Permessi"; -$a->strings["Show to Groups"] = "Mostra ai gruppi"; -$a->strings["Show to Contacts"] = "Mostra ai contatti"; -$a->strings["Private Photo"] = "Foto privata"; -$a->strings["Public Photo"] = "Foto pubblica"; -$a->strings["Edit Album"] = "Modifica album"; -$a->strings["Show Newest First"] = "Mostra nuove foto per prime"; -$a->strings["Show Oldest First"] = "Mostra vecchie foto per prime"; -$a->strings["View Photo"] = "Vedi foto"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato."; -$a->strings["Photo not available"] = "Foto non disponibile"; -$a->strings["View photo"] = "Vedi foto"; -$a->strings["Edit photo"] = "Modifica foto"; -$a->strings["Use as profile photo"] = "Usa come foto del profilo"; -$a->strings["View Full Size"] = "Vedi dimensione intera"; -$a->strings["Tags: "] = "Tag: "; -$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]"; -$a->strings["New album name"] = "Nuovo nome dell'album"; -$a->strings["Caption"] = "Titolo"; -$a->strings["Add a Tag"] = "Aggiungi tag"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Do not rotate"] = "Non ruotare"; -$a->strings["Rotate CW (right)"] = "Ruota a destra"; -$a->strings["Rotate CCW (left)"] = "Ruota a sinistra"; -$a->strings["Private photo"] = "Foto privata"; -$a->strings["Public photo"] = "Foto pubblica"; -$a->strings["Share"] = "Condividi"; -$a->strings["View Album"] = "Sfoglia l'album"; -$a->strings["No profile"] = "Nessun profilo"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registrazione completata. Controlla la tua mail per ulteriori informazioni."; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Si è verificato un errore inviando l'email. I dettagli del tuo account:
login: %s
password: %s

Puoi cambiare la password dopo il login."; -$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere elaborata."; -$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."; -$a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): "; -$a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco pubblico?"; -$a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito."; -$a->strings["Your invitation ID: "] = "L'ID del tuo invito:"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo nome completo (es. Mario Rossi): "; -$a->strings["Your Email Address: "] = "Il tuo indirizzo email: "; -$a->strings["New Password:"] = "Nuova password:"; -$a->strings["Leave empty for an auto generated password."] = "Lascia vuoto per generare automaticamente una password."; -$a->strings["Confirm:"] = "Conferma:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@\$sitename'."; -$a->strings["Choose a nickname: "] = "Scegli un nome utente: "; -$a->strings["Register"] = "Registrati"; -$a->strings["Import"] = "Importa"; -$a->strings["Import your profile to this friendica instance"] = "Importa il tuo profilo in questo server friendica"; -$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["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nGentile %1\$s,\n abbiamo ricevuto su \"%2\$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica."; -$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nSegui questo link per verificare la tua identità:\n\n%1\$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2\$s\n Nome utente: %3\$s"; -$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."; -$a->strings["Password Reset"] = "Reimpostazione password"; -$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto."; -$a->strings["Your new password is"] = "La tua nuova password è"; -$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; -$a->strings["click here to login"] = "clicca qui per entrare"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso."; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nGentile %1\$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare."; -$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1\$s\n Nome utente: %2\$s\n Password: %3\$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato."; -$a->strings["Your password has been changed at %s"] = "La tua password presso %s è stata cambiata"; -$a->strings["Forgot your Password?"] = "Hai dimenticato la password?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password."; -$a->strings["Nickname or Email: "] = "Nome utente o email: "; -$a->strings["Reset"] = "Reimposta"; -$a->strings["System down for maintenance"] = "Sistema in manutenzione"; -$a->strings["Item not available."] = "Oggetto non disponibile."; -$a->strings["Item was not found."] = "Oggetto non trovato."; -$a->strings["Applications"] = "Applicazioni"; -$a->strings["No installed applications."] = "Nessuna applicazione installata."; $a->strings["Help:"] = "Guida:"; $a->strings["Help"] = "Guida"; -$a->strings["%d contact edited."] = array( - 0 => "%d contatto modificato", - 1 => "%d contatti modificati", -); -$a->strings["Could not access contact record."] = "Non è possibile accedere al contatto."; -$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; -$a->strings["Contact updated."] = "Contatto aggiornato."; -$a->strings["Contact has been blocked"] = "Il contatto è stato bloccato"; -$a->strings["Contact has been unblocked"] = "Il contatto è stato sbloccato"; -$a->strings["Contact has been ignored"] = "Il contatto è ignorato"; -$a->strings["Contact has been unignored"] = "Il contatto non è più ignorato"; -$a->strings["Contact has been archived"] = "Il contatto è stato archiviato"; -$a->strings["Contact has been unarchived"] = "Il contatto è stato dearchiviato"; -$a->strings["Do you really want to delete this contact?"] = "Vuoi veramente cancellare questo contatto?"; -$a->strings["Contact has been removed."] = "Il contatto è stato rimosso."; -$a->strings["You are mutual friends with %s"] = "Sei amico reciproco con %s"; -$a->strings["You are sharing with %s"] = "Stai condividendo con %s"; -$a->strings["%s is sharing with you"] = "%s sta condividendo con te"; -$a->strings["Private communications are not available for this contact."] = "Le comunicazioni private non sono disponibili per questo contatto."; -$a->strings["(Update was successful)"] = "(L'aggiornamento è stato completato)"; -$a->strings["(Update was not successful)"] = "(L'aggiornamento non è stato completato)"; -$a->strings["Suggest friends"] = "Suggerisci amici"; -$a->strings["Network type: %s"] = "Tipo di rete: %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d contatto in comune", - 1 => "%d contatti in comune", -); -$a->strings["View all contacts"] = "Vedi tutti i contatti"; -$a->strings["Toggle Blocked status"] = "Inverti stato \"Blocca\""; -$a->strings["Unignore"] = "Non ignorare"; -$a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\""; -$a->strings["Unarchive"] = "Dearchivia"; -$a->strings["Archive"] = "Archivia"; -$a->strings["Toggle Archive status"] = "Inverti stato \"Archiviato\""; -$a->strings["Repair"] = "Ripara"; -$a->strings["Advanced Contact Settings"] = "Impostazioni avanzate Contatto"; -$a->strings["Communications lost with this contact!"] = "Comunicazione con questo contatto persa!"; -$a->strings["Fetch further information for feeds"] = "Recupera maggiori infomazioni per i feed"; -$a->strings["Fetch information"] = "Recupera informazioni"; -$a->strings["Fetch information and keywords"] = "Recupera informazioni e parole chiave"; -$a->strings["Contact Editor"] = "Editor dei Contatti"; -$a->strings["Profile Visibility"] = "Visibilità del profilo"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."; -$a->strings["Contact Information / Notes"] = "Informazioni / Note sul contatto"; -$a->strings["Edit contact notes"] = "Modifica note contatto"; -$a->strings["Block/Unblock contact"] = "Blocca/Sblocca contatto"; -$a->strings["Ignore contact"] = "Ignora il contatto"; -$a->strings["Repair URL settings"] = "Impostazioni riparazione URL"; -$a->strings["View conversations"] = "Vedi conversazioni"; -$a->strings["Delete contact"] = "Rimuovi contatto"; -$a->strings["Last update:"] = "Ultimo aggiornamento:"; -$a->strings["Update public posts"] = "Aggiorna messaggi pubblici"; -$a->strings["Currently blocked"] = "Bloccato"; -$a->strings["Currently ignored"] = "Ignorato"; -$a->strings["Currently archived"] = "Al momento archiviato"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Risposte ai tuoi post pubblici possono essere comunque visibili"; -$a->strings["Notification for new posts"] = "Notifica per i nuovi messaggi"; -$a->strings["Send a notification of every new post of this contact"] = "Invia una notifica per ogni nuovo messaggio di questo contatto"; -$a->strings["Blacklisted keywords"] = "Parole chiave in blacklist"; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista separata da virgola di parole chiave che non dovranno essere convertite in hastag, quando \"Recupera informazioni e parole chiave\" è selezionato"; -$a->strings["Profile URL"] = "URL Profilo"; -$a->strings["Suggestions"] = "Suggerimenti"; -$a->strings["Suggest potential friends"] = "Suggerisci potenziali amici"; -$a->strings["All Contacts"] = "Tutti i contatti"; -$a->strings["Show all contacts"] = "Mostra tutti i contatti"; -$a->strings["Unblocked"] = "Sbloccato"; -$a->strings["Only show unblocked contacts"] = "Mostra solo contatti non bloccati"; -$a->strings["Blocked"] = "Bloccato"; -$a->strings["Only show blocked contacts"] = "Mostra solo contatti bloccati"; -$a->strings["Ignored"] = "Ignorato"; -$a->strings["Only show ignored contacts"] = "Mostra solo contatti ignorati"; -$a->strings["Archived"] = "Achiviato"; -$a->strings["Only show archived contacts"] = "Mostra solo contatti archiviati"; -$a->strings["Hidden"] = "Nascosto"; -$a->strings["Only show hidden contacts"] = "Mostra solo contatti nascosti"; -$a->strings["Contacts"] = "Contatti"; -$a->strings["Search your contacts"] = "Cerca nei tuoi contatti"; -$a->strings["Finding: "] = "Ricerca: "; -$a->strings["Find"] = "Trova"; -$a->strings["Update"] = "Aggiorna"; -$a->strings["Mutual Friendship"] = "Amicizia reciproca"; -$a->strings["is a fan of yours"] = "è un tuo fan"; -$a->strings["you are a fan of"] = "sei un fan di"; -$a->strings["Do you really want to delete this video?"] = "Vuoi veramente cancellare questo video?"; -$a->strings["Delete Video"] = "Rimuovi video"; -$a->strings["No videos selected"] = "Nessun video selezionato"; -$a->strings["Recent Videos"] = "Video Recenti"; -$a->strings["Upload New Videos"] = "Carica Nuovo Video"; -$a->strings["Common Friends"] = "Amici in comune"; -$a->strings["No contacts in common."] = "Nessun contatto in comune."; -$a->strings["You already added this contact."] = "Hai già aggiunto questo contatto."; -$a->strings["Contact added"] = "Contatto aggiunto"; -$a->strings["Login"] = "Accedi"; -$a->strings["The post was created"] = "Il messaggio è stato creato"; -$a->strings["Move account"] = "Muovi account"; -$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"; -$a->strings["Account file"] = "File account"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; -$a->strings["Friends of %s"] = "Amici di %s"; -$a->strings["No friends to display."] = "Nessun amico da visualizzare."; -$a->strings["Tag removed"] = "Tag rimosso"; -$a->strings["Remove Item Tag"] = "Rimuovi il tag"; -$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; -$a->strings["Remove"] = "Rimuovi"; -$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica"; -$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."; -$a->strings["Getting Started"] = "Come Iniziare"; -$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."; -$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."; -$a->strings["Profile"] = "Profilo"; -$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; -$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; -$a->strings["Profile Keywords"] = "Parole chiave del profilo"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; -$a->strings["Connecting"] = "Collegarsi"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["Importing Emails"] = "Importare le Email"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; -$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; -$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; -$a->strings["Finding New People"] = "Trova nuove persone"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; -$a->strings["Groups"] = "Gruppi"; -$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; -$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."; -$a->strings["Getting Help"] = "Ottenere Aiuto"; -$a->strings["Go to the Help Section"] = "Vai alla sezione Guida"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; -$a->strings["Remove term"] = "Rimuovi termine"; -$a->strings["Saved Searches"] = "Ricerche salvate"; -$a->strings["Search"] = "Cerca"; +$a->strings["Not Found"] = "Non trovato"; +$a->strings["Page not found."] = "Pagina non trovata."; +$a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s"; +$a->strings["Welcome to %s"] = "Benvenuto su %s"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta"; +$a->strings["Or - did you try to upload an empty file?"] = "O.. non avrai provato a caricare un file vuoto?"; +$a->strings["File exceeds size limit of %s"] = "Il file supera la dimensione massima di %s"; +$a->strings["File upload failed."] = "Caricamento del file non riuscito."; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."; +$a->strings["is interested in:"] = "è interessato a:"; +$a->strings["Profile Match"] = "Profili corrispondenti"; +$a->strings["link"] = "collegamento"; +$a->strings["Not available."] = "Non disponibile."; +$a->strings["Community"] = "Comunità"; $a->strings["No results."] = "Nessun risultato."; -$a->strings["Items tagged with: %s"] = "Elementi taggati con: %s"; -$a->strings["Search results for: %s"] = "Risultato della ricerca per: %s"; -$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato."; -$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; -$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito."; -$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita."; -$a->strings["%d message sent."] = array( - 0 => "%d messaggio inviato.", - 1 => "%d messaggi inviati.", -); -$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."; -$a->strings["Send invitations"] = "Invia inviti"; -$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"; +$a->strings["everybody"] = "tutti"; $a->strings["Additional features"] = "Funzionalità aggiuntive"; $a->strings["Display"] = "Visualizzazione"; $a->strings["Social Networks"] = "Social Networks"; @@ -901,10 +966,11 @@ $a->strings["Disable intelligent shortening"] = "Disabilita accorciamento intell $a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normalmente il sistema tenta di trovare il migliore link da aggiungere a un post accorciato. Se questa opzione è abilitata, ogni post accorciato conterrà sempre un link al post originale su Friendica."; $a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Segui automanticamente chiunque da GNU Social (OStatus) ti segua o ti menzioni"; $a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Se ricevi un messaggio da un utente OStatus sconosciuto, questa opzione decide cosa fare. Se selezionato, un nuovo contatto verrà creato per ogni utente sconosciuto."; -$a->strings["Your legacy GNU Social account"] = ""; -$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = ""; -$a->strings["Repair OStatus subscriptions"] = ""; +$a->strings["Your legacy GNU Social account"] = "Il tuo vecchio account GNU Social"; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "Se inserisci il nome del tuo vecchio account GNU Social/Statusnet qui (nel formato utente@dominio.tld), i tuoi contatti verranno automaticamente aggiunti. Il campo verrà svuotato una volta terminato."; +$a->strings["Repair OStatus subscriptions"] = "Ripara le iscrizioni OStatus"; $a->strings["Built-in support for %s connectivity is %s"] = "Il supporto integrato per la connettività con %s è %s"; +$a->strings["Diaspora"] = "Diaspora"; $a->strings["enabled"] = "abilitato"; $a->strings["disabled"] = "disabilitato"; $a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)"; @@ -928,11 +994,13 @@ $a->strings["Display Settings"] = "Impostazioni Grafiche"; $a->strings["Display Theme:"] = "Tema:"; $a->strings["Mobile Theme:"] = "Tema mobile:"; $a->strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimo 10 secondi. Inserisci -1 per disabilitarlo"; $a->strings["Number of items to display per page:"] = "Numero di elementi da mostrare per pagina:"; $a->strings["Maximum of 100 items"] = "Massimo 100 voci"; $a->strings["Number of items to display per page when viewed from mobile device:"] = "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:"; $a->strings["Don't show emoticons"] = "Non mostrare le emoticons"; +$a->strings["Calendar"] = "Calendario"; +$a->strings["Beginning of week:"] = "Inizio della settimana:"; $a->strings["Don't show notices"] = "Non mostrare gli avvisi"; $a->strings["Infinite scroll"] = "Scroll infinito"; $a->strings["Automatic updates only at the top of the network page"] = "Aggiornamenti automatici solo in cima alla pagina \"rete\""; @@ -973,6 +1041,8 @@ $a->strings["Expire photos:"] = "Fai scadere le foto:"; $a->strings["Only expire posts by others:"] = "Fai scadere solo i post degli altri:"; $a->strings["Account Settings"] = "Impostazioni account"; $a->strings["Password Settings"] = "Impostazioni password"; +$a->strings["New Password:"] = "Nuova password:"; +$a->strings["Confirm:"] = "Conferma:"; $a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non effettuare variazioni alla password"; $a->strings["Current Password:"] = "Password Attuale:"; $a->strings["Your current password to confirm the changes"] = "La tua password attuale per confermare le modifiche"; @@ -981,6 +1051,8 @@ $a->strings["Basic Settings"] = "Impostazioni base"; $a->strings["Full Name:"] = "Nome completo:"; $a->strings["Email Address:"] = "Indirizzo Email:"; $a->strings["Your Timezone:"] = "Il tuo fuso orario:"; +$a->strings["Your Language:"] = "La tua lingua:"; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Imposta la lingua che sarà usata per mostrarti l'interfaccia di Friendica e per inviarti le email"; $a->strings["Default Post Location:"] = "Località predefinita:"; $a->strings["Use Browser Location:"] = "Usa la località rilevata dal browser:"; $a->strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy"; @@ -988,6 +1060,8 @@ $a->strings["Maximum Friend Requests/Day:"] = "Numero massimo di richieste di am $a->strings["(to prevent spam abuse)"] = "(per prevenire lo spam)"; $a->strings["Default Post Permissions"] = "Permessi predefiniti per i messaggi"; $a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; +$a->strings["Show to Groups"] = "Mostra ai gruppi"; +$a->strings["Show to Contacts"] = "Mostra ai contatti"; $a->strings["Default Private Post"] = "Default Post Privato"; $a->strings["Default Public Post"] = "Default Post Pubblico"; $a->strings["Default Permissions for New Posts"] = "Permessi predefiniti per i nuovi post"; @@ -1015,10 +1089,96 @@ $a->strings["Change the behaviour of this account for special situations"] = "Mo $a->strings["Relocate"] = "Trasloca"; $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone."; $a->strings["Resend relocate message to contacts"] = "Reinvia il messaggio di trasloco"; -$a->strings["Item has been removed."] = "L'oggetto è stato rimosso."; -$a->strings["People Search - %s"] = "Cerca persone - %s"; -$a->strings["Connect"] = "Connetti"; -$a->strings["No matches"] = "Nessun risultato"; +$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; +$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; +$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", + 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", +); +$a->strings["Introduction complete."] = "Presentazione completa."; +$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; +$a->strings["Profile unavailable."] = "Profilo non disponibile."; +$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; +$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; +$a->strings["Invalid locator"] = "Invalid locator"; +$a->strings["Invalid email address."] = "Indirizzo email non valido."; +$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita."; +$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata."; +$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; +$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; +$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; +$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; +$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; +$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; +$a->strings["Confirm"] = "Conferma"; +$a->strings["Hide this contact"] = "Nascondi questo contatto"; +$a->strings["Welcome home %s."] = "Bentornato a casa %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi"; +$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registrazione completata. Controlla la tua mail per ulteriori informazioni."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Si è verificato un errore inviando l'email. I dettagli del tuo account:
login: %s
password: %s

Puoi cambiare la password dopo il login."; +$a->strings["Registration successful."] = "Registrazione completata."; +$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere elaborata."; +$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."; +$a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): "; +$a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco pubblico?"; +$a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito."; +$a->strings["Your invitation ID: "] = "L'ID del tuo invito:"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Il tuo nome completo (es. Mario Rossi, vero o che sembri vero): "; +$a->strings["Your Email Address: "] = "Il tuo indirizzo email: "; +$a->strings["Leave empty for an auto generated password."] = "Lascia vuoto per generare automaticamente una password."; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@\$sitename'."; +$a->strings["Choose a nickname: "] = "Scegli un nome utente: "; +$a->strings["Register"] = "Registrati"; +$a->strings["Import"] = "Importa"; +$a->strings["Import your profile to this friendica instance"] = "Importa il tuo profilo in questo server friendica"; +$a->strings["System down for maintenance"] = "Sistema in manutenzione"; +$a->strings["Only logged in users are permitted to perform a search."] = "Solo agli utenti loggati è permesso eseguire ricerche."; +$a->strings["Too Many Requests"] = "Troppe richieste"; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Solo una ricerca al minuto è permessa agli utenti non loggati."; +$a->strings["Search"] = "Cerca"; +$a->strings["Items tagged with: %s"] = "Elementi taggati con: %s"; +$a->strings["Search results for: %s"] = "Risultato della ricerca per: %s"; +$a->strings["Status:"] = "Stato:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["Global Directory"] = "Elenco globale"; +$a->strings["Find on this site"] = "Cerca nel sito"; +$a->strings["Finding:"] = "Ricerca:"; +$a->strings["Site Directory"] = "Elenco del sito"; +$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta)."; +$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato."; +$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina"; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."; +$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti"; +$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti"; +$a->strings["Potential Delegates"] = "Delegati Potenziali"; +$a->strings["Add"] = "Aggiungi"; +$a->strings["No entries."] = "Nessuna voce."; +$a->strings["No contacts in common."] = "Nessun contatto in comune."; +$a->strings["Export account"] = "Esporta account"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."; +$a->strings["Export all"] = "Esporta tutto"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s"; +$a->strings["Mood"] = "Umore"; +$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici"; +$a->strings["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; +$a->strings["Ignore/Hide"] = "Ignora / Nascondi"; +$a->strings["Friend Suggestions"] = "Contatti suggeriti"; $a->strings["Profile deleted."] = "Profilo elminato."; $a->strings["Profile-"] = "Profilo-"; $a->strings["New profile created."] = "Il nuovo profilo è stato creato."; @@ -1045,6 +1205,7 @@ $a->strings[" - Visit %1\$s's %2\$s"] = "- Visita %2\$s di %1\$s"; $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha un %2\$s aggiornato. Ha cambiato %3\$s"; $a->strings["Hide contacts and friends:"] = "Nascondi contatti:"; $a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"; +$a->strings["Show more profile fields:"] = "Mostra più informazioni di profilo:"; $a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; $a->strings["Change Profile Photo"] = "Cambia la foto del profilo"; $a->strings["View this profile"] = "Visualizza questo profilo"; @@ -1100,71 +1261,41 @@ $a->strings["Create New Profile"] = "Crea un nuovo profilo"; $a->strings["Profile Image"] = "Immagine del Profilo"; $a->strings["visible to everybody"] = "visibile a tutti"; $a->strings["Edit visibility"] = "Modifica visibilità"; -$a->strings["link"] = "collegamento"; -$a->strings["Export account"] = "Esporta account"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."; -$a->strings["Export all"] = "Esporta tutto"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"; -$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico"; -$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio"; -$a->strings["{0} requested registration"] = "{0} chiede la registrazione"; -$a->strings["Nothing new here"] = "Niente di nuovo qui"; -$a->strings["Clear notifications"] = "Pulisci le notifiche"; -$a->strings["Not available."] = "Non disponibile."; -$a->strings["Community"] = "Comunità"; -$a->strings["Save to Folder:"] = "Salva nella Cartella:"; -$a->strings["- select -"] = "- seleziona -"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta"; -$a->strings["Or - did you try to upload an empty file?"] = "O.. non avrai provato a caricare un file vuoto?"; -$a->strings["File exceeds size limit of %s"] = "Il file supera la dimensione massima di %s"; -$a->strings["File upload failed."] = "Caricamento del file non riuscito."; -$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; -$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo"; -$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; -$a->strings["Visible To"] = "Visibile a"; -$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)"; -$a->strings["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?"; -$a->strings["Friend Suggestions"] = "Contatti suggeriti"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; -$a->strings["Ignore/Hide"] = "Ignora / Nascondi"; -$a->strings["Access denied."] = "Accesso negato."; -$a->strings["Resubsribing to OStatus contacts"] = ""; -$a->strings["Error"] = ""; -$a->strings["Done"] = ""; -$a->strings["Keep this window open until done."] = ""; -$a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s"; -$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"; -$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:"; -$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato."; -$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina"; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."; -$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti"; -$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti"; -$a->strings["Potential Delegates"] = "Delegati Potenziali"; -$a->strings["Add"] = "Aggiungi"; -$a->strings["No entries."] = "Nessuna voce."; -$a->strings["No contacts."] = "Nessun contatto."; -$a->strings["View Contacts"] = "Visualizza i contatti"; +$a->strings["Item not found"] = "Oggetto non trovato"; +$a->strings["Edit post"] = "Modifica messaggio"; +$a->strings["upload photo"] = "carica foto"; +$a->strings["Attach file"] = "Allega file"; +$a->strings["attach file"] = "allega file"; +$a->strings["web link"] = "link web"; +$a->strings["Insert video link"] = "Inserire collegamento video"; +$a->strings["video link"] = "link video"; +$a->strings["Insert audio link"] = "Inserisci collegamento audio"; +$a->strings["audio link"] = "link audio"; +$a->strings["Set your location"] = "La tua posizione"; +$a->strings["set location"] = "posizione"; +$a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser"; +$a->strings["clear location"] = "canc. pos."; +$a->strings["Permission settings"] = "Impostazioni permessi"; +$a->strings["CC: email addresses"] = "CC: indirizzi email"; +$a->strings["Public post"] = "Messaggio pubblico"; +$a->strings["Set title"] = "Scegli un titolo"; +$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com"; +$a->strings["This is Friendica, version"] = "Questo è Friendica, versione"; +$a->strings["running at web location"] = "in esecuzione all'indirizzo web"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Visita Friendica.com per saperne di più sul progetto Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita"; +$a->strings["the bugtracker at github"] = "il bugtracker su github"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com"; +$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate"; +$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata"; +$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione"; +$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:"; +$a->strings["Please login to continue."] = "Effettua il login per continuare."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"; +$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; +$a->strings["Visible to:"] = "Visibile a:"; $a->strings["Personal Notes"] = "Note personali"; -$a->strings["Poke/Prod"] = "Tocca/Pungola"; -$a->strings["poke, prod or do other things to somebody"] = "tocca, pungola o fai altre cose a qualcuno"; -$a->strings["Recipient"] = "Destinatario"; -$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi fare al destinatario"; -$a->strings["Make this post private"] = "Rendi questo post privato"; -$a->strings["Global Directory"] = "Elenco globale"; -$a->strings["Find on this site"] = "Cerca nel sito"; -$a->strings["Site Directory"] = "Elenco del sito"; -$a->strings["Gender: "] = "Genere:"; -$a->strings["Status:"] = "Stato:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta)."; -$a->strings["Subsribing to OStatus contacts"] = ""; -$a->strings["No contact provided."] = ""; -$a->strings["Couldn't fetch information for contact."] = ""; -$a->strings["Couldn't fetch friends for contact."] = ""; -$a->strings["success"] = ""; -$a->strings["failed"] = ""; $a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; $a->strings["Time Conversion"] = "Conversione Ora"; $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti."; @@ -1172,226 +1303,95 @@ $a->strings["UTC time: %s"] = "Ora UTC: %s"; $a->strings["Current timezone: %s"] = "Fuso orario corrente: %s"; $a->strings["Converted localtime: %s"] = "Ora locale convertita: %s"; $a->strings["Please select your timezone:"] = "Selezionare il tuo fuso orario:"; -$a->strings["Post successful."] = "Inviato!"; -$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; -$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; -$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; -$a->strings["Upload File:"] = "Carica un file:"; -$a->strings["Select a profile:"] = "Seleziona un profilo:"; -$a->strings["Upload"] = "Carica"; -$a->strings["or"] = "o"; -$a->strings["skip this step"] = "salta questo passaggio"; -$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; -$a->strings["Crop Image"] = "Ritaglia immagine"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore."; -$a->strings["Done Editing"] = "Finito"; -$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; -$a->strings["Friendica Communications Server - Setup"] = "Friendica Comunicazione Server - Impostazioni"; -$a->strings["Could not connect to database."] = " Impossibile collegarsi con il database."; -$a->strings["Could not create table."] = "Impossibile creare le tabelle."; -$a->strings["Your Friendica site database has been installed."] = "Il tuo Friendica è stato installato."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Leggi il file \"INSTALL.txt\"."; -$a->strings["Database already in use."] = "Database già in uso."; -$a->strings["System check"] = "Controllo sistema"; -$a->strings["Check again"] = "Controlla ancora"; -$a->strings["Database connection"] = "Connessione al database"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per installare Friendica dobbiamo sapere come collegarci al tuo database."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."; -$a->strings["Database Server Name"] = "Nome del database server"; -$a->strings["Database Login Name"] = "Nome utente database"; -$a->strings["Database Login Password"] = "Password utente database"; -$a->strings["Database Name"] = "Nome database"; -$a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."; -$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web"; -$a->strings["Site settings"] = "Impostazioni sito"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Activating scheduled tasks'"; -$a->strings["PHP executable path"] = "Percorso eseguibile PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione."; -$a->strings["Command line PHP"] = "PHP da riga di comando"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)"; -$a->strings["Found PHP version: "] = "Versione PHP:"; -$a->strings["PHP cli binary"] = "Binario PHP cli"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; -$a->strings["This is required for message delivery to work."] = "E' obbligatorio per far funzionare la consegna dei messaggi."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Genera chiavi di criptazione"; -$a->strings["libCurl PHP module"] = "modulo PHP libCurl"; -$a->strings["GD graphics PHP module"] = "modulo PHP GD graphics"; -$a->strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; -$a->strings["mysqli PHP module"] = "modulo PHP mysqli"; -$a->strings["mb_string PHP module"] = "modulo PHP mb_string"; -$a->strings["mcrypt PHP module"] = ""; -$a->strings["Apache mod_rewrite module"] = "Modulo mod_rewrite di Apache"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato."; -$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato"; -$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato."; -$a->strings["Error: mcrypt PHP module required but not installed."] = ""; -$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica"; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 è scrivibile"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server."; -$a->strings["Url rewrite is working"] = "La riscrittura degli url funziona"; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito."; -$a->strings["

What next

"] = "

Cosa fare ora

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."; +$a->strings["Poke/Prod"] = "Tocca/Pungola"; +$a->strings["poke, prod or do other things to somebody"] = "tocca, pungola o fai altre cose a qualcuno"; +$a->strings["Recipient"] = "Destinatario"; +$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi fare al destinatario"; +$a->strings["Make this post private"] = "Rendi questo post privato"; +$a->strings["Resubsribing to OStatus contacts"] = "Reiscrizione a contatti OStatus"; +$a->strings["Error"] = "Errore"; +$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato."; +$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; +$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito."; +$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita."; +$a->strings["%d message sent."] = array( + 0 => "%d messaggio inviato.", + 1 => "%d messaggi inviati.", +); +$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."; +$a->strings["Send invitations"] = "Invia inviti"; +$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"; +$a->strings["Photo Albums"] = "Album foto"; +$a->strings["Recent Photos"] = "Foto recenti"; +$a->strings["Upload New Photos"] = "Carica nuove foto"; +$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili"; +$a->strings["Album not found."] = "Album non trovato."; +$a->strings["Delete Album"] = "Rimuovi album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Vuoi davvero cancellare questo album e tutte le sue foto?"; +$a->strings["Delete Photo"] = "Rimuovi foto"; +$a->strings["Do you really want to delete this photo?"] = "Vuoi veramente cancellare questa foto?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s è stato taggato in %2\$s da %3\$s"; +$a->strings["a photo"] = "una foto"; +$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; +$a->strings["No photos selected"] = "Nessuna foto selezionata"; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Hai usato %1$.2f MBytes su %2$.2f disponibili."; +$a->strings["Upload Photos"] = "Carica foto"; +$a->strings["New album name: "] = "Nome nuovo album: "; +$a->strings["or existing album name: "] = "o nome di un album esistente: "; +$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload"; +$a->strings["Permissions"] = "Permessi"; +$a->strings["Private Photo"] = "Foto privata"; +$a->strings["Public Photo"] = "Foto pubblica"; +$a->strings["Edit Album"] = "Modifica album"; +$a->strings["Show Newest First"] = "Mostra nuove foto per prime"; +$a->strings["Show Oldest First"] = "Mostra vecchie foto per prime"; +$a->strings["View Photo"] = "Vedi foto"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato."; +$a->strings["Photo not available"] = "Foto non disponibile"; +$a->strings["View photo"] = "Vedi foto"; +$a->strings["Edit photo"] = "Modifica foto"; +$a->strings["Use as profile photo"] = "Usa come foto del profilo"; +$a->strings["View Full Size"] = "Vedi dimensione intera"; +$a->strings["Tags: "] = "Tag: "; +$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]"; +$a->strings["New album name"] = "Nuovo nome dell'album"; +$a->strings["Caption"] = "Titolo"; +$a->strings["Add a Tag"] = "Aggiungi tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "Non ruotare"; +$a->strings["Rotate CW (right)"] = "Ruota a destra"; +$a->strings["Rotate CCW (left)"] = "Ruota a sinistra"; +$a->strings["Private photo"] = "Foto privata"; +$a->strings["Public photo"] = "Foto pubblica"; +$a->strings["Share"] = "Condividi"; +$a->strings["Attending"] = array( + 0 => "Partecipa", + 1 => "Partecipano", +); +$a->strings["Not attending"] = "Non partecipa"; +$a->strings["Might attend"] = "Forse partecipa"; +$a->strings["Map"] = "Mappa"; $a->strings["Not Extended"] = "Not Extended"; -$a->strings["Group created."] = "Gruppo creato."; -$a->strings["Could not create group."] = "Impossibile creare il gruppo."; -$a->strings["Group not found."] = "Gruppo non trovato."; -$a->strings["Group name changed."] = "Il nome del gruppo è cambiato."; -$a->strings["Save Group"] = "Salva gruppo"; -$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti."; -$a->strings["Group Name: "] = "Nome del gruppo:"; -$a->strings["Group removed."] = "Gruppo rimosso."; -$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; -$a->strings["Group Editor"] = "Modifica gruppo"; -$a->strings["Members"] = "Membri"; -$a->strings["No such group"] = "Nessun gruppo"; -$a->strings["Group is empty"] = "Il gruppo è vuoto"; -$a->strings["Group: %s"] = "Gruppo: %s"; -$a->strings["View in context"] = "Vedi nel contesto"; $a->strings["Account approved."] = "Account approvato."; $a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; $a->strings["Please login."] = "Accedi."; -$a->strings["Profile Match"] = "Profili corrispondenti"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."; -$a->strings["is interested in:"] = "è interessato a:"; -$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; -$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."; -$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."; -$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento."; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s"; -$a->strings["Mood"] = "Umore"; -$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici"; -$a->strings["Search Results For: %s"] = "Risultato della ricerca per: %s"; -$a->strings["add"] = "aggiungi"; -$a->strings["Commented Order"] = "Ordina per commento"; -$a->strings["Sort by Comment Date"] = "Ordina per data commento"; -$a->strings["Posted Order"] = "Ordina per invio"; -$a->strings["Sort by Post Date"] = "Ordina per data messaggio"; -$a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono"; -$a->strings["New"] = "Nuovo"; -$a->strings["Activity Stream - by date"] = "Activity Stream - per data"; -$a->strings["Shared Links"] = "Links condivisi"; -$a->strings["Interesting Links"] = "Link Interessanti"; -$a->strings["Starred"] = "Preferiti"; -$a->strings["Favourite Posts"] = "Messaggi preferiti"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Attenzione: questo gruppo contiene %s membro da un network insicuro.", - 1 => "Attenzione: questo gruppo contiene %s membri da un network insicuro.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente."; -$a->strings["Contact: %s"] = "Contatto: %s"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."; -$a->strings["Invalid contact."] = "Contatto non valido."; -$a->strings["Contact settings applied."] = "Contatto modificato."; -$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; -$a->strings["Repair Contact Settings"] = "Ripara il contatto"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; -$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; -$a->strings["No mirroring"] = "Non duplicare"; -$a->strings["Mirror as forwarded posting"] = "Duplica come messaggi ricondivisi"; -$a->strings["Mirror as my own posting"] = "Duplica come miei messaggi"; -$a->strings["Refetch contact data"] = "Ricarica dati contatto"; -$a->strings["Account Nickname"] = "Nome utente"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; -$a->strings["Account URL"] = "URL dell'utente"; -$a->strings["Friend Request URL"] = "URL Richiesta Amicizia"; -$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia"; -$a->strings["Notification Endpoint URL"] = "URL Notifiche"; -$a->strings["Poll/Feed URL"] = "URL Feed"; -$a->strings["New photo from this URL"] = "Nuova foto da questo URL"; -$a->strings["Remote Self"] = "Io remoto"; -$a->strings["Mirror postings from this contact"] = "Ripeti i messaggi di questo contatto"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto."; -$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni"; -$a->strings["Your profile page"] = "Pagina del tuo profilo"; -$a->strings["Your contacts"] = "I tuoi contatti"; -$a->strings["Your photos"] = "Le tue foto"; -$a->strings["Your events"] = "I tuoi eventi"; -$a->strings["Personal notes"] = "Note personali"; -$a->strings["Your personal photos"] = "Le tue foto personali"; -$a->strings["Community Pages"] = "Pagine Comunitarie"; -$a->strings["Community Profiles"] = "Profili Comunità"; -$a->strings["Last users"] = "Ultimi utenti"; -$a->strings["Last likes"] = "Ultimi \"mi piace\""; -$a->strings["event"] = "l'evento"; -$a->strings["Last photos"] = "Ultime foto"; -$a->strings["Find Friends"] = "Trova Amici"; -$a->strings["Local Directory"] = "Elenco Locale"; -$a->strings["Similar Interests"] = "Interessi simili"; -$a->strings["Invite Friends"] = "Invita amici"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Set zoomfactor for Earth Layers"] = "Livello di zoom per Earth Layers"; -$a->strings["Set longitude (X) for Earth Layers"] = "Longitudine (X) per Earth Layers"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Latitudine (Y) per Earth Layers"; -$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; -$a->strings["Connect Services"] = "Servizi di conessione"; -$a->strings["don't show"] = "non mostrare"; -$a->strings["show"] = "mostra"; -$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra"; -$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti"; -$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti"; -$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale"; -$a->strings["Set color scheme"] = "Imposta lo schema dei colori"; -$a->strings["Set zoomfactor for Earth Layer"] = "Livello di zoom per Earth Layer"; -$a->strings["Set style"] = "Imposta stile"; -$a->strings["Set colour scheme"] = "Imposta schema colori"; -$a->strings["default"] = "default"; -$a->strings["greenzero"] = "greenzero"; -$a->strings["purplezero"] = "purplezero"; -$a->strings["easterbunny"] = "easterbunny"; -$a->strings["darkzero"] = "darkzero"; -$a->strings["comix"] = "comix"; -$a->strings["slackr"] = "slackr"; -$a->strings["Variations"] = "Varianti"; -$a->strings["Alignment"] = "Allineamento"; -$a->strings["Left"] = "Sinistra"; -$a->strings["Center"] = "Centrato"; -$a->strings["Color scheme"] = "Schema colori"; -$a->strings["Posts font size"] = "Dimensione caratteri post"; -$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)"; -$a->strings["Set theme width"] = "Imposta la larghezza del tema"; -$a->strings["Click here to download"] = ""; -$a->strings["Create new pull request"] = ""; -$a->strings["Reload active plugins"] = ""; -$a->strings["Drop contact"] = ""; -$a->strings["Public projects on this node"] = ""; -$a->strings["Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone."] = ""; -$a->strings["Visibility"] = ""; -$a->strings["Create"] = ""; -$a->strings["No pull requests to show"] = ""; -$a->strings["opened by"] = ""; -$a->strings["closed"] = ""; -$a->strings["merged"] = ""; -$a->strings["Projects"] = ""; -$a->strings["add new"] = ""; -$a->strings["delete"] = ""; -$a->strings["Clone this project:"] = ""; -$a->strings["New pull request"] = ""; -$a->strings["Can't show you the diff at the moment. Sorry"] = ""; +$a->strings["Move account"] = "Muovi account"; +$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (GNU Social/Statusnet) o da Diaspora"; +$a->strings["Account file"] = "File account"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""; +$a->strings["Item not available."] = "Oggetto non disponibile."; +$a->strings["Item was not found."] = "Oggetto non trovato."; $a->strings["Delete this item?"] = "Cancellare questo elemento?"; $a->strings["show fewer"] = "mostra di meno"; $a->strings["Update %s failed. See error logs."] = "aggiornamento %s fallito. Guarda i log di errore."; @@ -1406,9 +1406,50 @@ $a->strings["Website Terms of Service"] = "Condizioni di servizio del sito web " $a->strings["terms of service"] = "condizioni del servizio"; $a->strings["Website Privacy Policy"] = "Politiche di privacy del sito"; $a->strings["privacy policy"] = "politiche di privacy"; +$a->strings["This entry was edited"] = "Questa voce è stata modificata"; +$a->strings["I will attend"] = "Parteciperò"; +$a->strings["I will not attend"] = "Non parteciperò"; +$a->strings["I might attend"] = "Forse parteciperò"; +$a->strings["ignore thread"] = "ignora la discussione"; +$a->strings["unignore thread"] = "non ignorare la discussione"; +$a->strings["toggle ignore status"] = "inverti stato \"Ignora\""; +$a->strings["Categories:"] = "Categorie:"; +$a->strings["Filed under:"] = "Archiviato in:"; +$a->strings["via"] = "via"; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Il messaggio di errore è\n[pre]%s[/pre]"; +$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; +$a->strings["Errors encountered performing database changes."] = "Riscontrati errori applicando le modifiche al database."; +$a->strings["Logged out."] = "Uscita effettuata."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."; +$a->strings["The error message was:"] = "Il messaggio riportato era:"; +$a->strings["Add New Contact"] = "Aggiungi nuovo contatto"; +$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d invito disponibile", + 1 => "%d inviti disponibili", +); +$a->strings["Find People"] = "Trova persone"; +$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; +$a->strings["Similar Interests"] = "Interessi simili"; +$a->strings["Random Profile"] = "Profilo causale"; +$a->strings["Invite Friends"] = "Invita amici"; +$a->strings["Networks"] = "Reti"; +$a->strings["All Networks"] = "Tutte le Reti"; +$a->strings["Saved Folders"] = "Cartelle Salvate"; +$a->strings["Everything"] = "Tutto"; +$a->strings["Categories"] = "Categorie"; +$a->strings["%d contact in common"] = array( + 0 => "%d contatto in comune", + 1 => "%d contatti in comune", +); $a->strings["General Features"] = "Funzionalità generali"; $a->strings["Multiple Profiles"] = "Profili multipli"; $a->strings["Ability to create multiple profiles"] = "Possibilità di creare profili multipli"; +$a->strings["Photo Location"] = "Località Foto"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "I metadati delle foto vengono rimossi. Questa opzione estrae la località (se presenta) prima di rimuovere i metadati e la collega a una mappa."; $a->strings["Post Composition Features"] = "Funzionalità di composizione dei post"; $a->strings["Richtext Editor"] = "Editor visuale"; $a->strings["Enable richtext editor"] = "Abilita l'editor visuale"; @@ -1419,6 +1460,8 @@ $a->strings["Add/remove mention when a fourm page is selected/deselected in ACL $a->strings["Network Sidebar Widgets"] = "Widget della barra laterale nella pagina Rete"; $a->strings["Search by Date"] = "Cerca per data"; $a->strings["Ability to select posts by date ranges"] = "Permette di filtrare i post per data"; +$a->strings["List Forums"] = "Elenco forum"; +$a->strings["Enable widget to display the forums your are connected with"] = "Abilita il widget che mostra i forum ai quali sei connesso"; $a->strings["Group Filter"] = "Filtra gruppi"; $a->strings["Enable widget to display Network posts only from selected group"] = "Abilita il widget per filtrare i post solo per il gruppo selezionato"; $a->strings["Network Filter"] = "Filtro reti"; @@ -1440,7 +1483,6 @@ $a->strings["Tagging"] = "Aggiunta tag"; $a->strings["Ability to tag existing posts"] = "Permette di aggiungere tag ai post già esistenti"; $a->strings["Post Categories"] = "Cateorie post"; $a->strings["Add categories to your posts"] = "Aggiungi categorie ai tuoi post"; -$a->strings["Saved Folders"] = "Cartelle Salvate"; $a->strings["Ability to file posts under folders"] = "Permette di archiviare i post in cartelle"; $a->strings["Dislike Posts"] = "Non mi piace"; $a->strings["Ability to dislike posts/comments"] = "Permetti di inviare \"non mi piace\" ai messaggi"; @@ -1448,13 +1490,153 @@ $a->strings["Star Posts"] = "Post preferiti"; $a->strings["Ability to mark special posts with a star indicator"] = "Permette di segnare i post preferiti con una stella"; $a->strings["Mute Post Notifications"] = "Silenzia le notifiche di nuovi post"; $a->strings["Ability to mute notifications for a thread"] = "Permette di silenziare le notifiche di nuovi post in una discussione"; -$a->strings["Logged out."] = "Uscita effettuata."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."; -$a->strings["The error message was:"] = "Il messaggio riportato era:"; -$a->strings["Starts:"] = "Inizia:"; -$a->strings["Finishes:"] = "Finisce:"; +$a->strings["Advanced Profile Settings"] = "Impostazioni Avanzate Profilo"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Mostra ai visitatori i forum nella pagina Profilo Avanzato"; +$a->strings["Connect URL missing."] = "URL di connessione mancante."; +$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili."; +$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni."; +$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore"; +$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."; +$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."; +$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto."; +$a->strings["following"] = "segue"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."; +$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti"; +$a->strings["Everybody"] = "Tutti"; +$a->strings["edit"] = "modifica"; +$a->strings["Edit groups"] = "Modifica gruppi"; +$a->strings["Edit group"] = "Modifica gruppo"; +$a->strings["Create a new group"] = "Crea un nuovo gruppo"; +$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; +$a->strings["Miscellaneous"] = "Varie"; +$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG o MM-GG"; +$a->strings["never"] = "mai"; +$a->strings["less than a second ago"] = "meno di un secondo fa"; +$a->strings["year"] = "anno"; +$a->strings["years"] = "anni"; +$a->strings["months"] = "mesi"; +$a->strings["weeks"] = "settimane"; +$a->strings["days"] = "giorni"; +$a->strings["hour"] = "ora"; +$a->strings["hours"] = "ore"; +$a->strings["minute"] = "minuto"; +$a->strings["minutes"] = "minuti"; +$a->strings["second"] = "secondo"; +$a->strings["seconds"] = "secondi"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; +$a->strings["%s's birthday"] = "Compleanno di %s"; +$a->strings["Happy Birthday %s"] = "Buon compleanno %s"; +$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile."; +$a->strings["Edit profile"] = "Modifica il profilo"; +$a->strings["Atom feed"] = "Feed Atom"; +$a->strings["Message"] = "Messaggio"; +$a->strings["Profiles"] = "Profili"; +$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; +$a->strings["g A l F d"] = "g A l d F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[oggi]"; +$a->strings["Birthday Reminders"] = "Promemoria compleanni"; +$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; +$a->strings["[No description]"] = "[Nessuna descrizione]"; +$a->strings["Event Reminders"] = "Promemoria"; +$a->strings["Events this week:"] = "Eventi di questa settimana:"; +$a->strings["j F, Y"] = "j F Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Compleanno:"; +$a->strings["Age:"] = "Età:"; +$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; +$a->strings["Religion:"] = "Religione:"; +$a->strings["Hobbies/Interests:"] = "Hobby/Interessi:"; +$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:"; +$a->strings["Musical interests:"] = "Interessi musicali:"; +$a->strings["Books, literature:"] = "Libri, letteratura:"; +$a->strings["Television:"] = "Televisione:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:"; +$a->strings["Love/Romance:"] = "Amore:"; +$a->strings["Work/employment:"] = "Lavoro:"; +$a->strings["School/education:"] = "Scuola:"; +$a->strings["Forums:"] = "Forum:"; +$a->strings["Videos"] = "Video"; +$a->strings["Events and Calendar"] = "Eventi e calendario"; +$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo"; +$a->strings["Post to Email"] = "Invia a email"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connettore disabilitato, dato che \"%s\" è abilitato."; +$a->strings["Visible to everybody"] = "Visibile a tutti"; +$a->strings["show"] = "mostra"; +$a->strings["don't show"] = "non mostrare"; $a->strings["[no subject]"] = "[nessun oggetto]"; -$a->strings[" on Last.fm"] = "su Last.fm"; +$a->strings["stopped following"] = "tolto dai seguiti"; +$a->strings["View Status"] = "Visualizza stato"; +$a->strings["View Photos"] = "Visualizza foto"; +$a->strings["Network Posts"] = "Post della Rete"; +$a->strings["Edit Contact"] = "Modifica contatto"; +$a->strings["Drop Contact"] = "Rimuovi contatto"; +$a->strings["Send PM"] = "Invia messaggio privato"; +$a->strings["Poke"] = "Stuzzica"; +$a->strings["Welcome "] = "Ciao"; +$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo."; +$a->strings["Welcome back "] = "Ciao "; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla."; +$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s partecipa a %3\$s di %2\$s"; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s non partecipa a %3\$s di %2\$s"; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s forse partecipa a %3\$s di %2\$s"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$s"; +$a->strings["post/item"] = "post/elemento"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito"; +$a->strings["remove"] = "rimuovi"; +$a->strings["Delete Selected Items"] = "Cancella elementi selezionati"; +$a->strings["Follow Thread"] = "Segui la discussione"; +$a->strings["%s likes this."] = "Piace a %s."; +$a->strings["%s doesn't like this."] = "Non piace a %s."; +$a->strings["%s attends."] = "%s partecipa."; +$a->strings["%s doesn't attend."] = "%s non partecipa."; +$a->strings["%s attends maybe."] = "%s forse partecipa."; +$a->strings["and"] = "e"; +$a->strings[", and %d other people"] = "e altre %d persone"; +$a->strings["%2\$d people like this"] = "Piace a %2\$d persone."; +$a->strings["%s like this."] = "a %s piace."; +$a->strings["%2\$d people don't like this"] = "Non piace a %2\$d persone."; +$a->strings["%s don't like this."] = "a %s non piace."; +$a->strings["%2\$d people attend"] = "%2\$d persone partecipano"; +$a->strings["%s attend."] = "%s partecipa."; +$a->strings["%2\$d people don't attend"] = "%2\$d persone non partecipano"; +$a->strings["%s don't attend."] = "%s non partecipa."; +$a->strings["%2\$d people anttend maybe"] = "%2\$d persone forse partecipano"; +$a->strings["%s anttend maybe."] = "%s forse partecipano."; +$a->strings["Visible to everybody"] = "Visibile a tutti"; +$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:"; +$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Where are you right now?"] = "Dove sei ora?"; +$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?"; +$a->strings["permissions"] = "permessi"; +$a->strings["Post to Groups"] = "Invia ai Gruppi"; +$a->strings["Post to Contacts"] = "Invia ai Contatti"; +$a->strings["Private post"] = "Post privato"; +$a->strings["View all"] = "Mostra tutto"; +$a->strings["Like"] = array( + 0 => "Mi piace", + 1 => "Mi piace", +); +$a->strings["Dislike"] = array( + 0 => "Non mi piace", + 1 => "Non mi piace", +); +$a->strings["Not Attending"] = array( + 0 => "Non partecipa", + 1 => "Non partecipano", +); +$a->strings["Undecided"] = array( + 0 => "Indeciso", + 1 => "Indecisi", +); +$a->strings["Forums"] = "Forum"; +$a->strings["External link to forum"] = "Link esterno al forum"; +$a->strings["view full size"] = "vedi a schermo intero"; $a->strings["newer"] = "nuovi"; $a->strings["older"] = "vecchi"; $a->strings["prev"] = "prec"; @@ -1468,9 +1650,9 @@ $a->strings["%d Contact"] = array( 0 => "%d contatto", 1 => "%d contatti", ); +$a->strings["View Contacts"] = "Visualizza i contatti"; $a->strings["Full Text"] = "Testo Completo"; $a->strings["Tags"] = "Tags:"; -$a->strings["Forums"] = "Forum"; $a->strings["poke"] = "stuzzica"; $a->strings["poked"] = "ha stuzzicato"; $a->strings["ping"] = "invia un ping"; @@ -1503,223 +1685,55 @@ $a->strings["frustrated"] = "frustato"; $a->strings["motivated"] = "motivato"; $a->strings["relaxed"] = "rilassato"; $a->strings["surprised"] = "sorpreso"; -$a->strings["Monday"] = "Lunedì"; -$a->strings["Tuesday"] = "Martedì"; -$a->strings["Wednesday"] = "Mercoledì"; -$a->strings["Thursday"] = "Giovedì"; -$a->strings["Friday"] = "Venerdì"; -$a->strings["Saturday"] = "Sabato"; -$a->strings["Sunday"] = "Domenica"; -$a->strings["January"] = "Gennaio"; -$a->strings["February"] = "Febbraio"; -$a->strings["March"] = "Marzo"; -$a->strings["April"] = "Aprile"; -$a->strings["May"] = "Maggio"; -$a->strings["June"] = "Giugno"; -$a->strings["July"] = "Luglio"; -$a->strings["August"] = "Agosto"; -$a->strings["September"] = "Settembre"; -$a->strings["October"] = "Ottobre"; -$a->strings["November"] = "Novembre"; -$a->strings["December"] = "Dicembre"; $a->strings["bytes"] = "bytes"; $a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; $a->strings["View on separate page"] = "Vedi in una pagina separata"; $a->strings["view on separate page"] = "vedi in una pagina separata"; -$a->strings["Select an alternate language"] = "Seleziona una diversa lingua"; $a->strings["activity"] = "attività"; $a->strings["post"] = "messaggio"; $a->strings["Item filed"] = "Messaggio salvato"; -$a->strings["User not found."] = "Utente non trovato."; -$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato"; -$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato"; -$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Limite mensile di %d messaggi raggiunto. Il messaggio è stato rifiutato"; -$a->strings["There is no status with this id."] = "Non c'è nessuno status con questo id."; -$a->strings["There is no conversation with this id."] = "Non c'è nessuna conversazione con questo id"; -$a->strings["Invalid item."] = "Elemento non valido."; -$a->strings["Invalid action. "] = "Azione non valida."; -$a->strings["DB error"] = "Errore database"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -$a->strings["%s's birthday"] = "Compleanno di %s"; -$a->strings["Happy Birthday %s"] = "Buon compleanno %s"; -$a->strings["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?"; -$a->strings["Archives"] = "Archivi"; +$a->strings["Image/photo"] = "Immagine/foto"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["%s wrote the following post"] = "%s ha scritto il seguente messaggio"; +$a->strings["$1 wrote:"] = "$1 ha scritto:"; +$a->strings["Encrypted content"] = "Contenuto criptato"; $a->strings["(no subject)"] = "(nessun oggetto)"; $a->strings["noreply"] = "nessuna risposta"; -$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; -$a->strings["Attachments:"] = "Allegati:"; -$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile."; -$a->strings["Edit profile"] = "Modifica il profilo"; -$a->strings["Message"] = "Messaggio"; -$a->strings["Profiles"] = "Profili"; -$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; -$a->strings["Network:"] = "Rete:"; -$a->strings["g A l F d"] = "g A l d F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[oggi]"; -$a->strings["Birthday Reminders"] = "Promemoria compleanni"; -$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; -$a->strings["[No description]"] = "[Nessuna descrizione]"; -$a->strings["Event Reminders"] = "Promemoria"; -$a->strings["Events this week:"] = "Eventi di questa settimana:"; -$a->strings["j F, Y"] = "j F Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Compleanno:"; -$a->strings["Age:"] = "Età:"; -$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; -$a->strings["Religion:"] = "Religione:"; -$a->strings["Hobbies/Interests:"] = "Hobby/Interessi:"; -$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:"; -$a->strings["Musical interests:"] = "Interessi musicali:"; -$a->strings["Books, literature:"] = "Libri, letteratura:"; -$a->strings["Television:"] = "Televisione:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:"; -$a->strings["Love/Romance:"] = "Amore:"; -$a->strings["Work/employment:"] = "Lavoro:"; -$a->strings["School/education:"] = "Scuola:"; -$a->strings["Status"] = "Stato"; -$a->strings["Status Messages and Posts"] = "Messaggi di stato e post"; -$a->strings["Profile Details"] = "Dettagli del profilo"; -$a->strings["Videos"] = "Video"; -$a->strings["Events and Calendar"] = "Eventi e calendario"; -$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo"; -$a->strings["Connect URL missing."] = "URL di connessione mancante."; -$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili."; -$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni."; -$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore"; -$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."; -$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."; -$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto."; -$a->strings["following"] = "segue"; -$a->strings["Welcome "] = "Ciao"; -$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo."; -$a->strings["Welcome back "] = "Ciao "; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla."; -$a->strings["Male"] = "Maschio"; -$a->strings["Female"] = "Femmina"; -$a->strings["Currently Male"] = "Al momento maschio"; -$a->strings["Currently Female"] = "Al momento femmina"; -$a->strings["Mostly Male"] = "Prevalentemente maschio"; -$a->strings["Mostly Female"] = "Prevalentemente femmina"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Intersex"; -$a->strings["Transsexual"] = "Transessuale"; -$a->strings["Hermaphrodite"] = "Ermafrodito"; -$a->strings["Neuter"] = "Neutro"; -$a->strings["Non-specific"] = "Non specificato"; -$a->strings["Other"] = "Altro"; -$a->strings["Undecided"] = "Indeciso"; -$a->strings["Males"] = "Maschi"; -$a->strings["Females"] = "Femmine"; -$a->strings["Gay"] = "Gay"; -$a->strings["Lesbian"] = "Lesbica"; -$a->strings["No Preference"] = "Nessuna preferenza"; -$a->strings["Bisexual"] = "Bisessuale"; -$a->strings["Autosexual"] = "Autosessuale"; -$a->strings["Abstinent"] = "Astinente"; -$a->strings["Virgin"] = "Vergine"; -$a->strings["Deviant"] = "Deviato"; -$a->strings["Fetish"] = "Fetish"; -$a->strings["Oodles"] = "Un sacco"; -$a->strings["Nonsexual"] = "Asessuato"; -$a->strings["Single"] = "Single"; -$a->strings["Lonely"] = "Solitario"; -$a->strings["Available"] = "Disponibile"; -$a->strings["Unavailable"] = "Non disponibile"; -$a->strings["Has crush"] = "è cotto/a"; -$a->strings["Infatuated"] = "infatuato/a"; -$a->strings["Dating"] = "Disponibile a un incontro"; -$a->strings["Unfaithful"] = "Infedele"; -$a->strings["Sex Addict"] = "Sesso-dipendente"; -$a->strings["Friends"] = "Amici"; -$a->strings["Friends/Benefits"] = "Amici con benefici"; -$a->strings["Casual"] = "Casual"; -$a->strings["Engaged"] = "Impegnato"; -$a->strings["Married"] = "Sposato"; -$a->strings["Imaginarily married"] = "immaginariamente sposato/a"; -$a->strings["Partners"] = "Partners"; -$a->strings["Cohabiting"] = "Coinquilino"; -$a->strings["Common law"] = "diritto comune"; -$a->strings["Happy"] = "Felice"; -$a->strings["Not looking"] = "Non guarda"; -$a->strings["Swinger"] = "Scambista"; -$a->strings["Betrayed"] = "Tradito"; -$a->strings["Separated"] = "Separato"; -$a->strings["Unstable"] = "Instabile"; -$a->strings["Divorced"] = "Divorziato"; -$a->strings["Imaginarily divorced"] = "immaginariamente divorziato/a"; -$a->strings["Widowed"] = "Vedovo"; -$a->strings["Uncertain"] = "Incerto"; -$a->strings["It's complicated"] = "E' complicato"; -$a->strings["Don't care"] = "Non interessa"; -$a->strings["Ask me"] = "Chiedimelo"; -$a->strings["Error decoding account file"] = "Errore decodificando il file account"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; -$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; -$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; -$a->strings["User creation error"] = "Errore creando l'utente"; -$a->strings["User profile creation error"] = "Errore creando il profile dell'utente"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contatto non importato", - 1 => "%d contatti non importati", -); -$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; +$a->strings["Block immediately"] = "Blocca immediatamente"; +$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; +$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare"; +$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo"; +$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia"; +$a->strings["Weekly"] = "Settimanalmente"; +$a->strings["Monthly"] = "Mensilmente"; +$a->strings["OStatus"] = "Ostatus"; +$a->strings["RSS/Atom"] = "RSS / Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Connettore Diaspora"; +$a->strings["GNU Social"] = "GNU Social"; +$a->strings["App.net"] = "App.net"; +$a->strings["Redmatrix"] = "Redmatrix"; +$a->strings[" on Last.fm"] = "su Last.fm"; +$a->strings["Starts:"] = "Inizia:"; +$a->strings["Finishes:"] = "Finisce:"; $a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; $a->strings["This action exceeds the limits set by your subscription plan."] = "Questa azione eccede i limiti del tuo piano di sottoscrizione."; $a->strings["This action is not available under your subscription plan."] = "Questa azione non è disponibile nel tuo piano di sottoscrizione."; -$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$s"; -$a->strings["post/item"] = "post/elemento"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito"; -$a->strings["remove"] = "rimuovi"; -$a->strings["Delete Selected Items"] = "Cancella elementi selezionati"; -$a->strings["Follow Thread"] = "Segui la discussione"; -$a->strings["View Status"] = "Visualizza stato"; -$a->strings["View Profile"] = "Visualizza profilo"; -$a->strings["View Photos"] = "Visualizza foto"; -$a->strings["Network Posts"] = "Post della Rete"; -$a->strings["Edit Contact"] = "Modifica contatti"; -$a->strings["Send PM"] = "Invia messaggio privato"; -$a->strings["Poke"] = "Stuzzica"; -$a->strings["%s likes this."] = "Piace a %s."; -$a->strings["%s doesn't like this."] = "Non piace a %s."; -$a->strings["%2\$d people like this"] = "Piace a %2\$d persone."; -$a->strings["%2\$d people don't like this"] = "Non piace a %2\$d persone."; -$a->strings["and"] = "e"; -$a->strings[", and %d other people"] = "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 everybody"] = "Visibile a tutti"; -$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:"; -$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Where are you right now?"] = "Dove sei ora?"; -$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?"; -$a->strings["permissions"] = "permessi"; -$a->strings["Post to Groups"] = "Invia ai Gruppi"; -$a->strings["Post to Contacts"] = "Invia ai Contatti"; -$a->strings["Private post"] = "Post privato"; -$a->strings["Add New Contact"] = "Aggiungi nuovo contatto"; -$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", -); -$a->strings["Find People"] = "Trova persone"; -$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse"; -$a->strings["Connect/Follow"] = "Connetti/segui"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; -$a->strings["Random Profile"] = "Profilo causale"; -$a->strings["Networks"] = "Reti"; -$a->strings["All Networks"] = "Tutte le Reti"; -$a->strings["Everything"] = "Tutto"; -$a->strings["Categories"] = "Categorie"; $a->strings["End this session"] = "Finisci questa sessione"; +$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni"; +$a->strings["Your profile page"] = "Pagina del tuo profilo"; +$a->strings["Your photos"] = "Le tue foto"; $a->strings["Your videos"] = "I tuoi video"; +$a->strings["Your events"] = "I tuoi eventi"; +$a->strings["Personal notes"] = "Note personali"; $a->strings["Your personal notes"] = "Le tue note personali"; $a->strings["Sign in"] = "Entra"; $a->strings["Home Page"] = "Home Page"; @@ -1751,30 +1765,99 @@ $a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e con $a->strings["Site setup and configuration"] = "Configurazione del sito"; $a->strings["Navigation"] = "Navigazione"; $a->strings["Site map"] = "Mappa del sito"; -$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; -$a->strings["Block immediately"] = "Blocca immediatamente"; -$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; -$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare"; -$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo"; -$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia"; -$a->strings["Weekly"] = "Settimanalmente"; -$a->strings["Monthly"] = "Mensilmente"; -$a->strings["OStatus"] = "Ostatus"; -$a->strings["RSS/Atom"] = "RSS / Atom"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Connettore Diaspora"; -$a->strings["Statusnet"] = "Statusnet"; -$a->strings["App.net"] = "App.net"; -$a->strings["Redmatrix"] = "Redmatrix"; +$a->strings["User not found."] = "Utente non trovato."; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato"; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato"; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Limite mensile di %d messaggi raggiunto. Il messaggio è stato rifiutato"; +$a->strings["There is no status with this id."] = "Non c'è nessuno status con questo id."; +$a->strings["There is no conversation with this id."] = "Non c'è nessuna conversazione con questo id"; +$a->strings["Invalid item."] = "Elemento non valido."; +$a->strings["Invalid action. "] = "Azione non valida."; +$a->strings["DB error"] = "Errore database"; +$a->strings["An invitation is required."] = "E' richiesto un invito."; +$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato."; +$a->strings["Invalid OpenID url"] = "Url OpenID non valido"; +$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; +$a->strings["Please use a shorter name."] = "Usa un nome più corto."; +$a->strings["Name too short."] = "Il nome è troppo corto."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome)."; +$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito."; +$a->strings["Not a valid email address."] = "L'indirizzo email non è valido."; +$a->strings["Cannot use that email."] = "Non puoi usare quell'email."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Il tuo nome utente può contenere solo \"a-z\", \"0-9\", e \"_\"."; +$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."; +$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora."; +$a->strings["default"] = "default"; +$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora."; +$a->strings["Friends"] = "Amici"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nGentile %1\$s,\nGrazie per esserti registrato su %2\$s. Il tuo account è stato creato."; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3\$s\n Nome utente: %1\$s\n Password: %5\$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2\$s"; +$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; +$a->strings["Attachments:"] = "Allegati:"; +$a->strings["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?"; +$a->strings["Archives"] = "Archivi"; +$a->strings["Male"] = "Maschio"; +$a->strings["Female"] = "Femmina"; +$a->strings["Currently Male"] = "Al momento maschio"; +$a->strings["Currently Female"] = "Al momento femmina"; +$a->strings["Mostly Male"] = "Prevalentemente maschio"; +$a->strings["Mostly Female"] = "Prevalentemente femmina"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Intersex"; +$a->strings["Transsexual"] = "Transessuale"; +$a->strings["Hermaphrodite"] = "Ermafrodito"; +$a->strings["Neuter"] = "Neutro"; +$a->strings["Non-specific"] = "Non specificato"; +$a->strings["Other"] = "Altro"; +$a->strings["Males"] = "Maschi"; +$a->strings["Females"] = "Femmine"; +$a->strings["Gay"] = "Gay"; +$a->strings["Lesbian"] = "Lesbica"; +$a->strings["No Preference"] = "Nessuna preferenza"; +$a->strings["Bisexual"] = "Bisessuale"; +$a->strings["Autosexual"] = "Autosessuale"; +$a->strings["Abstinent"] = "Astinente"; +$a->strings["Virgin"] = "Vergine"; +$a->strings["Deviant"] = "Deviato"; +$a->strings["Fetish"] = "Fetish"; +$a->strings["Oodles"] = "Un sacco"; +$a->strings["Nonsexual"] = "Asessuato"; +$a->strings["Single"] = "Single"; +$a->strings["Lonely"] = "Solitario"; +$a->strings["Available"] = "Disponibile"; +$a->strings["Unavailable"] = "Non disponibile"; +$a->strings["Has crush"] = "è cotto/a"; +$a->strings["Infatuated"] = "infatuato/a"; +$a->strings["Dating"] = "Disponibile a un incontro"; +$a->strings["Unfaithful"] = "Infedele"; +$a->strings["Sex Addict"] = "Sesso-dipendente"; +$a->strings["Friends/Benefits"] = "Amici con benefici"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Impegnato"; +$a->strings["Married"] = "Sposato"; +$a->strings["Imaginarily married"] = "immaginariamente sposato/a"; +$a->strings["Partners"] = "Partners"; +$a->strings["Cohabiting"] = "Coinquilino"; +$a->strings["Common law"] = "diritto comune"; +$a->strings["Happy"] = "Felice"; +$a->strings["Not looking"] = "Non guarda"; +$a->strings["Swinger"] = "Scambista"; +$a->strings["Betrayed"] = "Tradito"; +$a->strings["Separated"] = "Separato"; +$a->strings["Unstable"] = "Instabile"; +$a->strings["Divorced"] = "Divorziato"; +$a->strings["Imaginarily divorced"] = "immaginariamente divorziato/a"; +$a->strings["Widowed"] = "Vedovo"; +$a->strings["Uncertain"] = "Incerto"; +$a->strings["It's complicated"] = "E' complicato"; +$a->strings["Don't care"] = "Non interessa"; +$a->strings["Ask me"] = "Chiedimelo"; $a->strings["Friendica Notification"] = "Notifica Friendica"; $a->strings["Thank You,"] = "Grazie,"; $a->strings["%s Administrator"] = "Amministratore %s"; +$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, amministratore di %2\$s"; $a->strings["%s "] = "%s "; $a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s"; $a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s ti ha inviato un nuovo messaggio privato su %2\$s."; @@ -1829,64 +1912,69 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "H $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Hai ricevuto una [url=%1\$s]richiesta di registrazione[/url] da %2\$s."; $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nome completo: %1\$s\nIndirizzo del sito: %2\$s\nNome utente: %3\$s (%4\$s)"; $a->strings["Please visit %s to approve or reject the request."] = "Visita %s per approvare o rifiutare la richiesta."; -$a->strings["An invitation is required."] = "E' richiesto un invito."; -$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato."; -$a->strings["Invalid OpenID url"] = "Url OpenID non valido"; -$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; -$a->strings["Please use a shorter name."] = "Usa un nome più corto."; -$a->strings["Name too short."] = "Il nome è troppo corto."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome)."; -$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito."; -$a->strings["Not a valid email address."] = "L'indirizzo email non è valido."; -$a->strings["Cannot use that email."] = "Non puoi usare quell'email."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Il tuo nome utente può contenere solo \"a-z\", \"0-9\", e \"_\"."; -$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."; -$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora."; -$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nGentile %1\$s,\nGrazie per esserti registrato su %2\$s. Il tuo account è stato creato."; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3\$s\n Nome utente: %1\$s\n Password: %5\$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2\$s"; -$a->strings["Post to Email"] = "Invia a email"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connettore disabilitato, dato che \"%s\" è abilitato."; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["Image/photo"] = "Immagine/foto"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["%s wrote the following post"] = "%s ha scritto il seguente messaggio"; -$a->strings["$1 wrote:"] = "$1 ha scritto:"; -$a->strings["Encrypted content"] = "Contenuto criptato"; $a->strings["Embedded content"] = "Contenuto incorporato"; $a->strings["Embedding disabled"] = "Embed disabilitato"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."; -$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti"; -$a->strings["Everybody"] = "Tutti"; -$a->strings["edit"] = "modifica"; -$a->strings["Edit group"] = "Modifica gruppo"; -$a->strings["Create a new group"] = "Crea un nuovo gruppo"; -$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; -$a->strings["stopped following"] = "tolto dai seguiti"; -$a->strings["Drop Contact"] = "Rimuovi contatto"; -$a->strings["Miscellaneous"] = "Varie"; -$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG o MM-GG"; -$a->strings["never"] = "mai"; -$a->strings["less than a second ago"] = "meno di un secondo fa"; -$a->strings["year"] = "anno"; -$a->strings["years"] = "anni"; -$a->strings["month"] = "mese"; -$a->strings["months"] = "mesi"; -$a->strings["week"] = "settimana"; -$a->strings["weeks"] = "settimane"; -$a->strings["day"] = "giorno"; -$a->strings["days"] = "giorni"; -$a->strings["hour"] = "ora"; -$a->strings["hours"] = "ore"; -$a->strings["minute"] = "minuto"; -$a->strings["minutes"] = "minuti"; -$a->strings["second"] = "secondo"; -$a->strings["seconds"] = "secondi"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; -$a->strings["view full size"] = "vedi a schermo intero"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Il messaggio di errore è\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; -$a->strings["Errors encountered performing database changes."] = "Riscontrati errori applicando le modifiche al database."; +$a->strings["Error decoding account file"] = "Errore decodificando il file account"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; +$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; +$a->strings["User creation error"] = "Errore creando l'utente"; +$a->strings["User profile creation error"] = "Errore creando il profile dell'utente"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contatto non importato", + 1 => "%d contatti non importati", +); +$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; +$a->strings["toggle mobile"] = "commuta tema mobile"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)"; +$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti"; +$a->strings["Set theme width"] = "Imposta la larghezza del tema"; +$a->strings["Color scheme"] = "Schema colori"; +$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti"; +$a->strings["Set colour scheme"] = "Imposta schema colori"; +$a->strings["Alignment"] = "Allineamento"; +$a->strings["Left"] = "Sinistra"; +$a->strings["Center"] = "Centrato"; +$a->strings["Posts font size"] = "Dimensione caratteri post"; +$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo"; +$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale"; +$a->strings["Set color scheme"] = "Imposta lo schema dei colori"; +$a->strings["Set zoomfactor for Earth Layer"] = "Livello di zoom per Earth Layer"; +$a->strings["Set longitude (X) for Earth Layers"] = "Longitudine (X) per Earth Layers"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Latitudine (Y) per Earth Layers"; +$a->strings["Community Pages"] = "Pagine Comunitarie"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Community Profiles"] = "Profili Comunità"; +$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; +$a->strings["Connect Services"] = "Servizi di conessione"; +$a->strings["Find Friends"] = "Trova Amici"; +$a->strings["Last users"] = "Ultimi utenti"; +$a->strings["Last photos"] = "Ultime foto"; +$a->strings["Last likes"] = "Ultimi \"mi piace\""; +$a->strings["Your contacts"] = "I tuoi contatti"; +$a->strings["Your personal photos"] = "Le tue foto personali"; +$a->strings["Local Directory"] = "Elenco Locale"; +$a->strings["Set zoomfactor for Earth Layers"] = "Livello di zoom per Earth Layers"; +$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra"; +$a->strings["Midnight"] = "Mezzanotte"; +$a->strings["Zenburn"] = "Zenburn"; +$a->strings["Bootstrap"] = "Bootstrap"; +$a->strings["Shades of Pink"] = "Sfumature di Rosa"; +$a->strings["Lime and Orange"] = "Lime e Arancia"; +$a->strings["GeoCities Retro"] = "GeoCities Retro"; +$a->strings["Background Image"] = "Immagine di sfondo"; +$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "L'URL a un'immagine (p.e. dal tuo album foto) che viene usata come immagine di sfondo."; +$a->strings["Background Color"] = "Colore di sfondo"; +$a->strings["HEX value for the background color. Don't include the #"] = "Valore esadecimale del colore di sfondo. Non includere il #"; +$a->strings["font size"] = "dimensione font"; +$a->strings["base font size for your interface"] = "dimensione di base dei font per la tua interfaccia"; +$a->strings["Comma separated list of helper forums"] = "Lista separata da virgola di forum di aiuto"; +$a->strings["Set style"] = "Imposta stile"; +$a->strings["Quick Start"] = "Quick Start"; +$a->strings["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "easterbunny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "slackr"; +$a->strings["Variations"] = "Varianti"; From d02bd08bde6d0eea2fcc5e8df0854040b97d4d56 Mon Sep 17 00:00:00 2001 From: gerhard6380 Date: Mon, 14 Dec 2015 22:53:12 +0100 Subject: [PATCH 37/52] Update api.md --- doc/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api.md b/doc/api.md index aa02aac6f5..391d6c9eb9 100644 --- a/doc/api.md +++ b/doc/api.md @@ -347,7 +347,7 @@ Friendica doesn't allow showing followers of other users. Friendica doesn't allow showing friends of other users. -## Implemented API calls (not compatible with other API’s) +## Implemented API calls (not compatible with other APIs) ### friendica/group_show Return all or a specified group of the user with the containing contacts as array. From 2e0ebcd1c84e53b10a716984fb61cc5d23daa277 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 14 Dec 2015 23:02:49 +0100 Subject: [PATCH 38/52] The "about" in feed has to be rendered as HTML --- include/ostatus.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/ostatus.php b/include/ostatus.php index d2d25b76ff..bcaef4f439 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -2,6 +2,7 @@ require_once("include/Contact.php"); require_once("include/threads.php"); require_once("include/html2bbcode.php"); +require_once("include/bbcode.php"); require_once("include/items.php"); require_once("mod/share.php"); require_once("include/enotify.php"); @@ -141,7 +142,7 @@ function ostatus_fetchauthor($xpath, $context, $importer, &$contact, $onlyfetch) $value = $xpath->evaluate('atom:author/poco:note/text()', $context)->item(0)->nodeValue; if ($value != "") - $contact["about"] = $value; + $contact["about"] = html2bbcode($value); $value = $xpath->evaluate('atom:author/poco:address/poco:formatted/text()', $context)->item(0)->nodeValue; if ($value != "") @@ -1288,7 +1289,7 @@ function ostatus_add_author($doc, $owner, $profile) { xml_add_element($doc, $author, "poco:preferredUsername", $owner["nick"]); xml_add_element($doc, $author, "poco:displayName", $profile["name"]); - xml_add_element($doc, $author, "poco:note", $profile["about"]); + xml_add_element($doc, $author, "poco:note", bbcode($profile["about"])); if (trim($owner["location"]) != "") { $element = $doc->createElement("poco:address"); From d077dbbcdede01887f58fd2754249594d722b089 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 14 Dec 2015 23:53:35 +0100 Subject: [PATCH 39/52] Bugfix: The bbcode conversion of the profile was inconsistent --- include/Contact.php | 12 ------------ include/identity.php | 15 ++++++++++++--- mod/display.php | 17 +++++++---------- 3 files changed, 19 insertions(+), 25 deletions(-) diff --git a/include/Contact.php b/include/Contact.php index 6673e6911d..340b3ec6fa 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -192,9 +192,6 @@ function unmark_for_death($contact) { }} function get_contact_details_by_url($url, $uid = -1) { - require_once("mod/proxy.php"); - require_once("include/bbcode.php"); - if ($uid == -1) $uid = local_user(); @@ -268,15 +265,6 @@ function get_contact_details_by_url($url, $uid = -1) { } else $profile["cid"] = 0; - if (isset($profile["photo"])) - $profile["photo"] = proxy_url($profile["photo"], false, PROXY_SIZE_SMALL); - - if (isset($profile["location"])) - $profile["location"] = bbcode($profile["location"]); - - if (isset($profile["about"])) - $profile["about"] = bbcode($profile["about"]); - if (($profile["cid"] == 0) AND ($profile["network"] == NETWORK_DIASPORA)) { $profile["location"] = ""; $profile["about"] = ""; diff --git a/include/identity.php b/include/identity.php index b5791ba1e9..d87d891a5c 100644 --- a/include/identity.php +++ b/include/identity.php @@ -4,7 +4,8 @@ */ require_once('include/forums.php'); - +require_once('include/bbcode.php'); +require_once("mod/proxy.php"); /** * @@ -108,7 +109,6 @@ if(! function_exists('profile_load')) { else $a->page['aside'] .= profile_sidebar($a->profile, $block); - /*if(! $block) $a->page['aside'] .= contact_block();*/ @@ -199,7 +199,7 @@ if(! function_exists('profile_sidebar')) { if (($profile['network'] != "") AND ($profile['network'] != NETWORK_DFRN)) { $profile['network_name'] = format_network_name($profile['network'],$profile['url']); - } else + } else $profile['network_name'] = ""; call_hooks('profile_sidebar_enter', $profile); @@ -360,6 +360,15 @@ if(! function_exists('profile_sidebar')) { $p[$k] = $v; } + if (isset($p["about"])) + $p["about"] = bbcode($p["about"]); + + if (isset($p["location"])) + $p["location"] = bbcode($p["location"]); + + if (isset($p["photo"])) + $p["photo"] = proxy_url($p["photo"], false, PROXY_SIZE_SMALL); + if($a->theme['template_engine'] === 'internal') $location = template_escape($location); diff --git a/mod/display.php b/mod/display.php index 6b345e6302..6d1f417e71 100644 --- a/mod/display.php +++ b/mod/display.php @@ -89,15 +89,13 @@ function display_init(&$a) { } function display_fetchauthor($a, $item) { - require_once("mod/proxy.php"); - require_once("include/bbcode.php"); $profiledata = array(); $profiledata["uid"] = -1; $profiledata["nickname"] = $item["author-name"]; $profiledata["name"] = $item["author-name"]; $profiledata["picdate"] = ""; - $profiledata["photo"] = proxy_url($item["author-avatar"], false, PROXY_SIZE_SMALL); + $profiledata["photo"] = $item["author-avatar"]; $profiledata["url"] = $item["author-link"]; $profiledata["network"] = $item["network"]; @@ -174,9 +172,9 @@ function display_fetchauthor($a, $item) { $r[0]["about"] = ""; } - $profiledata["photo"] = proxy_url($r[0]["photo"], false, PROXY_SIZE_SMALL); - $profiledata["address"] = bbcode($r[0]["location"]); - $profiledata["about"] = bbcode($r[0]["about"]); + $profiledata["photo"] = $r[0]["photo"]; + $profiledata["address"] = $r[0]["location"]; + $profiledata["about"] = $r[0]["about"]; if ($r[0]["nick"] != "") $profiledata["nickname"] = $r[0]["nick"]; } @@ -185,11 +183,11 @@ function display_fetchauthor($a, $item) { $r = q("SELECT `avatar`, `nick`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($profiledata["url"]))); if (count($r)) { if ($profiledata["photo"] == "") - $profiledata["photo"] = proxy_url($r[0]["avatar"], false, PROXY_SIZE_SMALL); + $profiledata["photo"] = $r[0]["avatar"]; if (($profiledata["address"] == "") AND ($profiledata["network"] != NETWORK_DIASPORA)) - $profiledata["address"] = bbcode($r[0]["location"]); + $profiledata["address"] = $r[0]["location"]; if (($profiledata["about"] == "") AND ($profiledata["network"] != NETWORK_DIASPORA)) - $profiledata["about"] = bbcode($r[0]["about"]); + $profiledata["about"] = $r[0]["about"]; if (($profiledata["nickname"] == "") AND ($r[0]["nick"] != "")) $profiledata["nickname"] = $r[0]["nick"]; } @@ -212,7 +210,6 @@ function display_content(&$a, $update = 0) { return; } - require_once("include/bbcode.php"); require_once('include/security.php'); require_once('include/conversation.php'); require_once('include/acl_selectors.php'); From f42a7a3469f02f6786000decbc96bd968db64fa6 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 15 Dec 2015 00:11:19 +0100 Subject: [PATCH 40/52] Just one more place where we had forgotten to use the bbcode function for the about text --- include/items.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/items.php b/include/items.php index 2ac494ba27..eff1366899 100644 --- a/include/items.php +++ b/include/items.php @@ -4402,7 +4402,7 @@ function atom_author($tag,$name,$uri,$h,$w,$photo,$geo) { $o .= "\t".xmlify($r[0]["nick"])."\r\n"; $o .= "\t".xmlify($r[0]["name"])."\r\n"; - $o .= "\t".xmlify($r[0]["about"])."\r\n"; + $o .= "\t".xmlify(bbcode($r[0]["about"]))."\r\n"; $o .= "\t\r\n"; $o .= "\t\t".xmlify($location)."\r\n"; $o .= "\t\r\n"; From 2cf1aaa79153894988ddc9ee8986a7bff0727702 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Tue, 15 Dec 2015 14:31:24 +0100 Subject: [PATCH 41/52] add pager to common friends and allfriends --- mod/allfriends.php | 9 +++++++-- mod/common.php | 17 ++++++++--------- 2 files changed, 15 insertions(+), 11 deletions(-) diff --git a/mod/allfriends.php b/mod/allfriends.php index 49879c7a03..356a389b83 100644 --- a/mod/allfriends.php +++ b/mod/allfriends.php @@ -32,7 +32,12 @@ function allfriends_content(&$a) { $a->page['aside'] = ""; profile_load($a, "", 0, get_contact_details_by_url($c[0]["url"])); - $r = all_friends(local_user(),$cid); + $total = count_all_friends(local_user(), $cid); + + if(count($total)) + $a->set_pager_total($total); + + $r = all_friends(local_user(), $cid, $a->pager['start'], $a->pager['itemspage']); if(! count($r)) { $o .= t('No friends to display.'); @@ -87,8 +92,8 @@ function allfriends_content(&$a) { //'$title' => sprintf( t('Friends of %s'), htmlentities($c[0]['name'])), '$tab_str' => $tab_str, '$contacts' => $entries, + '$paginate' => paginate($a), )); -// $o .= paginate($a); return $o; } diff --git a/mod/common.php b/mod/common.php index 7c12dd39bb..c9409b3ef1 100644 --- a/mod/common.php +++ b/mod/common.php @@ -76,23 +76,22 @@ function common_content(&$a) { if($cid) - $t = count_common_friends($uid,$cid); + $t = count_common_friends($uid, $cid); else - $t = count_common_friends_zcid($uid,$zcid); + $t = count_common_friends_zcid($uid, $zcid); - - $a->set_pager_total($t); - - if(! $t) { + if(count($t)) + $a->set_pager_total($t); + else { notice( t('No contacts in common.') . EOL); return $o; } if($cid) - $r = common_friends($uid,$cid); + $r = common_friends($uid, $cid, $a->pager['start'], $a->pager['itemspage']); else - $r = common_friends_zcid($uid,$zcid); + $r = common_friends_zcid($uid, $zcid, $a->pager['start'], $a->pager['itemspage']); if(! count($r)) { @@ -140,8 +139,8 @@ function common_content(&$a) { '$title' => $title, '$tab_str' => $tab_str, '$contacts' => $entries, + '$paginate' => paginate($a), )); -// $o .= paginate($a); return $o; } From 19a72b30b49b50e9f0c039e2d49e8076b955b8f4 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Tue, 15 Dec 2015 15:13:46 +0100 Subject: [PATCH 42/52] vier: fix missing icons --- view/theme/vier/theme.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/view/theme/vier/theme.php b/view/theme/vier/theme.php index 91c384f805..4afc5409c0 100644 --- a/view/theme/vier/theme.php +++ b/view/theme/vier/theme.php @@ -364,10 +364,10 @@ function vier_community_info() { $r[] = array("photo" => "images/twitter.png", "name" => "Twitter"); if (plugin_enabled("wppost")) - $r[] = array("photo" => "images/wordpress", "name" => "Wordpress"); + $r[] = array("photo" => "images/wordpress.png", "name" => "Wordpress"); if(function_exists("imap_open") AND !get_config("system","imap_disabled") AND !get_config("system","dfrn_only")) - $r[] = array("photo" => "images/mail", "name" => "E-Mail"); + $r[] = array("photo" => "images/mail.png", "name" => "E-Mail"); $tpl = get_markup_template('ch_connectors.tpl'); From 6e03477598763cec48c93ddbaeb1d49997f324f1 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 15 Dec 2015 23:26:58 +0100 Subject: [PATCH 43/52] Sometimes the function "sys_getloadavg" doesn't return an array. This is a workaround. --- boot.php | 12 ++++++++++++ include/cron.php | 9 +++++---- include/cronhooks.php | 9 +++++---- include/delivery.php | 9 +++++---- include/discover_poco.php | 9 +++++---- include/poller.php | 13 ++++++------- index.php | 9 +++++---- 7 files changed, 43 insertions(+), 27 deletions(-) diff --git a/boot.php b/boot.php index 05a334a1fa..cc56949009 100644 --- a/boot.php +++ b/boot.php @@ -1948,3 +1948,15 @@ function validate_include(&$file) { return true; } + +function current_load() { + if (!function_exists('sys_getloadavg')) + return false; + + $load_arr = sys_getloadavg(); + + if (!is_array($load_arr)) + return false; + + return max($load_arr); +} diff --git a/include/cron.php b/include/cron.php index 8bf168ed50..18674817d3 100644 --- a/include/cron.php +++ b/include/cron.php @@ -44,10 +44,11 @@ function cron_run(&$argv, &$argc){ $maxsysload = intval(get_config('system','maxloadavg')); if($maxsysload < 1) $maxsysload = 50; - if(function_exists('sys_getloadavg')) { - $load = sys_getloadavg(); - if(intval($load[0]) > $maxsysload) { - logger('system: load ' . $load[0] . ' too high. cron deferred to next scheduled run.'); + + $load = current_load(); + if($load) { + if(intval($load) > $maxsysload) { + logger('system: load ' . $load . ' too high. cron deferred to next scheduled run.'); return; } } diff --git a/include/cronhooks.php b/include/cronhooks.php index d5b4f3bf6f..8c70008e45 100644 --- a/include/cronhooks.php +++ b/include/cronhooks.php @@ -27,10 +27,11 @@ function cronhooks_run(&$argv, &$argc){ $maxsysload = intval(get_config('system','maxloadavg')); if($maxsysload < 1) $maxsysload = 50; - if(function_exists('sys_getloadavg')) { - $load = sys_getloadavg(); - if(intval($load[0]) > $maxsysload) { - logger('system: load ' . $load[0] . ' too high. Cronhooks deferred to next scheduled run.'); + + $load = current_load(); + if($load) { + if(intval($load) > $maxsysload) { + logger('system: load ' . $load . ' too high. Cronhooks deferred to next scheduled run.'); return; } } diff --git a/include/delivery.php b/include/delivery.php index dc02faaba8..4d87b8bb74 100644 --- a/include/delivery.php +++ b/include/delivery.php @@ -58,10 +58,11 @@ function delivery_run(&$argv, &$argc){ $maxsysload = intval(get_config('system','maxloadavg')); if($maxsysload < 1) $maxsysload = 50; - if(function_exists('sys_getloadavg')) { - $load = sys_getloadavg(); - if(intval($load[0]) > $maxsysload) { - logger('system: load ' . $load[0] . ' too high. Delivery deferred to next queue run.'); + + $load = current_load(); + if($load) { + if(intval($load) > $maxsysload) { + logger('system: load ' . $load . ' too high. Delivery deferred to next queue run.'); return; } } diff --git a/include/discover_poco.php b/include/discover_poco.php index a8e7ec64d0..6293317d3f 100644 --- a/include/discover_poco.php +++ b/include/discover_poco.php @@ -28,10 +28,11 @@ function discover_poco_run(&$argv, &$argc){ $maxsysload = intval(get_config('system','maxloadavg')); if($maxsysload < 1) $maxsysload = 50; - if(function_exists('sys_getloadavg')) { - $load = sys_getloadavg(); - if(intval($load[0]) > $maxsysload) { - logger('system: load ' . $load[0] . ' too high. discover_poco deferred to next scheduled run.'); + + $load = current_load(); + if($load) { + if(intval($load) > $maxsysload) { + logger('system: load ' . $load . ' too high. discover_poco deferred to next scheduled run.'); return; } } diff --git a/include/poller.php b/include/poller.php index 8c102a66b9..fd6f3922aa 100644 --- a/include/poller.php +++ b/include/poller.php @@ -26,14 +26,14 @@ function poller_run(&$argv, &$argc){ unset($db_host, $db_user, $db_pass, $db_data); }; - if(function_exists('sys_getloadavg')) { + $load = current_load(); + if($load) { $maxsysload = intval(get_config('system','maxloadavg')); if($maxsysload < 1) $maxsysload = 50; - $load = sys_getloadavg(); - if(intval($load[0]) > $maxsysload) { - logger('system: load ' . $load[0] . ' too high. poller deferred to next scheduled run.'); + if(intval($load) > $maxsysload) { + logger('system: load ' . $load . ' too high. poller deferred to next scheduled run.'); return; } } @@ -134,9 +134,8 @@ function poller_too_much_workers($stage) { $active = poller_active_workers(); // Decrease the number of workers at higher load - if(function_exists('sys_getloadavg')) { - $load = max(sys_getloadavg()); - + $load = current_load(); + if($load) { $maxsysload = intval(get_config('system','maxloadavg')); if($maxsysload < 1) $maxsysload = 50; diff --git a/index.php b/index.php index 9fe248e8e2..89ed058465 100644 --- a/index.php +++ b/index.php @@ -56,10 +56,11 @@ if(!$install) { $maxsysload_frontend = intval(get_config('system','maxloadavg_frontend')); if($maxsysload_frontend < 1) $maxsysload_frontend = 50; - if(function_exists('sys_getloadavg')) { - $load = sys_getloadavg(); - if(intval($load[0]) > $maxsysload_frontend) { - logger('system: load ' . $load[0] . ' too high. Service Temporarily Unavailable.'); + + $load = current_load(); + if($load) { + if($load > $maxsysload_frontend) { + logger('system: load ' . $load . ' too high. Service Temporarily Unavailable.'); header($_SERVER["SERVER_PROTOCOL"].' 503 Service Temporarily Unavailable'); header('Retry-After: 300'); die("System is currently unavailable. Please try again later"); From 33f354a68ce9a4d3bd63cc9ad26129a0c2befefa Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 16 Dec 2015 00:14:53 +0100 Subject: [PATCH 44/52] Bugfix for the maximum load check in worker. --- include/poller.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/poller.php b/include/poller.php index fd6f3922aa..b1d6099ad3 100644 --- a/include/poller.php +++ b/include/poller.php @@ -72,6 +72,10 @@ function poller_run(&$argv, &$argc){ while ($r = q("SELECT * FROM `workerqueue` WHERE `executed` = '0000-00-00 00:00:00' ORDER BY `created` LIMIT 1")) { + // Count active workers and compare them with a maximum value that depends on the load + if (poller_too_much_workers(3)) + return; + q("UPDATE `workerqueue` SET `executed` = '%s', `pid` = %d WHERE `id` = %d AND `executed` = '0000-00-00 00:00:00'", dbesc(datetime_convert()), intval(getmypid()), @@ -116,10 +120,6 @@ function poller_run(&$argv, &$argc){ // Quit the poller once every hour if (time() > ($starttime + 3600)) return; - - // Count active workers and compare them with a maximum value that depends on the load - if (poller_too_much_workers(3)) - return; } } From 719989249f2c9f4fcdc998d3cee2fbb43124032d Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 17 Dec 2015 08:27:02 +0100 Subject: [PATCH 45/52] FR: update to the translation --- view/fr/messages.po | 92 ++++++++++++++++++++++----------------------- view/fr/strings.php | 88 +++++++++++++++++++++---------------------- 2 files changed, 90 insertions(+), 90 deletions(-) diff --git a/view/fr/messages.po b/view/fr/messages.po index 7e38a4be31..4c9b2d6568 100644 --- a/view/fr/messages.po +++ b/view/fr/messages.po @@ -22,8 +22,8 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-12-14 07:48+0100\n" -"PO-Revision-Date: 2015-12-14 09:23+0000\n" -"Last-Translator: fabrixxm \n" +"PO-Revision-Date: 2015-12-16 08:20+0000\n" +"Last-Translator: Perig Gouanvic \n" "Language-Team: French (http://www.transifex.com/Friendica/friendica/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -477,7 +477,7 @@ msgstr "Amis communs" #: mod/contacts.php:852 msgid "View all common friends" -msgstr "" +msgstr "Voir tous les amis communs" #: mod/contacts.php:856 msgid "Repair" @@ -909,7 +909,7 @@ msgstr "Utiliser comme photo de profil" #: mod/ostatus_subscribe.php:14 msgid "Subsribing to OStatus contacts" -msgstr "" +msgstr "Inscription aux contacts OStatus" #: mod/ostatus_subscribe.php:25 msgid "No contact provided." @@ -1897,7 +1897,7 @@ msgstr "Nouvelle photo depuis cette URL" #: mod/crepair.php:179 msgid "Remote Self" -msgstr "" +msgstr "Identité à distance" #: mod/crepair.php:182 msgid "Mirror postings from this contact" @@ -2870,11 +2870,11 @@ msgstr "" #: mod/admin.php:798 msgid "Only search in tags" -msgstr "" +msgstr "Rechercher seulement dans les étiquettes" #: mod/admin.php:798 msgid "On large systems the text search can slow down the system extremely." -msgstr "" +msgstr "La recherche textuelle peut ralentir considérablement les systèmes de grande taille." #: mod/admin.php:800 msgid "New base url" @@ -2884,7 +2884,7 @@ msgstr "Nouvelle URL de base" msgid "" "Change base url for this server. Sends relocate message to all DFRN contacts" " of all users." -msgstr "" +msgstr "Changer d'URL de base pour ce serveur. Envoie un message de relocalisation à tous les contacts des réseaux distribués d'amis et de relations (DFRN) de tous les utilisateurs." #: mod/admin.php:802 msgid "RINO Encryption" @@ -2896,7 +2896,7 @@ msgstr "Couche de chiffrement entre les nœuds du réseau." #: mod/admin.php:803 msgid "Embedly API key" -msgstr "" +msgstr "Clé API d'Embedly" #: mod/admin.php:803 msgid "" @@ -3232,7 +3232,7 @@ msgstr "Mot de passe FTP" #: mod/network.php:146 #, php-format msgid "Search Results For: %s" -msgstr "" +msgstr "Résultats de la recherche pour %s" #: mod/network.php:191 mod/search.php:25 msgid "Remove term" @@ -3309,7 +3309,7 @@ msgstr "Groupe inexistant" #: mod/network.php:574 mod/content.php:135 #, php-format msgid "Group: %s" -msgstr "" +msgstr "Group : %s" #: mod/network.php:606 msgid "Private messages to this person are at risk of public disclosure." @@ -3325,7 +3325,7 @@ msgstr "Pas d'amis à afficher." #: mod/events.php:71 mod/events.php:73 msgid "Event can not end before it has started." -msgstr "" +msgstr "L'événement ne peut pas se terminer avant d'avoir commencé." #: mod/events.php:80 mod/events.php:82 msgid "Event title and start time are required." @@ -4471,7 +4471,7 @@ msgstr "Mettre-à-jour l'affichage toutes les xx secondes" #: mod/settings.php:966 msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "" +msgstr "Minimum de 10 secondes. Saisir -1 pour désactiver." #: mod/settings.php:967 msgid "Number of items to display per page:" @@ -4507,7 +4507,7 @@ msgstr "Défilement infini" #: mod/settings.php:974 msgid "Automatic updates only at the top of the network page" -msgstr "" +msgstr "Mises à jour automatiques seulement en haut de la page du réseau." #: mod/settings.php:976 view/theme/cleanzero/config.php:82 #: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66 @@ -5080,7 +5080,7 @@ msgstr "Votre adresse courriel: " #: mod/register.php:274 msgid "Leave empty for an auto generated password." -msgstr "" +msgstr "Laisser ce champ libre pour obtenir un mot de passe généré automatiquement." #: mod/register.php:276 msgid "" @@ -5111,15 +5111,15 @@ msgstr "Système indisponible pour cause de maintenance" #: mod/search.php:100 msgid "Only logged in users are permitted to perform a search." -msgstr "" +msgstr "Seuls les utilisateurs inscrits sont autorisés à lancer une recherche." #: mod/search.php:124 msgid "Too Many Requests" -msgstr "" +msgstr "Trop de requêtes" #: mod/search.php:125 msgid "Only one search per minute is permitted for not logged in users." -msgstr "" +msgstr "Une seule recherche par minute pour les utilisateurs qui ne sont pas connectés." #: mod/search.php:136 include/text.php:1003 include/nav.php:118 msgid "Search" @@ -5429,7 +5429,7 @@ msgstr "Votre genre :" #: mod/profiles.php:714 msgid "Birthday :" -msgstr "" +msgstr "Anniversaire :" #: mod/profiles.php:715 msgid "Street Address:" @@ -5794,7 +5794,7 @@ msgstr "" #: mod/repair_ostatus.php:30 msgid "Error" -msgstr "" +msgstr "Erreur" #: mod/invite.php:27 msgid "Total invitation limit exceeded." @@ -6041,7 +6041,7 @@ msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacance #: mod/photos.php:1569 msgid "Do not rotate" -msgstr "" +msgstr "Pas de rotation" #: mod/photos.php:1570 msgid "Rotate CW (right)" @@ -6072,15 +6072,15 @@ msgstr[1] "" #: mod/photos.php:1648 include/conversation.php:509 msgid "Not attending" -msgstr "" +msgstr "Ne participe pas" #: mod/photos.php:1648 include/conversation.php:509 msgid "Might attend" -msgstr "" +msgstr "Participera peut-être" #: mod/photos.php:1813 msgid "Map" -msgstr "" +msgstr "Carte" #: mod/p.php:9 msgid "Not Extended" @@ -6201,15 +6201,15 @@ msgstr "Cette entrée à été édité" #: object/Item.php:191 msgid "I will attend" -msgstr "" +msgstr "Je vais participer" #: object/Item.php:191 msgid "I will not attend" -msgstr "" +msgstr "Je ne vais pas participer" #: object/Item.php:191 msgid "I might attend" -msgstr "" +msgstr "Je vais peut-être participer" #: object/Item.php:230 msgid "ignore thread" @@ -6360,7 +6360,7 @@ msgstr "Possibilité de créer plusieurs profils" #: include/features.php:61 msgid "Photo Location" -msgstr "" +msgstr "Lieu de prise de la photo" #: include/features.php:61 msgid "" @@ -6613,7 +6613,7 @@ msgstr "éditer" #: include/group.php:285 msgid "Edit groups" -msgstr "" +msgstr "Modifier les groupes" #: include/group.php:287 msgid "Edit group" @@ -6633,7 +6633,7 @@ msgstr "Divers" #: include/datetime.php:141 msgid "YYYY-MM-DD or MM-DD" -msgstr "" +msgstr "AAAA-MM-JJ ou MM-JJ" #: include/datetime.php:271 msgid "never" @@ -6712,7 +6712,7 @@ msgstr "Editer le profil" #: include/identity.php:241 msgid "Atom feed" -msgstr "" +msgstr "Flux Atom" #: include/identity.php:246 msgid "Message" @@ -6821,7 +6821,7 @@ msgstr "Études/Formation:" #: include/identity.php:648 msgid "Forums:" -msgstr "" +msgstr "Forums :" #: include/identity.php:701 include/identity.php:704 include/nav.php:78 msgid "Videos" @@ -6842,7 +6842,7 @@ msgstr "Publier aux courriels" #: include/acl_selectors.php:330 #, php-format msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" +msgstr "Les connecteurs sont désactivés parce que \"%s\" est activé." #: include/acl_selectors.php:336 msgid "Visible to everybody" @@ -6915,17 +6915,17 @@ msgstr "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probab #: include/conversation.php:147 #, php-format msgid "%1$s attends %2$s's %3$s" -msgstr "" +msgstr "%1$s participe à %3$s de %2$s" #: include/conversation.php:150 #, php-format msgid "%1$s doesn't attend %2$s's %3$s" -msgstr "" +msgstr "%1$s ne participe pas à %3$s de %2$s" #: include/conversation.php:153 #, php-format msgid "%1$s attends maybe %2$s's %3$s" -msgstr "" +msgstr "%1$s participe peut-être à %3$s de %2$s" #: include/conversation.php:219 #, php-format @@ -6966,17 +6966,17 @@ msgstr "%s n'aime pas ça." #: include/conversation.php:1041 #, php-format msgid "%s attends." -msgstr "" +msgstr "%s participe" #: include/conversation.php:1044 #, php-format msgid "%s doesn't attend." -msgstr "" +msgstr "%s ne participe pas" #: include/conversation.php:1047 #, php-format msgid "%s attends maybe." -msgstr "" +msgstr "%s participe peut-être" #: include/conversation.php:1057 msgid "and" @@ -6995,7 +6995,7 @@ msgstr "%2$d personnes aiment ça" #: include/conversation.php:1073 #, php-format msgid "%s like this." -msgstr "" +msgstr "%s aime ça." #: include/conversation.php:1076 #, php-format @@ -7005,7 +7005,7 @@ msgstr "%2$d personnes n'aiment pas ça" #: include/conversation.php:1077 #, php-format msgid "%s don't like this." -msgstr "" +msgstr "%s n'aiment pas ça." #: include/conversation.php:1080 #, php-format @@ -7015,7 +7015,7 @@ msgstr "" #: include/conversation.php:1081 #, php-format msgid "%s attend." -msgstr "" +msgstr "%s participent." #: include/conversation.php:1084 #, php-format @@ -7025,7 +7025,7 @@ msgstr "" #: include/conversation.php:1085 #, php-format msgid "%s don't attend." -msgstr "" +msgstr "%s ne participent pas." #: include/conversation.php:1088 #, php-format @@ -7035,7 +7035,7 @@ msgstr "" #: include/conversation.php:1089 #, php-format msgid "%s anttend maybe." -msgstr "" +msgstr "%s participent peut-être." #: include/conversation.php:1128 include/conversation.php:1146 msgid "Visible to everybody" @@ -7079,7 +7079,7 @@ msgstr "Message privé" #: include/conversation.php:1386 msgid "View all" -msgstr "" +msgstr "Voir tout" #: include/conversation.php:1408 msgid "Like" @@ -7108,7 +7108,7 @@ msgstr[1] "" #: include/forums.php:105 include/text.php:1015 include/nav.php:126 #: view/theme/vier/theme.php:259 msgid "Forums" -msgstr "" +msgstr "Forums" #: include/forums.php:107 view/theme/vier/theme.php:261 msgid "External link to forum" diff --git a/view/fr/strings.php b/view/fr/strings.php index 6ebfd5dbba..c3c200ff7c 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -100,7 +100,7 @@ $a->strings["Profile"] = "Profil"; $a->strings["Profile Details"] = "Détails du profil"; $a->strings["View all contacts"] = "Voir tous les contacts"; $a->strings["Common Friends"] = "Amis communs"; -$a->strings["View all common friends"] = ""; +$a->strings["View all common friends"] = "Voir tous les amis communs"; $a->strings["Repair"] = "Réparer"; $a->strings["Advanced Contact Settings"] = "Réglages avancés du contact"; $a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\""; @@ -189,7 +189,7 @@ $a->strings["Tag removed"] = "Étiquette supprimée"; $a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément"; $a->strings["Select a tag to remove: "] = "Sélectionner une étiquette à supprimer: "; $a->strings["Remove"] = "Utiliser comme photo de profil"; -$a->strings["Subsribing to OStatus contacts"] = ""; +$a->strings["Subsribing to OStatus contacts"] = "Inscription aux contacts OStatus"; $a->strings["No contact provided."] = "Pas de contact fourni."; $a->strings["Couldn't fetch information for contact."] = "Impossible de récupérer les informations pour ce contact."; $a->strings["Couldn't fetch friends for contact."] = "Impossible de récupérer les amis de ce contact."; @@ -406,7 +406,7 @@ $a->strings["Friend Confirm URL"] = "Accès public refusé."; $a->strings["Notification Endpoint URL"] = "Aucune photo sélectionnée"; $a->strings["Poll/Feed URL"] = "Téléverser des photos"; $a->strings["New photo from this URL"] = "Nouvelle photo depuis cette URL"; -$a->strings["Remote Self"] = ""; +$a->strings["Remote Self"] = "Identité à distance"; $a->strings["Mirror postings from this contact"] = ""; $a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact."; $a->strings["Login"] = "Connexion"; @@ -619,13 +619,13 @@ $a->strings["Disable picture proxy"] = "Désactiver le proxy image "; $a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante."; $a->strings["Enable old style pager"] = ""; $a->strings["The old style pager has page numbers but slows down massively the page speed."] = ""; -$a->strings["Only search in tags"] = ""; -$a->strings["On large systems the text search can slow down the system extremely."] = ""; +$a->strings["Only search in tags"] = "Rechercher seulement dans les étiquettes"; +$a->strings["On large systems the text search can slow down the system extremely."] = "La recherche textuelle peut ralentir considérablement les systèmes de grande taille."; $a->strings["New base url"] = "Nouvelle URL de base"; -$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = ""; +$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Changer d'URL de base pour ce serveur. Envoie un message de relocalisation à tous les contacts des réseaux distribués d'amis et de relations (DFRN) de tous les utilisateurs."; $a->strings["RINO Encryption"] = "Chiffrement RINO"; $a->strings["Encryption layer between nodes."] = "Couche de chiffrement entre les nœuds du réseau."; -$a->strings["Embedly API key"] = ""; +$a->strings["Embedly API key"] = "Clé API d'Embedly"; $a->strings["Embedly is used to fetch additional data for web pages. This is an optional parameter."] = ""; $a->strings["Update has been marked successful"] = "Mise-à-jour validée comme 'réussie'"; $a->strings["Database structure update %s was successfully applied."] = "La structure de base de données pour la mise à jour %s a été appliquée avec succès."; @@ -700,7 +700,7 @@ $a->strings["FTP Host"] = "Hôte FTP"; $a->strings["FTP Path"] = "Chemin FTP"; $a->strings["FTP User"] = "Utilisateur FTP"; $a->strings["FTP Password"] = "Mot de passe FTP"; -$a->strings["Search Results For: %s"] = ""; +$a->strings["Search Results For: %s"] = "Résultats de la recherche pour %s"; $a->strings["Remove term"] = "Retirer le terme"; $a->strings["Saved Searches"] = "Recherches"; $a->strings["add"] = "ajouter"; @@ -721,11 +721,11 @@ $a->strings["Warning: This group contains %s member from an insecure network."] ); $a->strings["Private messages to this group are at risk of public disclosure."] = "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée."; $a->strings["No such group"] = "Groupe inexistant"; -$a->strings["Group: %s"] = ""; +$a->strings["Group: %s"] = "Group : %s"; $a->strings["Private messages to this person are at risk of public disclosure."] = "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée."; $a->strings["Invalid contact."] = "Contact invalide."; $a->strings["No friends to display."] = "Pas d'amis à afficher."; -$a->strings["Event can not end before it has started."] = ""; +$a->strings["Event can not end before it has started."] = "L'événement ne peut pas se terminer avant d'avoir commencé."; $a->strings["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement."; $a->strings["Sun"] = "Dim"; $a->strings["Mon"] = "Lun"; @@ -994,7 +994,7 @@ $a->strings["Display Settings"] = "Affichage"; $a->strings["Display Theme:"] = "Thème d'affichage:"; $a->strings["Mobile Theme:"] = "Thème mobile:"; $a->strings["Update browser every xx seconds"] = "Mettre-à-jour l'affichage toutes les xx secondes"; -$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum de 10 secondes. Saisir -1 pour désactiver."; $a->strings["Number of items to display per page:"] = "Nombre d’éléments par page:"; $a->strings["Maximum of 100 items"] = "Maximum de 100 éléments"; $a->strings["Number of items to display per page when viewed from mobile device:"] = "Nombre d'éléments a afficher par page pour un appareil mobile"; @@ -1003,7 +1003,7 @@ $a->strings["Calendar"] = "Calendrier"; $a->strings["Beginning of week:"] = "Début de la semaine :"; $a->strings["Don't show notices"] = "Ne plus afficher les avis"; $a->strings["Infinite scroll"] = "Défilement infini"; -$a->strings["Automatic updates only at the top of the network page"] = ""; +$a->strings["Automatic updates only at the top of the network page"] = "Mises à jour automatiques seulement en haut de la page du réseau."; $a->strings["Theme settings"] = "Réglages du thème graphique"; $a->strings["User Types"] = "Types d'utilisateurs"; $a->strings["Community Types"] = "Genre de communautés"; @@ -1139,16 +1139,16 @@ $a->strings["Membership on this site is by invitation only."] = "L'inscription $a->strings["Your invitation ID: "] = "Votre ID d'invitation: "; $a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Votre nom complet (p. ex. Michel Dupont):"; $a->strings["Your Email Address: "] = "Votre adresse courriel: "; -$a->strings["Leave empty for an auto generated password."] = ""; +$a->strings["Leave empty for an auto generated password."] = "Laisser ce champ libre pour obtenir un mot de passe généré automatiquement."; $a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@\$sitename</strong>'."; $a->strings["Choose a nickname: "] = "Choisir un pseudo: "; $a->strings["Register"] = "S'inscrire"; $a->strings["Import"] = "Importer"; $a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica"; $a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance"; -$a->strings["Only logged in users are permitted to perform a search."] = ""; -$a->strings["Too Many Requests"] = ""; -$a->strings["Only one search per minute is permitted for not logged in users."] = ""; +$a->strings["Only logged in users are permitted to perform a search."] = "Seuls les utilisateurs inscrits sont autorisés à lancer une recherche."; +$a->strings["Too Many Requests"] = "Trop de requêtes"; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Une seule recherche par minute pour les utilisateurs qui ne sont pas connectés."; $a->strings["Search"] = "Recherche"; $a->strings["Items tagged with: %s"] = ""; $a->strings["Search results for: %s"] = ""; @@ -1221,7 +1221,7 @@ $a->strings["Profile Name:"] = "Nom du profil :"; $a->strings["Your Full Name:"] = "Votre nom complet :"; $a->strings["Title/Description:"] = "Titre / Description :"; $a->strings["Your Gender:"] = "Votre genre :"; -$a->strings["Birthday :"] = ""; +$a->strings["Birthday :"] = "Anniversaire :"; $a->strings["Street Address:"] = "Adresse postale :"; $a->strings["Locality/City:"] = "Ville / Localité :"; $a->strings["Postal/Zip Code:"] = "Code postal :"; @@ -1309,7 +1309,7 @@ $a->strings["Recipient"] = "Destinataire"; $a->strings["Choose what you wish to do to recipient"] = "Choisissez ce que vous voulez faire au destinataire"; $a->strings["Make this post private"] = "Rendez ce message privé"; $a->strings["Resubsribing to OStatus contacts"] = ""; -$a->strings["Error"] = ""; +$a->strings["Error"] = "Erreur"; $a->strings["Total invitation limit exceeded."] = "La limite d'invitation totale est éxédée."; $a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide."; $a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica"; @@ -1367,7 +1367,7 @@ $a->strings["New album name"] = "Nom du nouvel album"; $a->strings["Caption"] = "Titre"; $a->strings["Add a Tag"] = "Ajouter une étiquette"; $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"; -$a->strings["Do not rotate"] = ""; +$a->strings["Do not rotate"] = "Pas de rotation"; $a->strings["Rotate CW (right)"] = "Tourner dans le sens des aiguilles d'une montre (vers la droite)"; $a->strings["Rotate CCW (left)"] = "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"; $a->strings["Private photo"] = "Photo privée"; @@ -1377,9 +1377,9 @@ $a->strings["Attending"] = array( 0 => "", 1 => "", ); -$a->strings["Not attending"] = ""; -$a->strings["Might attend"] = ""; -$a->strings["Map"] = ""; +$a->strings["Not attending"] = "Ne participe pas"; +$a->strings["Might attend"] = "Participera peut-être"; +$a->strings["Map"] = "Carte"; $a->strings["Not Extended"] = ""; $a->strings["Account approved."] = "Inscription validée."; $a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s"; @@ -1407,9 +1407,9 @@ $a->strings["terms of service"] = "conditions d'utilisation"; $a->strings["Website Privacy Policy"] = "Politique de confidentialité du site internet"; $a->strings["privacy policy"] = "politique de confidentialité"; $a->strings["This entry was edited"] = "Cette entrée à été édité"; -$a->strings["I will attend"] = ""; -$a->strings["I will not attend"] = ""; -$a->strings["I might attend"] = ""; +$a->strings["I will attend"] = "Je vais participer"; +$a->strings["I will not attend"] = "Je ne vais pas participer"; +$a->strings["I might attend"] = "Je vais peut-être participer"; $a->strings["ignore thread"] = "ignorer le fil"; $a->strings["unignore thread"] = "Ne plus ignorer le fil"; $a->strings["toggle ignore status"] = "Ignorer le statut"; @@ -1448,7 +1448,7 @@ $a->strings["%d contact in common"] = array( $a->strings["General Features"] = "Fonctions générales"; $a->strings["Multiple Profiles"] = "Profils multiples"; $a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils"; -$a->strings["Photo Location"] = ""; +$a->strings["Photo Location"] = "Lieu de prise de la photo"; $a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = ""; $a->strings["Post Composition Features"] = "Caractéristiques de composition de publication"; $a->strings["Richtext Editor"] = "Éditeur de texte enrichi"; @@ -1508,12 +1508,12 @@ $a->strings["A deleted group with this name was revived. Existing item permissio $a->strings["Default privacy group for new contacts"] = "Paramètres de confidentialité par défaut pour les nouveaux contacts"; $a->strings["Everybody"] = "Tout le monde"; $a->strings["edit"] = "éditer"; -$a->strings["Edit groups"] = ""; +$a->strings["Edit groups"] = "Modifier les groupes"; $a->strings["Edit group"] = "Editer groupe"; $a->strings["Create a new group"] = "Créer un nouveau groupe"; $a->strings["Contacts not in any group"] = "Contacts n'appartenant à aucun groupe"; $a->strings["Miscellaneous"] = "Divers"; -$a->strings["YYYY-MM-DD or MM-DD"] = ""; +$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-JJ ou MM-JJ"; $a->strings["never"] = "jamais"; $a->strings["less than a second ago"] = "il y a moins d'une seconde"; $a->strings["year"] = "an"; @@ -1532,7 +1532,7 @@ $a->strings["%s's birthday"] = "Anniversaire de %s's"; $a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !"; $a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible."; $a->strings["Edit profile"] = "Editer le profil"; -$a->strings["Atom feed"] = ""; +$a->strings["Atom feed"] = "Flux Atom"; $a->strings["Message"] = "Message"; $a->strings["Profiles"] = "Profils"; $a->strings["Manage/edit profiles"] = "Gérer/éditer les profils"; @@ -1559,12 +1559,12 @@ $a->strings["Film/dance/culture/entertainment:"] = "Cinéma/Danse/Culture/Divert $a->strings["Love/Romance:"] = "Amour/Romance:"; $a->strings["Work/employment:"] = "Activité professionnelle/Occupation:"; $a->strings["School/education:"] = "Études/Formation:"; -$a->strings["Forums:"] = ""; +$a->strings["Forums:"] = "Forums :"; $a->strings["Videos"] = "Vidéos"; $a->strings["Events and Calendar"] = "Événements et agenda"; $a->strings["Only You Can See This"] = "Vous seul pouvez voir ça"; $a->strings["Post to Email"] = "Publier aux courriels"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Les connecteurs sont désactivés parce que \"%s\" est activé."; $a->strings["Visible to everybody"] = "Visible par tout le monde"; $a->strings["show"] = "montrer"; $a->strings["don't show"] = "cacher"; @@ -1581,9 +1581,9 @@ $a->strings["Welcome "] = "Bienvenue "; $a->strings["Please upload a profile photo."] = "Merci d'illustrer votre profil d'une image."; $a->strings["Welcome back "] = "Bienvenue à nouveau, "; $a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé."; -$a->strings["%1\$s attends %2\$s's %3\$s"] = ""; -$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = ""; -$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = ""; +$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s participe à %3\$s de %2\$s"; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s ne participe pas à %3\$s de %2\$s"; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s participe peut-être à %3\$s de %2\$s"; $a->strings["%1\$s poked %2\$s"] = "%1\$s a sollicité %2\$s"; $a->strings["post/item"] = "publication/élément"; $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s a marqué le %3\$s de %2\$s comme favori"; @@ -1592,21 +1592,21 @@ $a->strings["Delete Selected Items"] = "Supprimer les éléments sélectionnés" $a->strings["Follow Thread"] = "Suivre le fil"; $a->strings["%s likes this."] = "%s aime ça."; $a->strings["%s doesn't like this."] = "%s n'aime pas ça."; -$a->strings["%s attends."] = ""; -$a->strings["%s doesn't attend."] = ""; -$a->strings["%s attends maybe."] = ""; +$a->strings["%s attends."] = "%s participe"; +$a->strings["%s doesn't attend."] = "%s ne participe pas"; +$a->strings["%s attends maybe."] = "%s participe peut-être"; $a->strings["and"] = "et"; $a->strings[", and %d other people"] = ", et %d autres personnes"; $a->strings["%2\$d people like this"] = "%2\$d personnes aiment ça"; -$a->strings["%s like this."] = ""; +$a->strings["%s like this."] = "%s aime ça."; $a->strings["%2\$d people don't like this"] = "%2\$d personnes n'aiment pas ça"; -$a->strings["%s don't like this."] = ""; +$a->strings["%s don't like this."] = "%s n'aiment pas ça."; $a->strings["%2\$d people attend"] = ""; -$a->strings["%s attend."] = ""; +$a->strings["%s attend."] = "%s participent."; $a->strings["%2\$d people don't attend"] = ""; -$a->strings["%s don't attend."] = ""; +$a->strings["%s don't attend."] = "%s ne participent pas."; $a->strings["%2\$d people anttend maybe"] = ""; -$a->strings["%s anttend maybe."] = ""; +$a->strings["%s anttend maybe."] = "%s participent peut-être."; $a->strings["Visible to everybody"] = "Visible par tout le monde"; $a->strings["Please enter a video link/URL:"] = "Entrez un lien/URL video :"; $a->strings["Please enter an audio link/URL:"] = "Entrez un lien/URL audio :"; @@ -1617,7 +1617,7 @@ $a->strings["permissions"] = "permissions"; $a->strings["Post to Groups"] = "Publier aux groupes"; $a->strings["Post to Contacts"] = "Publier aux contacts"; $a->strings["Private post"] = "Message privé"; -$a->strings["View all"] = ""; +$a->strings["View all"] = "Voir tout"; $a->strings["Like"] = array( 0 => "", 1 => "", @@ -1634,7 +1634,7 @@ $a->strings["Undecided"] = array( 0 => "", 1 => "", ); -$a->strings["Forums"] = ""; +$a->strings["Forums"] = "Forums"; $a->strings["External link to forum"] = ""; $a->strings["view full size"] = "voir en pleine taille"; $a->strings["newer"] = "Plus récent"; From b79d98aea5519f651c3db55ae9b9148e69946102 Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Mon, 21 Dec 2015 09:43:10 +0100 Subject: [PATCH 46/52] quattro: fix PM aside template errors was raised with new "show message list in aside" patch --- view/theme/quattro/dark/style.css | 54 ++++++++++++++++- view/theme/quattro/green/style.css | 54 ++++++++++++++++- view/theme/quattro/lilac/style.css | 60 +++++++++++++++++-- view/theme/quattro/quattro.less | 20 ++++++- view/theme/quattro/templates/message_side.tpl | 14 ++--- 5 files changed, 188 insertions(+), 14 deletions(-) diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index bb255fa460..c5f695679e 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -463,7 +463,7 @@ a:hover { text-decoration: underline; } blockquote { - background: #FFFFFF; + background: #ffffff; padding: 1em; margin-left: 1em; border-left: 1em solid #e6e6e6; @@ -544,6 +544,7 @@ header { margin: 0; padding: 0; /*width: 100%; height: 12px; */ + z-index: 110; color: #ffffff; } @@ -921,6 +922,7 @@ aside .posted-date-selector-months { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ + } #contact-block .contact-block-h4 { float: left; @@ -1002,6 +1004,7 @@ aside .posted-date-selector-months { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0;} .action .s16 { width: 16px; overflow: hidden; padding: 0;}*/ + } .widget h3 { padding: 0; @@ -1305,6 +1308,7 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ + } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -2221,6 +2225,7 @@ ul.tabs li .active { min-height: 22px; padding-top: 6px; /* a { display: block;}*/ + } #photo-caption { display: block; @@ -2344,6 +2349,53 @@ ul.tabs li .active { .mail-list-wrapper .mail-delete { float: right; } +#message-preview { + margin-top: 1em; + box-sizing: border-box; +} +#message-preview * { + box-sizing: border-box; + white-space: nowrap; +} +#message-preview .mail-list-wrapper .mail-subject { + width: 100%; +} +#message-preview .mail-list-wrapper .mail-date { + font-size: 0.8em; + width: 25%; + text-align: right; +} +#message-preview .mail-list-wrapper .mail-from { + font-size: 0.8em; + width: 75%; +} +#message-preview .mail-list-wrapper .mail-count { + font-size: 0.8em; + width: 100%; +} +#message-preview .mail-list-wrapper .mail-delete { + display: none; +} +#message-preview .mail-list-wrapper .mail-date, +#message-preview .mail-list-wrapper .mail-from, +#message-preview .mail-list-wrapper .mail-count { + opacity: 0.5; + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} +#message-preview .mail-list-wrapper:hover .mail-date, +#message-preview .mail-list-wrapper:hover .mail-from, +#message-preview .mail-list-wrapper:hover .mail-count { + opacity: 1; + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} #mail-display-subject { background-color: #f6f7f8; color: #2d2d2d; diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index 6f68a9598f..aaca41312b 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -463,7 +463,7 @@ a:hover { text-decoration: underline; } blockquote { - background: #FFFFFF; + background: #ffffff; padding: 1em; margin-left: 1em; border-left: 1em solid #e6e6e6; @@ -544,6 +544,7 @@ header { margin: 0; padding: 0; /*width: 100%; height: 12px; */ + z-index: 110; color: #ffffff; } @@ -921,6 +922,7 @@ aside .posted-date-selector-months { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ + } #contact-block .contact-block-h4 { float: left; @@ -1002,6 +1004,7 @@ aside .posted-date-selector-months { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0;} .action .s16 { width: 16px; overflow: hidden; padding: 0;}*/ + } .widget h3 { padding: 0; @@ -1305,6 +1308,7 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ + } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -2221,6 +2225,7 @@ ul.tabs li .active { min-height: 22px; padding-top: 6px; /* a { display: block;}*/ + } #photo-caption { display: block; @@ -2344,6 +2349,53 @@ ul.tabs li .active { .mail-list-wrapper .mail-delete { float: right; } +#message-preview { + margin-top: 1em; + box-sizing: border-box; +} +#message-preview * { + box-sizing: border-box; + white-space: nowrap; +} +#message-preview .mail-list-wrapper .mail-subject { + width: 100%; +} +#message-preview .mail-list-wrapper .mail-date { + font-size: 0.8em; + width: 25%; + text-align: right; +} +#message-preview .mail-list-wrapper .mail-from { + font-size: 0.8em; + width: 75%; +} +#message-preview .mail-list-wrapper .mail-count { + font-size: 0.8em; + width: 100%; +} +#message-preview .mail-list-wrapper .mail-delete { + display: none; +} +#message-preview .mail-list-wrapper .mail-date, +#message-preview .mail-list-wrapper .mail-from, +#message-preview .mail-list-wrapper .mail-count { + opacity: 0.5; + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} +#message-preview .mail-list-wrapper:hover .mail-date, +#message-preview .mail-list-wrapper:hover .mail-from, +#message-preview .mail-list-wrapper:hover .mail-count { + opacity: 1; + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} #mail-display-subject { background-color: #f6f7f8; color: #2d2d2d; diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index f6093c5c22..5801644952 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -420,7 +420,7 @@ body { font-family: Liberation Sans, helvetica, arial, clean, sans-serif; font-size: 11px; - background-color: #F6ECF9; + background-color: #f6ecf9; color: #2d2d2d; margin: 50px 0 0 0; display: table; @@ -463,7 +463,7 @@ a:hover { text-decoration: underline; } blockquote { - background: #FFFFFF; + background: #ffffff; padding: 1em; margin-left: 1em; border-left: 1em solid #e6e6e6; @@ -544,6 +544,7 @@ header { margin: 0; padding: 0; /*width: 100%; height: 12px; */ + z-index: 110; color: #ffffff; } @@ -921,6 +922,7 @@ aside .posted-date-selector-months { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ + } #contact-block .contact-block-h4 { float: left; @@ -1002,6 +1004,7 @@ aside .posted-date-selector-months { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0;} .action .s16 { width: 16px; overflow: hidden; padding: 0;}*/ + } .widget h3 { padding: 0; @@ -1305,6 +1308,7 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ + } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -1749,7 +1753,7 @@ span[id^="showmore-wrap"] { height: 20px; width: 500px; font-weight: bold; - border: 1px solid #F6ECF9; + border: 1px solid #f6ecf9; } #jot #jot-title:-webkit-input-placeholder { font-weight: normal; @@ -1776,7 +1780,7 @@ span[id^="showmore-wrap"] { margin: 0; height: 20px; width: 200px; - border: 1px solid #F6ECF9; + border: 1px solid #f6ecf9; } #jot #jot-category:hover { border: 1px solid #999999; @@ -2221,6 +2225,7 @@ ul.tabs li .active { min-height: 22px; padding-top: 6px; /* a { display: block;}*/ + } #photo-caption { display: block; @@ -2344,6 +2349,53 @@ ul.tabs li .active { .mail-list-wrapper .mail-delete { float: right; } +#message-preview { + margin-top: 1em; + box-sizing: border-box; +} +#message-preview * { + box-sizing: border-box; + white-space: nowrap; +} +#message-preview .mail-list-wrapper .mail-subject { + width: 100%; +} +#message-preview .mail-list-wrapper .mail-date { + font-size: 0.8em; + width: 25%; + text-align: right; +} +#message-preview .mail-list-wrapper .mail-from { + font-size: 0.8em; + width: 75%; +} +#message-preview .mail-list-wrapper .mail-count { + font-size: 0.8em; + width: 100%; +} +#message-preview .mail-list-wrapper .mail-delete { + display: none; +} +#message-preview .mail-list-wrapper .mail-date, +#message-preview .mail-list-wrapper .mail-from, +#message-preview .mail-list-wrapper .mail-count { + opacity: 0.5; + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} +#message-preview .mail-list-wrapper:hover .mail-date, +#message-preview .mail-list-wrapper:hover .mail-from, +#message-preview .mail-list-wrapper:hover .mail-count { + opacity: 1; + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} #mail-display-subject { background-color: #f6f7f8; color: #2d2d2d; diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index 631a63333a..abbf447cbb 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -1599,6 +1599,25 @@ ul.tabs { .mail-delete { float: right; } } +#message-preview { + margin-top: 1em; + box-sizing: border-box; + * { box-sizing: border-box; white-space: nowrap;} + .mail-list-wrapper { + .mail-subject { + width: 100%; + } + .mail-date { font-size: 0.8em; width: 25%; text-align: right} + .mail-from { font-size: 0.8em; width: 75%;} + .mail-count { font-size: 0.8em; width: 100%;} + .mail-delete { display: none;} + + & .mail-date, & .mail-from, & .mail-count { .opaque(0.5); } + &:hover .mail-date, &:hover .mail-from, &:hover .mail-count { .opaque(1); } + } +} + + #mail-display-subject { background-color: @MailDisplaySubjectBackgroundColor; color: @MailDisplaySubjectColor; @@ -1816,4 +1835,3 @@ footer { height: 100px; display: table-row; } .fbrowser.file p { display: inline; white-space: nowrap; } .fbrowser .upload { clear: both; padding-top: 1em;} - diff --git a/view/theme/quattro/templates/message_side.tpl b/view/theme/quattro/templates/message_side.tpl index 084099c548..bd32f74335 100644 --- a/view/theme/quattro/templates/message_side.tpl +++ b/view/theme/quattro/templates/message_side.tpl @@ -1,10 +1,10 @@
- - - + + {{if $tabs}} +
+ {{$tabs}} +
+ {{/if}} +
From bb7330cf2e21f3f2ef6de134ad9789e5fa755cf4 Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Mon, 21 Dec 2015 15:51:21 +0100 Subject: [PATCH 47/52] Update CHANGELOG --- CHANGELOG | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 80 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 5b51a5511f..eb4aca286f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,85 @@ +Version 3.4.3 + What's new for the users: + Updates to the documentation (silke, tobiasd, annando, rebeka-catalina) + Updated translations (tobiasd & translation teams) + New "Credits" page (tobiasd) + New custom font icon set (tobiasd, Andi Stadler) + Support to events attendance. Users can mark their participation to an event (rabuzarus, tobiasd, fabrixxm, annando) + Revised templates and used interaction in contacts lists (rabuzarus) + Mobile support for Vier theme (annando, fabrixxm) + Events editing and deletion from stream (annado) + Private forums are mentioned automatically like community forums (rabuzarus) + Show profile pictures and pending notifications on manage page (rabuzarus, annando) + Show Profile photo album only to owner and authenticated contacts (rabuzarus) + User language setting is now between settings in user settings page (fabrixxm) + Search for remote users in form of "@user@domain.tld" is supported (issue #1595) (annando) + Optionally show geo informations of uploaded photos, backport from Red (rabuzarus) + Setting for the first day of the week for events calendar (annando) + Reduced profile view with "show more" link (annando) + Show more informations to users when following a new contact (annando) + Renamed "Statusnet" to "GNU Social" (annando) + Image dialog insert link to image page instead of direct image (fabrixxm) + In registration page make clear that we only need a 'real-looking' name (issue #1898) (tobiasd, n4rky) + Unseen items per groups are shown (issue #1718) (strk, rabuzarus, fabrixxm) + Unseen items in forumlist widget (rabuzarus) + Preview the last five conversations in private message's sidebar (FlxAlbroscheit, fabrixxm) + Don't get notifications about own posts (strk) + Profile page shows a "Subscribe to atom feed" link (annando) + Contact list shows only contacts from supported networks (ananndo) + username@hostname is used instead of full urls (issue #1925) (annando) + Various small OStatus improvements (annando) + Contact's posts are shown in a dedicated page (annando) + Module name is shown in page title to ease browser history navigation (issue #2079) (tobiasd) + What's new for admins: + Forumlist functionality moved from plugin to core (rabuzarus, annando) + Changes on poller/workers limits management (annando) + Diaspora and OStatus can be enabled only if requirements are satisfied (annando) + Support for additional passwords for ejabberd (annando) + Use proxy for profile photos (annando) + 'Reload active themes' in theme admin page (fabrixxm) + Install routine checks for ImageMagick and GIF support (fabrixxm) + Install routine checks for availability of "mcrypt_create_iv()" function, needed for RINO2 (fabrixxm) + Only suported themes are shown in admin page (annando) + Optimized SQL queries (annando) + System optionally perform an optimize pass on tables in cron, with maximum table size and minimum fragmentation level settings (annando) + New access keys in profile and contact pages (rabuzarus, annando) + Support for a new Diaspora command for post retraction (annando) + Show an info message if an empty contact group is shown (issue #1871) (annando) + User setting to disable network page autoupdate (issue #1921) (annando) + Settings to limit or permit access to crawler to search page (annando) + What's new for developers: + Themes can show Events entry in navbar (annando) + Themes can now override colorbox (fabrixxm) + Updated Vagrant development VM (silke, hauke) + New hook 'template_vars' (fabrixxm) + $baseurl variable is passed to all templates by default (fabrixxm) + OStatus delivery code is moved in new function (annando) + Doxygen config file and initial documetation of code (rabuzarus) + Full rewrite of util/php2po.php (fabrixxm) + Bugfixs: + Remote self works again (annando) + Fix feeds mistakenly recognized as OStatus (issue #1914) (annando) + Report invalid feeds to user (issue #1913) (annando) + Fix Update contact data functionality (annando) + Fix proxy function with embedded images (annando) + Fix Diaspora unidirectional connect request (annando) + Fix empty poco response (annando) + Fix API for andStatus (issue#1427, AndStatus issue #241) (annando) + Fix expiration of items (fabrixxm) + Fix javascript contact deletion confirmation dialog (issue #1986) (fabrixxm) + Admin wasn't able to change settings of not currently in use themes. Fixed (issue #2022) (fabrixxm) + Fix rapid repeated requests to GNUSocial instance (issue #2038) (annando) + Fix install routine css when mod_rewrite doesn't works (issue #2071) (fabrixxm) + Fix code to be compliant with minimum required PHP version (issue #2066) (fabrixxm, rabuzarus) + Fix feedback after succesfull registration (issue #2060) (annando) + Fix mention completition popup with TinyMCE (issue #1920) (fabrixxm) + Fix photo cache and proxy when installed in subfolder (ddorian1) + Fix bbcode conversion of the about text for the profile (issue #1607) (annando) + + Version 3.4.2 - Updates to the documentation (tobias, silke, annando) + Updates to the documentation (tobiasd, silke, annando) Updates to the translations (tobiasd & translation teams) Updates to themes frost-mobile, vier, duepuntozero, quattro (annando, tobiasd) Enancements of the communications via OStatus and Diaspora protocols (annando) From d4dd863b4b0b75c34a40300737b4892e7a88be20 Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Mon, 21 Dec 2015 16:19:56 +0100 Subject: [PATCH 48/52] quattro: style managed unread notification --- view/theme/quattro/dark/style.css | 16 ++++++++++++++++ view/theme/quattro/green/style.css | 16 ++++++++++++++++ view/theme/quattro/lilac/style.css | 16 ++++++++++++++++ view/theme/quattro/quattro.less | 18 ++++++++++++++++++ 4 files changed, 66 insertions(+) diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index c5f695679e..1b021687cd 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -2113,6 +2113,22 @@ ul.tabs li .active { width: 50px; float: left; } +/* manage page */ +.identity-match-photo { + position: relative; +} +.identity-match-photo .manage-notify { + background-color: #19AEFF; + border-radius: 5px; + font-size: 10px; + padding: 1px 3px; + min-width: 15px; + text-align: right; + position: absolute; + right: 10px; + top: -5px; + color: #ffffff; +} /* videos page */ .videos .video-top-wrapper { width: 200px; diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index aaca41312b..4c50fb35fa 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -2113,6 +2113,22 @@ ul.tabs li .active { width: 50px; float: left; } +/* manage page */ +.identity-match-photo { + position: relative; +} +.identity-match-photo .manage-notify { + background-color: #19AEFF; + border-radius: 5px; + font-size: 10px; + padding: 1px 3px; + min-width: 15px; + text-align: right; + position: absolute; + right: 10px; + top: -5px; + color: #ffffff; +} /* videos page */ .videos .video-top-wrapper { width: 200px; diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index 5801644952..7fb505dec5 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -2113,6 +2113,22 @@ ul.tabs li .active { width: 50px; float: left; } +/* manage page */ +.identity-match-photo { + position: relative; +} +.identity-match-photo .manage-notify { + background-color: #19AEFF; + border-radius: 5px; + font-size: 10px; + padding: 1px 3px; + min-width: 15px; + text-align: right; + position: absolute; + right: 10px; + top: -5px; + color: #ffffff; +} /* videos page */ .videos .video-top-wrapper { width: 200px; diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index abbf447cbb..d47263b500 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -1404,6 +1404,24 @@ ul.tabs { width: 50px; float: left; } +/* manage page */ +.identity-match-photo { + position: relative; + .manage-notify { + background-color: #19AEFF; + border-radius: 5px; + font-size: 10px; + padding: 1px 3px; + min-width: 15px; + text-align: right; + position: absolute; + right: 10px; + top: -5px; + color: rgb(255, 255, 255); + } +} + + /* videos page */ .videos { .video-top-wrapper { From 770bba021e57b97fee07e0c3b75f5564141ab4de Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Mon, 21 Dec 2015 16:41:55 +0100 Subject: [PATCH 49/52] call resizeIframe() function until size is stable (iframe content finished to load, hopefully) should remove scrollbars on rich oembeds --- js/main.js | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/js/main.js b/js/main.js index f67d7183ce..f106b3daf4 100644 --- a/js/main.js +++ b/js/main.js @@ -1,6 +1,21 @@ function resizeIframe(obj) { obj.style.height = 0; - obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px'; + _resizeIframe(obj, 0); + } + + function _resizeIframe(obj, desth) { + var h = obj.style.height; + var ch = obj.contentWindow.document.body.scrollHeight + 'px'; + if (h==ch) { + return; + } + console.log("_resizeIframe", obj, desth, ch); + if (desth!=ch) { + setTimeout(_resizeIframe, 500, obj, ch); + } else { + obj.style.height = ch; + setTimeout(_resizeIframe, 1000, obj, ch); + } } function openClose(theID) { From 156be7a17b5377ed1460060a9b39e7763b8e7a26 Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Tue, 22 Dec 2015 09:08:53 +0100 Subject: [PATCH 50/52] Update CHANGELOG --- CHANGELOG | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index eb4aca286f..b393899df8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -7,7 +7,7 @@ Version 3.4.3 Support to events attendance. Users can mark their participation to an event (rabuzarus, tobiasd, fabrixxm, annando) Revised templates and used interaction in contacts lists (rabuzarus) Mobile support for Vier theme (annando, fabrixxm) - Events editing and deletion from stream (annado) + Events editing and deletion from stream (annando) Private forums are mentioned automatically like community forums (rabuzarus) Show profile pictures and pending notifications on manage page (rabuzarus, annando) Show Profile photo album only to owner and authenticated contacts (rabuzarus) @@ -41,7 +41,7 @@ Version 3.4.3 Install routine checks for availability of "mcrypt_create_iv()" function, needed for RINO2 (fabrixxm) Only suported themes are shown in admin page (annando) Optimized SQL queries (annando) - System optionally perform an optimize pass on tables in cron, with maximum table size and minimum fragmentation level settings (annando) + System perform an optimize pass on tables in cron, with maximum table size and minimum fragmentation level settings (annando) New access keys in profile and contact pages (rabuzarus, annando) Support for a new Diaspora command for post retraction (annando) Show an info message if an empty contact group is shown (issue #1871) (annando) From 21f044e30569f6688ebd1e900cb11d6081e94b51 Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Tue, 22 Dec 2015 10:45:43 +0100 Subject: [PATCH 51/52] Friendica 3.4.3 --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index cc56949009..af40027b0d 100644 --- a/boot.php +++ b/boot.php @@ -17,7 +17,7 @@ require_once('include/dbstructure.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Lily of the valley'); -define ( 'FRIENDICA_VERSION', '3.4.3-rc' ); +define ( 'FRIENDICA_VERSION', '3.4.3' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1191 ); define ( 'EOL', "
\r\n" ); From 71255d04a2cd075402743260ffc51637b7704db5 Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Tue, 22 Dec 2015 10:52:00 +0100 Subject: [PATCH 52/52] Friendica 3.5-dev --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index af40027b0d..3861f3ec38 100644 --- a/boot.php +++ b/boot.php @@ -17,7 +17,7 @@ require_once('include/dbstructure.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Lily of the valley'); -define ( 'FRIENDICA_VERSION', '3.4.3' ); +define ( 'FRIENDICA_VERSION', '3.5-dev' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1191 ); define ( 'EOL', "
\r\n" );