From 8a40c718fb9f9272ea99094a760f399e323cd66c Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Fri, 11 Mar 2011 00:18:29 +0100 Subject: [PATCH 01/17] Move translation functions. Add tt() for plural cases. --- boot.php | 27 +++++--------------------- include/pgettext.php | 46 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+), 22 deletions(-) create mode 100644 include/pgettext.php diff --git a/boot.php b/boot.php index 4c3a923dce..19c6d88786 100644 --- a/boot.php +++ b/boot.php @@ -159,6 +159,11 @@ if (get_magic_quotes_gpc()) { unset($process); } +/* + * translation system + */ +require_once("include/pgettext.php"); + /** * @@ -601,28 +606,6 @@ function replace_macros($s,$r) { }} -// load string translation table for alternate language - -if(! function_exists('load_translation_table')) { -function load_translation_table($lang) { - global $a; - - if(file_exists("view/$lang/strings.php")) - include("view/$lang/strings.php"); -}} - -// translate string if translation exists - -if(! function_exists('t')) { -function t($s) { - - $a = get_app(); - - if(x($a->strings,$s)) - return $a->strings[$s]; - return $s; -}} - // curl wrapper. If binary flag is true, return binary // results. diff --git a/include/pgettext.php b/include/pgettext.php new file mode 100644 index 0000000000..2ffee70bcc --- /dev/null +++ b/include/pgettext.php @@ -0,0 +1,46 @@ +strings,$s)) { + $t = $a->strings[$s]; + return is_array($t)?$t[0]:$t; + } + return $s; +}} + +if(! function_exists('tt')){ +function tt($singular, $plural, $count){ + + $a = get_app(); + + if(x($a->strings,$singular)) { + $t = $a->strings[$singular]; + $k = string_plural_select($count); + return is_array($t)?$t[$k]:$t; + } + + if ($count!=1){ + return $plural; + } else { + return $singular; + } +}} \ No newline at end of file From a44f5653bfa109f95f10a510403c68accdfb2a66 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Fri, 11 Mar 2011 00:20:03 +0100 Subject: [PATCH 02/17] script sh to run xgettext on code and prepare messages.mo file --- util/run_xgettext.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 util/run_xgettext.sh diff --git a/util/run_xgettext.sh b/util/run_xgettext.sh new file mode 100644 index 0000000000..cd33e62dd5 --- /dev/null +++ b/util/run_xgettext.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +cd $(dirname $0) + +KEYWORDS="-k -kt -ktt:1,2" + +find .. -name "*.php" | xargs xgettext $KEYWORDS --from-code=UTF-8 + +F9KVERSION=$(sed -n "s/.*'FRIENDIKA_VERSION'.*'\([0-9.]*\)'.*/\1/p" ../boot.php); + + +sed -i "s/SOME DESCRIPTIVE TITLE./FRIENDIKA Distribuited Social Network/g" messages.po +sed -i "s/YEAR THE PACKAGE'S COPYRIGHT HOLDER/2010, 2011 Mike Macgirvin/g" messages.po +sed -i "s/FIRST AUTHOR , YEAR./Mike Macgirvin, 2010/g" messages.po +sed -i "s/PACKAGE VERSION/$F9KVERSION/g" messages.po +sed -i "s/PACKAGE/Friendika/g" messages.po +sed -i "s/CHARSET/UTF-8/g" messages.po +sed -i "s|#: \.\./|#: ../../|g" messages.po + From 89781ba428f553e8eb4f415832e7e575adf141e0 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Fri, 11 Mar 2011 00:21:05 +0100 Subject: [PATCH 03/17] Convert .mo file to strings.php --- util/po2php.php | 72 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 util/po2php.php diff --git a/util/po2php.php b/util/po2php.php new file mode 100644 index 0000000000..15ee1cd2c2 --- /dev/null +++ b/util/po2php.php @@ -0,0 +1,72 @@ +\n\n"; + return; + } + + $mofile = $argv[1]; + $outfile = dirname($mofile)."/strings.php"; + + if (!file_exists($mofile)){ + print "Unable to find '$mofile'\n"; + return; + } + + print "Out to '$outfile'\n"; + + $out="strings['.$k.'] = '; + } else { + $k = ""; + } + } + + if ($k!="" && substr($l,0,7)=="msgstr "){ + $v = substr($l,7,$len-8); + $out .= $v; + } + if ($k!="" && substr($l,0,7)=="msgstr["){ + if (!$arr) { + $arr=True; + $out .= "array(\n"; + } + $match=Array(); + preg_match("|\[([0-9]*)\] (.*)|", $l, $match); + $out .= "\t". $match[1]." => ". $match[2] .",\n"; + } + + } + + if ($k!="") $out .= $arr?");\n":";\n"; + + file_put_contents($outfile, $out); + +} + +if (array_search(__file__,get_included_files())===0){ + po2php_run($argv,$argc); +} \ No newline at end of file From 9f7878057f356ba785de26877a660bb025cae31d Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Fri, 11 Mar 2011 00:22:21 +0100 Subject: [PATCH 04/17] update source strings --- mod/contacts.php | 8 +- mod/dfrn_confirm.php | 4 +- mod/dfrn_notify.php | 5 +- mod/dfrn_poll.php | 4 +- mod/dfrn_request.php | 16 +- mod/home.php | 2 +- mod/invite.php | 10 +- mod/item.php | 14 +- mod/like.php | 2 +- mod/lostpass.php | 2 +- mod/manage.php | 2 +- mod/openid.php | 2 +- mod/profile_photo.php | 10 +- mod/register.php | 4 +- mod/regmod.php | 4 +- mod/viewcontacts.php | 3 +- mod/wall_upload.php | 2 +- util/messages.po | 2410 +++++++++++++++++++++++++++++++++++++++++ 18 files changed, 2458 insertions(+), 46 deletions(-) create mode 100644 util/messages.po diff --git a/mod/contacts.php b/mod/contacts.php index c2d28dc1f2..029330b7ab 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -137,7 +137,8 @@ function contacts_content(&$a) { intval(local_user()) ); if($r) { - notice( t('Contact has been ') . (($blocked) ? t('blocked') : t('unblocked')) . EOL ); + //notice( t('Contact has been ') . (($blocked) ? t('blocked') : t('unblocked')) . EOL ); + notice( (($blocked) ? t('Contact has been blocked') : t('Contact has been unblocked')) . EOL ); } goaway($a->get_baseurl() . '/contacts/' . $contact_id); return; // NOTREACHED @@ -151,7 +152,7 @@ function contacts_content(&$a) { intval(local_user()) ); if($r) { - notice( t('Contact has been ') . (($readonly) ? t('ignored') : t('unignored')) . EOL ); + notice( (($readonly) ? t('Contact has been ignored') : t('Contact has been unignored')) . EOL ); } goaway($a->get_baseurl() . '/contacts/' . $contact_id); return; // NOTREACHED @@ -364,13 +365,14 @@ function contacts_content(&$a) { $o .= replace_macros($tpl, array( - '$img_hover' => t('Visit ') . $rr['name'] . t('\'s profile'), + '$img_hover' => t('Visit $username\'s profile'), '$edit_hover' => t('Edit contact'), '$id' => $rr['id'], '$alt_text' => $alt_text, '$dir_icon' => $dir_icon, '$thumb' => $rr['thumb'], '$name' => substr($rr['name'],0,20), + '$username' => $rr['name'], '$sparkle' => $sparkle, '$url' => $url )); diff --git a/mod/dfrn_confirm.php b/mod/dfrn_confirm.php index 1b42c13b8a..edca629aec 100644 --- a/mod/dfrn_confirm.php +++ b/mod/dfrn_confirm.php @@ -491,7 +491,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) { dbesc($node)); if(! count($r)) { - $message = t('No user record found for ') . '\'' . $node . '\''; + $message = sprintf(t('No user record found for \'%s\' '), $node); xml_status(3,$message); // failure // NOTREACHED } @@ -645,7 +645,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) { '$uid' => $newuid ) ); - $res = mail($r[0]['email'], t("Connection accepted at ") . $a->config['sitename'], + $res = mail($r[0]['email'], sprintf(t("Connection accepted at %s"), $a->config['sitename']), $email_tpl, 'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] ); if(!$res) { // pointless throwing an error here and confusing the person at the other end of the wire. diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php index f447b54533..f288e9bebe 100644 --- a/mod/dfrn_notify.php +++ b/mod/dfrn_notify.php @@ -385,7 +385,7 @@ function dfrn_notify_post(&$a) { '$body' => html_entity_decode(strip_tags(bbcode(stripslashes($datarray['body']))), ENT_QUOTES, 'UTF-8') )); - $res = mail($importer['email'], $from . t(' commented on an item at ') . $a->config['sitename'], + $res = mail($importer['email'], sprintf(t('%s commented on an item at %s'), $from , $a->config['sitename']), $email_tpl, "From: " . t('Administrator') . '@' . $a->get_hostname() ); } } @@ -471,8 +471,7 @@ function dfrn_notify_post(&$a) { '$body' => html_entity_decode(strip_tags(bbcode(stripslashes($datarray['body']))), ENT_QUOTES, 'UTF-8') )); - $res = mail($importer['email'], $from . t(" commented on an item at ") - . $a->config['sitename'], + $res = mail($importer['email'], sprintf(t("%s commented on an item at %s"), $from ,$a->config['sitename']), $email_tpl,t("From: Administrator@") . $a->get_hostname() ); break; } diff --git a/mod/dfrn_poll.php b/mod/dfrn_poll.php index 334e103079..bacfe9b94d 100644 --- a/mod/dfrn_poll.php +++ b/mod/dfrn_poll.php @@ -75,7 +75,7 @@ function dfrn_poll_init(&$a) { $_SESSION['authenticated'] = 1; $_SESSION['visitor_id'] = $r[0]['id']; $_SESSION['visitor_home'] = $r[0]['url']; - notice( $r[0]['username'] . t(' welcomes ') . $r[0]['name'] . EOL); + notice( sprintf(t('%s welcomes %s'), $r[0]['username'] , $r[0]['name']) . EOL); // Visitors get 1 day session. $session_id = session_id(); $expire = time() + 86400; @@ -389,7 +389,7 @@ function dfrn_poll_content(&$a) { $_SESSION['authenticated'] = 1; $_SESSION['visitor_id'] = $r[0]['id']; $_SESSION['visitor_home'] = $r[0]['url']; - notice( $r[0]['username'] . t(' welcomes ') . $r[0]['name'] . EOL); + notice( sprintf(t('%s welcomes %s'), $r[0]['username'] , $r[0]['name']) . EOL); // Visitors get 1 day session. $session_id = session_id(); $expire = time() + 86400; diff --git a/mod/dfrn_request.php b/mod/dfrn_request.php index 24c466bba5..5a2f3c2828 100644 --- a/mod/dfrn_request.php +++ b/mod/dfrn_request.php @@ -123,9 +123,9 @@ function dfrn_request_post(&$a) { notice( t('Warning: profile location has no profile photo.') . EOL ); $invalid = validate_dfrn($parms); if($invalid) { - notice( $invalid . t(' required parameter') - . (($invalid == 1) ? t(" was ") : t("s were ") ) - . t("not found at the given location.") . EOL ) ; + notice( sprintf( tt("%d required parameter was not found at the given location", + "%d required parameters were not found at the given location", + $invalid), $invalid) . EOL ); return; } } @@ -238,7 +238,7 @@ function dfrn_request_post(&$a) { intval($uid) ); if(count($r) > $maxreq) { - notice( $a->profile['name'] . t(' has received too many connection requests today.') . EOL); + notice( sprintf( t('%s has received too many connection requests today.'), $a->profile['name']) . EOL); notice( t('Spam protection measures have been invoked.') . EOL); notice( t('Friends are advised to please try again in 24 hours.') . EOL); return; @@ -306,7 +306,7 @@ function dfrn_request_post(&$a) { return; } elseif($ret[0]['rel'] == REL_BUD) { - notice( t('Apparently you are already friends with .') . $a->profile['name'] . EOL); + notice( sprintf( t('Apparently you are already friends with %s.'), $a->profile['name']) . EOL); return; } else { @@ -354,9 +354,9 @@ function dfrn_request_post(&$a) { notice( t('Warning: profile location has no profile photo.') . EOL ); $invalid = validate_dfrn($parms); if($invalid) { - notice( $invalid . t(' required parameter') - . (($invalid == 1) ? t(" was ") : t("s were ") ) - . t("not found at the given location.") . EOL ) ; + notice( sprintf( tt("%d required parameter was not found at the given location", + "%d required parameters were not found at the given location", + $invalid), $invalid) . EOL ); return; } diff --git a/mod/home.php b/mod/home.php index 20d38cfca9..4fca1cbc23 100644 --- a/mod/home.php +++ b/mod/home.php @@ -20,7 +20,7 @@ function home_content(&$a) { if(x($_SESSION,'theme')) unset($_SESSION['theme']); - $o .= '

' . ((x($a->config,'sitename')) ? t("Welcome to ").$a->config['sitename'] : "" ) . '

'; + $o .= '

' . ((x($a->config,'sitename')) ? sprintf(t("Welcome to %s"),$a->config['sitename']) : "" ) . '

'; if(file_exists('home.html')) $o .= file_get_contents('home.html'); diff --git a/mod/invite.php b/mod/invite.php index f67432746f..e3662d758b 100644 --- a/mod/invite.php +++ b/mod/invite.php @@ -25,21 +25,21 @@ function invite_post(&$a) { $recip = trim($recip); if(! valid_email($recip)) { - notice( $recip . t(' : ') . t('Not a valid email address.') . EOL); + notice( sprintf( t('%s : Not a valid email address.'), $recip) . EOL); continue; } - $res = mail($recip, t('Please join my network on ') . $a->config['sitename'], + $res = mail($recip, sprintf(t('Please join my network on %s'), $a->config['sitename']), $message, "From: " . $a->user['email']); if($res) { $total ++; } else { - notice( $recip . t(' : ') . t('Message delivery failed.') . EOL); + notice( sprintf( t('%s : Message delivery failed.'), $recip) . EOL); } } - notice( $total . t(' messages sent.') . EOL); + notice( sprintf(tt("%d message sent.", "%d messages sent.", $total), $total) . EOL); return; } @@ -57,7 +57,7 @@ function invite_content(&$a) { '$invite' => t('Send invitations'), '$addr_text' => t('Enter email addresses, one per line:'), '$msg_text' => t('Your message:'), - '$default_message' => t('Please join my social network on ') . $a->config['sitename'] . "\r\n" . "\r\n" + '$default_message' => sprintf(t('Please join my social network on %s'), $a->config['sitename']) . "\r\n" . "\r\n" . t('To accept this invitation, please visit:') . "\r\n" . "\r\n" . $a->get_baseurl() . "\r\n" . "\r\n" . t('Once you have registered, please connect with me via my profile page at:') . "\r\n" . "\r\n" . $a->get_baseurl() . '/profile/' . $a->user['nickname'] , diff --git a/mod/item.php b/mod/item.php index 5989d09674..9e03e76cd3 100644 --- a/mod/item.php +++ b/mod/item.php @@ -419,8 +419,8 @@ function item_post(&$a) { '$body' => strip_tags(bbcode($datarray['body'])) )); - $res = mail($user['email'], $from . t(" commented on your item at ") . $a->config['sitename'], - $email_tpl,t("From: Administrator@") . $a->get_hostname() ); + $res = mail($user['email'], sprintf(t("%s commented on your item at %s"),$from,$a->config['sitename']), + $email_tpl,"From: " . t("Administrator") . "@" . $a->get_hostname() ); } } else { @@ -442,8 +442,8 @@ function item_post(&$a) { '$body' => strip_tags(bbcode($datarray['body'])) )); - $res = mail($user['email'], $from . t(" posted on your profile wall at ") . $a->config['sitename'], - $email_tpl,t("From: Administrator@") . $a->get_hostname() ); + $res = mail($user['email'], sprintf(t("%s posted on your profile wall at %s"),$from, $a->config['sitename']), + $email_tpl,"From: " . t("Administrator@") . "@" . $a->get_hostname() ); } } @@ -486,13 +486,13 @@ function item_post(&$a) { $addr = trim($recip); if(! strlen($addr)) continue; - $disclaimer = '
' . t('This message was sent to you by ') . $a->user['username'] - . t(', a member of the Friendika social network.') . '
'; + $disclaimer = '
' . sprintf(t('This message was sent to you by %s, a member of the Friendika social network.'),$a->user['username']) + . '
'; $disclaimer .= t('You may visit them online at') . ' ' . $a->get_baseurl() . '/profile/' . $a->user['nickname'] . '
'; $disclaimer .= t('Please contact the sender by replying to this post if you do not wish to receive these messages.') . '
'; - $subject = '[Friendika]' . ' ' . $a->user['username'] . ' ' . t('posted an update.'); + $subject = '[Friendika]' . ' ' . sprintf( t('%s posted an update.'),$a->user['username']); $headers = 'From: ' . $a->user['username'] . ' <' . $a->user['email'] . '>' . "\n"; $headers .= 'MIME-Version: 1.0' . "\n"; $headers .= 'Content-Type: text/html; charset=UTF-8' . "\n"; diff --git a/mod/like.php b/mod/like.php index 3a8ca4b7d3..c07f3097ea 100644 --- a/mod/like.php +++ b/mod/like.php @@ -148,7 +148,7 @@ EOT; $arr['author-link'] = $contact['url']; $arr['author-avatar'] = $contact['thumb']; $arr['body'] = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]' . ' ' . $bodyverb . ' ' - . '[url=' . $item['author-link'] . ']' . $item['author-name'] . t('\'s') . '[/url]' . ' ' + . '[url=' . $item['author-link'] . ']' . sprintf(t("%s's"),$item['author-name']) . '[/url]' . ' ' . '[url=' . $a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . ']' . $post_type . '[/url]' ; $arr['verb'] = $activity; diff --git a/mod/lostpass.php b/mod/lostpass.php index 30bdc059c3..3dcf41be73 100644 --- a/mod/lostpass.php +++ b/mod/lostpass.php @@ -35,7 +35,7 @@ function lostpass_post(&$a) { '$reset_link' => $a->get_baseurl() . '/lostpass?verify=' . $new_password )); - $res = mail($email, t('Password reset requested at ') . $a->config['sitename'], + $res = mail($email, sprintf(t('Password reset requested at %s'),$a->config['sitename']), $email_tpl, 'From: ' . t('Administrator') . '@' . $_SERVER[SERVER_NAME]); goaway($a->get_baseurl()); diff --git a/mod/manage.php b/mod/manage.php index 9981a04463..f30a04348c 100644 --- a/mod/manage.php +++ b/mod/manage.php @@ -34,7 +34,7 @@ function manage_post(&$a) { $_SESSION['page_flags'] = $r[0]['page-flags']; $_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $r[0]['nickname']; - notice( t("Welcome back ") . $r[0]['username'] . EOL); + notice( sprintf(t("Welcome back %s"), $r[0]['username']) . EOL); $a->user = $r[0]; if(strlen($a->user['timezone'])) { diff --git a/mod/openid.php b/mod/openid.php index 6ccd28e5b6..68d7c3fd2a 100644 --- a/mod/openid.php +++ b/mod/openid.php @@ -70,7 +70,7 @@ function openid_content(&$a) { $_SESSION['page_flags'] = $r[0]['page-flags']; $_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $r[0]['nickname']; - notice( t("Welcome back ") . $r[0]['username'] . EOL); + notice( sprintf( t("Welcome back "), $r[0]['username']) . EOL); $a->user = $r[0]; if(strlen($a->user['timezone'])) { diff --git a/mod/profile_photo.php b/mod/profile_photo.php index 0f84a85c92..748adc438c 100644 --- a/mod/profile_photo.php +++ b/mod/profile_photo.php @@ -58,21 +58,21 @@ function profile_photo_post(&$a) { $r = $im->store(local_user(), 0, $base_image['resource-id'],$base_image['filename'], t('Profile Photos'), 4, 1); if($r === false) - notice ( t('Image size reduction [175] failed.') . EOL ); + notice ( sprintf(t('Image size reduction [%s] failed.'),"175") . EOL ); $im->scaleImage(80); $r = $im->store(local_user(), 0, $base_image['resource-id'],$base_image['filename'], t('Profile Photos'), 5, 1); if($r === false) - notice( t('Image size reduction [80] failed.') . EOL ); + notice( sprintf(t('Image size reduction [%s] failed.'),"80") . EOL ); $im->scaleImage(48); $r = $im->store(local_user(), 0, $base_image['resource-id'],$base_image['filename'], t('Profile Photos'), 6, 1); if($r === false) - notice( t('Image size reduction [48] failed.') . EOL ); + notice( sprintf(t('Image size reduction [%s] failed.'),"48") . EOL ); // Unset the profile photo flag from any other photos I own @@ -106,7 +106,7 @@ function profile_photo_post(&$a) { $maximagesize = get_config('system','maximagesize'); if(($maximagesize) && ($filesize > $maximagesize)) { - notice( t('Image exceeds size limit of ') . $maximagesize . EOL); + notice( sprintf(t('Image exceeds size limit of %d'), $maximagesize) . EOL); @unlink($src); return; } @@ -234,7 +234,7 @@ function profile_photo_crop_ui_head(&$a, $ph){ $r = $ph->store(local_user(), 0 , $hash, $filename, t('Profile Photos'), 1 ); if($r === false) - notice( t('Image size reduction [640] failed.') . EOL ); + notice( sprintf(t('Image size reduction [%s] failed.'),"640") . EOL ); else $smallest = 1; } diff --git a/mod/register.php b/mod/register.php index 13d770fdab..3530ef5883 100644 --- a/mod/register.php +++ b/mod/register.php @@ -307,7 +307,7 @@ function register_post(&$a) { '$password' => $new_password, '$uid' => $newuid )); - $res = mail($email, t('Registration details for ') . $a->config['sitename'], + $res = mail($email, sprintf(t('Registration details for %s'), $a->config['sitename']), $email_tpl, 'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME']); @@ -344,7 +344,7 @@ function register_post(&$a) { '$hash' => $hash )); - $res = mail($a->config['admin_email'], t('Registration request at ') . $a->config['sitename'], + $res = mail($a->config['admin_email'], sprintf(t('Registration request at %s'), $a->config['sitename']), $email_tpl,'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME']); if($res) { diff --git a/mod/regmod.php b/mod/regmod.php index 00cfa06e21..2cbe810bc9 100644 --- a/mod/regmod.php +++ b/mod/regmod.php @@ -51,7 +51,7 @@ function regmod_content(&$a) { $r = q("DELETE FROM `register` WHERE `hash` = '%s' LIMIT 1", dbesc($register[0]['hash']) ); - notice( t('Registration revoked for ') . $user[0]['username'] . EOL); + notice( sprintf(t('Registration revoked for %s'), $user[0]['username']) . EOL); return; } @@ -89,7 +89,7 @@ function regmod_content(&$a) { '$uid' => $user[0]['uid'] )); - $res = mail($user[0]['email'], t('Registration details for '). $a->config['sitename'], + $res = mail($user[0]['email'], sprintf(t('Registration details for %s'), $a->config['sitename']), $email_tpl,'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] ); if($res) { diff --git a/mod/viewcontacts.php b/mod/viewcontacts.php index 90ff85b9db..063637bf9e 100644 --- a/mod/viewcontacts.php +++ b/mod/viewcontacts.php @@ -41,9 +41,10 @@ function viewcontacts_content(&$a) { $o .= replace_macros($tpl, array( '$id' => $rr['id'], - '$alt_text' => t('Visit ') . $rr['name'] . t('\'s profile'), + '$alt_text' => t('Visit $username\'s profile'), '$thumb' => $rr['thumb'], '$name' => substr($rr['name'],0,20), + '$username' => $rr['name'], '$url' => $rr['url'] )); } diff --git a/mod/wall_upload.php b/mod/wall_upload.php index b5725311d1..f7638b7307 100644 --- a/mod/wall_upload.php +++ b/mod/wall_upload.php @@ -53,7 +53,7 @@ function wall_upload_post(&$a) { $maximagesize = get_config('system','maximagesize'); if(($maximagesize) && ($filesize > $maximagesize)) { - notice( t('Image exceeds size limit of ') . $maximagesize . EOL); + notice( sprintf(t('Image exceeds size limit of %d'), $maximagesize) . EOL); @unlink($src); return; } diff --git a/util/messages.po b/util/messages.po new file mode 100644 index 0000000000..b543a39f60 --- /dev/null +++ b/util/messages.po @@ -0,0 +1,2410 @@ +# FRIENDIKA Distribuited Social Network +# Copyright (C) 2010, 2011 Mike Macgirvin +# This file is distributed under the same license as the Friendika package. +# Mike Macgirvin, 2010 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: 2.1.913\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-03-11 00:21+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#: ../../mod/network.php:6 ../mod/profiles.php:7 ../mod/profiles.php:224 +#: ../../mod/notifications.php:56 ../mod/message.php:8 ../mod/message.php:116 +#: ../../mod/manage.php:75 ../mod/dfrn_confirm.php:53 ../mod/wall_upload.php:42 +#: ../../mod/display.php:303 ../mod/regmod.php:16 ../mod/photos.php:85 +#: ../../mod/photos.php:772 ../mod/viewcontacts.php:13 ../mod/settings.php:14 +#: ../../mod/settings.php:19 ../mod/settings.php:206 ../mod/item.php:57 +#: ../../mod/item.php:616 ../mod/profile_photo.php:19 +#: ../../mod/profile_photo.php:133 ../mod/profile_photo.php:139 +#: ../../mod/profile_photo.php:150 ../mod/group.php:19 ../mod/invite.php:13 +#: ../../mod/invite.php:50 ../mod/register.php:25 ../mod/follow.php:8 +#: ../../mod/contacts.php:101 ../addon/facebook/facebook.php:110 ../index.php:244 +msgid "Permission denied." +msgstr "" + +#: ../../mod/network.php:18 +msgid "Normal View" +msgstr "" + +#: ../../mod/network.php:20 +msgid "New Item View" +msgstr "" + +#: ../../mod/network.php:91 ../mod/profile.php:151 +msgid "Share" +msgstr "" + +#: ../../mod/network.php:92 ../mod/message.php:185 ../mod/message.php:319 +#: ../../mod/profile.php:152 +msgid "Upload photo" +msgstr "" + +#: ../../mod/network.php:93 ../mod/message.php:186 ../mod/message.php:320 +#: ../../mod/profile.php:153 +msgid "Insert web link" +msgstr "" + +#: ../../mod/network.php:94 ../mod/profile.php:154 +msgid "Insert YouTube video" +msgstr "" + +#: ../../mod/network.php:95 ../mod/profile.php:155 +msgid "Set your location" +msgstr "" + +#: ../../mod/network.php:96 ../mod/profile.php:156 +msgid "Clear browser location" +msgstr "" + +#: ../../mod/network.php:97 ../mod/network.php:367 ../mod/message.php:187 +#: ../../mod/message.php:321 ../mod/display.php:158 ../mod/photos.php:1052 +#: ../../mod/profile.php:157 ../mod/profile.php:309 +msgid "Please wait" +msgstr "" + +#: ../../mod/network.php:98 ../mod/profile.php:158 +msgid "Permission settings" +msgstr "" + +#: ../../mod/network.php:104 ../mod/profile.php:165 +msgid "CC: email addresses" +msgstr "" + +#: ../../mod/network.php:106 ../mod/profile.php:167 +msgid "Example: bob@example.com, mary@example.com" +msgstr "" + +#: ../../mod/network.php:149 +msgid "No such group" +msgstr "" + +#: ../../mod/network.php:160 +msgid "Group is empty" +msgstr "" + +#: ../../mod/network.php:164 +msgid "Group: " +msgstr "" + +#: ../../mod/network.php:272 ../mod/network.php:434 ../mod/display.php:258 +#: ../../mod/profile.php:382 ../mod/search.php:116 +msgid "View $name's profile" +msgstr "" + +#: ../../mod/network.php:287 ../mod/search.php:131 +msgid "View in context" +msgstr "" + +#: ../../mod/network.php:321 ../mod/display.php:149 ../mod/photos.php:935 +#: ../../mod/profile.php:300 +msgid "Private Message" +msgstr "" + +#: ../../mod/network.php:365 ../mod/display.php:156 ../mod/photos.php:1050 +#: ../../mod/profile.php:307 +msgid "I like this (toggle)" +msgstr "" + +#: ../../mod/network.php:366 ../mod/display.php:157 ../mod/photos.php:1051 +#: ../../mod/profile.php:308 +msgid "I don't like this (toggle)" +msgstr "" + +#: ../../mod/network.php:380 ../mod/display.php:170 ../mod/photos.php:1071 +#: ../../mod/photos.php:1111 ../mod/photos.php:1140 ../mod/profile.php:321 +msgid "This is you" +msgstr "" + +#: ../../mod/network.php:386 ../mod/display.php:234 ../mod/photos.php:1168 +#: ../../mod/profile.php:361 ../mod/group.php:137 +msgid "Delete" +msgstr "" + +#: ../../mod/network.php:435 ../mod/display.php:259 +msgid "View $owner_name's profile" +msgstr "" + +#: ../../mod/network.php:436 ../mod/display.php:260 +msgid "to" +msgstr "" + +#: ../../mod/network.php:437 ../mod/display.php:261 +msgid "Wall-to-Wall" +msgstr "" + +#: ../../mod/network.php:438 ../mod/display.php:262 +msgid "via Wall-To-Wall:" +msgstr "" + +#: ../../mod/network.php:471 ../mod/display.php:312 ../mod/profile.php:414 +#: ../../mod/register.php:422 +msgid "" +"Shared content is covered by the Creative Commons Attribution 3.0 license." +msgstr "" + +#: ../../mod/profiles.php:21 ../mod/profiles.php:234 ../mod/profiles.php:339 +#: ../../mod/dfrn_confirm.php:62 +msgid "Profile not found." +msgstr "" + +#: ../../mod/profiles.php:28 +msgid "Profile Name is required." +msgstr "" + +#: ../../mod/profiles.php:196 +msgid "Profile updated." +msgstr "" + +#: ../../mod/profiles.php:251 +msgid "Profile deleted." +msgstr "" + +#: ../../mod/profiles.php:267 ../mod/profiles.php:298 +msgid "Profile-" +msgstr "" + +#: ../../mod/profiles.php:286 ../mod/profiles.php:325 +msgid "New profile created." +msgstr "" + +#: ../../mod/profiles.php:304 +msgid "Profile unavailable to clone." +msgstr "" + +#: ../../mod/profiles.php:367 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "" + +#: ../../mod/profiles.php:377 +msgid "Age: " +msgstr "" + +#: ../../mod/profiles.php:418 +msgid "Profile Image" +msgstr "" + +#: ../../mod/lostpass.php:38 +#, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: ../../mod/lostpass.php:39 ../mod/dfrn_confirm.php:649 +#: ../../mod/dfrn_notify.php:177 ../mod/dfrn_notify.php:389 ../mod/regmod.php:93 +#: ../../mod/item.php:423 ../mod/register.php:311 ../mod/register.php:348 +#: ../../mod/dfrn_request.php:545 ../include/items.php:1350 +msgid "Administrator" +msgstr "" + +#: ../../mod/notifications.php:28 +msgid "Invalid request identifier." +msgstr "" + +#: ../../mod/notifications.php:31 ../mod/notifications.php:134 +msgid "Discard" +msgstr "" + +#: ../../mod/notifications.php:41 ../mod/notifications.php:133 +msgid "Ignore" +msgstr "" + +#: ../../mod/notifications.php:72 +msgid "Show Ignored Requests" +msgstr "" + +#: ../../mod/notifications.php:72 +msgid "Hide Ignored Requests" +msgstr "" + +#: ../../mod/notifications.php:105 +msgid "Claims to be known to you: " +msgstr "" + +#: ../../mod/notifications.php:105 +msgid "yes" +msgstr "" + +#: ../../mod/notifications.php:105 +msgid "no" +msgstr "" + +#: ../../mod/notifications.php:111 +msgid "Approve as: " +msgstr "" + +#: ../../mod/notifications.php:112 +msgid "Friend" +msgstr "" + +#: ../../mod/notifications.php:113 +msgid "Fan/Admirer" +msgstr "" + +#: ../../mod/notifications.php:120 +msgid "Notification type: " +msgstr "" + +#: ../../mod/notifications.php:121 +msgid "Friend/Connect Request" +msgstr "" + +#: ../../mod/notifications.php:121 +msgid "New Follower" +msgstr "" + +#: ../../mod/notifications.php:131 +msgid "Approve" +msgstr "" + +#: ../../mod/notifications.php:140 +msgid "No notifications." +msgstr "" + +#: ../../mod/notifications.php:164 +msgid "No registrations." +msgstr "" + +#: ../../mod/install.php:30 +msgid "Could not create/connect to database." +msgstr "" + +#: ../../mod/install.php:35 +msgid "Connected to database." +msgstr "" + +#: ../../mod/install.php:66 +msgid "Database import succeeded." +msgstr "" + +#: ../../mod/install.php:67 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +msgstr "" + +#: ../../mod/install.php:68 ../mod/install.php:75 ../mod/install.php:175 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "" + +#: ../../mod/install.php:73 +msgid "Database import failed." +msgstr "" + +#: ../../mod/install.php:74 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "" + +#: ../../mod/install.php:84 +msgid "Welcome to Friendika." +msgstr "" + +#: ../../mod/install.php:109 ../mod/manage.php:106 ../mod/photos.php:800 +#: ../../mod/photos.php:857 ../mod/photos.php:1032 ../mod/invite.php:64 +#: ../../addon/facebook/facebook.php:151 ../addon/randplace/randplace.php:179 +#: ../../addon/twitter/twitter.php:156 ../addon/twitter/twitter.php:175 +#: ../../addon/statusnet/statusnet.php:163 ../addon/statusnet/statusnet.php:189 +#: ../../addon/statusnet/statusnet.php:207 +msgid "Submit" +msgstr "" + +#: ../../mod/install.php:124 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "" + +#: ../../mod/install.php:125 +msgid "" +"This is required. Please adjust the configuration file .htconfig.php " +"accordingly." +msgstr "" + +#: ../../mod/install.php:132 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "" + +#: ../../mod/install.php:133 +msgid "This is required for message delivery to work." +msgstr "" + +#: ../../mod/install.php:155 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: ../../mod/install.php:156 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." +msgstr "" + +#: ../../mod/install.php:165 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" + +#: ../../mod/install.php:167 +msgid "Error: libCURL PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:169 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "" + +#: ../../mod/install.php:171 +msgid "Error: openssl PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:173 +msgid "Error: mysqli PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:184 +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 "" + +#: ../../mod/install.php:185 +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 "" + +#: ../../mod/install.php:186 +msgid "" +"Please check with your site documentation or support people to see if this " +"situation can be corrected." +msgstr "" + +#: ../../mod/install.php:187 +msgid "" +"If not, you may be required to perform a manual installation. Please see the " +"file \"INSTALL.txt\" for instructions." +msgstr "" + +#: ../../mod/install.php:196 +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 "" + +#: ../../mod/install.php:211 +msgid "Errors encountered creating database tables." +msgstr "" + +#: ../../mod/message.php:18 +msgid "No recipient selected." +msgstr "" + +#: ../../mod/message.php:23 +msgid "[no subject]" +msgstr "" + +#: ../../mod/message.php:34 +msgid "Unable to locate contact information." +msgstr "" + +#: ../../mod/message.php:93 ../mod/wall_upload.php:79 ../mod/wall_upload.php:88 +#: ../../mod/wall_upload.php:95 ../mod/item.php:184 +msgid "Wall Photos" +msgstr "" + +#: ../../mod/message.php:102 +msgid "Message sent." +msgstr "" + +#: ../../mod/message.php:105 +msgid "Message could not be sent." +msgstr "" + +#: ../../mod/message.php:125 ../include/nav.php:100 +msgid "Messages" +msgstr "" + +#: ../../mod/message.php:126 +msgid "Inbox" +msgstr "" + +#: ../../mod/message.php:127 +msgid "Outbox" +msgstr "" + +#: ../../mod/message.php:128 +msgid "New Message" +msgstr "" + +#: ../../mod/message.php:142 +msgid "Message deleted." +msgstr "" + +#: ../../mod/message.php:158 +msgid "Conversation removed." +msgstr "" + +#: ../../mod/message.php:177 +msgid "Send Private Message" +msgstr "" + +#: ../../mod/message.php:178 ../mod/message.php:312 +msgid "To:" +msgstr "" + +#: ../../mod/message.php:179 ../mod/message.php:313 +msgid "Subject:" +msgstr "" + +#: ../../mod/message.php:182 ../mod/message.php:316 ../mod/invite.php:59 +msgid "Your message:" +msgstr "" + +#: ../../mod/message.php:221 +msgid "No messages." +msgstr "" + +#: ../../mod/message.php:234 +msgid "Delete conversation" +msgstr "" + +#: ../../mod/message.php:264 +msgid "Message not available." +msgstr "" + +#: ../../mod/message.php:301 +msgid "Delete message" +msgstr "" + +#: ../../mod/message.php:311 +msgid "Send Reply" +msgstr "" + +#: ../../mod/directory.php:32 +msgid "Global Directory" +msgstr "" + +#: ../../mod/directory.php:38 ../mod/contacts.php:307 +msgid "Finding: " +msgstr "" + +#: ../../mod/manage.php:37 +#, php-format +msgid "Welcome back %s" +msgstr "" + +#: ../../mod/manage.php:87 +msgid "Manage Identities and/or Pages" +msgstr "" + +#: ../../mod/manage.php:90 +msgid "" +"(Toggle between different identities or community/group pages which share " +"your account details.)" +msgstr "" + +#: ../../mod/manage.php:92 +msgid "Select an identity to manage: " +msgstr "" + +#: ../../mod/dfrn_poll.php:78 ../mod/dfrn_poll.php:392 +#, php-format +msgid "%s welcomes %s" +msgstr "" + +#: ../../mod/dfrn_confirm.php:114 ../mod/contacts.php:209 +msgid "Contact not found." +msgstr "" + +#: ../../mod/dfrn_confirm.php:231 +msgid "Response from remote site was not understood." +msgstr "" + +#: ../../mod/dfrn_confirm.php:240 +msgid "Unexpected response from remote site: " +msgstr "" + +#: ../../mod/dfrn_confirm.php:248 +msgid "Confirmation completed successfully." +msgstr "" + +#: ../../mod/dfrn_confirm.php:250 ../mod/dfrn_confirm.php:264 +#: ../../mod/dfrn_confirm.php:271 +msgid "Remote site reported: " +msgstr "" + +#: ../../mod/dfrn_confirm.php:262 +msgid "Temporary failure. Please wait and try again." +msgstr "" + +#: ../../mod/dfrn_confirm.php:269 +msgid "Introduction failed or was revoked." +msgstr "" + +#: ../../mod/dfrn_confirm.php:387 +msgid "Unable to set contact photo." +msgstr "" + +#: ../../mod/dfrn_confirm.php:426 +msgid "is now friends with" +msgstr "" + +#: ../../mod/dfrn_confirm.php:494 +#, php-format +msgid "No user record found for '%s' " +msgstr "" + +#: ../../mod/dfrn_confirm.php:504 +msgid "Our site encryption key is apparently messed up." +msgstr "" + +#: ../../mod/dfrn_confirm.php:515 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "" + +#: ../../mod/dfrn_confirm.php:527 +msgid "Contact record was not found for you on our site." +msgstr "" + +#: ../../mod/dfrn_confirm.php:555 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "" + +#: ../../mod/dfrn_confirm.php:566 +msgid "Unable to set your contact credentials on our system." +msgstr "" + +#: ../../mod/dfrn_confirm.php:619 +msgid "Unable to update your contact profile details on our system" +msgstr "" + +#: ../../mod/dfrn_confirm.php:648 +#, php-format +msgid "Connection accepted at %s" +msgstr "" + +#: ../../mod/wall_upload.php:56 ../mod/profile_photo.php:109 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "" + +#: ../../mod/wall_upload.php:65 ../mod/photos.php:570 +#: ../../mod/profile_photo.php:118 +msgid "Unable to process image." +msgstr "" + +#: ../../mod/wall_upload.php:82 ../mod/photos.php:588 +#: ../../mod/profile_photo.php:230 +msgid "Image upload failed." +msgstr "" + +#: ../../mod/display.php:15 ../mod/display.php:307 ../mod/item.php:546 +msgid "Item not found." +msgstr "" + +#: ../../mod/display.php:300 +msgid "Item has been removed." +msgstr "" + +#: ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "" + +#: ../../mod/lockview.php:43 +msgid "Visible to:" +msgstr "" + +#: ../../mod/dfrn_notify.php:179 +msgid "noreply" +msgstr "" + +#: ../../mod/dfrn_notify.php:237 +msgid "New mail received at " +msgstr "" + +#: ../../mod/dfrn_notify.php:388 ../mod/dfrn_notify.php:474 +#, php-format +msgid "%s commented on an item at %s" +msgstr "" + +#: ../../mod/dfrn_notify.php:475 +msgid "From: Administrator@" +msgstr "" + +#: ../../mod/removeme.php:42 ../mod/removeme.php:45 +msgid "Remove My Account" +msgstr "" + +#: ../../mod/removeme.php:43 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "" + +#: ../../mod/removeme.php:44 +msgid "Please enter your password for verification:" +msgstr "" + +#: ../../mod/home.php:23 +#, php-format +msgid "Welcome to %s" +msgstr "" + +#: ../../mod/regmod.php:10 +msgid "Please login." +msgstr "" + +#: ../../mod/regmod.php:54 +#, php-format +msgid "Registration revoked for %s" +msgstr "" + +#: ../../mod/regmod.php:92 ../mod/register.php:310 +#, php-format +msgid "Registration details for %s" +msgstr "" + +#: ../../mod/regmod.php:96 +msgid "Account approved." +msgstr "" + +#: ../../mod/apps.php:6 +msgid "Applications" +msgstr "" + +#: ../../mod/photos.php:30 +msgid "Photo Albums" +msgstr "" + +#: ../../mod/photos.php:34 ../mod/photos.php:106 ../mod/photos.php:780 +#: ../../mod/photos.php:849 ../mod/photos.php:864 ../mod/photos.php:1198 +#: ../../mod/photos.php:1209 ../include/Photo.php:225 ../include/Photo.php:232 +#: ../../include/Photo.php:239 ../include/items.php:959 ../include/items.php:962 +#: ../../include/items.php:965 +msgid "Contact Photos" +msgstr "" + +#: ../../mod/photos.php:95 +msgid "Contact information unavailable" +msgstr "" + +#: ../../mod/photos.php:106 ../mod/photos.php:530 ../mod/photos.php:849 +#: ../../mod/photos.php:864 ../mod/profile_photo.php:58 +#: ../../mod/profile_photo.php:65 ../mod/profile_photo.php:72 +#: ../../mod/profile_photo.php:155 ../mod/profile_photo.php:225 +#: ../../mod/profile_photo.php:234 ../mod/register.php:267 +#: ../../mod/register.php:274 ../mod/register.php:281 +msgid "Profile Photos" +msgstr "" + +#: ../../mod/photos.php:116 +msgid "Album not found." +msgstr "" + +#: ../../mod/photos.php:134 ../mod/photos.php:858 +msgid "Delete Album" +msgstr "" + +#: ../../mod/photos.php:197 ../mod/photos.php:1033 +msgid "Delete Photo" +msgstr "" + +#: ../../mod/photos.php:468 +msgid "was tagged in a" +msgstr "" + +#: ../../mod/photos.php:468 ../mod/like.php:110 +msgid "photo" +msgstr "" + +#: ../../mod/photos.php:468 +msgid "by" +msgstr "" + +#: ../../mod/photos.php:558 ../addon/js_upload/js_upload.php:306 +msgid "Image exceeds size limit of " +msgstr "" + +#: ../../mod/photos.php:660 +msgid "No photos selected" +msgstr "" + +#: ../../mod/photos.php:807 +msgid "Upload Photos" +msgstr "" + +#: ../../mod/photos.php:810 ../mod/photos.php:853 +msgid "New album name: " +msgstr "" + +#: ../../mod/photos.php:811 +msgid "or existing album name: " +msgstr "" + +#: ../../mod/photos.php:813 ../mod/photos.php:1028 +msgid "Permissions" +msgstr "" + +#: ../../mod/photos.php:868 +msgid "Edit Album" +msgstr "" + +#: ../../mod/photos.php:878 ../mod/photos.php:1228 +msgid "View Photo" +msgstr "" + +#: ../../mod/photos.php:908 +msgid "Photo not available" +msgstr "" + +#: ../../mod/photos.php:929 +msgid "Edit photo" +msgstr "" + +#: ../../mod/photos.php:931 +msgid "Use as profile photo" +msgstr "" + +#: ../../mod/photos.php:944 +msgid "View Full Size" +msgstr "" + +#: ../../mod/photos.php:1002 +msgid "Tags: " +msgstr "" + +#: ../../mod/photos.php:1012 +msgid "[Remove any tag]" +msgstr "" + +#: ../../mod/photos.php:1021 +msgid "New album name" +msgstr "" + +#: ../../mod/photos.php:1024 +msgid "Caption" +msgstr "" + +#: ../../mod/photos.php:1026 +msgid "Add a Tag" +msgstr "" + +#: ../../mod/photos.php:1030 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "" + +#: ../../mod/photos.php:1214 +msgid "Recent Photos" +msgstr "" + +#: ../../mod/photos.php:1218 +msgid "Upload New Photos" +msgstr "" + +#: ../../mod/photos.php:1234 +msgid "View Album" +msgstr "" + +#: ../../mod/profile.php:8 ../boot.php:2200 +msgid "No profile" +msgstr "" + +#: ../../mod/viewcontacts.php:17 ../boot.php:2028 +msgid "View Contacts" +msgstr "" + +#: ../../mod/viewcontacts.php:32 +msgid "No contacts." +msgstr "" + +#: ../../mod/viewcontacts.php:44 ../mod/contacts.php:368 +msgid "Visit $username's profile" +msgstr "" + +#: ../../mod/settings.php:37 +msgid "Passwords do not match. Password unchanged." +msgstr "" + +#: ../../mod/settings.php:42 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "" + +#: ../../mod/settings.php:53 +msgid "Password changed." +msgstr "" + +#: ../../mod/settings.php:55 +msgid "Password update failed. Please try again." +msgstr "" + +#: ../../mod/settings.php:95 +msgid " Please use a shorter name." +msgstr "" + +#: ../../mod/settings.php:97 +msgid " Name too short." +msgstr "" + +#: ../../mod/settings.php:103 +msgid " Not valid email." +msgstr "" + +#: ../../mod/settings.php:105 +msgid " Cannot change to that email." +msgstr "" + +#: ../../mod/settings.php:161 +msgid "Settings updated." +msgstr "" + +#: ../../mod/settings.php:211 +msgid "Plugin Settings" +msgstr "" + +#: ../../mod/settings.php:212 +msgid "Account Settings" +msgstr "" + +#: ../../mod/settings.php:218 +msgid "No Plugin settings configured" +msgstr "" + +#: ../../mod/settings.php:263 +msgid "OpenID: " +msgstr "" + +#: ../../mod/settings.php:263 +msgid " (Optional) Allow this OpenID to login to this account." +msgstr "" + +#: ../../mod/settings.php:295 +msgid "Profile is not published." +msgstr "" + +#: ../../mod/settings.php:352 +msgid "Default Post Permissions" +msgstr "" + +#: ../../mod/item.php:37 +msgid "Unable to locate original post." +msgstr "" + +#: ../../mod/item.php:98 +msgid "Empty post discarded." +msgstr "" + +#: ../../mod/item.php:422 +#, php-format +msgid "%s commented on your item at %s" +msgstr "" + +#: ../../mod/item.php:445 +#, php-format +msgid "%s posted on your profile wall at %s" +msgstr "" + +#: ../../mod/item.php:446 +msgid "Administrator@" +msgstr "" + +#: ../../mod/item.php:471 +msgid "System error. Post not saved." +msgstr "" + +#: ../../mod/item.php:489 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendika social network." +msgstr "" + +#: ../../mod/item.php:491 +msgid "You may visit them online at" +msgstr "" + +#: ../../mod/item.php:493 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "" + +#: ../../mod/item.php:495 +#, php-format +msgid "%s posted an update." +msgstr "" + +#: ../../mod/search.php:17 ../include/nav.php:67 ../boot.php:2045 +msgid "Search" +msgstr "" + +#: ../../mod/profile_photo.php:28 +msgid "Image uploaded but image cropping failed." +msgstr "" + +#: ../../mod/profile_photo.php:61 ../mod/profile_photo.php:68 +#: ../../mod/profile_photo.php:75 ../mod/profile_photo.php:237 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "" + +#: ../../mod/profile_photo.php:95 +msgid "Unable to process image" +msgstr "" + +#: ../../mod/profile_photo.php:228 +msgid "Image uploaded successfully." +msgstr "" + +#: ../../mod/group.php:27 +msgid "Group created." +msgstr "" + +#: ../../mod/group.php:33 +msgid "Could not create group." +msgstr "" + +#: ../../mod/group.php:43 ../mod/group.php:123 +msgid "Group not found." +msgstr "" + +#: ../../mod/group.php:56 +msgid "Group name changed." +msgstr "" + +#: ../../mod/group.php:79 +msgid "Membership list updated." +msgstr "" + +#: ../../mod/group.php:88 ../index.php:243 +msgid "Permission denied" +msgstr "" + +#: ../../mod/group.php:107 +msgid "Group removed." +msgstr "" + +#: ../../mod/group.php:109 +msgid "Unable to remove group." +msgstr "" + +#: ../../mod/tagrm.php:11 ../mod/tagrm.php:94 ../mod/dfrn_request.php:628 +#: ../../addon/js_upload/js_upload.php:41 +msgid "Cancel" +msgstr "" + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "" + +#: ../../mod/tagrm.php:93 +msgid "Remove" +msgstr "" + +#: ../../mod/invite.php:28 +#, php-format +msgid "%s : Not a valid email address." +msgstr "" + +#: ../../mod/invite.php:32 +#, php-format +msgid "Please join my network on %s" +msgstr "" + +#: ../../mod/invite.php:38 +#, php-format +msgid "%s : Message delivery failed." +msgstr "" + +#: ../../mod/invite.php:42 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/invite.php:57 +msgid "Send invitations" +msgstr "" + +#: ../../mod/invite.php:58 +msgid "Enter email addresses, one per line:" +msgstr "" + +#: ../../mod/invite.php:60 +#, php-format +msgid "Please join my social network on %s" +msgstr "" + +#: ../../mod/invite.php:61 +msgid "To accept this invitation, please visit:" +msgstr "" + +#: ../../mod/invite.php:62 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "" + +#: ../../mod/register.php:47 +msgid "Invalid OpenID url" +msgstr "" + +#: ../../mod/register.php:62 +msgid "Please enter the required information." +msgstr "" + +#: ../../mod/register.php:74 +msgid "Please use a shorter name." +msgstr "" + +#: ../../mod/register.php:76 +msgid "Name too short." +msgstr "" + +#: ../../mod/register.php:89 +msgid "That doesn\\'t appear to be your full (First Last) name." +msgstr "" + +#: ../../mod/register.php:92 +msgid "Your email domain is not among those allowed on this site." +msgstr "" + +#: ../../mod/register.php:95 +msgid "Not a valid email address." +msgstr "" + +#: ../../mod/register.php:101 +msgid "Cannot use that email." +msgstr "" + +#: ../../mod/register.php:106 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "" + +#: ../../mod/register.php:112 +msgid "Nickname is already registered. Please choose another." +msgstr "" + +#: ../../mod/register.php:131 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "" + +#: ../../mod/register.php:198 +msgid "An error occurred during registration. Please try again." +msgstr "" + +#: ../../mod/register.php:216 +msgid "An error occurred creating your default profile. Please try again." +msgstr "" + +#: ../../mod/register.php:315 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "" + +#: ../../mod/register.php:319 +msgid "Failed to send email message. Here is the message that failed." +msgstr "" + +#: ../../mod/register.php:324 +msgid "Your registration can not be processed." +msgstr "" + +#: ../../mod/register.php:347 +#, php-format +msgid "Registration request at %s" +msgstr "" + +#: ../../mod/register.php:351 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: ../../mod/register.php:399 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "" + +#: ../../mod/register.php:400 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "" + +#: ../../mod/register.php:401 +msgid "Your OpenID (optional): " +msgstr "" + +#: ../../mod/register.php:404 +msgid "" +"Members of this network prefer to communicate with real people who use their " +"real names." +msgstr "" + +#: ../../mod/register.php:413 +msgid "Include your profile in member directory?" +msgstr "" + +#: ../../mod/register.php:416 ../mod/dfrn_request.php:618 +msgid "Yes" +msgstr "" + +#: ../../mod/register.php:417 ../mod/dfrn_request.php:619 +msgid "No" +msgstr "" + +#: ../../mod/register.php:429 +msgid "Registration" +msgstr "" + +#: ../../mod/register.php:437 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "" + +#: ../../mod/register.php:438 +msgid "Your Email Address: " +msgstr "" + +#: ../../mod/register.php:439 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be 'nickname@$sitename'." +msgstr "" + +#: ../../mod/register.php:440 +msgid "Choose a nickname: " +msgstr "" + +#: ../../mod/register.php:443 ../include/nav.php:61 ../boot.php:809 +msgid "Register" +msgstr "" + +#: ../../mod/openid.php:62 ../mod/openid.php:109 ../include/auth.php:105 +#: ../../include/auth.php:130 ../include/auth.php:183 +msgid "Login failed." +msgstr "" + +#: ../../mod/openid.php:73 ../include/auth.php:194 +msgid "Welcome back " +msgstr "" + +#: ../../mod/like.php:110 +msgid "status" +msgstr "" + +#: ../../mod/like.php:127 +msgid "likes" +msgstr "" + +#: ../../mod/like.php:129 +msgid "doesn't like" +msgstr "" + +#: ../../mod/like.php:151 +#, php-format +msgid "%s's" +msgstr "" + +#: ../../mod/follow.php:167 +msgid "The profile address specified does not provide adequate information." +msgstr "" + +#: ../../mod/follow.php:173 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "" + +#: ../../mod/follow.php:224 +msgid "Unable to retrieve contact information." +msgstr "" + +#: ../../mod/follow.php:270 +msgid "following" +msgstr "" + +#: ../../mod/dfrn_request.php:92 +msgid "This introduction has already been accepted." +msgstr "" + +#: ../../mod/dfrn_request.php:116 ../mod/dfrn_request.php:347 +msgid "Profile location is not valid or does not contain profile information." +msgstr "" + +#: ../../mod/dfrn_request.php:121 ../mod/dfrn_request.php:352 +msgid "Warning: profile location has no identifiable owner name." +msgstr "" + +#: ../../mod/dfrn_request.php:123 ../mod/dfrn_request.php:354 +msgid "Warning: profile location has no profile photo." +msgstr "" + +#: ../../mod/dfrn_request.php:126 ../mod/dfrn_request.php:357 ../test.php:6 +#, 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] "" +msgstr[1] "" + +#: ../../mod/dfrn_request.php:164 +msgid "Introduction complete." +msgstr "" + +#: ../../mod/dfrn_request.php:188 +msgid "Unrecoverable protocol error." +msgstr "" + +#: ../../mod/dfrn_request.php:216 +msgid "Profile unavailable." +msgstr "" + +#: ../../mod/dfrn_request.php:241 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "" + +#: ../../mod/dfrn_request.php:242 +msgid "Spam protection measures have been invoked." +msgstr "" + +#: ../../mod/dfrn_request.php:243 +msgid "Friends are advised to please try again in 24 hours." +msgstr "" + +#: ../../mod/dfrn_request.php:273 +msgid "Invalid locator" +msgstr "" + +#: ../../mod/dfrn_request.php:292 +msgid "Unable to resolve your name at the provided location." +msgstr "" + +#: ../../mod/dfrn_request.php:305 +msgid "You have already introduced yourself here." +msgstr "" + +#: ../../mod/dfrn_request.php:309 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "" + +#: ../../mod/dfrn_request.php:330 +msgid "Invalid profile URL." +msgstr "" + +#: ../../mod/dfrn_request.php:336 +msgid "Disallowed profile URL." +msgstr "" + +#: ../../mod/dfrn_request.php:402 ../mod/contacts.php:85 +msgid "Failed to update contact record." +msgstr "" + +#: ../../mod/dfrn_request.php:423 +msgid "Your introduction has been sent." +msgstr "" + +#: ../../mod/dfrn_request.php:477 +msgid "Please login to confirm introduction." +msgstr "" + +#: ../../mod/dfrn_request.php:491 +msgid "" +"Incorrect identity currently logged in. Please login to this profile." +msgstr "" + +#: ../../mod/dfrn_request.php:536 ../include/items.php:1341 +msgid "[Name Withheld]" +msgstr "" + +#: ../../mod/dfrn_request.php:543 +msgid "Introduction received at " +msgstr "" + +#: ../../mod/dfrn_request.php:615 +msgid "Friend/Connection Request" +msgstr "" + +#: ../../mod/dfrn_request.php:616 +msgid "Please answer the following:" +msgstr "" + +#: ../../mod/dfrn_request.php:617 +msgid "Does $name know you?" +msgstr "" + +#: ../../mod/dfrn_request.php:620 +msgid "Add a personal note:" +msgstr "" + +#: ../../mod/dfrn_request.php:621 +msgid "" +"Please enter your profile address from one of the following supported social " +"networks:" +msgstr "" + +#: ../../mod/dfrn_request.php:622 +msgid "Friendika" +msgstr "" + +#: ../../mod/dfrn_request.php:623 +msgid "StatusNet/Federated Social Web" +msgstr "" + +#: ../../mod/dfrn_request.php:624 +msgid "Private (secure) network" +msgstr "" + +#: ../../mod/dfrn_request.php:625 +msgid "Public (insecure) network" +msgstr "" + +#: ../../mod/dfrn_request.php:626 +msgid "Your profile address:" +msgstr "" + +#: ../../mod/dfrn_request.php:627 +msgid "Submit Request" +msgstr "" + +#: ../../mod/contacts.php:12 +msgid "Invite Friends" +msgstr "" + +#: ../../mod/contacts.php:16 +msgid "Connect/Follow" +msgstr "" + +#: ../../mod/contacts.php:17 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "" + +#: ../../mod/contacts.php:18 +msgid "Follow" +msgstr "" + +#: ../../mod/contacts.php:38 ../mod/contacts.php:119 +msgid "Could not access contact record." +msgstr "" + +#: ../../mod/contacts.php:52 +msgid "Could not locate selected profile." +msgstr "" + +#: ../../mod/contacts.php:83 +msgid "Contact updated." +msgstr "" + +#: ../../mod/contacts.php:141 +msgid "Contact has been blocked" +msgstr "" + +#: ../../mod/contacts.php:141 +msgid "Contact has been unblocked" +msgstr "" + +#: ../../mod/contacts.php:155 +msgid "Contact has been ignored" +msgstr "" + +#: ../../mod/contacts.php:155 +msgid "Contact has been unignored" +msgstr "" + +#: ../../mod/contacts.php:176 +msgid "stopped following" +msgstr "" + +#: ../../mod/contacts.php:195 +msgid "Contact has been removed." +msgstr "" + +#: ../../mod/contacts.php:223 ../mod/contacts.php:344 +msgid "Mutual Friendship" +msgstr "" + +#: ../../mod/contacts.php:227 ../mod/contacts.php:348 +msgid "is a fan of yours" +msgstr "" + +#: ../../mod/contacts.php:232 ../mod/contacts.php:352 +msgid "you are a fan of" +msgstr "" + +#: ../../mod/contacts.php:248 +msgid "Never" +msgstr "" + +#: ../../mod/contacts.php:252 +msgid "(Update was successful)" +msgstr "" + +#: ../../mod/contacts.php:252 +msgid "(Update was not successful)" +msgstr "" + +#: ../../mod/contacts.php:255 +msgid "Contact Editor" +msgstr "" + +#: ../../mod/contacts.php:256 +msgid "Visit $name's profile" +msgstr "" + +#: ../../mod/contacts.php:257 +msgid "Block/Unblock contact" +msgstr "" + +#: ../../mod/contacts.php:258 +msgid "Ignore contact" +msgstr "" + +#: ../../mod/contacts.php:259 +msgid "Delete contact" +msgstr "" + +#: ../../mod/contacts.php:261 +msgid "Last updated: " +msgstr "" + +#: ../../mod/contacts.php:262 +msgid "Update public posts: " +msgstr "" + +#: ../../mod/contacts.php:264 +msgid "Update now" +msgstr "" + +#: ../../mod/contacts.php:267 +msgid "Unblock this contact" +msgstr "" + +#: ../../mod/contacts.php:267 +msgid "Block this contact" +msgstr "" + +#: ../../mod/contacts.php:268 +msgid "Unignore this contact" +msgstr "" + +#: ../../mod/contacts.php:268 +msgid "Ignore this contact" +msgstr "" + +#: ../../mod/contacts.php:271 +msgid "Currently blocked" +msgstr "" + +#: ../../mod/contacts.php:272 +msgid "Currently ignored" +msgstr "" + +#: ../../mod/contacts.php:303 ../include/acl_selectors.php:140 +#: ../../include/acl_selectors.php:155 ../include/nav.php:111 ../boot.php:2012 +msgid "Contacts" +msgstr "" + +#: ../../mod/contacts.php:305 +msgid "Show Blocked Connections" +msgstr "" + +#: ../../mod/contacts.php:305 +msgid "Hide Blocked Connections" +msgstr "" + +#: ../../mod/contacts.php:308 +msgid "Find" +msgstr "" + +#: ../../mod/contacts.php:369 +msgid "Edit contact" +msgstr "" + +#: ../../addon/facebook/facebook.php:116 +msgid "Facebook disabled" +msgstr "" + +#: ../../addon/facebook/facebook.php:124 +msgid "Facebook API key is missing." +msgstr "" + +#: ../../addon/facebook/facebook.php:131 +msgid "Facebook Connect" +msgstr "" + +#: ../../addon/facebook/facebook.php:137 +msgid "Install Facebook post connector" +msgstr "" + +#: ../../addon/facebook/facebook.php:144 +msgid "Remove Facebook post connector" +msgstr "" + +#: ../../addon/facebook/facebook.php:150 +msgid "Post to Facebook by default" +msgstr "" + +#: ../../addon/facebook/facebook.php:174 +msgid "Facebook" +msgstr "" + +#: ../../addon/facebook/facebook.php:175 +msgid "Facebook Connector Settings" +msgstr "" + +#: ../../addon/facebook/facebook.php:189 +msgid "Post to Facebook" +msgstr "" + +#: ../../addon/facebook/facebook.php:230 +msgid "Image: " +msgstr "" + +#: ../../addon/randplace/randplace.php:171 +msgid "Randplace Settings" +msgstr "" + +#: ../../addon/randplace/randplace.php:173 +msgid "Enable Randplace Plugin" +msgstr "" + +#: ../../addon/twitter/twitter.php:64 +msgid "Post to Twitter" +msgstr "" + +#: ../../addon/twitter/twitter.php:122 +msgid "Twitter Posting Settings" +msgstr "" + +#: ../../addon/twitter/twitter.php:129 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." +msgstr "" + +#: ../../addon/twitter/twitter.php:148 +msgid "" +"At this Friendika instance the Twitter plugin was enabled but you have not " +"yet connected your account to your Twitter account. To do so click the " +"button below to get a PIN from Twitter which you have to copy into the input " +"box below and submit the form. Only your public posts will " +"be posted to Twitter." +msgstr "" + +#: ../../addon/twitter/twitter.php:149 +msgid "Log in with Twitter" +msgstr "" + +#: ../../addon/twitter/twitter.php:151 +msgid "Copy the PIN from Twitter here" +msgstr "" + +#: ../../addon/twitter/twitter.php:165 ../addon/statusnet/statusnet.php:197 +msgid "Currently connected to: " +msgstr "" + +#: ../../addon/twitter/twitter.php:166 +msgid "" +"If enabled all your public postings will be posted to the " +"associated Twitter account as well." +msgstr "" + +#: ../../addon/twitter/twitter.php:168 +msgid "Send public postings to Twitter" +msgstr "" + +#: ../../addon/twitter/twitter.php:172 ../addon/statusnet/statusnet.php:204 +msgid "Clear OAuth configuration" +msgstr "" + +#: ../../addon/tictac/tictac.php:14 +msgid "Three Dimensional Tic-Tac-Toe" +msgstr "" + +#: ../../addon/tictac/tictac.php:47 +msgid "3D Tic-Tac-Toe" +msgstr "" + +#: ../../addon/tictac/tictac.php:52 +msgid "New game" +msgstr "" + +#: ../../addon/tictac/tictac.php:53 +msgid "New game with handicap" +msgstr "" + +#: ../../addon/tictac/tictac.php:54 +msgid "" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " +msgstr "" + +#: ../../addon/tictac/tictac.php:55 +msgid "" +"In this case there are three levels. You win by getting three in a row on " +"any level, as well as up, down, and diagonally across the different levels." +msgstr "" + +#: ../../addon/tictac/tictac.php:57 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." +msgstr "" + +#: ../../addon/tictac/tictac.php:176 +msgid "You go first..." +msgstr "" + +#: ../../addon/tictac/tictac.php:181 +msgid "I'm going first this time..." +msgstr "" + +#: ../../addon/tictac/tictac.php:187 +msgid "You won!" +msgstr "" + +#: ../../addon/tictac/tictac.php:193 ../addon/tictac/tictac.php:218 +msgid "\"Cat\" game!" +msgstr "" + +#: ../../addon/tictac/tictac.php:216 +msgid "I won!" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:39 +msgid "Upload a file" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:40 +msgid "Drop files here to upload" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:42 +msgid "Failed" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:288 +msgid "No files were uploaded." +msgstr "" + +#: ../../addon/js_upload/js_upload.php:294 +msgid "Uploaded file is empty" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:299 +msgid "Uploaded file is too large" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:317 +msgid "File has an invalid extension, it should be one of " +msgstr "" + +#: ../../addon/js_upload/js_upload.php:328 +msgid "Upload was cancelled, or server error encountered" +msgstr "" + +#: ../../addon/java_upload/java_upload.php:33 +msgid "Select files to upload: " +msgstr "" + +#: ../../addon/java_upload/java_upload.php:35 +msgid "" +"Use the following controls only if the Java uploader [above] fails to launch." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:78 +msgid "Post to StatusNet" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:146 +msgid "StatusNet Posting Settings" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:152 +msgid "" +"No consumer key pair for StatusNet found. Register your Friendika Account as " +"an desktop client on your StatusNet account, copy the consumer key pair here " +"and enter the API base root.
Before you register your own OAuth key " +"pair ask the administrator if there is already a key pair for this Friendika " +"installation at your favorited StatusNet installation." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:154 +msgid "OAuth Consumer Key" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:157 +msgid "OAuth Consumer Secret" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:160 +msgid "Base API Path (remember the trailing /)" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:181 +msgid "" +"To connect to your StatusNet account click the button below to get a " +"security code from StatusNet which you have to copy into the input box below " +"and submit the form. Only your public posts will be posted " +"to StatusNet." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:182 +msgid "Log in with StatusNet" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:184 +msgid "Copy the security code from StatusNet here" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:198 +msgid "" +"If enabled all your public postings will be posted to the " +"associated StatusNet account as well." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:200 +msgid "Send public postings to StatusNet" +msgstr "" + +#: ../../index.php:187 +msgid "Not Found" +msgstr "" + +#: ../../index.php:188 +msgid "Page not found." +msgstr "" + +#: ../../include/acl_selectors.php:132 +msgid "Visible To:" +msgstr "" + +#: ../../include/acl_selectors.php:136 ../include/acl_selectors.php:151 +msgid "Groups" +msgstr "" + +#: ../../include/acl_selectors.php:147 +msgid "Except For:" +msgstr "" + +#: ../../include/auth.php:27 +msgid "Logged out." +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "" + +#: ../../include/profile_selectors.php:19 +msgid "Males" +msgstr "" + +#: ../../include/profile_selectors.php:19 +msgid "Females" +msgstr "" + +#: ../../include/profile_selectors.php:19 +msgid "Gay" +msgstr "" + +#: ../../include/profile_selectors.php:19 +msgid "Lesbian" +msgstr "" + +#: ../../include/profile_selectors.php:19 +msgid "No Preference" +msgstr "" + +#: ../../include/profile_selectors.php:19 +msgid "Bisexual" +msgstr "" + +#: ../../include/profile_selectors.php:19 +msgid "Autosexual" +msgstr "" + +#: ../../include/profile_selectors.php:19 +msgid "Abstinent" +msgstr "" + +#: ../../include/profile_selectors.php:19 +msgid "Virgin" +msgstr "" + +#: ../../include/profile_selectors.php:19 +msgid "Deviant" +msgstr "" + +#: ../../include/profile_selectors.php:19 +msgid "Fetish" +msgstr "" + +#: ../../include/profile_selectors.php:19 +msgid "Oodles" +msgstr "" + +#: ../../include/profile_selectors.php:19 +msgid "Nonsexual" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Single" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Lonely" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Available" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Unavailable" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Dating" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Unfaithful" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Sex Addict" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Friends" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Friends/Benefits" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Casual" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Engaged" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Married" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Partners" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Cohabiting" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Happy" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Not Looking" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Swinger" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Betrayed" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Separated" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Unstable" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Divorced" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Widowed" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Uncertain" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Complicated" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Don't care" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Ask me" +msgstr "" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "" + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "" + +#: ../../include/contact_selectors.php:55 +msgid "Frequently" +msgstr "" + +#: ../../include/contact_selectors.php:56 +msgid "Hourly" +msgstr "" + +#: ../../include/contact_selectors.php:57 +msgid "Twice daily" +msgstr "" + +#: ../../include/contact_selectors.php:58 +msgid "Daily" +msgstr "" + +#: ../../include/contact_selectors.php:59 +msgid "Weekly" +msgstr "" + +#: ../../include/contact_selectors.php:60 +msgid "Monthly" +msgstr "" + +#: ../../include/nav.php:38 ../boot.php:837 +msgid "Logout" +msgstr "" + +#: ../../include/nav.php:44 ../boot.php:817 ../boot.php:823 +msgid "Login" +msgstr "" + +#: ../../include/nav.php:56 ../include/nav.php:91 +msgid "Home" +msgstr "" + +#: ../../include/nav.php:64 +msgid "Apps" +msgstr "" + +#: ../../include/nav.php:77 +msgid "Directory" +msgstr "" + +#: ../../include/nav.php:87 +msgid "Network" +msgstr "" + +#: ../../include/nav.php:96 +msgid "Notifications" +msgstr "" + +#: ../../include/nav.php:104 +msgid "Manage" +msgstr "" + +#: ../../include/nav.php:107 +msgid "Settings" +msgstr "" + +#: ../../include/nav.php:109 +msgid "Profiles" +msgstr "" + +#: ../../include/oembed.php:57 +msgid "Embedding disabled" +msgstr "" + +#: ../../include/items.php:1004 +msgid "Birthday:" +msgstr "" + +#: ../../include/items.php:1348 +msgid "You have a new follower at " +msgstr "" + +#: ../../include/group.php:130 +msgid "Create a new group" +msgstr "" + +#: ../../include/group.php:131 +msgid "Everybody" +msgstr "" + +#: ../../include/datetime.php:44 ../include/datetime.php:46 +msgid "Miscellaneous" +msgstr "" + +#: ../../include/datetime.php:148 +msgid "less than a second ago" +msgstr "" + +#: ../../include/datetime.php:151 +msgid "year" +msgstr "" + +#: ../../include/datetime.php:151 +msgid "years" +msgstr "" + +#: ../../include/datetime.php:152 +msgid "month" +msgstr "" + +#: ../../include/datetime.php:152 +msgid "months" +msgstr "" + +#: ../../include/datetime.php:153 +msgid "week" +msgstr "" + +#: ../../include/datetime.php:153 +msgid "weeks" +msgstr "" + +#: ../../include/datetime.php:154 +msgid "day" +msgstr "" + +#: ../../include/datetime.php:154 +msgid "days" +msgstr "" + +#: ../../include/datetime.php:155 +msgid "hour" +msgstr "" + +#: ../../include/datetime.php:155 +msgid "hours" +msgstr "" + +#: ../../include/datetime.php:156 +msgid "minute" +msgstr "" + +#: ../../include/datetime.php:156 +msgid "minutes" +msgstr "" + +#: ../../include/datetime.php:157 +msgid "second" +msgstr "" + +#: ../../include/datetime.php:157 +msgid "seconds" +msgstr "" + +#: ../../include/datetime.php:164 +msgid " ago" +msgstr "" + +#: ../../boot.php:808 +msgid "Create a New Account" +msgstr "" + +#: ../../boot.php:815 +msgid "Nickname or Email address: " +msgstr "" + +#: ../../boot.php:816 +msgid "Password: " +msgstr "" + +#: ../../boot.php:821 +msgid "Nickname/Email/OpenID: " +msgstr "" + +#: ../../boot.php:822 +msgid "Password (if not OpenID): " +msgstr "" + +#: ../../boot.php:825 +msgid "Forgot your password?" +msgstr "" + +#: ../../boot.php:826 +msgid "Password Reset" +msgstr "" + +#: ../../boot.php:1077 +msgid "prev" +msgstr "" + +#: ../../boot.php:1079 +msgid "first" +msgstr "" + +#: ../../boot.php:1108 +msgid "last" +msgstr "" + +#: ../../boot.php:1111 +msgid "next" +msgstr "" + +#: ../../boot.php:1831 +msgid " likes this." +msgstr "" + +#: ../../boot.php:1831 +msgid " doesn't like this." +msgstr "" + +#: ../../boot.php:1834 +msgid "people" +msgstr "" + +#: ../../boot.php:1834 +msgid "like this." +msgstr "" + +#: ../../boot.php:1834 +msgid "don't like this." +msgstr "" + +#: ../../boot.php:1839 +msgid "and" +msgstr "" + +#: ../../boot.php:1842 +msgid ", and " +msgstr "" + +#: ../../boot.php:1842 +msgid " other people" +msgstr "" + +#: ../../boot.php:1843 +msgid " like this." +msgstr "" + +#: ../../boot.php:1843 +msgid " don't like this." +msgstr "" + +#: ../../boot.php:2004 +msgid "No contacts" +msgstr "" + +#: ../../boot.php:2257 +msgid "Connect" +msgstr "" + +#: ../../boot.php:2267 +msgid "Location:" +msgstr "" + +#: ../../boot.php:2271 +msgid ", " +msgstr "" + +#: ../../boot.php:2279 +msgid "Gender:" +msgstr "" + +#: ../../boot.php:2283 +msgid "Status:" +msgstr "" + +#: ../../boot.php:2285 +msgid "Homepage:" +msgstr "" + +#: ../../boot.php:2376 +msgid "Monday" +msgstr "" + +#: ../../boot.php:2376 +msgid "Tuesday" +msgstr "" + +#: ../../boot.php:2376 +msgid "Wednesday" +msgstr "" + +#: ../../boot.php:2376 +msgid "Thursday" +msgstr "" + +#: ../../boot.php:2376 +msgid "Friday" +msgstr "" + +#: ../../boot.php:2376 +msgid "Saturday" +msgstr "" + +#: ../../boot.php:2376 +msgid "Sunday" +msgstr "" + +#: ../../boot.php:2380 +msgid "January" +msgstr "" + +#: ../../boot.php:2380 +msgid "February" +msgstr "" + +#: ../../boot.php:2380 +msgid "March" +msgstr "" + +#: ../../boot.php:2380 +msgid "April" +msgstr "" + +#: ../../boot.php:2380 +msgid "May" +msgstr "" + +#: ../../boot.php:2380 +msgid "June" +msgstr "" + +#: ../../boot.php:2380 +msgid "July" +msgstr "" + +#: ../../boot.php:2380 +msgid "August" +msgstr "" + +#: ../../boot.php:2380 +msgid "September" +msgstr "" + +#: ../../boot.php:2380 +msgid "October" +msgstr "" + +#: ../../boot.php:2380 +msgid "November" +msgstr "" + +#: ../../boot.php:2380 +msgid "December" +msgstr "" + +#: ../../boot.php:2409 +msgid "Birthdays this week:" +msgstr "" + +#: ../../boot.php:2410 +msgid "(Adjusted for local time)" +msgstr "" + +#: ../../boot.php:2419 +msgid "[today]" +msgstr "" + +#: ../../boot.php:2616 +msgid "link to source" +msgstr "" From 90eab0fbc3249c327a34db4d1932506186ac606c Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Fri, 11 Mar 2011 00:40:26 +0100 Subject: [PATCH 05/17] extract string can update existing po file --- util/run_xgettext.sh | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/util/run_xgettext.sh b/util/run_xgettext.sh index cd33e62dd5..2cfaca4870 100644 --- a/util/run_xgettext.sh +++ b/util/run_xgettext.sh @@ -2,9 +2,16 @@ cd $(dirname $0) +OPTS= + +if [ -e "$1" ] +then + OPTS="-j -o $1" +fi + KEYWORDS="-k -kt -ktt:1,2" - -find .. -name "*.php" | xargs xgettext $KEYWORDS --from-code=UTF-8 + +find .. -name "*.php" | xargs xgettext $KEYWORDS $OPTS --from-code=UTF-8 F9KVERSION=$(sed -n "s/.*'FRIENDIKA_VERSION'.*'\([0-9.]*\)'.*/\1/p" ../boot.php); From e1766b829f059e6e6a288178ee5b72dbd454dbae Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Fri, 11 Mar 2011 00:41:01 +0100 Subject: [PATCH 06/17] Changed 'mo' with 'po'..... --- util/po2php.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/util/po2php.php b/util/po2php.php index 15ee1cd2c2..171e9f2976 100644 --- a/util/po2php.php +++ b/util/po2php.php @@ -3,15 +3,15 @@ function po2php_run($argv, $argc) { if ($argc!=2) { - print "Usage: ".$argv[0]." \n\n"; + print "Usage: ".$argv[0]." \n\n"; return; } - $mofile = $argv[1]; - $outfile = dirname($mofile)."/strings.php"; + $pofile = $argv[1]; + $outfile = dirname($pofile)."/strings.php"; - if (!file_exists($mofile)){ - print "Unable to find '$mofile'\n"; + if (!file_exists($pofile)){ + print "Unable to find '$pofile'\n"; return; } @@ -19,7 +19,7 @@ function po2php_run($argv, $argc) { $out=" Date: Fri, 11 Mar 2011 01:23:24 +0100 Subject: [PATCH 07/17] update sh script --- util/run_xgettext.sh | 38 ++++++++++++++++++++++++-------------- 1 file changed, 24 insertions(+), 14 deletions(-) mode change 100644 => 100755 util/run_xgettext.sh diff --git a/util/run_xgettext.sh b/util/run_xgettext.sh old mode 100644 new mode 100755 index 2cfaca4870..9d38e4da9c --- a/util/run_xgettext.sh +++ b/util/run_xgettext.sh @@ -1,26 +1,36 @@ #!/bin/bash -cd $(dirname $0) +FULLPATH=$(dirname $(readlink -f "$0")) +cd "$FULLPATH/../view/en/" + +F9KVERSION=$(sed -n "s/.*'FRIENDIKA_VERSION'.*'\([0-9.]*\)'.*/\1/p" ../../boot.php); + +echo "Friendika version $F9KVERSION" OPTS= - -if [ -e "$1" ] +OUTFILE="$FULLPATH/messages.po" +if [ "" != "$1" ] then - OPTS="-j -o $1" + OUTFILE="$(readlink -f ${FULLPATH}/$1)" + if [ -e "$OUTFILE" ] + then + echo "join extracted strings" + OPTS="-j" + fi fi KEYWORDS="-k -kt -ktt:1,2" -find .. -name "*.php" | xargs xgettext $KEYWORDS $OPTS --from-code=UTF-8 +echo "extract strings to $OUTFILE.." +find ../../ -name "*.php" | xargs xgettext $KEYWORDS $OPTS -o "$OUTFILE" --from-code=UTF-8 -F9KVERSION=$(sed -n "s/.*'FRIENDIKA_VERSION'.*'\([0-9.]*\)'.*/\1/p" ../boot.php); +echo "setup base info.." +sed -i "s/SOME DESCRIPTIVE TITLE./FRIENDIKA Distribuited Social Network/g" "$OUTFILE" +sed -i "s/YEAR THE PACKAGE'S COPYRIGHT HOLDER/2010, 2011 Mike Macgirvin/g" "$OUTFILE" +sed -i "s/FIRST AUTHOR , YEAR./Mike Macgirvin, 2010/g" "$OUTFILE" +sed -i "s/PACKAGE VERSION/$F9KVERSION/g" "$OUTFILE" +sed -i "s/PACKAGE/Friendika/g" "$OUTFILE" +sed -i "s/CHARSET/UTF-8/g" "$OUTFILE" -sed -i "s/SOME DESCRIPTIVE TITLE./FRIENDIKA Distribuited Social Network/g" messages.po -sed -i "s/YEAR THE PACKAGE'S COPYRIGHT HOLDER/2010, 2011 Mike Macgirvin/g" messages.po -sed -i "s/FIRST AUTHOR , YEAR./Mike Macgirvin, 2010/g" messages.po -sed -i "s/PACKAGE VERSION/$F9KVERSION/g" messages.po -sed -i "s/PACKAGE/Friendika/g" messages.po -sed -i "s/CHARSET/UTF-8/g" messages.po -sed -i "s|#: \.\./|#: ../../|g" messages.po - +echo "done." \ No newline at end of file From 692cb54d355df6573b02c68c0b3505bf2ddd90b8 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Fri, 11 Mar 2011 07:12:16 +0100 Subject: [PATCH 08/17] it messages --- view/it/messages.po | 3135 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 3135 insertions(+) create mode 100644 view/it/messages.po diff --git a/view/it/messages.po b/view/it/messages.po new file mode 100644 index 0000000000..1fe541f469 --- /dev/null +++ b/view/it/messages.po @@ -0,0 +1,3135 @@ +# FRIENDIKA Distribuited Social Network +# Copyright (C) 2010, 2011 Mike Macgirvin +# This file is distributed under the same license as the Friendika package. +# Mike Macgirvin, 2010 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: 2.1.913\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-03-11 01:11+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Fabio Comuni \n" +"Language-Team: Italian \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Language: it_IT\n" +"X-Source-Language: C\n" + +#: ../../mod/network.php:6 ../../mod/profiles.php:7 ../../mod/profiles.php:224 +#: ../../mod/notifications.php:56 ../../mod/message.php:8 +#: ../../../mod/message.php:116 ../../../mod/manage.php:75 +#: ../../../mod/dfrn_confirm.php:53 ../../mod/wall_upload.php:42 +#: ../../mod/display.php:303 ../../mod/regmod.php:16 ../../mod/photos.php:85 +#: ../../mod/photos.php:772 ../../mod/viewcontacts.php:13 +#: ../../mod/settings.php:14 ../../mod/settings.php:19 +#: ../../mod/settings.php:206 ../../../mod/item.php:57 ../../mod/item.php:616 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:133 +#: ../../mod/profile_photo.php:139 ../../mod/profile_photo.php:150 +#: ../../mod/group.php:19 ../../mod/invite.php:13 ../../mod/invite.php:50 +#: ../../mod/register.php:25 ../../mod/follow.php:8 ../../mod/contacts.php:101 +#: ../../addon/facebook/facebook.php:110 ../../../index.php:244 +#: ../../mod/network.php:6 ../../mod/notifications.php:56 +#: ../../mod/display.php:303 ../../mod/photos.php:772 +#: ../../mod/profile_photo.php:133 ../../mod/invite.php:50 +#: ../../../mod/contacts.php:101 ../../mod/manage.php:75 +#: ../../mod/wall_upload.php:42 ../../mod/settings.php:14 +#: ../../mod/settings.php:19 ../../mod/item.php:57 +#: ../../mod/profile_photo.php:150 ../index.php:244 ../../mod/message.php:116 +#: ../../mod/dfrn_confirm.php:53 ../../mod/photos.php:85 ../../mod/item.php:57 +#: ../../mod/contacts.php:101 ../../mod/network.php:6 +#: ../../mod/dfrn_confirm.php:53 ../../mod/photos.php:772 +#: ../../mod/settings.php:14 ../../mod/settings.php:206 ../../mod/item.php:616 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:139 +#: ../../mod/profile_photo.php:150 ../../mod/group.php:19 +#: ../../mod/register.php:25 ../addon/facebook/facebook.php:110 +#: ../../mod/profiles.php:7 ../../mod/profiles.php:224 +#: ../../mod/notifications.php:56 ../../mod/message.php:8 +#: ../../mod/message.php:116 ../../mod/manage.php:75 ../../mod/display.php:303 +#: ../../mod/regmod.php:16 ../../mod/viewcontacts.php:13 +#: ../../mod/profile_photo.php:133 ../../mod/invite.php:13 +#: ../../mod/invite.php:50 ../../mod/follow.php:8 ../../mod/contacts.php:101 +#: ../../index.php:244 +msgid "Permission denied." +msgstr "Permesso negato." + +#: ../../mod/network.php:18 ../../mod/network.php:18 ../../mod/network.php:18 +msgid "Normal View" +msgstr "Vista Normale" + +#: ../../mod/network.php:20 ../../mod/network.php:20 ../../mod/network.php:20 +msgid "New Item View" +msgstr "Vista Nuovi Elementi" + +#: ../../mod/network.php:91 ../../mod/profile.php:151 ../../mod/network.php:91 +#: ../../mod/network.php:91 ../../mod/profile.php:151 +msgid "Share" +msgstr "Condividi" + +#: ../../mod/network.php:92 ../../mod/message.php:185 ../../mod/message.php:319 +#: ../../mod/profile.php:152 ../../mod/network.php:92 ../../mod/profile.php:152 +#: ../../mod/network.php:92 ../../mod/message.php:319 ../../mod/message.php:185 +#: ../../mod/profile.php:152 +msgid "Upload photo" +msgstr "Carica foto" + +#: ../../mod/network.php:93 ../../mod/message.php:186 ../../mod/message.php:320 +#: ../../mod/profile.php:153 ../../mod/network.php:93 ../../mod/profile.php:153 +#: ../../mod/network.php:93 ../../mod/message.php:320 ../../mod/message.php:186 +#: ../../mod/profile.php:153 +msgid "Insert web link" +msgstr "Inserisci collegamento web" + +#: ../../mod/network.php:94 ../../mod/profile.php:154 ../../mod/network.php:94 +#: ../../mod/network.php:94 ../../mod/profile.php:154 +msgid "Insert YouTube video" +msgstr "Inserisci video da YouTube" + +#: ../../mod/network.php:95 ../../mod/profile.php:155 ../../mod/network.php:95 +#: ../../mod/network.php:95 ../../mod/profile.php:155 +msgid "Set your location" +msgstr "Imposta la tua posizione" + +#: ../../mod/network.php:96 ../../mod/profile.php:156 ../../mod/network.php:96 +#: ../../mod/network.php:96 ../../mod/profile.php:156 +msgid "Clear browser location" +msgstr "Cancella la posizione del browser" + +#: ../../mod/network.php:97 ../../mod/network.php:367 ../../mod/message.php:187 +#: ../../mod/message.php:321 ../../mod/display.php:158 +#: ../../mod/photos.php:1052 ../../mod/profile.php:157 +#: ../../mod/profile.php:309 ../../mod/network.php:97 +#: ../../../mod/message.php:321 ../../mod/profile.php:157 +#: ../../mod/message.php:321 ../../mod/network.php:97 ../../mod/message.php:187 +#: ../../mod/message.php:321 ../../mod/display.php:158 +#: ../../mod/network.php:367 ../../mod/photos.php:1052 +#: ../../mod/profile.php:157 ../../mod/profile.php:309 +msgid "Please wait" +msgstr "Attendi" + +#: ../../mod/network.php:98 ../../mod/profile.php:158 ../../mod/network.php:98 +#: ../../mod/network.php:98 ../../mod/profile.php:158 +msgid "Permission settings" +msgstr "Impostazioni permessi" + +#: ../../mod/network.php:104 ../../mod/profile.php:165 +#: ../../mod/network.php:104 ../../mod/network.php:104 ../../mod/profile.php:165 +msgid "CC: email addresses" +msgstr "CC: indirizzi email" + +#: ../../mod/network.php:106 ../../mod/profile.php:167 +#: ../../mod/network.php:106 ../../mod/network.php:106 ../../mod/profile.php:167 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Esempio: bob@example.com, mary@example.com" + +#: ../../mod/network.php:149 ../../mod/network.php:149 ../../mod/network.php:149 +msgid "No such group" +msgstr "Nessun gruppo" + +#: ../../mod/network.php:160 ../../mod/network.php:160 ../../mod/network.php:160 +msgid "Group is empty" +msgstr "Il gruppo è vuoto" + +#: ../../mod/network.php:164 ../../mod/network.php:164 ../../mod/network.php:164 +msgid "Group: " +msgstr "Gruppo:" + +#: ../../mod/network.php:272 ../../mod/network.php:434 +#: ../../mod/display.php:258 ../../mod/profile.php:382 ../../mod/search.php:116 +#: ../../mod/network.php:272 ../../../mod/profile.php:382 +#: ../../mod/profile.php:382 ../../mod/display.php:258 +#: ../../mod/profile.php:382 ../../mod/search.php:116 ../../mod/network.php:272 +#: ../../mod/network.php:434 +msgid "View $name's profile" +msgstr "Vedi il profilo di $name" + +#: ../../mod/network.php:287 ../../mod/search.php:131 ../../mod/network.php:287 +#: ../../mod/network.php:287 ../../mod/search.php:131 +msgid "View in context" +msgstr "Vedi nel contesto" + +#: ../../mod/network.php:321 ../../mod/display.php:149 ../../mod/photos.php:935 +#: ../../mod/profile.php:300 ../../mod/network.php:321 +#: ../../mod/profile.php:300 ../../mod/network.php:321 ../../mod/photos.php:935 +#: ../../mod/display.php:149 ../../mod/profile.php:300 +msgid "Private Message" +msgstr "Messaggio Privato" + +#: ../../mod/network.php:365 ../../mod/display.php:156 +#: ../../mod/photos.php:1050 ../../mod/profile.php:307 +#: ../../mod/network.php:365 ../../mod/profile.php:307 +#: ../../mod/network.php:365 ../../mod/photos.php:1050 +#: ../../mod/display.php:156 ../../mod/profile.php:307 +msgid "I like this (toggle)" +msgstr "Mi piace (metti/togli)" + +#: ../../mod/network.php:366 ../../mod/display.php:157 +#: ../../mod/photos.php:1051 ../../mod/profile.php:308 +#: ../../mod/network.php:366 ../../mod/profile.php:308 +#: ../../mod/network.php:366 ../../mod/photos.php:1051 +#: ../../mod/display.php:157 ../../mod/profile.php:308 +msgid "I don't like this (toggle)" +msgstr "Non mi piace (metti/togli)" + +#: ../../mod/network.php:380 ../../mod/display.php:170 +#: ../../mod/photos.php:1071 ../../mod/photos.php:1111 +#: ../../mod/photos.php:1140 ../../mod/profile.php:321 +#: ../../../mod/network.php:380 ../../mod/photos.php:1111 +#: ../../mod/network.php:380 ../../mod/photos.php:1071 +#: ../../mod/photos.php:1111 ../../mod/photos.php:1140 +#: ../../mod/network.php:380 ../../mod/display.php:170 ../../mod/profile.php:321 +msgid "This is you" +msgstr "Questo sei tu" + +#: ../../mod/network.php:386 ../../mod/display.php:234 +#: ../../mod/photos.php:1168 ../../mod/profile.php:361 ../../mod/group.php:137 +#: ../../mod/network.php:386 ../../../mod/profile.php:361 +#: ../../mod/profile.php:361 ../../mod/network.php:386 +#: ../../mod/photos.php:1168 ../../mod/display.php:234 +#: ../../mod/profile.php:361 ../../mod/group.php:137 +msgid "Delete" +msgstr "Elimina" + +#: ../../mod/network.php:435 ../../mod/display.php:259 +#: ../../mod/network.php:435 ../../mod/network.php:435 ../../mod/display.php:259 +msgid "View $owner_name's profile" +msgstr "Vedi il profilo di $owner_name" + +#: ../../mod/network.php:436 ../../mod/display.php:260 +#: ../../mod/network.php:436 ../../mod/network.php:436 ../../mod/display.php:260 +msgid "to" +msgstr "a" + +#: ../../mod/network.php:437 ../../mod/display.php:261 +#: ../../mod/network.php:437 ../../mod/network.php:437 ../../mod/display.php:261 +msgid "Wall-to-Wall" +msgstr "Sulla Bacheca" + +#: ../../mod/network.php:438 ../../mod/display.php:262 +#: ../../mod/network.php:438 ../../mod/network.php:438 ../../mod/display.php:262 +msgid "via Wall-To-Wall:" +msgstr "sulla sua Bacheca:" + +#: ../../mod/network.php:471 ../../mod/display.php:312 +#: ../../mod/profile.php:414 ../../mod/register.php:422 +#: ../../mod/network.php:471 ../../mod/register.php:422 +#: ../../mod/register.php:422 ../../mod/network.php:471 +#: ../../mod/profile.php:414 ../../mod/display.php:312 +msgid "" +"Shared content is covered by the Creative Commons " +"Attribution 3.0 license." +msgstr "" +"Il contenuto condiviso è coperto dalla licenza Creative Commons " +"Attribution 3.0." + +#: ../../mod/profiles.php:21 ../../mod/profiles.php:234 +#: ../../../mod/profiles.php:339 ../../../mod/dfrn_confirm.php:62 +#: ../../../mod/profiles.php:21 ../../mod/dfrn_confirm.php:62 +#: ../../mod/profiles.php:21 ../../mod/profiles.php:339 +#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:21 +#: ../../mod/profiles.php:234 ../../mod/profiles.php:339 +msgid "Profile not found." +msgstr "Profilo non trovato." + +#: ../../mod/profiles.php:28 ../../mod/profiles.php:28 ../../mod/profiles.php:28 +msgid "Profile Name is required." +msgstr "Il Nome del Profilo è richieso." + +#: ../../mod/profiles.php:196 ../../mod/profiles.php:196 +#: ../../mod/profiles.php:196 +msgid "Profile updated." +msgstr "Profilo aggiornato." + +#: ../../mod/profiles.php:251 ../../mod/profiles.php:251 +#: ../../mod/profiles.php:251 +msgid "Profile deleted." +msgstr "Profilo cancellato." + +#: ../../mod/profiles.php:267 ../../mod/profiles.php:298 +#: ../../../mod/profiles.php:267 ../../mod/profiles.php:267 +#: ../../mod/profiles.php:267 ../../mod/profiles.php:298 +msgid "Profile-" +msgstr "Profilo-" + +#: ../../mod/profiles.php:286 ../../mod/profiles.php:325 +#: ../../../mod/profiles.php:286 ../../mod/profiles.php:286 +#: ../../mod/profiles.php:286 ../../mod/profiles.php:325 +msgid "New profile created." +msgstr "Nuovo profilo creato." + +#: ../../mod/profiles.php:304 ../../mod/profiles.php:304 +#: ../../mod/profiles.php:304 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il profilo." + +#: ../../mod/profiles.php:367 ../../mod/profiles.php:367 +#: ../../mod/profiles.php:367 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "" +"Questo è il tuo profilo " +"pubblico.
Potrebbe essere visibile a " +"chiunque attraverso internet." + +#: ../../mod/profiles.php:377 ../../mod/profiles.php:377 +#: ../../mod/profiles.php:377 +msgid "Age: " +msgstr "Età:" + +#: ../../mod/profiles.php:418 ../../mod/profiles.php:418 +#: ../../mod/profiles.php:418 +msgid "Profile Image" +msgstr "Immagine del profilo" + +#: ../../mod/lostpass.php:38 +msgid "Password reset requested at " +msgstr "Richiesta di azzeramento password presso %s" + +#: ../../mod/lostpass.php:39 ../../mod/dfrn_confirm.php:649 +#: ../../mod/dfrn_notify.php:177 ../../mod/dfrn_notify.php:389 +#: ../../mod/regmod.php:93 ../../mod/register.php:311 +#: ../../mod/register.php:348 ../../../mod/dfrn_request.php:545 +#: ../../../include/items.php:1350 ../../../mod/lostpass.php:39 +#: ../../mod/dfrn_notify.php:177 ../../mod/item.php:423 +#: ../../mod/lostpass.php:39 ../../mod/regmod.php:93 +#: ../../mod/dfrn_request.php:545 ../../mod/register.php:311 +#: ../../include/items.php:1350 ../../mod/dfrn_notify.php:177 +#: ../../mod/regmod.php:93 ../../mod/register.php:348 ../include/items.php:1350 +#: ../../mod/lostpass.php:39 ../../mod/dfrn_confirm.php:649 +#: ../../mod/dfrn_notify.php:389 ../../mod/item.php:423 +#: ../../mod/dfrn_request.php:545 +msgid "Administrator" +msgstr "Amministratore" + +#: ../../mod/notifications.php:28 ../../mod/notifications.php:28 +#: ../../mod/notifications.php:28 +msgid "Invalid request identifier." +msgstr "Indentificativo richiesta non valido." + +#: ../../mod/notifications.php:31 ../../mod/notifications.php:134 +#: ../../mod/notifications.php:31 ../../mod/notifications.php:31 +#: ../../mod/notifications.php:31 ../../mod/notifications.php:134 +msgid "Discard" +msgstr "Rimuovi" + +#: ../../mod/notifications.php:41 ../../mod/notifications.php:133 +#: ../../mod/notifications.php:41 ../../mod/notifications.php:41 +#: ../../mod/notifications.php:41 ../../mod/notifications.php:133 +msgid "Ignore" +msgstr "Ignora" + +#: ../../mod/notifications.php:72 ../../mod/notifications.php:72 +#: ../../mod/notifications.php:72 +msgid "Show Ignored Requests" +msgstr "Mostra Richieste Ignorate" + +#: ../../mod/notifications.php:72 ../../mod/notifications.php:72 +#: ../../mod/notifications.php:72 +msgid "Hide Ignored Requests" +msgstr "Nascondi Richieste Ignorate" + +#: ../../mod/notifications.php:105 ../../mod/notifications.php:105 +#: ../../mod/notifications.php:105 +msgid "Claims to be known to you: " +msgstr "Dice di conoscerti:" + +#: ../../mod/notifications.php:105 ../../mod/notifications.php:105 +#: ../../mod/notifications.php:105 +msgid "yes" +msgstr "si" + +#: ../../mod/notifications.php:105 ../../mod/notifications.php:105 +#: ../../mod/notifications.php:105 +msgid "no" +msgstr "no" + +#: ../../mod/notifications.php:111 ../../mod/notifications.php:111 +#: ../../mod/notifications.php:111 +msgid "Approve as: " +msgstr "Approva come:" + +#: ../../mod/notifications.php:112 ../../mod/notifications.php:112 +#: ../../mod/notifications.php:112 +msgid "Friend" +msgstr "Amico" + +#: ../../mod/notifications.php:113 ../../mod/notifications.php:113 +#: ../../mod/notifications.php:113 +msgid "Fan/Admirer" +msgstr "Fan/Ammiratore" + +#: ../../mod/notifications.php:120 ../../mod/notifications.php:120 +#: ../../mod/notifications.php:120 +msgid "Notification type: " +msgstr "Tipo di notifica:" + +#: ../../mod/notifications.php:121 ../../mod/notifications.php:121 +#: ../../mod/notifications.php:121 +msgid "Friend/Connect Request" +msgstr "Amico/Richiesta di Connessione" + +#: ../../mod/notifications.php:121 ../../mod/notifications.php:121 +#: ../../mod/notifications.php:121 +msgid "New Follower" +msgstr "Nuovo seguace" + +#: ../../mod/notifications.php:131 ../../mod/notifications.php:131 +#: ../../mod/notifications.php:131 +msgid "Approve" +msgstr "Approva" + +#: ../../mod/notifications.php:140 ../../mod/notifications.php:140 +#: ../../mod/notifications.php:140 +msgid "No notifications." +msgstr "Nessuna notifica." + +#: ../../mod/notifications.php:164 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:164 +msgid "No registrations." +msgstr "Nessuna registrazione." + +#: ../../mod/install.php:30 ../../mod/install.php:30 ../../mod/install.php:30 +msgid "Could not create/connect to database." +msgstr "Nono posso creare/connettermi al database." + +#: ../../mod/install.php:35 ../../mod/install.php:35 ../../mod/install.php:35 +msgid "Connected to database." +msgstr "Connesso al database." + +#: ../../mod/install.php:66 ../../mod/install.php:66 ../../mod/install.php:66 +msgid "Database import succeeded." +msgstr "Importazione del database riuscita." + +#: ../../mod/install.php:67 ../../mod/install.php:67 ../../mod/install.php:67 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +msgstr "" +"IMPORTANTE: Dovrai impostare [manualmente] un operazione pianificata per il " +"poller." + +#: ../../mod/install.php:68 ../../mod/install.php:75 ../../mod/install.php:175 +#: ../../mod/install.php:68 ../../mod/install.php:68 ../../mod/install.php:68 +#: ../../mod/install.php:75 ../../mod/install.php:175 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Guarda il file \"INSTALL.txt\"." + +#: ../../mod/install.php:73 ../../mod/install.php:73 ../../mod/install.php:73 +msgid "Database import failed." +msgstr "Importazione del database fallita." + +#: ../../mod/install.php:74 ../../mod/install.php:74 ../../mod/install.php:74 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "" + +#: ../../mod/install.php:84 ../../mod/install.php:84 ../../mod/install.php:84 +msgid "Welcome to Friendika." +msgstr "" + +#: ../../mod/install.php:109 ../../mod/manage.php:106 ../../mod/photos.php:800 +#: ../../mod/photos.php:857 ../../mod/photos.php:1032 ../../mod/invite.php:64 +#: ../../addon/facebook/facebook.php:151 +#: ../../../addon/randplace/randplace.php:179 +#: ../../addon/twitter/twitter.php:156 ../../addon/twitter/twitter.php:175 +#: ../../addon/statusnet/statusnet.php:163 +#: ../../addon/statusnet/statusnet.php:189 +#: ../../addon/statusnet/statusnet.php:207 ../../mod/install.php:109 +#: ../../mod/photos.php:857 ../addon/facebook/facebook.php:151 +#: ../../addon/statusnet/statusnet.php:163 +#: ../../addon/statusnet/statusnet.php:207 ../../mod/photos.php:857 +#: ../../../addon/twitter/twitter.php:156 ../addon/statusnet/statusnet.php:189 +#: ../../../addon/statusnet/statusnet.php:207 +#: ../../addon/randplace/randplace.php:179 ../addon/twitter/twitter.php:156 +#: ../addon/statusnet/statusnet.php:207 ../addon/randplace/randplace.php:179 +#: ../addon/twitter/twitter.php:175 ../addon/statusnet/statusnet.php:163 +#: ../../mod/install.php:109 ../../mod/manage.php:106 ../../mod/photos.php:800 +#: ../../mod/photos.php:857 ../../mod/photos.php:1032 ../../mod/invite.php:64 +#: ../../addon/facebook/facebook.php:151 ../../addon/twitter/twitter.php:156 +#: ../../addon/statusnet/statusnet.php:189 +#: ../../addon/statusnet/statusnet.php:207 +msgid "Submit" +msgstr "" + +#: ../../mod/install.php:124 ../../mod/install.php:124 ../../mod/install.php:124 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "" + +#: ../../mod/install.php:125 ../../mod/install.php:125 ../../mod/install.php:125 +msgid "" +"This is required. Please adjust the configuration file .htconfig.php " +"accordingly." +msgstr "" + +#: ../../mod/install.php:132 ../../mod/install.php:132 ../../mod/install.php:132 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "" + +#: ../../mod/install.php:133 ../../mod/install.php:133 ../../mod/install.php:133 +msgid "This is required for message delivery to work." +msgstr "" + +#: ../../mod/install.php:155 ../../mod/install.php:155 ../../mod/install.php:155 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: ../../mod/install.php:156 ../../mod/install.php:156 ../../mod/install.php:156 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "" + +#: ../../mod/install.php:165 ../../mod/install.php:165 ../../mod/install.php:165 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" + +#: ../../mod/install.php:167 ../../mod/install.php:167 ../../mod/install.php:167 +msgid "Error: libCURL PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:169 ../../mod/install.php:169 ../../mod/install.php:169 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "" + +#: ../../mod/install.php:171 ../../mod/install.php:171 ../../mod/install.php:171 +msgid "Error: openssl PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:173 ../../mod/install.php:173 ../../mod/install.php:173 +msgid "Error: mysqli PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:184 ../../mod/install.php:184 ../../mod/install.php:184 +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 "" + +#: ../../mod/install.php:185 ../../mod/install.php:185 ../../mod/install.php:185 +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 "" + +#: ../../mod/install.php:186 ../../mod/install.php:186 ../../mod/install.php:186 +msgid "" +"Please check with your site documentation or support people to see if this " +"situation can be corrected." +msgstr "" + +#: ../../mod/install.php:187 ../../mod/install.php:187 ../../mod/install.php:187 +msgid "" +"If not, you may be required to perform a manual installation. Please see the " +"file \"INSTALL.txt\" for instructions." +msgstr "" + +#: ../../mod/install.php:196 ../../mod/install.php:196 ../../mod/install.php:196 +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 "" + +#: ../../mod/install.php:211 ../../mod/install.php:211 ../../mod/install.php:211 +msgid "Errors encountered creating database tables." +msgstr "" + +#: ../../mod/message.php:18 ../../mod/message.php:18 ../../mod/message.php:18 +msgid "No recipient selected." +msgstr "" + +#: ../../mod/message.php:23 ../../mod/message.php:23 ../../mod/message.php:23 +msgid "[no subject]" +msgstr "" + +#: ../../mod/message.php:34 ../../mod/message.php:34 ../../mod/message.php:34 +msgid "Unable to locate contact information." +msgstr "" + +#: ../../mod/message.php:93 ../../mod/wall_upload.php:79 +#: ../../mod/wall_upload.php:88 ../../mod/wall_upload.php:95 +#: ../../../mod/item.php:184 ../../mod/message.php:93 +#: ../../mod/wall_upload.php:95 ../../mod/wall_upload.php:88 +#: ../../mod/message.php:93 ../../mod/item.php:184 ../../mod/wall_upload.php:88 +#: ../../mod/wall_upload.php:79 ../../mod/item.php:184 +msgid "Wall Photos" +msgstr "" + +#: ../../mod/message.php:102 ../../mod/message.php:102 ../../mod/message.php:102 +msgid "Message sent." +msgstr "" + +#: ../../mod/message.php:105 ../../mod/message.php:105 ../../mod/message.php:105 +msgid "Message could not be sent." +msgstr "" + +#: ../../mod/message.php:125 ../include/nav.php:100 ../../mod/message.php:125 +#: ../../mod/message.php:125 ../../include/nav.php:100 +msgid "Messages" +msgstr "" + +#: ../../mod/message.php:126 ../../mod/message.php:126 ../../mod/message.php:126 +msgid "Inbox" +msgstr "" + +#: ../../mod/message.php:127 ../../mod/message.php:127 ../../mod/message.php:127 +msgid "Outbox" +msgstr "" + +#: ../../mod/message.php:128 ../../mod/message.php:128 ../../mod/message.php:128 +msgid "New Message" +msgstr "" + +#: ../../mod/message.php:142 ../../mod/message.php:142 ../../mod/message.php:142 +msgid "Message deleted." +msgstr "" + +#: ../../mod/message.php:158 ../../mod/message.php:158 ../../mod/message.php:158 +msgid "Conversation removed." +msgstr "" + +#: ../../mod/message.php:177 ../../mod/message.php:177 ../../mod/message.php:177 +msgid "Send Private Message" +msgstr "" + +#: ../../mod/message.php:178 ../../mod/message.php:312 +#: ../../mod/message.php:178 ../../mod/message.php:178 ../../mod/message.php:312 +msgid "To:" +msgstr "" + +#: ../../mod/message.php:179 ../../mod/message.php:313 +#: ../../mod/message.php:179 ../../mod/message.php:179 ../../mod/message.php:313 +msgid "Subject:" +msgstr "" + +#: ../../mod/message.php:182 ../../mod/message.php:316 ../../mod/invite.php:59 +#: ../../mod/message.php:182 ../../mod/message.php:182 +#: ../../mod/message.php:182 ../../mod/message.php:316 ../../mod/invite.php:59 +msgid "Your message:" +msgstr "" + +#: ../../mod/message.php:221 ../../mod/message.php:221 ../../mod/message.php:221 +msgid "No messages." +msgstr "" + +#: ../../mod/message.php:234 ../../mod/message.php:234 ../../mod/message.php:234 +msgid "Delete conversation" +msgstr "" + +#: ../../mod/message.php:264 ../../mod/message.php:264 ../../mod/message.php:264 +msgid "Message not available." +msgstr "" + +#: ../../mod/message.php:301 ../../mod/message.php:301 ../../mod/message.php:301 +msgid "Delete message" +msgstr "" + +#: ../../mod/message.php:311 ../../mod/message.php:311 ../../mod/message.php:311 +msgid "Send Reply" +msgstr "" + +#: ../../mod/directory.php:32 ../../mod/directory.php:32 +#: ../../mod/directory.php:32 +msgid "Global Directory" +msgstr "" + +#: ../../mod/directory.php:38 ../../mod/contacts.php:307 +#: ../../../mod/directory.php:38 ../../mod/directory.php:38 +#: ../../mod/directory.php:38 ../../mod/contacts.php:307 +msgid "Finding: " +msgstr "" + +#: ../../mod/manage.php:37 ../../mod/openid.php:73 ../include/auth.php:194 +#: ../../mod/openid.php:73 ../../include/auth.php:194 +msgid "Welcome back " +msgstr "" + +#: ../../mod/manage.php:87 ../../mod/manage.php:87 ../../mod/manage.php:87 +msgid "Manage Identities and/or Pages" +msgstr "" + +#: ../../mod/manage.php:90 ../../mod/manage.php:90 ../../mod/manage.php:90 +msgid "" +"(Toggle between different identities or community/group pages which share " +"your account details.)" +msgstr "" + +#: ../../mod/manage.php:92 ../../mod/manage.php:92 ../../mod/manage.php:92 +msgid "Select an identity to manage: " +msgstr "" + +#: ../../mod/dfrn_poll.php:78 ../../mod/dfrn_poll.php:392 +msgid " welcomes " +msgstr "" + +#: ../../mod/dfrn_confirm.php:114 ../../mod/contacts.php:209 +#: ../../mod/dfrn_confirm.php:114 ../../mod/dfrn_confirm.php:114 +#: ../../mod/dfrn_confirm.php:114 ../../mod/contacts.php:209 +msgid "Contact not found." +msgstr "" + +#: ../../mod/dfrn_confirm.php:231 ../../mod/dfrn_confirm.php:231 +#: ../../mod/dfrn_confirm.php:231 +msgid "Response from remote site was not understood." +msgstr "" + +#: ../../mod/dfrn_confirm.php:240 ../../mod/dfrn_confirm.php:240 +#: ../../mod/dfrn_confirm.php:240 +msgid "Unexpected response from remote site: " +msgstr "" + +#: ../../mod/dfrn_confirm.php:248 ../../mod/dfrn_confirm.php:248 +#: ../../mod/dfrn_confirm.php:248 +msgid "Confirmation completed successfully." +msgstr "" + +#: ../../mod/dfrn_confirm.php:250 ../../mod/dfrn_confirm.php:264 +#: ../../mod/dfrn_confirm.php:271 ../../mod/dfrn_confirm.php:250 +#: ../../mod/dfrn_confirm.php:271 ../../mod/dfrn_confirm.php:271 +#: ../../mod/dfrn_confirm.php:250 ../../mod/dfrn_confirm.php:264 +#: ../../mod/dfrn_confirm.php:271 +msgid "Remote site reported: " +msgstr "" + +#: ../../mod/dfrn_confirm.php:262 ../../mod/dfrn_confirm.php:262 +#: ../../mod/dfrn_confirm.php:262 +msgid "Temporary failure. Please wait and try again." +msgstr "" + +#: ../../mod/dfrn_confirm.php:269 ../../mod/dfrn_confirm.php:269 +#: ../../mod/dfrn_confirm.php:269 +msgid "Introduction failed or was revoked." +msgstr "" + +#: ../../mod/dfrn_confirm.php:387 ../../mod/dfrn_confirm.php:387 +#: ../../mod/dfrn_confirm.php:387 +msgid "Unable to set contact photo." +msgstr "" + +#: ../../mod/dfrn_confirm.php:426 ../../mod/dfrn_confirm.php:426 +#: ../../mod/dfrn_confirm.php:426 +msgid "is now friends with" +msgstr "" + +#: ../../mod/dfrn_confirm.php:494 ../../mod/dfrn_confirm.php:494 +#: ../../mod/dfrn_confirm.php:494 +#, php-format +msgid "No user record found for '%s' " +msgstr "" + +#: ../../mod/dfrn_confirm.php:504 ../../mod/dfrn_confirm.php:504 +#: ../../mod/dfrn_confirm.php:504 +msgid "Our site encryption key is apparently messed up." +msgstr "" + +#: ../../mod/dfrn_confirm.php:515 ../../mod/dfrn_confirm.php:515 +#: ../../mod/dfrn_confirm.php:515 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "" + +#: ../../mod/dfrn_confirm.php:527 ../../mod/dfrn_confirm.php:527 +#: ../../mod/dfrn_confirm.php:527 +msgid "Contact record was not found for you on our site." +msgstr "" + +#: ../../mod/dfrn_confirm.php:555 ../../mod/dfrn_confirm.php:555 +#: ../../mod/dfrn_confirm.php:555 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "" + +#: ../../mod/dfrn_confirm.php:566 ../../mod/dfrn_confirm.php:566 +#: ../../mod/dfrn_confirm.php:566 +msgid "Unable to set your contact credentials on our system." +msgstr "" + +#: ../../mod/dfrn_confirm.php:619 ../../mod/dfrn_confirm.php:619 +#: ../../mod/dfrn_confirm.php:619 +msgid "Unable to update your contact profile details on our system" +msgstr "" + +#: ../../mod/dfrn_confirm.php:648 ../../mod/dfrn_confirm.php:648 +#: ../../mod/dfrn_confirm.php:648 +#, php-format +msgid "Connection accepted at %s" +msgstr "" + +#: ../../mod/wall_upload.php:56 ../../mod/photos.php:558 +#: ../../mod/profile_photo.php:109 ../addon/js_upload/js_upload.php:306 +#: ../../mod/photos.php:558 ../../addon/js_upload/js_upload.php:306 +msgid "Image exceeds size limit of " +msgstr "" + +#: ../../mod/wall_upload.php:65 ../../mod/photos.php:570 +#: ../../mod/profile_photo.php:118 ../../mod/wall_upload.php:65 +#: ../../mod/profile_photo.php:118 ../../mod/profile_photo.php:118 +#: ../../mod/wall_upload.php:65 ../../mod/photos.php:570 +#: ../../mod/profile_photo.php:118 +msgid "Unable to process image." +msgstr "" + +#: ../../mod/wall_upload.php:82 ../../mod/photos.php:588 +#: ../../mod/profile_photo.php:230 ../../mod/wall_upload.php:82 +#: ../../mod/profile_photo.php:230 ../../mod/profile_photo.php:230 +#: ../../mod/wall_upload.php:82 ../../mod/photos.php:588 +#: ../../mod/profile_photo.php:230 +msgid "Image upload failed." +msgstr "" + +#: ../../mod/display.php:15 ../../mod/display.php:307 ../../mod/item.php:546 +#: ../../mod/display.php:15 ../../mod/display.php:15 ../../mod/display.php:15 +#: ../../mod/display.php:307 ../../mod/item.php:546 +msgid "Item not found." +msgstr "" + +#: ../../mod/display.php:300 ../../mod/display.php:300 ../../mod/display.php:300 +msgid "Item has been removed." +msgstr "" + +#: ../../mod/lockview.php:39 ../../mod/lockview.php:39 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "" + +#: ../../mod/lockview.php:43 ../../mod/lockview.php:43 ../../mod/lockview.php:43 +msgid "Visible to:" +msgstr "" + +#: ../../mod/dfrn_notify.php:179 ../../mod/dfrn_notify.php:179 +#: ../../mod/dfrn_notify.php:179 +msgid "noreply" +msgstr "" + +#: ../../mod/dfrn_notify.php:237 ../../mod/dfrn_notify.php:237 +#: ../../mod/dfrn_notify.php:237 +msgid "New mail received at " +msgstr "" + +#: ../../mod/dfrn_notify.php:388 ../../mod/dfrn_notify.php:474 +#: ../../mod/dfrn_notify.php:388 ../../mod/dfrn_notify.php:388 +#: ../../mod/dfrn_notify.php:388 ../../mod/dfrn_notify.php:474 +#, php-format +msgid "%s commented on an item at %s" +msgstr "" + +#: ../../mod/dfrn_notify.php:475 ../../mod/item.php:423 ../../mod/item.php:446 +#: ../../mod/dfrn_notify.php:475 ../../mod/dfrn_notify.php:475 +#: ../../mod/dfrn_notify.php:475 +msgid "From: Administrator@" +msgstr "" + +#: ../../mod/removeme.php:42 ../../mod/removeme.php:45 +#: ../../mod/removeme.php:42 ../../mod/removeme.php:42 ../../mod/removeme.php:45 +msgid "Remove My Account" +msgstr "" + +#: ../../mod/removeme.php:43 ../../mod/removeme.php:43 ../../mod/removeme.php:43 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "" + +#: ../../mod/removeme.php:44 ../../mod/removeme.php:44 ../../mod/removeme.php:44 +msgid "Please enter your password for verification:" +msgstr "" + +#: ../../mod/home.php:23 +msgid "Welcome to " +msgstr "" + +#: ../../mod/regmod.php:10 ../../mod/regmod.php:10 ../../mod/regmod.php:10 +msgid "Please login." +msgstr "" + +#: ../../mod/regmod.php:54 +msgid "Registration revoked for " +msgstr "" + +#: ../../mod/regmod.php:92 ../../mod/register.php:310 +msgid "Registration details for " +msgstr "" + +#: ../../mod/regmod.php:96 ../../mod/regmod.php:96 ../../mod/regmod.php:96 +msgid "Account approved." +msgstr "" + +#: ../../mod/apps.php:6 ../../mod/apps.php:6 ../../mod/apps.php:6 +msgid "Applications" +msgstr "" + +#: ../../mod/photos.php:30 ../../mod/photos.php:30 ../../mod/photos.php:30 +msgid "Photo Albums" +msgstr "" + +#: ../../mod/photos.php:34 ../../mod/photos.php:106 ../../mod/photos.php:780 +#: ../../mod/photos.php:849 ../../mod/photos.php:864 ../../mod/photos.php:1198 +#: ../../mod/photos.php:1209 ../include/Photo.php:225 +#: ../../../include/Photo.php:232 ../../../include/Photo.php:239 +#: ../../../include/items.php:959 ../../include/items.php:962 +#: ../../include/items.php:965 ../../mod/photos.php:34 +#: ../../../mod/photos.php:849 ../../mod/photos.php:1209 +#: ../include/Photo.php:239 ../../mod/photos.php:849 ../include/items.php:965 +#: ../../mod/photos.php:1209 ../../include/Photo.php:232 +#: ../include/items.php:959 ../include/items.php:962 ../../mod/photos.php:849 +#: ../include/Photo.php:232 ../../mod/photos.php:34 ../../mod/photos.php:106 +#: ../../mod/photos.php:780 ../../mod/photos.php:864 ../../mod/photos.php:1198 +#: ../../include/Photo.php:225 ../../include/Photo.php:239 +#: ../../include/items.php:959 ../../include/items.php:965 +msgid "Contact Photos" +msgstr "" + +#: ../../mod/photos.php:95 ../../mod/photos.php:95 ../../mod/photos.php:95 +msgid "Contact information unavailable" +msgstr "" + +#: ../../mod/photos.php:106 ../../mod/photos.php:530 ../../mod/photos.php:849 +#: ../../mod/photos.php:864 ../../mod/profile_photo.php:58 +#: ../../mod/profile_photo.php:65 ../../mod/profile_photo.php:72 +#: ../../mod/profile_photo.php:155 ../../mod/profile_photo.php:225 +#: ../../mod/profile_photo.php:234 ../../mod/register.php:267 +#: ../../mod/register.php:274 ../../mod/register.php:281 +#: ../../mod/photos.php:106 ../../../mod/photos.php:864 +#: ../../mod/profile_photo.php:65 ../../../mod/profile_photo.php:155 +#: ../../mod/profile_photo.php:234 ../../../mod/register.php:274 +#: ../../mod/photos.php:864 ../../mod/profile_photo.php:155 +#: ../../mod/register.php:274 ../../mod/profile_photo.php:155 +#: ../../mod/photos.php:106 ../../mod/photos.php:864 +#: ../../mod/profile_photo.php:65 ../../mod/profile_photo.php:234 +#: ../../mod/register.php:274 ../../mod/photos.php:530 ../../mod/photos.php:849 +#: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:72 +#: ../../mod/profile_photo.php:225 ../../mod/register.php:267 +#: ../../mod/register.php:281 +msgid "Profile Photos" +msgstr "" + +#: ../../mod/photos.php:116 ../../mod/photos.php:116 ../../mod/photos.php:116 +msgid "Album not found." +msgstr "" + +#: ../../mod/photos.php:134 ../../mod/photos.php:858 ../../mod/photos.php:134 +#: ../../mod/photos.php:134 ../../mod/photos.php:858 +msgid "Delete Album" +msgstr "" + +#: ../../mod/photos.php:197 ../../mod/photos.php:1033 ../../mod/photos.php:197 +#: ../../mod/photos.php:197 ../../mod/photos.php:1033 +msgid "Delete Photo" +msgstr "" + +#: ../../mod/photos.php:468 ../../mod/photos.php:468 ../../mod/photos.php:468 +msgid "was tagged in a" +msgstr "" + +#: ../../mod/photos.php:468 ../../mod/like.php:110 ../../mod/photos.php:468 +#: ../../mod/photos.php:468 ../../mod/like.php:110 +msgid "photo" +msgstr "" + +#: ../../mod/photos.php:468 ../../mod/photos.php:468 ../../mod/photos.php:468 +msgid "by" +msgstr "" + +#: ../../mod/photos.php:660 ../../mod/photos.php:660 ../../mod/photos.php:660 +msgid "No photos selected" +msgstr "" + +#: ../../mod/photos.php:807 ../../mod/photos.php:807 ../../mod/photos.php:807 +msgid "Upload Photos" +msgstr "" + +#: ../../mod/photos.php:810 ../../mod/photos.php:853 ../../mod/photos.php:810 +#: ../../mod/photos.php:810 ../../mod/photos.php:853 +msgid "New album name: " +msgstr "" + +#: ../../mod/photos.php:811 ../../mod/photos.php:811 ../../mod/photos.php:811 +msgid "or existing album name: " +msgstr "" + +#: ../../mod/photos.php:813 ../../mod/photos.php:1028 ../../mod/photos.php:813 +#: ../../mod/photos.php:813 ../../mod/photos.php:1028 +msgid "Permissions" +msgstr "" + +#: ../../mod/photos.php:868 ../../mod/photos.php:868 ../../mod/photos.php:868 +msgid "Edit Album" +msgstr "" + +#: ../../mod/photos.php:878 ../../mod/photos.php:1228 ../../mod/photos.php:878 +#: ../../mod/photos.php:878 ../../mod/photos.php:1228 +msgid "View Photo" +msgstr "" + +#: ../../mod/photos.php:908 ../../mod/photos.php:908 ../../mod/photos.php:908 +msgid "Photo not available" +msgstr "" + +#: ../../mod/photos.php:929 ../../mod/photos.php:929 ../../mod/photos.php:929 +msgid "Edit photo" +msgstr "" + +#: ../../mod/photos.php:931 ../../mod/photos.php:931 ../../mod/photos.php:931 +msgid "Use as profile photo" +msgstr "" + +#: ../../mod/photos.php:944 ../../mod/photos.php:944 ../../mod/photos.php:944 +msgid "View Full Size" +msgstr "" + +#: ../../mod/photos.php:1002 ../../mod/photos.php:1002 ../../mod/photos.php:1002 +msgid "Tags: " +msgstr "" + +#: ../../mod/photos.php:1012 ../../mod/photos.php:1012 ../../mod/photos.php:1012 +msgid "[Remove any tag]" +msgstr "" + +#: ../../mod/photos.php:1021 ../../mod/photos.php:1021 ../../mod/photos.php:1021 +msgid "New album name" +msgstr "" + +#: ../../mod/photos.php:1024 ../../mod/photos.php:1024 ../../mod/photos.php:1024 +msgid "Caption" +msgstr "" + +#: ../../mod/photos.php:1026 ../../mod/photos.php:1026 ../../mod/photos.php:1026 +msgid "Add a Tag" +msgstr "" + +#: ../../mod/photos.php:1030 ../../mod/photos.php:1030 ../../mod/photos.php:1030 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "" + +#: ../../mod/photos.php:1214 ../../mod/photos.php:1214 ../../mod/photos.php:1214 +msgid "Recent Photos" +msgstr "" + +#: ../../mod/photos.php:1218 ../../mod/photos.php:1218 ../../mod/photos.php:1218 +msgid "Upload New Photos" +msgstr "" + +#: ../../mod/photos.php:1234 ../../mod/photos.php:1234 ../../mod/photos.php:1234 +msgid "View Album" +msgstr "" + +#: ../../mod/profile.php:8 ../boot.php:2200 ../../mod/profile.php:8 +#: ../../mod/profile.php:8 ../../boot.php:2200 +msgid "No profile" +msgstr "" + +#: ../../mod/viewcontacts.php:17 ../boot.php:2028 +#: ../../../mod/viewcontacts.php:17 ../../mod/viewcontacts.php:17 +#: ../../mod/viewcontacts.php:17 ../../boot.php:2028 +msgid "View Contacts" +msgstr "" + +#: ../../mod/viewcontacts.php:32 ../../mod/viewcontacts.php:32 +#: ../../mod/viewcontacts.php:32 +msgid "No contacts." +msgstr "" + +#: ../../mod/viewcontacts.php:44 +msgid "Visit " +msgstr "" + +#: ../../mod/viewcontacts.php:44 +msgid "'s profile" +msgstr "" + +#: ../../mod/settings.php:37 ../../mod/settings.php:37 ../../mod/settings.php:37 +msgid "Passwords do not match. Password unchanged." +msgstr "" + +#: ../../mod/settings.php:42 ../../mod/settings.php:42 ../../mod/settings.php:42 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "" + +#: ../../mod/settings.php:53 ../../mod/settings.php:53 ../../mod/settings.php:53 +msgid "Password changed." +msgstr "" + +#: ../../mod/settings.php:55 ../../mod/settings.php:55 ../../mod/settings.php:55 +msgid "Password update failed. Please try again." +msgstr "" + +#: ../../mod/settings.php:95 ../../mod/settings.php:95 ../../mod/settings.php:95 +msgid " Please use a shorter name." +msgstr "" + +#: ../../mod/settings.php:97 ../../mod/settings.php:97 ../../mod/settings.php:97 +msgid " Name too short." +msgstr "" + +#: ../../mod/settings.php:103 ../../mod/settings.php:103 +#: ../../mod/settings.php:103 +msgid " Not valid email." +msgstr "" + +#: ../../mod/settings.php:105 ../../mod/settings.php:105 +#: ../../mod/settings.php:105 +msgid " Cannot change to that email." +msgstr "" + +#: ../../mod/settings.php:161 ../../mod/settings.php:161 +#: ../../mod/settings.php:161 +msgid "Settings updated." +msgstr "" + +#: ../../mod/settings.php:211 ../../mod/settings.php:211 +#: ../../mod/settings.php:211 +msgid "Plugin Settings" +msgstr "" + +#: ../../mod/settings.php:212 ../../mod/settings.php:212 +#: ../../mod/settings.php:212 +msgid "Account Settings" +msgstr "" + +#: ../../mod/settings.php:218 ../../mod/settings.php:218 +#: ../../mod/settings.php:218 +msgid "No Plugin settings configured" +msgstr "" + +#: ../../mod/settings.php:263 ../../mod/settings.php:263 +#: ../../mod/settings.php:263 +msgid "OpenID: " +msgstr "" + +#: ../../mod/settings.php:263 ../../mod/settings.php:263 +#: ../../mod/settings.php:263 +msgid " (Optional) Allow this OpenID to login to this account." +msgstr "" + +#: ../../mod/settings.php:295 ../../mod/settings.php:295 +#: ../../mod/settings.php:295 +msgid "Profile is not published." +msgstr "" + +#: ../../mod/settings.php:352 ../../mod/settings.php:352 +#: ../../mod/settings.php:352 +msgid "Default Post Permissions" +msgstr "" + +#: ../../mod/item.php:37 ../../mod/item.php:37 ../../mod/item.php:37 +msgid "Unable to locate original post." +msgstr "" + +#: ../../mod/item.php:98 ../../mod/item.php:98 ../../mod/item.php:98 +msgid "Empty post discarded." +msgstr "" + +#: ../../mod/item.php:422 +msgid " commented on your item at " +msgstr "" + +#: ../../mod/item.php:445 +msgid " posted on your profile wall at " +msgstr "" + +#: ../../mod/item.php:471 ../../mod/item.php:471 ../../mod/item.php:471 +msgid "System error. Post not saved." +msgstr "" + +#: ../../mod/item.php:489 +msgid "This message was sent to you by " +msgstr "" + +#: ../../mod/item.php:490 +msgid ", a member of the Friendika social network." +msgstr "" + +#: ../../mod/item.php:491 ../../mod/item.php:491 ../../mod/item.php:491 +msgid "You may visit them online at" +msgstr "" + +#: ../../mod/item.php:493 ../../mod/item.php:493 ../../mod/item.php:493 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "" + +#: ../../mod/item.php:495 +msgid "posted an update." +msgstr "" + +#: ../../mod/search.php:17 ../include/nav.php:67 ../boot.php:2045 +#: ../../mod/search.php:17 ../../mod/search.php:17 ../../mod/search.php:17 +#: ../../include/nav.php:67 ../../boot.php:2045 +msgid "Search" +msgstr "" + +#: ../../mod/profile_photo.php:28 ../../mod/profile_photo.php:28 +#: ../../mod/profile_photo.php:28 +msgid "Image uploaded but image cropping failed." +msgstr "" + +#: ../../mod/profile_photo.php:61 +msgid "Image size reduction [175] failed." +msgstr "" + +#: ../../mod/profile_photo.php:68 +msgid "Image size reduction [80] failed." +msgstr "" + +#: ../../mod/profile_photo.php:75 +msgid "Image size reduction [48] failed." +msgstr "" + +#: ../../mod/profile_photo.php:95 ../../mod/profile_photo.php:95 +#: ../../mod/profile_photo.php:95 +msgid "Unable to process image" +msgstr "" + +#: ../../mod/profile_photo.php:228 ../../mod/profile_photo.php:228 +#: ../../mod/profile_photo.php:228 +msgid "Image uploaded successfully." +msgstr "" + +#: ../../mod/profile_photo.php:237 +msgid "Image size reduction [640] failed." +msgstr "" + +#: ../../mod/group.php:27 ../../mod/group.php:27 ../../mod/group.php:27 +msgid "Group created." +msgstr "" + +#: ../../mod/group.php:33 ../../mod/group.php:33 ../../mod/group.php:33 +msgid "Could not create group." +msgstr "" + +#: ../../mod/group.php:43 ../../mod/group.php:123 ../../mod/group.php:43 +#: ../../mod/group.php:43 ../../mod/group.php:123 +msgid "Group not found." +msgstr "" + +#: ../../mod/group.php:56 ../../mod/group.php:56 ../../mod/group.php:56 +msgid "Group name changed." +msgstr "" + +#: ../../mod/group.php:79 ../../mod/group.php:79 ../../mod/group.php:79 +msgid "Membership list updated." +msgstr "" + +#: ../../mod/group.php:88 ../index.php:243 ../../mod/group.php:88 +#: ../../mod/group.php:88 ../../index.php:243 +msgid "Permission denied" +msgstr "" + +#: ../../mod/group.php:107 ../../mod/group.php:107 ../../mod/group.php:107 +msgid "Group removed." +msgstr "" + +#: ../../mod/group.php:109 ../../mod/group.php:109 ../../mod/group.php:109 +msgid "Unable to remove group." +msgstr "" + +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/dfrn_request.php:628 +#: ../../addon/js_upload/js_upload.php:41 ../../mod/tagrm.php:11 +#: ../../../addon/js_upload/js_upload.php:41 +#: ../../addon/js_upload/js_upload.php:41 ../../mod/tagrm.php:11 +#: ../../mod/dfrn_request.php:628 ../addon/js_upload/js_upload.php:41 +#: ../../mod/tagrm.php:94 +msgid "Cancel" +msgstr "" + +#: ../../mod/tagrm.php:41 ../../mod/tagrm.php:41 ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "" + +#: ../../mod/tagrm.php:79 ../../mod/tagrm.php:79 ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "" + +#: ../../mod/tagrm.php:81 ../../mod/tagrm.php:81 ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "" + +#: ../../mod/tagrm.php:93 ../../mod/tagrm.php:93 ../../mod/tagrm.php:93 +msgid "Remove" +msgstr "" + +#: ../../mod/invite.php:28 ../../mod/invite.php:38 +msgid " : " +msgstr "" + +#: ../../mod/invite.php:28 ../../mod/register.php:95 ../../mod/register.php:95 +msgid "Not a valid email address." +msgstr "" + +#: ../../mod/invite.php:32 +msgid "Please join my network on " +msgstr "" + +#: ../../mod/invite.php:38 +msgid "Message delivery failed." +msgstr "" + +#: ../../mod/invite.php:42 +msgid " messages sent." +msgstr "" + +#: ../../mod/invite.php:57 ../../mod/invite.php:57 ../../mod/invite.php:57 +msgid "Send invitations" +msgstr "" + +#: ../../mod/invite.php:58 ../../mod/invite.php:58 ../../mod/invite.php:58 +msgid "Enter email addresses, one per line:" +msgstr "" + +#: ../../mod/invite.php:60 +msgid "Please join my social network on " +msgstr "" + +#: ../../mod/invite.php:61 ../../mod/invite.php:61 ../../mod/invite.php:61 +msgid "To accept this invitation, please visit:" +msgstr "" + +#: ../../mod/invite.php:62 ../../mod/invite.php:62 ../../mod/invite.php:62 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "" + +#: ../../mod/register.php:47 ../../mod/register.php:47 ../../mod/register.php:47 +msgid "Invalid OpenID url" +msgstr "" + +#: ../../mod/register.php:62 ../../mod/register.php:62 ../../mod/register.php:62 +msgid "Please enter the required information." +msgstr "" + +#: ../../mod/register.php:74 ../../mod/register.php:74 ../../mod/register.php:74 +msgid "Please use a shorter name." +msgstr "" + +#: ../../mod/register.php:76 ../../mod/register.php:76 ../../mod/register.php:76 +msgid "Name too short." +msgstr "" + +#: ../../mod/register.php:89 ../../mod/register.php:89 ../../mod/register.php:89 +msgid "That doesn\\'t appear to be your full (First Last) name." +msgstr "" + +#: ../../mod/register.php:92 ../../mod/register.php:92 ../../mod/register.php:92 +msgid "Your email domain is not among those allowed on this site." +msgstr "" + +#: ../../mod/register.php:101 ../../mod/register.php:101 +#: ../../mod/register.php:101 +msgid "Cannot use that email." +msgstr "" + +#: ../../mod/register.php:106 ../../mod/register.php:106 +#: ../../mod/register.php:106 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "" + +#: ../../mod/register.php:112 ../../mod/register.php:112 +#: ../../mod/register.php:112 +msgid "Nickname is already registered. Please choose another." +msgstr "" + +#: ../../mod/register.php:131 ../../mod/register.php:131 +#: ../../mod/register.php:131 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "" + +#: ../../mod/register.php:198 ../../mod/register.php:198 +#: ../../mod/register.php:198 +msgid "An error occurred during registration. Please try again." +msgstr "" + +#: ../../mod/register.php:216 ../../mod/register.php:216 +#: ../../mod/register.php:216 +msgid "An error occurred creating your default profile. Please try again." +msgstr "" + +#: ../../mod/register.php:315 ../../mod/register.php:315 +#: ../../mod/register.php:315 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "" + +#: ../../mod/register.php:319 ../../mod/register.php:319 +#: ../../mod/register.php:319 +msgid "Failed to send email message. Here is the message that failed." +msgstr "" + +#: ../../mod/register.php:324 ../../mod/register.php:324 +#: ../../mod/register.php:324 +msgid "Your registration can not be processed." +msgstr "" + +#: ../../mod/register.php:347 +msgid "Registration request at " +msgstr "" + +#: ../../mod/register.php:351 ../../mod/register.php:351 +#: ../../mod/register.php:351 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: ../../mod/register.php:399 ../../mod/register.php:399 +#: ../../mod/register.php:399 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "" + +#: ../../mod/register.php:400 ../../mod/register.php:400 +#: ../../mod/register.php:400 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "" + +#: ../../mod/register.php:401 ../../mod/register.php:401 +#: ../../mod/register.php:401 +msgid "Your OpenID (optional): " +msgstr "" + +#: ../../mod/register.php:404 ../../mod/register.php:404 +#: ../../mod/register.php:404 +msgid "" +"Members of this network prefer to communicate with real people who use their " +"real names." +msgstr "" + +#: ../../mod/register.php:413 ../../mod/register.php:413 +#: ../../mod/register.php:413 +msgid "Include your profile in member directory?" +msgstr "" + +#: ../../mod/register.php:416 ../../mod/dfrn_request.php:618 +#: ../../mod/register.php:416 ../../mod/register.php:416 +#: ../../mod/register.php:416 ../../mod/dfrn_request.php:618 +msgid "Yes" +msgstr "" + +#: ../../mod/register.php:417 ../../mod/dfrn_request.php:619 +#: ../../mod/register.php:417 ../../mod/register.php:417 +#: ../../mod/register.php:417 ../../mod/dfrn_request.php:619 +msgid "No" +msgstr "" + +#: ../../mod/register.php:429 ../../mod/register.php:429 +#: ../../mod/register.php:429 +msgid "Registration" +msgstr "" + +#: ../../mod/register.php:437 ../../mod/register.php:437 +#: ../../mod/register.php:437 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "" + +#: ../../mod/register.php:438 ../../mod/register.php:438 +#: ../../mod/register.php:438 +msgid "Your Email Address: " +msgstr "" + +#: ../../mod/register.php:439 ../../mod/register.php:439 +#: ../../mod/register.php:439 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "" + +#: ../../mod/register.php:440 ../../mod/register.php:440 +#: ../../mod/register.php:440 +msgid "Choose a nickname: " +msgstr "" + +#: ../../mod/register.php:443 ../include/nav.php:61 ../boot.php:809 +#: ../../mod/register.php:443 ../../mod/register.php:443 +#: ../../mod/register.php:443 ../../include/nav.php:61 ../../boot.php:809 +msgid "Register" +msgstr "" + +#: ../../mod/openid.php:62 ../../mod/openid.php:109 ../include/auth.php:105 +#: ../../include/auth.php:130 ../include/auth.php:183 ../../mod/openid.php:62 +#: ../../../include/auth.php:130 ../include/auth.php:130 +#: ../../mod/openid.php:62 ../../mod/openid.php:109 ../../include/auth.php:105 +#: ../../include/auth.php:130 ../../include/auth.php:183 +msgid "Login failed." +msgstr "" + +#: ../../mod/like.php:110 ../../mod/like.php:110 ../../mod/like.php:110 +msgid "status" +msgstr "" + +#: ../../mod/like.php:127 ../../mod/like.php:127 ../../mod/like.php:127 +msgid "likes" +msgstr "" + +#: ../../mod/like.php:129 ../../mod/like.php:129 ../../mod/like.php:129 +msgid "doesn't like" +msgstr "" + +#: ../../mod/like.php:151 +msgid "'s" +msgstr "" + +#: ../../mod/follow.php:167 ../../mod/follow.php:167 ../../mod/follow.php:167 +msgid "The profile address specified does not provide adequate information." +msgstr "" + +#: ../../mod/follow.php:173 ../../mod/follow.php:173 ../../mod/follow.php:173 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "" + +#: ../../mod/follow.php:224 ../../mod/follow.php:224 ../../mod/follow.php:224 +msgid "Unable to retrieve contact information." +msgstr "" + +#: ../../mod/follow.php:270 ../../mod/follow.php:270 ../../mod/follow.php:270 +msgid "following" +msgstr "" + +#: ../../mod/dfrn_request.php:92 ../../mod/dfrn_request.php:92 +#: ../../mod/dfrn_request.php:92 +msgid "This introduction has already been accepted." +msgstr "" + +#: ../../mod/dfrn_request.php:116 ../../mod/dfrn_request.php:347 +#: ../../mod/dfrn_request.php:116 ../../mod/dfrn_request.php:116 +#: ../../mod/dfrn_request.php:116 ../../mod/dfrn_request.php:347 +msgid "Profile location is not valid or does not contain profile information." +msgstr "" + +#: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:352 +#: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:121 +#: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:352 +msgid "Warning: profile location has no identifiable owner name." +msgstr "" + +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:354 +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:123 +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:354 +msgid "Warning: profile location has no profile photo." +msgstr "" + +#: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:357 +msgid " required parameter" +msgstr "" + +#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:358 +msgid " was " +msgstr "" + +#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:358 +msgid "s were " +msgstr "" + +#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:359 +msgid "not found at the given location." +msgstr "" + +#: ../../mod/dfrn_request.php:164 ../../mod/dfrn_request.php:164 +#: ../../mod/dfrn_request.php:164 +msgid "Introduction complete." +msgstr "" + +#: ../../mod/dfrn_request.php:188 ../../mod/dfrn_request.php:188 +#: ../../mod/dfrn_request.php:188 +msgid "Unrecoverable protocol error." +msgstr "" + +#: ../../mod/dfrn_request.php:216 ../../mod/dfrn_request.php:216 +#: ../../mod/dfrn_request.php:216 +msgid "Profile unavailable." +msgstr "" + +#: ../../mod/dfrn_request.php:241 +msgid " has received too many connection requests today." +msgstr "" + +#: ../../mod/dfrn_request.php:242 ../../mod/dfrn_request.php:242 +#: ../../mod/dfrn_request.php:242 +msgid "Spam protection measures have been invoked." +msgstr "" + +#: ../../mod/dfrn_request.php:243 ../../mod/dfrn_request.php:243 +#: ../../mod/dfrn_request.php:243 +msgid "Friends are advised to please try again in 24 hours." +msgstr "" + +#: ../../mod/dfrn_request.php:273 ../../mod/dfrn_request.php:273 +#: ../../mod/dfrn_request.php:273 +msgid "Invalid locator" +msgstr "" + +#: ../../mod/dfrn_request.php:292 ../../mod/dfrn_request.php:292 +#: ../../mod/dfrn_request.php:292 +msgid "Unable to resolve your name at the provided location." +msgstr "" + +#: ../../mod/dfrn_request.php:305 ../../mod/dfrn_request.php:305 +#: ../../mod/dfrn_request.php:305 +msgid "You have already introduced yourself here." +msgstr "" + +#: ../../mod/dfrn_request.php:309 +msgid "Apparently you are already friends with ." +msgstr "" + +#: ../../mod/dfrn_request.php:330 ../../mod/dfrn_request.php:330 +#: ../../mod/dfrn_request.php:330 +msgid "Invalid profile URL." +msgstr "" + +#: ../../mod/dfrn_request.php:336 ../../mod/dfrn_request.php:336 +#: ../../mod/dfrn_request.php:336 +msgid "Disallowed profile URL." +msgstr "" + +#: ../../mod/dfrn_request.php:402 ../../mod/contacts.php:85 +#: ../../mod/dfrn_request.php:402 ../../mod/dfrn_request.php:402 +#: ../../mod/dfrn_request.php:402 ../../mod/contacts.php:85 +msgid "Failed to update contact record." +msgstr "" + +#: ../../mod/dfrn_request.php:423 ../../mod/dfrn_request.php:423 +#: ../../mod/dfrn_request.php:423 +msgid "Your introduction has been sent." +msgstr "" + +#: ../../mod/dfrn_request.php:477 ../../mod/dfrn_request.php:477 +#: ../../mod/dfrn_request.php:477 +msgid "Please login to confirm introduction." +msgstr "" + +#: ../../mod/dfrn_request.php:491 ../../mod/dfrn_request.php:491 +#: ../../mod/dfrn_request.php:491 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "" + +#: ../../mod/dfrn_request.php:536 ../include/items.php:1341 +#: ../../mod/dfrn_request.php:536 ../../mod/dfrn_request.php:536 +#: ../../mod/dfrn_request.php:536 ../../include/items.php:1341 +msgid "[Name Withheld]" +msgstr "" + +#: ../../mod/dfrn_request.php:543 ../../mod/dfrn_request.php:543 +#: ../../mod/dfrn_request.php:543 +msgid "Introduction received at " +msgstr "" + +#: ../../mod/dfrn_request.php:615 ../../mod/dfrn_request.php:615 +#: ../../mod/dfrn_request.php:615 +msgid "Friend/Connection Request" +msgstr "" + +#: ../../mod/dfrn_request.php:616 ../../mod/dfrn_request.php:616 +#: ../../mod/dfrn_request.php:616 +msgid "Please answer the following:" +msgstr "" + +#: ../../mod/dfrn_request.php:617 ../../mod/dfrn_request.php:617 +#: ../../mod/dfrn_request.php:617 +msgid "Does $name know you?" +msgstr "" + +#: ../../mod/dfrn_request.php:620 ../../mod/dfrn_request.php:620 +#: ../../mod/dfrn_request.php:620 +msgid "Add a personal note:" +msgstr "" + +#: ../../mod/dfrn_request.php:621 ../../mod/dfrn_request.php:621 +#: ../../mod/dfrn_request.php:621 +msgid "" +"Please enter your profile address from one of the following supported social " +"networks:" +msgstr "" + +#: ../../mod/dfrn_request.php:622 ../../mod/dfrn_request.php:622 +#: ../../mod/dfrn_request.php:622 +msgid "Friendika" +msgstr "" + +#: ../../mod/dfrn_request.php:623 ../../mod/dfrn_request.php:623 +#: ../../mod/dfrn_request.php:623 +msgid "StatusNet/Federated Social Web" +msgstr "" + +#: ../../mod/dfrn_request.php:624 ../../mod/dfrn_request.php:624 +#: ../../mod/dfrn_request.php:624 +msgid "Private (secure) network" +msgstr "" + +#: ../../mod/dfrn_request.php:625 ../../mod/dfrn_request.php:625 +#: ../../mod/dfrn_request.php:625 +msgid "Public (insecure) network" +msgstr "" + +#: ../../mod/dfrn_request.php:626 ../../mod/dfrn_request.php:626 +#: ../../mod/dfrn_request.php:626 +msgid "Your profile address:" +msgstr "" + +#: ../../mod/dfrn_request.php:627 ../../mod/dfrn_request.php:627 +#: ../../mod/dfrn_request.php:627 +msgid "Submit Request" +msgstr "" + +#: ../../mod/contacts.php:12 ../../mod/contacts.php:12 ../../mod/contacts.php:12 +msgid "Invite Friends" +msgstr "" + +#: ../../mod/contacts.php:16 ../../mod/contacts.php:16 ../../mod/contacts.php:16 +msgid "Connect/Follow" +msgstr "" + +#: ../../mod/contacts.php:17 ../../mod/contacts.php:17 ../../mod/contacts.php:17 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "" + +#: ../../mod/contacts.php:18 ../../mod/contacts.php:18 ../../mod/contacts.php:18 +msgid "Follow" +msgstr "" + +#: ../../mod/contacts.php:38 ../../mod/contacts.php:119 +#: ../../mod/contacts.php:38 ../../mod/contacts.php:38 +#: ../../mod/contacts.php:119 +msgid "Could not access contact record." +msgstr "" + +#: ../../mod/contacts.php:52 ../../mod/contacts.php:52 ../../mod/contacts.php:52 +msgid "Could not locate selected profile." +msgstr "" + +#: ../../mod/contacts.php:83 ../../mod/contacts.php:83 ../../mod/contacts.php:83 +msgid "Contact updated." +msgstr "" + +#: ../../mod/contacts.php:141 ../../mod/contacts.php:141 +#: ../../mod/contacts.php:141 +msgid "Contact has been blocked" +msgstr "" + +#: ../../mod/contacts.php:141 ../../mod/contacts.php:141 +#: ../../mod/contacts.php:141 +msgid "Contact has been unblocked" +msgstr "" + +#: ../../mod/contacts.php:155 ../../mod/contacts.php:155 +#: ../../mod/contacts.php:155 +msgid "Contact has been ignored" +msgstr "" + +#: ../../mod/contacts.php:155 ../../mod/contacts.php:155 +#: ../../mod/contacts.php:155 +msgid "Contact has been unignored" +msgstr "" + +#: ../../mod/contacts.php:176 ../../mod/contacts.php:176 +#: ../../mod/contacts.php:176 +msgid "stopped following" +msgstr "" + +#: ../../mod/contacts.php:195 ../../mod/contacts.php:195 +#: ../../mod/contacts.php:195 +msgid "Contact has been removed." +msgstr "" + +#: ../../mod/contacts.php:223 ../../mod/contacts.php:344 +#: ../../../mod/contacts.php:223 ../../mod/contacts.php:223 +#: ../../mod/contacts.php:223 ../../mod/contacts.php:344 +msgid "Mutual Friendship" +msgstr "" + +#: ../../mod/contacts.php:227 ../../mod/contacts.php:348 +#: ../../../mod/contacts.php:227 ../../mod/contacts.php:227 +#: ../../mod/contacts.php:227 ../../mod/contacts.php:348 +msgid "is a fan of yours" +msgstr "" + +#: ../../mod/contacts.php:232 ../../mod/contacts.php:352 +#: ../../../mod/contacts.php:232 ../../mod/contacts.php:232 +#: ../../mod/contacts.php:232 ../../mod/contacts.php:352 +msgid "you are a fan of" +msgstr "" + +#: ../../mod/contacts.php:248 ../../mod/contacts.php:248 +#: ../../mod/contacts.php:248 +msgid "Never" +msgstr "" + +#: ../../mod/contacts.php:252 ../../mod/contacts.php:252 +#: ../../mod/contacts.php:252 +msgid "(Update was successful)" +msgstr "" + +#: ../../mod/contacts.php:252 ../../mod/contacts.php:252 +#: ../../mod/contacts.php:252 +msgid "(Update was not successful)" +msgstr "" + +#: ../../mod/contacts.php:255 ../../mod/contacts.php:255 +#: ../../mod/contacts.php:255 +msgid "Contact Editor" +msgstr "" + +#: ../../mod/contacts.php:256 ../../mod/contacts.php:256 +#: ../../mod/contacts.php:256 +msgid "Visit $name's profile" +msgstr "" + +#: ../../mod/contacts.php:257 ../../mod/contacts.php:257 +#: ../../mod/contacts.php:257 +msgid "Block/Unblock contact" +msgstr "" + +#: ../../mod/contacts.php:258 ../../mod/contacts.php:258 +#: ../../mod/contacts.php:258 +msgid "Ignore contact" +msgstr "" + +#: ../../mod/contacts.php:259 ../../mod/contacts.php:259 +#: ../../mod/contacts.php:259 +msgid "Delete contact" +msgstr "" + +#: ../../mod/contacts.php:261 ../../mod/contacts.php:261 +#: ../../mod/contacts.php:261 +msgid "Last updated: " +msgstr "" + +#: ../../mod/contacts.php:262 ../../mod/contacts.php:262 +#: ../../mod/contacts.php:262 +msgid "Update public posts: " +msgstr "" + +#: ../../mod/contacts.php:264 ../../mod/contacts.php:264 +#: ../../mod/contacts.php:264 +msgid "Update now" +msgstr "" + +#: ../../mod/contacts.php:267 ../../mod/contacts.php:267 +#: ../../mod/contacts.php:267 +msgid "Unblock this contact" +msgstr "" + +#: ../../mod/contacts.php:267 ../../mod/contacts.php:267 +#: ../../mod/contacts.php:267 +msgid "Block this contact" +msgstr "" + +#: ../../mod/contacts.php:268 ../../mod/contacts.php:268 +#: ../../mod/contacts.php:268 +msgid "Unignore this contact" +msgstr "" + +#: ../../mod/contacts.php:268 ../../mod/contacts.php:268 +#: ../../mod/contacts.php:268 +msgid "Ignore this contact" +msgstr "" + +#: ../../mod/contacts.php:271 ../../mod/contacts.php:271 +#: ../../mod/contacts.php:271 +msgid "Currently blocked" +msgstr "" + +#: ../../mod/contacts.php:272 ../../mod/contacts.php:272 +#: ../../mod/contacts.php:272 +msgid "Currently ignored" +msgstr "" + +#: ../../mod/contacts.php:303 ../include/acl_selectors.php:140 +#: ../../include/acl_selectors.php:155 ../include/nav.php:111 +#: ../../../boot.php:2012 ../../mod/contacts.php:303 +#: ../../../include/acl_selectors.php:155 ../../mod/contacts.php:303 +#: ../../include/acl_selectors.php:155 ../boot.php:2012 +#: ../include/acl_selectors.php:155 ../../include/acl_selectors.php:140 +#: ../../include/nav.php:111 ../../boot.php:2012 +msgid "Contacts" +msgstr "" + +#: ../../mod/contacts.php:305 ../../mod/contacts.php:305 +#: ../../mod/contacts.php:305 +msgid "Show Blocked Connections" +msgstr "" + +#: ../../mod/contacts.php:305 ../../mod/contacts.php:305 +#: ../../mod/contacts.php:305 +msgid "Hide Blocked Connections" +msgstr "" + +#: ../../mod/contacts.php:308 ../../mod/contacts.php:308 +#: ../../mod/contacts.php:308 +msgid "Find" +msgstr "" + +#: ../../mod/contacts.php:368 ../../mod/viewcontacts.php:44 +#: ../../mod/contacts.php:368 ../../mod/contacts.php:368 +#: ../../mod/viewcontacts.php:44 ../../mod/contacts.php:368 +msgid "Visit $username's profile" +msgstr "" + +#: ../../mod/contacts.php:369 ../../mod/contacts.php:369 +#: ../../mod/contacts.php:369 +msgid "Edit contact" +msgstr "" + +#: ../../addon/facebook/facebook.php:116 ../../addon/facebook/facebook.php:116 +#: ../addon/facebook/facebook.php:116 +msgid "Facebook disabled" +msgstr "" + +#: ../../addon/facebook/facebook.php:124 ../../addon/facebook/facebook.php:124 +#: ../addon/facebook/facebook.php:124 +msgid "Facebook API key is missing." +msgstr "" + +#: ../../addon/facebook/facebook.php:131 ../../addon/facebook/facebook.php:131 +#: ../addon/facebook/facebook.php:131 +msgid "Facebook Connect" +msgstr "" + +#: ../../addon/facebook/facebook.php:137 ../../addon/facebook/facebook.php:137 +#: ../addon/facebook/facebook.php:137 +msgid "Install Facebook post connector" +msgstr "" + +#: ../../addon/facebook/facebook.php:144 ../../addon/facebook/facebook.php:144 +#: ../addon/facebook/facebook.php:144 +msgid "Remove Facebook post connector" +msgstr "" + +#: ../../addon/facebook/facebook.php:150 ../../addon/facebook/facebook.php:150 +#: ../addon/facebook/facebook.php:150 +msgid "Post to Facebook by default" +msgstr "" + +#: ../../addon/facebook/facebook.php:174 ../../addon/facebook/facebook.php:174 +#: ../addon/facebook/facebook.php:174 +msgid "Facebook" +msgstr "" + +#: ../../addon/facebook/facebook.php:175 ../../addon/facebook/facebook.php:175 +#: ../addon/facebook/facebook.php:175 +msgid "Facebook Connector Settings" +msgstr "" + +#: ../../addon/facebook/facebook.php:189 ../../addon/facebook/facebook.php:189 +#: ../addon/facebook/facebook.php:189 +msgid "Post to Facebook" +msgstr "" + +#: ../../addon/facebook/facebook.php:230 ../../addon/facebook/facebook.php:230 +#: ../addon/facebook/facebook.php:230 +msgid "Image: " +msgstr "" + +#: ../../addon/randplace/randplace.php:171 +#: ../../addon/randplace/randplace.php:171 +#: ../../../addon/randplace/randplace.php:171 +#: ../../addon/randplace/randplace.php:171 ../addon/randplace/randplace.php:171 +msgid "Randplace Settings" +msgstr "" + +#: ../../addon/randplace/randplace.php:173 +#: ../../addon/randplace/randplace.php:173 +#: ../../../addon/randplace/randplace.php:173 +#: ../../addon/randplace/randplace.php:173 ../addon/randplace/randplace.php:173 +msgid "Enable Randplace Plugin" +msgstr "" + +#: ../../addon/twitter/twitter.php:64 ../addon/twitter/twitter.php:64 +#: ../../addon/twitter/twitter.php:64 +msgid "Post to Twitter" +msgstr "" + +#: ../../addon/twitter/twitter.php:122 ../addon/twitter/twitter.php:122 +#: ../../addon/twitter/twitter.php:122 +msgid "Twitter Posting Settings" +msgstr "" + +#: ../../addon/twitter/twitter.php:129 ../addon/twitter/twitter.php:129 +#: ../../addon/twitter/twitter.php:129 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." +msgstr "" + +#: ../../addon/twitter/twitter.php:148 ../addon/twitter/twitter.php:148 +#: ../../addon/twitter/twitter.php:148 +msgid "" +"At this Friendika instance the Twitter plugin was enabled but you have not " +"yet connected your account to your Twitter account. To do so click the " +"button below to get a PIN from Twitter which you have to copy into the input " +"box below and submit the form. Only your public posts will " +"be posted to Twitter." +msgstr "" + +#: ../../addon/twitter/twitter.php:149 ../addon/twitter/twitter.php:149 +#: ../../addon/twitter/twitter.php:149 +msgid "Log in with Twitter" +msgstr "" + +#: ../../addon/twitter/twitter.php:151 ../addon/twitter/twitter.php:151 +#: ../../addon/twitter/twitter.php:151 +msgid "Copy the PIN from Twitter here" +msgstr "" + +#: ../../addon/twitter/twitter.php:165 ../../addon/statusnet/statusnet.php:197 +#: ../../../addon/twitter/twitter.php:165 ../../addon/twitter/twitter.php:165 +#: ../addon/twitter/twitter.php:165 ../addon/statusnet/statusnet.php:197 +msgid "Currently connected to: " +msgstr "" + +#: ../../addon/twitter/twitter.php:166 ../addon/twitter/twitter.php:166 +#: ../../addon/twitter/twitter.php:166 +msgid "" +"If enabled all your public postings will be posted to the " +"associated Twitter account as well." +msgstr "" + +#: ../../addon/twitter/twitter.php:168 ../addon/twitter/twitter.php:168 +#: ../../addon/twitter/twitter.php:168 +msgid "Send public postings to Twitter" +msgstr "" + +#: ../../addon/twitter/twitter.php:172 ../../addon/statusnet/statusnet.php:204 +#: ../../../addon/twitter/twitter.php:172 ../../addon/twitter/twitter.php:172 +#: ../addon/twitter/twitter.php:172 ../addon/statusnet/statusnet.php:204 +msgid "Clear OAuth configuration" +msgstr "" + +#: ../../addon/tictac/tictac.php:14 ../addon/tictac/tictac.php:14 +#: ../../addon/tictac/tictac.php:14 +msgid "Three Dimensional Tic-Tac-Toe" +msgstr "" + +#: ../../addon/tictac/tictac.php:47 ../addon/tictac/tictac.php:47 +#: ../../addon/tictac/tictac.php:47 +msgid "3D Tic-Tac-Toe" +msgstr "" + +#: ../../addon/tictac/tictac.php:52 ../addon/tictac/tictac.php:52 +#: ../../addon/tictac/tictac.php:52 +msgid "New game" +msgstr "" + +#: ../../addon/tictac/tictac.php:53 ../addon/tictac/tictac.php:53 +#: ../../addon/tictac/tictac.php:53 +msgid "New game with handicap" +msgstr "" + +#: ../../addon/tictac/tictac.php:54 ../addon/tictac/tictac.php:54 +#: ../../addon/tictac/tictac.php:54 +msgid "" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " +msgstr "" + +#: ../../addon/tictac/tictac.php:55 ../addon/tictac/tictac.php:55 +#: ../../addon/tictac/tictac.php:55 +msgid "" +"In this case there are three levels. You win by getting three in a row on " +"any level, as well as up, down, and diagonally across the different levels." +msgstr "" + +#: ../../addon/tictac/tictac.php:57 ../addon/tictac/tictac.php:57 +#: ../../addon/tictac/tictac.php:57 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." +msgstr "" + +#: ../../addon/tictac/tictac.php:176 ../addon/tictac/tictac.php:176 +#: ../../addon/tictac/tictac.php:176 +msgid "You go first..." +msgstr "" + +#: ../../addon/tictac/tictac.php:181 ../addon/tictac/tictac.php:181 +#: ../../addon/tictac/tictac.php:181 +msgid "I'm going first this time..." +msgstr "" + +#: ../../addon/tictac/tictac.php:187 ../addon/tictac/tictac.php:187 +#: ../../addon/tictac/tictac.php:187 +msgid "You won!" +msgstr "" + +#: ../../addon/tictac/tictac.php:193 ../addon/tictac/tictac.php:218 +#: ../../addon/tictac/tictac.php:193 ../addon/tictac/tictac.php:193 +#: ../../addon/tictac/tictac.php:193 ../../addon/tictac/tictac.php:218 +msgid "\"Cat\" game!" +msgstr "" + +#: ../../addon/tictac/tictac.php:216 ../addon/tictac/tictac.php:216 +#: ../../addon/tictac/tictac.php:216 +msgid "I won!" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:39 +#: ../../../addon/js_upload/js_upload.php:39 +#: ../addon/js_upload/js_upload.php:39 ../../addon/js_upload/js_upload.php:39 +msgid "Upload a file" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:40 +#: ../../../addon/js_upload/js_upload.php:40 +#: ../addon/js_upload/js_upload.php:40 ../../addon/js_upload/js_upload.php:40 +msgid "Drop files here to upload" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:42 +#: ../../../addon/js_upload/js_upload.php:42 +#: ../addon/js_upload/js_upload.php:42 ../../addon/js_upload/js_upload.php:42 +msgid "Failed" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:288 +#: ../../addon/js_upload/js_upload.php:288 +#: ../../../addon/js_upload/js_upload.php:288 +#: ../../addon/js_upload/js_upload.php:288 ../addon/js_upload/js_upload.php:288 +msgid "No files were uploaded." +msgstr "" + +#: ../../addon/js_upload/js_upload.php:294 +#: ../../addon/js_upload/js_upload.php:294 +#: ../../../addon/js_upload/js_upload.php:294 +#: ../../addon/js_upload/js_upload.php:294 ../addon/js_upload/js_upload.php:294 +msgid "Uploaded file is empty" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:299 +#: ../../addon/js_upload/js_upload.php:299 +#: ../../../addon/js_upload/js_upload.php:299 +#: ../../addon/js_upload/js_upload.php:299 ../addon/js_upload/js_upload.php:299 +msgid "Uploaded file is too large" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:317 +#: ../../addon/js_upload/js_upload.php:317 +#: ../../../addon/js_upload/js_upload.php:317 +#: ../../addon/js_upload/js_upload.php:317 ../addon/js_upload/js_upload.php:317 +msgid "File has an invalid extension, it should be one of " +msgstr "" + +#: ../../addon/js_upload/js_upload.php:328 +#: ../../addon/js_upload/js_upload.php:328 +#: ../../../addon/js_upload/js_upload.php:328 +#: ../../addon/js_upload/js_upload.php:328 ../addon/js_upload/js_upload.php:328 +msgid "Upload was cancelled, or server error encountered" +msgstr "" + +#: ../../addon/java_upload/java_upload.php:33 +#: ../../addon/java_upload/java_upload.php:33 +#: ../../../addon/java_upload/java_upload.php:33 +#: ../../addon/java_upload/java_upload.php:33 +#: ../addon/java_upload/java_upload.php:33 +msgid "Select files to upload: " +msgstr "" + +#: ../../addon/java_upload/java_upload.php:35 +#: ../../addon/java_upload/java_upload.php:35 +#: ../../../addon/java_upload/java_upload.php:35 +#: ../../addon/java_upload/java_upload.php:35 +#: ../addon/java_upload/java_upload.php:35 +msgid "" +"Use the following controls only if the Java uploader [above] fails to launch." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:78 +#: ../../../addon/statusnet/statusnet.php:78 +#: ../addon/statusnet/statusnet.php:78 ../../addon/statusnet/statusnet.php:78 +msgid "Post to StatusNet" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:146 +#: ../../addon/statusnet/statusnet.php:146 +#: ../../../addon/statusnet/statusnet.php:146 +#: ../../addon/statusnet/statusnet.php:146 ../addon/statusnet/statusnet.php:146 +msgid "StatusNet Posting Settings" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:152 +#: ../../addon/statusnet/statusnet.php:152 +#: ../../../addon/statusnet/statusnet.php:152 +#: ../../addon/statusnet/statusnet.php:152 ../addon/statusnet/statusnet.php:152 +msgid "" +"No consumer key pair for StatusNet found. Register your Friendika Account as " +"an desktop client on your StatusNet account, copy the consumer key pair here " +"and enter the API base root.
Before you register your own OAuth key " +"pair ask the administrator if there is already a key pair for this Friendika " +"installation at your favorited StatusNet installation." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:154 +#: ../../addon/statusnet/statusnet.php:154 +#: ../../../addon/statusnet/statusnet.php:154 +#: ../../addon/statusnet/statusnet.php:154 ../addon/statusnet/statusnet.php:154 +msgid "OAuth Consumer Key" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:157 +#: ../../addon/statusnet/statusnet.php:157 +#: ../../../addon/statusnet/statusnet.php:157 +#: ../../addon/statusnet/statusnet.php:157 ../addon/statusnet/statusnet.php:157 +msgid "OAuth Consumer Secret" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:160 +#: ../../addon/statusnet/statusnet.php:160 +#: ../../../addon/statusnet/statusnet.php:160 +#: ../../addon/statusnet/statusnet.php:160 ../addon/statusnet/statusnet.php:160 +msgid "Base API Path (remember the trailing /)" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:181 +#: ../../addon/statusnet/statusnet.php:181 +#: ../../../addon/statusnet/statusnet.php:181 +#: ../../addon/statusnet/statusnet.php:181 ../addon/statusnet/statusnet.php:181 +msgid "" +"To connect to your StatusNet account click the button below to get a " +"security code from StatusNet which you have to copy into the input box below " +"and submit the form. Only your public posts will be posted " +"to StatusNet." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:182 +#: ../../addon/statusnet/statusnet.php:182 +#: ../../../addon/statusnet/statusnet.php:182 +#: ../../addon/statusnet/statusnet.php:182 ../addon/statusnet/statusnet.php:182 +msgid "Log in with StatusNet" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:184 +#: ../../addon/statusnet/statusnet.php:184 +#: ../../../addon/statusnet/statusnet.php:184 +#: ../../addon/statusnet/statusnet.php:184 ../addon/statusnet/statusnet.php:184 +msgid "Copy the security code from StatusNet here" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:198 +#: ../../addon/statusnet/statusnet.php:198 +#: ../../../addon/statusnet/statusnet.php:198 +#: ../../addon/statusnet/statusnet.php:198 ../addon/statusnet/statusnet.php:198 +msgid "" +"If enabled all your public postings will be posted to the " +"associated StatusNet account as well." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:200 +#: ../../addon/statusnet/statusnet.php:200 +#: ../../../addon/statusnet/statusnet.php:200 +#: ../../addon/statusnet/statusnet.php:200 ../addon/statusnet/statusnet.php:200 +msgid "Send public postings to StatusNet" +msgstr "" + +#: ../../index.php:187 ../index.php:187 ../../index.php:187 +msgid "Not Found" +msgstr "" + +#: ../../index.php:188 ../index.php:188 ../../index.php:188 +msgid "Page not found." +msgstr "" + +#: ../../include/acl_selectors.php:132 ../include/acl_selectors.php:132 +#: ../../include/acl_selectors.php:132 +msgid "Visible To:" +msgstr "" + +#: ../../include/acl_selectors.php:136 ../include/acl_selectors.php:151 +#: ../../include/acl_selectors.php:136 ../include/acl_selectors.php:136 +#: ../../include/acl_selectors.php:136 ../../include/acl_selectors.php:151 +msgid "Groups" +msgstr "" + +#: ../../include/acl_selectors.php:147 ../include/acl_selectors.php:147 +#: ../../include/acl_selectors.php:147 +msgid "Except For:" +msgstr "" + +#: ../../include/auth.php:27 ../include/auth.php:27 ../../include/auth.php:27 +msgid "Logged out." +msgstr "" + +#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 +#: ../include/profile_selectors.php:6 +msgid "Male" +msgstr "" + +#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 +#: ../include/profile_selectors.php:6 +msgid "Female" +msgstr "" + +#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 +#: ../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "" + +#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 +#: ../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "" + +#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 +#: ../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "" + +#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 +#: ../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "" + +#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 +#: ../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "" + +#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 +#: ../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "" + +#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 +#: ../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "" + +#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 +#: ../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "" + +#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 +#: ../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "" + +#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 +#: ../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "" + +#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 +#: ../include/profile_selectors.php:6 +msgid "Other" +msgstr "" + +#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 +#: ../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "" + +#: ../../include/profile_selectors.php:19 +#: ../../../include/profile_selectors.php:19 +#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 +msgid "Males" +msgstr "" + +#: ../../include/profile_selectors.php:19 +#: ../../../include/profile_selectors.php:19 +#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 +msgid "Females" +msgstr "" + +#: ../../include/profile_selectors.php:19 +#: ../../../include/profile_selectors.php:19 +#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 +msgid "Gay" +msgstr "" + +#: ../../include/profile_selectors.php:19 +#: ../../../include/profile_selectors.php:19 +#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 +msgid "Lesbian" +msgstr "" + +#: ../../include/profile_selectors.php:19 +#: ../../../include/profile_selectors.php:19 +#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 +msgid "No Preference" +msgstr "" + +#: ../../include/profile_selectors.php:19 +#: ../../../include/profile_selectors.php:19 +#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 +msgid "Bisexual" +msgstr "" + +#: ../../include/profile_selectors.php:19 +#: ../../../include/profile_selectors.php:19 +#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 +msgid "Autosexual" +msgstr "" + +#: ../../include/profile_selectors.php:19 +#: ../../../include/profile_selectors.php:19 +#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 +msgid "Abstinent" +msgstr "" + +#: ../../include/profile_selectors.php:19 +#: ../../../include/profile_selectors.php:19 +#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 +msgid "Virgin" +msgstr "" + +#: ../../include/profile_selectors.php:19 +#: ../../../include/profile_selectors.php:19 +#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 +msgid "Deviant" +msgstr "" + +#: ../../include/profile_selectors.php:19 +#: ../../../include/profile_selectors.php:19 +#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 +msgid "Fetish" +msgstr "" + +#: ../../include/profile_selectors.php:19 +#: ../../../include/profile_selectors.php:19 +#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 +msgid "Oodles" +msgstr "" + +#: ../../include/profile_selectors.php:19 +#: ../../../include/profile_selectors.php:19 +#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 +msgid "Nonsexual" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Single" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Lonely" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Available" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Unavailable" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Dating" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Unfaithful" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Sex Addict" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Friends" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Friends/Benefits" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Casual" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Engaged" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Married" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Partners" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Cohabiting" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Happy" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Not Looking" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Swinger" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Betrayed" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Separated" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Unstable" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Divorced" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Widowed" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Uncertain" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Complicated" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Don't care" +msgstr "" + +#: ../../include/profile_selectors.php:33 +#: ../../../include/profile_selectors.php:33 +#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 +msgid "Ask me" +msgstr "" + +#: ../../include/contact_selectors.php:32 +#: ../../../include/contact_selectors.php:32 +#: ../include/contact_selectors.php:32 ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "" + +#: ../../include/contact_selectors.php:33 +#: ../../../include/contact_selectors.php:33 +#: ../include/contact_selectors.php:33 ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "" + +#: ../../include/contact_selectors.php:34 +#: ../../../include/contact_selectors.php:34 +#: ../include/contact_selectors.php:34 ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "" + +#: ../../include/contact_selectors.php:35 +#: ../../../include/contact_selectors.php:35 +#: ../include/contact_selectors.php:35 ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "" + +#: ../../include/contact_selectors.php:36 +#: ../../../include/contact_selectors.php:36 +#: ../include/contact_selectors.php:36 ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "" + +#: ../../include/contact_selectors.php:37 +#: ../../../include/contact_selectors.php:37 +#: ../include/contact_selectors.php:37 ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "" + +#: ../../include/contact_selectors.php:55 +#: ../../../include/contact_selectors.php:55 +#: ../include/contact_selectors.php:55 ../../include/contact_selectors.php:55 +msgid "Frequently" +msgstr "" + +#: ../../include/contact_selectors.php:56 +#: ../../../include/contact_selectors.php:56 +#: ../include/contact_selectors.php:56 ../../include/contact_selectors.php:56 +msgid "Hourly" +msgstr "" + +#: ../../include/contact_selectors.php:57 +#: ../../../include/contact_selectors.php:57 +#: ../include/contact_selectors.php:57 ../../include/contact_selectors.php:57 +msgid "Twice daily" +msgstr "" + +#: ../../include/contact_selectors.php:58 +#: ../../../include/contact_selectors.php:58 +#: ../include/contact_selectors.php:58 ../../include/contact_selectors.php:58 +msgid "Daily" +msgstr "" + +#: ../../include/contact_selectors.php:59 +#: ../../../include/contact_selectors.php:59 +#: ../include/contact_selectors.php:59 ../../include/contact_selectors.php:59 +msgid "Weekly" +msgstr "" + +#: ../../include/contact_selectors.php:60 +#: ../../../include/contact_selectors.php:60 +#: ../include/contact_selectors.php:60 ../../include/contact_selectors.php:60 +msgid "Monthly" +msgstr "" + +#: ../../include/nav.php:38 ../boot.php:837 ../include/nav.php:38 +#: ../../include/nav.php:38 ../../boot.php:837 +msgid "Logout" +msgstr "" + +#: ../../include/nav.php:44 ../boot.php:817 ../boot.php:823 +#: ../../include/nav.php:44 ../include/nav.php:44 ../../include/nav.php:44 +#: ../../boot.php:817 ../../boot.php:823 +msgid "Login" +msgstr "" + +#: ../../include/nav.php:56 ../include/nav.php:91 ../include/nav.php:56 +#: ../../include/nav.php:56 ../../include/nav.php:91 +msgid "Home" +msgstr "" + +#: ../../include/nav.php:64 ../include/nav.php:64 ../../include/nav.php:64 +msgid "Apps" +msgstr "" + +#: ../../include/nav.php:77 ../include/nav.php:77 ../../include/nav.php:77 +msgid "Directory" +msgstr "" + +#: ../../include/nav.php:87 ../include/nav.php:87 ../../include/nav.php:87 +msgid "Network" +msgstr "" + +#: ../../include/nav.php:96 ../include/nav.php:96 ../../include/nav.php:96 +msgid "Notifications" +msgstr "" + +#: ../../include/nav.php:104 ../include/nav.php:104 ../../include/nav.php:104 +msgid "Manage" +msgstr "" + +#: ../../include/nav.php:107 ../include/nav.php:107 ../../include/nav.php:107 +msgid "Settings" +msgstr "" + +#: ../../include/nav.php:109 ../include/nav.php:109 ../../include/nav.php:109 +msgid "Profiles" +msgstr "" + +#: ../../include/oembed.php:57 ../include/oembed.php:57 +#: ../../include/oembed.php:57 +msgid "Embedding disabled" +msgstr "" + +#: ../../include/items.php:1004 ../include/items.php:1004 +#: ../../include/items.php:1004 +msgid "Birthday:" +msgstr "" + +#: ../../include/items.php:1348 ../include/items.php:1348 +#: ../../include/items.php:1348 +msgid "You have a new follower at " +msgstr "" + +#: ../../include/group.php:130 ../include/group.php:130 +#: ../../include/group.php:130 +msgid "Create a new group" +msgstr "" + +#: ../../include/group.php:131 ../include/group.php:131 +#: ../../include/group.php:131 +msgid "Everybody" +msgstr "" + +#: ../../include/datetime.php:44 ../include/datetime.php:46 +#: ../../include/datetime.php:44 ../include/datetime.php:44 +#: ../../include/datetime.php:44 ../../include/datetime.php:46 +msgid "Miscellaneous" +msgstr "" + +#: ../../include/datetime.php:148 ../include/datetime.php:148 +#: ../../include/datetime.php:148 +msgid "less than a second ago" +msgstr "" + +#: ../../include/datetime.php:151 ../include/datetime.php:151 +#: ../../include/datetime.php:151 +msgid "year" +msgstr "" + +#: ../../include/datetime.php:151 ../include/datetime.php:151 +#: ../../include/datetime.php:151 +msgid "years" +msgstr "" + +#: ../../include/datetime.php:152 ../include/datetime.php:152 +#: ../../include/datetime.php:152 +msgid "month" +msgstr "" + +#: ../../include/datetime.php:152 ../include/datetime.php:152 +#: ../../include/datetime.php:152 +msgid "months" +msgstr "" + +#: ../../include/datetime.php:153 ../include/datetime.php:153 +#: ../../include/datetime.php:153 +msgid "week" +msgstr "" + +#: ../../include/datetime.php:153 ../include/datetime.php:153 +#: ../../include/datetime.php:153 +msgid "weeks" +msgstr "" + +#: ../../include/datetime.php:154 ../include/datetime.php:154 +#: ../../include/datetime.php:154 +msgid "day" +msgstr "" + +#: ../../include/datetime.php:154 ../include/datetime.php:154 +#: ../../include/datetime.php:154 +msgid "days" +msgstr "" + +#: ../../include/datetime.php:155 ../include/datetime.php:155 +#: ../../include/datetime.php:155 +msgid "hour" +msgstr "" + +#: ../../include/datetime.php:155 ../include/datetime.php:155 +#: ../../include/datetime.php:155 +msgid "hours" +msgstr "" + +#: ../../include/datetime.php:156 ../include/datetime.php:156 +#: ../../include/datetime.php:156 +msgid "minute" +msgstr "" + +#: ../../include/datetime.php:156 ../include/datetime.php:156 +#: ../../include/datetime.php:156 +msgid "minutes" +msgstr "" + +#: ../../include/datetime.php:157 ../include/datetime.php:157 +#: ../../include/datetime.php:157 +msgid "second" +msgstr "" + +#: ../../include/datetime.php:157 ../include/datetime.php:157 +#: ../../include/datetime.php:157 +msgid "seconds" +msgstr "" + +#: ../../include/datetime.php:164 ../include/datetime.php:164 +#: ../../include/datetime.php:164 +msgid " ago" +msgstr "" + +#: ../../boot.php:808 ../boot.php:808 ../../boot.php:808 +msgid "Create a New Account" +msgstr "" + +#: ../../boot.php:815 ../boot.php:815 ../../boot.php:815 +msgid "Nickname or Email address: " +msgstr "" + +#: ../../boot.php:816 ../boot.php:816 ../../boot.php:816 +msgid "Password: " +msgstr "" + +#: ../../boot.php:821 ../boot.php:821 ../../boot.php:821 +msgid "Nickname/Email/OpenID: " +msgstr "" + +#: ../../boot.php:822 ../boot.php:822 ../../boot.php:822 +msgid "Password (if not OpenID): " +msgstr "" + +#: ../../boot.php:825 ../boot.php:825 ../../boot.php:825 +msgid "Forgot your password?" +msgstr "" + +#: ../../boot.php:826 ../boot.php:826 ../../boot.php:826 +msgid "Password Reset" +msgstr "" + +#: ../../boot.php:1077 ../boot.php:1077 ../../boot.php:1077 +msgid "prev" +msgstr "" + +#: ../../boot.php:1079 ../boot.php:1079 ../../boot.php:1079 +msgid "first" +msgstr "" + +#: ../../boot.php:1108 ../boot.php:1108 ../../boot.php:1108 +msgid "last" +msgstr "" + +#: ../../boot.php:1111 ../boot.php:1111 ../../boot.php:1111 +msgid "next" +msgstr "" + +#: ../../boot.php:1831 ../boot.php:1831 ../../boot.php:1831 +msgid " likes this." +msgstr "" + +#: ../../boot.php:1831 ../boot.php:1831 ../../boot.php:1831 +msgid " doesn't like this." +msgstr "" + +#: ../../boot.php:1834 ../boot.php:1834 ../../boot.php:1834 +msgid "people" +msgstr "" + +#: ../../boot.php:1834 ../boot.php:1834 ../../boot.php:1834 +msgid "like this." +msgstr "" + +#: ../../boot.php:1834 ../boot.php:1834 ../../boot.php:1834 +msgid "don't like this." +msgstr "" + +#: ../../boot.php:1839 ../boot.php:1839 ../../boot.php:1839 +msgid "and" +msgstr "" + +#: ../../boot.php:1842 ../boot.php:1842 ../../boot.php:1842 +msgid ", and " +msgstr "" + +#: ../../boot.php:1842 ../boot.php:1842 ../../boot.php:1842 +msgid " other people" +msgstr "" + +#: ../../boot.php:1843 ../boot.php:1843 ../../boot.php:1843 +msgid " like this." +msgstr "" + +#: ../../boot.php:1843 ../boot.php:1843 ../../boot.php:1843 +msgid " don't like this." +msgstr "" + +#: ../../boot.php:2004 ../boot.php:2004 ../../boot.php:2004 +msgid "No contacts" +msgstr "" + +#: ../../boot.php:2257 ../boot.php:2257 ../../boot.php:2257 +msgid "Connect" +msgstr "" + +#: ../../boot.php:2267 ../boot.php:2267 ../../boot.php:2267 +msgid "Location:" +msgstr "" + +#: ../../boot.php:2271 ../boot.php:2271 ../../boot.php:2271 +msgid ", " +msgstr "" + +#: ../../boot.php:2279 ../boot.php:2279 ../../boot.php:2279 +msgid "Gender:" +msgstr "" + +#: ../../boot.php:2283 ../boot.php:2283 ../../boot.php:2283 +msgid "Status:" +msgstr "" + +#: ../../boot.php:2285 ../boot.php:2285 ../../boot.php:2285 +msgid "Homepage:" +msgstr "" + +#: ../../boot.php:2376 ../boot.php:2376 ../../boot.php:2376 +msgid "Monday" +msgstr "" + +#: ../../boot.php:2376 ../boot.php:2376 ../../boot.php:2376 +msgid "Tuesday" +msgstr "" + +#: ../../boot.php:2376 ../boot.php:2376 ../../boot.php:2376 +msgid "Wednesday" +msgstr "" + +#: ../../boot.php:2376 ../boot.php:2376 ../../boot.php:2376 +msgid "Thursday" +msgstr "" + +#: ../../boot.php:2376 ../boot.php:2376 ../../boot.php:2376 +msgid "Friday" +msgstr "" + +#: ../../boot.php:2376 ../boot.php:2376 ../../boot.php:2376 +msgid "Saturday" +msgstr "" + +#: ../../boot.php:2376 ../boot.php:2376 ../../boot.php:2376 +msgid "Sunday" +msgstr "" + +#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 +msgid "January" +msgstr "" + +#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 +msgid "February" +msgstr "" + +#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 +msgid "March" +msgstr "" + +#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 +msgid "April" +msgstr "" + +#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 +msgid "May" +msgstr "" + +#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 +msgid "June" +msgstr "" + +#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 +msgid "July" +msgstr "" + +#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 +msgid "August" +msgstr "" + +#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 +msgid "September" +msgstr "" + +#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 +msgid "October" +msgstr "" + +#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 +msgid "November" +msgstr "" + +#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 +msgid "December" +msgstr "" + +#: ../../boot.php:2409 ../boot.php:2409 ../../boot.php:2409 +msgid "Birthdays this week:" +msgstr "" + +#: ../../boot.php:2410 ../boot.php:2410 ../../boot.php:2410 +msgid "(Adjusted for local time)" +msgstr "" + +#: ../../boot.php:2419 ../boot.php:2419 ../../boot.php:2419 +msgid "[today]" +msgstr "" + +#: ../../boot.php:2616 ../boot.php:2616 ../../boot.php:2616 +msgid "link to source" +msgstr "" + +#: ../../mod/lostpass.php:38 ../../mod/lostpass.php:38 ../../mod/lostpass.php:38 +#, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: ../../mod/manage.php:37 ../../mod/manage.php:37 ../../mod/manage.php:37 +#, php-format +msgid "Welcome back %s" +msgstr "" + +#: ../../mod/dfrn_poll.php:78 ../../mod/dfrn_poll.php:392 +#: ../../mod/dfrn_poll.php:78 ../../mod/dfrn_poll.php:78 +#: ../../mod/dfrn_poll.php:392 +#, php-format +msgid "%s welcomes %s" +msgstr "" + +#: ../../mod/wall_upload.php:56 ../../mod/profile_photo.php:109 +#: ../../../mod/wall_upload.php:56 ../../mod/wall_upload.php:56 +#: ../../mod/wall_upload.php:56 ../../mod/profile_photo.php:109 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "" + +#: ../../mod/home.php:23 ../../mod/home.php:23 ../../mod/home.php:23 +#, php-format +msgid "Welcome to %s" +msgstr "" + +#: ../../mod/regmod.php:54 ../../mod/regmod.php:54 ../../mod/regmod.php:54 +#, php-format +msgid "Registration revoked for %s" +msgstr "" + +#: ../../mod/regmod.php:92 ../../mod/register.php:310 ../../mod/regmod.php:92 +#: ../../mod/regmod.php:92 ../../mod/register.php:310 +#, php-format +msgid "Registration details for %s" +msgstr "" + +#: ../../mod/item.php:422 ../../mod/item.php:422 ../../mod/item.php:422 +#, php-format +msgid "%s commented on your item at %s" +msgstr "" + +#: ../../mod/item.php:445 ../../mod/item.php:445 ../../mod/item.php:445 +#, php-format +msgid "%s posted on your profile wall at %s" +msgstr "" + +#: ../../mod/item.php:446 ../../mod/item.php:446 ../../mod/item.php:446 +msgid "Administrator@" +msgstr "" + +#: ../../mod/item.php:489 ../../mod/item.php:489 ../../mod/item.php:489 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendika social network." +msgstr "" + +#: ../../mod/item.php:495 ../../mod/item.php:495 ../../mod/item.php:495 +#, php-format +msgid "%s posted an update." +msgstr "" + +#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68 +#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:237 +#: ../../../mod/profile_photo.php:61 ../../mod/profile_photo.php:75 +#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:61 +#: ../../mod/profile_photo.php:68 ../../mod/profile_photo.php:75 +#: ../../mod/profile_photo.php:237 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "" + +#: ../../mod/invite.php:28 ../../mod/invite.php:28 ../../mod/invite.php:28 +#, php-format +msgid "%s : Not a valid email address." +msgstr "" + +#: ../../mod/invite.php:32 ../../mod/invite.php:32 ../../mod/invite.php:32 +#, php-format +msgid "Please join my network on %s" +msgstr "" + +#: ../../mod/invite.php:38 ../../mod/invite.php:38 ../../mod/invite.php:38 +#, php-format +msgid "%s : Message delivery failed." +msgstr "" + +#: ../../mod/invite.php:42 ../../mod/invite.php:42 ../../mod/invite.php:42 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" + +#: ../../mod/invite.php:60 ../../mod/invite.php:60 ../../mod/invite.php:60 +#, php-format +msgid "Please join my social network on %s" +msgstr "" + +#: ../../mod/register.php:347 ../../mod/register.php:347 +#: ../../mod/register.php:347 +#, php-format +msgid "Registration request at %s" +msgstr "" + +#: ../../mod/like.php:151 ../../mod/like.php:151 ../../mod/like.php:151 +#, php-format +msgid "%s's" +msgstr "" + +#: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:357 ../test.php:6 +#: ../../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:126 +#: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:357 +#: ../../test.php:6 +#, 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] "" + +#: ../../mod/dfrn_request.php:241 ../../mod/dfrn_request.php:241 +#: ../../mod/dfrn_request.php:241 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "" + +#: ../../mod/dfrn_request.php:309 ../../mod/dfrn_request.php:309 +#: ../../mod/dfrn_request.php:309 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "" From a00beafe7ffb859c2e9f267c81f7054ac6452cbf Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Fri, 11 Mar 2011 07:28:13 +0100 Subject: [PATCH 09/17] updated strings --- util/messages.po | 273 +++---- view/it/messages.po | 41 +- view/it/strings.php | 1656 +++++++++++++++---------------------------- 3 files changed, 723 insertions(+), 1247 deletions(-) diff --git a/util/messages.po b/util/messages.po index b543a39f60..eac6395dbf 100644 --- a/util/messages.po +++ b/util/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 2.1.913\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-11 00:21+0100\n" +"POT-Creation-Date: 2011-03-11 01:08+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,17 +18,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: ../../mod/network.php:6 ../mod/profiles.php:7 ../mod/profiles.php:224 -#: ../../mod/notifications.php:56 ../mod/message.php:8 ../mod/message.php:116 -#: ../../mod/manage.php:75 ../mod/dfrn_confirm.php:53 ../mod/wall_upload.php:42 -#: ../../mod/display.php:303 ../mod/regmod.php:16 ../mod/photos.php:85 -#: ../../mod/photos.php:772 ../mod/viewcontacts.php:13 ../mod/settings.php:14 -#: ../../mod/settings.php:19 ../mod/settings.php:206 ../mod/item.php:57 -#: ../../mod/item.php:616 ../mod/profile_photo.php:19 -#: ../../mod/profile_photo.php:133 ../mod/profile_photo.php:139 -#: ../../mod/profile_photo.php:150 ../mod/group.php:19 ../mod/invite.php:13 -#: ../../mod/invite.php:50 ../mod/register.php:25 ../mod/follow.php:8 -#: ../../mod/contacts.php:101 ../addon/facebook/facebook.php:110 ../index.php:244 +#: ../../mod/network.php:6 ../../mod/profiles.php:7 ../../mod/profiles.php:224 +#: ../../mod/notifications.php:56 ../../mod/message.php:8 +#: ../../mod/message.php:116 ../../mod/manage.php:75 +#: ../../mod/dfrn_confirm.php:53 ../../mod/wall_upload.php:42 +#: ../../mod/display.php:303 ../../mod/regmod.php:16 ../../mod/photos.php:85 +#: ../../mod/photos.php:772 ../../mod/viewcontacts.php:13 +#: ../../mod/settings.php:14 ../../mod/settings.php:19 +#: ../../mod/settings.php:206 ../../mod/item.php:57 ../../mod/item.php:616 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:133 +#: ../../mod/profile_photo.php:139 ../../mod/profile_photo.php:150 +#: ../../mod/group.php:19 ../../mod/invite.php:13 ../../mod/invite.php:50 +#: ../../mod/register.php:25 ../../mod/follow.php:8 ../../mod/contacts.php:101 +#: ../../addon/facebook/facebook.php:110 ../../index.php:244 msgid "Permission denied." msgstr "" @@ -40,47 +42,48 @@ msgstr "" msgid "New Item View" msgstr "" -#: ../../mod/network.php:91 ../mod/profile.php:151 +#: ../../mod/network.php:91 ../../mod/profile.php:151 msgid "Share" msgstr "" -#: ../../mod/network.php:92 ../mod/message.php:185 ../mod/message.php:319 -#: ../../mod/profile.php:152 +#: ../../mod/network.php:92 ../../mod/message.php:185 +#: ../../mod/message.php:319 ../../mod/profile.php:152 msgid "Upload photo" msgstr "" -#: ../../mod/network.php:93 ../mod/message.php:186 ../mod/message.php:320 -#: ../../mod/profile.php:153 +#: ../../mod/network.php:93 ../../mod/message.php:186 +#: ../../mod/message.php:320 ../../mod/profile.php:153 msgid "Insert web link" msgstr "" -#: ../../mod/network.php:94 ../mod/profile.php:154 +#: ../../mod/network.php:94 ../../mod/profile.php:154 msgid "Insert YouTube video" msgstr "" -#: ../../mod/network.php:95 ../mod/profile.php:155 +#: ../../mod/network.php:95 ../../mod/profile.php:155 msgid "Set your location" msgstr "" -#: ../../mod/network.php:96 ../mod/profile.php:156 +#: ../../mod/network.php:96 ../../mod/profile.php:156 msgid "Clear browser location" msgstr "" -#: ../../mod/network.php:97 ../mod/network.php:367 ../mod/message.php:187 -#: ../../mod/message.php:321 ../mod/display.php:158 ../mod/photos.php:1052 -#: ../../mod/profile.php:157 ../mod/profile.php:309 +#: ../../mod/network.php:97 ../../mod/network.php:367 +#: ../../mod/message.php:187 ../../mod/message.php:321 +#: ../../mod/display.php:158 ../../mod/photos.php:1052 +#: ../../mod/profile.php:157 ../../mod/profile.php:309 msgid "Please wait" msgstr "" -#: ../../mod/network.php:98 ../mod/profile.php:158 +#: ../../mod/network.php:98 ../../mod/profile.php:158 msgid "Permission settings" msgstr "" -#: ../../mod/network.php:104 ../mod/profile.php:165 +#: ../../mod/network.php:104 ../../mod/profile.php:165 msgid "CC: email addresses" msgstr "" -#: ../../mod/network.php:106 ../mod/profile.php:167 +#: ../../mod/network.php:106 ../../mod/profile.php:167 msgid "Example: bob@example.com, mary@example.com" msgstr "" @@ -96,65 +99,67 @@ msgstr "" msgid "Group: " msgstr "" -#: ../../mod/network.php:272 ../mod/network.php:434 ../mod/display.php:258 -#: ../../mod/profile.php:382 ../mod/search.php:116 +#: ../../mod/network.php:272 ../../mod/network.php:434 +#: ../../mod/display.php:258 ../../mod/profile.php:382 +#: ../../mod/search.php:116 msgid "View $name's profile" msgstr "" -#: ../../mod/network.php:287 ../mod/search.php:131 +#: ../../mod/network.php:287 ../../mod/search.php:131 msgid "View in context" msgstr "" -#: ../../mod/network.php:321 ../mod/display.php:149 ../mod/photos.php:935 -#: ../../mod/profile.php:300 +#: ../../mod/network.php:321 ../../mod/display.php:149 +#: ../../mod/photos.php:935 ../../mod/profile.php:300 msgid "Private Message" msgstr "" -#: ../../mod/network.php:365 ../mod/display.php:156 ../mod/photos.php:1050 -#: ../../mod/profile.php:307 +#: ../../mod/network.php:365 ../../mod/display.php:156 +#: ../../mod/photos.php:1050 ../../mod/profile.php:307 msgid "I like this (toggle)" msgstr "" -#: ../../mod/network.php:366 ../mod/display.php:157 ../mod/photos.php:1051 -#: ../../mod/profile.php:308 +#: ../../mod/network.php:366 ../../mod/display.php:157 +#: ../../mod/photos.php:1051 ../../mod/profile.php:308 msgid "I don't like this (toggle)" msgstr "" -#: ../../mod/network.php:380 ../mod/display.php:170 ../mod/photos.php:1071 -#: ../../mod/photos.php:1111 ../mod/photos.php:1140 ../mod/profile.php:321 +#: ../../mod/network.php:380 ../../mod/display.php:170 +#: ../../mod/photos.php:1071 ../../mod/photos.php:1111 +#: ../../mod/photos.php:1140 ../../mod/profile.php:321 msgid "This is you" msgstr "" -#: ../../mod/network.php:386 ../mod/display.php:234 ../mod/photos.php:1168 -#: ../../mod/profile.php:361 ../mod/group.php:137 +#: ../../mod/network.php:386 ../../mod/display.php:234 +#: ../../mod/photos.php:1168 ../../mod/profile.php:361 ../../mod/group.php:137 msgid "Delete" msgstr "" -#: ../../mod/network.php:435 ../mod/display.php:259 +#: ../../mod/network.php:435 ../../mod/display.php:259 msgid "View $owner_name's profile" msgstr "" -#: ../../mod/network.php:436 ../mod/display.php:260 +#: ../../mod/network.php:436 ../../mod/display.php:260 msgid "to" msgstr "" -#: ../../mod/network.php:437 ../mod/display.php:261 +#: ../../mod/network.php:437 ../../mod/display.php:261 msgid "Wall-to-Wall" msgstr "" -#: ../../mod/network.php:438 ../mod/display.php:262 +#: ../../mod/network.php:438 ../../mod/display.php:262 msgid "via Wall-To-Wall:" msgstr "" -#: ../../mod/network.php:471 ../mod/display.php:312 ../mod/profile.php:414 -#: ../../mod/register.php:422 +#: ../../mod/network.php:471 ../../mod/display.php:312 +#: ../../mod/profile.php:414 ../../mod/register.php:422 msgid "" "Shared content is covered by the Creative Commons Attribution 3.0 license." msgstr "" -#: ../../mod/profiles.php:21 ../mod/profiles.php:234 ../mod/profiles.php:339 -#: ../../mod/dfrn_confirm.php:62 +#: ../../mod/profiles.php:21 ../../mod/profiles.php:234 +#: ../../mod/profiles.php:339 ../../mod/dfrn_confirm.php:62 msgid "Profile not found." msgstr "" @@ -170,11 +175,11 @@ msgstr "" msgid "Profile deleted." msgstr "" -#: ../../mod/profiles.php:267 ../mod/profiles.php:298 +#: ../../mod/profiles.php:267 ../../mod/profiles.php:298 msgid "Profile-" msgstr "" -#: ../../mod/profiles.php:286 ../mod/profiles.php:325 +#: ../../mod/profiles.php:286 ../../mod/profiles.php:325 msgid "New profile created." msgstr "" @@ -201,10 +206,11 @@ msgstr "" msgid "Password reset requested at %s" msgstr "" -#: ../../mod/lostpass.php:39 ../mod/dfrn_confirm.php:649 -#: ../../mod/dfrn_notify.php:177 ../mod/dfrn_notify.php:389 ../mod/regmod.php:93 -#: ../../mod/item.php:423 ../mod/register.php:311 ../mod/register.php:348 -#: ../../mod/dfrn_request.php:545 ../include/items.php:1350 +#: ../../mod/lostpass.php:39 ../../mod/dfrn_confirm.php:649 +#: ../../mod/dfrn_notify.php:177 ../../mod/dfrn_notify.php:389 +#: ../../mod/regmod.php:93 ../../mod/item.php:423 ../../mod/register.php:311 +#: ../../mod/register.php:348 ../../mod/dfrn_request.php:545 +#: ../../include/items.php:1350 msgid "Administrator" msgstr "" @@ -212,11 +218,11 @@ msgstr "" msgid "Invalid request identifier." msgstr "" -#: ../../mod/notifications.php:31 ../mod/notifications.php:134 +#: ../../mod/notifications.php:31 ../../mod/notifications.php:134 msgid "Discard" msgstr "" -#: ../../mod/notifications.php:41 ../mod/notifications.php:133 +#: ../../mod/notifications.php:41 ../../mod/notifications.php:133 msgid "Ignore" msgstr "" @@ -293,7 +299,7 @@ msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../mod/install.php:68 ../mod/install.php:75 ../mod/install.php:175 +#: ../../mod/install.php:68 ../../mod/install.php:75 ../../mod/install.php:175 msgid "Please see the file \"INSTALL.txt\"." msgstr "" @@ -311,11 +317,12 @@ msgstr "" msgid "Welcome to Friendika." msgstr "" -#: ../../mod/install.php:109 ../mod/manage.php:106 ../mod/photos.php:800 -#: ../../mod/photos.php:857 ../mod/photos.php:1032 ../mod/invite.php:64 -#: ../../addon/facebook/facebook.php:151 ../addon/randplace/randplace.php:179 -#: ../../addon/twitter/twitter.php:156 ../addon/twitter/twitter.php:175 -#: ../../addon/statusnet/statusnet.php:163 ../addon/statusnet/statusnet.php:189 +#: ../../mod/install.php:109 ../../mod/manage.php:106 ../../mod/photos.php:800 +#: ../../mod/photos.php:857 ../../mod/photos.php:1032 ../../mod/invite.php:64 +#: ../../addon/facebook/facebook.php:151 +#: ../../addon/randplace/randplace.php:179 ../../addon/twitter/twitter.php:156 +#: ../../addon/twitter/twitter.php:175 ../../addon/statusnet/statusnet.php:163 +#: ../../addon/statusnet/statusnet.php:189 #: ../../addon/statusnet/statusnet.php:207 msgid "Submit" msgstr "" @@ -421,8 +428,9 @@ msgstr "" msgid "Unable to locate contact information." msgstr "" -#: ../../mod/message.php:93 ../mod/wall_upload.php:79 ../mod/wall_upload.php:88 -#: ../../mod/wall_upload.php:95 ../mod/item.php:184 +#: ../../mod/message.php:93 ../../mod/wall_upload.php:79 +#: ../../mod/wall_upload.php:88 ../../mod/wall_upload.php:95 +#: ../../mod/item.php:184 msgid "Wall Photos" msgstr "" @@ -434,7 +442,7 @@ msgstr "" msgid "Message could not be sent." msgstr "" -#: ../../mod/message.php:125 ../include/nav.php:100 +#: ../../mod/message.php:125 ../../include/nav.php:100 msgid "Messages" msgstr "" @@ -462,15 +470,15 @@ msgstr "" msgid "Send Private Message" msgstr "" -#: ../../mod/message.php:178 ../mod/message.php:312 +#: ../../mod/message.php:178 ../../mod/message.php:312 msgid "To:" msgstr "" -#: ../../mod/message.php:179 ../mod/message.php:313 +#: ../../mod/message.php:179 ../../mod/message.php:313 msgid "Subject:" msgstr "" -#: ../../mod/message.php:182 ../mod/message.php:316 ../mod/invite.php:59 +#: ../../mod/message.php:182 ../../mod/message.php:316 ../../mod/invite.php:59 msgid "Your message:" msgstr "" @@ -498,7 +506,7 @@ msgstr "" msgid "Global Directory" msgstr "" -#: ../../mod/directory.php:38 ../mod/contacts.php:307 +#: ../../mod/directory.php:38 ../../mod/contacts.php:307 msgid "Finding: " msgstr "" @@ -521,12 +529,12 @@ msgstr "" msgid "Select an identity to manage: " msgstr "" -#: ../../mod/dfrn_poll.php:78 ../mod/dfrn_poll.php:392 +#: ../../mod/dfrn_poll.php:78 ../../mod/dfrn_poll.php:392 #, php-format msgid "%s welcomes %s" msgstr "" -#: ../../mod/dfrn_confirm.php:114 ../mod/contacts.php:209 +#: ../../mod/dfrn_confirm.php:114 ../../mod/contacts.php:209 msgid "Contact not found." msgstr "" @@ -542,7 +550,7 @@ msgstr "" msgid "Confirmation completed successfully." msgstr "" -#: ../../mod/dfrn_confirm.php:250 ../mod/dfrn_confirm.php:264 +#: ../../mod/dfrn_confirm.php:250 ../../mod/dfrn_confirm.php:264 #: ../../mod/dfrn_confirm.php:271 msgid "Remote site reported: " msgstr "" @@ -599,22 +607,22 @@ msgstr "" msgid "Connection accepted at %s" msgstr "" -#: ../../mod/wall_upload.php:56 ../mod/profile_photo.php:109 +#: ../../mod/wall_upload.php:56 ../../mod/profile_photo.php:109 #, php-format msgid "Image exceeds size limit of %d" msgstr "" -#: ../../mod/wall_upload.php:65 ../mod/photos.php:570 +#: ../../mod/wall_upload.php:65 ../../mod/photos.php:570 #: ../../mod/profile_photo.php:118 msgid "Unable to process image." msgstr "" -#: ../../mod/wall_upload.php:82 ../mod/photos.php:588 +#: ../../mod/wall_upload.php:82 ../../mod/photos.php:588 #: ../../mod/profile_photo.php:230 msgid "Image upload failed." msgstr "" -#: ../../mod/display.php:15 ../mod/display.php:307 ../mod/item.php:546 +#: ../../mod/display.php:15 ../../mod/display.php:307 ../../mod/item.php:546 msgid "Item not found." msgstr "" @@ -638,7 +646,7 @@ msgstr "" msgid "New mail received at " msgstr "" -#: ../../mod/dfrn_notify.php:388 ../mod/dfrn_notify.php:474 +#: ../../mod/dfrn_notify.php:388 ../../mod/dfrn_notify.php:474 #, php-format msgid "%s commented on an item at %s" msgstr "" @@ -647,7 +655,7 @@ msgstr "" msgid "From: Administrator@" msgstr "" -#: ../../mod/removeme.php:42 ../mod/removeme.php:45 +#: ../../mod/removeme.php:42 ../../mod/removeme.php:45 msgid "Remove My Account" msgstr "" @@ -675,7 +683,7 @@ msgstr "" msgid "Registration revoked for %s" msgstr "" -#: ../../mod/regmod.php:92 ../mod/register.php:310 +#: ../../mod/regmod.php:92 ../../mod/register.php:310 #, php-format msgid "Registration details for %s" msgstr "" @@ -692,10 +700,11 @@ msgstr "" msgid "Photo Albums" msgstr "" -#: ../../mod/photos.php:34 ../mod/photos.php:106 ../mod/photos.php:780 -#: ../../mod/photos.php:849 ../mod/photos.php:864 ../mod/photos.php:1198 -#: ../../mod/photos.php:1209 ../include/Photo.php:225 ../include/Photo.php:232 -#: ../../include/Photo.php:239 ../include/items.php:959 ../include/items.php:962 +#: ../../mod/photos.php:34 ../../mod/photos.php:106 ../../mod/photos.php:780 +#: ../../mod/photos.php:849 ../../mod/photos.php:864 ../../mod/photos.php:1198 +#: ../../mod/photos.php:1209 ../../include/Photo.php:225 +#: ../../include/Photo.php:232 ../../include/Photo.php:239 +#: ../../include/items.php:959 ../../include/items.php:962 #: ../../include/items.php:965 msgid "Contact Photos" msgstr "" @@ -704,12 +713,12 @@ msgstr "" msgid "Contact information unavailable" msgstr "" -#: ../../mod/photos.php:106 ../mod/photos.php:530 ../mod/photos.php:849 -#: ../../mod/photos.php:864 ../mod/profile_photo.php:58 -#: ../../mod/profile_photo.php:65 ../mod/profile_photo.php:72 -#: ../../mod/profile_photo.php:155 ../mod/profile_photo.php:225 -#: ../../mod/profile_photo.php:234 ../mod/register.php:267 -#: ../../mod/register.php:274 ../mod/register.php:281 +#: ../../mod/photos.php:106 ../../mod/photos.php:530 ../../mod/photos.php:849 +#: ../../mod/photos.php:864 ../../mod/profile_photo.php:58 +#: ../../mod/profile_photo.php:65 ../../mod/profile_photo.php:72 +#: ../../mod/profile_photo.php:155 ../../mod/profile_photo.php:225 +#: ../../mod/profile_photo.php:234 ../../mod/register.php:267 +#: ../../mod/register.php:274 ../../mod/register.php:281 msgid "Profile Photos" msgstr "" @@ -717,11 +726,11 @@ msgstr "" msgid "Album not found." msgstr "" -#: ../../mod/photos.php:134 ../mod/photos.php:858 +#: ../../mod/photos.php:134 ../../mod/photos.php:858 msgid "Delete Album" msgstr "" -#: ../../mod/photos.php:197 ../mod/photos.php:1033 +#: ../../mod/photos.php:197 ../../mod/photos.php:1033 msgid "Delete Photo" msgstr "" @@ -729,7 +738,7 @@ msgstr "" msgid "was tagged in a" msgstr "" -#: ../../mod/photos.php:468 ../mod/like.php:110 +#: ../../mod/photos.php:468 ../../mod/like.php:110 msgid "photo" msgstr "" @@ -737,7 +746,7 @@ msgstr "" msgid "by" msgstr "" -#: ../../mod/photos.php:558 ../addon/js_upload/js_upload.php:306 +#: ../../mod/photos.php:558 ../../addon/js_upload/js_upload.php:306 msgid "Image exceeds size limit of " msgstr "" @@ -749,7 +758,7 @@ msgstr "" msgid "Upload Photos" msgstr "" -#: ../../mod/photos.php:810 ../mod/photos.php:853 +#: ../../mod/photos.php:810 ../../mod/photos.php:853 msgid "New album name: " msgstr "" @@ -757,7 +766,7 @@ msgstr "" msgid "or existing album name: " msgstr "" -#: ../../mod/photos.php:813 ../mod/photos.php:1028 +#: ../../mod/photos.php:813 ../../mod/photos.php:1028 msgid "Permissions" msgstr "" @@ -765,7 +774,7 @@ msgstr "" msgid "Edit Album" msgstr "" -#: ../../mod/photos.php:878 ../mod/photos.php:1228 +#: ../../mod/photos.php:878 ../../mod/photos.php:1228 msgid "View Photo" msgstr "" @@ -821,11 +830,11 @@ msgstr "" msgid "View Album" msgstr "" -#: ../../mod/profile.php:8 ../boot.php:2200 +#: ../../mod/profile.php:8 ../../boot.php:2200 msgid "No profile" msgstr "" -#: ../../mod/viewcontacts.php:17 ../boot.php:2028 +#: ../../mod/viewcontacts.php:17 ../../boot.php:2028 msgid "View Contacts" msgstr "" @@ -833,7 +842,7 @@ msgstr "" msgid "No contacts." msgstr "" -#: ../../mod/viewcontacts.php:44 ../mod/contacts.php:368 +#: ../../mod/viewcontacts.php:44 ../../mod/contacts.php:368 msgid "Visit $username's profile" msgstr "" @@ -948,7 +957,7 @@ msgstr "" msgid "%s posted an update." msgstr "" -#: ../../mod/search.php:17 ../include/nav.php:67 ../boot.php:2045 +#: ../../mod/search.php:17 ../../include/nav.php:67 ../../boot.php:2045 msgid "Search" msgstr "" @@ -956,8 +965,8 @@ msgstr "" msgid "Image uploaded but image cropping failed." msgstr "" -#: ../../mod/profile_photo.php:61 ../mod/profile_photo.php:68 -#: ../../mod/profile_photo.php:75 ../mod/profile_photo.php:237 +#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68 +#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:237 #, php-format msgid "Image size reduction [%s] failed." msgstr "" @@ -978,7 +987,7 @@ msgstr "" msgid "Could not create group." msgstr "" -#: ../../mod/group.php:43 ../mod/group.php:123 +#: ../../mod/group.php:43 ../../mod/group.php:123 msgid "Group not found." msgstr "" @@ -990,7 +999,7 @@ msgstr "" msgid "Membership list updated." msgstr "" -#: ../../mod/group.php:88 ../index.php:243 +#: ../../mod/group.php:88 ../../index.php:243 msgid "Permission denied" msgstr "" @@ -1002,8 +1011,8 @@ msgstr "" msgid "Unable to remove group." msgstr "" -#: ../../mod/tagrm.php:11 ../mod/tagrm.php:94 ../mod/dfrn_request.php:628 -#: ../../addon/js_upload/js_upload.php:41 +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 +#: ../../mod/dfrn_request.php:628 ../../addon/js_upload/js_upload.php:41 msgid "Cancel" msgstr "" @@ -1169,11 +1178,11 @@ msgstr "" msgid "Include your profile in member directory?" msgstr "" -#: ../../mod/register.php:416 ../mod/dfrn_request.php:618 +#: ../../mod/register.php:416 ../../mod/dfrn_request.php:618 msgid "Yes" msgstr "" -#: ../../mod/register.php:417 ../mod/dfrn_request.php:619 +#: ../../mod/register.php:417 ../../mod/dfrn_request.php:619 msgid "No" msgstr "" @@ -1200,16 +1209,16 @@ msgstr "" msgid "Choose a nickname: " msgstr "" -#: ../../mod/register.php:443 ../include/nav.php:61 ../boot.php:809 +#: ../../mod/register.php:443 ../../include/nav.php:61 ../../boot.php:809 msgid "Register" msgstr "" -#: ../../mod/openid.php:62 ../mod/openid.php:109 ../include/auth.php:105 -#: ../../include/auth.php:130 ../include/auth.php:183 +#: ../../mod/openid.php:62 ../../mod/openid.php:109 ../../include/auth.php:105 +#: ../../include/auth.php:130 ../../include/auth.php:183 msgid "Login failed." msgstr "" -#: ../../mod/openid.php:73 ../include/auth.php:194 +#: ../../mod/openid.php:73 ../../include/auth.php:194 msgid "Welcome back " msgstr "" @@ -1252,19 +1261,20 @@ msgstr "" msgid "This introduction has already been accepted." msgstr "" -#: ../../mod/dfrn_request.php:116 ../mod/dfrn_request.php:347 +#: ../../mod/dfrn_request.php:116 ../../mod/dfrn_request.php:347 msgid "Profile location is not valid or does not contain profile information." msgstr "" -#: ../../mod/dfrn_request.php:121 ../mod/dfrn_request.php:352 +#: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:352 msgid "Warning: profile location has no identifiable owner name." msgstr "" -#: ../../mod/dfrn_request.php:123 ../mod/dfrn_request.php:354 +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:354 msgid "Warning: profile location has no profile photo." msgstr "" -#: ../../mod/dfrn_request.php:126 ../mod/dfrn_request.php:357 ../test.php:6 +#: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:357 +#: ../../test.php:6 #, 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" @@ -1321,7 +1331,7 @@ msgstr "" msgid "Disallowed profile URL." msgstr "" -#: ../../mod/dfrn_request.php:402 ../mod/contacts.php:85 +#: ../../mod/dfrn_request.php:402 ../../mod/contacts.php:85 msgid "Failed to update contact record." msgstr "" @@ -1339,7 +1349,7 @@ msgid "" "strong> profile." msgstr "" -#: ../../mod/dfrn_request.php:536 ../include/items.php:1341 +#: ../../mod/dfrn_request.php:536 ../../include/items.php:1341 msgid "[Name Withheld]" msgstr "" @@ -1409,7 +1419,7 @@ msgstr "" msgid "Follow" msgstr "" -#: ../../mod/contacts.php:38 ../mod/contacts.php:119 +#: ../../mod/contacts.php:38 ../../mod/contacts.php:119 msgid "Could not access contact record." msgstr "" @@ -1445,15 +1455,15 @@ msgstr "" msgid "Contact has been removed." msgstr "" -#: ../../mod/contacts.php:223 ../mod/contacts.php:344 +#: ../../mod/contacts.php:223 ../../mod/contacts.php:344 msgid "Mutual Friendship" msgstr "" -#: ../../mod/contacts.php:227 ../mod/contacts.php:348 +#: ../../mod/contacts.php:227 ../../mod/contacts.php:348 msgid "is a fan of yours" msgstr "" -#: ../../mod/contacts.php:232 ../mod/contacts.php:352 +#: ../../mod/contacts.php:232 ../../mod/contacts.php:352 msgid "you are a fan of" msgstr "" @@ -1525,8 +1535,9 @@ msgstr "" msgid "Currently ignored" msgstr "" -#: ../../mod/contacts.php:303 ../include/acl_selectors.php:140 -#: ../../include/acl_selectors.php:155 ../include/nav.php:111 ../boot.php:2012 +#: ../../mod/contacts.php:303 ../../include/acl_selectors.php:140 +#: ../../include/acl_selectors.php:155 ../../include/nav.php:111 +#: ../../boot.php:2012 msgid "Contacts" msgstr "" @@ -1625,7 +1636,7 @@ msgstr "" msgid "Copy the PIN from Twitter here" msgstr "" -#: ../../addon/twitter/twitter.php:165 ../addon/statusnet/statusnet.php:197 +#: ../../addon/twitter/twitter.php:165 ../../addon/statusnet/statusnet.php:197 msgid "Currently connected to: " msgstr "" @@ -1639,7 +1650,7 @@ msgstr "" msgid "Send public postings to Twitter" msgstr "" -#: ../../addon/twitter/twitter.php:172 ../addon/statusnet/statusnet.php:204 +#: ../../addon/twitter/twitter.php:172 ../../addon/statusnet/statusnet.php:204 msgid "Clear OAuth configuration" msgstr "" @@ -1689,7 +1700,7 @@ msgstr "" msgid "You won!" msgstr "" -#: ../../addon/tictac/tictac.php:193 ../addon/tictac/tictac.php:218 +#: ../../addon/tictac/tictac.php:193 ../../addon/tictac/tictac.php:218 msgid "\"Cat\" game!" msgstr "" @@ -1805,7 +1816,7 @@ msgstr "" msgid "Visible To:" msgstr "" -#: ../../include/acl_selectors.php:136 ../include/acl_selectors.php:151 +#: ../../include/acl_selectors.php:136 ../../include/acl_selectors.php:151 msgid "Groups" msgstr "" @@ -2077,15 +2088,15 @@ msgstr "" msgid "Monthly" msgstr "" -#: ../../include/nav.php:38 ../boot.php:837 +#: ../../include/nav.php:38 ../../boot.php:837 msgid "Logout" msgstr "" -#: ../../include/nav.php:44 ../boot.php:817 ../boot.php:823 +#: ../../include/nav.php:44 ../../boot.php:817 ../../boot.php:823 msgid "Login" msgstr "" -#: ../../include/nav.php:56 ../include/nav.php:91 +#: ../../include/nav.php:56 ../../include/nav.php:91 msgid "Home" msgstr "" @@ -2137,7 +2148,7 @@ msgstr "" msgid "Everybody" msgstr "" -#: ../../include/datetime.php:44 ../include/datetime.php:46 +#: ../../include/datetime.php:44 ../../include/datetime.php:46 msgid "Miscellaneous" msgstr "" diff --git a/view/it/messages.po b/view/it/messages.po index 1fe541f469..18279658de 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -288,10 +288,6 @@ msgstr "Età:" msgid "Profile Image" msgstr "Immagine del profilo" -#: ../../mod/lostpass.php:38 -msgid "Password reset requested at " -msgstr "Richiesta di azzeramento password presso %s" - #: ../../mod/lostpass.php:39 ../../mod/dfrn_confirm.php:649 #: ../../mod/dfrn_notify.php:177 ../../mod/dfrn_notify.php:389 #: ../../mod/regmod.php:93 ../../mod/register.php:311 @@ -429,10 +425,12 @@ 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:84 ../../mod/install.php:84 ../../mod/install.php:84 msgid "Welcome to Friendika." -msgstr "" +msgstr "Benvenuto su Friendika." #: ../../mod/install.php:109 ../../mod/manage.php:106 ../../mod/photos.php:800 #: ../../mod/photos.php:857 ../../mod/photos.php:1032 ../../mod/invite.php:64 @@ -456,61 +454,73 @@ msgstr "" #: ../../addon/statusnet/statusnet.php:189 #: ../../addon/statusnet/statusnet.php:207 msgid "Submit" -msgstr "" +msgstr "Invia" #: ../../mod/install.php:124 ../../mod/install.php:124 ../../mod/install.php:124 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" +"Non riesco a trovare la versione a riga di comando di PHP nel PATH del " +"server web." #: ../../mod/install.php:125 ../../mod/install.php:125 ../../mod/install.php:125 msgid "" "This is required. Please adjust the configuration file .htconfig.php " "accordingly." -msgstr "" +msgstr "Questo è richiesto. Sistema il file .htconfig.php di conseguenza." #: ../../mod/install.php:132 ../../mod/install.php:132 ../../mod/install.php:132 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "" +"La versione a riga di comando di PHP nel tuo sistema non ha " +"\"register_argc_argv\" abilitato." #: ../../mod/install.php:133 ../../mod/install.php:133 ../../mod/install.php:133 msgid "This is required for message delivery to work." -msgstr "" +msgstr "E' richiesto per il funzionamento della consegna dei messaggi." #: ../../mod/install.php:155 ../../mod/install.php:155 ../../mod/install.php:155 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "" +"Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di " +"generare le chiavi di criptazione" #: ../../mod/install.php:156 ../../mod/install.php:156 ../../mod/install.php:156 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "" +"Se sta girando su Windows, guarda " +"\"http://www.php.net/manual/en/openssl.installation.php\"." #: ../../mod/install.php:165 ../../mod/install.php:165 ../../mod/install.php:165 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" +"Errore: Il modulo mod-rewrite del server web Apache è richiesto ma non è " +"installato." #: ../../mod/install.php:167 ../../mod/install.php:167 ../../mod/install.php:167 msgid "Error: libCURL PHP module required but not installed." -msgstr "" +msgstr "Errore: Il modulo libCURL di PHP è richiesto ma non è installato." #: ../../mod/install.php:169 ../../mod/install.php:169 ../../mod/install.php:169 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" +"Errore: Il modulo GD graphics di PHP, con supporto JPEG, è richiesto ma non " +"è installato." #: ../../mod/install.php:171 ../../mod/install.php:171 ../../mod/install.php:171 msgid "Error: openssl PHP module required but not installed." -msgstr "" +msgstr "Errore: Il modulo openssl di PHP è richiesto ma non è installato." #: ../../mod/install.php:173 ../../mod/install.php:173 ../../mod/install.php:173 msgid "Error: mysqli PHP module required but not installed." -msgstr "" +msgstr "Errore: Il modulo mysqli di PHP è richiesto ma non è installato." #: ../../mod/install.php:184 ../../mod/install.php:184 ../../mod/install.php:184 msgid "" @@ -3111,7 +3121,7 @@ msgstr "" #: ../../mod/like.php:151 ../../mod/like.php:151 ../../mod/like.php:151 #, php-format msgid "%s's" -msgstr "" +msgstr "di %s" #: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:357 ../test.php:6 #: ../../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:126 @@ -3120,16 +3130,17 @@ msgstr "" #, 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] "" +msgstr[0] "%d parametro richiesto non è stato trovato alla posizione data" +msgstr[1] "%d parametri richiesti non sono stati trovati alla posizione data" #: ../../mod/dfrn_request.php:241 ../../mod/dfrn_request.php:241 #: ../../mod/dfrn_request.php:241 #, php-format msgid "%s has received too many connection requests today." -msgstr "" +msgstr "%s ha ricevuto troppe richieste di connessioni per oggi." #: ../../mod/dfrn_request.php:309 ../../mod/dfrn_request.php:309 #: ../../mod/dfrn_request.php:309 #, php-format msgid "Apparently you are already friends with %s." -msgstr "" +msgstr "Sembra che tu sia già amico di %s." diff --git a/view/it/strings.php b/view/it/strings.php index 437d6e7c6f..e12ea556f9 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -1,1102 +1,556 @@ 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['Nickname or Email address: '] = 'Soprannome o indirizzo Email: '; -$a->strings['Welcome to '] = 'Benvenuto a '; -$a->strings['Password: '] = 'Password: '; -$a->strings['Login'] = 'Accedi'; -$a->strings['Nickname/Email/OpenID: '] = 'Soprannome/Email/OpenID: '; -$a->strings['Password (if not OpenID): '] = 'Password (se non OpenID): '; -$a->strings['Forgot your password?'] = 'Dimenticata la pssword?'; -$a->strings['Password Reset'] = 'Resetta password'; -$a->strings['prev'] = 'prec'; -$a->strings['first'] = 'primo'; -$a->strings['last'] = 'ultimo'; -$a->strings['next'] = 'succ'; -$a->strings[' likes this.'] = ' apprezza questo.'; -$a->strings[' doesn\'t like this.'] = ' non apprezza questo.'; -$a->strings['people'] = 'persone'; -$a->strings['like this.'] = 'apprezza questo.'; -$a->strings['don\'t like this.'] = 'non apprezza questo.'; -$a->strings['and'] = 'e'; -$a->strings[', and '] = ', e '; -$a->strings[' other people'] = ' altre persone'; -$a->strings[' like this.'] = ' apprezza questo.'; -$a->strings[' don\'t like this.'] = ' non apprezza questo.'; -$a->strings['No contacts'] = 'Nessun contatto'; -$a->strings['Contacts'] = 'Contatti'; -$a->strings['View Contacts'] = 'Guarda contatti'; -$a->strings['Search'] = 'Cerca'; -$a->strings['No profile'] = 'Nessun profilo'; -$a->strings['Connect'] = 'Connetti'; -$a->strings['Location:'] = 'Posizione:'; -$a->strings[', '] = ', '; -$a->strings['Gender:'] = 'Genere:'; -$a->strings['Status:'] = 'Stato:'; -$a->strings['Homepage:'] = 'Homepage:'; -$a->strings['Invite Friends'] = 'Invita Amici'; -$a->strings['Connect/Follow [profile address]'] = 'Connetti/Segui [indirizzo profilo]'; -$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Esempio: bob@example.com, http://example.com/barbara'; -$a->strings['Follow'] = 'Segui'; -$a->strings['Could not access contact record.'] = 'Non si puo\' 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 aggiornando il contatto.'; -$a->strings['Contact has been '] = 'Il contatto è stato '; -$a->strings['blocked'] = 'bloccato'; -$a->strings['unblocked'] = 'sbloccato'; -$a->strings['ignored'] = 'aggiunto ai contatti ignorati'; -$a->strings['unignored'] = 'rimosso dai contatti ignorati'; -$a->strings['stopped following'] = 'tolto dai seguiti'; -$a->strings['Contact has been removed.'] = 'Il contatto è stato rimosso.'; -$a->strings['Contact not found.'] = 'Contatto non trovato.'; -$a->strings['Mutual Friendship'] = 'Reciproca amicizia'; -$a->strings['is a fan of yours'] = 'è un tuo fan'; -$a->strings['you are a fan of'] = 'sei un fan di'; -$a->strings['Contact Editor'] = 'Editor dei Contatti'; -$a->strings['Visit $name\'s profile'] = 'Visita il profilo di $name'; -$a->strings['Block/Unblock contact'] = 'Blocca/Sblocca contatto'; -$a->strings['Ignore contact'] = 'Ingnora il contatto'; -$a->strings['Delete contact'] = 'Rimuovi contatto'; -$a->strings['Last updated: '] = 'Ultimo aggiornameto: '; -$a->strings['Update public posts: '] = 'Aggiorna messaggi pubblici: '; -$a->strings['Never'] = 'Mai'; -$a->strings['Unblock this contact'] = 'Sblocca questo contatto'; -$a->strings['Block this contact'] = 'Blocca questo contatto'; -$a->strings['Unignore this contact'] = 'Rimuovi dai contatti ingorati'; -$a->strings['Ignore this contact'] = 'Aggiungi ai contatti ignorati'; -$a->strings['Currently blocked'] = 'Bloccato'; -$a->strings['Currently ignored'] = 'Ignorato'; -$a->strings['Show Blocked Connections'] = 'Mostra connessioni bloccate'; -$a->strings['Hide Blocked Connections'] = 'Nascondi connessioni bloccate'; -$a->strings['Finding: '] = 'Cerco: '; -$a->strings['Find'] = 'Trova'; -$a->strings['Visit '] = 'Visita '; -$a->strings['\'s profile'] = 'profilo'; -$a->strings['Edit contact'] = 'Modifca contatto'; -$a->strings['Profile not found.'] = 'Profilo non trovato.'; -$a->strings['Response from remote site was not understood.'] = 'La risposta dal sito remota non è stata capita.'; -$a->strings['Unexpected response from remote site: '] = 'Risposta dal sito remoto inaspettata: '; -$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.'] = 'Errore temporaneo. Attendi e riprova.'; -$a->strings['Introduction failed or was revoked.'] = 'La presentazione è fallita o è stata revocata.'; -$a->strings['Unable to set contact photo.'] = 'Impossibile impostare la foto del contatto.'; -$a->strings['is now friends with'] = 'ora è amico di'; -$a->strings['No user record found for '] = 'Nessun utente trovato per '; -$a->strings['Our site encryption key is apparently messed up.'] = 'La nostra chiave di criptazione del sito è apparentemente incasinata.'; -$a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'E\' stato fornito un indirizzo vuoto o non possiamo decriptare l\'indirizzo.'; -$a->strings['Contact record was not found for you on our site.'] = 'Il contatto non è stato trovato sul nostro sito.'; -$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. Dovrebbe funzionare se provi ancora.'; -$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['Connection accepted at '] = 'Connessione accettata su '; -$a->strings['Administrator'] = 'Amministratore'; -$a->strings['New mail received at '] = 'Nuova mail ricevuta su '; -$a->strings[' commented on an item at '] = ' commentato un elemento su '; -$a->strings[' welcomes '] = ' accoglie '; -$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.'] = 'La posizione del profilo non è valida o non contiene informazioni di profilo.'; -$a->strings['Warning: profile location has no identifiable owner name.'] = 'Attenzione: la posizione del profilo non ha un identificabile proprietario'; -$a->strings['Warning: profile location has no profile photo.'] = 'Attenzione: la posizione del profilo non ha una foto.'; -$a->strings[' required parameter'] = ' parametro richiesto'; -$a->strings[' was '] = ' era '; -$a->strings['s were '] = ' dove '; -$a->strings['not found at the given location.'] = 'non trovato alla posizione data.'; -$a->strings['Introduction complete.'] = 'Presentazione completa.'; -$a->strings['Unrecoverable protocol error.'] = 'Errore di protocollo non recuperabile.'; -$a->strings['Profile unavailable.'] = 'Profilo non disponibile.'; -$a->strings['has received too many connection requests today.'] = 'ha ricevuto troppe connessioni 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['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 .'] = 'Apparentemente sei già amico con .'; -$a->strings['Invalid profile URL.'] = 'Indirizzo profilo invalido.'; -$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.'] = 'Accesso con identà incorretta. Accedi a questo profilo.'; -$a->strings['[Name Withheld]'] = '[Nome Nascosto]'; -$a->strings['Friend/Connection Request'] = 'Richieste di Amicizia/Connessione'; -$a->strings['Please answer the following:'] = 'Rispondi al seguente:'; -$a->strings['Does $name know you?'] = '$name ti conosce?'; -$a->strings['Yes'] = 'Si'; -$a->strings['No'] = 'No'; -$a->strings['Add a personal note:'] = 'Aggiungi una nota personale:'; -$a->strings['Please enter your profile address from one of the following supported social networks:'] = 'Inserisci l\'indirizzo del tue profilo da uno dei seguenti supportati seocial network:'; -$a->strings['Friendika'] = 'Friendika'; -$a->strings['StatusNet/Federated Social Web'] = 'StatusNet/Federated Social Web'; -$a->strings['Private (secure) network'] = 'Network (sicuro) privato'; -$a->strings['Public (insecure) network'] = 'Network (insicuro) pubblico'; -$a->strings['Your profile address:'] = 'L\'indirizzo del tuo profilo:'; -$a->strings['Submit Request'] = 'Invia richiesta'; -$a->strings['Cancel'] = 'Annulla'; -$a->strings['Global Directory'] = 'Elenco Globale'; -$a->strings['Item not found.'] = 'Elemento non trovato.'; -$a->strings['Private Message'] = 'Messaggio privato'; -$a->strings["I like this \x28toggle\x29"] = "Mi piace questo \x28metti/togli\x29"; -$a->strings["I don't like this \x28toggle\x29"] = "Non mi piace questo \x28metti/togli\x29"; -$a->strings['This is you'] = 'Questo sei tu'; -$a->strings['View $name\'s profile'] = 'Guarda il profilo di $name'; -$a->strings['View $owner_name\'s profile'] = 'Guarda il profilo di $owner_name'; -$a->strings['to'] = 'a'; -$a->strings['Wall-to-Wall'] = 'Bacheca-A-Bacheca'; -$a->strings['via Wall-To-Wall:'] = 'via Bacheca-A-Bacheca'; -$a->strings['Item has been removed.'] = 'L\'elemento è stato rimosso.'; -$a->strings['The profile address specified does not provide adequate information.'] = 'L\'indirizzo del profilo specificato non fornisce adeguate informazioni'; -$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Profilo limitato. Questa persona non sara\' in grado di ricevere nofiche dirette/personali da te.'; -$a->strings['Unable to retrieve contact information.'] = 'Impossibile recuperare informazioni sul contatto.'; -$a->strings['following'] = 'segue'; -$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['Membership list updated.'] = 'Lista adesioni aggiornata.'; -$a->strings['Group removed.'] = 'Gruppo rimosso.'; -$a->strings['Unable to remove group.'] = 'Impossibile rimuovere il gruppo.'; -$a->strings['Delete'] = 'Cancella'; -$a->strings['Could not create/connect to database.'] = 'Impossibile creare/collegarsi al database.'; -$a->strings['Connected to database.'] = 'Collegato al database.'; -$a->strings['Database import succeeded.'] = 'Importazione database completata.'; -$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the poller.'] = 'IMPORTANTE: Devi impostare manualmente un operazione pianificata per il poller'; -$a->strings['Please see the file "INSTALL.txt".'] = 'Guarda il file \"INSTALL.txt\".'; -$a->strings['Database import failed.'] = 'Importazione database fallita.'; -$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['Welcome to Friendika.'] = 'Benvenuto su Friendika.'; -$a->strings['Submit'] = 'Invia'; -$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Non riesco a trovare una versione da riga di comando di PHP nel PATH del server web'; -$a->strings['This is required. Please adjust the configuration file .htconfig.php accordingly.'] = 'E\' richiesto. Aggiorna il file .htconfig.php di conseguenza.'; -$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.'] = 'Ciò è richiesto per far funzionare la consegna dei messaggi.'; -$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['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Errore: il modulo mod-rewrite di Apache &egreve; richiesto ma non installato'; -$a->strings['Error: libCURL PHP module required but not installed.'] = 'Errore: il modulo libCURL di PHP è richiesto ma non 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 installato.'; -$a->strings['Error: openssl PHP module required but not installed.'] = 'Errore: il modulo openssl di PHP è richiesto ma non installato.'; -$a->strings['Error: mysqli PHP module required but not installed.'] = 'Errore: il modulo mysqli di PHP è richiesto ma non installato'; -$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 puo\' scrivere il file nella tua cartella, anche se tu puoi.'; -$a->strings['Please check with your site documentation or support people to see if this situation can be corrected.'] = 'Controlla la documentazione del tuo sito o con il personale di suporto se la situazione puo\' essere corretta.'; -$a->strings['If not, you may be required to perform a manual installation. Please see the file "INSTALL.txt" for instructions.'] = 'Altrimenti dovrai procedere con l\'installazione manuale. Guarda il file \"INSTALL.txt\" per istuzioni'; -$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 puo\' essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito.'; -$a->strings['Errors encountered creating database tables.'] = 'Errori creando le tabelle nel database.'; -$a->strings[' : '] = ' : '; -$a->strings['Not a valid email address.'] = 'Indirizzo email invaildo.'; -$a->strings['Please join my network on '] = 'Unisciti alla mia rete su '; -$a->strings['Message delivery failed.'] = 'Consegna del messaggio fallita.'; -$a->strings[' messages sent.'] = ' messaggio inviato.'; -$a->strings['Send invitations'] = 'Invia inviti'; -$a->strings['Enter email addresses, one per line:'] = 'Inserisci gli indirizzi email, uno per riga:'; -$a->strings['Your message:'] = 'Il tuo messaggio:'; -$a->strings['Please join my social network on '] = 'Unisciti al mio social network su '; -$a->strings['To accept this invitation, please visit:'] = 'Per accettare questo invito visita:'; -$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Una volta registrato, connettiti con me sul mio profilo a:'; -$a->strings['Unable to locate original post.'] = 'Impossibile trovare il messaggio originale.'; -$a->strings['Empty post discarded.'] = 'Messaggio vuoto scartato.'; -$a->strings[' commented on your item at '] = ' ha commentato il tuo elemento su '; -$a->strings[' posted on your profile wall at '] = ' ha inviato un messaggio sulla tua bachecha su '; -$a->strings['Facebook status update failed.'] = 'Aggiornamento stato Facebook fallito.'; -$a->strings['photo'] = 'foto'; -$a->strings['status'] = 'stato'; -$a->strings['likes'] = 'apprezza'; -$a->strings['doesn\'t like'] = 'non apprezza'; -$a->strings['\'s'] = '\'s'; -$a->strings['Remote privacy information not available.'] = 'Informazioni remote sulla privacy non disponibili.'; -$a->strings['Visible to:'] = 'Visibile a:'; -$a->strings['Password reset requested at '] = 'Richiesta di resettare la password su '; -$a->strings['No recipient selected.'] = 'Nessun destinatario selezionato.'; -$a->strings['[no subject]'] = '[nessun oggetto]'; -$a->strings['Unable to locate contact information.'] = 'Impossibile trovare le informazioni del contatto.'; -$a->strings['Message sent.'] = 'Messaggio inviato.'; -$a->strings['Message could not be sent.'] = 'Il messaggio non puo\' essere inviato.'; -$a->strings['Messages'] = 'Messaggi'; -$a->strings['Inbox'] = 'In arrivo'; -$a->strings['Outbox'] = 'Inviati'; -$a->strings['New Message'] = 'Nuovo messaggio'; -$a->strings['Message deleted.'] = 'Messaggio cancellato.'; -$a->strings['Conversation removed.'] = 'Conversazione rimossa.'; -$a->strings['Send Private Message'] = 'Invia messaggio privato'; -$a->strings['To:'] = 'A:'; -$a->strings['Subject:'] = 'Oggetto:'; -$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['Delete conversation'] = 'Cancella conversazione'; -$a->strings['Message not available.'] = 'Messaggio non disponibile.'; -$a->strings['Delete message'] = 'Cancella messaggio'; -$a->strings['Send Reply'] = 'Invia risposta'; -$a->strings['No such group'] = 'Nessun gruppo'; -$a->strings['Group is empty'] = 'Il gruppo è vuoto'; -$a->strings['Group: '] = 'Gruppo: '; -$a->strings['Invalid request identifier.'] = 'Identificativo richiesta invalido.'; -$a->strings['Discard'] = 'Scarta'; -$a->strings['Ignore'] = 'Ignora'; -$a->strings['Show Ignored Requests'] = 'Mostra richieste ignorate'; -$a->strings['Hide Ignored Requests'] = 'Nascondi richieste ignorate'; -$a->strings['Claims to be known to you: '] = 'Dice di conoscerti: '; -$a->strings['yes'] = 'si'; -$a->strings['no'] = 'no'; -$a->strings['Approve as: '] = 'Approva come: '; -$a->strings['Friend'] = 'Amico'; -$a->strings['Fan/Admirer'] = 'Fan/Admiratore'; -$a->strings['Notification type: '] = 'Tipo di notifica: '; -$a->strings['Friend/Connect Request'] = 'Richiesta Amicizia/Connessione'; -$a->strings['New Follower'] = 'Nuovo Seguace'; -$a->strings['Approve'] = 'Approva'; -$a->strings['No notifications.'] = 'Nessuna notifica.'; -$a->strings['No registrations.'] = 'Nessuna registrazione.'; -$a->strings['Login failed.'] = 'Accesso fallito.'; -$a->strings['Welcome back '] = 'Bentornato '; -$a->strings['Photo Albums'] = 'Album Foto'; -$a->strings['Contact Photos'] = 'Foto contatti'; -$a->strings['Contact information unavailable'] = 'Informazione sul contatto non disponibile'; -$a->strings['Profile Photos'] = 'Foto del profilo'; -$a->strings['Album not found.'] = 'Album non trovato.'; -$a->strings['Delete Album'] = 'Elimina album'; -$a->strings['Delete Photo'] = 'Elimina foto'; -$a->strings['was tagged in a'] = 'è stato taggato in'; -$a->strings['by'] = 'da'; -$a->strings['Image exceeds size limit of '] = 'L\'immagine supera il limite di dimensione di '; -$a->strings['Unable to process image.'] = 'Impossibile elaborare l\'immagine.'; -$a->strings['Image upload failed.'] = 'Caricamento immagine fallito.'; -$a->strings['No photos selected'] = 'Nessuna foto selezionata'; -$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['Select files to upload: '] = 'Seleziona i file da caricare: '; -$a->strings['Permissions'] = 'Permessi'; -$a->strings['Use the following controls only if the Java uploader [above] fails to launch.'] = 'Usa il seguente controllo solo se il il caricatore Java (qui sopra) non parte.'; -$a->strings['Edit Album'] = 'Modifica album'; -$a->strings['View Photo'] = 'Vedi foto'; -$a->strings['Photo not available'] = 'Foto non disponibile'; -$a->strings['Edit photo'] = 'Modifica foto'; -$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 album'; -$a->strings['Caption'] = 'Didascalia'; -$a->strings['Add a Tag'] = 'Aggiungi un tag'; -$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'; -$a->strings['Recent Photos'] = 'Foto recenti'; -$a->strings['Upload New Photos'] = 'Carica nuova foto'; -$a->strings['View Album'] = 'Vedi album'; -$a->strings['Image uploaded but image cropping failed.'] = 'Immagine caricata ma il ritaglio è fallito.'; -$a->strings['Image size reduction [175] failed.'] = 'Riduzione dimensioni immagine [175] fallito.'; -$a->strings['Image size reduction [80] failed.'] = 'Riduzione dimensioni immagine [80] fallito.'; -$a->strings['Image size reduction [48] failed.'] = 'Riduzione dimensioni immagine [48] fallito.'; -$a->strings['Unable to process image'] = 'Impossibile elaborare l\'immagine'; -$a->strings['Image uploaded successfully.'] = 'Immagine caricata con successo.'; -$a->strings['Image size reduction [640] failed.'] = 'Riduzione dimensioni immagine [640] fallito.'; -$a->strings['Profile Name is required.'] = 'Il Nome Profilo è richiesto .'; -$a->strings['Profile updated.'] = 'Profilo aggiornato.'; -$a->strings['Profile deleted.'] = 'Profilo elminato.'; -$a->strings['Profile-'] = 'Profilo-'; -$a->strings['New profile created.'] = 'Nuovo profilo creato.'; -$a->strings['Profile unavailable to clone.'] = 'Impossibile duplicare il plrofilo.'; -$a->strings['This is your public profile.
It may be visible to anybody using the internet.'] = 'Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet.'; -$a->strings['Age: '] = 'Età : '; -$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['Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.'] = 'Il tuo \"soprannome\" puo\' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera.'; -$a->strings['Nickname is already registered. Please choose another.'] = 'Soprannome già registrato. Scegline un\'altro.'; -$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'ERRORE GRAVE: Generazione delle chiavi di sicurezza fallito.'; -$a->strings['An error occurred during registration. Please try again.'] = 'Si è verificato un errore durante la registrazione. Prova ancora.'; -$a->strings['An error occurred creating your default profile. Please try again.'] = 'Si è verificato un errore creando il tuo profilo. Prova ancora.'; -$a->strings['Registration details for '] = 'Dettagli registrazione per '; -$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 is the message that failed.'] = 'Errore inviando il messaggio email. Questo è il messaggio non inviato.'; -$a->strings['Your registration can not be processed.'] = 'La tua registrazione non puo\' essere elaborata.'; -$a->strings['Registration request at '] = 'Registrazione richiesta il '; -$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['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \'Register\'.'] = 'Puoi (opzionalmento) riempire questa maschera via 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 quel campo in bianco e riempi il resto della maschera.'; -$a->strings['Your OpenID (optional): '] = 'Il tuo OpenID (opzionale): '; -$a->strings['Shared content is covered by the Creative Commons Attribution 3.0 license.'] = 'Il contenuto in comune è coperto dalla licenza Creative Commons Attribuzione 3.0.'; -$a->strings['Registration'] = 'Registrazione'; -$a->strings['Your Full Name (e.g. Joe Smith): '] = 'Il tuo Nome Completo (p.e. Mario Rossi): '; -$a->strings['Your Email Address: '] = 'Il tuo Indirizzo Email: '; -$a->strings['Choose a profile nickname. This must begin with a text character. Your global profile locator will then be \'nickname@$sitename\'.'] = 'Scegli un soprannome per il profilo. Deve cominciare con una lettera. L\'identificativo globale del tuo profilo sarà \'soprannome@$sitename\'.'; -$a->strings['Choose a nickname: '] = 'Scegli un soprannome: '; -$a->strings['Register'] = 'Regitrati'; -$a->strings['Please login.'] = 'Accedi.'; -$a->strings['Registration revoked for '] = 'Registrazione revocata per '; -$a->strings['Account approved.'] = 'Account approvato.'; -$a->strings['View in context'] = 'Vedi nel contesto'; -$a->strings['Passwords do not match. Password unchanged.'] = 'Le password non corrispondono. Passoword non cambiata.'; -$a->strings['Empty passwords are not allowed. Password unchanged.'] = 'Password vuote non sono consentite. Password non cambiata.'; -$a->strings['Password changed.'] = 'Password cambiata.'; -$a->strings['Password update failed. Please try again.'] = 'Aggiornamento password fallito. Prova ancora.'; -$a->strings[' Please use a shorter name.'] = ' Usa un nome più corto.'; -$a->strings[' Name too short.'] = ' Nome troppo corto.'; -$a->strings[' Not valid email.'] = ' Email non valida.'; -$a->strings['Settings updated.'] = 'Impostazioni aggiornate.'; -$a->strings['Plugin Settings'] = 'Impostazioni Plugin'; -$a->strings['Account Settings'] = 'Impostazioni Account'; -$a->strings['No Plugin settings configured'] = 'Nessuna impostazione Plugin configurata'; -$a->strings['OpenID: '] = 'OpenID: '; -$a->strings[' (Optional) Allow this OpenID to login to this account.'] = ' (Opzionale) Permetti a questo OpenID di accedere a questo account.'; -$a->strings['Profile is not published.'] = 'Il profilo non è pubblicato.'; -$a->strings['Default Post Permissions'] = 'Permessi di default per i messaggi'; -$a->strings['Tag removed'] = 'TAg rimosso'; -$a->strings['Remove Item Tag'] = 'Rimuovi tag dall\'elemento'; -$a->strings['Select a tag to remove: '] = 'Seleziona un tag da rimuovere: '; -$a->strings['Remove'] = 'Rimuovi'; -$a->strings['No contacts.'] = 'Nessuno contatto.'; -$a->strings['Wall Photos'] = 'Wall Photos'; -$a->strings['Visible To:'] = 'Visibile a:'; -$a->strings['Groups'] = 'Gruppi'; -$a->strings['Except For:'] = 'Eccetto per:'; -$a->strings['Logged out.'] = 'Sei uscito.'; -$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 oppinioni'; -$a->strings['OK, probably harmless'] = 'E\' ok, probabilmente innocuo'; -$a->strings['Reputable, has my trust'] = 'Rispettabile, ha la mia fiducia'; -$a->strings['Frequently'] = 'Frequentemente'; -$a->strings['Hourly'] = 'Ogni ora'; -$a->strings['Twice daily'] = 'Due volte al dì'; -$a->strings['Daily'] = 'Giornalmente'; -$a->strings['Weekly'] = 'Settimanalmente'; -$a->strings['Monthly'] = 'Mensilmente'; -$a->strings['Miscellaneous'] = 'Varie'; -$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[' ago'] = ' fa'; -$a->strings['Create a new group'] = 'Crea un nuovo gruppo'; -$a->strings['Everybody'] = 'Tutti'; -$a->strings['Logout'] = 'Esci'; -$a->strings['Home'] = 'Home'; -$a->strings['Directory'] = 'Elenco'; -$a->strings['Network'] = 'Rete'; -$a->strings['Notifications'] = 'Notifiche'; -$a->strings['Settings'] = 'Impostazioni'; -$a->strings['Profiles'] = 'Profili'; -$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'] = 'Transgenere'; -$a->strings['Intersex'] = 'Bisessuale'; -$a->strings['Transsexual'] = 'Transsessuale'; -$a->strings['Hermaphrodite'] = 'Ermafrodito'; -$a->strings['Neuter'] = 'Neutro'; -$a->strings['Non-specific'] = 'Non-specifico'; -$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'] = 'Disoponibile'; -$a->strings['Unavailable'] = 'Non disponibile'; -$a->strings['Dating'] = '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['Partners'] = 'Partners'; -$a->strings['Cohabiting'] = 'Coinquilino'; -$a->strings['Happy'] = 'Felice'; -$a->strings['Not Looking'] = 'Non in cerca'; -$a->strings['Swinger'] = 'Scambista'; -$a->strings['Betrayed'] = 'Tradito'; -$a->strings['Separated'] = 'Separato'; -$a->strings['Unstable'] = 'Instabile'; -$a->strings['Divorced'] = 'Divorziato'; -$a->strings['Widowed'] = 'Vedovo'; -$a->strings['Uncertain'] = 'Incerto'; -$a->strings['Complicated'] = 'Complicato'; -$a->strings['Don\'t care'] = 'Non interessa'; -$a->strings['Ask me'] = 'Chiedimelo'; -$a->strings['Africa/Abidjan'] = 'Africa/Abidjan'; -$a->strings['Africa/Accra'] = 'Africa/Accra'; -$a->strings['Africa/Addis_Ababa'] = 'Africa/Addis_Ababa'; -$a->strings['Africa/Algiers'] = 'Africa/Algiers'; -$a->strings['Africa/Asmara'] = 'Africa/Asmara'; -$a->strings['Africa/Asmera'] = 'Africa/Asmera'; -$a->strings['Africa/Bamako'] = 'Africa/Bamako'; -$a->strings['Africa/Bangui'] = 'Africa/Bangui'; -$a->strings['Africa/Banjul'] = 'Africa/Banjul'; -$a->strings['Africa/Bissau'] = 'Africa/Bissau'; -$a->strings['Africa/Blantyre'] = 'Africa/Blantyre'; -$a->strings['Africa/Brazzaville'] = 'Africa/Brazzaville'; -$a->strings['Africa/Bujumbura'] = 'Africa/Bujumbura'; -$a->strings['Africa/Cairo'] = 'Africa/Cairo'; -$a->strings['Africa/Casablanca'] = 'Africa/Casablanca'; -$a->strings['Africa/Ceuta'] = 'Africa/Ceuta'; -$a->strings['Africa/Conakry'] = 'Africa/Conakry'; -$a->strings['Africa/Dakar'] = 'Africa/Dakar'; -$a->strings['Africa/Dar_es_Salaam'] = 'Africa/Dar_es_Salaam'; -$a->strings['Africa/Djibouti'] = 'Africa/Djibouti'; -$a->strings['Africa/Douala'] = 'Africa/Douala'; -$a->strings['Africa/El_Aaiun'] = 'Africa/El_Aaiun'; -$a->strings['Africa/Freetown'] = 'Africa/Freetown'; -$a->strings['Africa/Gaborone'] = 'Africa/Gaborone'; -$a->strings['Africa/Harare'] = 'Africa/Harare'; -$a->strings['Africa/Johannesburg'] = 'Africa/Johannesburg'; -$a->strings['Africa/Kampala'] = 'Africa/Kampala'; -$a->strings['Africa/Khartoum'] = 'Africa/Khartoum'; -$a->strings['Africa/Kigali'] = 'Africa/Kigali'; -$a->strings['Africa/Kinshasa'] = 'Africa/Kinshasa'; -$a->strings['Africa/Lagos'] = 'Africa/Lagos'; -$a->strings['Africa/Libreville'] = 'Africa/Libreville'; -$a->strings['Africa/Lome'] = 'Africa/Lome'; -$a->strings['Africa/Luanda'] = 'Africa/Luanda'; -$a->strings['Africa/Lubumbashi'] = 'Africa/Lubumbashi'; -$a->strings['Africa/Lusaka'] = 'Africa/Lusaka'; -$a->strings['Africa/Malabo'] = 'Africa/Malabo'; -$a->strings['Africa/Maputo'] = 'Africa/Maputo'; -$a->strings['Africa/Maseru'] = 'Africa/Maseru'; -$a->strings['Africa/Mbabane'] = 'Africa/Mbabane'; -$a->strings['Africa/Mogadishu'] = 'Africa/Mogadishu'; -$a->strings['Africa/Monrovia'] = 'Africa/Monrovia'; -$a->strings['Africa/Nairobi'] = 'Africa/Nairobi'; -$a->strings['Africa/Ndjamena'] = 'Africa/Ndjamena'; -$a->strings['Africa/Niamey'] = 'Africa/Niamey'; -$a->strings['Africa/Nouakchott'] = 'Africa/Nouakchott'; -$a->strings['Africa/Ouagadougou'] = 'Africa/Ouagadougou'; -$a->strings['Africa/Porto-Novo'] = 'Africa/Porto-Novo'; -$a->strings['Africa/Sao_Tome'] = 'Africa/Sao_Tome'; -$a->strings['Africa/Timbuktu'] = 'Africa/Timbuktu'; -$a->strings['Africa/Tripoli'] = 'Africa/Tripoli'; -$a->strings['Africa/Tunis'] = 'Africa/Tunis'; -$a->strings['Africa/Windhoek'] = 'Africa/Windhoek'; -$a->strings['America/Adak'] = 'America/Adak'; -$a->strings['America/Anchorage'] = 'America/Anchorage'; -$a->strings['America/Anguilla'] = 'America/Anguilla'; -$a->strings['America/Antigua'] = 'America/Antigua'; -$a->strings['America/Araguaina'] = 'America/Araguaina'; -$a->strings['America/Argentina/Buenos_Aires'] = 'America/Argentina/Buenos_Aires'; -$a->strings['America/Argentina/Catamarca'] = 'America/Argentina/Catamarca'; -$a->strings['America/Argentina/ComodRivadavia'] = 'America/Argentina/ComodRivadavia'; -$a->strings['America/Argentina/Cordoba'] = 'America/Argentina/Cordoba'; -$a->strings['America/Argentina/Jujuy'] = 'America/Argentina/Jujuy'; -$a->strings['America/Argentina/La_Rioja'] = 'America/Argentina/La_Rioja'; -$a->strings['America/Argentina/Mendoza'] = 'America/Argentina/Mendoza'; -$a->strings['America/Argentina/Rio_Gallegos'] = 'America/Argentina/Rio_Gallegos'; -$a->strings['America/Argentina/Salta'] = 'America/Argentina/Salta'; -$a->strings['America/Argentina/San_Juan'] = 'America/Argentina/San_Juan'; -$a->strings['America/Argentina/San_Luis'] = 'America/Argentina/San_Luis'; -$a->strings['America/Argentina/Tucuman'] = 'America/Argentina/Tucuman'; -$a->strings['America/Argentina/Ushuaia'] = 'America/Argentina/Ushuaia'; -$a->strings['America/Aruba'] = 'America/Aruba'; -$a->strings['America/Asuncion'] = 'America/Asuncion'; -$a->strings['America/Atikokan'] = 'America/Atikokan'; -$a->strings['America/Atka'] = 'America/Atka'; -$a->strings['America/Bahia'] = 'America/Bahia'; -$a->strings['America/Barbados'] = 'America/Barbados'; -$a->strings['America/Belem'] = 'America/Belem'; -$a->strings['America/Belize'] = 'America/Belize'; -$a->strings['America/Blanc-Sablon'] = 'America/Blanc-Sablon'; -$a->strings['America/Boa_Vista'] = 'America/Boa_Vista'; -$a->strings['America/Bogota'] = 'America/Bogota'; -$a->strings['America/Boise'] = 'America/Boise'; -$a->strings['America/Buenos_Aires'] = 'America/Buenos_Aires'; -$a->strings['America/Cambridge_Bay'] = 'America/Cambridge_Bay'; -$a->strings['America/Campo_Grande'] = 'America/Campo_Grande'; -$a->strings['America/Cancun'] = 'America/Cancun'; -$a->strings['America/Caracas'] = 'America/Caracas'; -$a->strings['America/Catamarca'] = 'America/Catamarca'; -$a->strings['America/Cayenne'] = 'America/Cayenne'; -$a->strings['America/Cayman'] = 'America/Cayman'; -$a->strings['America/Chicago'] = 'America/Chicago'; -$a->strings['America/Chihuahua'] = 'America/Chihuahua'; -$a->strings['America/Coral_Harbour'] = 'America/Coral_Harbour'; -$a->strings['America/Cordoba'] = 'America/Cordoba'; -$a->strings['America/Costa_Rica'] = 'America/Costa_Rica'; -$a->strings['America/Cuiaba'] = 'America/Cuiaba'; -$a->strings['America/Curacao'] = 'America/Curacao'; -$a->strings['America/Danmarkshavn'] = 'America/Danmarkshavn'; -$a->strings['America/Dawson'] = 'America/Dawson'; -$a->strings['America/Dawson_Creek'] = 'America/Dawson_Creek'; -$a->strings['America/Denver'] = 'America/Denver'; -$a->strings['America/Detroit'] = 'America/Detroit'; -$a->strings['America/Dominica'] = 'America/Dominica'; -$a->strings['America/Edmonton'] = 'America/Edmonton'; -$a->strings['America/Eirunepe'] = 'America/Eirunepe'; -$a->strings['America/El_Salvador'] = 'America/El_Salvador'; -$a->strings['America/Ensenada'] = 'America/Ensenada'; -$a->strings['America/Fort_Wayne'] = 'America/Fort_Wayne'; -$a->strings['America/Fortaleza'] = 'America/Fortaleza'; -$a->strings['America/Glace_Bay'] = 'America/Glace_Bay'; -$a->strings['America/Godthab'] = 'America/Godthab'; -$a->strings['America/Goose_Bay'] = 'America/Goose_Bay'; -$a->strings['America/Grand_Turk'] = 'America/Grand_Turk'; -$a->strings['America/Grenada'] = 'America/Grenada'; -$a->strings['America/Guadeloupe'] = 'America/Guadeloupe'; -$a->strings['America/Guatemala'] = 'America/Guatemala'; -$a->strings['America/Guayaquil'] = 'America/Guayaquil'; -$a->strings['America/Guyana'] = 'America/Guyana'; -$a->strings['America/Halifax'] = 'America/Halifax'; -$a->strings['America/Havana'] = 'America/Havana'; -$a->strings['America/Hermosillo'] = 'America/Hermosillo'; -$a->strings['America/Indiana/Indianapolis'] = 'America/Indiana/Indianapolis'; -$a->strings['America/Indiana/Knox'] = 'America/Indiana/Knox'; -$a->strings['America/Indiana/Marengo'] = 'America/Indiana/Marengo'; -$a->strings['America/Indiana/Petersburg'] = 'America/Indiana/Petersburg'; -$a->strings['America/Indiana/Tell_City'] = 'America/Indiana/Tell_City'; -$a->strings['America/Indiana/Vevay'] = 'America/Indiana/Vevay'; -$a->strings['America/Indiana/Vincennes'] = 'America/Indiana/Vincennes'; -$a->strings['America/Indiana/Winamac'] = 'America/Indiana/Winamac'; -$a->strings['America/Indianapolis'] = 'America/Indianapolis'; -$a->strings['America/Inuvik'] = 'America/Inuvik'; -$a->strings['America/Iqaluit'] = 'America/Iqaluit'; -$a->strings['America/Jamaica'] = 'America/Jamaica'; -$a->strings['America/Jujuy'] = 'America/Jujuy'; -$a->strings['America/Juneau'] = 'America/Juneau'; -$a->strings['America/Kentucky/Louisville'] = 'America/Kentucky/Louisville'; -$a->strings['America/Kentucky/Monticello'] = 'America/Kentucky/Monticello'; -$a->strings['America/Knox_IN'] = 'America/Knox_IN'; -$a->strings['America/La_Paz'] = 'America/La_Paz'; -$a->strings['America/Lima'] = 'America/Lima'; -$a->strings['America/Los_Angeles'] = 'America/Los_Angeles'; -$a->strings['America/Louisville'] = 'America/Louisville'; -$a->strings['America/Maceio'] = 'America/Maceio'; -$a->strings['America/Managua'] = 'America/Managua'; -$a->strings['America/Manaus'] = 'America/Manaus'; -$a->strings['America/Marigot'] = 'America/Marigot'; -$a->strings['America/Martinique'] = 'America/Martinique'; -$a->strings['America/Matamoros'] = 'America/Matamoros'; -$a->strings['America/Mazatlan'] = 'America/Mazatlan'; -$a->strings['America/Mendoza'] = 'America/Mendoza'; -$a->strings['America/Menominee'] = 'America/Menominee'; -$a->strings['America/Merida'] = 'America/Merida'; -$a->strings['America/Mexico_City'] = 'America/Mexico_City'; -$a->strings['America/Miquelon'] = 'America/Miquelon'; -$a->strings['America/Moncton'] = 'America/Moncton'; -$a->strings['America/Monterrey'] = 'America/Monterrey'; -$a->strings['America/Montevideo'] = 'America/Montevideo'; -$a->strings['America/Montreal'] = 'America/Montreal'; -$a->strings['America/Montserrat'] = 'America/Montserrat'; -$a->strings['America/Nassau'] = 'America/Nassau'; -$a->strings['America/New_York'] = 'America/New_York'; -$a->strings['America/Nipigon'] = 'America/Nipigon'; -$a->strings['America/Nome'] = 'America/Nome'; -$a->strings['America/Noronha'] = 'America/Noronha'; -$a->strings['America/North_Dakota/Center'] = 'America/North_Dakota/Center'; -$a->strings['America/North_Dakota/New_Salem'] = 'America/North_Dakota/New_Salem'; -$a->strings['America/Ojinaga'] = 'America/Ojinaga'; -$a->strings['America/Panama'] = 'America/Panama'; -$a->strings['America/Pangnirtung'] = 'America/Pangnirtung'; -$a->strings['America/Paramaribo'] = 'America/Paramaribo'; -$a->strings['America/Phoenix'] = 'America/Phoenix'; -$a->strings['America/Port-au-Prince'] = 'America/Port-au-Prince'; -$a->strings['America/Port_of_Spain'] = 'America/Port_of_Spain'; -$a->strings['America/Porto_Acre'] = 'America/Porto_Acre'; -$a->strings['America/Porto_Velho'] = 'America/Porto_Velho'; -$a->strings['America/Puerto_Rico'] = 'America/Puerto_Rico'; -$a->strings['America/Rainy_River'] = 'America/Rainy_River'; -$a->strings['America/Rankin_Inlet'] = 'America/Rankin_Inlet'; -$a->strings['America/Recife'] = 'America/Recife'; -$a->strings['America/Regina'] = 'America/Regina'; -$a->strings['America/Resolute'] = 'America/Resolute'; -$a->strings['America/Rio_Branco'] = 'America/Rio_Branco'; -$a->strings['America/Rosario'] = 'America/Rosario'; -$a->strings['America/Santa_Isabel'] = 'America/Santa_Isabel'; -$a->strings['America/Santarem'] = 'America/Santarem'; -$a->strings['America/Santiago'] = 'America/Santiago'; -$a->strings['America/Santo_Domingo'] = 'America/Santo_Domingo'; -$a->strings['America/Sao_Paulo'] = 'America/Sao_Paulo'; -$a->strings['America/Scoresbysund'] = 'America/Scoresbysund'; -$a->strings['America/Shiprock'] = 'America/Shiprock'; -$a->strings['America/St_Barthelemy'] = 'America/St_Barthelemy'; -$a->strings['America/St_Johns'] = 'America/St_Johns'; -$a->strings['America/St_Kitts'] = 'America/St_Kitts'; -$a->strings['America/St_Lucia'] = 'America/St_Lucia'; -$a->strings['America/St_Thomas'] = 'America/St_Thomas'; -$a->strings['America/St_Vincent'] = 'America/St_Vincent'; -$a->strings['America/Swift_Current'] = 'America/Swift_Current'; -$a->strings['America/Tegucigalpa'] = 'America/Tegucigalpa'; -$a->strings['America/Thule'] = 'America/Thule'; -$a->strings['America/Thunder_Bay'] = 'America/Thunder_Bay'; -$a->strings['America/Tijuana'] = 'America/Tijuana'; -$a->strings['America/Toronto'] = 'America/Toronto'; -$a->strings['America/Tortola'] = 'America/Tortola'; -$a->strings['America/Vancouver'] = 'America/Vancouver'; -$a->strings['America/Virgin'] = 'America/Virgin'; -$a->strings['America/Whitehorse'] = 'America/Whitehorse'; -$a->strings['America/Winnipeg'] = 'America/Winnipeg'; -$a->strings['America/Yakutat'] = 'America/Yakutat'; -$a->strings['America/Yellowknife'] = 'America/Yellowknife'; -$a->strings['Antarctica/Casey'] = 'Antarctica/Casey'; -$a->strings['Antarctica/Davis'] = 'Antarctica/Davis'; -$a->strings['Antarctica/DumontDUrville'] = 'Antarctica/DumontDUrville'; -$a->strings['Antarctica/Macquarie'] = 'Antarctica/Macquarie'; -$a->strings['Antarctica/Mawson'] = 'Antarctica/Mawson'; -$a->strings['Antarctica/McMurdo'] = 'Antarctica/McMurdo'; -$a->strings['Antarctica/Palmer'] = 'Antarctica/Palmer'; -$a->strings['Antarctica/Rothera'] = 'Antarctica/Rothera'; -$a->strings['Antarctica/South_Pole'] = 'Antarctica/South_Pole'; -$a->strings['Antarctica/Syowa'] = 'Antarctica/Syowa'; -$a->strings['Antarctica/Vostok'] = 'Antarctica/Vostok'; -$a->strings['Arctic/Longyearbyen'] = 'Arctic/Longyearbyen'; -$a->strings['Asia/Aden'] = 'Asia/Aden'; -$a->strings['Asia/Almaty'] = 'Asia/Almaty'; -$a->strings['Asia/Amman'] = 'Asia/Amman'; -$a->strings['Asia/Anadyr'] = 'Asia/Anadyr'; -$a->strings['Asia/Aqtau'] = 'Asia/Aqtau'; -$a->strings['Asia/Aqtobe'] = 'Asia/Aqtobe'; -$a->strings['Asia/Ashgabat'] = 'Asia/Ashgabat'; -$a->strings['Asia/Ashkhabad'] = 'Asia/Ashkhabad'; -$a->strings['Asia/Baghdad'] = 'Asia/Baghdad'; -$a->strings['Asia/Bahrain'] = 'Asia/Bahrain'; -$a->strings['Asia/Baku'] = 'Asia/Baku'; -$a->strings['Asia/Bangkok'] = 'Asia/Bangkok'; -$a->strings['Asia/Beirut'] = 'Asia/Beirut'; -$a->strings['Asia/Bishkek'] = 'Asia/Bishkek'; -$a->strings['Asia/Brunei'] = 'Asia/Brunei'; -$a->strings['Asia/Calcutta'] = 'Asia/Calcutta'; -$a->strings['Asia/Choibalsan'] = 'Asia/Choibalsan'; -$a->strings['Asia/Chongqing'] = 'Asia/Chongqing'; -$a->strings['Asia/Chungking'] = 'Asia/Chungking'; -$a->strings['Asia/Colombo'] = 'Asia/Colombo'; -$a->strings['Asia/Dacca'] = 'Asia/Dacca'; -$a->strings['Asia/Damascus'] = 'Asia/Damascus'; -$a->strings['Asia/Dhaka'] = 'Asia/Dhaka'; -$a->strings['Asia/Dili'] = 'Asia/Dili'; -$a->strings['Asia/Dubai'] = 'Asia/Dubai'; -$a->strings['Asia/Dushanbe'] = 'Asia/Dushanbe'; -$a->strings['Asia/Gaza'] = 'Asia/Gaza'; -$a->strings['Asia/Harbin'] = 'Asia/Harbin'; -$a->strings['Asia/Ho_Chi_Minh'] = 'Asia/Ho_Chi_Minh'; -$a->strings['Asia/Hong_Kong'] = 'Asia/Hong_Kong'; -$a->strings['Asia/Hovd'] = 'Asia/Hovd'; -$a->strings['Asia/Irkutsk'] = 'Asia/Irkutsk'; -$a->strings['Asia/Istanbul'] = 'Asia/Istanbul'; -$a->strings['Asia/Jakarta'] = 'Asia/Jakarta'; -$a->strings['Asia/Jayapura'] = 'Asia/Jayapura'; -$a->strings['Asia/Jerusalem'] = 'Asia/Jerusalem'; -$a->strings['Asia/Kabul'] = 'Asia/Kabul'; -$a->strings['Asia/Kamchatka'] = 'Asia/Kamchatka'; -$a->strings['Asia/Karachi'] = 'Asia/Karachi'; -$a->strings['Asia/Kashgar'] = 'Asia/Kashgar'; -$a->strings['Asia/Kathmandu'] = 'Asia/Kathmandu'; -$a->strings['Asia/Katmandu'] = 'Asia/Katmandu'; -$a->strings['Asia/Kolkata'] = 'Asia/Kolkata'; -$a->strings['Asia/Krasnoyarsk'] = 'Asia/Krasnoyarsk'; -$a->strings['Asia/Kuala_Lumpur'] = 'Asia/Kuala_Lumpur'; -$a->strings['Asia/Kuching'] = 'Asia/Kuching'; -$a->strings['Asia/Kuwait'] = 'Asia/Kuwait'; -$a->strings['Asia/Macao'] = 'Asia/Macao'; -$a->strings['Asia/Macau'] = 'Asia/Macau'; -$a->strings['Asia/Magadan'] = 'Asia/Magadan'; -$a->strings['Asia/Makassar'] = 'Asia/Makassar'; -$a->strings['Asia/Manila'] = 'Asia/Manila'; -$a->strings['Asia/Muscat'] = 'Asia/Muscat'; -$a->strings['Asia/Nicosia'] = 'Asia/Nicosia'; -$a->strings['Asia/Novokuznetsk'] = 'Asia/Novokuznetsk'; -$a->strings['Asia/Novosibirsk'] = 'Asia/Novosibirsk'; -$a->strings['Asia/Omsk'] = 'Asia/Omsk'; -$a->strings['Asia/Oral'] = 'Asia/Oral'; -$a->strings['Asia/Phnom_Penh'] = 'Asia/Phnom_Penh'; -$a->strings['Asia/Pontianak'] = 'Asia/Pontianak'; -$a->strings['Asia/Pyongyang'] = 'Asia/Pyongyang'; -$a->strings['Asia/Qatar'] = 'Asia/Qatar'; -$a->strings['Asia/Qyzylorda'] = 'Asia/Qyzylorda'; -$a->strings['Asia/Rangoon'] = 'Asia/Rangoon'; -$a->strings['Asia/Riyadh'] = 'Asia/Riyadh'; -$a->strings['Asia/Saigon'] = 'Asia/Saigon'; -$a->strings['Asia/Sakhalin'] = 'Asia/Sakhalin'; -$a->strings['Asia/Samarkand'] = 'Asia/Samarkand'; -$a->strings['Asia/Seoul'] = 'Asia/Seoul'; -$a->strings['Asia/Shanghai'] = 'Asia/Shanghai'; -$a->strings['Asia/Singapore'] = 'Asia/Singapore'; -$a->strings['Asia/Taipei'] = 'Asia/Taipei'; -$a->strings['Asia/Tashkent'] = 'Asia/Tashkent'; -$a->strings['Asia/Tbilisi'] = 'Asia/Tbilisi'; -$a->strings['Asia/Tehran'] = 'Asia/Tehran'; -$a->strings['Asia/Tel_Aviv'] = 'Asia/Tel_Aviv'; -$a->strings['Asia/Thimbu'] = 'Asia/Thimbu'; -$a->strings['Asia/Thimphu'] = 'Asia/Thimphu'; -$a->strings['Asia/Tokyo'] = 'Asia/Tokyo'; -$a->strings['Asia/Ujung_Pandang'] = 'Asia/Ujung_Pandang'; -$a->strings['Asia/Ulaanbaatar'] = 'Asia/Ulaanbaatar'; -$a->strings['Asia/Ulan_Bator'] = 'Asia/Ulan_Bator'; -$a->strings['Asia/Urumqi'] = 'Asia/Urumqi'; -$a->strings['Asia/Vientiane'] = 'Asia/Vientiane'; -$a->strings['Asia/Vladivostok'] = 'Asia/Vladivostok'; -$a->strings['Asia/Yakutsk'] = 'Asia/Yakutsk'; -$a->strings['Asia/Yekaterinburg'] = 'Asia/Yekaterinburg'; -$a->strings['Asia/Yerevan'] = 'Asia/Yerevan'; -$a->strings['Atlantic/Azores'] = 'Atlantic/Azores'; -$a->strings['Atlantic/Bermuda'] = 'Atlantic/Bermuda'; -$a->strings['Atlantic/Canary'] = 'Atlantic/Canary'; -$a->strings['Atlantic/Cape_Verde'] = 'Atlantic/Cape_Verde'; -$a->strings['Atlantic/Faeroe'] = 'Atlantic/Faeroe'; -$a->strings['Atlantic/Faroe'] = 'Atlantic/Faroe'; -$a->strings['Atlantic/Jan_Mayen'] = 'Atlantic/Jan_Mayen'; -$a->strings['Atlantic/Madeira'] = 'Atlantic/Madeira'; -$a->strings['Atlantic/Reykjavik'] = 'Atlantic/Reykjavik'; -$a->strings['Atlantic/South_Georgia'] = 'Atlantic/South_Georgia'; -$a->strings['Atlantic/St_Helena'] = 'Atlantic/St_Helena'; -$a->strings['Atlantic/Stanley'] = 'Atlantic/Stanley'; -$a->strings['Australia/ACT'] = 'Australia/ACT'; -$a->strings['Australia/Adelaide'] = 'Australia/Adelaide'; -$a->strings['Australia/Brisbane'] = 'Australia/Brisbane'; -$a->strings['Australia/Broken_Hill'] = 'Australia/Broken_Hill'; -$a->strings['Australia/Canberra'] = 'Australia/Canberra'; -$a->strings['Australia/Currie'] = 'Australia/Currie'; -$a->strings['Australia/Darwin'] = 'Australia/Darwin'; -$a->strings['Australia/Eucla'] = 'Australia/Eucla'; -$a->strings['Australia/Hobart'] = 'Australia/Hobart'; -$a->strings['Australia/LHI'] = 'Australia/LHI'; -$a->strings['Australia/Lindeman'] = 'Australia/Lindeman'; -$a->strings['Australia/Lord_Howe'] = 'Australia/Lord_Howe'; -$a->strings['Australia/Melbourne'] = 'Australia/Melbourne'; -$a->strings['Australia/North'] = 'Australia/North'; -$a->strings['Australia/NSW'] = 'Australia/NSW'; -$a->strings['Australia/Perth'] = 'Australia/Perth'; -$a->strings['Australia/Queensland'] = 'Australia/Queensland'; -$a->strings['Australia/South'] = 'Australia/South'; -$a->strings['Australia/Sydney'] = 'Australia/Sydney'; -$a->strings['Australia/Tasmania'] = 'Australia/Tasmania'; -$a->strings['Australia/Victoria'] = 'Australia/Victoria'; -$a->strings['Australia/West'] = 'Australia/West'; -$a->strings['Australia/Yancowinna'] = 'Australia/Yancowinna'; -$a->strings['Brazil/Acre'] = 'Brazil/Acre'; -$a->strings['Brazil/DeNoronha'] = 'Brazil/DeNoronha'; -$a->strings['Brazil/East'] = 'Brazil/East'; -$a->strings['Brazil/West'] = 'Brazil/West'; -$a->strings['Canada/Atlantic'] = 'Canada/Atlantic'; -$a->strings['Canada/Central'] = 'Canada/Central'; -$a->strings['Canada/East-Saskatchewan'] = 'Canada/East-Saskatchewan'; -$a->strings['Canada/Eastern'] = 'Canada/Eastern'; -$a->strings['Canada/Mountain'] = 'Canada/Mountain'; -$a->strings['Canada/Newfoundland'] = 'Canada/Newfoundland'; -$a->strings['Canada/Pacific'] = 'Canada/Pacific'; -$a->strings['Canada/Saskatchewan'] = 'Canada/Saskatchewan'; -$a->strings['Canada/Yukon'] = 'Canada/Yukon'; -$a->strings['CET'] = 'CET'; -$a->strings['Chile/Continental'] = 'Chile/Continental'; -$a->strings['Chile/EasterIsland'] = 'Chile/EasterIsland'; -$a->strings['CST6CDT'] = 'CST6CDT'; -$a->strings['Cuba'] = 'Cuba'; -$a->strings['EET'] = 'EET'; -$a->strings['Egypt'] = 'Egypt'; -$a->strings['Eire'] = 'Eire'; -$a->strings['EST'] = 'EST'; -$a->strings['EST5EDT'] = 'EST5EDT'; -$a->strings['Etc/GMT'] = 'Etc/GMT'; -$a->strings['Etc/GMT+0'] = 'Etc/GMT+0'; -$a->strings['Etc/GMT+1'] = 'Etc/GMT+1'; -$a->strings['Etc/GMT+10'] = 'Etc/GMT+10'; -$a->strings['Etc/GMT+11'] = 'Etc/GMT+11'; -$a->strings['Etc/GMT+12'] = 'Etc/GMT+12'; -$a->strings['Etc/GMT+2'] = 'Etc/GMT+2'; -$a->strings['Etc/GMT+3'] = 'Etc/GMT+3'; -$a->strings['Etc/GMT+4'] = 'Etc/GMT+4'; -$a->strings['Etc/GMT+5'] = 'Etc/GMT+5'; -$a->strings['Etc/GMT+6'] = 'Etc/GMT+6'; -$a->strings['Etc/GMT+7'] = 'Etc/GMT+7'; -$a->strings['Etc/GMT+8'] = 'Etc/GMT+8'; -$a->strings['Etc/GMT+9'] = 'Etc/GMT+9'; -$a->strings['Etc/GMT-0'] = 'Etc/GMT-0'; -$a->strings['Etc/GMT-1'] = 'Etc/GMT-1'; -$a->strings['Etc/GMT-10'] = 'Etc/GMT-10'; -$a->strings['Etc/GMT-11'] = 'Etc/GMT-11'; -$a->strings['Etc/GMT-12'] = 'Etc/GMT-12'; -$a->strings['Etc/GMT-13'] = 'Etc/GMT-13'; -$a->strings['Etc/GMT-14'] = 'Etc/GMT-14'; -$a->strings['Etc/GMT-2'] = 'Etc/GMT-2'; -$a->strings['Etc/GMT-3'] = 'Etc/GMT-3'; -$a->strings['Etc/GMT-4'] = 'Etc/GMT-4'; -$a->strings['Etc/GMT-5'] = 'Etc/GMT-5'; -$a->strings['Etc/GMT-6'] = 'Etc/GMT-6'; -$a->strings['Etc/GMT-7'] = 'Etc/GMT-7'; -$a->strings['Etc/GMT-8'] = 'Etc/GMT-8'; -$a->strings['Etc/GMT-9'] = 'Etc/GMT-9'; -$a->strings['Etc/GMT0'] = 'Etc/GMT0'; -$a->strings['Etc/Greenwich'] = 'Etc/Greenwich'; -$a->strings['Etc/UCT'] = 'Etc/UCT'; -$a->strings['Etc/Universal'] = 'Etc/Universal'; -$a->strings['Etc/UTC'] = 'Etc/UTC'; -$a->strings['Etc/Zulu'] = 'Etc/Zulu'; -$a->strings['Europe/Amsterdam'] = 'Europe/Amsterdam'; -$a->strings['Europe/Andorra'] = 'Europe/Andorra'; -$a->strings['Europe/Athens'] = 'Europe/Athens'; -$a->strings['Europe/Belfast'] = 'Europe/Belfast'; -$a->strings['Europe/Belgrade'] = 'Europe/Belgrade'; -$a->strings['Europe/Berlin'] = 'Europe/Berlin'; -$a->strings['Europe/Bratislava'] = 'Europe/Bratislava'; -$a->strings['Europe/Brussels'] = 'Europe/Brussels'; -$a->strings['Europe/Bucharest'] = 'Europe/Bucharest'; -$a->strings['Europe/Budapest'] = 'Europe/Budapest'; -$a->strings['Europe/Chisinau'] = 'Europe/Chisinau'; -$a->strings['Europe/Copenhagen'] = 'Europe/Copenhagen'; -$a->strings['Europe/Dublin'] = 'Europe/Dublin'; -$a->strings['Europe/Gibraltar'] = 'Europe/Gibraltar'; -$a->strings['Europe/Guernsey'] = 'Europe/Guernsey'; -$a->strings['Europe/Helsinki'] = 'Europe/Helsinki'; -$a->strings['Europe/Isle_of_Man'] = 'Europe/Isle_of_Man'; -$a->strings['Europe/Istanbul'] = 'Europe/Istanbul'; -$a->strings['Europe/Jersey'] = 'Europe/Jersey'; -$a->strings['Europe/Kaliningrad'] = 'Europe/Kaliningrad'; -$a->strings['Europe/Kiev'] = 'Europe/Kiev'; -$a->strings['Europe/Lisbon'] = 'Europe/Lisbon'; -$a->strings['Europe/Ljubljana'] = 'Europe/Ljubljana'; -$a->strings['Europe/London'] = 'Europe/London'; -$a->strings['Europe/Luxembourg'] = 'Europe/Luxembourg'; -$a->strings['Europe/Madrid'] = 'Europe/Madrid'; -$a->strings['Europe/Malta'] = 'Europe/Malta'; -$a->strings['Europe/Mariehamn'] = 'Europe/Mariehamn'; -$a->strings['Europe/Minsk'] = 'Europe/Minsk'; -$a->strings['Europe/Monaco'] = 'Europe/Monaco'; -$a->strings['Europe/Moscow'] = 'Europe/Moscow'; -$a->strings['Europe/Nicosia'] = 'Europe/Nicosia'; -$a->strings['Europe/Oslo'] = 'Europe/Oslo'; -$a->strings['Europe/Paris'] = 'Europe/Paris'; -$a->strings['Europe/Podgorica'] = 'Europe/Podgorica'; -$a->strings['Europe/Prague'] = 'Europe/Prague'; -$a->strings['Europe/Riga'] = 'Europe/Riga'; -$a->strings['Europe/Rome'] = 'Europe/Rome'; -$a->strings['Europe/Samara'] = 'Europe/Samara'; -$a->strings['Europe/San_Marino'] = 'Europe/San_Marino'; -$a->strings['Europe/Sarajevo'] = 'Europe/Sarajevo'; -$a->strings['Europe/Simferopol'] = 'Europe/Simferopol'; -$a->strings['Europe/Skopje'] = 'Europe/Skopje'; -$a->strings['Europe/Sofia'] = 'Europe/Sofia'; -$a->strings['Europe/Stockholm'] = 'Europe/Stockholm'; -$a->strings['Europe/Tallinn'] = 'Europe/Tallinn'; -$a->strings['Europe/Tirane'] = 'Europe/Tirane'; -$a->strings['Europe/Tiraspol'] = 'Europe/Tiraspol'; -$a->strings['Europe/Uzhgorod'] = 'Europe/Uzhgorod'; -$a->strings['Europe/Vaduz'] = 'Europe/Vaduz'; -$a->strings['Europe/Vatican'] = 'Europe/Vatican'; -$a->strings['Europe/Vienna'] = 'Europe/Vienna'; -$a->strings['Europe/Vilnius'] = 'Europe/Vilnius'; -$a->strings['Europe/Volgograd'] = 'Europe/Volgograd'; -$a->strings['Europe/Warsaw'] = 'Europe/Warsaw'; -$a->strings['Europe/Zagreb'] = 'Europe/Zagreb'; -$a->strings['Europe/Zaporozhye'] = 'Europe/Zaporozhye'; -$a->strings['Europe/Zurich'] = 'Europe/Zurich'; -$a->strings['Factory'] = 'Factory'; -$a->strings['GB'] = 'GB'; -$a->strings['GB-Eire'] = 'GB-Eire'; -$a->strings['GMT'] = 'GMT'; -$a->strings['GMT+0'] = 'GMT+0'; -$a->strings['GMT-0'] = 'GMT-0'; -$a->strings['GMT0'] = 'GMT0'; -$a->strings['Greenwich'] = 'Greenwich'; -$a->strings['Hongkong'] = 'Hongkong'; -$a->strings['HST'] = 'HST'; -$a->strings['Iceland'] = 'Iceland'; -$a->strings['Indian/Antananarivo'] = 'Indian/Antananarivo'; -$a->strings['Indian/Chagos'] = 'Indian/Chagos'; -$a->strings['Indian/Christmas'] = 'Indian/Christmas'; -$a->strings['Indian/Cocos'] = 'Indian/Cocos'; -$a->strings['Indian/Comoro'] = 'Indian/Comoro'; -$a->strings['Indian/Kerguelen'] = 'Indian/Kerguelen'; -$a->strings['Indian/Mahe'] = 'Indian/Mahe'; -$a->strings['Indian/Maldives'] = 'Indian/Maldives'; -$a->strings['Indian/Mauritius'] = 'Indian/Mauritius'; -$a->strings['Indian/Mayotte'] = 'Indian/Mayotte'; -$a->strings['Indian/Reunion'] = 'Indian/Reunion'; -$a->strings['Iran'] = 'Iran'; -$a->strings['Israel'] = 'Israel'; -$a->strings['Jamaica'] = 'Jamaica'; -$a->strings['Japan'] = 'Japan'; -$a->strings['Kwajalein'] = 'Kwajalein'; -$a->strings['Libya'] = 'Libya'; -$a->strings['MET'] = 'MET'; -$a->strings['Mexico/BajaNorte'] = 'Mexico/BajaNorte'; -$a->strings['Mexico/BajaSur'] = 'Mexico/BajaSur'; -$a->strings['Mexico/General'] = 'Mexico/General'; -$a->strings['MST'] = 'MST'; -$a->strings['MST7MDT'] = 'MST7MDT'; -$a->strings['Navajo'] = 'Navajo'; -$a->strings['NZ'] = 'NZ'; -$a->strings['NZ-CHAT'] = 'NZ-CHAT'; -$a->strings['Pacific/Apia'] = 'Pacific/Apia'; -$a->strings['Pacific/Auckland'] = 'Pacific/Auckland'; -$a->strings['Pacific/Chatham'] = 'Pacific/Chatham'; -$a->strings['Pacific/Easter'] = 'Pacific/Easter'; -$a->strings['Pacific/Efate'] = 'Pacific/Efate'; -$a->strings['Pacific/Enderbury'] = 'Pacific/Enderbury'; -$a->strings['Pacific/Fakaofo'] = 'Pacific/Fakaofo'; -$a->strings['Pacific/Fiji'] = 'Pacific/Fiji'; -$a->strings['Pacific/Funafuti'] = 'Pacific/Funafuti'; -$a->strings['Pacific/Galapagos'] = 'Pacific/Galapagos'; -$a->strings['Pacific/Gambier'] = 'Pacific/Gambier'; -$a->strings['Pacific/Guadalcanal'] = 'Pacific/Guadalcanal'; -$a->strings['Pacific/Guam'] = 'Pacific/Guam'; -$a->strings['Pacific/Honolulu'] = 'Pacific/Honolulu'; -$a->strings['Pacific/Johnston'] = 'Pacific/Johnston'; -$a->strings['Pacific/Kiritimati'] = 'Pacific/Kiritimati'; -$a->strings['Pacific/Kosrae'] = 'Pacific/Kosrae'; -$a->strings['Pacific/Kwajalein'] = 'Pacific/Kwajalein'; -$a->strings['Pacific/Majuro'] = 'Pacific/Majuro'; -$a->strings['Pacific/Marquesas'] = 'Pacific/Marquesas'; -$a->strings['Pacific/Midway'] = 'Pacific/Midway'; -$a->strings['Pacific/Nauru'] = 'Pacific/Nauru'; -$a->strings['Pacific/Niue'] = 'Pacific/Niue'; -$a->strings['Pacific/Norfolk'] = 'Pacific/Norfolk'; -$a->strings['Pacific/Noumea'] = 'Pacific/Noumea'; -$a->strings['Pacific/Pago_Pago'] = 'Pacific/Pago_Pago'; -$a->strings['Pacific/Palau'] = 'Pacific/Palau'; -$a->strings['Pacific/Pitcairn'] = 'Pacific/Pitcairn'; -$a->strings['Pacific/Ponape'] = 'Pacific/Ponape'; -$a->strings['Pacific/Port_Moresby'] = 'Pacific/Port_Moresby'; -$a->strings['Pacific/Rarotonga'] = 'Pacific/Rarotonga'; -$a->strings['Pacific/Saipan'] = 'Pacific/Saipan'; -$a->strings['Pacific/Samoa'] = 'Pacific/Samoa'; -$a->strings['Pacific/Tahiti'] = 'Pacific/Tahiti'; -$a->strings['Pacific/Tarawa'] = 'Pacific/Tarawa'; -$a->strings['Pacific/Tongatapu'] = 'Pacific/Tongatapu'; -$a->strings['Pacific/Truk'] = 'Pacific/Truk'; -$a->strings['Pacific/Wake'] = 'Pacific/Wake'; -$a->strings['Pacific/Wallis'] = 'Pacific/Wallis'; -$a->strings['Pacific/Yap'] = 'Pacific/Yap'; -$a->strings['Poland'] = 'Poland'; -$a->strings['Portugal'] = 'Portugal'; -$a->strings['PRC'] = 'PRC'; -$a->strings['PST8PDT'] = 'PST8PDT'; -$a->strings['ROC'] = 'ROC'; -$a->strings['ROK'] = 'ROK'; -$a->strings['Singapore'] = 'Singapore'; -$a->strings['Turkey'] = 'Turkey'; -$a->strings['UCT'] = 'UCT'; -$a->strings['Universal'] = 'Universal'; -$a->strings['US/Alaska'] = 'US/Alaska'; -$a->strings['US/Aleutian'] = 'US/Aleutian'; -$a->strings['US/Arizona'] = 'US/Arizona'; -$a->strings['US/Central'] = 'US/Central'; -$a->strings['US/East-Indiana'] = 'US/East-Indiana'; -$a->strings['US/Eastern'] = 'US/Eastern'; -$a->strings['US/Hawaii'] = 'US/Hawaii'; -$a->strings['US/Indiana-Starke'] = 'US/Indiana-Starke'; -$a->strings['US/Michigan'] = 'US/Michigan'; -$a->strings['US/Mountain'] = 'US/Mountain'; -$a->strings['US/Pacific'] = 'US/Pacific'; -$a->strings['US/Pacific-New'] = 'US/Pacific-New'; -$a->strings['US/Samoa'] = 'US/Samoa'; -$a->strings['UTC'] = 'UTC'; -$a->strings['W-SU'] = 'W-SU'; -$a->strings['WET'] = 'WET'; -$a->strings['Zulu'] = 'Zulu'; -$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['Birthdays this week:'] = 'Compleanni questa settimana:'; -$a->strings['(Adjusted for local time)'] = '(Regolati all\'ora locale)'; -$a->strings['[today]'] = '[oggi]'; -$a->strings[' has received too many connection requests today.'] = 'ha ricevuto troppe richieste di connessione oggi.'; -$a->strings['Profile Image'] = 'Immagine del Profilo'; -$a->strings['Invalid OpenID url'] = 'Url OpenID non valido'; -$a->strings['Cannot use that email.'] = 'Questa email non si puo\' usare.'; -$a->strings['Normal View'] = 'Vista normale'; -$a->strings['New Item View'] = 'Vista Nuovi Elementi'; -$a->strings['Share'] = 'Condividi'; -$a->strings['Insert YouTube video'] = 'Inserisci video da YouTube'; -$a->strings['Set your location'] = 'Imposta la tua posizione'; -$a->strings['Clear browser location'] = 'Cancella la tua posizione data dal browser'; -$a->strings['Permission settings'] = 'Impostazione permessi'; -$a->strings[' Cannot change to that email.'] = 'Non puoi cambiare a quella email.'; -$a->strings['Birthday:'] = 'Compleanno:'; -$a->strings['Update now'] = 'Aggiorna adesso'; -$a->strings['This message was sent to you by '] = 'Questo messaggio è ti è stato inviato da '; -$a->strings[', a member of the Friendika social network.'] = ', un membro del social network Friendika'; -$a->strings['You may visit them online at'] = 'Puoi visitarli online a '; -$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['posted an update.'] = 'ha inviato un aggiornamento.'; -$a->strings['CC: email addresses'] = 'CC: indirizzi email'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Esempio: bob@example.com, mary@example.com'; -$a->strings['Embedding disabled'] = 'Inclusione disabilitata'; -$a->strings['Upload a file'] = 'Carica un file'; -$a->strings['Drop files here to upload'] = 'Trascina un file qui per caricarlo'; -$a->strings['Failed'] = 'Fallito'; -$a->strings['No files were uploaded.'] = 'Nessun file è stato caricato.'; -$a->strings['Uploaded file is empty'] = 'Il file caricato è vuoto'; -$a->strings['Uploaded file is too large'] = 'Il file caricato è troppo grande'; -$a->strings['File has an invalid extension, it should be one of '] = 'Il file ha una estensione non valida, dovrebbe essere una di '; -$a->strings['Upload was cancelled, or server error encountered'] = 'Il caricamento è stato cancellato, o si è verificato un errore sul server'; -$a->strings['Randplace Settings'] = 'Impostazioni Randplace'; -$a->strings['Enable Randplace Plugin'] = 'Abilita il plugin Randplace'; -$a->strings['System error. Post not saved.'] = 'Errore di sistema. Messaggio non salvato.'; -$a->strings['(Update was successful)'] = '(L\'aggiornamento è stato completato)'; -$a->strings['(Update was not successful)'] = '(L\'aggiornamento non è stato completato)'; -$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 rimuoverà completamente il tuo account. Una volta rimosso non si potrà recuperarlo.'; -$a->strings['Please enter your password for verification:'] = 'Inserisci la tua password per verifica:'; -$a->strings['No consumer key pair for StatusNet found. Register your Friendika Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendika installation at your favorited StatusNet installation.'] = 'Nessuna coppia di chiavi consumer per StatusNet trovata. Regitstra il tuo Account Friendika come un client desktop sul tuo account StatusNet, copia la coppia di chiavi qui e inserisci l\'url di base delle API.
Prima di registrare la tua coppia di chiavi OAuth, chiedi all\'amministratore se esiste già una coppia di chiavi per questa installazione di Friendika sulla installazione di StatusNet che ti interessa.'; -$a->strings['OAuth Consumer Key'] = 'OAuth Consumer Key'; -$a->strings['OAuth Consumer Secret'] = 'OAuth Consumer Secret'; -$a->strings['Base API Path (remember the trailing /)'] = 'Indirizzo di base per le API (ricorda la / alla fine)'; -$a->strings['To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your public posts will be posted to StatusNet.'] = 'Per collegare il tuo account StatusNet, clicca sul bottone qui sotto per ottenere un codice di sicurezza da StatusNet, che dovrai copiare nel box più sotto per poi inviare la form. Solo i tuoi messaggi pubblci saranno inviati a StatusNet.'; -$a->strings['Log in with StatusNet'] = 'Login con StatuNet'; -$a->strings['Copy the security code from StatusNet here'] = 'Copia il codice di sicurezza da StatusNet qui'; -$a->strings['Currently connected to: '] = 'Al momento collegato con:'; -$a->strings['If enabled all your public postings will be posted to the associated StatusNet account as well.'] = 'Se abilitato tutti i tuoi messaggi pubblici verranno inviati anche sull\'account StatusNet associato.'; -$a->strings['Send public postings to StatusNet'] = 'Invia messaggi pubblici su StatusNet'; -$a->strings['Clear OAuth configuration'] = 'Cancella la configurazione OAuth'; -$a->strings['Twitter Posting Settings'] = 'Impostazioni Invio a Twitter'; -$a->strings['No consumer key pair for Twitter found. Please contact your site administrator.'] = 'Nessuna coopia di chiavi per Twitter trovata. Contatta il tuo amministratore del sito.'; -$a->strings['At this Friendika instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter.'] = 'Questa installazione di Friendika ha il plugin Twitter abilitato, ma non hai ancora collegato il tuo account locale con il tuo account su Twitter. Per farlo, clicca il bottone qui sotto per ottenere un PIN da Twitter, che dovrai copiare nel box più sotto per poi inviare la form. Solo i tuoi messaggi pubblici verranno inviati anche su Twitter.'; -$a->strings['Copy the PIN from Twitter here'] = 'Copia il PIN da Twitter qui'; -$a->strings['If enabled all your public postings will be posted to the associated Twitter account as well.'] = 'Se abilitato tutti i tuoi messaggi pubblici verranno inviati anche sull\'account Twitter associato.'; -$a->strings['Send public postings to Twitter'] = 'Invia messaggi pubblici su Twitter'; -$a->strings['noreply'] = 'nessuna risposta'; -$a->strings['Facebook disabled'] = 'Facebook disabilitato'; -$a->strings['Facebook API key is missing.'] = 'Chiave API Facebook mancante.'; -$a->strings['Facebook Connect'] = 'Facebook Connect'; -$a->strings['Install Facebook posting'] = 'Installa invio a Facebook'; -$a->strings['Remove Facebook posting'] = 'Rimuovi invio a Facebook'; -$a->strings['Post to Facebook'] = 'Invia a Facebook'; -$a->strings['Image: '] = 'Immagine: '; -$a->strings['Base API Path \x28remember the trailing /\x29'] = 'Indirizzo base API \x28ricorda il / alla fine\x29'; -$a->strings['Post to Twitter'] = 'Inva a Twitter'; -?> + +function string_plural_select($n){ + return ($n != 1); +} +$a->strings["Permission denied."] = "Permesso negato."; +$a->strings["Normal View"] = "Vista Normale"; +$a->strings["New Item View"] = "Vista Nuovi Elementi"; +$a->strings["Share"] = "Condividi"; +$a->strings["Upload photo"] = "Carica foto"; +$a->strings["Insert web link"] = "Inserisci collegamento web"; +$a->strings["Insert YouTube video"] = "Inserisci video da YouTube"; +$a->strings["Set your location"] = "Imposta la tua posizione"; +$a->strings["Clear browser location"] = "Cancella la posizione del browser"; +$a->strings["Please wait"] = "Attendi"; +$a->strings["Permission settings"] = "Impostazioni permessi"; +$a->strings["CC: email addresses"] = "CC: indirizzi email"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com"; +$a->strings["No such group"] = "Nessun gruppo"; +$a->strings["Group is empty"] = "Il gruppo è vuoto"; +$a->strings["Group: "] = "Gruppo:"; +$a->strings["View $name's profile"] = "Vedi il profilo di $name"; +$a->strings["View in context"] = "Vedi nel contesto"; +$a->strings["Private Message"] = "Messaggio Privato"; +$a->strings["I like this (toggle)"] = "Mi piace (metti/togli)"; +$a->strings["I don't like this (toggle)"] = "Non mi piace (metti/togli)"; +$a->strings["This is you"] = "Questo sei tu"; +$a->strings["Delete"] = "Elimina"; +$a->strings["View $owner_name's profile"] = "Vedi il profilo di $owner_name"; +$a->strings["to"] = "a"; +$a->strings["Wall-to-Wall"] = "Sulla Bacheca"; +$a->strings["via Wall-To-Wall:"] = "sulla sua Bacheca:"; +$a->strings["Profile not found."] = "Profilo non trovato."; +$a->strings["Profile Name is required."] = "Il Nome del Profilo è richieso."; +$a->strings["Profile updated."] = "Profilo aggiornato."; +$a->strings["Profile deleted."] = "Profilo cancellato."; +$a->strings["Profile-"] = "Profilo-"; +$a->strings["New profile created."] = "Nuovo profilo creato."; +$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; +$a->strings["Age: "] = "Età:"; +$a->strings["Profile Image"] = "Immagine del profilo"; +$a->strings["Administrator"] = "Amministratore"; +$a->strings["Invalid request identifier."] = "Indentificativo richiesta non valido."; +$a->strings["Discard"] = "Rimuovi"; +$a->strings["Ignore"] = "Ignora"; +$a->strings["Show Ignored Requests"] = "Mostra Richieste Ignorate"; +$a->strings["Hide Ignored Requests"] = "Nascondi Richieste Ignorate"; +$a->strings["Claims to be known to you: "] = "Dice di conoscerti:"; +$a->strings["yes"] = "si"; +$a->strings["no"] = "no"; +$a->strings["Approve as: "] = "Approva come:"; +$a->strings["Friend"] = "Amico"; +$a->strings["Fan/Admirer"] = "Fan/Ammiratore"; +$a->strings["Notification type: "] = "Tipo di notifica:"; +$a->strings["Friend/Connect Request"] = "Amico/Richiesta di Connessione"; +$a->strings["New Follower"] = "Nuovo seguace"; +$a->strings["Approve"] = "Approva"; +$a->strings["No notifications."] = "Nessuna notifica."; +$a->strings["No registrations."] = "Nessuna registrazione."; +$a->strings["Could not create/connect to database."] = "Nono posso creare/connettermi al database."; +$a->strings["Connected to database."] = "Connesso al database."; +$a->strings["Database import succeeded."] = "Importazione del database riuscita."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Guarda il file \"INSTALL.txt\"."; +$a->strings["Database import failed."] = "Importazione del database fallita."; +$a->strings["Welcome to Friendika."] = "Benvenuto su Friendika."; +$a->strings["Submit"] = "Invia"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = ""; +$a->strings["This is required for message delivery to work."] = "E' richiesto per il funzionamento della consegna dei messaggi."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: Il modulo libCURL di PHP è richiesto ma non è installato."; +$a->strings["Error: openssl PHP module required but not installed."] = "Errore: Il modulo openssl di PHP è richiesto ma non è installato."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: Il modulo mysqli di PHP è richiesto ma non è installato."; +$a->strings["Errors encountered creating database tables."] = ""; +$a->strings["No recipient selected."] = ""; +$a->strings["[no subject]"] = ""; +$a->strings["Unable to locate contact information."] = ""; +$a->strings["Wall Photos"] = ""; +$a->strings["Message sent."] = ""; +$a->strings["Message could not be sent."] = ""; +$a->strings["Messages"] = ""; +$a->strings["Inbox"] = ""; +$a->strings["Outbox"] = ""; +$a->strings["New Message"] = ""; +$a->strings["Message deleted."] = ""; +$a->strings["Conversation removed."] = ""; +$a->strings["Send Private Message"] = ""; +$a->strings["To:"] = ""; +$a->strings["Subject:"] = ""; +$a->strings["Your message:"] = ""; +$a->strings["No messages."] = ""; +$a->strings["Delete conversation"] = ""; +$a->strings["Message not available."] = ""; +$a->strings["Delete message"] = ""; +$a->strings["Send Reply"] = ""; +$a->strings["Global Directory"] = ""; +$a->strings["Finding: "] = ""; +$a->strings["Welcome back "] = ""; +$a->strings["Manage Identities and/or Pages"] = ""; +$a->strings["Select an identity to manage: "] = ""; +$a->strings[" welcomes "] = ""; +$a->strings["Contact not found."] = ""; +$a->strings["Response from remote site was not understood."] = ""; +$a->strings["Unexpected response from remote site: "] = ""; +$a->strings["Confirmation completed successfully."] = ""; +$a->strings["Remote site reported: "] = ""; +$a->strings["Temporary failure. Please wait and try again."] = ""; +$a->strings["Introduction failed or was revoked."] = ""; +$a->strings["Unable to set contact photo."] = ""; +$a->strings["is now friends with"] = ""; +$a->strings["No user record found for '%s' "] = ""; +$a->strings["Our site encryption key is apparently messed up."] = ""; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = ""; +$a->strings["Contact record was not found for you on our site."] = ""; +$a->strings["Unable to set your contact credentials on our system."] = ""; +$a->strings["Unable to update your contact profile details on our system"] = ""; +$a->strings["Connection accepted at %s"] = ""; +$a->strings["Image exceeds size limit of "] = ""; +$a->strings["Unable to process image."] = ""; +$a->strings["Image upload failed."] = ""; +$a->strings["Item not found."] = ""; +$a->strings["Item has been removed."] = ""; +$a->strings["Remote privacy information not available."] = ""; +$a->strings["Visible to:"] = ""; +$a->strings["noreply"] = ""; +$a->strings["New mail received at "] = ""; +$a->strings["%s commented on an item at %s"] = ""; +$a->strings["From: Administrator@"] = ""; +$a->strings["Remove My Account"] = ""; +$a->strings["Please enter your password for verification:"] = ""; +$a->strings["Welcome to "] = ""; +$a->strings["Please login."] = ""; +$a->strings["Registration revoked for "] = ""; +$a->strings["Registration details for "] = ""; +$a->strings["Account approved."] = ""; +$a->strings["Applications"] = ""; +$a->strings["Photo Albums"] = ""; +$a->strings["Contact Photos"] = ""; +$a->strings["Contact information unavailable"] = ""; +$a->strings["Profile Photos"] = ""; +$a->strings["Album not found."] = ""; +$a->strings["Delete Album"] = ""; +$a->strings["Delete Photo"] = ""; +$a->strings["was tagged in a"] = ""; +$a->strings["photo"] = ""; +$a->strings["by"] = ""; +$a->strings["No photos selected"] = ""; +$a->strings["Upload Photos"] = ""; +$a->strings["New album name: "] = ""; +$a->strings["or existing album name: "] = ""; +$a->strings["Permissions"] = ""; +$a->strings["Edit Album"] = ""; +$a->strings["View Photo"] = ""; +$a->strings["Photo not available"] = ""; +$a->strings["Edit photo"] = ""; +$a->strings["Use as profile photo"] = ""; +$a->strings["View Full Size"] = ""; +$a->strings["Tags: "] = ""; +$a->strings["[Remove any tag]"] = ""; +$a->strings["New album name"] = ""; +$a->strings["Caption"] = ""; +$a->strings["Add a Tag"] = ""; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = ""; +$a->strings["Recent Photos"] = ""; +$a->strings["Upload New Photos"] = ""; +$a->strings["View Album"] = ""; +$a->strings["No profile"] = ""; +$a->strings["View Contacts"] = ""; +$a->strings["No contacts."] = ""; +$a->strings["Visit "] = ""; +$a->strings["'s profile"] = ""; +$a->strings["Passwords do not match. Password unchanged."] = ""; +$a->strings["Empty passwords are not allowed. Password unchanged."] = ""; +$a->strings["Password changed."] = ""; +$a->strings["Password update failed. Please try again."] = ""; +$a->strings[" Please use a shorter name."] = ""; +$a->strings[" Name too short."] = ""; +$a->strings[" Not valid email."] = ""; +$a->strings[" Cannot change to that email."] = ""; +$a->strings["Settings updated."] = ""; +$a->strings["Plugin Settings"] = ""; +$a->strings["Account Settings"] = ""; +$a->strings["No Plugin settings configured"] = ""; +$a->strings["OpenID: "] = ""; +$a->strings[" (Optional) Allow this OpenID to login to this account."] = ""; +$a->strings["Profile is not published."] = ""; +$a->strings["Default Post Permissions"] = ""; +$a->strings["Unable to locate original post."] = ""; +$a->strings["Empty post discarded."] = ""; +$a->strings[" commented on your item at "] = ""; +$a->strings[" posted on your profile wall at "] = ""; +$a->strings["System error. Post not saved."] = ""; +$a->strings["This message was sent to you by "] = ""; +$a->strings[", a member of the Friendika social network."] = ""; +$a->strings["You may visit them online at"] = ""; +$a->strings["posted an update."] = ""; +$a->strings["Search"] = ""; +$a->strings["Image uploaded but image cropping failed."] = ""; +$a->strings["Image size reduction [175] failed."] = ""; +$a->strings["Image size reduction [80] failed."] = ""; +$a->strings["Image size reduction [48] failed."] = ""; +$a->strings["Unable to process image"] = ""; +$a->strings["Image uploaded successfully."] = ""; +$a->strings["Image size reduction [640] failed."] = ""; +$a->strings["Group created."] = ""; +$a->strings["Could not create group."] = ""; +$a->strings["Group not found."] = ""; +$a->strings["Group name changed."] = ""; +$a->strings["Membership list updated."] = ""; +$a->strings["Permission denied"] = ""; +$a->strings["Group removed."] = ""; +$a->strings["Unable to remove group."] = ""; +$a->strings["Cancel"] = ""; +$a->strings["Tag removed"] = ""; +$a->strings["Remove Item Tag"] = ""; +$a->strings["Select a tag to remove: "] = ""; +$a->strings["Remove"] = ""; +$a->strings[" : "] = ""; +$a->strings["Not a valid email address."] = ""; +$a->strings["Please join my network on "] = ""; +$a->strings["Message delivery failed."] = ""; +$a->strings[" messages sent."] = ""; +$a->strings["Send invitations"] = ""; +$a->strings["Enter email addresses, one per line:"] = ""; +$a->strings["Please join my social network on "] = ""; +$a->strings["To accept this invitation, please visit:"] = ""; +$a->strings["Invalid OpenID url"] = ""; +$a->strings["Please enter the required information."] = ""; +$a->strings["Please use a shorter name."] = ""; +$a->strings["Name too short."] = ""; +$a->strings["That doesn\\'t appear to be your full (First Last) name."] = ""; +$a->strings["Your email domain is not among those allowed on this site."] = ""; +$a->strings["Cannot use that email."] = ""; +$a->strings["Nickname is already registered. Please choose another."] = ""; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = ""; +$a->strings["An error occurred during registration. Please try again."] = ""; +$a->strings["An error occurred creating your default profile. Please try again."] = ""; +$a->strings["Failed to send email message. Here is the message that failed."] = ""; +$a->strings["Your registration can not be processed."] = ""; +$a->strings["Registration request at "] = ""; +$a->strings["Your registration is pending approval by the site owner."] = ""; +$a->strings["Your OpenID (optional): "] = ""; +$a->strings["Include your profile in member directory?"] = ""; +$a->strings["Yes"] = ""; +$a->strings["No"] = ""; +$a->strings["Registration"] = ""; +$a->strings["Your Full Name (e.g. Joe Smith): "] = ""; +$a->strings["Your Email Address: "] = ""; +$a->strings["Choose a nickname: "] = ""; +$a->strings["Register"] = ""; +$a->strings["Login failed."] = ""; +$a->strings["status"] = ""; +$a->strings["likes"] = ""; +$a->strings["doesn't like"] = ""; +$a->strings["'s"] = ""; +$a->strings["The profile address specified does not provide adequate information."] = ""; +$a->strings["Unable to retrieve contact information."] = ""; +$a->strings["following"] = ""; +$a->strings["This introduction has already been accepted."] = ""; +$a->strings["Profile location is not valid or does not contain profile information."] = ""; +$a->strings["Warning: profile location has no identifiable owner name."] = ""; +$a->strings["Warning: profile location has no profile photo."] = ""; +$a->strings[" required parameter"] = ""; +$a->strings[" was "] = ""; +$a->strings["s were "] = ""; +$a->strings["not found at the given location."] = ""; +$a->strings["Introduction complete."] = ""; +$a->strings["Unrecoverable protocol error."] = ""; +$a->strings["Profile unavailable."] = ""; +$a->strings[" has received too many connection requests today."] = ""; +$a->strings["Spam protection measures have been invoked."] = ""; +$a->strings["Friends are advised to please try again in 24 hours."] = ""; +$a->strings["Invalid locator"] = ""; +$a->strings["Unable to resolve your name at the provided location."] = ""; +$a->strings["You have already introduced yourself here."] = ""; +$a->strings["Apparently you are already friends with ."] = ""; +$a->strings["Invalid profile URL."] = ""; +$a->strings["Disallowed profile URL."] = ""; +$a->strings["Failed to update contact record."] = ""; +$a->strings["Your introduction has been sent."] = ""; +$a->strings["Please login to confirm introduction."] = ""; +$a->strings["[Name Withheld]"] = ""; +$a->strings["Introduction received at "] = ""; +$a->strings["Friend/Connection Request"] = ""; +$a->strings["Please answer the following:"] = ""; +$a->strings["Does $name know you?"] = ""; +$a->strings["Add a personal note:"] = ""; +$a->strings["Friendika"] = ""; +$a->strings["StatusNet/Federated Social Web"] = ""; +$a->strings["Private (secure) network"] = ""; +$a->strings["Public (insecure) network"] = ""; +$a->strings["Your profile address:"] = ""; +$a->strings["Submit Request"] = ""; +$a->strings["Invite Friends"] = ""; +$a->strings["Connect/Follow"] = ""; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = ""; +$a->strings["Follow"] = ""; +$a->strings["Could not access contact record."] = ""; +$a->strings["Could not locate selected profile."] = ""; +$a->strings["Contact updated."] = ""; +$a->strings["Contact has been blocked"] = ""; +$a->strings["Contact has been unblocked"] = ""; +$a->strings["Contact has been ignored"] = ""; +$a->strings["Contact has been unignored"] = ""; +$a->strings["stopped following"] = ""; +$a->strings["Contact has been removed."] = ""; +$a->strings["Mutual Friendship"] = ""; +$a->strings["is a fan of yours"] = ""; +$a->strings["you are a fan of"] = ""; +$a->strings["Never"] = ""; +$a->strings["(Update was successful)"] = ""; +$a->strings["(Update was not successful)"] = ""; +$a->strings["Contact Editor"] = ""; +$a->strings["Visit $name's profile"] = ""; +$a->strings["Block/Unblock contact"] = ""; +$a->strings["Ignore contact"] = ""; +$a->strings["Delete contact"] = ""; +$a->strings["Last updated: "] = ""; +$a->strings["Update public posts: "] = ""; +$a->strings["Update now"] = ""; +$a->strings["Unblock this contact"] = ""; +$a->strings["Block this contact"] = ""; +$a->strings["Unignore this contact"] = ""; +$a->strings["Ignore this contact"] = ""; +$a->strings["Currently blocked"] = ""; +$a->strings["Currently ignored"] = ""; +$a->strings["Contacts"] = ""; +$a->strings["Show Blocked Connections"] = ""; +$a->strings["Hide Blocked Connections"] = ""; +$a->strings["Find"] = ""; +$a->strings["Visit $username's profile"] = ""; +$a->strings["Edit contact"] = ""; +$a->strings["Facebook disabled"] = ""; +$a->strings["Facebook API key is missing."] = ""; +$a->strings["Facebook Connect"] = ""; +$a->strings["Install Facebook post connector"] = ""; +$a->strings["Remove Facebook post connector"] = ""; +$a->strings["Post to Facebook by default"] = ""; +$a->strings["Facebook"] = ""; +$a->strings["Facebook Connector Settings"] = ""; +$a->strings["Post to Facebook"] = ""; +$a->strings["Image: "] = ""; +$a->strings["Randplace Settings"] = ""; +$a->strings["Enable Randplace Plugin"] = ""; +$a->strings["Post to Twitter"] = ""; +$a->strings["Twitter Posting Settings"] = ""; +$a->strings["Log in with Twitter"] = ""; +$a->strings["Copy the PIN from Twitter here"] = ""; +$a->strings["Currently connected to: "] = ""; +$a->strings["Send public postings to Twitter"] = ""; +$a->strings["Clear OAuth configuration"] = ""; +$a->strings["Three Dimensional Tic-Tac-Toe"] = ""; +$a->strings["3D Tic-Tac-Toe"] = ""; +$a->strings["New game"] = ""; +$a->strings["New game with handicap"] = ""; +$a->strings["You go first..."] = ""; +$a->strings["I'm going first this time..."] = ""; +$a->strings["You won!"] = ""; +$a->strings["\"Cat\" game!"] = ""; +$a->strings["I won!"] = ""; +$a->strings["Upload a file"] = ""; +$a->strings["Drop files here to upload"] = ""; +$a->strings["Failed"] = ""; +$a->strings["No files were uploaded."] = ""; +$a->strings["Uploaded file is empty"] = ""; +$a->strings["Uploaded file is too large"] = ""; +$a->strings["File has an invalid extension, it should be one of "] = ""; +$a->strings["Upload was cancelled, or server error encountered"] = ""; +$a->strings["Select files to upload: "] = ""; +$a->strings["Post to StatusNet"] = ""; +$a->strings["StatusNet Posting Settings"] = ""; +$a->strings["OAuth Consumer Key"] = ""; +$a->strings["OAuth Consumer Secret"] = ""; +$a->strings["Base API Path (remember the trailing /)"] = ""; +$a->strings["Log in with StatusNet"] = ""; +$a->strings["Copy the security code from StatusNet here"] = ""; +$a->strings["Send public postings to StatusNet"] = ""; +$a->strings["Not Found"] = ""; +$a->strings["Page not found."] = ""; +$a->strings["Visible To:"] = ""; +$a->strings["Groups"] = ""; +$a->strings["Except For:"] = ""; +$a->strings["Logged out."] = ""; +$a->strings["Male"] = ""; +$a->strings["Female"] = ""; +$a->strings["Currently Male"] = ""; +$a->strings["Currently Female"] = ""; +$a->strings["Mostly Male"] = ""; +$a->strings["Mostly Female"] = ""; +$a->strings["Transgender"] = ""; +$a->strings["Intersex"] = ""; +$a->strings["Transsexual"] = ""; +$a->strings["Hermaphrodite"] = ""; +$a->strings["Neuter"] = ""; +$a->strings["Non-specific"] = ""; +$a->strings["Other"] = ""; +$a->strings["Undecided"] = ""; +$a->strings["Males"] = ""; +$a->strings["Females"] = ""; +$a->strings["Gay"] = ""; +$a->strings["Lesbian"] = ""; +$a->strings["No Preference"] = ""; +$a->strings["Bisexual"] = ""; +$a->strings["Autosexual"] = ""; +$a->strings["Abstinent"] = ""; +$a->strings["Virgin"] = ""; +$a->strings["Deviant"] = ""; +$a->strings["Fetish"] = ""; +$a->strings["Oodles"] = ""; +$a->strings["Nonsexual"] = ""; +$a->strings["Single"] = ""; +$a->strings["Lonely"] = ""; +$a->strings["Available"] = ""; +$a->strings["Unavailable"] = ""; +$a->strings["Dating"] = ""; +$a->strings["Unfaithful"] = ""; +$a->strings["Sex Addict"] = ""; +$a->strings["Friends"] = ""; +$a->strings["Friends/Benefits"] = ""; +$a->strings["Casual"] = ""; +$a->strings["Engaged"] = ""; +$a->strings["Married"] = ""; +$a->strings["Partners"] = ""; +$a->strings["Cohabiting"] = ""; +$a->strings["Happy"] = ""; +$a->strings["Not Looking"] = ""; +$a->strings["Swinger"] = ""; +$a->strings["Betrayed"] = ""; +$a->strings["Separated"] = ""; +$a->strings["Unstable"] = ""; +$a->strings["Divorced"] = ""; +$a->strings["Widowed"] = ""; +$a->strings["Uncertain"] = ""; +$a->strings["Complicated"] = ""; +$a->strings["Don't care"] = ""; +$a->strings["Ask me"] = ""; +$a->strings["Unknown | Not categorised"] = ""; +$a->strings["Block immediately"] = ""; +$a->strings["Shady, spammer, self-marketer"] = ""; +$a->strings["Known to me, but no opinion"] = ""; +$a->strings["OK, probably harmless"] = ""; +$a->strings["Reputable, has my trust"] = ""; +$a->strings["Frequently"] = ""; +$a->strings["Hourly"] = ""; +$a->strings["Twice daily"] = ""; +$a->strings["Daily"] = ""; +$a->strings["Weekly"] = ""; +$a->strings["Monthly"] = ""; +$a->strings["Logout"] = ""; +$a->strings["Login"] = ""; +$a->strings["Home"] = ""; +$a->strings["Apps"] = ""; +$a->strings["Directory"] = ""; +$a->strings["Network"] = ""; +$a->strings["Notifications"] = ""; +$a->strings["Manage"] = ""; +$a->strings["Settings"] = ""; +$a->strings["Profiles"] = ""; +$a->strings["Embedding disabled"] = ""; +$a->strings["Birthday:"] = ""; +$a->strings["You have a new follower at "] = ""; +$a->strings["Create a new group"] = ""; +$a->strings["Everybody"] = ""; +$a->strings["Miscellaneous"] = ""; +$a->strings["less than a second ago"] = ""; +$a->strings["year"] = ""; +$a->strings["years"] = ""; +$a->strings["month"] = ""; +$a->strings["months"] = ""; +$a->strings["week"] = ""; +$a->strings["weeks"] = ""; +$a->strings["day"] = ""; +$a->strings["days"] = ""; +$a->strings["hour"] = ""; +$a->strings["hours"] = ""; +$a->strings["minute"] = ""; +$a->strings["minutes"] = ""; +$a->strings["second"] = ""; +$a->strings["seconds"] = ""; +$a->strings[" ago"] = ""; +$a->strings["Create a New Account"] = ""; +$a->strings["Nickname or Email address: "] = ""; +$a->strings["Password: "] = ""; +$a->strings["Nickname/Email/OpenID: "] = ""; +$a->strings["Password (if not OpenID): "] = ""; +$a->strings["Forgot your password?"] = ""; +$a->strings["Password Reset"] = ""; +$a->strings["prev"] = ""; +$a->strings["first"] = ""; +$a->strings["last"] = ""; +$a->strings["next"] = ""; +$a->strings[" likes this."] = ""; +$a->strings[" doesn't like this."] = ""; +$a->strings["people"] = ""; +$a->strings["like this."] = ""; +$a->strings["don't like this."] = ""; +$a->strings["and"] = ""; +$a->strings[", and "] = ""; +$a->strings[" other people"] = ""; +$a->strings[" like this."] = ""; +$a->strings[" don't like this."] = ""; +$a->strings["No contacts"] = ""; +$a->strings["Connect"] = ""; +$a->strings["Location:"] = ""; +$a->strings[", "] = ""; +$a->strings["Gender:"] = ""; +$a->strings["Status:"] = ""; +$a->strings["Homepage:"] = ""; +$a->strings["Monday"] = ""; +$a->strings["Tuesday"] = ""; +$a->strings["Wednesday"] = ""; +$a->strings["Thursday"] = ""; +$a->strings["Friday"] = ""; +$a->strings["Saturday"] = ""; +$a->strings["Sunday"] = ""; +$a->strings["January"] = ""; +$a->strings["February"] = ""; +$a->strings["March"] = ""; +$a->strings["April"] = ""; +$a->strings["May"] = ""; +$a->strings["June"] = ""; +$a->strings["July"] = ""; +$a->strings["August"] = ""; +$a->strings["September"] = ""; +$a->strings["October"] = ""; +$a->strings["November"] = ""; +$a->strings["December"] = ""; +$a->strings["Birthdays this week:"] = ""; +$a->strings["(Adjusted for local time)"] = ""; +$a->strings["[today]"] = ""; +$a->strings["link to source"] = ""; +$a->strings["Password reset requested at %s"] = ""; +$a->strings["Welcome back %s"] = ""; +$a->strings["%s welcomes %s"] = ""; +$a->strings["Image exceeds size limit of %d"] = ""; +$a->strings["Welcome to %s"] = ""; +$a->strings["Registration revoked for %s"] = ""; +$a->strings["Registration details for %s"] = ""; +$a->strings["%s commented on your item at %s"] = ""; +$a->strings["%s posted on your profile wall at %s"] = ""; +$a->strings["Administrator@"] = ""; +$a->strings["%s posted an update."] = ""; +$a->strings["Image size reduction [%s] failed."] = ""; +$a->strings["%s : Not a valid email address."] = ""; +$a->strings["Please join my network on %s"] = ""; +$a->strings["%s : Message delivery failed."] = ""; +$a->strings["%d message sent."] = array( + 0 => "", +); +$a->strings["Please join my social network on %s"] = ""; +$a->strings["Registration request at %s"] = ""; +$a->strings["%s's"] = "di %s"; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d parametro richiesto non è stato trovato alla posizione data", + 1 => "%d parametri richiesti non sono stati trovati alla posizione data", +); +$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessioni per oggi."; +$a->strings["Apparently you are already friends with %s."] = "Sembra che tu sia già amico di %s."; From a7af6df962bad0901611d28450a990831fb25680 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Sun, 13 Mar 2011 13:50:44 +0100 Subject: [PATCH 10/17] Fix spaces around t() and tt() --- mod/dfrn_confirm.php | 2 +- mod/dfrn_notify.php | 4 ++-- mod/dfrn_request.php | 2 +- mod/home.php | 2 +- mod/invite.php | 2 +- mod/item.php | 4 ++-- mod/like.php | 2 +- mod/manage.php | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/mod/dfrn_confirm.php b/mod/dfrn_confirm.php index edca629aec..1bf1ba9549 100644 --- a/mod/dfrn_confirm.php +++ b/mod/dfrn_confirm.php @@ -645,7 +645,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) { '$uid' => $newuid ) ); - $res = mail($r[0]['email'], sprintf(t("Connection accepted at %s"), $a->config['sitename']), + $res = mail($r[0]['email'], sprintf( t("Connection accepted at %s") , $a->config['sitename']), $email_tpl, 'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] ); if(!$res) { // pointless throwing an error here and confusing the person at the other end of the wire. diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php index f288e9bebe..3a75123a52 100644 --- a/mod/dfrn_notify.php +++ b/mod/dfrn_notify.php @@ -471,8 +471,8 @@ function dfrn_notify_post(&$a) { '$body' => html_entity_decode(strip_tags(bbcode(stripslashes($datarray['body']))), ENT_QUOTES, 'UTF-8') )); - $res = mail($importer['email'], sprintf(t("%s commented on an item at %s"), $from ,$a->config['sitename']), - $email_tpl,t("From: Administrator@") . $a->get_hostname() ); + $res = mail($importer['email'], sprintf( t("%s commented on an item at %s") , $from ,$a->config['sitename']), + $email_tpl, t("From: Administrator@") . $a->get_hostname() ); break; } } diff --git a/mod/dfrn_request.php b/mod/dfrn_request.php index 5a2f3c2828..3cd8473cf3 100644 --- a/mod/dfrn_request.php +++ b/mod/dfrn_request.php @@ -540,7 +540,7 @@ function dfrn_request_content(&$a) { '$sitename' => $a->config['sitename'] )); $res = mail($r[0]['email'], - t("Introduction received at ") . $a->config['sitename'], + t("Introduction received at ") . $a->config['sitename'], $email, 'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] ); // This is a redundant notification - no point throwing errors if it fails. diff --git a/mod/home.php b/mod/home.php index 4fca1cbc23..225bd294d2 100644 --- a/mod/home.php +++ b/mod/home.php @@ -20,7 +20,7 @@ function home_content(&$a) { if(x($_SESSION,'theme')) unset($_SESSION['theme']); - $o .= '

' . ((x($a->config,'sitename')) ? sprintf(t("Welcome to %s"),$a->config['sitename']) : "" ) . '

'; + $o .= '

' . ((x($a->config,'sitename')) ? sprintf( t("Welcome to %s") ,$a->config['sitename']) : "" ) . '

'; if(file_exists('home.html')) $o .= file_get_contents('home.html'); diff --git a/mod/invite.php b/mod/invite.php index e3662d758b..84fa978ad1 100644 --- a/mod/invite.php +++ b/mod/invite.php @@ -39,7 +39,7 @@ function invite_post(&$a) { } } - notice( sprintf(tt("%d message sent.", "%d messages sent.", $total), $total) . EOL); + notice( sprintf( tt("%d message sent.", "%d messages sent.", $total) , $total) . EOL); return; } diff --git a/mod/item.php b/mod/item.php index 9e03e76cd3..2cdfb0d66b 100644 --- a/mod/item.php +++ b/mod/item.php @@ -419,7 +419,7 @@ function item_post(&$a) { '$body' => strip_tags(bbcode($datarray['body'])) )); - $res = mail($user['email'], sprintf(t("%s commented on your item at %s"),$from,$a->config['sitename']), + $res = mail($user['email'], sprintf( t("%s commented on your item at %s") ,$from,$a->config['sitename']), $email_tpl,"From: " . t("Administrator") . "@" . $a->get_hostname() ); } } @@ -442,7 +442,7 @@ function item_post(&$a) { '$body' => strip_tags(bbcode($datarray['body'])) )); - $res = mail($user['email'], sprintf(t("%s posted on your profile wall at %s"),$from, $a->config['sitename']), + $res = mail($user['email'], sprintf( t("%s posted on your profile wall at %s") ,$from, $a->config['sitename']), $email_tpl,"From: " . t("Administrator@") . "@" . $a->get_hostname() ); } } diff --git a/mod/like.php b/mod/like.php index c07f3097ea..406d6cc007 100644 --- a/mod/like.php +++ b/mod/like.php @@ -148,7 +148,7 @@ EOT; $arr['author-link'] = $contact['url']; $arr['author-avatar'] = $contact['thumb']; $arr['body'] = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]' . ' ' . $bodyverb . ' ' - . '[url=' . $item['author-link'] . ']' . sprintf(t("%s's"),$item['author-name']) . '[/url]' . ' ' + . '[url=' . $item['author-link'] . ']' . sprintf( t("%s's") ,$item['author-name']) . '[/url]' . ' ' . '[url=' . $a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . ']' . $post_type . '[/url]' ; $arr['verb'] = $activity; diff --git a/mod/manage.php b/mod/manage.php index f30a04348c..26f7315c32 100644 --- a/mod/manage.php +++ b/mod/manage.php @@ -34,7 +34,7 @@ function manage_post(&$a) { $_SESSION['page_flags'] = $r[0]['page-flags']; $_SESSION['my_url'] = $a->get_baseurl() . '/profile/' . $r[0]['nickname']; - notice( sprintf(t("Welcome back %s"), $r[0]['username']) . EOL); + notice( sprintf( t("Welcome back %s") , $r[0]['username']) . EOL); $a->user = $r[0]; if(strlen($a->user['timezone'])) { From d6b4940ddda4c9ac5cf4728a77a8bbf0d4c4ddf9 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Sun, 13 Mar 2011 13:51:59 +0100 Subject: [PATCH 11/17] extract.php extract tt(). Updated strings.php --- util/extract.php | 45 +++++++++++---- util/strings.php | 139 +++++++++++++++++++++-------------------------- 2 files changed, 98 insertions(+), 86 deletions(-) diff --git a/util/extract.php b/util/extract.php index 92ec8501ce..90127f3c1b 100644 --- a/util/extract.php +++ b/util/extract.php @@ -10,25 +10,50 @@ $str = file_get_contents($file); $pat = '| t\(([^\)]*)\)|'; + $patt = '| tt\(([^\)]*)\)|'; preg_match_all($pat,$str,$matches); + preg_match_all($patt, $str, $matchestt); + - if(! count($matches)) - continue; - - foreach($matches[1] as $match) { - if(! in_array($match,$arr)) - $arr[] = $match; + if(count($matches)){ + foreach($matches[1] as $match) { + if(! in_array($match,$arr)) + $arr[] = $match; + } + } + if(count($matchestt)){ + foreach($matchestt[1] as $match) { + $matchtkns = preg_split("|[ \t\r\n]*,[ \t\r\n]*|",$match); + if (count($matchtkns)==3 && !in_array($matchtkns,$arr)){ + $arr[] = $matchtkns; + } + } } } $s = 'strings[' . $a . '] = ' . $a . ';' . "\n"; +'; + + foreach($arr as $a) { + if (is_array($a)){ + if(substr($a[1],0,1) == '$') + continue; + $s .= '$a->strings[' . $a[0] . "] = array(\n"; + $s .= "\t0 => ". $a[0]. ",\n"; + $s .= "\t1 => ". $a[1]. ",\n"; + $s .= ");\n"; + } else { + if(substr($a,0,1) == '$') + continue; + $s .= '$a->strings[' . $a . '] = '. $a . ';' . "\n"; + } } $zones = timezone_identifiers_list(); diff --git a/util/strings.php b/util/strings.php index b010cb9fc0..395901b061 100644 --- a/util/strings.php +++ b/util/strings.php @@ -1,4 +1,9 @@ strings['Not Found'] = 'Not Found'; $a->strings['Page not found.' ] = 'Page not found.' ; $a->strings['Permission denied'] = 'Permission denied'; @@ -61,30 +66,6 @@ $a->strings['Birthdays this week:'] = 'Birthdays this week:'; $a->strings["\x28Adjusted for local time\x29"] = "\x28Adjusted for local time\x29"; $a->strings['[today]'] = '[today]'; $a->strings['link to source'] = 'link to source'; -$a->strings['No recipient selected.'] = 'No recipient selected.'; -$a->strings['[no subject]'] = '[no subject]'; -$a->strings['Unable to locate contact information.'] = 'Unable to locate contact information.'; -$a->strings['Wall Photos'] = 'Wall Photos'; -$a->strings['Message sent.'] = 'Message sent.'; -$a->strings['Message could not be sent.'] = 'Message could not be sent.'; -$a->strings['Messages'] = 'Messages'; -$a->strings['Inbox'] = 'Inbox'; -$a->strings['Outbox'] = 'Outbox'; -$a->strings['New Message'] = 'New Message'; -$a->strings['Message deleted.'] = 'Message deleted.'; -$a->strings['Conversation removed.'] = 'Conversation removed.'; -$a->strings['Send Private Message'] = 'Send Private Message'; -$a->strings['To:'] = 'To:'; -$a->strings['Subject:'] = 'Subject:'; -$a->strings['Your message:'] = 'Your message:'; -$a->strings['Upload photo'] = 'Upload photo'; -$a->strings['Insert web link'] = 'Insert web link'; -$a->strings['Please wait'] = 'Please wait'; -$a->strings['No messages.'] = 'No messages.'; -$a->strings['Delete conversation'] = 'Delete conversation'; -$a->strings['Message not available.'] = 'Message not available.'; -$a->strings['Delete message'] = 'Delete message'; -$a->strings['Send Reply'] = 'Send Reply'; $a->strings['Applications'] = 'Applications'; $a->strings["Invite Friends"] = "Invite Friends"; $a->strings['Connect/Follow'] = 'Connect/Follow'; @@ -97,8 +78,10 @@ $a->strings['Failed to update contact record.'] = 'Failed to update contact reco $a->strings['Contact has been '] = 'Contact has been '; $a->strings['blocked'] = 'blocked'; $a->strings['unblocked'] = 'unblocked'; -$a->strings['ignored'] = 'ignored'; -$a->strings['unignored'] = 'unignored'; +$a->strings['Contact has been blocked'] = 'Contact has been blocked'; +$a->strings['Contact has been unblocked'] = 'Contact has been unblocked'; +$a->strings['Contact has been ignored'] = 'Contact has been ignored'; +$a->strings['Contact has been unignored'] = 'Contact has been unignored'; $a->strings['stopped following'] = 'stopped following'; $a->strings['Contact has been removed.'] = 'Contact has been removed.'; $a->strings['Contact not found.'] = 'Contact not found.'; @@ -126,8 +109,7 @@ $a->strings['Show Blocked Connections'] = 'Show Blocked Connections'; $a->strings['Hide Blocked Connections'] = 'Hide Blocked Connections'; $a->strings['Finding: '] = 'Finding: '; $a->strings['Find'] = 'Find'; -$a->strings['Visit '] = 'Visit '; -$a->strings['\'s profile'] = '\'s profile'; +$a->strings['Visit $username\'s profile'] = 'Visit $username\'s profile'; $a->strings['Edit contact'] = 'Edit contact'; $a->strings['Profile not found.'] = 'Profile not found.'; $a->strings['Response from remote site was not understood.'] = 'Response from remote site was not understood.'; @@ -138,43 +120,38 @@ $a->strings["Temporary failure. Please wait and try again."] = "Temporary failur $a->strings["Introduction failed or was revoked."] = "Introduction failed or was revoked."; $a->strings['Unable to set contact photo.'] = 'Unable to set contact photo.'; $a->strings['is now friends with'] = 'is now friends with'; -$a->strings['No user record found for '] = 'No user record found for '; $a->strings['Our site encryption key is apparently messed up.'] = 'Our site encryption key is apparently messed up.'; $a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'Empty site URL was provided or URL could not be decrypted by us.'; $a->strings['Contact record was not found for you on our site.'] = 'Contact record was not found for you on our site.'; $a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'The ID provided by your system is a duplicate on our system. It should work if you try again.'; $a->strings['Unable to set your contact credentials on our system.'] = 'Unable to set your contact credentials on our system.'; $a->strings['Unable to update your contact profile details on our system'] = 'Unable to update your contact profile details on our system'; -$a->strings["Connection accepted at "] = "Connection accepted at "; $a->strings['Administrator'] = 'Administrator'; $a->strings['noreply'] = 'noreply'; -$a->strings[' commented on an item at '] = ' commented on an item at '; -$a->strings[" commented on an item at "] = " commented on an item at "; -$a->strings[' welcomes '] = ' welcomes '; +$a->strings["%s commented on an item at %s"] = "%s commented on an item at %s"; +$a->strings["From: Administrator@"] = "From: Administrator@"; +$a->strings['%s welcomes %s'] = '%s welcomes %s'; $a->strings["This introduction has already been accepted."] = "This introduction has already been accepted."; $a->strings['Profile location is not valid or does not contain profile information.'] = 'Profile location is not valid or does not contain profile information.'; $a->strings['Warning: profile location has no identifiable owner name.'] = 'Warning: profile location has no identifiable owner name.'; $a->strings['Warning: profile location has no profile photo.'] = 'Warning: profile location has no profile photo.'; -$a->strings[' required parameter'] = ' required parameter'; -$a->strings[" was "] = " was "; -$a->strings["s were "] = "s were "; -$a->strings["not found at the given location."] = "not found at the given location."; $a->strings["Introduction complete."] = "Introduction complete."; $a->strings['Unrecoverable protocol error.'] = 'Unrecoverable protocol error.'; $a->strings['Profile unavailable.'] = 'Profile unavailable.'; -$a->strings[' has received too many connection requests today.'] = ' has received too many connection requests today.'; +$a->strings['%s has received too many connection requests today.'] = '%s has received too many connection requests today.'; $a->strings['Spam protection measures have been invoked.'] = 'Spam protection measures have been invoked.'; $a->strings['Friends are advised to please try again in 24 hours.'] = 'Friends are advised to please try again in 24 hours.'; $a->strings["Invalid locator"] = "Invalid locator"; $a->strings["Unable to resolve your name at the provided location."] = "Unable to resolve your name at the provided location."; $a->strings['You have already introduced yourself here.'] = 'You have already introduced yourself here.'; -$a->strings['Apparently you are already friends with .'] = 'Apparently you are already friends with .'; +$a->strings['Apparently you are already friends with %s.'] = 'Apparently you are already friends with %s.'; $a->strings['Invalid profile URL.'] = 'Invalid profile URL.'; $a->strings['Disallowed profile URL.'] = 'Disallowed profile URL.'; $a->strings['Your introduction has been sent.'] = 'Your introduction has been sent.'; $a->strings["Please login to confirm introduction."] = "Please login to confirm introduction."; $a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Incorrect identity currently logged in. Please login to this profile."; $a->strings['[Name Withheld]'] = '[Name Withheld]'; +$a->strings["Introduction received at "] = "Introduction received at "; $a->strings['Friend/Connection Request'] = 'Friend/Connection Request'; $a->strings['Please answer the following:'] = 'Please answer the following:'; $a->strings['Does $name know you?'] = 'Does $name know you?'; @@ -189,11 +166,16 @@ $a->strings["Public \x28insecure\x29 network"] = "Public \x28insecure\x29 networ $a->strings['Your profile address:'] = 'Your profile address:'; $a->strings['Submit Request'] = 'Submit Request'; $a->strings['Cancel'] = 'Cancel'; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d required parameter was not found at the given location", + 1 => "%d required parameters were not found at the given location", +); $a->strings['Global Directory'] = 'Global Directory'; $a->strings['Item not found.'] = 'Item not found.'; $a->strings['Private Message'] = 'Private Message'; $a->strings["I like this \x28toggle\x29"] = "I like this \x28toggle\x29"; $a->strings["I don't like this \x28toggle\x29"] = "I don't like this \x28toggle\x29"; +$a->strings['Please wait'] = 'Please wait'; $a->strings['This is you'] = 'This is you'; $a->strings['Delete'] = 'Delete'; $a->strings['View $name\'s profile'] = 'View $name\'s profile'; @@ -203,8 +185,6 @@ $a->strings['Wall-to-Wall'] = 'Wall-to-Wall'; $a->strings['via Wall-To-Wall:'] = 'via Wall-To-Wall:'; $a->strings['Item has been removed.'] = 'Item has been removed.'; $a->strings['Shared content is covered by the Creative Commons Attribution 3.0 license.'] = 'Shared content is covered by the Creative Commons Attribution 3.0 license.'; -$a->strings['CC: email addresses'] = 'CC: email addresses'; -$a->strings['Example: bob@example.com, mary@example.com'] = 'Example: bob@example.com, mary@example.com'; $a->strings['The profile address specified does not provide adequate information.'] = 'The profile address specified does not provide adequate information.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Limited profile. This person will be unable to receive direct/personal notifications from you.'; $a->strings['Unable to retrieve contact information.'] = 'Unable to retrieve contact information.'; @@ -216,7 +196,7 @@ $a->strings['Group name changed.'] = 'Group name changed.'; $a->strings['Membership list updated.'] = 'Membership list updated.'; $a->strings['Group removed.'] = 'Group removed.'; $a->strings['Unable to remove group.'] = 'Unable to remove group.'; -$a->strings["Welcome to "] = "Welcome to "; +$a->strings["Welcome to %s"] = "Welcome to %s"; $a->strings['Could not create/connect to database.'] = 'Could not create/connect to database.'; $a->strings['Connected to database.'] = 'Connected to database.'; $a->strings['Database import succeeded.'] = 'Database import succeeded.'; @@ -243,38 +223,60 @@ $a->strings['Please check with your site documentation or support people to see $a->strings['If not, you may be required to perform a manual installation. Please see the file "INSTALL.txt" for instructions.'] = 'If not, you may be required to perform a manual installation. Please see the file "INSTALL.txt" for instructions.'; $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.'] = '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.'; $a->strings['Errors encountered creating database tables.'] = 'Errors encountered creating database tables.'; -$a->strings[' : '] = ' : '; -$a->strings['Not a valid email address.'] = 'Not a valid email address.'; -$a->strings['Please join my network on '] = 'Please join my network on '; -$a->strings['Message delivery failed.'] = 'Message delivery failed.'; -$a->strings[' messages sent.'] = ' messages sent.'; +$a->strings['%s : Not a valid email address.'] = '%s : Not a valid email address.'; +$a->strings['%s : Message delivery failed.'] = '%s : Message delivery failed.'; $a->strings['Send invitations'] = 'Send invitations'; $a->strings['Enter email addresses, one per line:'] = 'Enter email addresses, one per line:'; -$a->strings['Please join my social network on '] = 'Please join my social network on '; +$a->strings['Your message:'] = 'Your message:'; $a->strings['To accept this invitation, please visit:'] = 'To accept this invitation, please visit:'; $a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Once you have registered, please connect with me via my profile page at:'; +$a->strings["%d message sent."] = array( + 0 => "%d message sent.", + 1 => "%d messages sent.", +); $a->strings['Unable to locate original post.'] = 'Unable to locate original post.'; $a->strings['Empty post discarded.'] = 'Empty post discarded.'; -$a->strings[" commented on your item at "] = " commented on your item at "; -$a->strings[" posted on your profile wall at "] = " posted on your profile wall at "; +$a->strings['Wall Photos'] = 'Wall Photos'; +$a->strings["%s commented on your item at %s"] = "%s commented on your item at %s"; +$a->strings["Administrator"] = "Administrator"; +$a->strings["%s posted on your profile wall at %s"] = "%s posted on your profile wall at %s"; +$a->strings["Administrator@"] = "Administrator@"; $a->strings['System error. Post not saved.'] = 'System error. Post not saved.'; -$a->strings['This message was sent to you by '] = 'This message was sent to you by '; -$a->strings[', a member of the Friendika social network.'] = ', a member of the Friendika social network.'; $a->strings['You may visit them online at'] = 'You may visit them online at'; $a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Please contact the sender by replying to this post if you do not wish to receive these messages.'; -$a->strings['posted an update.'] = 'posted an update.'; +$a->strings['%s posted an update.'] = '%s posted an update.'; $a->strings['photo'] = 'photo'; $a->strings['status'] = 'status'; $a->strings['likes'] = 'likes'; $a->strings['doesn\'t like'] = 'doesn\'t like'; -$a->strings['\'s'] = '\'s'; +$a->strings["%s's"] = "%s's"; $a->strings['Remote privacy information not available.'] = 'Remote privacy information not available.'; $a->strings['Visible to:'] = 'Visible to:'; -$a->strings['Password reset requested at '] = 'Password reset requested at '; -$a->strings["Welcome back "] = "Welcome back "; +$a->strings["Welcome back %s"] = "Welcome back %s"; $a->strings['Manage Identities and/or Pages'] = 'Manage Identities and/or Pages'; $a->strings["\x28Toggle between different identities or community/group pages which share your account details.\x29"] = "\x28Toggle between different identities or community/group pages which share your account details.\x29"; $a->strings['Select an identity to manage: '] = 'Select an identity to manage: '; +$a->strings['No recipient selected.'] = 'No recipient selected.'; +$a->strings['[no subject]'] = '[no subject]'; +$a->strings['Unable to locate contact information.'] = 'Unable to locate contact information.'; +$a->strings['Message sent.'] = 'Message sent.'; +$a->strings['Message could not be sent.'] = 'Message could not be sent.'; +$a->strings['Messages'] = 'Messages'; +$a->strings['Inbox'] = 'Inbox'; +$a->strings['Outbox'] = 'Outbox'; +$a->strings['New Message'] = 'New Message'; +$a->strings['Message deleted.'] = 'Message deleted.'; +$a->strings['Conversation removed.'] = 'Conversation removed.'; +$a->strings['Send Private Message'] = 'Send Private Message'; +$a->strings['To:'] = 'To:'; +$a->strings['Subject:'] = 'Subject:'; +$a->strings['Upload photo'] = 'Upload photo'; +$a->strings['Insert web link'] = 'Insert web link'; +$a->strings['No messages.'] = 'No messages.'; +$a->strings['Delete conversation'] = 'Delete conversation'; +$a->strings['Message not available.'] = 'Message not available.'; +$a->strings['Delete message'] = 'Delete message'; +$a->strings['Send Reply'] = 'Send Reply'; $a->strings['Normal View'] = 'Normal View'; $a->strings['New Item View'] = 'New Item View'; $a->strings['Share'] = 'Share'; @@ -282,6 +284,8 @@ $a->strings['Insert YouTube video'] = 'Insert YouTube video'; $a->strings['Set your location'] = 'Set your location'; $a->strings['Clear browser location'] = 'Clear browser location'; $a->strings['Permission settings'] = 'Permission settings'; +$a->strings['CC: email addresses'] = 'CC: email addresses'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Example: bob@example.com, mary@example.com'; $a->strings['No such group'] = 'No such group'; $a->strings['Group is empty'] = 'Group is empty'; $a->strings['Group: '] = 'Group: '; @@ -304,6 +308,7 @@ $a->strings['Approve'] = 'Approve'; $a->strings['No notifications.'] = 'No notifications.'; $a->strings['No registrations.'] = 'No registrations.'; $a->strings['Login failed.'] = 'Login failed.'; +$a->strings["Welcome back "] = "Welcome back "; $a->strings['Photo Albums'] = 'Photo Albums'; $a->strings['Contact Photos'] = 'Contact Photos'; $a->strings['Contact information unavailable'] = 'Contact information unavailable'; @@ -336,12 +341,8 @@ $a->strings['Recent Photos'] = 'Recent Photos'; $a->strings['Upload New Photos'] = 'Upload New Photos'; $a->strings['View Album'] = 'View Album'; $a->strings['Image uploaded but image cropping failed.'] = 'Image uploaded but image cropping failed.'; -$a->strings['Image size reduction [175] failed.'] = 'Image size reduction [175] failed.'; -$a->strings['Image size reduction [80] failed.'] = 'Image size reduction [80] failed.'; -$a->strings['Image size reduction [48] failed.'] = 'Image size reduction [48] failed.'; $a->strings['Unable to process image'] = 'Unable to process image'; $a->strings['Image uploaded successfully.'] = 'Image uploaded successfully.'; -$a->strings['Image size reduction [640] failed.'] = 'Image size reduction [640] failed.'; $a->strings['Profile Name is required.'] = 'Profile Name is required.'; $a->strings['Profile updated.'] = 'Profile updated.'; $a->strings['Profile deleted.'] = 'Profile deleted.'; @@ -357,17 +358,16 @@ $a->strings['Please use a shorter name.'] = 'Please use a shorter name.'; $a->strings['Name too short.'] = 'Name too short.'; $a->strings["That doesn\'t appear to be your full \x28First Last\x29 name."] = "That doesn\'t appear to be your full \x28First Last\x29 name."; $a->strings['Your email domain is not among those allowed on this site.'] = 'Your email domain is not among those allowed on this site.'; +$a->strings['Not a valid email address.'] = 'Not a valid email address.'; $a->strings['Cannot use that email.'] = 'Cannot use that email.'; $a->strings['Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.'] = 'Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.'; $a->strings['Nickname is already registered. Please choose another.'] = 'Nickname is already registered. Please choose another.'; $a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'SERIOUS ERROR: Generation of security keys failed.'; $a->strings['An error occurred during registration. Please try again.'] = 'An error occurred during registration. Please try again.'; $a->strings['An error occurred creating your default profile. Please try again.'] = 'An error occurred creating your default profile. Please try again.'; -$a->strings['Registration details for '] = 'Registration details for '; $a->strings['Registration successful. Please check your email for further instructions.'] = 'Registration successful. Please check your email for further instructions.'; $a->strings['Failed to send email message. Here is the message that failed.'] = 'Failed to send email message. Here is the message that failed.'; $a->strings['Your registration can not be processed.'] = 'Your registration can not be processed.'; -$a->strings['Registration request at '] = 'Registration request at '; $a->strings['Your registration is pending approval by the site owner.'] = 'Your registration is pending approval by the site owner.'; $a->strings["You may \x28optionally\x29 fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "You may \x28optionally\x29 fill in this form via OpenID by supplying your OpenID and clicking 'Register'."; $a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'; @@ -380,7 +380,6 @@ $a->strings['Your Email Address: '] = 'Your Email Address: '; $a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'nickname@$sitename\'.'] = 'Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'nickname@$sitename\'.'; $a->strings['Choose a nickname: '] = 'Choose a nickname: '; $a->strings['Please login.'] = 'Please login.'; -$a->strings['Registration revoked for '] = 'Registration revoked for '; $a->strings['Account approved.'] = 'Account approved.'; $a->strings['Remove My Account'] = 'Remove My Account'; $a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'This will completely remove your account. Once this has been done it is not recoverable.'; @@ -509,6 +508,7 @@ $a->strings['Facebook API key is missing.'] = 'Facebook API key is missing.'; $a->strings['Facebook Connect'] = 'Facebook Connect'; $a->strings['Install Facebook post connector'] = 'Install Facebook post connector'; $a->strings['Remove Facebook post connector'] = 'Remove Facebook post connector'; +$a->strings['Post to Facebook by default'] = 'Post to Facebook by default'; $a->strings['Facebook'] = 'Facebook'; $a->strings['Facebook Connector Settings'] = 'Facebook Connector Settings'; $a->strings['Post to Facebook'] = 'Post to Facebook'; @@ -623,9 +623,7 @@ $a->strings['America/Argentina/Jujuy'] = 'America/Argentina/Jujuy'; $a->strings['America/Argentina/La_Rioja'] = 'America/Argentina/La_Rioja'; $a->strings['America/Argentina/Mendoza'] = 'America/Argentina/Mendoza'; $a->strings['America/Argentina/Rio_Gallegos'] = 'America/Argentina/Rio_Gallegos'; -$a->strings['America/Argentina/Salta'] = 'America/Argentina/Salta'; $a->strings['America/Argentina/San_Juan'] = 'America/Argentina/San_Juan'; -$a->strings['America/Argentina/San_Luis'] = 'America/Argentina/San_Luis'; $a->strings['America/Argentina/Tucuman'] = 'America/Argentina/Tucuman'; $a->strings['America/Argentina/Ushuaia'] = 'America/Argentina/Ushuaia'; $a->strings['America/Aruba'] = 'America/Aruba'; @@ -703,9 +701,7 @@ $a->strings['America/Louisville'] = 'America/Louisville'; $a->strings['America/Maceio'] = 'America/Maceio'; $a->strings['America/Managua'] = 'America/Managua'; $a->strings['America/Manaus'] = 'America/Manaus'; -$a->strings['America/Marigot'] = 'America/Marigot'; $a->strings['America/Martinique'] = 'America/Martinique'; -$a->strings['America/Matamoros'] = 'America/Matamoros'; $a->strings['America/Mazatlan'] = 'America/Mazatlan'; $a->strings['America/Mendoza'] = 'America/Mendoza'; $a->strings['America/Menominee'] = 'America/Menominee'; @@ -724,7 +720,6 @@ $a->strings['America/Nome'] = 'America/Nome'; $a->strings['America/Noronha'] = 'America/Noronha'; $a->strings['America/North_Dakota/Center'] = 'America/North_Dakota/Center'; $a->strings['America/North_Dakota/New_Salem'] = 'America/North_Dakota/New_Salem'; -$a->strings['America/Ojinaga'] = 'America/Ojinaga'; $a->strings['America/Panama'] = 'America/Panama'; $a->strings['America/Pangnirtung'] = 'America/Pangnirtung'; $a->strings['America/Paramaribo'] = 'America/Paramaribo'; @@ -741,14 +736,11 @@ $a->strings['America/Regina'] = 'America/Regina'; $a->strings['America/Resolute'] = 'America/Resolute'; $a->strings['America/Rio_Branco'] = 'America/Rio_Branco'; $a->strings['America/Rosario'] = 'America/Rosario'; -$a->strings['America/Santa_Isabel'] = 'America/Santa_Isabel'; -$a->strings['America/Santarem'] = 'America/Santarem'; $a->strings['America/Santiago'] = 'America/Santiago'; $a->strings['America/Santo_Domingo'] = 'America/Santo_Domingo'; $a->strings['America/Sao_Paulo'] = 'America/Sao_Paulo'; $a->strings['America/Scoresbysund'] = 'America/Scoresbysund'; $a->strings['America/Shiprock'] = 'America/Shiprock'; -$a->strings['America/St_Barthelemy'] = 'America/St_Barthelemy'; $a->strings['America/St_Johns'] = 'America/St_Johns'; $a->strings['America/St_Kitts'] = 'America/St_Kitts'; $a->strings['America/St_Lucia'] = 'America/St_Lucia'; @@ -770,7 +762,6 @@ $a->strings['America/Yellowknife'] = 'America/Yellowknife'; $a->strings['Antarctica/Casey'] = 'Antarctica/Casey'; $a->strings['Antarctica/Davis'] = 'Antarctica/Davis'; $a->strings['Antarctica/DumontDUrville'] = 'Antarctica/DumontDUrville'; -$a->strings['Antarctica/Macquarie'] = 'Antarctica/Macquarie'; $a->strings['Antarctica/Mawson'] = 'Antarctica/Mawson'; $a->strings['Antarctica/McMurdo'] = 'Antarctica/McMurdo'; $a->strings['Antarctica/Palmer'] = 'Antarctica/Palmer'; @@ -807,7 +798,6 @@ $a->strings['Asia/Dubai'] = 'Asia/Dubai'; $a->strings['Asia/Dushanbe'] = 'Asia/Dushanbe'; $a->strings['Asia/Gaza'] = 'Asia/Gaza'; $a->strings['Asia/Harbin'] = 'Asia/Harbin'; -$a->strings['Asia/Ho_Chi_Minh'] = 'Asia/Ho_Chi_Minh'; $a->strings['Asia/Hong_Kong'] = 'Asia/Hong_Kong'; $a->strings['Asia/Hovd'] = 'Asia/Hovd'; $a->strings['Asia/Irkutsk'] = 'Asia/Irkutsk'; @@ -819,9 +809,7 @@ $a->strings['Asia/Kabul'] = 'Asia/Kabul'; $a->strings['Asia/Kamchatka'] = 'Asia/Kamchatka'; $a->strings['Asia/Karachi'] = 'Asia/Karachi'; $a->strings['Asia/Kashgar'] = 'Asia/Kashgar'; -$a->strings['Asia/Kathmandu'] = 'Asia/Kathmandu'; $a->strings['Asia/Katmandu'] = 'Asia/Katmandu'; -$a->strings['Asia/Kolkata'] = 'Asia/Kolkata'; $a->strings['Asia/Krasnoyarsk'] = 'Asia/Krasnoyarsk'; $a->strings['Asia/Kuala_Lumpur'] = 'Asia/Kuala_Lumpur'; $a->strings['Asia/Kuching'] = 'Asia/Kuching'; @@ -833,7 +821,6 @@ $a->strings['Asia/Makassar'] = 'Asia/Makassar'; $a->strings['Asia/Manila'] = 'Asia/Manila'; $a->strings['Asia/Muscat'] = 'Asia/Muscat'; $a->strings['Asia/Nicosia'] = 'Asia/Nicosia'; -$a->strings['Asia/Novokuznetsk'] = 'Asia/Novokuznetsk'; $a->strings['Asia/Novosibirsk'] = 'Asia/Novosibirsk'; $a->strings['Asia/Omsk'] = 'Asia/Omsk'; $a->strings['Asia/Oral'] = 'Asia/Oral'; From 7df8e18dd1917de9df359094e0ff486f47e4a08d Mon Sep 17 00:00:00 2001 From: Fabio Comuni Date: Fri, 18 Mar 2011 11:02:42 +0100 Subject: [PATCH 12/17] Update more strings --- boot.php | 14 +- mod/dfrn_notify.php | 2 +- mod/item.php | 2 +- mod/like.php | 12 +- util/messages.po | 2522 +++++++++++++++++++++---------------------- 5 files changed, 1274 insertions(+), 1278 deletions(-) diff --git a/boot.php b/boot.php index 19c6d88786..ac57d1e519 100644 --- a/boot.php +++ b/boot.php @@ -1828,10 +1828,14 @@ if(! function_exists('format_like')) { function format_like($cnt,$arr,$type,$id) { $o = ''; if($cnt == 1) - $o .= $arr[0] . (($type === 'like') ? t(' likes this.') : t(' doesn\'t like this.')) . EOL ; + $o .= (($type === 'like') ? sprintf( t('%s likes this.'), $arr[0]) : sprintf( t('%s doesn\'t like this.'), $arr[0])) . EOL ; else { - $o .= '' - . $cnt . ' ' . t('people') . ' ' . (($type === 'like') ? t('like this.') : t('don\'t like this.')) . EOL ; + $spanatts = 'class="fakelink" onclick="openClose(\'' . $type . 'list-' . $id . '\');"'; + $o .= (($type === 'like') ? + sprintf( t('%2$d people like this.'), $spanatts, $cnt) + : + sprintf( t('%2$d people don\'t like this.'), $spanatts, $cnt) ); + $o .= EOL ; $total = count($arr); if($total >= MAX_LIKERS) $arr = array_slice($arr, 0, MAX_LIKERS - 1); @@ -1839,8 +1843,8 @@ function format_like($cnt,$arr,$type,$id) { $arr[count($arr)-1] = t('and') . ' ' . $arr[count($arr)-1]; $str = implode(', ', $arr); if($total >= MAX_LIKERS) - $str .= t(', and ') . $total - MAX_LIKERS . t(' other people'); - $str .= (($type === 'like') ? t(' like this.') : t(' don\'t like this.')); + $str .= sprintf( t(', and %d other people'), $total - MAX_LIKERS ); + $str = (($type === 'like') ? sprintf( t('%s like this.'), $str) : sprintf( t('%s don\'t like this.'), $str)); $o .= "\t" . ''; } return $o; diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php index 3a75123a52..2cc5a62f3c 100644 --- a/mod/dfrn_notify.php +++ b/mod/dfrn_notify.php @@ -472,7 +472,7 @@ function dfrn_notify_post(&$a) { )); $res = mail($importer['email'], sprintf( t("%s commented on an item at %s") , $from ,$a->config['sitename']), - $email_tpl, t("From: Administrator@") . $a->get_hostname() ); + $email_tpl, "From: ".t("Administrator") . "@". $a->get_hostname() ); break; } } diff --git a/mod/item.php b/mod/item.php index 2cdfb0d66b..da317a8c0d 100644 --- a/mod/item.php +++ b/mod/item.php @@ -443,7 +443,7 @@ function item_post(&$a) { )); $res = mail($user['email'], sprintf( t("%s posted on your profile wall at %s") ,$from, $a->config['sitename']), - $email_tpl,"From: " . t("Administrator@") . "@" . $a->get_hostname() ); + $email_tpl,"From: " . t("Administrator") . "@" . $a->get_hostname() ); } } diff --git a/mod/like.php b/mod/like.php index 406d6cc007..3e3d695292 100644 --- a/mod/like.php +++ b/mod/like.php @@ -124,9 +124,9 @@ function like_content(&$a) { EOT; if($verb === 'like') - $bodyverb = t('likes'); + $bodyverb = t('%1$s likes %2$s\'s %3$s'); if($verb === 'dislike') - $bodyverb = t('doesn\'t like'); + $bodyverb = t('%1$s doesn\'t like %2$s\'s %3$s'); if(! isset($bodyverb)) return; @@ -147,9 +147,11 @@ EOT; $arr['author-name'] = $contact['name']; $arr['author-link'] = $contact['url']; $arr['author-avatar'] = $contact['thumb']; - $arr['body'] = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]' . ' ' . $bodyverb . ' ' - . '[url=' . $item['author-link'] . ']' . sprintf( t("%s's") ,$item['author-name']) . '[/url]' . ' ' - . '[url=' . $a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . ']' . $post_type . '[/url]' ; + + $ulink = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]'; + $alink = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]'; + $plink = '[url=' . $a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . ']' . $post_type . '[/url]'; + $arr['body'] = sprintf( $bodyverb, $ulink, $alink, $plink ); $arr['verb'] = $activity; $arr['object-type'] = $objtype; diff --git a/util/messages.po b/util/messages.po index eac6395dbf..44638bd9ca 100644 --- a/util/messages.po +++ b/util/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 2.1.913\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-11 01:08+0100\n" +"POT-Creation-Date: 2011-03-18 11:02+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,146 +18,493 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: ../../mod/network.php:6 ../../mod/profiles.php:7 ../../mod/profiles.php:224 -#: ../../mod/notifications.php:56 ../../mod/message.php:8 -#: ../../mod/message.php:116 ../../mod/manage.php:75 -#: ../../mod/dfrn_confirm.php:53 ../../mod/wall_upload.php:42 -#: ../../mod/display.php:303 ../../mod/regmod.php:16 ../../mod/photos.php:85 -#: ../../mod/photos.php:772 ../../mod/viewcontacts.php:13 +#: ../../index.php:187 +msgid "Not Found" +msgstr "" + +#: ../../index.php:188 +msgid "Page not found." +msgstr "" + +#: ../../index.php:243 ../../mod/group.php:88 +msgid "Permission denied" +msgstr "" + +#: ../../index.php:244 ../../mod/manage.php:75 ../../mod/wall_upload.php:42 +#: ../../mod/follow.php:8 ../../mod/profile_photo.php:19 +#: ../../mod/profile_photo.php:133 ../../mod/profile_photo.php:139 +#: ../../mod/profile_photo.php:150 ../../mod/regmod.php:16 +#: ../../mod/profiles.php:7 ../../mod/profiles.php:224 #: ../../mod/settings.php:14 ../../mod/settings.php:19 -#: ../../mod/settings.php:206 ../../mod/item.php:57 ../../mod/item.php:616 -#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:133 -#: ../../mod/profile_photo.php:139 ../../mod/profile_photo.php:150 -#: ../../mod/group.php:19 ../../mod/invite.php:13 ../../mod/invite.php:50 -#: ../../mod/register.php:25 ../../mod/follow.php:8 ../../mod/contacts.php:101 -#: ../../addon/facebook/facebook.php:110 ../../index.php:244 +#: ../../mod/settings.php:206 ../../mod/photos.php:85 ../../mod/photos.php:772 +#: ../../mod/display.php:303 ../../mod/invite.php:13 ../../mod/invite.php:50 +#: ../../mod/contacts.php:101 ../../mod/register.php:25 +#: ../../mod/network.php:6 ../../mod/notifications.php:56 +#: ../../mod/item.php:57 ../../mod/item.php:616 ../../mod/message.php:8 +#: ../../mod/message.php:116 ../../mod/dfrn_confirm.php:53 +#: ../../mod/viewcontacts.php:13 ../../mod/group.php:19 +#: ../../addon/facebook/facebook.php:110 msgid "Permission denied." msgstr "" -#: ../../mod/network.php:18 -msgid "Normal View" +#: ../../boot.php:808 +msgid "Create a New Account" msgstr "" -#: ../../mod/network.php:20 -msgid "New Item View" +#: ../../boot.php:809 ../../mod/register.php:443 ../../include/nav.php:61 +msgid "Register" msgstr "" -#: ../../mod/network.php:91 ../../mod/profile.php:151 +#: ../../boot.php:815 +msgid "Nickname or Email address: " +msgstr "" + +#: ../../boot.php:816 +msgid "Password: " +msgstr "" + +#: ../../boot.php:817 ../../boot.php:823 ../../include/nav.php:44 +msgid "Login" +msgstr "" + +#: ../../boot.php:821 +msgid "Nickname/Email/OpenID: " +msgstr "" + +#: ../../boot.php:822 +msgid "Password (if not OpenID): " +msgstr "" + +#: ../../boot.php:825 +msgid "Forgot your password?" +msgstr "" + +#: ../../boot.php:826 +msgid "Password Reset" +msgstr "" + +#: ../../boot.php:837 ../../include/nav.php:38 +msgid "Logout" +msgstr "" + +#: ../../boot.php:1077 +msgid "prev" +msgstr "" + +#: ../../boot.php:1079 +msgid "first" +msgstr "" + +#: ../../boot.php:1108 +msgid "last" +msgstr "" + +#: ../../boot.php:1111 +msgid "next" +msgstr "" + +#: ../../boot.php:1831 +#, php-format +msgid "%s likes this." +msgstr "" + +#: ../../boot.php:1831 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: ../../boot.php:1835 +#, php-format +msgid "%2$d people like this." +msgstr "" + +#: ../../boot.php:1837 +#, php-format +msgid "%2$d people don't like this." +msgstr "" + +#: ../../boot.php:1843 +msgid "and" +msgstr "" + +#: ../../boot.php:1846 +#, php-format +msgid ", and %d other people" +msgstr "" + +#: ../../boot.php:1847 +#, php-format +msgid "%s like this." +msgstr "" + +#: ../../boot.php:1847 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: ../../boot.php:2008 +msgid "No contacts" +msgstr "" + +#: ../../boot.php:2016 ../../mod/contacts.php:303 +#: ../../include/acl_selectors.php:140 ../../include/acl_selectors.php:155 +#: ../../include/nav.php:111 +msgid "Contacts" +msgstr "" + +#: ../../boot.php:2032 ../../mod/viewcontacts.php:17 +msgid "View Contacts" +msgstr "" + +#: ../../boot.php:2049 ../../mod/search.php:17 ../../include/nav.php:67 +msgid "Search" +msgstr "" + +#: ../../boot.php:2204 ../../mod/profile.php:8 +msgid "No profile" +msgstr "" + +#: ../../boot.php:2261 +msgid "Connect" +msgstr "" + +#: ../../boot.php:2271 +msgid "Location:" +msgstr "" + +#: ../../boot.php:2275 +msgid ", " +msgstr "" + +#: ../../boot.php:2283 +msgid "Gender:" +msgstr "" + +#: ../../boot.php:2287 +msgid "Status:" +msgstr "" + +#: ../../boot.php:2289 +msgid "Homepage:" +msgstr "" + +#: ../../boot.php:2380 +msgid "Monday" +msgstr "" + +#: ../../boot.php:2380 +msgid "Tuesday" +msgstr "" + +#: ../../boot.php:2380 +msgid "Wednesday" +msgstr "" + +#: ../../boot.php:2380 +msgid "Thursday" +msgstr "" + +#: ../../boot.php:2380 +msgid "Friday" +msgstr "" + +#: ../../boot.php:2380 +msgid "Saturday" +msgstr "" + +#: ../../boot.php:2380 +msgid "Sunday" +msgstr "" + +#: ../../boot.php:2384 +msgid "January" +msgstr "" + +#: ../../boot.php:2384 +msgid "February" +msgstr "" + +#: ../../boot.php:2384 +msgid "March" +msgstr "" + +#: ../../boot.php:2384 +msgid "April" +msgstr "" + +#: ../../boot.php:2384 +msgid "May" +msgstr "" + +#: ../../boot.php:2384 +msgid "June" +msgstr "" + +#: ../../boot.php:2384 +msgid "July" +msgstr "" + +#: ../../boot.php:2384 +msgid "August" +msgstr "" + +#: ../../boot.php:2384 +msgid "September" +msgstr "" + +#: ../../boot.php:2384 +msgid "October" +msgstr "" + +#: ../../boot.php:2384 +msgid "November" +msgstr "" + +#: ../../boot.php:2384 +msgid "December" +msgstr "" + +#: ../../boot.php:2413 +msgid "Birthdays this week:" +msgstr "" + +#: ../../boot.php:2414 +msgid "(Adjusted for local time)" +msgstr "" + +#: ../../boot.php:2423 +msgid "[today]" +msgstr "" + +#: ../../boot.php:2620 +msgid "link to source" +msgstr "" + +#: ../../mod/manage.php:37 +#, php-format +msgid "Welcome back %s" +msgstr "" + +#: ../../mod/manage.php:87 +msgid "Manage Identities and/or Pages" +msgstr "" + +#: ../../mod/manage.php:90 +msgid "" +"(Toggle between different identities or community/group pages which share " +"your account details.)" +msgstr "" + +#: ../../mod/manage.php:92 +msgid "Select an identity to manage: " +msgstr "" + +#: ../../mod/manage.php:106 ../../mod/photos.php:800 ../../mod/photos.php:857 +#: ../../mod/photos.php:1032 ../../mod/invite.php:64 ../../mod/install.php:109 +#: ../../addon/twitter/twitter.php:156 ../../addon/twitter/twitter.php:175 +#: ../../addon/statusnet/statusnet.php:163 +#: ../../addon/statusnet/statusnet.php:189 +#: ../../addon/statusnet/statusnet.php:207 +#: ../../addon/facebook/facebook.php:151 +#: ../../addon/randplace/randplace.php:179 +msgid "Submit" +msgstr "" + +#: ../../mod/wall_upload.php:56 ../../mod/profile_photo.php:109 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "" + +#: ../../mod/wall_upload.php:65 ../../mod/profile_photo.php:118 +#: ../../mod/photos.php:570 +msgid "Unable to process image." +msgstr "" + +#: ../../mod/wall_upload.php:79 ../../mod/wall_upload.php:88 +#: ../../mod/wall_upload.php:95 ../../mod/item.php:184 +#: ../../mod/message.php:93 +msgid "Wall Photos" +msgstr "" + +#: ../../mod/wall_upload.php:82 ../../mod/profile_photo.php:230 +#: ../../mod/photos.php:588 +msgid "Image upload failed." +msgstr "" + +#: ../../mod/dfrn_notify.php:177 ../../mod/dfrn_notify.php:389 +#: ../../mod/dfrn_notify.php:475 ../../mod/regmod.php:93 +#: ../../mod/register.php:311 ../../mod/register.php:348 +#: ../../mod/dfrn_request.php:545 ../../mod/lostpass.php:39 +#: ../../mod/item.php:423 ../../mod/item.php:446 +#: ../../mod/dfrn_confirm.php:649 ../../include/items.php:1350 +msgid "Administrator" +msgstr "" + +#: ../../mod/dfrn_notify.php:179 +msgid "noreply" +msgstr "" + +#: ../../mod/dfrn_notify.php:237 +msgid "New mail received at " +msgstr "" + +#: ../../mod/dfrn_notify.php:388 ../../mod/dfrn_notify.php:474 +#, php-format +msgid "%s commented on an item at %s" +msgstr "" + +#: ../../mod/profile.php:151 ../../mod/network.php:91 msgid "Share" msgstr "" -#: ../../mod/network.php:92 ../../mod/message.php:185 -#: ../../mod/message.php:319 ../../mod/profile.php:152 +#: ../../mod/profile.php:152 ../../mod/network.php:92 +#: ../../mod/message.php:185 ../../mod/message.php:319 msgid "Upload photo" msgstr "" -#: ../../mod/network.php:93 ../../mod/message.php:186 -#: ../../mod/message.php:320 ../../mod/profile.php:153 +#: ../../mod/profile.php:153 ../../mod/network.php:93 +#: ../../mod/message.php:186 ../../mod/message.php:320 msgid "Insert web link" msgstr "" -#: ../../mod/network.php:94 ../../mod/profile.php:154 +#: ../../mod/profile.php:154 ../../mod/network.php:94 msgid "Insert YouTube video" msgstr "" -#: ../../mod/network.php:95 ../../mod/profile.php:155 +#: ../../mod/profile.php:155 ../../mod/network.php:95 msgid "Set your location" msgstr "" -#: ../../mod/network.php:96 ../../mod/profile.php:156 +#: ../../mod/profile.php:156 ../../mod/network.php:96 msgid "Clear browser location" msgstr "" +#: ../../mod/profile.php:157 ../../mod/profile.php:309 +#: ../../mod/photos.php:1052 ../../mod/display.php:158 #: ../../mod/network.php:97 ../../mod/network.php:367 #: ../../mod/message.php:187 ../../mod/message.php:321 -#: ../../mod/display.php:158 ../../mod/photos.php:1052 -#: ../../mod/profile.php:157 ../../mod/profile.php:309 msgid "Please wait" msgstr "" -#: ../../mod/network.php:98 ../../mod/profile.php:158 +#: ../../mod/profile.php:158 ../../mod/network.php:98 msgid "Permission settings" msgstr "" -#: ../../mod/network.php:104 ../../mod/profile.php:165 +#: ../../mod/profile.php:165 ../../mod/network.php:104 msgid "CC: email addresses" msgstr "" -#: ../../mod/network.php:106 ../../mod/profile.php:167 +#: ../../mod/profile.php:167 ../../mod/network.php:106 msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: ../../mod/network.php:149 -msgid "No such group" -msgstr "" - -#: ../../mod/network.php:160 -msgid "Group is empty" -msgstr "" - -#: ../../mod/network.php:164 -msgid "Group: " -msgstr "" - -#: ../../mod/network.php:272 ../../mod/network.php:434 -#: ../../mod/display.php:258 ../../mod/profile.php:382 -#: ../../mod/search.php:116 -msgid "View $name's profile" -msgstr "" - -#: ../../mod/network.php:287 ../../mod/search.php:131 -msgid "View in context" -msgstr "" - -#: ../../mod/network.php:321 ../../mod/display.php:149 -#: ../../mod/photos.php:935 ../../mod/profile.php:300 +#: ../../mod/profile.php:300 ../../mod/photos.php:935 +#: ../../mod/display.php:149 ../../mod/network.php:321 msgid "Private Message" msgstr "" -#: ../../mod/network.php:365 ../../mod/display.php:156 -#: ../../mod/photos.php:1050 ../../mod/profile.php:307 +#: ../../mod/profile.php:307 ../../mod/photos.php:1050 +#: ../../mod/display.php:156 ../../mod/network.php:365 msgid "I like this (toggle)" msgstr "" -#: ../../mod/network.php:366 ../../mod/display.php:157 -#: ../../mod/photos.php:1051 ../../mod/profile.php:308 +#: ../../mod/profile.php:308 ../../mod/photos.php:1051 +#: ../../mod/display.php:157 ../../mod/network.php:366 msgid "I don't like this (toggle)" msgstr "" -#: ../../mod/network.php:380 ../../mod/display.php:170 -#: ../../mod/photos.php:1071 ../../mod/photos.php:1111 -#: ../../mod/photos.php:1140 ../../mod/profile.php:321 +#: ../../mod/profile.php:321 ../../mod/photos.php:1071 +#: ../../mod/photos.php:1111 ../../mod/photos.php:1140 +#: ../../mod/display.php:170 ../../mod/network.php:380 msgid "This is you" msgstr "" -#: ../../mod/network.php:386 ../../mod/display.php:234 -#: ../../mod/photos.php:1168 ../../mod/profile.php:361 ../../mod/group.php:137 +#: ../../mod/profile.php:361 ../../mod/photos.php:1168 +#: ../../mod/display.php:234 ../../mod/network.php:386 ../../mod/group.php:137 msgid "Delete" msgstr "" -#: ../../mod/network.php:435 ../../mod/display.php:259 -msgid "View $owner_name's profile" +#: ../../mod/profile.php:382 ../../mod/search.php:116 +#: ../../mod/display.php:258 ../../mod/network.php:272 +#: ../../mod/network.php:434 +msgid "View $name's profile" msgstr "" -#: ../../mod/network.php:436 ../../mod/display.php:260 -msgid "to" -msgstr "" - -#: ../../mod/network.php:437 ../../mod/display.php:261 -msgid "Wall-to-Wall" -msgstr "" - -#: ../../mod/network.php:438 ../../mod/display.php:262 -msgid "via Wall-To-Wall:" -msgstr "" - -#: ../../mod/network.php:471 ../../mod/display.php:312 -#: ../../mod/profile.php:414 ../../mod/register.php:422 +#: ../../mod/profile.php:414 ../../mod/display.php:312 +#: ../../mod/register.php:422 ../../mod/network.php:471 msgid "" "Shared content is covered by the Creative Commons Attribution 3.0 license." msgstr "" +#: ../../mod/follow.php:167 +msgid "The profile address specified does not provide adequate information." +msgstr "" + +#: ../../mod/follow.php:173 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "" + +#: ../../mod/follow.php:224 +msgid "Unable to retrieve contact information." +msgstr "" + +#: ../../mod/follow.php:270 +msgid "following" +msgstr "" + +#: ../../mod/profile_photo.php:28 +msgid "Image uploaded but image cropping failed." +msgstr "" + +#: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65 +#: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:155 +#: ../../mod/profile_photo.php:225 ../../mod/profile_photo.php:234 +#: ../../mod/photos.php:106 ../../mod/photos.php:530 ../../mod/photos.php:849 +#: ../../mod/photos.php:864 ../../mod/register.php:267 +#: ../../mod/register.php:274 ../../mod/register.php:281 +msgid "Profile Photos" +msgstr "" + +#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68 +#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:237 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "" + +#: ../../mod/profile_photo.php:95 +msgid "Unable to process image" +msgstr "" + +#: ../../mod/profile_photo.php:228 +msgid "Image uploaded successfully." +msgstr "" + +#: ../../mod/home.php:23 +#, php-format +msgid "Welcome to %s" +msgstr "" + +#: ../../mod/regmod.php:10 +msgid "Please login." +msgstr "" + +#: ../../mod/regmod.php:54 +#, php-format +msgid "Registration revoked for %s" +msgstr "" + +#: ../../mod/regmod.php:92 ../../mod/register.php:310 +#, php-format +msgid "Registration details for %s" +msgstr "" + +#: ../../mod/regmod.php:96 +msgid "Account approved." +msgstr "" + #: ../../mod/profiles.php:21 ../../mod/profiles.php:234 #: ../../mod/profiles.php:339 ../../mod/dfrn_confirm.php:62 msgid "Profile not found." @@ -201,499 +548,72 @@ msgstr "" msgid "Profile Image" msgstr "" -#: ../../mod/lostpass.php:38 -#, php-format -msgid "Password reset requested at %s" +#: ../../mod/settings.php:37 +msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../mod/lostpass.php:39 ../../mod/dfrn_confirm.php:649 -#: ../../mod/dfrn_notify.php:177 ../../mod/dfrn_notify.php:389 -#: ../../mod/regmod.php:93 ../../mod/item.php:423 ../../mod/register.php:311 -#: ../../mod/register.php:348 ../../mod/dfrn_request.php:545 -#: ../../include/items.php:1350 -msgid "Administrator" +#: ../../mod/settings.php:42 +msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../mod/notifications.php:28 -msgid "Invalid request identifier." +#: ../../mod/settings.php:53 +msgid "Password changed." msgstr "" -#: ../../mod/notifications.php:31 ../../mod/notifications.php:134 -msgid "Discard" +#: ../../mod/settings.php:55 +msgid "Password update failed. Please try again." msgstr "" -#: ../../mod/notifications.php:41 ../../mod/notifications.php:133 -msgid "Ignore" +#: ../../mod/settings.php:95 +msgid " Please use a shorter name." msgstr "" -#: ../../mod/notifications.php:72 -msgid "Show Ignored Requests" +#: ../../mod/settings.php:97 +msgid " Name too short." msgstr "" -#: ../../mod/notifications.php:72 -msgid "Hide Ignored Requests" +#: ../../mod/settings.php:103 +msgid " Not valid email." msgstr "" -#: ../../mod/notifications.php:105 -msgid "Claims to be known to you: " +#: ../../mod/settings.php:105 +msgid " Cannot change to that email." msgstr "" -#: ../../mod/notifications.php:105 -msgid "yes" +#: ../../mod/settings.php:161 +msgid "Settings updated." msgstr "" -#: ../../mod/notifications.php:105 -msgid "no" +#: ../../mod/settings.php:211 +msgid "Plugin Settings" msgstr "" -#: ../../mod/notifications.php:111 -msgid "Approve as: " +#: ../../mod/settings.php:212 +msgid "Account Settings" msgstr "" -#: ../../mod/notifications.php:112 -msgid "Friend" +#: ../../mod/settings.php:218 +msgid "No Plugin settings configured" msgstr "" -#: ../../mod/notifications.php:113 -msgid "Fan/Admirer" +#: ../../mod/settings.php:263 +msgid "OpenID: " msgstr "" -#: ../../mod/notifications.php:120 -msgid "Notification type: " +#: ../../mod/settings.php:263 +msgid " (Optional) Allow this OpenID to login to this account." msgstr "" -#: ../../mod/notifications.php:121 -msgid "Friend/Connect Request" +#: ../../mod/settings.php:295 +msgid "Profile is not published." msgstr "" -#: ../../mod/notifications.php:121 -msgid "New Follower" +#: ../../mod/settings.php:352 +msgid "Default Post Permissions" msgstr "" -#: ../../mod/notifications.php:131 -msgid "Approve" -msgstr "" - -#: ../../mod/notifications.php:140 -msgid "No notifications." -msgstr "" - -#: ../../mod/notifications.php:164 -msgid "No registrations." -msgstr "" - -#: ../../mod/install.php:30 -msgid "Could not create/connect to database." -msgstr "" - -#: ../../mod/install.php:35 -msgid "Connected to database." -msgstr "" - -#: ../../mod/install.php:66 -msgid "Database import succeeded." -msgstr "" - -#: ../../mod/install.php:67 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -msgstr "" - -#: ../../mod/install.php:68 ../../mod/install.php:75 ../../mod/install.php:175 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "" - -#: ../../mod/install.php:73 -msgid "Database import failed." -msgstr "" - -#: ../../mod/install.php:74 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "" - -#: ../../mod/install.php:84 -msgid "Welcome to Friendika." -msgstr "" - -#: ../../mod/install.php:109 ../../mod/manage.php:106 ../../mod/photos.php:800 -#: ../../mod/photos.php:857 ../../mod/photos.php:1032 ../../mod/invite.php:64 -#: ../../addon/facebook/facebook.php:151 -#: ../../addon/randplace/randplace.php:179 ../../addon/twitter/twitter.php:156 -#: ../../addon/twitter/twitter.php:175 ../../addon/statusnet/statusnet.php:163 -#: ../../addon/statusnet/statusnet.php:189 -#: ../../addon/statusnet/statusnet.php:207 -msgid "Submit" -msgstr "" - -#: ../../mod/install.php:124 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" - -#: ../../mod/install.php:125 -msgid "" -"This is required. Please adjust the configuration file .htconfig.php " -"accordingly." -msgstr "" - -#: ../../mod/install.php:132 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" - -#: ../../mod/install.php:133 -msgid "This is required for message delivery to work." -msgstr "" - -#: ../../mod/install.php:155 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: ../../mod/install.php:156 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." -msgstr "" - -#: ../../mod/install.php:165 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" - -#: ../../mod/install.php:167 -msgid "Error: libCURL PHP module required but not installed." -msgstr "" - -#: ../../mod/install.php:169 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" - -#: ../../mod/install.php:171 -msgid "Error: openssl PHP module required but not installed." -msgstr "" - -#: ../../mod/install.php:173 -msgid "Error: mysqli PHP module required but not installed." -msgstr "" - -#: ../../mod/install.php:184 -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 "" - -#: ../../mod/install.php:185 -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 "" - -#: ../../mod/install.php:186 -msgid "" -"Please check with your site documentation or support people to see if this " -"situation can be corrected." -msgstr "" - -#: ../../mod/install.php:187 -msgid "" -"If not, you may be required to perform a manual installation. Please see the " -"file \"INSTALL.txt\" for instructions." -msgstr "" - -#: ../../mod/install.php:196 -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 "" - -#: ../../mod/install.php:211 -msgid "Errors encountered creating database tables." -msgstr "" - -#: ../../mod/message.php:18 -msgid "No recipient selected." -msgstr "" - -#: ../../mod/message.php:23 -msgid "[no subject]" -msgstr "" - -#: ../../mod/message.php:34 -msgid "Unable to locate contact information." -msgstr "" - -#: ../../mod/message.php:93 ../../mod/wall_upload.php:79 -#: ../../mod/wall_upload.php:88 ../../mod/wall_upload.php:95 -#: ../../mod/item.php:184 -msgid "Wall Photos" -msgstr "" - -#: ../../mod/message.php:102 -msgid "Message sent." -msgstr "" - -#: ../../mod/message.php:105 -msgid "Message could not be sent." -msgstr "" - -#: ../../mod/message.php:125 ../../include/nav.php:100 -msgid "Messages" -msgstr "" - -#: ../../mod/message.php:126 -msgid "Inbox" -msgstr "" - -#: ../../mod/message.php:127 -msgid "Outbox" -msgstr "" - -#: ../../mod/message.php:128 -msgid "New Message" -msgstr "" - -#: ../../mod/message.php:142 -msgid "Message deleted." -msgstr "" - -#: ../../mod/message.php:158 -msgid "Conversation removed." -msgstr "" - -#: ../../mod/message.php:177 -msgid "Send Private Message" -msgstr "" - -#: ../../mod/message.php:178 ../../mod/message.php:312 -msgid "To:" -msgstr "" - -#: ../../mod/message.php:179 ../../mod/message.php:313 -msgid "Subject:" -msgstr "" - -#: ../../mod/message.php:182 ../../mod/message.php:316 ../../mod/invite.php:59 -msgid "Your message:" -msgstr "" - -#: ../../mod/message.php:221 -msgid "No messages." -msgstr "" - -#: ../../mod/message.php:234 -msgid "Delete conversation" -msgstr "" - -#: ../../mod/message.php:264 -msgid "Message not available." -msgstr "" - -#: ../../mod/message.php:301 -msgid "Delete message" -msgstr "" - -#: ../../mod/message.php:311 -msgid "Send Reply" -msgstr "" - -#: ../../mod/directory.php:32 -msgid "Global Directory" -msgstr "" - -#: ../../mod/directory.php:38 ../../mod/contacts.php:307 -msgid "Finding: " -msgstr "" - -#: ../../mod/manage.php:37 -#, php-format -msgid "Welcome back %s" -msgstr "" - -#: ../../mod/manage.php:87 -msgid "Manage Identities and/or Pages" -msgstr "" - -#: ../../mod/manage.php:90 -msgid "" -"(Toggle between different identities or community/group pages which share " -"your account details.)" -msgstr "" - -#: ../../mod/manage.php:92 -msgid "Select an identity to manage: " -msgstr "" - -#: ../../mod/dfrn_poll.php:78 ../../mod/dfrn_poll.php:392 -#, php-format -msgid "%s welcomes %s" -msgstr "" - -#: ../../mod/dfrn_confirm.php:114 ../../mod/contacts.php:209 -msgid "Contact not found." -msgstr "" - -#: ../../mod/dfrn_confirm.php:231 -msgid "Response from remote site was not understood." -msgstr "" - -#: ../../mod/dfrn_confirm.php:240 -msgid "Unexpected response from remote site: " -msgstr "" - -#: ../../mod/dfrn_confirm.php:248 -msgid "Confirmation completed successfully." -msgstr "" - -#: ../../mod/dfrn_confirm.php:250 ../../mod/dfrn_confirm.php:264 -#: ../../mod/dfrn_confirm.php:271 -msgid "Remote site reported: " -msgstr "" - -#: ../../mod/dfrn_confirm.php:262 -msgid "Temporary failure. Please wait and try again." -msgstr "" - -#: ../../mod/dfrn_confirm.php:269 -msgid "Introduction failed or was revoked." -msgstr "" - -#: ../../mod/dfrn_confirm.php:387 -msgid "Unable to set contact photo." -msgstr "" - -#: ../../mod/dfrn_confirm.php:426 -msgid "is now friends with" -msgstr "" - -#: ../../mod/dfrn_confirm.php:494 -#, php-format -msgid "No user record found for '%s' " -msgstr "" - -#: ../../mod/dfrn_confirm.php:504 -msgid "Our site encryption key is apparently messed up." -msgstr "" - -#: ../../mod/dfrn_confirm.php:515 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "" - -#: ../../mod/dfrn_confirm.php:527 -msgid "Contact record was not found for you on our site." -msgstr "" - -#: ../../mod/dfrn_confirm.php:555 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "" - -#: ../../mod/dfrn_confirm.php:566 -msgid "Unable to set your contact credentials on our system." -msgstr "" - -#: ../../mod/dfrn_confirm.php:619 -msgid "Unable to update your contact profile details on our system" -msgstr "" - -#: ../../mod/dfrn_confirm.php:648 -#, php-format -msgid "Connection accepted at %s" -msgstr "" - -#: ../../mod/wall_upload.php:56 ../../mod/profile_photo.php:109 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "" - -#: ../../mod/wall_upload.php:65 ../../mod/photos.php:570 -#: ../../mod/profile_photo.php:118 -msgid "Unable to process image." -msgstr "" - -#: ../../mod/wall_upload.php:82 ../../mod/photos.php:588 -#: ../../mod/profile_photo.php:230 -msgid "Image upload failed." -msgstr "" - -#: ../../mod/display.php:15 ../../mod/display.php:307 ../../mod/item.php:546 -msgid "Item not found." -msgstr "" - -#: ../../mod/display.php:300 -msgid "Item has been removed." -msgstr "" - -#: ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "" - -#: ../../mod/lockview.php:43 -msgid "Visible to:" -msgstr "" - -#: ../../mod/dfrn_notify.php:179 -msgid "noreply" -msgstr "" - -#: ../../mod/dfrn_notify.php:237 -msgid "New mail received at " -msgstr "" - -#: ../../mod/dfrn_notify.php:388 ../../mod/dfrn_notify.php:474 -#, php-format -msgid "%s commented on an item at %s" -msgstr "" - -#: ../../mod/dfrn_notify.php:475 -msgid "From: Administrator@" -msgstr "" - -#: ../../mod/removeme.php:42 ../../mod/removeme.php:45 -msgid "Remove My Account" -msgstr "" - -#: ../../mod/removeme.php:43 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "" - -#: ../../mod/removeme.php:44 -msgid "Please enter your password for verification:" -msgstr "" - -#: ../../mod/home.php:23 -#, php-format -msgid "Welcome to %s" -msgstr "" - -#: ../../mod/regmod.php:10 -msgid "Please login." -msgstr "" - -#: ../../mod/regmod.php:54 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - -#: ../../mod/regmod.php:92 ../../mod/register.php:310 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: ../../mod/regmod.php:96 -msgid "Account approved." -msgstr "" - -#: ../../mod/apps.php:6 -msgid "Applications" +#: ../../mod/search.php:131 ../../mod/network.php:287 +msgid "View in context" msgstr "" #: ../../mod/photos.php:30 @@ -713,15 +633,6 @@ msgstr "" msgid "Contact information unavailable" msgstr "" -#: ../../mod/photos.php:106 ../../mod/photos.php:530 ../../mod/photos.php:849 -#: ../../mod/photos.php:864 ../../mod/profile_photo.php:58 -#: ../../mod/profile_photo.php:65 ../../mod/profile_photo.php:72 -#: ../../mod/profile_photo.php:155 ../../mod/profile_photo.php:225 -#: ../../mod/profile_photo.php:234 ../../mod/register.php:267 -#: ../../mod/register.php:274 ../../mod/register.php:281 -msgid "Profile Photos" -msgstr "" - #: ../../mod/photos.php:116 msgid "Album not found." msgstr "" @@ -830,206 +741,28 @@ msgstr "" msgid "View Album" msgstr "" -#: ../../mod/profile.php:8 ../../boot.php:2200 -msgid "No profile" +#: ../../mod/display.php:15 ../../mod/display.php:307 ../../mod/item.php:546 +msgid "Item not found." msgstr "" -#: ../../mod/viewcontacts.php:17 ../../boot.php:2028 -msgid "View Contacts" +#: ../../mod/display.php:259 ../../mod/network.php:435 +msgid "View $owner_name's profile" msgstr "" -#: ../../mod/viewcontacts.php:32 -msgid "No contacts." +#: ../../mod/display.php:260 ../../mod/network.php:436 +msgid "to" msgstr "" -#: ../../mod/viewcontacts.php:44 ../../mod/contacts.php:368 -msgid "Visit $username's profile" +#: ../../mod/display.php:261 ../../mod/network.php:437 +msgid "Wall-to-Wall" msgstr "" -#: ../../mod/settings.php:37 -msgid "Passwords do not match. Password unchanged." +#: ../../mod/display.php:262 ../../mod/network.php:438 +msgid "via Wall-To-Wall:" msgstr "" -#: ../../mod/settings.php:42 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" - -#: ../../mod/settings.php:53 -msgid "Password changed." -msgstr "" - -#: ../../mod/settings.php:55 -msgid "Password update failed. Please try again." -msgstr "" - -#: ../../mod/settings.php:95 -msgid " Please use a shorter name." -msgstr "" - -#: ../../mod/settings.php:97 -msgid " Name too short." -msgstr "" - -#: ../../mod/settings.php:103 -msgid " Not valid email." -msgstr "" - -#: ../../mod/settings.php:105 -msgid " Cannot change to that email." -msgstr "" - -#: ../../mod/settings.php:161 -msgid "Settings updated." -msgstr "" - -#: ../../mod/settings.php:211 -msgid "Plugin Settings" -msgstr "" - -#: ../../mod/settings.php:212 -msgid "Account Settings" -msgstr "" - -#: ../../mod/settings.php:218 -msgid "No Plugin settings configured" -msgstr "" - -#: ../../mod/settings.php:263 -msgid "OpenID: " -msgstr "" - -#: ../../mod/settings.php:263 -msgid " (Optional) Allow this OpenID to login to this account." -msgstr "" - -#: ../../mod/settings.php:295 -msgid "Profile is not published." -msgstr "" - -#: ../../mod/settings.php:352 -msgid "Default Post Permissions" -msgstr "" - -#: ../../mod/item.php:37 -msgid "Unable to locate original post." -msgstr "" - -#: ../../mod/item.php:98 -msgid "Empty post discarded." -msgstr "" - -#: ../../mod/item.php:422 -#, php-format -msgid "%s commented on your item at %s" -msgstr "" - -#: ../../mod/item.php:445 -#, php-format -msgid "%s posted on your profile wall at %s" -msgstr "" - -#: ../../mod/item.php:446 -msgid "Administrator@" -msgstr "" - -#: ../../mod/item.php:471 -msgid "System error. Post not saved." -msgstr "" - -#: ../../mod/item.php:489 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendika social network." -msgstr "" - -#: ../../mod/item.php:491 -msgid "You may visit them online at" -msgstr "" - -#: ../../mod/item.php:493 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "" - -#: ../../mod/item.php:495 -#, php-format -msgid "%s posted an update." -msgstr "" - -#: ../../mod/search.php:17 ../../include/nav.php:67 ../../boot.php:2045 -msgid "Search" -msgstr "" - -#: ../../mod/profile_photo.php:28 -msgid "Image uploaded but image cropping failed." -msgstr "" - -#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68 -#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:237 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "" - -#: ../../mod/profile_photo.php:95 -msgid "Unable to process image" -msgstr "" - -#: ../../mod/profile_photo.php:228 -msgid "Image uploaded successfully." -msgstr "" - -#: ../../mod/group.php:27 -msgid "Group created." -msgstr "" - -#: ../../mod/group.php:33 -msgid "Could not create group." -msgstr "" - -#: ../../mod/group.php:43 ../../mod/group.php:123 -msgid "Group not found." -msgstr "" - -#: ../../mod/group.php:56 -msgid "Group name changed." -msgstr "" - -#: ../../mod/group.php:79 -msgid "Membership list updated." -msgstr "" - -#: ../../mod/group.php:88 ../../index.php:243 -msgid "Permission denied" -msgstr "" - -#: ../../mod/group.php:107 -msgid "Group removed." -msgstr "" - -#: ../../mod/group.php:109 -msgid "Unable to remove group." -msgstr "" - -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 -#: ../../mod/dfrn_request.php:628 ../../addon/js_upload/js_upload.php:41 -msgid "Cancel" -msgstr "" - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "" - -#: ../../mod/tagrm.php:93 -msgid "Remove" +#: ../../mod/display.php:300 +msgid "Item has been removed." msgstr "" #: ../../mod/invite.php:28 @@ -1062,6 +795,10 @@ msgstr "" msgid "Enter email addresses, one per line:" msgstr "" +#: ../../mod/invite.php:59 ../../mod/message.php:182 ../../mod/message.php:316 +msgid "Your message:" +msgstr "" + #: ../../mod/invite.php:60 #, php-format msgid "Please join my social network on %s" @@ -1076,6 +813,178 @@ msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "" +#: ../../mod/contacts.php:12 +msgid "Invite Friends" +msgstr "" + +#: ../../mod/contacts.php:16 +msgid "Connect/Follow" +msgstr "" + +#: ../../mod/contacts.php:17 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "" + +#: ../../mod/contacts.php:18 +msgid "Follow" +msgstr "" + +#: ../../mod/contacts.php:38 ../../mod/contacts.php:119 +msgid "Could not access contact record." +msgstr "" + +#: ../../mod/contacts.php:52 +msgid "Could not locate selected profile." +msgstr "" + +#: ../../mod/contacts.php:83 +msgid "Contact updated." +msgstr "" + +#: ../../mod/contacts.php:85 ../../mod/dfrn_request.php:402 +msgid "Failed to update contact record." +msgstr "" + +#: ../../mod/contacts.php:141 +msgid "Contact has been blocked" +msgstr "" + +#: ../../mod/contacts.php:141 +msgid "Contact has been unblocked" +msgstr "" + +#: ../../mod/contacts.php:155 +msgid "Contact has been ignored" +msgstr "" + +#: ../../mod/contacts.php:155 +msgid "Contact has been unignored" +msgstr "" + +#: ../../mod/contacts.php:176 +msgid "stopped following" +msgstr "" + +#: ../../mod/contacts.php:195 +msgid "Contact has been removed." +msgstr "" + +#: ../../mod/contacts.php:209 ../../mod/dfrn_confirm.php:114 +msgid "Contact not found." +msgstr "" + +#: ../../mod/contacts.php:223 ../../mod/contacts.php:344 +msgid "Mutual Friendship" +msgstr "" + +#: ../../mod/contacts.php:227 ../../mod/contacts.php:348 +msgid "is a fan of yours" +msgstr "" + +#: ../../mod/contacts.php:232 ../../mod/contacts.php:352 +msgid "you are a fan of" +msgstr "" + +#: ../../mod/contacts.php:248 +msgid "Never" +msgstr "" + +#: ../../mod/contacts.php:252 +msgid "(Update was successful)" +msgstr "" + +#: ../../mod/contacts.php:252 +msgid "(Update was not successful)" +msgstr "" + +#: ../../mod/contacts.php:255 +msgid "Contact Editor" +msgstr "" + +#: ../../mod/contacts.php:256 +msgid "Visit $name's profile" +msgstr "" + +#: ../../mod/contacts.php:257 +msgid "Block/Unblock contact" +msgstr "" + +#: ../../mod/contacts.php:258 +msgid "Ignore contact" +msgstr "" + +#: ../../mod/contacts.php:259 +msgid "Delete contact" +msgstr "" + +#: ../../mod/contacts.php:261 +msgid "Last updated: " +msgstr "" + +#: ../../mod/contacts.php:262 +msgid "Update public posts: " +msgstr "" + +#: ../../mod/contacts.php:264 +msgid "Update now" +msgstr "" + +#: ../../mod/contacts.php:267 +msgid "Unblock this contact" +msgstr "" + +#: ../../mod/contacts.php:267 +msgid "Block this contact" +msgstr "" + +#: ../../mod/contacts.php:268 +msgid "Unignore this contact" +msgstr "" + +#: ../../mod/contacts.php:268 +msgid "Ignore this contact" +msgstr "" + +#: ../../mod/contacts.php:271 +msgid "Currently blocked" +msgstr "" + +#: ../../mod/contacts.php:272 +msgid "Currently ignored" +msgstr "" + +#: ../../mod/contacts.php:305 +msgid "Show Blocked Connections" +msgstr "" + +#: ../../mod/contacts.php:305 +msgid "Hide Blocked Connections" +msgstr "" + +#: ../../mod/contacts.php:307 ../../mod/directory.php:38 +msgid "Finding: " +msgstr "" + +#: ../../mod/contacts.php:308 +msgid "Find" +msgstr "" + +#: ../../mod/contacts.php:368 ../../mod/viewcontacts.php:44 +msgid "Visit $username's profile" +msgstr "" + +#: ../../mod/contacts.php:369 +msgid "Edit contact" +msgstr "" + +#: ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "" + +#: ../../mod/lockview.php:43 +msgid "Visible to:" +msgstr "" + #: ../../mod/register.php:47 msgid "Invalid OpenID url" msgstr "" @@ -1209,52 +1118,216 @@ msgstr "" msgid "Choose a nickname: " msgstr "" -#: ../../mod/register.php:443 ../../include/nav.php:61 ../../boot.php:809 -msgid "Register" +#: ../../mod/install.php:30 +msgid "Could not create/connect to database." msgstr "" -#: ../../mod/openid.php:62 ../../mod/openid.php:109 ../../include/auth.php:105 -#: ../../include/auth.php:130 ../../include/auth.php:183 -msgid "Login failed." +#: ../../mod/install.php:35 +msgid "Connected to database." msgstr "" -#: ../../mod/openid.php:73 ../../include/auth.php:194 -msgid "Welcome back " +#: ../../mod/install.php:66 +msgid "Database import succeeded." msgstr "" -#: ../../mod/like.php:110 -msgid "status" -msgstr "" - -#: ../../mod/like.php:127 -msgid "likes" -msgstr "" - -#: ../../mod/like.php:129 -msgid "doesn't like" -msgstr "" - -#: ../../mod/like.php:151 -#, php-format -msgid "%s's" -msgstr "" - -#: ../../mod/follow.php:167 -msgid "The profile address specified does not provide adequate information." -msgstr "" - -#: ../../mod/follow.php:173 +#: ../../mod/install.php:67 msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../mod/follow.php:224 -msgid "Unable to retrieve contact information." +#: ../../mod/install.php:68 ../../mod/install.php:75 ../../mod/install.php:175 +msgid "Please see the file \"INSTALL.txt\"." msgstr "" -#: ../../mod/follow.php:270 -msgid "following" +#: ../../mod/install.php:73 +msgid "Database import failed." +msgstr "" + +#: ../../mod/install.php:74 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "" + +#: ../../mod/install.php:84 +msgid "Welcome to Friendika." +msgstr "" + +#: ../../mod/install.php:124 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "" + +#: ../../mod/install.php:125 +msgid "" +"This is required. Please adjust the configuration file .htconfig.php " +"accordingly." +msgstr "" + +#: ../../mod/install.php:132 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "" + +#: ../../mod/install.php:133 +msgid "This is required for message delivery to work." +msgstr "" + +#: ../../mod/install.php:155 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: ../../mod/install.php:156 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." +msgstr "" + +#: ../../mod/install.php:165 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" + +#: ../../mod/install.php:167 +msgid "Error: libCURL PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:169 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "" + +#: ../../mod/install.php:171 +msgid "Error: openssl PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:173 +msgid "Error: mysqli PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:184 +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 "" + +#: ../../mod/install.php:185 +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 "" + +#: ../../mod/install.php:186 +msgid "" +"Please check with your site documentation or support people to see if this " +"situation can be corrected." +msgstr "" + +#: ../../mod/install.php:187 +msgid "" +"If not, you may be required to perform a manual installation. Please see the " +"file \"INSTALL.txt\" for instructions." +msgstr "" + +#: ../../mod/install.php:196 +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 "" + +#: ../../mod/install.php:211 +msgid "Errors encountered creating database tables." +msgstr "" + +#: ../../mod/network.php:18 +msgid "Normal View" +msgstr "" + +#: ../../mod/network.php:20 +msgid "New Item View" +msgstr "" + +#: ../../mod/network.php:149 +msgid "No such group" +msgstr "" + +#: ../../mod/network.php:160 +msgid "Group is empty" +msgstr "" + +#: ../../mod/network.php:164 +msgid "Group: " +msgstr "" + +#: ../../mod/notifications.php:28 +msgid "Invalid request identifier." +msgstr "" + +#: ../../mod/notifications.php:31 ../../mod/notifications.php:134 +msgid "Discard" +msgstr "" + +#: ../../mod/notifications.php:41 ../../mod/notifications.php:133 +msgid "Ignore" +msgstr "" + +#: ../../mod/notifications.php:72 +msgid "Show Ignored Requests" +msgstr "" + +#: ../../mod/notifications.php:72 +msgid "Hide Ignored Requests" +msgstr "" + +#: ../../mod/notifications.php:105 +msgid "Claims to be known to you: " +msgstr "" + +#: ../../mod/notifications.php:105 +msgid "yes" +msgstr "" + +#: ../../mod/notifications.php:105 +msgid "no" +msgstr "" + +#: ../../mod/notifications.php:111 +msgid "Approve as: " +msgstr "" + +#: ../../mod/notifications.php:112 +msgid "Friend" +msgstr "" + +#: ../../mod/notifications.php:113 +msgid "Fan/Admirer" +msgstr "" + +#: ../../mod/notifications.php:120 +msgid "Notification type: " +msgstr "" + +#: ../../mod/notifications.php:121 +msgid "Friend/Connect Request" +msgstr "" + +#: ../../mod/notifications.php:121 +msgid "New Follower" +msgstr "" + +#: ../../mod/notifications.php:131 +msgid "Approve" +msgstr "" + +#: ../../mod/notifications.php:140 +msgid "No notifications." +msgstr "" + +#: ../../mod/notifications.php:164 +msgid "No registrations." msgstr "" #: ../../mod/dfrn_request.php:92 @@ -1274,7 +1347,6 @@ msgid "Warning: profile location has no profile photo." msgstr "" #: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:357 -#: ../../test.php:6 #, 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" @@ -1331,10 +1403,6 @@ msgstr "" msgid "Disallowed profile URL." msgstr "" -#: ../../mod/dfrn_request.php:402 ../../mod/contacts.php:85 -msgid "Failed to update contact record." -msgstr "" - #: ../../mod/dfrn_request.php:423 msgid "Your introduction has been sent." msgstr "" @@ -1403,206 +1471,300 @@ msgstr "" msgid "Submit Request" msgstr "" -#: ../../mod/contacts.php:12 -msgid "Invite Friends" +#: ../../mod/dfrn_request.php:628 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../addon/js_upload/js_upload.php:41 +msgid "Cancel" msgstr "" -#: ../../mod/contacts.php:16 -msgid "Connect/Follow" +#: ../../mod/like.php:110 +msgid "status" msgstr "" -#: ../../mod/contacts.php:17 -msgid "Example: bob@example.com, http://example.com/barbara" +#: ../../mod/like.php:127 +#, php-format +msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../mod/contacts.php:18 -msgid "Follow" +#: ../../mod/like.php:129 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../mod/contacts.php:38 ../../mod/contacts.php:119 -msgid "Could not access contact record." +#: ../../mod/lostpass.php:38 +#, php-format +msgid "Password reset requested at %s" msgstr "" -#: ../../mod/contacts.php:52 -msgid "Could not locate selected profile." +#: ../../mod/removeme.php:42 ../../mod/removeme.php:45 +msgid "Remove My Account" msgstr "" -#: ../../mod/contacts.php:83 -msgid "Contact updated." +#: ../../mod/removeme.php:43 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." msgstr "" -#: ../../mod/contacts.php:141 -msgid "Contact has been blocked" +#: ../../mod/removeme.php:44 +msgid "Please enter your password for verification:" msgstr "" -#: ../../mod/contacts.php:141 -msgid "Contact has been unblocked" +#: ../../mod/apps.php:6 +msgid "Applications" msgstr "" -#: ../../mod/contacts.php:155 -msgid "Contact has been ignored" +#: ../../mod/directory.php:32 +msgid "Global Directory" msgstr "" -#: ../../mod/contacts.php:155 -msgid "Contact has been unignored" +#: ../../mod/item.php:37 +msgid "Unable to locate original post." msgstr "" -#: ../../mod/contacts.php:176 -msgid "stopped following" +#: ../../mod/item.php:98 +msgid "Empty post discarded." msgstr "" -#: ../../mod/contacts.php:195 -msgid "Contact has been removed." +#: ../../mod/item.php:422 +#, php-format +msgid "%s commented on your item at %s" msgstr "" -#: ../../mod/contacts.php:223 ../../mod/contacts.php:344 -msgid "Mutual Friendship" +#: ../../mod/item.php:445 +#, php-format +msgid "%s posted on your profile wall at %s" msgstr "" -#: ../../mod/contacts.php:227 ../../mod/contacts.php:348 -msgid "is a fan of yours" +#: ../../mod/item.php:471 +msgid "System error. Post not saved." msgstr "" -#: ../../mod/contacts.php:232 ../../mod/contacts.php:352 -msgid "you are a fan of" +#: ../../mod/item.php:489 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendika social network." msgstr "" -#: ../../mod/contacts.php:248 -msgid "Never" +#: ../../mod/item.php:491 +msgid "You may visit them online at" msgstr "" -#: ../../mod/contacts.php:252 -msgid "(Update was successful)" +#: ../../mod/item.php:493 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." msgstr "" -#: ../../mod/contacts.php:252 -msgid "(Update was not successful)" +#: ../../mod/item.php:495 +#, php-format +msgid "%s posted an update." msgstr "" -#: ../../mod/contacts.php:255 -msgid "Contact Editor" +#: ../../mod/tagrm.php:41 +msgid "Tag removed" msgstr "" -#: ../../mod/contacts.php:256 -msgid "Visit $name's profile" +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" msgstr "" -#: ../../mod/contacts.php:257 -msgid "Block/Unblock contact" +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " msgstr "" -#: ../../mod/contacts.php:258 -msgid "Ignore contact" +#: ../../mod/tagrm.php:93 +msgid "Remove" msgstr "" -#: ../../mod/contacts.php:259 -msgid "Delete contact" +#: ../../mod/message.php:18 +msgid "No recipient selected." msgstr "" -#: ../../mod/contacts.php:261 -msgid "Last updated: " +#: ../../mod/message.php:23 +msgid "[no subject]" msgstr "" -#: ../../mod/contacts.php:262 -msgid "Update public posts: " +#: ../../mod/message.php:34 +msgid "Unable to locate contact information." msgstr "" -#: ../../mod/contacts.php:264 -msgid "Update now" +#: ../../mod/message.php:102 +msgid "Message sent." msgstr "" -#: ../../mod/contacts.php:267 -msgid "Unblock this contact" +#: ../../mod/message.php:105 +msgid "Message could not be sent." msgstr "" -#: ../../mod/contacts.php:267 -msgid "Block this contact" +#: ../../mod/message.php:125 ../../include/nav.php:100 +msgid "Messages" msgstr "" -#: ../../mod/contacts.php:268 -msgid "Unignore this contact" +#: ../../mod/message.php:126 +msgid "Inbox" msgstr "" -#: ../../mod/contacts.php:268 -msgid "Ignore this contact" +#: ../../mod/message.php:127 +msgid "Outbox" msgstr "" -#: ../../mod/contacts.php:271 -msgid "Currently blocked" +#: ../../mod/message.php:128 +msgid "New Message" msgstr "" -#: ../../mod/contacts.php:272 -msgid "Currently ignored" +#: ../../mod/message.php:142 +msgid "Message deleted." msgstr "" -#: ../../mod/contacts.php:303 ../../include/acl_selectors.php:140 -#: ../../include/acl_selectors.php:155 ../../include/nav.php:111 -#: ../../boot.php:2012 -msgid "Contacts" +#: ../../mod/message.php:158 +msgid "Conversation removed." msgstr "" -#: ../../mod/contacts.php:305 -msgid "Show Blocked Connections" +#: ../../mod/message.php:177 +msgid "Send Private Message" msgstr "" -#: ../../mod/contacts.php:305 -msgid "Hide Blocked Connections" +#: ../../mod/message.php:178 ../../mod/message.php:312 +msgid "To:" msgstr "" -#: ../../mod/contacts.php:308 -msgid "Find" +#: ../../mod/message.php:179 ../../mod/message.php:313 +msgid "Subject:" msgstr "" -#: ../../mod/contacts.php:369 -msgid "Edit contact" +#: ../../mod/message.php:221 +msgid "No messages." msgstr "" -#: ../../addon/facebook/facebook.php:116 -msgid "Facebook disabled" +#: ../../mod/message.php:234 +msgid "Delete conversation" msgstr "" -#: ../../addon/facebook/facebook.php:124 -msgid "Facebook API key is missing." +#: ../../mod/message.php:264 +msgid "Message not available." msgstr "" -#: ../../addon/facebook/facebook.php:131 -msgid "Facebook Connect" +#: ../../mod/message.php:301 +msgid "Delete message" msgstr "" -#: ../../addon/facebook/facebook.php:137 -msgid "Install Facebook post connector" +#: ../../mod/message.php:311 +msgid "Send Reply" msgstr "" -#: ../../addon/facebook/facebook.php:144 -msgid "Remove Facebook post connector" +#: ../../mod/dfrn_confirm.php:231 +msgid "Response from remote site was not understood." msgstr "" -#: ../../addon/facebook/facebook.php:150 -msgid "Post to Facebook by default" +#: ../../mod/dfrn_confirm.php:240 +msgid "Unexpected response from remote site: " msgstr "" -#: ../../addon/facebook/facebook.php:174 -msgid "Facebook" +#: ../../mod/dfrn_confirm.php:248 +msgid "Confirmation completed successfully." msgstr "" -#: ../../addon/facebook/facebook.php:175 -msgid "Facebook Connector Settings" +#: ../../mod/dfrn_confirm.php:250 ../../mod/dfrn_confirm.php:264 +#: ../../mod/dfrn_confirm.php:271 +msgid "Remote site reported: " msgstr "" -#: ../../addon/facebook/facebook.php:189 -msgid "Post to Facebook" +#: ../../mod/dfrn_confirm.php:262 +msgid "Temporary failure. Please wait and try again." msgstr "" -#: ../../addon/facebook/facebook.php:230 -msgid "Image: " +#: ../../mod/dfrn_confirm.php:269 +msgid "Introduction failed or was revoked." msgstr "" -#: ../../addon/randplace/randplace.php:171 -msgid "Randplace Settings" +#: ../../mod/dfrn_confirm.php:387 +msgid "Unable to set contact photo." msgstr "" -#: ../../addon/randplace/randplace.php:173 -msgid "Enable Randplace Plugin" +#: ../../mod/dfrn_confirm.php:426 +msgid "is now friends with" +msgstr "" + +#: ../../mod/dfrn_confirm.php:494 +#, php-format +msgid "No user record found for '%s' " +msgstr "" + +#: ../../mod/dfrn_confirm.php:504 +msgid "Our site encryption key is apparently messed up." +msgstr "" + +#: ../../mod/dfrn_confirm.php:515 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "" + +#: ../../mod/dfrn_confirm.php:527 +msgid "Contact record was not found for you on our site." +msgstr "" + +#: ../../mod/dfrn_confirm.php:555 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "" + +#: ../../mod/dfrn_confirm.php:566 +msgid "Unable to set your contact credentials on our system." +msgstr "" + +#: ../../mod/dfrn_confirm.php:619 +msgid "Unable to update your contact profile details on our system" +msgstr "" + +#: ../../mod/dfrn_confirm.php:648 +#, php-format +msgid "Connection accepted at %s" +msgstr "" + +#: ../../mod/openid.php:62 ../../mod/openid.php:109 ../../include/auth.php:105 +#: ../../include/auth.php:130 ../../include/auth.php:183 +msgid "Login failed." +msgstr "" + +#: ../../mod/openid.php:73 ../../include/auth.php:194 +msgid "Welcome back " +msgstr "" + +#: ../../mod/dfrn_poll.php:78 ../../mod/dfrn_poll.php:392 +#, php-format +msgid "%s welcomes %s" +msgstr "" + +#: ../../mod/viewcontacts.php:32 +msgid "No contacts." +msgstr "" + +#: ../../mod/group.php:27 +msgid "Group created." +msgstr "" + +#: ../../mod/group.php:33 +msgid "Could not create group." +msgstr "" + +#: ../../mod/group.php:43 ../../mod/group.php:123 +msgid "Group not found." +msgstr "" + +#: ../../mod/group.php:56 +msgid "Group name changed." +msgstr "" + +#: ../../mod/group.php:79 +msgid "Membership list updated." +msgstr "" + +#: ../../mod/group.php:107 +msgid "Group removed." +msgstr "" + +#: ../../mod/group.php:109 +msgid "Unable to remove group." msgstr "" #: ../../addon/twitter/twitter.php:64 @@ -1654,101 +1816,6 @@ msgstr "" msgid "Clear OAuth configuration" msgstr "" -#: ../../addon/tictac/tictac.php:14 -msgid "Three Dimensional Tic-Tac-Toe" -msgstr "" - -#: ../../addon/tictac/tictac.php:47 -msgid "3D Tic-Tac-Toe" -msgstr "" - -#: ../../addon/tictac/tictac.php:52 -msgid "New game" -msgstr "" - -#: ../../addon/tictac/tictac.php:53 -msgid "New game with handicap" -msgstr "" - -#: ../../addon/tictac/tictac.php:54 -msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that " -"it is played on multiple levels simultaneously. " -msgstr "" - -#: ../../addon/tictac/tictac.php:55 -msgid "" -"In this case there are three levels. You win by getting three in a row on " -"any level, as well as up, down, and diagonally across the different levels." -msgstr "" - -#: ../../addon/tictac/tictac.php:57 -msgid "" -"The handicap game disables the center position on the middle level because " -"the player claiming this square often has an unfair advantage." -msgstr "" - -#: ../../addon/tictac/tictac.php:176 -msgid "You go first..." -msgstr "" - -#: ../../addon/tictac/tictac.php:181 -msgid "I'm going first this time..." -msgstr "" - -#: ../../addon/tictac/tictac.php:187 -msgid "You won!" -msgstr "" - -#: ../../addon/tictac/tictac.php:193 ../../addon/tictac/tictac.php:218 -msgid "\"Cat\" game!" -msgstr "" - -#: ../../addon/tictac/tictac.php:216 -msgid "I won!" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:39 -msgid "Upload a file" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:40 -msgid "Drop files here to upload" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:42 -msgid "Failed" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:288 -msgid "No files were uploaded." -msgstr "" - -#: ../../addon/js_upload/js_upload.php:294 -msgid "Uploaded file is empty" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:299 -msgid "Uploaded file is too large" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:317 -msgid "File has an invalid extension, it should be one of " -msgstr "" - -#: ../../addon/js_upload/js_upload.php:328 -msgid "Upload was cancelled, or server error encountered" -msgstr "" - -#: ../../addon/java_upload/java_upload.php:33 -msgid "Select files to upload: " -msgstr "" - -#: ../../addon/java_upload/java_upload.php:35 -msgid "" -"Use the following controls only if the Java uploader [above] fails to launch." -msgstr "" - #: ../../addon/statusnet/statusnet.php:78 msgid "Post to StatusNet" msgstr "" @@ -1804,28 +1871,195 @@ msgstr "" msgid "Send public postings to StatusNet" msgstr "" -#: ../../index.php:187 -msgid "Not Found" +#: ../../addon/tictac/tictac.php:14 +msgid "Three Dimensional Tic-Tac-Toe" msgstr "" -#: ../../index.php:188 -msgid "Page not found." +#: ../../addon/tictac/tictac.php:47 +msgid "3D Tic-Tac-Toe" msgstr "" -#: ../../include/acl_selectors.php:132 -msgid "Visible To:" +#: ../../addon/tictac/tictac.php:52 +msgid "New game" msgstr "" -#: ../../include/acl_selectors.php:136 ../../include/acl_selectors.php:151 -msgid "Groups" +#: ../../addon/tictac/tictac.php:53 +msgid "New game with handicap" msgstr "" -#: ../../include/acl_selectors.php:147 -msgid "Except For:" +#: ../../addon/tictac/tictac.php:54 +msgid "" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " msgstr "" -#: ../../include/auth.php:27 -msgid "Logged out." +#: ../../addon/tictac/tictac.php:55 +msgid "" +"In this case there are three levels. You win by getting three in a row on " +"any level, as well as up, down, and diagonally across the different levels." +msgstr "" + +#: ../../addon/tictac/tictac.php:57 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." +msgstr "" + +#: ../../addon/tictac/tictac.php:176 +msgid "You go first..." +msgstr "" + +#: ../../addon/tictac/tictac.php:181 +msgid "I'm going first this time..." +msgstr "" + +#: ../../addon/tictac/tictac.php:187 +msgid "You won!" +msgstr "" + +#: ../../addon/tictac/tictac.php:193 ../../addon/tictac/tictac.php:218 +msgid "\"Cat\" game!" +msgstr "" + +#: ../../addon/tictac/tictac.php:216 +msgid "I won!" +msgstr "" + +#: ../../addon/java_upload/java_upload.php:33 +msgid "Select files to upload: " +msgstr "" + +#: ../../addon/java_upload/java_upload.php:35 +msgid "" +"Use the following controls only if the Java uploader [above] fails to launch." +msgstr "" + +#: ../../addon/facebook/facebook.php:116 +msgid "Facebook disabled" +msgstr "" + +#: ../../addon/facebook/facebook.php:124 +msgid "Facebook API key is missing." +msgstr "" + +#: ../../addon/facebook/facebook.php:131 +msgid "Facebook Connect" +msgstr "" + +#: ../../addon/facebook/facebook.php:137 +msgid "Install Facebook post connector" +msgstr "" + +#: ../../addon/facebook/facebook.php:144 +msgid "Remove Facebook post connector" +msgstr "" + +#: ../../addon/facebook/facebook.php:150 +msgid "Post to Facebook by default" +msgstr "" + +#: ../../addon/facebook/facebook.php:174 +msgid "Facebook" +msgstr "" + +#: ../../addon/facebook/facebook.php:175 +msgid "Facebook Connector Settings" +msgstr "" + +#: ../../addon/facebook/facebook.php:189 +msgid "Post to Facebook" +msgstr "" + +#: ../../addon/facebook/facebook.php:230 +msgid "Image: " +msgstr "" + +#: ../../addon/randplace/randplace.php:171 +msgid "Randplace Settings" +msgstr "" + +#: ../../addon/randplace/randplace.php:173 +msgid "Enable Randplace Plugin" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:39 +msgid "Upload a file" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:40 +msgid "Drop files here to upload" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:42 +msgid "Failed" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:288 +msgid "No files were uploaded." +msgstr "" + +#: ../../addon/js_upload/js_upload.php:294 +msgid "Uploaded file is empty" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:299 +msgid "Uploaded file is too large" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:317 +msgid "File has an invalid extension, it should be one of " +msgstr "" + +#: ../../addon/js_upload/js_upload.php:328 +msgid "Upload was cancelled, or server error encountered" +msgstr "" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "" + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "" + +#: ../../include/contact_selectors.php:55 +msgid "Frequently" +msgstr "" + +#: ../../include/contact_selectors.php:56 +msgid "Hourly" +msgstr "" + +#: ../../include/contact_selectors.php:57 +msgid "Twice daily" +msgstr "" + +#: ../../include/contact_selectors.php:58 +msgid "Daily" +msgstr "" + +#: ../../include/contact_selectors.php:59 +msgid "Weekly" +msgstr "" + +#: ../../include/contact_selectors.php:60 +msgid "Monthly" msgstr "" #: ../../include/profile_selectors.php:6 @@ -2040,112 +2274,20 @@ msgstr "" msgid "Ask me" msgstr "" -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" +#: ../../include/acl_selectors.php:132 +msgid "Visible To:" msgstr "" -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" +#: ../../include/acl_selectors.php:136 ../../include/acl_selectors.php:151 +msgid "Groups" msgstr "" -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" +#: ../../include/acl_selectors.php:147 +msgid "Except For:" msgstr "" -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "" - -#: ../../include/contact_selectors.php:55 -msgid "Frequently" -msgstr "" - -#: ../../include/contact_selectors.php:56 -msgid "Hourly" -msgstr "" - -#: ../../include/contact_selectors.php:57 -msgid "Twice daily" -msgstr "" - -#: ../../include/contact_selectors.php:58 -msgid "Daily" -msgstr "" - -#: ../../include/contact_selectors.php:59 -msgid "Weekly" -msgstr "" - -#: ../../include/contact_selectors.php:60 -msgid "Monthly" -msgstr "" - -#: ../../include/nav.php:38 ../../boot.php:837 -msgid "Logout" -msgstr "" - -#: ../../include/nav.php:44 ../../boot.php:817 ../../boot.php:823 -msgid "Login" -msgstr "" - -#: ../../include/nav.php:56 ../../include/nav.php:91 -msgid "Home" -msgstr "" - -#: ../../include/nav.php:64 -msgid "Apps" -msgstr "" - -#: ../../include/nav.php:77 -msgid "Directory" -msgstr "" - -#: ../../include/nav.php:87 -msgid "Network" -msgstr "" - -#: ../../include/nav.php:96 -msgid "Notifications" -msgstr "" - -#: ../../include/nav.php:104 -msgid "Manage" -msgstr "" - -#: ../../include/nav.php:107 -msgid "Settings" -msgstr "" - -#: ../../include/nav.php:109 -msgid "Profiles" -msgstr "" - -#: ../../include/oembed.php:57 -msgid "Embedding disabled" -msgstr "" - -#: ../../include/items.php:1004 -msgid "Birthday:" -msgstr "" - -#: ../../include/items.php:1348 -msgid "You have a new follower at " -msgstr "" - -#: ../../include/group.php:130 -msgid "Create a new group" -msgstr "" - -#: ../../include/group.php:131 -msgid "Everybody" +#: ../../include/auth.php:27 +msgid "Logged out." msgstr "" #: ../../include/datetime.php:44 ../../include/datetime.php:46 @@ -2216,206 +2358,54 @@ msgstr "" msgid " ago" msgstr "" -#: ../../boot.php:808 -msgid "Create a New Account" +#: ../../include/nav.php:56 ../../include/nav.php:91 +msgid "Home" msgstr "" -#: ../../boot.php:815 -msgid "Nickname or Email address: " +#: ../../include/nav.php:64 +msgid "Apps" msgstr "" -#: ../../boot.php:816 -msgid "Password: " +#: ../../include/nav.php:77 +msgid "Directory" msgstr "" -#: ../../boot.php:821 -msgid "Nickname/Email/OpenID: " +#: ../../include/nav.php:87 +msgid "Network" msgstr "" -#: ../../boot.php:822 -msgid "Password (if not OpenID): " +#: ../../include/nav.php:96 +msgid "Notifications" msgstr "" -#: ../../boot.php:825 -msgid "Forgot your password?" +#: ../../include/nav.php:104 +msgid "Manage" msgstr "" -#: ../../boot.php:826 -msgid "Password Reset" +#: ../../include/nav.php:107 +msgid "Settings" msgstr "" -#: ../../boot.php:1077 -msgid "prev" +#: ../../include/nav.php:109 +msgid "Profiles" msgstr "" -#: ../../boot.php:1079 -msgid "first" +#: ../../include/items.php:1004 +msgid "Birthday:" msgstr "" -#: ../../boot.php:1108 -msgid "last" +#: ../../include/items.php:1348 +msgid "You have a new follower at " msgstr "" -#: ../../boot.php:1111 -msgid "next" +#: ../../include/group.php:130 +msgid "Create a new group" msgstr "" -#: ../../boot.php:1831 -msgid " likes this." +#: ../../include/group.php:131 +msgid "Everybody" msgstr "" -#: ../../boot.php:1831 -msgid " doesn't like this." -msgstr "" - -#: ../../boot.php:1834 -msgid "people" -msgstr "" - -#: ../../boot.php:1834 -msgid "like this." -msgstr "" - -#: ../../boot.php:1834 -msgid "don't like this." -msgstr "" - -#: ../../boot.php:1839 -msgid "and" -msgstr "" - -#: ../../boot.php:1842 -msgid ", and " -msgstr "" - -#: ../../boot.php:1842 -msgid " other people" -msgstr "" - -#: ../../boot.php:1843 -msgid " like this." -msgstr "" - -#: ../../boot.php:1843 -msgid " don't like this." -msgstr "" - -#: ../../boot.php:2004 -msgid "No contacts" -msgstr "" - -#: ../../boot.php:2257 -msgid "Connect" -msgstr "" - -#: ../../boot.php:2267 -msgid "Location:" -msgstr "" - -#: ../../boot.php:2271 -msgid ", " -msgstr "" - -#: ../../boot.php:2279 -msgid "Gender:" -msgstr "" - -#: ../../boot.php:2283 -msgid "Status:" -msgstr "" - -#: ../../boot.php:2285 -msgid "Homepage:" -msgstr "" - -#: ../../boot.php:2376 -msgid "Monday" -msgstr "" - -#: ../../boot.php:2376 -msgid "Tuesday" -msgstr "" - -#: ../../boot.php:2376 -msgid "Wednesday" -msgstr "" - -#: ../../boot.php:2376 -msgid "Thursday" -msgstr "" - -#: ../../boot.php:2376 -msgid "Friday" -msgstr "" - -#: ../../boot.php:2376 -msgid "Saturday" -msgstr "" - -#: ../../boot.php:2376 -msgid "Sunday" -msgstr "" - -#: ../../boot.php:2380 -msgid "January" -msgstr "" - -#: ../../boot.php:2380 -msgid "February" -msgstr "" - -#: ../../boot.php:2380 -msgid "March" -msgstr "" - -#: ../../boot.php:2380 -msgid "April" -msgstr "" - -#: ../../boot.php:2380 -msgid "May" -msgstr "" - -#: ../../boot.php:2380 -msgid "June" -msgstr "" - -#: ../../boot.php:2380 -msgid "July" -msgstr "" - -#: ../../boot.php:2380 -msgid "August" -msgstr "" - -#: ../../boot.php:2380 -msgid "September" -msgstr "" - -#: ../../boot.php:2380 -msgid "October" -msgstr "" - -#: ../../boot.php:2380 -msgid "November" -msgstr "" - -#: ../../boot.php:2380 -msgid "December" -msgstr "" - -#: ../../boot.php:2409 -msgid "Birthdays this week:" -msgstr "" - -#: ../../boot.php:2410 -msgid "(Adjusted for local time)" -msgstr "" - -#: ../../boot.php:2419 -msgid "[today]" -msgstr "" - -#: ../../boot.php:2616 -msgid "link to source" +#: ../../include/oembed.php:57 +msgid "Embedding disabled" msgstr "" From 9bc85162a469337fbcc5ebbee64e38b25ac4cea0 Mon Sep 17 00:00:00 2001 From: Fabio Comuni Date: Fri, 18 Mar 2011 11:02:59 +0100 Subject: [PATCH 13/17] Update po2php script --- util/po2php.php | 38 +++++++++++++++++++++++++++----------- 1 file changed, 27 insertions(+), 11 deletions(-) diff --git a/util/po2php.php b/util/po2php.php index 171e9f2976..cf62492e74 100644 --- a/util/po2php.php +++ b/util/po2php.php @@ -1,5 +1,6 @@ strings['.$k.'] = '; - } else { - $k = ""; - } - } + + if ($k!="" && substr($l,0,7)=="msgstr "){ + if ($ink) { $ink = False; $out .= '$a->strings["'.$k.'"] = '; } $v = substr($l,7,$len-8); $out .= $v; } if ($k!="" && substr($l,0,7)=="msgstr["){ + if ($ink) { $ink = False; $out .= '$a->strings["'.$k.'"] = '; } + if (!$arr) { $arr=True; $out .= "array(\n"; @@ -58,6 +54,26 @@ function po2php_run($argv, $argc) { preg_match("|\[([0-9]*)\] (.*)|", $l, $match); $out .= "\t". $match[1]." => ". $match[2] .",\n"; } + + if (substr($l,0,6)=="msgid_") { $ink = False; $out .= '$a->strings["'.$k.'"] = '; }; + + if ($ink) { + $k .= trim($l,"\" \r\n"); + //$out .= '$a->strings['.$k.'] = '; + } + + if (substr($l,0,6)=="msgid "){ + if ($k!="") $out .= $arr?");\n":";\n"; + $arr=False; + $k = str_replace("msgid ","",$l); + if ($k != '""' ) { + $k = trim($k,"\"\r\n"); + } else { + $k = ""; + } + $ink = True; + } + } From fd4256a13f879089351aaf36d557de4b7d3ea99e Mon Sep 17 00:00:00 2001 From: Fabio Comuni Date: Fri, 18 Mar 2011 11:03:15 +0100 Subject: [PATCH 14/17] php2po script --- util/php2po.php | 71 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 util/php2po.php diff --git a/util/php2po.php b/util/php2po.php new file mode 100644 index 0000000000..d3ce0a5af5 --- /dev/null +++ b/util/php2po.php @@ -0,0 +1,71 @@ +\n\n"; + return; + } + + $phpfile = $argv[1]; + $pofile = dirname($phpfile)."/messages.po"; + + if (!file_exists($phpfile)){ + print "Unable to find '$phpfile'\n"; + return; + } + + include_once($phpfile); + + print "Out to '$pofile'\n"; + + $out = ""; + $infile = file($pofile); + $k=""; + $ink = False; + foreach ($infile as $l) { + + if ($k!="" && substr($l,0,7)=="msgstr "){ + $ink = False; + $v = '""'; + //echo "DBG: k:'$k'\n"; + if (isset($a->strings[$k])) { + $v= '"'.$a->strings[$k].'"'; + //echo "DBG\n"; + //var_dump($k, $v, $a->strings[$k], $v); + //echo "/DBG\n"; + + } + //echo "DBG: v:'$v'\n"; + $l = "msgstr ".$v."\n"; + } + + if (substr($l,0,6)=="msgid_" || substr($l,0,7)=="msgstr[" )$ink = False;; + + if ($ink) { + $k .= trim($l,"\"\r\n"); + $k = str_replace('\"','"',$k); + } + + if (substr($l,0,6)=="msgid "){ + $arr=False; + $k = str_replace("msgid ","",$l); + if ($k != '""' ) { + $k = trim($k,"\"\r\n"); + $k = str_replace('\"','"',$k); + } else { + $k = ""; + } + $ink = True; + } + + $out .= $l; + } + //echo $out; + file_put_contents($pofile, $out); +?> \ No newline at end of file From 8ef6077d4d8b1d75c79e9fbc1735f054941b368e Mon Sep 17 00:00:00 2001 From: Fabio Comuni Date: Fri, 18 Mar 2011 11:04:12 +0100 Subject: [PATCH 15/17] Update IT strings --- view/it/messages.po | 4271 ++++++++++++++++++------------------------- view/it/strings.php | 1061 +++++------ 2 files changed, 2351 insertions(+), 2981 deletions(-) diff --git a/view/it/messages.po b/view/it/messages.po index 18279658de..2c1b144bb6 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -8,11 +8,11 @@ msgid "" msgstr "" "Project-Id-Version: 2.1.913\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-11 01:11+0100\n" +"POT-Creation-Date: 2011-03-18 10:32+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Fabio Comuni \n" "Language-Team: Italian \n" -"Language: it\n" +"Language: it-IT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,1967 +20,1834 @@ msgstr "" "X-Language: it_IT\n" "X-Source-Language: C\n" -#: ../../mod/network.php:6 ../../mod/profiles.php:7 ../../mod/profiles.php:224 -#: ../../mod/notifications.php:56 ../../mod/message.php:8 -#: ../../../mod/message.php:116 ../../../mod/manage.php:75 -#: ../../../mod/dfrn_confirm.php:53 ../../mod/wall_upload.php:42 -#: ../../mod/display.php:303 ../../mod/regmod.php:16 ../../mod/photos.php:85 -#: ../../mod/photos.php:772 ../../mod/viewcontacts.php:13 -#: ../../mod/settings.php:14 ../../mod/settings.php:19 -#: ../../mod/settings.php:206 ../../../mod/item.php:57 ../../mod/item.php:616 -#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:133 -#: ../../mod/profile_photo.php:139 ../../mod/profile_photo.php:150 -#: ../../mod/group.php:19 ../../mod/invite.php:13 ../../mod/invite.php:50 -#: ../../mod/register.php:25 ../../mod/follow.php:8 ../../mod/contacts.php:101 -#: ../../addon/facebook/facebook.php:110 ../../../index.php:244 -#: ../../mod/network.php:6 ../../mod/notifications.php:56 -#: ../../mod/display.php:303 ../../mod/photos.php:772 -#: ../../mod/profile_photo.php:133 ../../mod/invite.php:50 -#: ../../../mod/contacts.php:101 ../../mod/manage.php:75 -#: ../../mod/wall_upload.php:42 ../../mod/settings.php:14 -#: ../../mod/settings.php:19 ../../mod/item.php:57 -#: ../../mod/profile_photo.php:150 ../index.php:244 ../../mod/message.php:116 -#: ../../mod/dfrn_confirm.php:53 ../../mod/photos.php:85 ../../mod/item.php:57 -#: ../../mod/contacts.php:101 ../../mod/network.php:6 -#: ../../mod/dfrn_confirm.php:53 ../../mod/photos.php:772 -#: ../../mod/settings.php:14 ../../mod/settings.php:206 ../../mod/item.php:616 -#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:139 -#: ../../mod/profile_photo.php:150 ../../mod/group.php:19 -#: ../../mod/register.php:25 ../addon/facebook/facebook.php:110 +#: ../../index.php:187 +msgid "Not Found" +msgstr "Non Trovato" + +#: ../../index.php:188 +msgid "Page not found." +msgstr "Pagina non trovata." + +#: ../../index.php:243 ../../mod/group.php:88 +msgid "Permission denied" +msgstr "Permesso negato" + +#: ../../index.php:244 ../../mod/manage.php:75 ../../mod/wall_upload.php:42 +#: ../../mod/follow.php:8 ../../mod/profile_photo.php:19 +#: ../../mod/profile_photo.php:133 ../../mod/profile_photo.php:139 +#: ../../mod/profile_photo.php:150 ../../mod/regmod.php:16 #: ../../mod/profiles.php:7 ../../mod/profiles.php:224 -#: ../../mod/notifications.php:56 ../../mod/message.php:8 -#: ../../mod/message.php:116 ../../mod/manage.php:75 ../../mod/display.php:303 -#: ../../mod/regmod.php:16 ../../mod/viewcontacts.php:13 -#: ../../mod/profile_photo.php:133 ../../mod/invite.php:13 -#: ../../mod/invite.php:50 ../../mod/follow.php:8 ../../mod/contacts.php:101 -#: ../../index.php:244 +#: ../../mod/settings.php:14 ../../mod/settings.php:19 +#: ../../mod/settings.php:206 ../../mod/photos.php:85 ../../mod/photos.php:772 +#: ../../mod/display.php:303 ../../mod/invite.php:13 ../../mod/invite.php:50 +#: ../../mod/contacts.php:101 ../../mod/register.php:25 ../../mod/network.php:6 +#: ../../mod/notifications.php:56 ../../mod/item.php:57 ../../mod/item.php:616 +#: ../../mod/message.php:8 ../../mod/message.php:116 +#: ../../mod/dfrn_confirm.php:53 ../../mod/viewcontacts.php:13 +#: ../../mod/group.php:19 ../../addon/facebook/facebook.php:110 msgid "Permission denied." msgstr "Permesso negato." -#: ../../mod/network.php:18 ../../mod/network.php:18 ../../mod/network.php:18 -msgid "Normal View" -msgstr "Vista Normale" +#: ../../boot.php:808 +msgid "Create a New Account" +msgstr "Crea un Nuovo Account" -#: ../../mod/network.php:20 ../../mod/network.php:20 ../../mod/network.php:20 -msgid "New Item View" -msgstr "Vista Nuovi Elementi" +#: ../../boot.php:809 ../../mod/register.php:443 ../../include/nav.php:61 +msgid "Register" +msgstr "Regitrati" -#: ../../mod/network.php:91 ../../mod/profile.php:151 ../../mod/network.php:91 -#: ../../mod/network.php:91 ../../mod/profile.php:151 +#: ../../boot.php:815 +msgid "Nickname or Email address: " +msgstr "Soprannome o indirizzo Email: " + +#: ../../boot.php:816 +msgid "Password: " +msgstr "Password: " + +#: ../../boot.php:817 ../../boot.php:823 ../../include/nav.php:44 +msgid "Login" +msgstr "Accedi" + +#: ../../boot.php:821 +msgid "Nickname/Email/OpenID: " +msgstr "Soprannome/Email/OpenID: " + +#: ../../boot.php:822 +msgid "Password (if not OpenID): " +msgstr "Password (se non OpenID): " + +#: ../../boot.php:825 +msgid "Forgot your password?" +msgstr "Dimenticata la password?" + +#: ../../boot.php:826 +msgid "Password Reset" +msgstr "Resetta password" + +#: ../../boot.php:837 ../../include/nav.php:38 +msgid "Logout" +msgstr "Esci" + +#: ../../boot.php:1077 +msgid "prev" +msgstr "prec" + +#: ../../boot.php:1079 +msgid "first" +msgstr "primo" + +#: ../../boot.php:1108 +msgid "last" +msgstr "ultimo" + +#: ../../boot.php:1111 +msgid "next" +msgstr "succ" + +#: ../../boot.php:1831 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: ../../boot.php:1831 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: ../../boot.php:1835 +#, php-format +msgid "%2$d people like this." +msgstr "Piace a %2$d persone." + +#: ../../boot.php:1837 +#, php-format +msgid "%2$d people don't like this." +msgstr "Non piace a %2$d persone." + +#: ../../boot.php:1843 +msgid "and" +msgstr "e" + +#: ../../boot.php:1846 +#, php-format +msgid ", and %d other people" +msgstr ", e altre %d persone" + +#: ../../boot.php:1847 +#, php-format +msgid "%s like this." +msgstr "Piace a %s." + +#: ../../boot.php:1847 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." + +#: ../../boot.php:2008 +msgid "No contacts" +msgstr "Nessun contatto" + +#: ../../boot.php:2016 ../../mod/contacts.php:303 +#: ../../include/acl_selectors.php:140 ../../include/acl_selectors.php:155 +#: ../../include/nav.php:111 +msgid "Contacts" +msgstr "Contatti" + +#: ../../boot.php:2032 ../../mod/viewcontacts.php:17 +msgid "View Contacts" +msgstr "Guarda contatti" + +#: ../../boot.php:2049 ../../mod/search.php:17 ../../include/nav.php:67 +msgid "Search" +msgstr "Cerca" + +#: ../../boot.php:2204 ../../mod/profile.php:8 +msgid "No profile" +msgstr "Nessun profilo" + +#: ../../boot.php:2261 +msgid "Connect" +msgstr "Connetti" + +#: ../../boot.php:2271 +msgid "Location:" +msgstr "Posizione:" + +#: ../../boot.php:2275 +msgid ", " +msgstr ", " + +#: ../../boot.php:2283 +msgid "Gender:" +msgstr "Genere:" + +#: ../../boot.php:2287 +msgid "Status:" +msgstr "Stato:" + +#: ../../boot.php:2289 +msgid "Homepage:" +msgstr "Homepage:" + +#: ../../boot.php:2380 +msgid "Monday" +msgstr "Lunedì" + +#: ../../boot.php:2380 +msgid "Tuesday" +msgstr "Martedì" + +#: ../../boot.php:2380 +msgid "Wednesday" +msgstr "Mercoledì" + +#: ../../boot.php:2380 +msgid "Thursday" +msgstr "Giovedì" + +#: ../../boot.php:2380 +msgid "Friday" +msgstr "Venerdì" + +#: ../../boot.php:2380 +msgid "Saturday" +msgstr "Sabato" + +#: ../../boot.php:2380 +msgid "Sunday" +msgstr "Domenica" + +#: ../../boot.php:2384 +msgid "January" +msgstr "Gennaio" + +#: ../../boot.php:2384 +msgid "February" +msgstr "Febbraio" + +#: ../../boot.php:2384 +msgid "March" +msgstr "Marzo" + +#: ../../boot.php:2384 +msgid "April" +msgstr "Aprile" + +#: ../../boot.php:2384 +msgid "May" +msgstr "Maggio" + +#: ../../boot.php:2384 +msgid "June" +msgstr "Giugno" + +#: ../../boot.php:2384 +msgid "July" +msgstr "Luglio" + +#: ../../boot.php:2384 +msgid "August" +msgstr "Agosto" + +#: ../../boot.php:2384 +msgid "September" +msgstr "Settembre" + +#: ../../boot.php:2384 +msgid "October" +msgstr "Ottobre" + +#: ../../boot.php:2384 +msgid "November" +msgstr "Novembre" + +#: ../../boot.php:2384 +msgid "December" +msgstr "Dicembre" + +#: ../../boot.php:2413 +msgid "Birthdays this week:" +msgstr "Compleanni questa settimana:" + +#: ../../boot.php:2414 +msgid "(Adjusted for local time)" +msgstr "(Convertiti all'ora locale)" + +#: ../../boot.php:2423 +msgid "[today]" +msgstr "[oggi]" + +#: ../../boot.php:2620 +msgid "link to source" +msgstr "Collegamento all'originale" + +#: ../../mod/manage.php:37 +#, php-format +msgid "Welcome back %s" +msgstr "Bentornato %s" + +#: ../../mod/manage.php:87 +msgid "Manage Identities and/or Pages" +msgstr "Gestisci Indentità e/o Pagine" + +#: ../../mod/manage.php:90 +msgid "" +"(Toggle between different identities or community/group pages which share " +"your account details.)" +msgstr "" +"(Passa tra diverse identità o pagine di comunità/gruppi che condividono i " +"dettagli del tuo account.)" + +#: ../../mod/manage.php:92 +msgid "Select an identity to manage: " +msgstr "Seleziona una identità da gestire:" + +#: ../../mod/manage.php:106 ../../mod/photos.php:800 ../../mod/photos.php:857 +#: ../../mod/photos.php:1032 ../../mod/invite.php:64 ../../mod/install.php:109 +#: ../../addon/twitter/twitter.php:156 ../../addon/twitter/twitter.php:175 +#: ../../addon/statusnet/statusnet.php:163 +#: ../../addon/statusnet/statusnet.php:189 +#: ../../addon/statusnet/statusnet.php:207 +#: ../../addon/facebook/facebook.php:151 ../../addon/randplace/randplace.php:179 +msgid "Submit" +msgstr "Invia" + +#: ../../mod/wall_upload.php:56 ../../mod/profile_photo.php:109 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "La dimensionde dell'immagine supera il limite di %d" + +#: ../../mod/wall_upload.php:65 ../../mod/profile_photo.php:118 +#: ../../mod/photos.php:570 +msgid "Unable to process image." +msgstr "Impossibile elaborare l'immagine." + +#: ../../mod/wall_upload.php:79 ../../mod/wall_upload.php:88 +#: ../../mod/wall_upload.php:95 ../../mod/item.php:184 ../../mod/message.php:93 +msgid "Wall Photos" +msgstr "Foto Bacheca" + +#: ../../mod/wall_upload.php:82 ../../mod/profile_photo.php:230 +#: ../../mod/photos.php:588 +msgid "Image upload failed." +msgstr "Caricamento immagine fallito." + +#: ../../mod/dfrn_notify.php:177 ../../mod/dfrn_notify.php:389 +#: ../../mod/regmod.php:93 ../../mod/register.php:311 +#: ../../mod/register.php:348 ../../mod/dfrn_request.php:545 +#: ../../mod/lostpass.php:39 ../../mod/item.php:423 +#: ../../mod/dfrn_confirm.php:649 ../../include/items.php:1350 +#: ../../mod/dfrn_notify.php:475 +msgid "Administrator" +msgstr "Amministratore" + +#: ../../mod/dfrn_notify.php:179 +msgid "noreply" +msgstr "nessuna risposta" + +#: ../../mod/dfrn_notify.php:237 +msgid "New mail received at " +msgstr "Nuova mail ricevuta su " + +#: ../../mod/dfrn_notify.php:388 ../../mod/dfrn_notify.php:474 +#, php-format +msgid "%s commented on an item at %s" +msgstr "%s ha commentato un elemento su %s" + +#: ../../mod/profile.php:151 ../../mod/network.php:91 msgid "Share" msgstr "Condividi" -#: ../../mod/network.php:92 ../../mod/message.php:185 ../../mod/message.php:319 -#: ../../mod/profile.php:152 ../../mod/network.php:92 ../../mod/profile.php:152 -#: ../../mod/network.php:92 ../../mod/message.php:319 ../../mod/message.php:185 -#: ../../mod/profile.php:152 +#: ../../mod/profile.php:152 ../../mod/network.php:92 ../../mod/message.php:185 +#: ../../mod/message.php:319 msgid "Upload photo" msgstr "Carica foto" -#: ../../mod/network.php:93 ../../mod/message.php:186 ../../mod/message.php:320 -#: ../../mod/profile.php:153 ../../mod/network.php:93 ../../mod/profile.php:153 -#: ../../mod/network.php:93 ../../mod/message.php:320 ../../mod/message.php:186 -#: ../../mod/profile.php:153 +#: ../../mod/profile.php:153 ../../mod/network.php:93 ../../mod/message.php:186 +#: ../../mod/message.php:320 msgid "Insert web link" -msgstr "Inserisci collegamento web" +msgstr "Inserisci link" -#: ../../mod/network.php:94 ../../mod/profile.php:154 ../../mod/network.php:94 -#: ../../mod/network.php:94 ../../mod/profile.php:154 +#: ../../mod/profile.php:154 ../../mod/network.php:94 msgid "Insert YouTube video" msgstr "Inserisci video da YouTube" -#: ../../mod/network.php:95 ../../mod/profile.php:155 ../../mod/network.php:95 -#: ../../mod/network.php:95 ../../mod/profile.php:155 +#: ../../mod/profile.php:155 ../../mod/network.php:95 msgid "Set your location" msgstr "Imposta la tua posizione" -#: ../../mod/network.php:96 ../../mod/profile.php:156 ../../mod/network.php:96 -#: ../../mod/network.php:96 ../../mod/profile.php:156 +#: ../../mod/profile.php:156 ../../mod/network.php:96 msgid "Clear browser location" -msgstr "Cancella la posizione del browser" +msgstr "Cancella la tua posizione data dal browser" -#: ../../mod/network.php:97 ../../mod/network.php:367 ../../mod/message.php:187 -#: ../../mod/message.php:321 ../../mod/display.php:158 -#: ../../mod/photos.php:1052 ../../mod/profile.php:157 -#: ../../mod/profile.php:309 ../../mod/network.php:97 -#: ../../../mod/message.php:321 ../../mod/profile.php:157 -#: ../../mod/message.php:321 ../../mod/network.php:97 ../../mod/message.php:187 -#: ../../mod/message.php:321 ../../mod/display.php:158 -#: ../../mod/network.php:367 ../../mod/photos.php:1052 #: ../../mod/profile.php:157 ../../mod/profile.php:309 +#: ../../mod/photos.php:1052 ../../mod/display.php:158 ../../mod/network.php:97 +#: ../../mod/network.php:367 ../../mod/message.php:187 ../../mod/message.php:321 msgid "Please wait" msgstr "Attendi" -#: ../../mod/network.php:98 ../../mod/profile.php:158 ../../mod/network.php:98 -#: ../../mod/network.php:98 ../../mod/profile.php:158 +#: ../../mod/profile.php:158 ../../mod/network.php:98 msgid "Permission settings" -msgstr "Impostazioni permessi" +msgstr "Impostazione permessi" -#: ../../mod/network.php:104 ../../mod/profile.php:165 -#: ../../mod/network.php:104 ../../mod/network.php:104 ../../mod/profile.php:165 +#: ../../mod/profile.php:165 ../../mod/network.php:104 msgid "CC: email addresses" msgstr "CC: indirizzi email" -#: ../../mod/network.php:106 ../../mod/profile.php:167 -#: ../../mod/network.php:106 ../../mod/network.php:106 ../../mod/profile.php:167 +#: ../../mod/profile.php:167 ../../mod/network.php:106 msgid "Example: bob@example.com, mary@example.com" msgstr "Esempio: bob@example.com, mary@example.com" -#: ../../mod/network.php:149 ../../mod/network.php:149 ../../mod/network.php:149 -msgid "No such group" -msgstr "Nessun gruppo" - -#: ../../mod/network.php:160 ../../mod/network.php:160 ../../mod/network.php:160 -msgid "Group is empty" -msgstr "Il gruppo è vuoto" - -#: ../../mod/network.php:164 ../../mod/network.php:164 ../../mod/network.php:164 -msgid "Group: " -msgstr "Gruppo:" - -#: ../../mod/network.php:272 ../../mod/network.php:434 -#: ../../mod/display.php:258 ../../mod/profile.php:382 ../../mod/search.php:116 -#: ../../mod/network.php:272 ../../../mod/profile.php:382 -#: ../../mod/profile.php:382 ../../mod/display.php:258 -#: ../../mod/profile.php:382 ../../mod/search.php:116 ../../mod/network.php:272 -#: ../../mod/network.php:434 -msgid "View $name's profile" -msgstr "Vedi il profilo di $name" - -#: ../../mod/network.php:287 ../../mod/search.php:131 ../../mod/network.php:287 -#: ../../mod/network.php:287 ../../mod/search.php:131 -msgid "View in context" -msgstr "Vedi nel contesto" - -#: ../../mod/network.php:321 ../../mod/display.php:149 ../../mod/photos.php:935 -#: ../../mod/profile.php:300 ../../mod/network.php:321 -#: ../../mod/profile.php:300 ../../mod/network.php:321 ../../mod/photos.php:935 -#: ../../mod/display.php:149 ../../mod/profile.php:300 +#: ../../mod/profile.php:300 ../../mod/photos.php:935 ../../mod/display.php:149 +#: ../../mod/network.php:321 msgid "Private Message" -msgstr "Messaggio Privato" +msgstr "Messaggio privato" -#: ../../mod/network.php:365 ../../mod/display.php:156 -#: ../../mod/photos.php:1050 ../../mod/profile.php:307 -#: ../../mod/network.php:365 ../../mod/profile.php:307 -#: ../../mod/network.php:365 ../../mod/photos.php:1050 -#: ../../mod/display.php:156 ../../mod/profile.php:307 +#: ../../mod/profile.php:307 ../../mod/photos.php:1050 +#: ../../mod/display.php:156 ../../mod/network.php:365 msgid "I like this (toggle)" -msgstr "Mi piace (metti/togli)" +msgstr "Mi piace questo (metti/togli)" -#: ../../mod/network.php:366 ../../mod/display.php:157 -#: ../../mod/photos.php:1051 ../../mod/profile.php:308 -#: ../../mod/network.php:366 ../../mod/profile.php:308 -#: ../../mod/network.php:366 ../../mod/photos.php:1051 -#: ../../mod/display.php:157 ../../mod/profile.php:308 +#: ../../mod/profile.php:308 ../../mod/photos.php:1051 +#: ../../mod/display.php:157 ../../mod/network.php:366 msgid "I don't like this (toggle)" -msgstr "Non mi piace (metti/togli)" +msgstr "Non mi piace questo (metti/togli)" -#: ../../mod/network.php:380 ../../mod/display.php:170 -#: ../../mod/photos.php:1071 ../../mod/photos.php:1111 -#: ../../mod/photos.php:1140 ../../mod/profile.php:321 -#: ../../../mod/network.php:380 ../../mod/photos.php:1111 -#: ../../mod/network.php:380 ../../mod/photos.php:1071 +#: ../../mod/profile.php:321 ../../mod/photos.php:1071 #: ../../mod/photos.php:1111 ../../mod/photos.php:1140 -#: ../../mod/network.php:380 ../../mod/display.php:170 ../../mod/profile.php:321 +#: ../../mod/display.php:170 ../../mod/network.php:380 msgid "This is you" msgstr "Questo sei tu" -#: ../../mod/network.php:386 ../../mod/display.php:234 -#: ../../mod/photos.php:1168 ../../mod/profile.php:361 ../../mod/group.php:137 -#: ../../mod/network.php:386 ../../../mod/profile.php:361 -#: ../../mod/profile.php:361 ../../mod/network.php:386 -#: ../../mod/photos.php:1168 ../../mod/display.php:234 -#: ../../mod/profile.php:361 ../../mod/group.php:137 +#: ../../mod/profile.php:361 ../../mod/photos.php:1168 +#: ../../mod/display.php:234 ../../mod/network.php:386 ../../mod/group.php:137 msgid "Delete" -msgstr "Elimina" +msgstr "Cancella" -#: ../../mod/network.php:435 ../../mod/display.php:259 -#: ../../mod/network.php:435 ../../mod/network.php:435 ../../mod/display.php:259 -msgid "View $owner_name's profile" -msgstr "Vedi il profilo di $owner_name" +#: ../../mod/profile.php:382 ../../mod/search.php:116 ../../mod/display.php:258 +#: ../../mod/network.php:272 ../../mod/network.php:434 +msgid "View $name's profile" +msgstr "Guarda il profilo di $name" -#: ../../mod/network.php:436 ../../mod/display.php:260 -#: ../../mod/network.php:436 ../../mod/network.php:436 ../../mod/display.php:260 -msgid "to" -msgstr "a" - -#: ../../mod/network.php:437 ../../mod/display.php:261 -#: ../../mod/network.php:437 ../../mod/network.php:437 ../../mod/display.php:261 -msgid "Wall-to-Wall" -msgstr "Sulla Bacheca" - -#: ../../mod/network.php:438 ../../mod/display.php:262 -#: ../../mod/network.php:438 ../../mod/network.php:438 ../../mod/display.php:262 -msgid "via Wall-To-Wall:" -msgstr "sulla sua Bacheca:" - -#: ../../mod/network.php:471 ../../mod/display.php:312 -#: ../../mod/profile.php:414 ../../mod/register.php:422 -#: ../../mod/network.php:471 ../../mod/register.php:422 -#: ../../mod/register.php:422 ../../mod/network.php:471 #: ../../mod/profile.php:414 ../../mod/display.php:312 +#: ../../mod/register.php:422 ../../mod/network.php:471 msgid "" "Shared content is covered by the Creative Commons " "Attribution 3.0 license." msgstr "" -"Il contenuto condiviso è coperto dalla licenza Creative Commons " -"Attribution 3.0." +"Il contenuto in comune è coperto dalla licenza Creative Commons " +"Attribuzione 3.0." + +#: ../../mod/follow.php:167 +msgid "The profile address specified does not provide adequate information." +msgstr "" +"L'indirizzo del profilo specificato non fornisce adeguate informazioni." + +#: ../../mod/follow.php:173 +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 nofiche " +"dirette/personali da te." + +#: ../../mod/follow.php:224 +msgid "Unable to retrieve contact information." +msgstr "Impossibile recuperare informazioni sul contatto." + +#: ../../mod/follow.php:270 +msgid "following" +msgstr "segue" + +#: ../../mod/profile_photo.php:28 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il ritaglio è fallito." + +#: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65 +#: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:155 +#: ../../mod/profile_photo.php:225 ../../mod/profile_photo.php:234 +#: ../../mod/photos.php:106 ../../mod/photos.php:530 ../../mod/photos.php:849 +#: ../../mod/photos.php:864 ../../mod/register.php:267 +#: ../../mod/register.php:274 ../../mod/register.php:281 +msgid "Profile Photos" +msgstr "Foto del profilo" + +#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68 +#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:237 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Riduzione della dimensione dell'immagine [%s] fallito." + +#: ../../mod/profile_photo.php:95 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" + +#: ../../mod/profile_photo.php:228 +msgid "Image uploaded successfully." +msgstr "Immagine caricata con successo." + +#: ../../mod/home.php:23 +#, php-format +msgid "Welcome to %s" +msgstr "Benvenuto su %s" + +#: ../../mod/regmod.php:10 +msgid "Please login." +msgstr "Accedi." + +#: ../../mod/regmod.php:54 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" + +#: ../../mod/regmod.php:92 ../../mod/register.php:310 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli registrazione per %s" + +#: ../../mod/regmod.php:96 +msgid "Account approved." +msgstr "Account approvato." #: ../../mod/profiles.php:21 ../../mod/profiles.php:234 -#: ../../../mod/profiles.php:339 ../../../mod/dfrn_confirm.php:62 -#: ../../../mod/profiles.php:21 ../../mod/dfrn_confirm.php:62 -#: ../../mod/profiles.php:21 ../../mod/profiles.php:339 -#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:21 -#: ../../mod/profiles.php:234 ../../mod/profiles.php:339 +#: ../../mod/profiles.php:339 ../../mod/dfrn_confirm.php:62 msgid "Profile not found." msgstr "Profilo non trovato." -#: ../../mod/profiles.php:28 ../../mod/profiles.php:28 ../../mod/profiles.php:28 +#: ../../mod/profiles.php:28 msgid "Profile Name is required." -msgstr "Il Nome del Profilo è richieso." +msgstr "Il Nome Profilo è richiesto ." -#: ../../mod/profiles.php:196 ../../mod/profiles.php:196 #: ../../mod/profiles.php:196 msgid "Profile updated." msgstr "Profilo aggiornato." -#: ../../mod/profiles.php:251 ../../mod/profiles.php:251 #: ../../mod/profiles.php:251 msgid "Profile deleted." -msgstr "Profilo cancellato." +msgstr "Profilo elminato." -#: ../../mod/profiles.php:267 ../../mod/profiles.php:298 -#: ../../../mod/profiles.php:267 ../../mod/profiles.php:267 #: ../../mod/profiles.php:267 ../../mod/profiles.php:298 msgid "Profile-" msgstr "Profilo-" -#: ../../mod/profiles.php:286 ../../mod/profiles.php:325 -#: ../../../mod/profiles.php:286 ../../mod/profiles.php:286 #: ../../mod/profiles.php:286 ../../mod/profiles.php:325 msgid "New profile created." msgstr "Nuovo profilo creato." -#: ../../mod/profiles.php:304 ../../mod/profiles.php:304 #: ../../mod/profiles.php:304 msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il profilo." +msgstr "Impossibile duplicare il plrofilo." -#: ../../mod/profiles.php:367 ../../mod/profiles.php:367 #: ../../mod/profiles.php:367 msgid "" "This is your public profile.
It may " "be visible to anybody using the internet." msgstr "" -"Questo è il tuo profilo " -"pubblico.
Potrebbe essere visibile a " -"chiunque attraverso internet." +"Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet." -#: ../../mod/profiles.php:377 ../../mod/profiles.php:377 #: ../../mod/profiles.php:377 msgid "Age: " -msgstr "Età:" +msgstr "Età : " -#: ../../mod/profiles.php:418 ../../mod/profiles.php:418 #: ../../mod/profiles.php:418 msgid "Profile Image" -msgstr "Immagine del profilo" +msgstr "Immagine del Profilo" -#: ../../mod/lostpass.php:39 ../../mod/dfrn_confirm.php:649 -#: ../../mod/dfrn_notify.php:177 ../../mod/dfrn_notify.php:389 -#: ../../mod/regmod.php:93 ../../mod/register.php:311 -#: ../../mod/register.php:348 ../../../mod/dfrn_request.php:545 -#: ../../../include/items.php:1350 ../../../mod/lostpass.php:39 -#: ../../mod/dfrn_notify.php:177 ../../mod/item.php:423 -#: ../../mod/lostpass.php:39 ../../mod/regmod.php:93 -#: ../../mod/dfrn_request.php:545 ../../mod/register.php:311 -#: ../../include/items.php:1350 ../../mod/dfrn_notify.php:177 -#: ../../mod/regmod.php:93 ../../mod/register.php:348 ../include/items.php:1350 -#: ../../mod/lostpass.php:39 ../../mod/dfrn_confirm.php:649 -#: ../../mod/dfrn_notify.php:389 ../../mod/item.php:423 -#: ../../mod/dfrn_request.php:545 -msgid "Administrator" -msgstr "Amministratore" - -#: ../../mod/notifications.php:28 ../../mod/notifications.php:28 -#: ../../mod/notifications.php:28 -msgid "Invalid request identifier." -msgstr "Indentificativo richiesta non valido." - -#: ../../mod/notifications.php:31 ../../mod/notifications.php:134 -#: ../../mod/notifications.php:31 ../../mod/notifications.php:31 -#: ../../mod/notifications.php:31 ../../mod/notifications.php:134 -msgid "Discard" -msgstr "Rimuovi" - -#: ../../mod/notifications.php:41 ../../mod/notifications.php:133 -#: ../../mod/notifications.php:41 ../../mod/notifications.php:41 -#: ../../mod/notifications.php:41 ../../mod/notifications.php:133 -msgid "Ignore" -msgstr "Ignora" - -#: ../../mod/notifications.php:72 ../../mod/notifications.php:72 -#: ../../mod/notifications.php:72 -msgid "Show Ignored Requests" -msgstr "Mostra Richieste Ignorate" - -#: ../../mod/notifications.php:72 ../../mod/notifications.php:72 -#: ../../mod/notifications.php:72 -msgid "Hide Ignored Requests" -msgstr "Nascondi Richieste Ignorate" - -#: ../../mod/notifications.php:105 ../../mod/notifications.php:105 -#: ../../mod/notifications.php:105 -msgid "Claims to be known to you: " -msgstr "Dice di conoscerti:" - -#: ../../mod/notifications.php:105 ../../mod/notifications.php:105 -#: ../../mod/notifications.php:105 -msgid "yes" -msgstr "si" - -#: ../../mod/notifications.php:105 ../../mod/notifications.php:105 -#: ../../mod/notifications.php:105 -msgid "no" -msgstr "no" - -#: ../../mod/notifications.php:111 ../../mod/notifications.php:111 -#: ../../mod/notifications.php:111 -msgid "Approve as: " -msgstr "Approva come:" - -#: ../../mod/notifications.php:112 ../../mod/notifications.php:112 -#: ../../mod/notifications.php:112 -msgid "Friend" -msgstr "Amico" - -#: ../../mod/notifications.php:113 ../../mod/notifications.php:113 -#: ../../mod/notifications.php:113 -msgid "Fan/Admirer" -msgstr "Fan/Ammiratore" - -#: ../../mod/notifications.php:120 ../../mod/notifications.php:120 -#: ../../mod/notifications.php:120 -msgid "Notification type: " -msgstr "Tipo di notifica:" - -#: ../../mod/notifications.php:121 ../../mod/notifications.php:121 -#: ../../mod/notifications.php:121 -msgid "Friend/Connect Request" -msgstr "Amico/Richiesta di Connessione" - -#: ../../mod/notifications.php:121 ../../mod/notifications.php:121 -#: ../../mod/notifications.php:121 -msgid "New Follower" -msgstr "Nuovo seguace" - -#: ../../mod/notifications.php:131 ../../mod/notifications.php:131 -#: ../../mod/notifications.php:131 -msgid "Approve" -msgstr "Approva" - -#: ../../mod/notifications.php:140 ../../mod/notifications.php:140 -#: ../../mod/notifications.php:140 -msgid "No notifications." -msgstr "Nessuna notifica." - -#: ../../mod/notifications.php:164 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:164 -msgid "No registrations." -msgstr "Nessuna registrazione." - -#: ../../mod/install.php:30 ../../mod/install.php:30 ../../mod/install.php:30 -msgid "Could not create/connect to database." -msgstr "Nono posso creare/connettermi al database." - -#: ../../mod/install.php:35 ../../mod/install.php:35 ../../mod/install.php:35 -msgid "Connected to database." -msgstr "Connesso al database." - -#: ../../mod/install.php:66 ../../mod/install.php:66 ../../mod/install.php:66 -msgid "Database import succeeded." -msgstr "Importazione del database riuscita." - -#: ../../mod/install.php:67 ../../mod/install.php:67 ../../mod/install.php:67 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -msgstr "" -"IMPORTANTE: Dovrai impostare [manualmente] un operazione pianificata per il " -"poller." - -#: ../../mod/install.php:68 ../../mod/install.php:75 ../../mod/install.php:175 -#: ../../mod/install.php:68 ../../mod/install.php:68 ../../mod/install.php:68 -#: ../../mod/install.php:75 ../../mod/install.php:175 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Guarda il file \"INSTALL.txt\"." - -#: ../../mod/install.php:73 ../../mod/install.php:73 ../../mod/install.php:73 -msgid "Database import failed." -msgstr "Importazione del database fallita." - -#: ../../mod/install.php:74 ../../mod/install.php:74 ../../mod/install.php:74 -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:84 ../../mod/install.php:84 ../../mod/install.php:84 -msgid "Welcome to Friendika." -msgstr "Benvenuto su Friendika." - -#: ../../mod/install.php:109 ../../mod/manage.php:106 ../../mod/photos.php:800 -#: ../../mod/photos.php:857 ../../mod/photos.php:1032 ../../mod/invite.php:64 -#: ../../addon/facebook/facebook.php:151 -#: ../../../addon/randplace/randplace.php:179 -#: ../../addon/twitter/twitter.php:156 ../../addon/twitter/twitter.php:175 -#: ../../addon/statusnet/statusnet.php:163 -#: ../../addon/statusnet/statusnet.php:189 -#: ../../addon/statusnet/statusnet.php:207 ../../mod/install.php:109 -#: ../../mod/photos.php:857 ../addon/facebook/facebook.php:151 -#: ../../addon/statusnet/statusnet.php:163 -#: ../../addon/statusnet/statusnet.php:207 ../../mod/photos.php:857 -#: ../../../addon/twitter/twitter.php:156 ../addon/statusnet/statusnet.php:189 -#: ../../../addon/statusnet/statusnet.php:207 -#: ../../addon/randplace/randplace.php:179 ../addon/twitter/twitter.php:156 -#: ../addon/statusnet/statusnet.php:207 ../addon/randplace/randplace.php:179 -#: ../addon/twitter/twitter.php:175 ../addon/statusnet/statusnet.php:163 -#: ../../mod/install.php:109 ../../mod/manage.php:106 ../../mod/photos.php:800 -#: ../../mod/photos.php:857 ../../mod/photos.php:1032 ../../mod/invite.php:64 -#: ../../addon/facebook/facebook.php:151 ../../addon/twitter/twitter.php:156 -#: ../../addon/statusnet/statusnet.php:189 -#: ../../addon/statusnet/statusnet.php:207 -msgid "Submit" -msgstr "Invia" - -#: ../../mod/install.php:124 ../../mod/install.php:124 ../../mod/install.php:124 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" -"Non riesco a trovare la versione a riga di comando di PHP nel PATH del " -"server web." - -#: ../../mod/install.php:125 ../../mod/install.php:125 ../../mod/install.php:125 -msgid "" -"This is required. Please adjust the configuration file .htconfig.php " -"accordingly." -msgstr "Questo è richiesto. Sistema il file .htconfig.php di conseguenza." - -#: ../../mod/install.php:132 ../../mod/install.php:132 ../../mod/install.php:132 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" -"La versione a riga di comando di PHP nel tuo sistema non ha " -"\"register_argc_argv\" abilitato." - -#: ../../mod/install.php:133 ../../mod/install.php:133 ../../mod/install.php:133 -msgid "This is required for message delivery to work." -msgstr "E' richiesto per il funzionamento della consegna dei messaggi." - -#: ../../mod/install.php:155 ../../mod/install.php:155 ../../mod/install.php:155 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" -"Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di " -"generare le chiavi di criptazione" - -#: ../../mod/install.php:156 ../../mod/install.php:156 ../../mod/install.php:156 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "" -"Se sta girando su Windows, guarda " -"\"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/install.php:165 ../../mod/install.php:165 ../../mod/install.php:165 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" -"Errore: Il modulo mod-rewrite del server web Apache è richiesto ma non è " -"installato." - -#: ../../mod/install.php:167 ../../mod/install.php:167 ../../mod/install.php:167 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: Il modulo libCURL di PHP è richiesto ma non è installato." - -#: ../../mod/install.php:169 ../../mod/install.php:169 ../../mod/install.php:169 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" -"Errore: Il modulo GD graphics di PHP, con supporto JPEG, è richiesto ma non " -"è installato." - -#: ../../mod/install.php:171 ../../mod/install.php:171 ../../mod/install.php:171 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: Il modulo openssl di PHP è richiesto ma non è installato." - -#: ../../mod/install.php:173 ../../mod/install.php:173 ../../mod/install.php:173 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Errore: Il modulo mysqli di PHP è richiesto ma non è installato." - -#: ../../mod/install.php:184 ../../mod/install.php:184 ../../mod/install.php:184 -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 "" - -#: ../../mod/install.php:185 ../../mod/install.php:185 ../../mod/install.php:185 -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 "" - -#: ../../mod/install.php:186 ../../mod/install.php:186 ../../mod/install.php:186 -msgid "" -"Please check with your site documentation or support people to see if this " -"situation can be corrected." -msgstr "" - -#: ../../mod/install.php:187 ../../mod/install.php:187 ../../mod/install.php:187 -msgid "" -"If not, you may be required to perform a manual installation. Please see the " -"file \"INSTALL.txt\" for instructions." -msgstr "" - -#: ../../mod/install.php:196 ../../mod/install.php:196 ../../mod/install.php:196 -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 "" - -#: ../../mod/install.php:211 ../../mod/install.php:211 ../../mod/install.php:211 -msgid "Errors encountered creating database tables." -msgstr "" - -#: ../../mod/message.php:18 ../../mod/message.php:18 ../../mod/message.php:18 -msgid "No recipient selected." -msgstr "" - -#: ../../mod/message.php:23 ../../mod/message.php:23 ../../mod/message.php:23 -msgid "[no subject]" -msgstr "" - -#: ../../mod/message.php:34 ../../mod/message.php:34 ../../mod/message.php:34 -msgid "Unable to locate contact information." -msgstr "" - -#: ../../mod/message.php:93 ../../mod/wall_upload.php:79 -#: ../../mod/wall_upload.php:88 ../../mod/wall_upload.php:95 -#: ../../../mod/item.php:184 ../../mod/message.php:93 -#: ../../mod/wall_upload.php:95 ../../mod/wall_upload.php:88 -#: ../../mod/message.php:93 ../../mod/item.php:184 ../../mod/wall_upload.php:88 -#: ../../mod/wall_upload.php:79 ../../mod/item.php:184 -msgid "Wall Photos" -msgstr "" - -#: ../../mod/message.php:102 ../../mod/message.php:102 ../../mod/message.php:102 -msgid "Message sent." -msgstr "" - -#: ../../mod/message.php:105 ../../mod/message.php:105 ../../mod/message.php:105 -msgid "Message could not be sent." -msgstr "" - -#: ../../mod/message.php:125 ../include/nav.php:100 ../../mod/message.php:125 -#: ../../mod/message.php:125 ../../include/nav.php:100 -msgid "Messages" -msgstr "" - -#: ../../mod/message.php:126 ../../mod/message.php:126 ../../mod/message.php:126 -msgid "Inbox" -msgstr "" - -#: ../../mod/message.php:127 ../../mod/message.php:127 ../../mod/message.php:127 -msgid "Outbox" -msgstr "" - -#: ../../mod/message.php:128 ../../mod/message.php:128 ../../mod/message.php:128 -msgid "New Message" -msgstr "" - -#: ../../mod/message.php:142 ../../mod/message.php:142 ../../mod/message.php:142 -msgid "Message deleted." -msgstr "" - -#: ../../mod/message.php:158 ../../mod/message.php:158 ../../mod/message.php:158 -msgid "Conversation removed." -msgstr "" - -#: ../../mod/message.php:177 ../../mod/message.php:177 ../../mod/message.php:177 -msgid "Send Private Message" -msgstr "" - -#: ../../mod/message.php:178 ../../mod/message.php:312 -#: ../../mod/message.php:178 ../../mod/message.php:178 ../../mod/message.php:312 -msgid "To:" -msgstr "" - -#: ../../mod/message.php:179 ../../mod/message.php:313 -#: ../../mod/message.php:179 ../../mod/message.php:179 ../../mod/message.php:313 -msgid "Subject:" -msgstr "" - -#: ../../mod/message.php:182 ../../mod/message.php:316 ../../mod/invite.php:59 -#: ../../mod/message.php:182 ../../mod/message.php:182 -#: ../../mod/message.php:182 ../../mod/message.php:316 ../../mod/invite.php:59 -msgid "Your message:" -msgstr "" - -#: ../../mod/message.php:221 ../../mod/message.php:221 ../../mod/message.php:221 -msgid "No messages." -msgstr "" - -#: ../../mod/message.php:234 ../../mod/message.php:234 ../../mod/message.php:234 -msgid "Delete conversation" -msgstr "" - -#: ../../mod/message.php:264 ../../mod/message.php:264 ../../mod/message.php:264 -msgid "Message not available." -msgstr "" - -#: ../../mod/message.php:301 ../../mod/message.php:301 ../../mod/message.php:301 -msgid "Delete message" -msgstr "" - -#: ../../mod/message.php:311 ../../mod/message.php:311 ../../mod/message.php:311 -msgid "Send Reply" -msgstr "" - -#: ../../mod/directory.php:32 ../../mod/directory.php:32 -#: ../../mod/directory.php:32 -msgid "Global Directory" -msgstr "" - -#: ../../mod/directory.php:38 ../../mod/contacts.php:307 -#: ../../../mod/directory.php:38 ../../mod/directory.php:38 -#: ../../mod/directory.php:38 ../../mod/contacts.php:307 -msgid "Finding: " -msgstr "" - -#: ../../mod/manage.php:37 ../../mod/openid.php:73 ../include/auth.php:194 -#: ../../mod/openid.php:73 ../../include/auth.php:194 -msgid "Welcome back " -msgstr "" - -#: ../../mod/manage.php:87 ../../mod/manage.php:87 ../../mod/manage.php:87 -msgid "Manage Identities and/or Pages" -msgstr "" - -#: ../../mod/manage.php:90 ../../mod/manage.php:90 ../../mod/manage.php:90 -msgid "" -"(Toggle between different identities or community/group pages which share " -"your account details.)" -msgstr "" - -#: ../../mod/manage.php:92 ../../mod/manage.php:92 ../../mod/manage.php:92 -msgid "Select an identity to manage: " -msgstr "" - -#: ../../mod/dfrn_poll.php:78 ../../mod/dfrn_poll.php:392 -msgid " welcomes " -msgstr "" - -#: ../../mod/dfrn_confirm.php:114 ../../mod/contacts.php:209 -#: ../../mod/dfrn_confirm.php:114 ../../mod/dfrn_confirm.php:114 -#: ../../mod/dfrn_confirm.php:114 ../../mod/contacts.php:209 -msgid "Contact not found." -msgstr "" - -#: ../../mod/dfrn_confirm.php:231 ../../mod/dfrn_confirm.php:231 -#: ../../mod/dfrn_confirm.php:231 -msgid "Response from remote site was not understood." -msgstr "" - -#: ../../mod/dfrn_confirm.php:240 ../../mod/dfrn_confirm.php:240 -#: ../../mod/dfrn_confirm.php:240 -msgid "Unexpected response from remote site: " -msgstr "" - -#: ../../mod/dfrn_confirm.php:248 ../../mod/dfrn_confirm.php:248 -#: ../../mod/dfrn_confirm.php:248 -msgid "Confirmation completed successfully." -msgstr "" - -#: ../../mod/dfrn_confirm.php:250 ../../mod/dfrn_confirm.php:264 -#: ../../mod/dfrn_confirm.php:271 ../../mod/dfrn_confirm.php:250 -#: ../../mod/dfrn_confirm.php:271 ../../mod/dfrn_confirm.php:271 -#: ../../mod/dfrn_confirm.php:250 ../../mod/dfrn_confirm.php:264 -#: ../../mod/dfrn_confirm.php:271 -msgid "Remote site reported: " -msgstr "" - -#: ../../mod/dfrn_confirm.php:262 ../../mod/dfrn_confirm.php:262 -#: ../../mod/dfrn_confirm.php:262 -msgid "Temporary failure. Please wait and try again." -msgstr "" - -#: ../../mod/dfrn_confirm.php:269 ../../mod/dfrn_confirm.php:269 -#: ../../mod/dfrn_confirm.php:269 -msgid "Introduction failed or was revoked." -msgstr "" - -#: ../../mod/dfrn_confirm.php:387 ../../mod/dfrn_confirm.php:387 -#: ../../mod/dfrn_confirm.php:387 -msgid "Unable to set contact photo." -msgstr "" - -#: ../../mod/dfrn_confirm.php:426 ../../mod/dfrn_confirm.php:426 -#: ../../mod/dfrn_confirm.php:426 -msgid "is now friends with" -msgstr "" - -#: ../../mod/dfrn_confirm.php:494 ../../mod/dfrn_confirm.php:494 -#: ../../mod/dfrn_confirm.php:494 -#, php-format -msgid "No user record found for '%s' " -msgstr "" - -#: ../../mod/dfrn_confirm.php:504 ../../mod/dfrn_confirm.php:504 -#: ../../mod/dfrn_confirm.php:504 -msgid "Our site encryption key is apparently messed up." -msgstr "" - -#: ../../mod/dfrn_confirm.php:515 ../../mod/dfrn_confirm.php:515 -#: ../../mod/dfrn_confirm.php:515 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "" - -#: ../../mod/dfrn_confirm.php:527 ../../mod/dfrn_confirm.php:527 -#: ../../mod/dfrn_confirm.php:527 -msgid "Contact record was not found for you on our site." -msgstr "" - -#: ../../mod/dfrn_confirm.php:555 ../../mod/dfrn_confirm.php:555 -#: ../../mod/dfrn_confirm.php:555 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "" - -#: ../../mod/dfrn_confirm.php:566 ../../mod/dfrn_confirm.php:566 -#: ../../mod/dfrn_confirm.php:566 -msgid "Unable to set your contact credentials on our system." -msgstr "" - -#: ../../mod/dfrn_confirm.php:619 ../../mod/dfrn_confirm.php:619 -#: ../../mod/dfrn_confirm.php:619 -msgid "Unable to update your contact profile details on our system" -msgstr "" - -#: ../../mod/dfrn_confirm.php:648 ../../mod/dfrn_confirm.php:648 -#: ../../mod/dfrn_confirm.php:648 -#, php-format -msgid "Connection accepted at %s" -msgstr "" - -#: ../../mod/wall_upload.php:56 ../../mod/photos.php:558 -#: ../../mod/profile_photo.php:109 ../addon/js_upload/js_upload.php:306 -#: ../../mod/photos.php:558 ../../addon/js_upload/js_upload.php:306 -msgid "Image exceeds size limit of " -msgstr "" - -#: ../../mod/wall_upload.php:65 ../../mod/photos.php:570 -#: ../../mod/profile_photo.php:118 ../../mod/wall_upload.php:65 -#: ../../mod/profile_photo.php:118 ../../mod/profile_photo.php:118 -#: ../../mod/wall_upload.php:65 ../../mod/photos.php:570 -#: ../../mod/profile_photo.php:118 -msgid "Unable to process image." -msgstr "" - -#: ../../mod/wall_upload.php:82 ../../mod/photos.php:588 -#: ../../mod/profile_photo.php:230 ../../mod/wall_upload.php:82 -#: ../../mod/profile_photo.php:230 ../../mod/profile_photo.php:230 -#: ../../mod/wall_upload.php:82 ../../mod/photos.php:588 -#: ../../mod/profile_photo.php:230 -msgid "Image upload failed." -msgstr "" - -#: ../../mod/display.php:15 ../../mod/display.php:307 ../../mod/item.php:546 -#: ../../mod/display.php:15 ../../mod/display.php:15 ../../mod/display.php:15 -#: ../../mod/display.php:307 ../../mod/item.php:546 -msgid "Item not found." -msgstr "" - -#: ../../mod/display.php:300 ../../mod/display.php:300 ../../mod/display.php:300 -msgid "Item has been removed." -msgstr "" - -#: ../../mod/lockview.php:39 ../../mod/lockview.php:39 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "" - -#: ../../mod/lockview.php:43 ../../mod/lockview.php:43 ../../mod/lockview.php:43 -msgid "Visible to:" -msgstr "" - -#: ../../mod/dfrn_notify.php:179 ../../mod/dfrn_notify.php:179 -#: ../../mod/dfrn_notify.php:179 -msgid "noreply" -msgstr "" - -#: ../../mod/dfrn_notify.php:237 ../../mod/dfrn_notify.php:237 -#: ../../mod/dfrn_notify.php:237 -msgid "New mail received at " -msgstr "" - -#: ../../mod/dfrn_notify.php:388 ../../mod/dfrn_notify.php:474 -#: ../../mod/dfrn_notify.php:388 ../../mod/dfrn_notify.php:388 -#: ../../mod/dfrn_notify.php:388 ../../mod/dfrn_notify.php:474 -#, php-format -msgid "%s commented on an item at %s" -msgstr "" - -#: ../../mod/dfrn_notify.php:475 ../../mod/item.php:423 ../../mod/item.php:446 -#: ../../mod/dfrn_notify.php:475 ../../mod/dfrn_notify.php:475 -#: ../../mod/dfrn_notify.php:475 -msgid "From: Administrator@" -msgstr "" - -#: ../../mod/removeme.php:42 ../../mod/removeme.php:45 -#: ../../mod/removeme.php:42 ../../mod/removeme.php:42 ../../mod/removeme.php:45 -msgid "Remove My Account" -msgstr "" - -#: ../../mod/removeme.php:43 ../../mod/removeme.php:43 ../../mod/removeme.php:43 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "" - -#: ../../mod/removeme.php:44 ../../mod/removeme.php:44 ../../mod/removeme.php:44 -msgid "Please enter your password for verification:" -msgstr "" - -#: ../../mod/home.php:23 -msgid "Welcome to " -msgstr "" - -#: ../../mod/regmod.php:10 ../../mod/regmod.php:10 ../../mod/regmod.php:10 -msgid "Please login." -msgstr "" - -#: ../../mod/regmod.php:54 -msgid "Registration revoked for " -msgstr "" - -#: ../../mod/regmod.php:92 ../../mod/register.php:310 -msgid "Registration details for " -msgstr "" - -#: ../../mod/regmod.php:96 ../../mod/regmod.php:96 ../../mod/regmod.php:96 -msgid "Account approved." -msgstr "" - -#: ../../mod/apps.php:6 ../../mod/apps.php:6 ../../mod/apps.php:6 -msgid "Applications" -msgstr "" - -#: ../../mod/photos.php:30 ../../mod/photos.php:30 ../../mod/photos.php:30 -msgid "Photo Albums" -msgstr "" - -#: ../../mod/photos.php:34 ../../mod/photos.php:106 ../../mod/photos.php:780 -#: ../../mod/photos.php:849 ../../mod/photos.php:864 ../../mod/photos.php:1198 -#: ../../mod/photos.php:1209 ../include/Photo.php:225 -#: ../../../include/Photo.php:232 ../../../include/Photo.php:239 -#: ../../../include/items.php:959 ../../include/items.php:962 -#: ../../include/items.php:965 ../../mod/photos.php:34 -#: ../../../mod/photos.php:849 ../../mod/photos.php:1209 -#: ../include/Photo.php:239 ../../mod/photos.php:849 ../include/items.php:965 -#: ../../mod/photos.php:1209 ../../include/Photo.php:232 -#: ../include/items.php:959 ../include/items.php:962 ../../mod/photos.php:849 -#: ../include/Photo.php:232 ../../mod/photos.php:34 ../../mod/photos.php:106 -#: ../../mod/photos.php:780 ../../mod/photos.php:864 ../../mod/photos.php:1198 -#: ../../include/Photo.php:225 ../../include/Photo.php:239 -#: ../../include/items.php:959 ../../include/items.php:965 -msgid "Contact Photos" -msgstr "" - -#: ../../mod/photos.php:95 ../../mod/photos.php:95 ../../mod/photos.php:95 -msgid "Contact information unavailable" -msgstr "" - -#: ../../mod/photos.php:106 ../../mod/photos.php:530 ../../mod/photos.php:849 -#: ../../mod/photos.php:864 ../../mod/profile_photo.php:58 -#: ../../mod/profile_photo.php:65 ../../mod/profile_photo.php:72 -#: ../../mod/profile_photo.php:155 ../../mod/profile_photo.php:225 -#: ../../mod/profile_photo.php:234 ../../mod/register.php:267 -#: ../../mod/register.php:274 ../../mod/register.php:281 -#: ../../mod/photos.php:106 ../../../mod/photos.php:864 -#: ../../mod/profile_photo.php:65 ../../../mod/profile_photo.php:155 -#: ../../mod/profile_photo.php:234 ../../../mod/register.php:274 -#: ../../mod/photos.php:864 ../../mod/profile_photo.php:155 -#: ../../mod/register.php:274 ../../mod/profile_photo.php:155 -#: ../../mod/photos.php:106 ../../mod/photos.php:864 -#: ../../mod/profile_photo.php:65 ../../mod/profile_photo.php:234 -#: ../../mod/register.php:274 ../../mod/photos.php:530 ../../mod/photos.php:849 -#: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:72 -#: ../../mod/profile_photo.php:225 ../../mod/register.php:267 -#: ../../mod/register.php:281 -msgid "Profile Photos" -msgstr "" - -#: ../../mod/photos.php:116 ../../mod/photos.php:116 ../../mod/photos.php:116 -msgid "Album not found." -msgstr "" - -#: ../../mod/photos.php:134 ../../mod/photos.php:858 ../../mod/photos.php:134 -#: ../../mod/photos.php:134 ../../mod/photos.php:858 -msgid "Delete Album" -msgstr "" - -#: ../../mod/photos.php:197 ../../mod/photos.php:1033 ../../mod/photos.php:197 -#: ../../mod/photos.php:197 ../../mod/photos.php:1033 -msgid "Delete Photo" -msgstr "" - -#: ../../mod/photos.php:468 ../../mod/photos.php:468 ../../mod/photos.php:468 -msgid "was tagged in a" -msgstr "" - -#: ../../mod/photos.php:468 ../../mod/like.php:110 ../../mod/photos.php:468 -#: ../../mod/photos.php:468 ../../mod/like.php:110 -msgid "photo" -msgstr "" - -#: ../../mod/photos.php:468 ../../mod/photos.php:468 ../../mod/photos.php:468 -msgid "by" -msgstr "" - -#: ../../mod/photos.php:660 ../../mod/photos.php:660 ../../mod/photos.php:660 -msgid "No photos selected" -msgstr "" - -#: ../../mod/photos.php:807 ../../mod/photos.php:807 ../../mod/photos.php:807 -msgid "Upload Photos" -msgstr "" - -#: ../../mod/photos.php:810 ../../mod/photos.php:853 ../../mod/photos.php:810 -#: ../../mod/photos.php:810 ../../mod/photos.php:853 -msgid "New album name: " -msgstr "" - -#: ../../mod/photos.php:811 ../../mod/photos.php:811 ../../mod/photos.php:811 -msgid "or existing album name: " -msgstr "" - -#: ../../mod/photos.php:813 ../../mod/photos.php:1028 ../../mod/photos.php:813 -#: ../../mod/photos.php:813 ../../mod/photos.php:1028 -msgid "Permissions" -msgstr "" - -#: ../../mod/photos.php:868 ../../mod/photos.php:868 ../../mod/photos.php:868 -msgid "Edit Album" -msgstr "" - -#: ../../mod/photos.php:878 ../../mod/photos.php:1228 ../../mod/photos.php:878 -#: ../../mod/photos.php:878 ../../mod/photos.php:1228 -msgid "View Photo" -msgstr "" - -#: ../../mod/photos.php:908 ../../mod/photos.php:908 ../../mod/photos.php:908 -msgid "Photo not available" -msgstr "" - -#: ../../mod/photos.php:929 ../../mod/photos.php:929 ../../mod/photos.php:929 -msgid "Edit photo" -msgstr "" - -#: ../../mod/photos.php:931 ../../mod/photos.php:931 ../../mod/photos.php:931 -msgid "Use as profile photo" -msgstr "" - -#: ../../mod/photos.php:944 ../../mod/photos.php:944 ../../mod/photos.php:944 -msgid "View Full Size" -msgstr "" - -#: ../../mod/photos.php:1002 ../../mod/photos.php:1002 ../../mod/photos.php:1002 -msgid "Tags: " -msgstr "" - -#: ../../mod/photos.php:1012 ../../mod/photos.php:1012 ../../mod/photos.php:1012 -msgid "[Remove any tag]" -msgstr "" - -#: ../../mod/photos.php:1021 ../../mod/photos.php:1021 ../../mod/photos.php:1021 -msgid "New album name" -msgstr "" - -#: ../../mod/photos.php:1024 ../../mod/photos.php:1024 ../../mod/photos.php:1024 -msgid "Caption" -msgstr "" - -#: ../../mod/photos.php:1026 ../../mod/photos.php:1026 ../../mod/photos.php:1026 -msgid "Add a Tag" -msgstr "" - -#: ../../mod/photos.php:1030 ../../mod/photos.php:1030 ../../mod/photos.php:1030 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "" - -#: ../../mod/photos.php:1214 ../../mod/photos.php:1214 ../../mod/photos.php:1214 -msgid "Recent Photos" -msgstr "" - -#: ../../mod/photos.php:1218 ../../mod/photos.php:1218 ../../mod/photos.php:1218 -msgid "Upload New Photos" -msgstr "" - -#: ../../mod/photos.php:1234 ../../mod/photos.php:1234 ../../mod/photos.php:1234 -msgid "View Album" -msgstr "" - -#: ../../mod/profile.php:8 ../boot.php:2200 ../../mod/profile.php:8 -#: ../../mod/profile.php:8 ../../boot.php:2200 -msgid "No profile" -msgstr "" - -#: ../../mod/viewcontacts.php:17 ../boot.php:2028 -#: ../../../mod/viewcontacts.php:17 ../../mod/viewcontacts.php:17 -#: ../../mod/viewcontacts.php:17 ../../boot.php:2028 -msgid "View Contacts" -msgstr "" - -#: ../../mod/viewcontacts.php:32 ../../mod/viewcontacts.php:32 -#: ../../mod/viewcontacts.php:32 -msgid "No contacts." -msgstr "" - -#: ../../mod/viewcontacts.php:44 -msgid "Visit " -msgstr "" - -#: ../../mod/viewcontacts.php:44 -msgid "'s profile" -msgstr "" - -#: ../../mod/settings.php:37 ../../mod/settings.php:37 ../../mod/settings.php:37 +#: ../../mod/settings.php:37 msgid "Passwords do not match. Password unchanged." -msgstr "" +msgstr "Le password non corrispondono. Passoword non cambiata." -#: ../../mod/settings.php:42 ../../mod/settings.php:42 ../../mod/settings.php:42 +#: ../../mod/settings.php:42 msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" +msgstr "Password vuote non sono consentite. Password non cambiata." -#: ../../mod/settings.php:53 ../../mod/settings.php:53 ../../mod/settings.php:53 +#: ../../mod/settings.php:53 msgid "Password changed." -msgstr "" +msgstr "Password cambiata." -#: ../../mod/settings.php:55 ../../mod/settings.php:55 ../../mod/settings.php:55 +#: ../../mod/settings.php:55 msgid "Password update failed. Please try again." -msgstr "" +msgstr "Aggiornamento password fallito. Prova ancora." -#: ../../mod/settings.php:95 ../../mod/settings.php:95 ../../mod/settings.php:95 +#: ../../mod/settings.php:95 msgid " Please use a shorter name." -msgstr "" +msgstr " Usa un nome più corto." -#: ../../mod/settings.php:97 ../../mod/settings.php:97 ../../mod/settings.php:97 +#: ../../mod/settings.php:97 msgid " Name too short." -msgstr "" +msgstr " Nome troppo corto." -#: ../../mod/settings.php:103 ../../mod/settings.php:103 #: ../../mod/settings.php:103 msgid " Not valid email." -msgstr "" +msgstr " Email non valida." -#: ../../mod/settings.php:105 ../../mod/settings.php:105 #: ../../mod/settings.php:105 msgid " Cannot change to that email." -msgstr "" +msgstr "Non puoi usare quella email." -#: ../../mod/settings.php:161 ../../mod/settings.php:161 #: ../../mod/settings.php:161 msgid "Settings updated." -msgstr "" +msgstr "Impostazioni aggiornate." -#: ../../mod/settings.php:211 ../../mod/settings.php:211 #: ../../mod/settings.php:211 msgid "Plugin Settings" -msgstr "" +msgstr "Impostazioni Plugin" -#: ../../mod/settings.php:212 ../../mod/settings.php:212 #: ../../mod/settings.php:212 msgid "Account Settings" -msgstr "" +msgstr "Impostazioni Account" -#: ../../mod/settings.php:218 ../../mod/settings.php:218 #: ../../mod/settings.php:218 msgid "No Plugin settings configured" -msgstr "" +msgstr "Nessun Plugin ha delle configurazioni che puoi modificare" -#: ../../mod/settings.php:263 ../../mod/settings.php:263 #: ../../mod/settings.php:263 msgid "OpenID: " -msgstr "" +msgstr "OpenID: " -#: ../../mod/settings.php:263 ../../mod/settings.php:263 #: ../../mod/settings.php:263 msgid " (Optional) Allow this OpenID to login to this account." msgstr "" +" (Opzionale) Permetti a questo OpenID di accedere a questo account." -#: ../../mod/settings.php:295 ../../mod/settings.php:295 #: ../../mod/settings.php:295 msgid "Profile is not published." -msgstr "" +msgstr "Il profilo non è pubblicato." -#: ../../mod/settings.php:352 ../../mod/settings.php:352 #: ../../mod/settings.php:352 msgid "Default Post Permissions" -msgstr "" +msgstr "Permessi di default per i messaggi" -#: ../../mod/item.php:37 ../../mod/item.php:37 ../../mod/item.php:37 -msgid "Unable to locate original post." -msgstr "" +#: ../../mod/search.php:131 ../../mod/network.php:287 +msgid "View in context" +msgstr "Vedi nel contesto" -#: ../../mod/item.php:98 ../../mod/item.php:98 ../../mod/item.php:98 -msgid "Empty post discarded." -msgstr "" +#: ../../mod/photos.php:30 +msgid "Photo Albums" +msgstr "Album Foto" -#: ../../mod/item.php:422 -msgid " commented on your item at " -msgstr "" +#: ../../mod/photos.php:34 ../../mod/photos.php:106 ../../mod/photos.php:780 +#: ../../mod/photos.php:849 ../../mod/photos.php:864 ../../mod/photos.php:1198 +#: ../../mod/photos.php:1209 ../../include/Photo.php:225 +#: ../../include/Photo.php:232 ../../include/Photo.php:239 +#: ../../include/items.php:959 ../../include/items.php:962 +#: ../../include/items.php:965 +msgid "Contact Photos" +msgstr "Foto dei contatti" -#: ../../mod/item.php:445 -msgid " posted on your profile wall at " -msgstr "" +#: ../../mod/photos.php:95 +msgid "Contact information unavailable" +msgstr "Informazione sul contatto non disponibile" -#: ../../mod/item.php:471 ../../mod/item.php:471 ../../mod/item.php:471 -msgid "System error. Post not saved." -msgstr "" +#: ../../mod/photos.php:116 +msgid "Album not found." +msgstr "Album non trovato." -#: ../../mod/item.php:489 -msgid "This message was sent to you by " -msgstr "" +#: ../../mod/photos.php:134 ../../mod/photos.php:858 +msgid "Delete Album" +msgstr "Elimina album" -#: ../../mod/item.php:490 -msgid ", a member of the Friendika social network." -msgstr "" +#: ../../mod/photos.php:197 ../../mod/photos.php:1033 +msgid "Delete Photo" +msgstr "Elimina foto" -#: ../../mod/item.php:491 ../../mod/item.php:491 ../../mod/item.php:491 -msgid "You may visit them online at" -msgstr "" +#: ../../mod/photos.php:468 +msgid "was tagged in a" +msgstr "è stato taggato in" -#: ../../mod/item.php:493 ../../mod/item.php:493 ../../mod/item.php:493 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "" +#: ../../mod/photos.php:468 ../../mod/like.php:110 +msgid "photo" +msgstr "foto" -#: ../../mod/item.php:495 -msgid "posted an update." -msgstr "" +#: ../../mod/photos.php:468 +msgid "by" +msgstr "da" -#: ../../mod/search.php:17 ../include/nav.php:67 ../boot.php:2045 -#: ../../mod/search.php:17 ../../mod/search.php:17 ../../mod/search.php:17 -#: ../../include/nav.php:67 ../../boot.php:2045 -msgid "Search" -msgstr "" +#: ../../mod/photos.php:558 ../../addon/js_upload/js_upload.php:306 +msgid "Image exceeds size limit of " +msgstr "L'immagine supera il limite di dimensione di " -#: ../../mod/profile_photo.php:28 ../../mod/profile_photo.php:28 -#: ../../mod/profile_photo.php:28 -msgid "Image uploaded but image cropping failed." -msgstr "" +#: ../../mod/photos.php:660 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" -#: ../../mod/profile_photo.php:61 -msgid "Image size reduction [175] failed." -msgstr "" +#: ../../mod/photos.php:807 +msgid "Upload Photos" +msgstr "Carica foto" -#: ../../mod/profile_photo.php:68 -msgid "Image size reduction [80] failed." -msgstr "" +#: ../../mod/photos.php:810 ../../mod/photos.php:853 +msgid "New album name: " +msgstr "Nome nuovo album: " -#: ../../mod/profile_photo.php:75 -msgid "Image size reduction [48] failed." -msgstr "" +#: ../../mod/photos.php:811 +msgid "or existing album name: " +msgstr "o nome di un album esistente: " -#: ../../mod/profile_photo.php:95 ../../mod/profile_photo.php:95 -#: ../../mod/profile_photo.php:95 -msgid "Unable to process image" -msgstr "" +#: ../../mod/photos.php:813 ../../mod/photos.php:1028 +msgid "Permissions" +msgstr "Permessi" -#: ../../mod/profile_photo.php:228 ../../mod/profile_photo.php:228 -#: ../../mod/profile_photo.php:228 -msgid "Image uploaded successfully." -msgstr "" +#: ../../mod/photos.php:868 +msgid "Edit Album" +msgstr "Modifica album" -#: ../../mod/profile_photo.php:237 -msgid "Image size reduction [640] failed." -msgstr "" +#: ../../mod/photos.php:878 ../../mod/photos.php:1228 +msgid "View Photo" +msgstr "Vedi foto" -#: ../../mod/group.php:27 ../../mod/group.php:27 ../../mod/group.php:27 -msgid "Group created." -msgstr "" +#: ../../mod/photos.php:908 +msgid "Photo not available" +msgstr "Foto non disponibile" -#: ../../mod/group.php:33 ../../mod/group.php:33 ../../mod/group.php:33 -msgid "Could not create group." -msgstr "" +#: ../../mod/photos.php:929 +msgid "Edit photo" +msgstr "Modifica foto" -#: ../../mod/group.php:43 ../../mod/group.php:123 ../../mod/group.php:43 -#: ../../mod/group.php:43 ../../mod/group.php:123 -msgid "Group not found." -msgstr "" +#: ../../mod/photos.php:931 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" -#: ../../mod/group.php:56 ../../mod/group.php:56 ../../mod/group.php:56 -msgid "Group name changed." -msgstr "" +#: ../../mod/photos.php:944 +msgid "View Full Size" +msgstr "Vedi dimensione intera" -#: ../../mod/group.php:79 ../../mod/group.php:79 ../../mod/group.php:79 -msgid "Membership list updated." -msgstr "" +#: ../../mod/photos.php:1002 +msgid "Tags: " +msgstr "Tag: " -#: ../../mod/group.php:88 ../index.php:243 ../../mod/group.php:88 -#: ../../mod/group.php:88 ../../index.php:243 -msgid "Permission denied" -msgstr "" +#: ../../mod/photos.php:1012 +msgid "[Remove any tag]" +msgstr "[Rimuovi tutti i tag]" -#: ../../mod/group.php:107 ../../mod/group.php:107 ../../mod/group.php:107 -msgid "Group removed." -msgstr "" +#: ../../mod/photos.php:1021 +msgid "New album name" +msgstr "Nuovo nome album" -#: ../../mod/group.php:109 ../../mod/group.php:109 ../../mod/group.php:109 -msgid "Unable to remove group." -msgstr "" +#: ../../mod/photos.php:1024 +msgid "Caption" +msgstr "Didascalia" -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/dfrn_request.php:628 -#: ../../addon/js_upload/js_upload.php:41 ../../mod/tagrm.php:11 -#: ../../../addon/js_upload/js_upload.php:41 -#: ../../addon/js_upload/js_upload.php:41 ../../mod/tagrm.php:11 -#: ../../mod/dfrn_request.php:628 ../addon/js_upload/js_upload.php:41 -#: ../../mod/tagrm.php:94 -msgid "Cancel" -msgstr "" +#: ../../mod/photos.php:1026 +msgid "Add a Tag" +msgstr "Aggiungi un tag" -#: ../../mod/tagrm.php:41 ../../mod/tagrm.php:41 ../../mod/tagrm.php:41 -msgid "Tag removed" +#: ../../mod/photos.php:1030 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "" +"Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: ../../mod/tagrm.php:79 ../../mod/tagrm.php:79 ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "" +#: ../../mod/photos.php:1214 +msgid "Recent Photos" +msgstr "Foto recenti" -#: ../../mod/tagrm.php:81 ../../mod/tagrm.php:81 ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "" +#: ../../mod/photos.php:1218 +msgid "Upload New Photos" +msgstr "Carica nuova foto" -#: ../../mod/tagrm.php:93 ../../mod/tagrm.php:93 ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "" +#: ../../mod/photos.php:1234 +msgid "View Album" +msgstr "Vedi album" -#: ../../mod/invite.php:28 ../../mod/invite.php:38 -msgid " : " -msgstr "" +#: ../../mod/display.php:15 ../../mod/display.php:307 ../../mod/item.php:546 +msgid "Item not found." +msgstr "Elemento non trovato." -#: ../../mod/invite.php:28 ../../mod/register.php:95 ../../mod/register.php:95 -msgid "Not a valid email address." -msgstr "" +#: ../../mod/display.php:259 ../../mod/network.php:435 +msgid "View $owner_name's profile" +msgstr "Guarda il profilo di $owner_name" + +#: ../../mod/display.php:260 ../../mod/network.php:436 +msgid "to" +msgstr "a" + +#: ../../mod/display.php:261 ../../mod/network.php:437 +msgid "Wall-to-Wall" +msgstr "Bacheca-A-Bacheca" + +#: ../../mod/display.php:262 ../../mod/network.php:438 +msgid "via Wall-To-Wall:" +msgstr "sulla sua Bacheca:" + +#: ../../mod/display.php:300 +msgid "Item has been removed." +msgstr "L'elemento è stato rimosso." + +#: ../../mod/invite.php:28 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: Non è un indirizzo email valido." #: ../../mod/invite.php:32 -msgid "Please join my network on " -msgstr "" +#, php-format +msgid "Please join my network on %s" +msgstr "Unisciti al mio social network su %s" #: ../../mod/invite.php:38 -msgid "Message delivery failed." -msgstr "" +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Consegna del messaggio fallita." #: ../../mod/invite.php:42 -msgid " messages sent." -msgstr "" +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." -#: ../../mod/invite.php:57 ../../mod/invite.php:57 ../../mod/invite.php:57 +#: ../../mod/invite.php:57 msgid "Send invitations" -msgstr "" +msgstr "Invia inviti" -#: ../../mod/invite.php:58 ../../mod/invite.php:58 ../../mod/invite.php:58 +#: ../../mod/invite.php:58 msgid "Enter email addresses, one per line:" -msgstr "" +msgstr "Inserisci gli indirizzi email, uno per riga:" + +#: ../../mod/invite.php:59 ../../mod/message.php:182 ../../mod/message.php:316 +msgid "Your message:" +msgstr "Il tuo messaggio:" #: ../../mod/invite.php:60 -msgid "Please join my social network on " -msgstr "" +#, php-format +msgid "Please join my social network on %s" +msgstr "Unisciti al mio social network su %s" -#: ../../mod/invite.php:61 ../../mod/invite.php:61 ../../mod/invite.php:61 +#: ../../mod/invite.php:61 msgid "To accept this invitation, please visit:" -msgstr "" +msgstr "Per accettare questo invito visita:" -#: ../../mod/invite.php:62 ../../mod/invite.php:62 ../../mod/invite.php:62 +#: ../../mod/invite.php:62 msgid "" "Once you have registered, please connect with me via my profile page at:" -msgstr "" +msgstr "Una volta registrato, connettiti con me sul mio profilo a:" -#: ../../mod/register.php:47 ../../mod/register.php:47 ../../mod/register.php:47 +#: ../../mod/contacts.php:12 +msgid "Invite Friends" +msgstr "Invita Amici" + +#: ../../mod/contacts.php:16 +msgid "Connect/Follow" +msgstr "Connetti/Segui" + +#: ../../mod/contacts.php:17 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Esempio: bob@example.com, http://example.com/barbara" + +#: ../../mod/contacts.php:18 +msgid "Follow" +msgstr "Segui" + +#: ../../mod/contacts.php:38 ../../mod/contacts.php:119 +msgid "Could not access contact record." +msgstr "Non si puo' accedere al contatto." + +#: ../../mod/contacts.php:52 +msgid "Could not locate selected profile." +msgstr "Non riesco a trovare il profilo selezionato." + +#: ../../mod/contacts.php:83 +msgid "Contact updated." +msgstr "Contatto aggiornato." + +#: ../../mod/contacts.php:85 ../../mod/dfrn_request.php:402 +msgid "Failed to update contact record." +msgstr "Errore aggiornando il contatto." + +#: ../../mod/contacts.php:141 +msgid "Contact has been blocked" +msgstr "Il contatto è stato bloccato" + +#: ../../mod/contacts.php:141 +msgid "Contact has been unblocked" +msgstr "Il contatto è stato sbloccato" + +#: ../../mod/contacts.php:155 +msgid "Contact has been ignored" +msgstr "Il contatto è ignorato" + +#: ../../mod/contacts.php:155 +msgid "Contact has been unignored" +msgstr "Il conttatto è non ignorato" + +#: ../../mod/contacts.php:176 +msgid "stopped following" +msgstr "tolto dai seguiti" + +#: ../../mod/contacts.php:195 +msgid "Contact has been removed." +msgstr "Il contatto è stato rimosso." + +#: ../../mod/contacts.php:209 ../../mod/dfrn_confirm.php:114 +msgid "Contact not found." +msgstr "Contatto non trovato." + +#: ../../mod/contacts.php:223 ../../mod/contacts.php:344 +msgid "Mutual Friendship" +msgstr "Reciproca amicizia" + +#: ../../mod/contacts.php:227 ../../mod/contacts.php:348 +msgid "is a fan of yours" +msgstr "è un tuo fan" + +#: ../../mod/contacts.php:232 ../../mod/contacts.php:352 +msgid "you are a fan of" +msgstr "sei un fan di" + +#: ../../mod/contacts.php:248 +msgid "Never" +msgstr "Mai" + +#: ../../mod/contacts.php:252 +msgid "(Update was successful)" +msgstr "(L'aggiornamento è stato completato)" + +#: ../../mod/contacts.php:252 +msgid "(Update was not successful)" +msgstr "(L'aggiornamento non è stato completato)" + +#: ../../mod/contacts.php:255 +msgid "Contact Editor" +msgstr "Editor dei Contatti" + +#: ../../mod/contacts.php:256 +msgid "Visit $name's profile" +msgstr "Visita il profilo di $name" + +#: ../../mod/contacts.php:257 +msgid "Block/Unblock contact" +msgstr "Blocca/Sblocca contatto" + +#: ../../mod/contacts.php:258 +msgid "Ignore contact" +msgstr "Ingnora il contatto" + +#: ../../mod/contacts.php:259 +msgid "Delete contact" +msgstr "Rimuovi contatto" + +#: ../../mod/contacts.php:261 +msgid "Last updated: " +msgstr "Ultimo aggiornameto: " + +#: ../../mod/contacts.php:262 +msgid "Update public posts: " +msgstr "Aggiorna messaggi pubblici: " + +#: ../../mod/contacts.php:264 +msgid "Update now" +msgstr "Aggiorna adesso" + +#: ../../mod/contacts.php:267 +msgid "Unblock this contact" +msgstr "Sblocca questo contatto" + +#: ../../mod/contacts.php:267 +msgid "Block this contact" +msgstr "Blocca questo contatto" + +#: ../../mod/contacts.php:268 +msgid "Unignore this contact" +msgstr "Rimuovi dai contatti ingorati" + +#: ../../mod/contacts.php:268 +msgid "Ignore this contact" +msgstr "Aggiungi ai contatti ignorati" + +#: ../../mod/contacts.php:271 +msgid "Currently blocked" +msgstr "Bloccato" + +#: ../../mod/contacts.php:272 +msgid "Currently ignored" +msgstr "Ignorato" + +#: ../../mod/contacts.php:305 +msgid "Show Blocked Connections" +msgstr "Mostra connessioni bloccate" + +#: ../../mod/contacts.php:305 +msgid "Hide Blocked Connections" +msgstr "Nascondi connessioni bloccate" + +#: ../../mod/contacts.php:307 ../../mod/directory.php:38 +msgid "Finding: " +msgstr "Cerco: " + +#: ../../mod/contacts.php:308 +msgid "Find" +msgstr "Trova" + +#: ../../mod/contacts.php:368 ../../mod/viewcontacts.php:44 +msgid "Visit $username's profile" +msgstr "Visita il profilo di $username" + +#: ../../mod/contacts.php:369 +msgid "Edit contact" +msgstr "Modifca contatto" + +#: ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informazioni remote sulla privacy non disponibili." + +#: ../../mod/lockview.php:43 +msgid "Visible to:" +msgstr "Visibile a:" + +#: ../../mod/register.php:47 msgid "Invalid OpenID url" -msgstr "" +msgstr "Url OpenID non valido" -#: ../../mod/register.php:62 ../../mod/register.php:62 ../../mod/register.php:62 +#: ../../mod/register.php:62 msgid "Please enter the required information." -msgstr "" +msgstr "Inserisci le informazioni richieste." -#: ../../mod/register.php:74 ../../mod/register.php:74 ../../mod/register.php:74 +#: ../../mod/register.php:74 msgid "Please use a shorter name." -msgstr "" +msgstr "Usa un nome più corto." -#: ../../mod/register.php:76 ../../mod/register.php:76 ../../mod/register.php:76 +#: ../../mod/register.php:76 msgid "Name too short." -msgstr "" +msgstr "Il Nome è troppo corto." -#: ../../mod/register.php:89 ../../mod/register.php:89 ../../mod/register.php:89 +#: ../../mod/register.php:89 msgid "That doesn\\'t appear to be your full (First Last) name." -msgstr "" +msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." -#: ../../mod/register.php:92 ../../mod/register.php:92 ../../mod/register.php:92 +#: ../../mod/register.php:92 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." + +#: ../../mod/register.php:95 +msgid "Not a valid email address." +msgstr "Indirizzo email invaildo." -#: ../../mod/register.php:101 ../../mod/register.php:101 #: ../../mod/register.php:101 msgid "Cannot use that email." -msgstr "" +msgstr "Questa email non si puo' usare." -#: ../../mod/register.php:106 ../../mod/register.php:106 #: ../../mod/register.php:106 msgid "" "Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " "must also begin with a letter." msgstr "" +"Il tuo \"soprannome\" puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", " +"e deve cominciare con una lettera." -#: ../../mod/register.php:112 ../../mod/register.php:112 #: ../../mod/register.php:112 msgid "Nickname is already registered. Please choose another." -msgstr "" +msgstr "Soprannome già registrato. Scegline un'altro." -#: ../../mod/register.php:131 ../../mod/register.php:131 #: ../../mod/register.php:131 msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "" +msgstr "ERRORE GRAVE: Generazione delle chiavi di sicurezza fallito." -#: ../../mod/register.php:198 ../../mod/register.php:198 #: ../../mod/register.php:198 msgid "An error occurred during registration. Please try again." -msgstr "" +msgstr "Si è verificato un errore durante la registrazione. Prova ancora." -#: ../../mod/register.php:216 ../../mod/register.php:216 #: ../../mod/register.php:216 msgid "An error occurred creating your default profile. Please try again." -msgstr "" +msgstr "Si è verificato un errore creando il tuo profilo. Prova ancora." -#: ../../mod/register.php:315 ../../mod/register.php:315 #: ../../mod/register.php:315 msgid "" "Registration successful. Please check your email for further instructions." msgstr "" +"Registrazione completata. Controlla la tua mail per ulteriori informazioni." -#: ../../mod/register.php:319 ../../mod/register.php:319 #: ../../mod/register.php:319 msgid "Failed to send email message. Here is the message that failed." -msgstr "" +msgstr "Errore inviando il messaggio email. Questo è il messaggio non inviato." -#: ../../mod/register.php:324 ../../mod/register.php:324 #: ../../mod/register.php:324 msgid "Your registration can not be processed." -msgstr "" +msgstr "La tua registrazione non puo' essere elaborata." #: ../../mod/register.php:347 -msgid "Registration request at " -msgstr "" +#, php-format +msgid "Registration request at %s" +msgstr "Richiesta di registrazione su %s" -#: ../../mod/register.php:351 ../../mod/register.php:351 #: ../../mod/register.php:351 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:399 ../../mod/register.php:399 #: ../../mod/register.php:399 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking 'Register'." msgstr "" +"Puoi (opzionalmento) riempire questa maschera via OpenID inserendo il tuo " +"OpenID e cliccando 'Registra'." -#: ../../mod/register.php:400 ../../mod/register.php:400 #: ../../mod/register.php:400 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 quel campo in bianco e riempi il " +"resto della maschera." -#: ../../mod/register.php:401 ../../mod/register.php:401 #: ../../mod/register.php:401 msgid "Your OpenID (optional): " -msgstr "" +msgstr "Il tuo OpenID (opzionale): " -#: ../../mod/register.php:404 ../../mod/register.php:404 #: ../../mod/register.php:404 msgid "" "Members of this network prefer to communicate with real people who use their " "real names." msgstr "" +"I membri di questo network preferiscono comunicare con persone reali che " +"usano i loro nomi reali." -#: ../../mod/register.php:413 ../../mod/register.php:413 #: ../../mod/register.php:413 msgid "Include your profile in member directory?" -msgstr "" +msgstr "Includi il tuo profilo nell'elenco dei membir?" -#: ../../mod/register.php:416 ../../mod/dfrn_request.php:618 -#: ../../mod/register.php:416 ../../mod/register.php:416 #: ../../mod/register.php:416 ../../mod/dfrn_request.php:618 msgid "Yes" -msgstr "" +msgstr "Si" -#: ../../mod/register.php:417 ../../mod/dfrn_request.php:619 -#: ../../mod/register.php:417 ../../mod/register.php:417 #: ../../mod/register.php:417 ../../mod/dfrn_request.php:619 msgid "No" -msgstr "" +msgstr "No" -#: ../../mod/register.php:429 ../../mod/register.php:429 #: ../../mod/register.php:429 msgid "Registration" -msgstr "" +msgstr "Registrazione" -#: ../../mod/register.php:437 ../../mod/register.php:437 #: ../../mod/register.php:437 msgid "Your Full Name (e.g. Joe Smith): " -msgstr "" +msgstr "Il tuo Nome Completo (p.e. Mario Rossi): " -#: ../../mod/register.php:438 ../../mod/register.php:438 #: ../../mod/register.php:438 msgid "Your Email Address: " -msgstr "" +msgstr "Il tuo Indirizzo Email: " -#: ../../mod/register.php:439 ../../mod/register.php:439 #: ../../mod/register.php:439 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 soprannome. Deve cominciare con un carattere. L'indirizzo del tuo " +"profilo sarà 'soprannome@$sitename'." -#: ../../mod/register.php:440 ../../mod/register.php:440 #: ../../mod/register.php:440 msgid "Choose a nickname: " -msgstr "" +msgstr "Scegli un soprannome: " -#: ../../mod/register.php:443 ../include/nav.php:61 ../boot.php:809 -#: ../../mod/register.php:443 ../../mod/register.php:443 -#: ../../mod/register.php:443 ../../include/nav.php:61 ../../boot.php:809 -msgid "Register" -msgstr "" +#: ../../mod/install.php:30 +msgid "Could not create/connect to database." +msgstr "Impossibile creare/collegarsi al database." -#: ../../mod/openid.php:62 ../../mod/openid.php:109 ../include/auth.php:105 -#: ../../include/auth.php:130 ../include/auth.php:183 ../../mod/openid.php:62 -#: ../../../include/auth.php:130 ../include/auth.php:130 -#: ../../mod/openid.php:62 ../../mod/openid.php:109 ../../include/auth.php:105 -#: ../../include/auth.php:130 ../../include/auth.php:183 -msgid "Login failed." -msgstr "" +#: ../../mod/install.php:35 +msgid "Connected to database." +msgstr "Collegato al database." -#: ../../mod/like.php:110 ../../mod/like.php:110 ../../mod/like.php:110 -msgid "status" -msgstr "" +#: ../../mod/install.php:66 +msgid "Database import succeeded." +msgstr "Importazione database completata." -#: ../../mod/like.php:127 ../../mod/like.php:127 ../../mod/like.php:127 -msgid "likes" -msgstr "" - -#: ../../mod/like.php:129 ../../mod/like.php:129 ../../mod/like.php:129 -msgid "doesn't like" -msgstr "" - -#: ../../mod/like.php:151 -msgid "'s" -msgstr "" - -#: ../../mod/follow.php:167 ../../mod/follow.php:167 ../../mod/follow.php:167 -msgid "The profile address specified does not provide adequate information." -msgstr "" - -#: ../../mod/follow.php:173 ../../mod/follow.php:173 ../../mod/follow.php:173 +#: ../../mod/install.php:67 msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" +"IMPORTANTE: Devi impostare manualmente un operazione pianificata per il " +"poller" -#: ../../mod/follow.php:224 ../../mod/follow.php:224 ../../mod/follow.php:224 -msgid "Unable to retrieve contact information." +#: ../../mod/install.php:68 ../../mod/install.php:75 ../../mod/install.php:175 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Guarda il file \"INSTALL.txt\"." + +#: ../../mod/install.php:73 +msgid "Database import failed." +msgstr "Importazione database fallita." + +#: ../../mod/install.php:74 +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/follow.php:270 ../../mod/follow.php:270 ../../mod/follow.php:270 -msgid "following" +#: ../../mod/install.php:84 +msgid "Welcome to Friendika." +msgstr "Benvenuto su Friendika." + +#: ../../mod/install.php:124 +msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" +"Non riesco a trovare una versione da riga di comando di PHP nel PATH del " +"server web" + +#: ../../mod/install.php:125 +msgid "" +"This is required. Please adjust the configuration file .htconfig.php " +"accordingly." +msgstr "E' richiesto. Aggiorna il file .htconfig.php di conseguenza." + +#: ../../mod/install.php:132 +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:133 +msgid "This is required for message delivery to work." +msgstr "Ciò è richiesto per far funzionare la consegna dei messaggi." + +#: ../../mod/install.php:155 +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:156 +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:165 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" +"Errore: il modulo mod-rewrite di Apache &egreve; richiesto ma non installato" + +#: ../../mod/install.php:167 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." + +#: ../../mod/install.php:169 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "" +"Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non " +"installato." + +#: ../../mod/install.php:171 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." + +#: ../../mod/install.php:173 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Errore: il modulo mysqli di PHP è richiesto ma non installato" + +#: ../../mod/install.php:184 +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:185 +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 puo' " +"scrivere il file nella tua cartella, anche se tu puoi." + +#: ../../mod/install.php:186 +msgid "" +"Please check with your site documentation or support people to see if this " +"situation can be corrected." +msgstr "" +"Controlla la documentazione del tuo sito o con il personale di suporto se la " +"situazione puo' essere corretta." + +#: ../../mod/install.php:187 +msgid "" +"If not, you may be required to perform a manual installation. Please see the " +"file \"INSTALL.txt\" for instructions." +msgstr "" +"Altrimenti dovrai procedere con l'installazione manuale. Guarda il file " +"\"INSTALL.txt\" per istuzioni" + +#: ../../mod/install.php:196 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "" +"Il file di configurazione del database \".htconfig.php\" non puo' essere " +"scritto. Usa il testo qui di seguito per creare un file di configurazione " +"nella cartella principale del tuo sito." + +#: ../../mod/install.php:211 +msgid "Errors encountered creating database tables." +msgstr "Errori creando le tabelle nel database." + +#: ../../mod/network.php:18 +msgid "Normal View" +msgstr "Vista normale" + +#: ../../mod/network.php:20 +msgid "New Item View" +msgstr "Vista Nuovi Elementi" + +#: ../../mod/network.php:149 +msgid "No such group" +msgstr "Nessun gruppo" + +#: ../../mod/network.php:160 +msgid "Group is empty" +msgstr "Il gruppo è vuoto" + +#: ../../mod/network.php:164 +msgid "Group: " +msgstr "Gruppo: " + +#: ../../mod/notifications.php:28 +msgid "Invalid request identifier." +msgstr "Identificativo richiesta invalido." + +#: ../../mod/notifications.php:31 ../../mod/notifications.php:134 +msgid "Discard" +msgstr "Scarta" + +#: ../../mod/notifications.php:41 ../../mod/notifications.php:133 +msgid "Ignore" +msgstr "Ignora" + +#: ../../mod/notifications.php:72 +msgid "Show Ignored Requests" +msgstr "Mostra richieste ignorate" + +#: ../../mod/notifications.php:72 +msgid "Hide Ignored Requests" +msgstr "Nascondi richieste ignorate" + +#: ../../mod/notifications.php:105 +msgid "Claims to be known to you: " +msgstr "Dice di conoscerti: " + +#: ../../mod/notifications.php:105 +msgid "yes" +msgstr "si" + +#: ../../mod/notifications.php:105 +msgid "no" +msgstr "no" + +#: ../../mod/notifications.php:111 +msgid "Approve as: " +msgstr "Approva come: " + +#: ../../mod/notifications.php:112 +msgid "Friend" +msgstr "Amico" + +#: ../../mod/notifications.php:113 +msgid "Fan/Admirer" +msgstr "Fan/Admiratore" + +#: ../../mod/notifications.php:120 +msgid "Notification type: " +msgstr "Tipo di notifica: " + +#: ../../mod/notifications.php:121 +msgid "Friend/Connect Request" +msgstr "Richiesta Amicizia/Connessione" + +#: ../../mod/notifications.php:121 +msgid "New Follower" +msgstr "Nuovo Seguace" + +#: ../../mod/notifications.php:131 +msgid "Approve" +msgstr "Approva" + +#: ../../mod/notifications.php:140 +msgid "No notifications." +msgstr "Nessuna notifica." + +#: ../../mod/notifications.php:164 +msgid "No registrations." +msgstr "Nessuna registrazione." -#: ../../mod/dfrn_request.php:92 ../../mod/dfrn_request.php:92 #: ../../mod/dfrn_request.php:92 msgid "This introduction has already been accepted." -msgstr "" +msgstr "Questa presentazione è già stata accettata." -#: ../../mod/dfrn_request.php:116 ../../mod/dfrn_request.php:347 -#: ../../mod/dfrn_request.php:116 ../../mod/dfrn_request.php:116 #: ../../mod/dfrn_request.php:116 ../../mod/dfrn_request.php:347 msgid "Profile location is not valid or does not contain profile information." msgstr "" +"La posizione del profilo non è valida o non contiene informazioni di profilo." -#: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:352 -#: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:121 #: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:352 msgid "Warning: profile location has no identifiable owner name." msgstr "" +"Attenzione: la posizione del profilo non ha un identificabile proprietario." -#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:354 -#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:123 #: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:354 msgid "Warning: profile location has no profile photo." -msgstr "" +msgstr "Attenzione: la posizione del profilo non ha una foto." #: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:357 -msgid " required parameter" -msgstr "" +#, 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 nella posizione data" +msgstr[1] "%d parametri richiesti non sono stati trovati nella posizione data" -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:358 -msgid " was " -msgstr "" - -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:358 -msgid "s were " -msgstr "" - -#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:359 -msgid "not found at the given location." -msgstr "" - -#: ../../mod/dfrn_request.php:164 ../../mod/dfrn_request.php:164 #: ../../mod/dfrn_request.php:164 msgid "Introduction complete." -msgstr "" +msgstr "Presentazione completa." -#: ../../mod/dfrn_request.php:188 ../../mod/dfrn_request.php:188 #: ../../mod/dfrn_request.php:188 msgid "Unrecoverable protocol error." -msgstr "" +msgstr "Errore di protocollo non recuperabile." -#: ../../mod/dfrn_request.php:216 ../../mod/dfrn_request.php:216 #: ../../mod/dfrn_request.php:216 msgid "Profile unavailable." -msgstr "" +msgstr "Profilo non disponibile." #: ../../mod/dfrn_request.php:241 -msgid " has received too many connection requests today." -msgstr "" +#, 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:242 ../../mod/dfrn_request.php:242 #: ../../mod/dfrn_request.php:242 msgid "Spam protection measures have been invoked." -msgstr "" +msgstr "Sono state attivate le misure di protezione contro lo spam." -#: ../../mod/dfrn_request.php:243 ../../mod/dfrn_request.php:243 #: ../../mod/dfrn_request.php:243 msgid "Friends are advised to please try again in 24 hours." -msgstr "" +msgstr "Gli amici sono pregati di riprovare tra 24 ore." -#: ../../mod/dfrn_request.php:273 ../../mod/dfrn_request.php:273 #: ../../mod/dfrn_request.php:273 msgid "Invalid locator" -msgstr "" +msgstr "Invalid locator" -#: ../../mod/dfrn_request.php:292 ../../mod/dfrn_request.php:292 #: ../../mod/dfrn_request.php:292 msgid "Unable to resolve your name at the provided location." -msgstr "" +msgstr "Impossibile risolvere il tuo nome nella posizione indicata." -#: ../../mod/dfrn_request.php:305 ../../mod/dfrn_request.php:305 #: ../../mod/dfrn_request.php:305 msgid "You have already introduced yourself here." -msgstr "" +msgstr "Ti sei già presentato qui." #: ../../mod/dfrn_request.php:309 -msgid "Apparently you are already friends with ." -msgstr "" +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Sembra che tu sia già amico di %s." -#: ../../mod/dfrn_request.php:330 ../../mod/dfrn_request.php:330 #: ../../mod/dfrn_request.php:330 msgid "Invalid profile URL." -msgstr "" +msgstr "Indirizzo profilo invalido." -#: ../../mod/dfrn_request.php:336 ../../mod/dfrn_request.php:336 #: ../../mod/dfrn_request.php:336 msgid "Disallowed profile URL." -msgstr "" +msgstr "Indirizzo profilo non permesso." -#: ../../mod/dfrn_request.php:402 ../../mod/contacts.php:85 -#: ../../mod/dfrn_request.php:402 ../../mod/dfrn_request.php:402 -#: ../../mod/dfrn_request.php:402 ../../mod/contacts.php:85 -msgid "Failed to update contact record." -msgstr "" - -#: ../../mod/dfrn_request.php:423 ../../mod/dfrn_request.php:423 #: ../../mod/dfrn_request.php:423 msgid "Your introduction has been sent." -msgstr "" +msgstr "La tua presentazione è stata inviata." -#: ../../mod/dfrn_request.php:477 ../../mod/dfrn_request.php:477 #: ../../mod/dfrn_request.php:477 msgid "Please login to confirm introduction." -msgstr "" +msgstr "Accedi per confermare la presentazione." -#: ../../mod/dfrn_request.php:491 ../../mod/dfrn_request.php:491 #: ../../mod/dfrn_request.php:491 msgid "" "Incorrect identity currently logged in. Please login to " "this profile." msgstr "" +"Accesso con identà incorretta. Accedi a questo profilo." -#: ../../mod/dfrn_request.php:536 ../include/items.php:1341 -#: ../../mod/dfrn_request.php:536 ../../mod/dfrn_request.php:536 #: ../../mod/dfrn_request.php:536 ../../include/items.php:1341 msgid "[Name Withheld]" -msgstr "" +msgstr "[Nome Nascosto]" -#: ../../mod/dfrn_request.php:543 ../../mod/dfrn_request.php:543 #: ../../mod/dfrn_request.php:543 msgid "Introduction received at " -msgstr "" +msgstr "Introduzione ricevuta su " -#: ../../mod/dfrn_request.php:615 ../../mod/dfrn_request.php:615 #: ../../mod/dfrn_request.php:615 msgid "Friend/Connection Request" -msgstr "" +msgstr "Richieste di Amicizia/Connessione" -#: ../../mod/dfrn_request.php:616 ../../mod/dfrn_request.php:616 #: ../../mod/dfrn_request.php:616 msgid "Please answer the following:" -msgstr "" +msgstr "Rispondi al seguente:" -#: ../../mod/dfrn_request.php:617 ../../mod/dfrn_request.php:617 #: ../../mod/dfrn_request.php:617 msgid "Does $name know you?" -msgstr "" +msgstr "$name ti conosce?" -#: ../../mod/dfrn_request.php:620 ../../mod/dfrn_request.php:620 #: ../../mod/dfrn_request.php:620 msgid "Add a personal note:" -msgstr "" +msgstr "Aggiungi una nota personale:" -#: ../../mod/dfrn_request.php:621 ../../mod/dfrn_request.php:621 #: ../../mod/dfrn_request.php:621 msgid "" "Please enter your profile address from one of the following supported social " "networks:" msgstr "" +"Inserisci l'indirizzo del tue profilo da uno dei seguenti supportati seocial " +"network:" -#: ../../mod/dfrn_request.php:622 ../../mod/dfrn_request.php:622 #: ../../mod/dfrn_request.php:622 msgid "Friendika" -msgstr "" +msgstr "Friendika" -#: ../../mod/dfrn_request.php:623 ../../mod/dfrn_request.php:623 #: ../../mod/dfrn_request.php:623 msgid "StatusNet/Federated Social Web" -msgstr "" +msgstr "StatusNet/Federated Social Web" -#: ../../mod/dfrn_request.php:624 ../../mod/dfrn_request.php:624 #: ../../mod/dfrn_request.php:624 msgid "Private (secure) network" -msgstr "" +msgstr "Network (sicuro) privato" -#: ../../mod/dfrn_request.php:625 ../../mod/dfrn_request.php:625 #: ../../mod/dfrn_request.php:625 msgid "Public (insecure) network" -msgstr "" +msgstr "Network (insicuro) pubblico" -#: ../../mod/dfrn_request.php:626 ../../mod/dfrn_request.php:626 #: ../../mod/dfrn_request.php:626 msgid "Your profile address:" -msgstr "" +msgstr "L'indirizzo del tuo profilo:" -#: ../../mod/dfrn_request.php:627 ../../mod/dfrn_request.php:627 #: ../../mod/dfrn_request.php:627 msgid "Submit Request" -msgstr "" +msgstr "Invia richiesta" -#: ../../mod/contacts.php:12 ../../mod/contacts.php:12 ../../mod/contacts.php:12 -msgid "Invite Friends" -msgstr "" +#: ../../mod/dfrn_request.php:628 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 +#: ../../addon/js_upload/js_upload.php:41 +msgid "Cancel" +msgstr "Annulla" -#: ../../mod/contacts.php:16 ../../mod/contacts.php:16 ../../mod/contacts.php:16 -msgid "Connect/Follow" -msgstr "" +#: ../../mod/like.php:110 +msgid "status" +msgstr "stato" -#: ../../mod/contacts.php:17 ../../mod/contacts.php:17 ../../mod/contacts.php:17 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "" +#: ../../mod/like.php:127 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" -#: ../../mod/contacts.php:18 ../../mod/contacts.php:18 ../../mod/contacts.php:18 -msgid "Follow" -msgstr "" +#: ../../mod/like.php:129 +#, 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/contacts.php:38 ../../mod/contacts.php:119 -#: ../../mod/contacts.php:38 ../../mod/contacts.php:38 -#: ../../mod/contacts.php:119 -msgid "Could not access contact record." -msgstr "" +#: ../../mod/lostpass.php:38 +#, php-format +msgid "Password reset requested at %s" +msgstr "Richiesta recupero password su %s" -#: ../../mod/contacts.php:52 ../../mod/contacts.php:52 ../../mod/contacts.php:52 -msgid "Could not locate selected profile." -msgstr "" +#: ../../mod/removeme.php:42 ../../mod/removeme.php:45 +msgid "Remove My Account" +msgstr "Rimuovi il mio Account" -#: ../../mod/contacts.php:83 ../../mod/contacts.php:83 ../../mod/contacts.php:83 -msgid "Contact updated." +#: ../../mod/removeme.php:43 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." msgstr "" +"Questo rimuoverà completamente il tuo account. Una volta rimosso non si " +"potrà recuperarlo." -#: ../../mod/contacts.php:141 ../../mod/contacts.php:141 -#: ../../mod/contacts.php:141 -msgid "Contact has been blocked" +#: ../../mod/removeme.php:44 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" + +#: ../../mod/apps.php:6 +msgid "Applications" +msgstr "Applicazioni" + +#: ../../mod/directory.php:32 +msgid "Global Directory" +msgstr "Elenco Globale" + +#: ../../mod/item.php:37 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." + +#: ../../mod/item.php:98 +msgid "Empty post discarded." +msgstr "Messaggio vuoto scartato." + +#: ../../mod/item.php:422 +#, php-format +msgid "%s commented on your item at %s" +msgstr "%s ha commentato un tuo elemento su %s" + +#: ../../mod/item.php:445 +#, php-format +msgid "%s posted on your profile wall at %s" +msgstr "%s ha scritto sulla tua bacheca su %s" + +#: ../../mod/item.php:471 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Messaggio non salvato." + +#: ../../mod/item.php:489 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendika social network." msgstr "" +"Questo messaggio ti è stato inviato da %s, un membro del social network " +"Friendika." -#: ../../mod/contacts.php:141 ../../mod/contacts.php:141 -#: ../../mod/contacts.php:141 -msgid "Contact has been unblocked" +#: ../../mod/item.php:491 +msgid "You may visit them online at" +msgstr "Puoi visitarli online a " + +#: ../../mod/item.php:493 +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/contacts.php:155 ../../mod/contacts.php:155 -#: ../../mod/contacts.php:155 -msgid "Contact has been ignored" +#: ../../mod/item.php:495 +#, php-format +msgid "%s posted an update." +msgstr "%s ha inviato un aggiornamento." + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "TAg rimosso" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Rimuovi tag dall'elemento" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " + +#: ../../mod/tagrm.php:93 +msgid "Remove" +msgstr "Rimuovi" + +#: ../../mod/message.php:18 +msgid "No recipient selected." +msgstr "Nessun destinatario selezionato." + +#: ../../mod/message.php:23 +msgid "[no subject]" +msgstr "[nessun oggetto]" + +#: ../../mod/message.php:34 +msgid "Unable to locate contact information." +msgstr "Impossibile trovare le informazioni del contatto." + +#: ../../mod/message.php:102 +msgid "Message sent." +msgstr "Messaggio inviato." + +#: ../../mod/message.php:105 +msgid "Message could not be sent." +msgstr "Il messaggio non puo' essere inviato." + +#: ../../mod/message.php:125 ../../include/nav.php:100 +msgid "Messages" +msgstr "Messaggi" + +#: ../../mod/message.php:126 +msgid "Inbox" +msgstr "In arrivo" + +#: ../../mod/message.php:127 +msgid "Outbox" +msgstr "Inviati" + +#: ../../mod/message.php:128 +msgid "New Message" +msgstr "Nuovo messaggio" + +#: ../../mod/message.php:142 +msgid "Message deleted." +msgstr "Messaggio cancellato." + +#: ../../mod/message.php:158 +msgid "Conversation removed." +msgstr "Conversazione rimossa." + +#: ../../mod/message.php:177 +msgid "Send Private Message" +msgstr "Invia messaggio privato" + +#: ../../mod/message.php:178 ../../mod/message.php:312 +msgid "To:" +msgstr "A:" + +#: ../../mod/message.php:179 ../../mod/message.php:313 +msgid "Subject:" +msgstr "Oggetto:" + +#: ../../mod/message.php:221 +msgid "No messages." +msgstr "Nessun messaggio." + +#: ../../mod/message.php:234 +msgid "Delete conversation" +msgstr "Cancella conversazione" + +#: ../../mod/message.php:264 +msgid "Message not available." +msgstr "Messaggio non disponibile." + +#: ../../mod/message.php:301 +msgid "Delete message" +msgstr "Cancella messaggio" + +#: ../../mod/message.php:311 +msgid "Send Reply" +msgstr "Invia risposta" + +#: ../../mod/dfrn_confirm.php:231 +msgid "Response from remote site was not understood." +msgstr "La risposta dal sito remota non è stata capita." + +#: ../../mod/dfrn_confirm.php:240 +msgid "Unexpected response from remote site: " +msgstr "Risposta dal sito remoto inaspettata: " + +#: ../../mod/dfrn_confirm.php:248 +msgid "Confirmation completed successfully." +msgstr "Conferma completata con successo." + +#: ../../mod/dfrn_confirm.php:250 ../../mod/dfrn_confirm.php:264 +#: ../../mod/dfrn_confirm.php:271 +msgid "Remote site reported: " +msgstr "Il sito remoto riporta: " + +#: ../../mod/dfrn_confirm.php:262 +msgid "Temporary failure. Please wait and try again." +msgstr "Errore temporaneo. Attendi e riprova." + +#: ../../mod/dfrn_confirm.php:269 +msgid "Introduction failed or was revoked." +msgstr "La presentazione è fallita o è stata revocata." + +#: ../../mod/dfrn_confirm.php:387 +msgid "Unable to set contact photo." +msgstr "Impossibile impostare la foto del contatto." + +#: ../../mod/dfrn_confirm.php:426 +msgid "is now friends with" +msgstr "ora è amico di" + +#: ../../mod/dfrn_confirm.php:494 +#, php-format +msgid "No user record found for '%s' " +msgstr "Nessun utente trovato per '%s'" + +#: ../../mod/dfrn_confirm.php:504 +msgid "Our site encryption key is apparently messed up." +msgstr "La nostra chiave di criptazione del sito è apparentemente incasinata." + +#: ../../mod/dfrn_confirm.php:515 +msgid "Empty site URL was provided or URL could not be decrypted by us." msgstr "" +"E' stato fornito un indirizzo vuoto o non possiamo decriptare l'indirizzo." -#: ../../mod/contacts.php:155 ../../mod/contacts.php:155 -#: ../../mod/contacts.php:155 -msgid "Contact has been unignored" +#: ../../mod/dfrn_confirm.php:527 +msgid "Contact record was not found for you on our site." +msgstr "Il contatto non è stato trovato sul nostro sito." + +#: ../../mod/dfrn_confirm.php:555 +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. Dovrebbe " +"funzionare se provi ancora." -#: ../../mod/contacts.php:176 ../../mod/contacts.php:176 -#: ../../mod/contacts.php:176 -msgid "stopped following" +#: ../../mod/dfrn_confirm.php:566 +msgid "Unable to set your contact credentials on our system." msgstr "" +"Impossibile impostare le credenziali del tuo contatto sul nostro sistema." -#: ../../mod/contacts.php:195 ../../mod/contacts.php:195 -#: ../../mod/contacts.php:195 -msgid "Contact has been removed." -msgstr "" +#: ../../mod/dfrn_confirm.php:619 +msgid "Unable to update your contact profile details on our system" +msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema" -#: ../../mod/contacts.php:223 ../../mod/contacts.php:344 -#: ../../../mod/contacts.php:223 ../../mod/contacts.php:223 -#: ../../mod/contacts.php:223 ../../mod/contacts.php:344 -msgid "Mutual Friendship" -msgstr "" +#: ../../mod/dfrn_confirm.php:648 +#, php-format +msgid "Connection accepted at %s" +msgstr "Connession accettata su %s" -#: ../../mod/contacts.php:227 ../../mod/contacts.php:348 -#: ../../../mod/contacts.php:227 ../../mod/contacts.php:227 -#: ../../mod/contacts.php:227 ../../mod/contacts.php:348 -msgid "is a fan of yours" -msgstr "" +#: ../../mod/openid.php:62 ../../mod/openid.php:109 ../../include/auth.php:105 +#: ../../include/auth.php:130 ../../include/auth.php:183 +msgid "Login failed." +msgstr "Accesso fallito." -#: ../../mod/contacts.php:232 ../../mod/contacts.php:352 -#: ../../../mod/contacts.php:232 ../../mod/contacts.php:232 -#: ../../mod/contacts.php:232 ../../mod/contacts.php:352 -msgid "you are a fan of" -msgstr "" +#: ../../mod/openid.php:73 ../../include/auth.php:194 +msgid "Welcome back " +msgstr "Bentornato " -#: ../../mod/contacts.php:248 ../../mod/contacts.php:248 -#: ../../mod/contacts.php:248 -msgid "Never" -msgstr "" +#: ../../mod/dfrn_poll.php:78 ../../mod/dfrn_poll.php:392 +#, php-format +msgid "%s welcomes %s" +msgstr "%s da il benvenuto a %s" -#: ../../mod/contacts.php:252 ../../mod/contacts.php:252 -#: ../../mod/contacts.php:252 -msgid "(Update was successful)" -msgstr "" +#: ../../mod/viewcontacts.php:32 +msgid "No contacts." +msgstr "Nessuno contatto." -#: ../../mod/contacts.php:252 ../../mod/contacts.php:252 -#: ../../mod/contacts.php:252 -msgid "(Update was not successful)" -msgstr "" +#: ../../mod/group.php:27 +msgid "Group created." +msgstr "Gruppo creato." -#: ../../mod/contacts.php:255 ../../mod/contacts.php:255 -#: ../../mod/contacts.php:255 -msgid "Contact Editor" -msgstr "" +#: ../../mod/group.php:33 +msgid "Could not create group." +msgstr "Impossibile creare il gruppo." -#: ../../mod/contacts.php:256 ../../mod/contacts.php:256 -#: ../../mod/contacts.php:256 -msgid "Visit $name's profile" -msgstr "" +#: ../../mod/group.php:43 ../../mod/group.php:123 +msgid "Group not found." +msgstr "Gruppo non trovato." -#: ../../mod/contacts.php:257 ../../mod/contacts.php:257 -#: ../../mod/contacts.php:257 -msgid "Block/Unblock contact" -msgstr "" +#: ../../mod/group.php:56 +msgid "Group name changed." +msgstr "Il nome del gruppo è cambiato." -#: ../../mod/contacts.php:258 ../../mod/contacts.php:258 -#: ../../mod/contacts.php:258 -msgid "Ignore contact" -msgstr "" +#: ../../mod/group.php:79 +msgid "Membership list updated." +msgstr "Lista adesioni aggiornata." -#: ../../mod/contacts.php:259 ../../mod/contacts.php:259 -#: ../../mod/contacts.php:259 -msgid "Delete contact" -msgstr "" +#: ../../mod/group.php:107 +msgid "Group removed." +msgstr "Gruppo rimosso." -#: ../../mod/contacts.php:261 ../../mod/contacts.php:261 -#: ../../mod/contacts.php:261 -msgid "Last updated: " -msgstr "" +#: ../../mod/group.php:109 +msgid "Unable to remove group." +msgstr "Impossibile rimuovere il gruppo." -#: ../../mod/contacts.php:262 ../../mod/contacts.php:262 -#: ../../mod/contacts.php:262 -msgid "Update public posts: " -msgstr "" - -#: ../../mod/contacts.php:264 ../../mod/contacts.php:264 -#: ../../mod/contacts.php:264 -msgid "Update now" -msgstr "" - -#: ../../mod/contacts.php:267 ../../mod/contacts.php:267 -#: ../../mod/contacts.php:267 -msgid "Unblock this contact" -msgstr "" - -#: ../../mod/contacts.php:267 ../../mod/contacts.php:267 -#: ../../mod/contacts.php:267 -msgid "Block this contact" -msgstr "" - -#: ../../mod/contacts.php:268 ../../mod/contacts.php:268 -#: ../../mod/contacts.php:268 -msgid "Unignore this contact" -msgstr "" - -#: ../../mod/contacts.php:268 ../../mod/contacts.php:268 -#: ../../mod/contacts.php:268 -msgid "Ignore this contact" -msgstr "" - -#: ../../mod/contacts.php:271 ../../mod/contacts.php:271 -#: ../../mod/contacts.php:271 -msgid "Currently blocked" -msgstr "" - -#: ../../mod/contacts.php:272 ../../mod/contacts.php:272 -#: ../../mod/contacts.php:272 -msgid "Currently ignored" -msgstr "" - -#: ../../mod/contacts.php:303 ../include/acl_selectors.php:140 -#: ../../include/acl_selectors.php:155 ../include/nav.php:111 -#: ../../../boot.php:2012 ../../mod/contacts.php:303 -#: ../../../include/acl_selectors.php:155 ../../mod/contacts.php:303 -#: ../../include/acl_selectors.php:155 ../boot.php:2012 -#: ../include/acl_selectors.php:155 ../../include/acl_selectors.php:140 -#: ../../include/nav.php:111 ../../boot.php:2012 -msgid "Contacts" -msgstr "" - -#: ../../mod/contacts.php:305 ../../mod/contacts.php:305 -#: ../../mod/contacts.php:305 -msgid "Show Blocked Connections" -msgstr "" - -#: ../../mod/contacts.php:305 ../../mod/contacts.php:305 -#: ../../mod/contacts.php:305 -msgid "Hide Blocked Connections" -msgstr "" - -#: ../../mod/contacts.php:308 ../../mod/contacts.php:308 -#: ../../mod/contacts.php:308 -msgid "Find" -msgstr "" - -#: ../../mod/contacts.php:368 ../../mod/viewcontacts.php:44 -#: ../../mod/contacts.php:368 ../../mod/contacts.php:368 -#: ../../mod/viewcontacts.php:44 ../../mod/contacts.php:368 -msgid "Visit $username's profile" -msgstr "" - -#: ../../mod/contacts.php:369 ../../mod/contacts.php:369 -#: ../../mod/contacts.php:369 -msgid "Edit contact" -msgstr "" - -#: ../../addon/facebook/facebook.php:116 ../../addon/facebook/facebook.php:116 -#: ../addon/facebook/facebook.php:116 -msgid "Facebook disabled" -msgstr "" - -#: ../../addon/facebook/facebook.php:124 ../../addon/facebook/facebook.php:124 -#: ../addon/facebook/facebook.php:124 -msgid "Facebook API key is missing." -msgstr "" - -#: ../../addon/facebook/facebook.php:131 ../../addon/facebook/facebook.php:131 -#: ../addon/facebook/facebook.php:131 -msgid "Facebook Connect" -msgstr "" - -#: ../../addon/facebook/facebook.php:137 ../../addon/facebook/facebook.php:137 -#: ../addon/facebook/facebook.php:137 -msgid "Install Facebook post connector" -msgstr "" - -#: ../../addon/facebook/facebook.php:144 ../../addon/facebook/facebook.php:144 -#: ../addon/facebook/facebook.php:144 -msgid "Remove Facebook post connector" -msgstr "" - -#: ../../addon/facebook/facebook.php:150 ../../addon/facebook/facebook.php:150 -#: ../addon/facebook/facebook.php:150 -msgid "Post to Facebook by default" -msgstr "" - -#: ../../addon/facebook/facebook.php:174 ../../addon/facebook/facebook.php:174 -#: ../addon/facebook/facebook.php:174 -msgid "Facebook" -msgstr "" - -#: ../../addon/facebook/facebook.php:175 ../../addon/facebook/facebook.php:175 -#: ../addon/facebook/facebook.php:175 -msgid "Facebook Connector Settings" -msgstr "" - -#: ../../addon/facebook/facebook.php:189 ../../addon/facebook/facebook.php:189 -#: ../addon/facebook/facebook.php:189 -msgid "Post to Facebook" -msgstr "" - -#: ../../addon/facebook/facebook.php:230 ../../addon/facebook/facebook.php:230 -#: ../addon/facebook/facebook.php:230 -msgid "Image: " -msgstr "" - -#: ../../addon/randplace/randplace.php:171 -#: ../../addon/randplace/randplace.php:171 -#: ../../../addon/randplace/randplace.php:171 -#: ../../addon/randplace/randplace.php:171 ../addon/randplace/randplace.php:171 -msgid "Randplace Settings" -msgstr "" - -#: ../../addon/randplace/randplace.php:173 -#: ../../addon/randplace/randplace.php:173 -#: ../../../addon/randplace/randplace.php:173 -#: ../../addon/randplace/randplace.php:173 ../addon/randplace/randplace.php:173 -msgid "Enable Randplace Plugin" -msgstr "" - -#: ../../addon/twitter/twitter.php:64 ../addon/twitter/twitter.php:64 #: ../../addon/twitter/twitter.php:64 msgid "Post to Twitter" -msgstr "" +msgstr "Inva a Twitter" -#: ../../addon/twitter/twitter.php:122 ../addon/twitter/twitter.php:122 #: ../../addon/twitter/twitter.php:122 msgid "Twitter Posting Settings" -msgstr "" +msgstr "Impostazioni Invio a Twitter" -#: ../../addon/twitter/twitter.php:129 ../addon/twitter/twitter.php:129 #: ../../addon/twitter/twitter.php:129 msgid "" "No consumer key pair for Twitter found. Please contact your site " "administrator." msgstr "" +"Nessuna coopia di chiavi per Twitter trovata. Contatta il tuo amministratore " +"del sito." -#: ../../addon/twitter/twitter.php:148 ../addon/twitter/twitter.php:148 #: ../../addon/twitter/twitter.php:148 msgid "" "At this Friendika instance the Twitter plugin was enabled but you have not " @@ -1989,195 +1856,49 @@ msgid "" "box below and submit the form. Only your public posts will " "be posted to Twitter." msgstr "" +"Questa installazione di Friendika ha il plugin Twitter abilitato, ma non hai " +"ancora collegato il tuo account locale con il tuo account su Twitter. Per " +"farlo, clicca il bottone qui sotto per ottenere un PIN da Twitter, che " +"dovrai copiare nel box più sotto per poi inviare la form. Solo i tuoi " +"messaggi pubblici verranno inviati anche su Twitter." -#: ../../addon/twitter/twitter.php:149 ../addon/twitter/twitter.php:149 #: ../../addon/twitter/twitter.php:149 msgid "Log in with Twitter" -msgstr "" +msgstr "Accedi con Twitter" -#: ../../addon/twitter/twitter.php:151 ../addon/twitter/twitter.php:151 #: ../../addon/twitter/twitter.php:151 msgid "Copy the PIN from Twitter here" -msgstr "" +msgstr "Copia il PIN da Twitter qui" #: ../../addon/twitter/twitter.php:165 ../../addon/statusnet/statusnet.php:197 -#: ../../../addon/twitter/twitter.php:165 ../../addon/twitter/twitter.php:165 -#: ../addon/twitter/twitter.php:165 ../addon/statusnet/statusnet.php:197 msgid "Currently connected to: " -msgstr "" +msgstr "Al momento collegato con:" -#: ../../addon/twitter/twitter.php:166 ../addon/twitter/twitter.php:166 #: ../../addon/twitter/twitter.php:166 msgid "" "If enabled all your public postings will be posted to the " "associated Twitter account as well." msgstr "" +"Se abilitato tutti i tuoi messaggi pubblici verranno " +"inviati anche sull'account Twitter associato." -#: ../../addon/twitter/twitter.php:168 ../addon/twitter/twitter.php:168 #: ../../addon/twitter/twitter.php:168 msgid "Send public postings to Twitter" -msgstr "" +msgstr "Invia messaggi pubblici su Twitter" #: ../../addon/twitter/twitter.php:172 ../../addon/statusnet/statusnet.php:204 -#: ../../../addon/twitter/twitter.php:172 ../../addon/twitter/twitter.php:172 -#: ../addon/twitter/twitter.php:172 ../addon/statusnet/statusnet.php:204 msgid "Clear OAuth configuration" -msgstr "" - -#: ../../addon/tictac/tictac.php:14 ../addon/tictac/tictac.php:14 -#: ../../addon/tictac/tictac.php:14 -msgid "Three Dimensional Tic-Tac-Toe" -msgstr "" - -#: ../../addon/tictac/tictac.php:47 ../addon/tictac/tictac.php:47 -#: ../../addon/tictac/tictac.php:47 -msgid "3D Tic-Tac-Toe" -msgstr "" - -#: ../../addon/tictac/tictac.php:52 ../addon/tictac/tictac.php:52 -#: ../../addon/tictac/tictac.php:52 -msgid "New game" -msgstr "" - -#: ../../addon/tictac/tictac.php:53 ../addon/tictac/tictac.php:53 -#: ../../addon/tictac/tictac.php:53 -msgid "New game with handicap" -msgstr "" - -#: ../../addon/tictac/tictac.php:54 ../addon/tictac/tictac.php:54 -#: ../../addon/tictac/tictac.php:54 -msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that " -"it is played on multiple levels simultaneously. " -msgstr "" - -#: ../../addon/tictac/tictac.php:55 ../addon/tictac/tictac.php:55 -#: ../../addon/tictac/tictac.php:55 -msgid "" -"In this case there are three levels. You win by getting three in a row on " -"any level, as well as up, down, and diagonally across the different levels." -msgstr "" - -#: ../../addon/tictac/tictac.php:57 ../addon/tictac/tictac.php:57 -#: ../../addon/tictac/tictac.php:57 -msgid "" -"The handicap game disables the center position on the middle level because " -"the player claiming this square often has an unfair advantage." -msgstr "" - -#: ../../addon/tictac/tictac.php:176 ../addon/tictac/tictac.php:176 -#: ../../addon/tictac/tictac.php:176 -msgid "You go first..." -msgstr "" - -#: ../../addon/tictac/tictac.php:181 ../addon/tictac/tictac.php:181 -#: ../../addon/tictac/tictac.php:181 -msgid "I'm going first this time..." -msgstr "" - -#: ../../addon/tictac/tictac.php:187 ../addon/tictac/tictac.php:187 -#: ../../addon/tictac/tictac.php:187 -msgid "You won!" -msgstr "" - -#: ../../addon/tictac/tictac.php:193 ../addon/tictac/tictac.php:218 -#: ../../addon/tictac/tictac.php:193 ../addon/tictac/tictac.php:193 -#: ../../addon/tictac/tictac.php:193 ../../addon/tictac/tictac.php:218 -msgid "\"Cat\" game!" -msgstr "" - -#: ../../addon/tictac/tictac.php:216 ../addon/tictac/tictac.php:216 -#: ../../addon/tictac/tictac.php:216 -msgid "I won!" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:39 -#: ../../../addon/js_upload/js_upload.php:39 -#: ../addon/js_upload/js_upload.php:39 ../../addon/js_upload/js_upload.php:39 -msgid "Upload a file" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:40 -#: ../../../addon/js_upload/js_upload.php:40 -#: ../addon/js_upload/js_upload.php:40 ../../addon/js_upload/js_upload.php:40 -msgid "Drop files here to upload" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:42 -#: ../../../addon/js_upload/js_upload.php:42 -#: ../addon/js_upload/js_upload.php:42 ../../addon/js_upload/js_upload.php:42 -msgid "Failed" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:288 -#: ../../addon/js_upload/js_upload.php:288 -#: ../../../addon/js_upload/js_upload.php:288 -#: ../../addon/js_upload/js_upload.php:288 ../addon/js_upload/js_upload.php:288 -msgid "No files were uploaded." -msgstr "" - -#: ../../addon/js_upload/js_upload.php:294 -#: ../../addon/js_upload/js_upload.php:294 -#: ../../../addon/js_upload/js_upload.php:294 -#: ../../addon/js_upload/js_upload.php:294 ../addon/js_upload/js_upload.php:294 -msgid "Uploaded file is empty" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:299 -#: ../../addon/js_upload/js_upload.php:299 -#: ../../../addon/js_upload/js_upload.php:299 -#: ../../addon/js_upload/js_upload.php:299 ../addon/js_upload/js_upload.php:299 -msgid "Uploaded file is too large" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:317 -#: ../../addon/js_upload/js_upload.php:317 -#: ../../../addon/js_upload/js_upload.php:317 -#: ../../addon/js_upload/js_upload.php:317 ../addon/js_upload/js_upload.php:317 -msgid "File has an invalid extension, it should be one of " -msgstr "" - -#: ../../addon/js_upload/js_upload.php:328 -#: ../../addon/js_upload/js_upload.php:328 -#: ../../../addon/js_upload/js_upload.php:328 -#: ../../addon/js_upload/js_upload.php:328 ../addon/js_upload/js_upload.php:328 -msgid "Upload was cancelled, or server error encountered" -msgstr "" - -#: ../../addon/java_upload/java_upload.php:33 -#: ../../addon/java_upload/java_upload.php:33 -#: ../../../addon/java_upload/java_upload.php:33 -#: ../../addon/java_upload/java_upload.php:33 -#: ../addon/java_upload/java_upload.php:33 -msgid "Select files to upload: " -msgstr "" - -#: ../../addon/java_upload/java_upload.php:35 -#: ../../addon/java_upload/java_upload.php:35 -#: ../../../addon/java_upload/java_upload.php:35 -#: ../../addon/java_upload/java_upload.php:35 -#: ../addon/java_upload/java_upload.php:35 -msgid "" -"Use the following controls only if the Java uploader [above] fails to launch." -msgstr "" +msgstr "Cancella la configurazione OAuth" #: ../../addon/statusnet/statusnet.php:78 -#: ../../../addon/statusnet/statusnet.php:78 -#: ../addon/statusnet/statusnet.php:78 ../../addon/statusnet/statusnet.php:78 msgid "Post to StatusNet" -msgstr "" +msgstr "Invia a StatusNet" #: ../../addon/statusnet/statusnet.php:146 -#: ../../addon/statusnet/statusnet.php:146 -#: ../../../addon/statusnet/statusnet.php:146 -#: ../../addon/statusnet/statusnet.php:146 ../addon/statusnet/statusnet.php:146 msgid "StatusNet Posting Settings" -msgstr "" +msgstr "Impostazioni di invio a StatusNet" #: ../../addon/statusnet/statusnet.php:152 -#: ../../addon/statusnet/statusnet.php:152 -#: ../../../addon/statusnet/statusnet.php:152 -#: ../../addon/statusnet/statusnet.php:152 ../addon/statusnet/statusnet.php:152 msgid "" "No consumer key pair for StatusNet found. Register your Friendika Account as " "an desktop client on your StatusNet account, copy the consumer key pair here " @@ -2185,962 +1906,602 @@ msgid "" "pair ask the administrator if there is already a key pair for this Friendika " "installation at your favorited StatusNet installation." msgstr "" +"Nessuna coppia di chiavi consumer per StatusNet trovata. Regitstra il tuo " +"Account Friendika come un client desktop sul tuo account StatusNet, copia la " +"coppia di chiavi qui e inserisci l'url di base delle API.
Prima di " +"registrare la tua coppia di chiavi OAuth, chiedi all'amministratore se " +"esiste già una coppia di chiavi per questa installazione di Friendika sulla " +"installazione di StatusNet che ti interessa." #: ../../addon/statusnet/statusnet.php:154 -#: ../../addon/statusnet/statusnet.php:154 -#: ../../../addon/statusnet/statusnet.php:154 -#: ../../addon/statusnet/statusnet.php:154 ../addon/statusnet/statusnet.php:154 msgid "OAuth Consumer Key" -msgstr "" +msgstr "OAuth Consumer Key" #: ../../addon/statusnet/statusnet.php:157 -#: ../../addon/statusnet/statusnet.php:157 -#: ../../../addon/statusnet/statusnet.php:157 -#: ../../addon/statusnet/statusnet.php:157 ../addon/statusnet/statusnet.php:157 msgid "OAuth Consumer Secret" -msgstr "" +msgstr "OAuth Consumer Secret" #: ../../addon/statusnet/statusnet.php:160 -#: ../../addon/statusnet/statusnet.php:160 -#: ../../../addon/statusnet/statusnet.php:160 -#: ../../addon/statusnet/statusnet.php:160 ../addon/statusnet/statusnet.php:160 msgid "Base API Path (remember the trailing /)" -msgstr "" +msgstr "Indirizzo di base per le API (ricorda la / alla fine)" #: ../../addon/statusnet/statusnet.php:181 -#: ../../addon/statusnet/statusnet.php:181 -#: ../../../addon/statusnet/statusnet.php:181 -#: ../../addon/statusnet/statusnet.php:181 ../addon/statusnet/statusnet.php:181 msgid "" "To connect to your StatusNet account click the button below to get a " "security code from StatusNet which you have to copy into the input box below " "and submit the form. Only your public posts will be posted " "to StatusNet." msgstr "" +"Per collegare il tuo account StatusNet, clicca sul bottone qui sotto per " +"ottenere un codice di sicurezza da StatusNet, che dovrai copiare nel box più " +"sotto per poi inviare la form. Solo i tuoi messaggi pubblci " +"saranno inviati a StatusNet." #: ../../addon/statusnet/statusnet.php:182 -#: ../../addon/statusnet/statusnet.php:182 -#: ../../../addon/statusnet/statusnet.php:182 -#: ../../addon/statusnet/statusnet.php:182 ../addon/statusnet/statusnet.php:182 msgid "Log in with StatusNet" -msgstr "" +msgstr "Login con StatuNet" #: ../../addon/statusnet/statusnet.php:184 -#: ../../addon/statusnet/statusnet.php:184 -#: ../../../addon/statusnet/statusnet.php:184 -#: ../../addon/statusnet/statusnet.php:184 ../addon/statusnet/statusnet.php:184 msgid "Copy the security code from StatusNet here" -msgstr "" +msgstr "Copia il codice di sicurezza da StatusNet qui" #: ../../addon/statusnet/statusnet.php:198 -#: ../../addon/statusnet/statusnet.php:198 -#: ../../../addon/statusnet/statusnet.php:198 -#: ../../addon/statusnet/statusnet.php:198 ../addon/statusnet/statusnet.php:198 msgid "" "If enabled all your public postings will be posted to the " "associated StatusNet account as well." msgstr "" +"Se abilitato tutti i tuoi messaggi pubblici verranno " +"inviati anche sull'account StatusNet associato." #: ../../addon/statusnet/statusnet.php:200 -#: ../../addon/statusnet/statusnet.php:200 -#: ../../../addon/statusnet/statusnet.php:200 -#: ../../addon/statusnet/statusnet.php:200 ../addon/statusnet/statusnet.php:200 msgid "Send public postings to StatusNet" -msgstr "" +msgstr "Invia messaggi pubblici su StatusNet" -#: ../../index.php:187 ../index.php:187 ../../index.php:187 -msgid "Not Found" -msgstr "" +#: ../../addon/tictac/tictac.php:14 +msgid "Three Dimensional Tic-Tac-Toe" +msgstr "Tic-Tac-Toe tridimensionale" -#: ../../index.php:188 ../index.php:188 ../../index.php:188 -msgid "Page not found." -msgstr "" +#: ../../addon/tictac/tictac.php:47 +msgid "3D Tic-Tac-Toe" +msgstr "3D Tic-Tac-Toe" -#: ../../include/acl_selectors.php:132 ../include/acl_selectors.php:132 -#: ../../include/acl_selectors.php:132 -msgid "Visible To:" -msgstr "" +#: ../../addon/tictac/tictac.php:52 +msgid "New game" +msgstr "Nuovo gioco" -#: ../../include/acl_selectors.php:136 ../include/acl_selectors.php:151 -#: ../../include/acl_selectors.php:136 ../include/acl_selectors.php:136 -#: ../../include/acl_selectors.php:136 ../../include/acl_selectors.php:151 -msgid "Groups" -msgstr "" +#: ../../addon/tictac/tictac.php:53 +msgid "New game with handicap" +msgstr "Nuovo gioco con l'handicap" -#: ../../include/acl_selectors.php:147 ../include/acl_selectors.php:147 -#: ../../include/acl_selectors.php:147 -msgid "Except For:" +#: ../../addon/tictac/tictac.php:54 +msgid "" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " msgstr "" +"Tic-tac-toe tridimensionale è come il gioco tradizionale, solo che si gioca " +"su livelli multipli contemporaneamente." -#: ../../include/auth.php:27 ../include/auth.php:27 ../../include/auth.php:27 -msgid "Logged out." +#: ../../addon/tictac/tictac.php:55 +msgid "" +"In this case there are three levels. You win by getting three in a row on " +"any level, as well as up, down, and diagonally across the different levels." msgstr "" +"In questo caso ci sono tra livelli. Puoi vincere facendo tre caselle in fila " +"su ogni livello, anche verso l'alto, il basso e diagonalmente anche " +"attraverso i diversi livelli." -#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 -#: ../include/profile_selectors.php:6 -msgid "Male" +#: ../../addon/tictac/tictac.php:57 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." msgstr "" +"L'handicap disabilita la casella centrale sul livello di mezzo, perchè il " +"giocatore che si prende quella casella spesso ha un deciso vantaggio." -#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 -#: ../include/profile_selectors.php:6 -msgid "Female" -msgstr "" +#: ../../addon/tictac/tictac.php:176 +msgid "You go first..." +msgstr "Cominci tu..." -#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 -#: ../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "" +#: ../../addon/tictac/tictac.php:181 +msgid "I'm going first this time..." +msgstr "Comincio io questa volta..." -#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 -#: ../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "" +#: ../../addon/tictac/tictac.php:187 +msgid "You won!" +msgstr "Hai vinto!" -#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 -#: ../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "" +#: ../../addon/tictac/tictac.php:193 ../../addon/tictac/tictac.php:218 +msgid "\"Cat\" game!" +msgstr "Stallo!" -#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 -#: ../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "" +#: ../../addon/tictac/tictac.php:216 +msgid "I won!" +msgstr "Ho vinto!" -#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 -#: ../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "" +#: ../../addon/java_upload/java_upload.php:33 +msgid "Select files to upload: " +msgstr "Seleziona i file da caricare: " -#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 -#: ../include/profile_selectors.php:6 -msgid "Intersex" +#: ../../addon/java_upload/java_upload.php:35 +msgid "" +"Use the following controls only if the Java uploader [above] fails to launch." msgstr "" +"Usa il seguente controllo solo se il il caricatore Java (qui sopra) non " +"parte." -#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 -#: ../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "" +#: ../../addon/facebook/facebook.php:116 +msgid "Facebook disabled" +msgstr "Facebook disabilitato" -#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 -#: ../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "" +#: ../../addon/facebook/facebook.php:124 +msgid "Facebook API key is missing." +msgstr "Chiave API Facebook mancante." -#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 -#: ../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "" +#: ../../addon/facebook/facebook.php:131 +msgid "Facebook Connect" +msgstr "Facebook Connect" -#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 -#: ../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "" +#: ../../addon/facebook/facebook.php:137 +msgid "Install Facebook post connector" +msgstr "Istalla il connettore con Facebook" -#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 -#: ../include/profile_selectors.php:6 -msgid "Other" -msgstr "" +#: ../../addon/facebook/facebook.php:144 +msgid "Remove Facebook post connector" +msgstr "Rimuovi il connettore con facebook" -#: ../../include/profile_selectors.php:6 ../../include/profile_selectors.php:6 -#: ../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "" +#: ../../addon/facebook/facebook.php:150 +msgid "Post to Facebook by default" +msgstr "Invia su Facebook di default" -#: ../../include/profile_selectors.php:19 -#: ../../../include/profile_selectors.php:19 -#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 -msgid "Males" -msgstr "" +#: ../../addon/facebook/facebook.php:174 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/profile_selectors.php:19 -#: ../../../include/profile_selectors.php:19 -#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 -msgid "Females" -msgstr "" +#: ../../addon/facebook/facebook.php:175 +msgid "Facebook Connector Settings" +msgstr "Impostazioni Connettore Facebook" -#: ../../include/profile_selectors.php:19 -#: ../../../include/profile_selectors.php:19 -#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 -msgid "Gay" -msgstr "" +#: ../../addon/facebook/facebook.php:189 +msgid "Post to Facebook" +msgstr "Invia a Facebook" -#: ../../include/profile_selectors.php:19 -#: ../../../include/profile_selectors.php:19 -#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 -msgid "Lesbian" -msgstr "" +#: ../../addon/facebook/facebook.php:230 +msgid "Image: " +msgstr "Immagine: " -#: ../../include/profile_selectors.php:19 -#: ../../../include/profile_selectors.php:19 -#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 -msgid "No Preference" -msgstr "" +#: ../../addon/randplace/randplace.php:171 +msgid "Randplace Settings" +msgstr "Impostazioni Randplace" -#: ../../include/profile_selectors.php:19 -#: ../../../include/profile_selectors.php:19 -#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 -msgid "Bisexual" -msgstr "" +#: ../../addon/randplace/randplace.php:173 +msgid "Enable Randplace Plugin" +msgstr "Abilita il plugin Randplace" -#: ../../include/profile_selectors.php:19 -#: ../../../include/profile_selectors.php:19 -#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 -msgid "Autosexual" -msgstr "" +#: ../../addon/js_upload/js_upload.php:39 +msgid "Upload a file" +msgstr "Carica un file" -#: ../../include/profile_selectors.php:19 -#: ../../../include/profile_selectors.php:19 -#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 -msgid "Abstinent" -msgstr "" +#: ../../addon/js_upload/js_upload.php:40 +msgid "Drop files here to upload" +msgstr "Trascina un file qui per caricarlo" -#: ../../include/profile_selectors.php:19 -#: ../../../include/profile_selectors.php:19 -#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 -msgid "Virgin" -msgstr "" +#: ../../addon/js_upload/js_upload.php:42 +msgid "Failed" +msgstr "Fallito" -#: ../../include/profile_selectors.php:19 -#: ../../../include/profile_selectors.php:19 -#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 -msgid "Deviant" -msgstr "" +#: ../../addon/js_upload/js_upload.php:288 +msgid "No files were uploaded." +msgstr "Nessun file è stato caricato." -#: ../../include/profile_selectors.php:19 -#: ../../../include/profile_selectors.php:19 -#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 -msgid "Fetish" -msgstr "" +#: ../../addon/js_upload/js_upload.php:294 +msgid "Uploaded file is empty" +msgstr "Il file caricato è vuoto" -#: ../../include/profile_selectors.php:19 -#: ../../../include/profile_selectors.php:19 -#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 -msgid "Oodles" -msgstr "" +#: ../../addon/js_upload/js_upload.php:299 +msgid "Uploaded file is too large" +msgstr "Il file caricato è troppo grande" -#: ../../include/profile_selectors.php:19 -#: ../../../include/profile_selectors.php:19 -#: ../include/profile_selectors.php:19 ../../include/profile_selectors.php:19 -msgid "Nonsexual" -msgstr "" +#: ../../addon/js_upload/js_upload.php:317 +msgid "File has an invalid extension, it should be one of " +msgstr "Il file ha una estensione non valida, dovrebbe essere una di " -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Single" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Lonely" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Available" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Unavailable" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Dating" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Unfaithful" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Sex Addict" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Friends" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Friends/Benefits" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Casual" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Engaged" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Married" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Partners" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Cohabiting" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Happy" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Not Looking" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Swinger" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Betrayed" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Separated" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Unstable" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Divorced" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Widowed" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Uncertain" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Complicated" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Don't care" -msgstr "" - -#: ../../include/profile_selectors.php:33 -#: ../../../include/profile_selectors.php:33 -#: ../include/profile_selectors.php:33 ../../include/profile_selectors.php:33 -msgid "Ask me" +#: ../../addon/js_upload/js_upload.php:328 +msgid "Upload was cancelled, or server error encountered" msgstr "" +"Il caricamento è stato cancellato, o si è verificato un errore sul server" #: ../../include/contact_selectors.php:32 -#: ../../../include/contact_selectors.php:32 -#: ../include/contact_selectors.php:32 ../../include/contact_selectors.php:32 msgid "Unknown | Not categorised" -msgstr "" +msgstr "Sconosciuto | non categorizzato" #: ../../include/contact_selectors.php:33 -#: ../../../include/contact_selectors.php:33 -#: ../include/contact_selectors.php:33 ../../include/contact_selectors.php:33 msgid "Block immediately" -msgstr "" +msgstr "Blocca immediatamente" #: ../../include/contact_selectors.php:34 -#: ../../../include/contact_selectors.php:34 -#: ../include/contact_selectors.php:34 ../../include/contact_selectors.php:34 msgid "Shady, spammer, self-marketer" -msgstr "" +msgstr "Shady, spammer, self-marketer" #: ../../include/contact_selectors.php:35 -#: ../../../include/contact_selectors.php:35 -#: ../include/contact_selectors.php:35 ../../include/contact_selectors.php:35 msgid "Known to me, but no opinion" -msgstr "" +msgstr "Lo conosco, ma non ho oppinioni" #: ../../include/contact_selectors.php:36 -#: ../../../include/contact_selectors.php:36 -#: ../include/contact_selectors.php:36 ../../include/contact_selectors.php:36 msgid "OK, probably harmless" -msgstr "" +msgstr "E' ok, probabilmente innocuo" #: ../../include/contact_selectors.php:37 -#: ../../../include/contact_selectors.php:37 -#: ../include/contact_selectors.php:37 ../../include/contact_selectors.php:37 msgid "Reputable, has my trust" -msgstr "" +msgstr "Rispettabile, ha la mia fiducia" #: ../../include/contact_selectors.php:55 -#: ../../../include/contact_selectors.php:55 -#: ../include/contact_selectors.php:55 ../../include/contact_selectors.php:55 msgid "Frequently" -msgstr "" +msgstr "Frequentemente" #: ../../include/contact_selectors.php:56 -#: ../../../include/contact_selectors.php:56 -#: ../include/contact_selectors.php:56 ../../include/contact_selectors.php:56 msgid "Hourly" -msgstr "" +msgstr "Ogni ora" #: ../../include/contact_selectors.php:57 -#: ../../../include/contact_selectors.php:57 -#: ../include/contact_selectors.php:57 ../../include/contact_selectors.php:57 msgid "Twice daily" -msgstr "" +msgstr "Due volte al dì" #: ../../include/contact_selectors.php:58 -#: ../../../include/contact_selectors.php:58 -#: ../include/contact_selectors.php:58 ../../include/contact_selectors.php:58 msgid "Daily" -msgstr "" +msgstr "Giornalmente" #: ../../include/contact_selectors.php:59 -#: ../../../include/contact_selectors.php:59 -#: ../include/contact_selectors.php:59 ../../include/contact_selectors.php:59 msgid "Weekly" -msgstr "" +msgstr "Settimanalmente" #: ../../include/contact_selectors.php:60 -#: ../../../include/contact_selectors.php:60 -#: ../include/contact_selectors.php:60 ../../include/contact_selectors.php:60 msgid "Monthly" -msgstr "" +msgstr "Mensilmente" -#: ../../include/nav.php:38 ../boot.php:837 ../include/nav.php:38 -#: ../../include/nav.php:38 ../../boot.php:837 -msgid "Logout" -msgstr "" +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Maschio" -#: ../../include/nav.php:44 ../boot.php:817 ../boot.php:823 -#: ../../include/nav.php:44 ../include/nav.php:44 ../../include/nav.php:44 -#: ../../boot.php:817 ../../boot.php:823 -msgid "Login" -msgstr "" +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Femmina" -#: ../../include/nav.php:56 ../include/nav.php:91 ../include/nav.php:56 -#: ../../include/nav.php:56 ../../include/nav.php:91 -msgid "Home" -msgstr "" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Al momento maschio" -#: ../../include/nav.php:64 ../include/nav.php:64 ../../include/nav.php:64 -msgid "Apps" -msgstr "" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Al momento femmina" -#: ../../include/nav.php:77 ../include/nav.php:77 ../../include/nav.php:77 -msgid "Directory" -msgstr "" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Prevalentemente maschio" -#: ../../include/nav.php:87 ../include/nav.php:87 ../../include/nav.php:87 -msgid "Network" -msgstr "" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Prevalentemente femmina" -#: ../../include/nav.php:96 ../include/nav.php:96 ../../include/nav.php:96 -msgid "Notifications" -msgstr "" +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgenere" -#: ../../include/nav.php:104 ../include/nav.php:104 ../../include/nav.php:104 -msgid "Manage" -msgstr "" +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Bisessuale" -#: ../../include/nav.php:107 ../include/nav.php:107 ../../include/nav.php:107 -msgid "Settings" -msgstr "" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transsessuale" -#: ../../include/nav.php:109 ../include/nav.php:109 ../../include/nav.php:109 -msgid "Profiles" -msgstr "" +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Ermafrodito" -#: ../../include/oembed.php:57 ../include/oembed.php:57 -#: ../../include/oembed.php:57 -msgid "Embedding disabled" -msgstr "" +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutro" -#: ../../include/items.php:1004 ../include/items.php:1004 -#: ../../include/items.php:1004 -msgid "Birthday:" -msgstr "" +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Non-specifico" -#: ../../include/items.php:1348 ../include/items.php:1348 -#: ../../include/items.php:1348 -msgid "You have a new follower at " -msgstr "" +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Altro" -#: ../../include/group.php:130 ../include/group.php:130 -#: ../../include/group.php:130 -msgid "Create a new group" -msgstr "" +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Indeciso" -#: ../../include/group.php:131 ../include/group.php:131 -#: ../../include/group.php:131 -msgid "Everybody" -msgstr "" +#: ../../include/profile_selectors.php:19 +msgid "Males" +msgstr "Maschi" + +#: ../../include/profile_selectors.php:19 +msgid "Females" +msgstr "Femmine" + +#: ../../include/profile_selectors.php:19 +msgid "Gay" +msgstr "Gay" + +#: ../../include/profile_selectors.php:19 +msgid "Lesbian" +msgstr "Lesbica" + +#: ../../include/profile_selectors.php:19 +msgid "No Preference" +msgstr "Nessuna preferenza" + +#: ../../include/profile_selectors.php:19 +msgid "Bisexual" +msgstr "Bisessuale" + +#: ../../include/profile_selectors.php:19 +msgid "Autosexual" +msgstr "Autosessuale" + +#: ../../include/profile_selectors.php:19 +msgid "Abstinent" +msgstr "Astinente" + +#: ../../include/profile_selectors.php:19 +msgid "Virgin" +msgstr "Vergine" + +#: ../../include/profile_selectors.php:19 +msgid "Deviant" +msgstr "Deviato" + +#: ../../include/profile_selectors.php:19 +msgid "Fetish" +msgstr "Fetish" + +#: ../../include/profile_selectors.php:19 +msgid "Oodles" +msgstr "Un sacco" + +#: ../../include/profile_selectors.php:19 +msgid "Nonsexual" +msgstr "Asessuato" + +#: ../../include/profile_selectors.php:33 +msgid "Single" +msgstr "Single" + +#: ../../include/profile_selectors.php:33 +msgid "Lonely" +msgstr "Solitario" + +#: ../../include/profile_selectors.php:33 +msgid "Available" +msgstr "Disoponibile" + +#: ../../include/profile_selectors.php:33 +msgid "Unavailable" +msgstr "Non disponibile" + +#: ../../include/profile_selectors.php:33 +msgid "Dating" +msgstr "Incontro" + +#: ../../include/profile_selectors.php:33 +msgid "Unfaithful" +msgstr "Infedele" + +#: ../../include/profile_selectors.php:33 +msgid "Sex Addict" +msgstr "Sesso-dipendente" + +#: ../../include/profile_selectors.php:33 +msgid "Friends" +msgstr "Amici" + +#: ../../include/profile_selectors.php:33 +msgid "Friends/Benefits" +msgstr "Amici con benefici" + +#: ../../include/profile_selectors.php:33 +msgid "Casual" +msgstr "Casual" + +#: ../../include/profile_selectors.php:33 +msgid "Engaged" +msgstr "Impegnato" + +#: ../../include/profile_selectors.php:33 +msgid "Married" +msgstr "Sposato" + +#: ../../include/profile_selectors.php:33 +msgid "Partners" +msgstr "Partners" + +#: ../../include/profile_selectors.php:33 +msgid "Cohabiting" +msgstr "Coinquilino" + +#: ../../include/profile_selectors.php:33 +msgid "Happy" +msgstr "Felice" + +#: ../../include/profile_selectors.php:33 +msgid "Not Looking" +msgstr "Non in cerca" + +#: ../../include/profile_selectors.php:33 +msgid "Swinger" +msgstr "Scambista" + +#: ../../include/profile_selectors.php:33 +msgid "Betrayed" +msgstr "Tradito" + +#: ../../include/profile_selectors.php:33 +msgid "Separated" +msgstr "Separato" + +#: ../../include/profile_selectors.php:33 +msgid "Unstable" +msgstr "Instabile" + +#: ../../include/profile_selectors.php:33 +msgid "Divorced" +msgstr "Divorziato" + +#: ../../include/profile_selectors.php:33 +msgid "Widowed" +msgstr "Vedovo" + +#: ../../include/profile_selectors.php:33 +msgid "Uncertain" +msgstr "Incerto" + +#: ../../include/profile_selectors.php:33 +msgid "Complicated" +msgstr "Complicato" + +#: ../../include/profile_selectors.php:33 +msgid "Don't care" +msgstr "Non interessa" + +#: ../../include/profile_selectors.php:33 +msgid "Ask me" +msgstr "Chiedimelo" + +#: ../../include/acl_selectors.php:132 +msgid "Visible To:" +msgstr "Visibile a:" + +#: ../../include/acl_selectors.php:136 ../../include/acl_selectors.php:151 +msgid "Groups" +msgstr "Gruppi" + +#: ../../include/acl_selectors.php:147 +msgid "Except For:" +msgstr "Eccetto per:" + +#: ../../include/auth.php:27 +msgid "Logged out." +msgstr "Sei uscito." -#: ../../include/datetime.php:44 ../include/datetime.php:46 -#: ../../include/datetime.php:44 ../include/datetime.php:44 #: ../../include/datetime.php:44 ../../include/datetime.php:46 msgid "Miscellaneous" -msgstr "" +msgstr "Varie" -#: ../../include/datetime.php:148 ../include/datetime.php:148 #: ../../include/datetime.php:148 msgid "less than a second ago" -msgstr "" +msgstr "meno di un secondo fa" -#: ../../include/datetime.php:151 ../include/datetime.php:151 #: ../../include/datetime.php:151 msgid "year" -msgstr "" +msgstr "anno" -#: ../../include/datetime.php:151 ../include/datetime.php:151 #: ../../include/datetime.php:151 msgid "years" -msgstr "" +msgstr "anni" -#: ../../include/datetime.php:152 ../include/datetime.php:152 #: ../../include/datetime.php:152 msgid "month" -msgstr "" +msgstr "mese" -#: ../../include/datetime.php:152 ../include/datetime.php:152 #: ../../include/datetime.php:152 msgid "months" -msgstr "" +msgstr "mesi" -#: ../../include/datetime.php:153 ../include/datetime.php:153 #: ../../include/datetime.php:153 msgid "week" -msgstr "" +msgstr "settimana" -#: ../../include/datetime.php:153 ../include/datetime.php:153 #: ../../include/datetime.php:153 msgid "weeks" -msgstr "" +msgstr "settimane" -#: ../../include/datetime.php:154 ../include/datetime.php:154 #: ../../include/datetime.php:154 msgid "day" -msgstr "" +msgstr "giorno" -#: ../../include/datetime.php:154 ../include/datetime.php:154 #: ../../include/datetime.php:154 msgid "days" -msgstr "" +msgstr "giorni" -#: ../../include/datetime.php:155 ../include/datetime.php:155 #: ../../include/datetime.php:155 msgid "hour" -msgstr "" +msgstr "ora" -#: ../../include/datetime.php:155 ../include/datetime.php:155 #: ../../include/datetime.php:155 msgid "hours" -msgstr "" +msgstr "ore" -#: ../../include/datetime.php:156 ../include/datetime.php:156 #: ../../include/datetime.php:156 msgid "minute" -msgstr "" +msgstr "minuto" -#: ../../include/datetime.php:156 ../include/datetime.php:156 #: ../../include/datetime.php:156 msgid "minutes" -msgstr "" +msgstr "minuti" -#: ../../include/datetime.php:157 ../include/datetime.php:157 #: ../../include/datetime.php:157 msgid "second" -msgstr "" +msgstr "secondo" -#: ../../include/datetime.php:157 ../include/datetime.php:157 #: ../../include/datetime.php:157 msgid "seconds" -msgstr "" +msgstr "secondi" -#: ../../include/datetime.php:164 ../include/datetime.php:164 #: ../../include/datetime.php:164 msgid " ago" -msgstr "" +msgstr " fa" -#: ../../boot.php:808 ../boot.php:808 ../../boot.php:808 -msgid "Create a New Account" -msgstr "" +#: ../../include/nav.php:56 ../../include/nav.php:91 +msgid "Home" +msgstr "Home" -#: ../../boot.php:815 ../boot.php:815 ../../boot.php:815 -msgid "Nickname or Email address: " -msgstr "" +#: ../../include/nav.php:64 +msgid "Apps" +msgstr "Applicazioni" -#: ../../boot.php:816 ../boot.php:816 ../../boot.php:816 -msgid "Password: " -msgstr "" +#: ../../include/nav.php:77 +msgid "Directory" +msgstr "Elenco" -#: ../../boot.php:821 ../boot.php:821 ../../boot.php:821 -msgid "Nickname/Email/OpenID: " -msgstr "" +#: ../../include/nav.php:87 +msgid "Network" +msgstr "Rete" -#: ../../boot.php:822 ../boot.php:822 ../../boot.php:822 -msgid "Password (if not OpenID): " -msgstr "" +#: ../../include/nav.php:96 +msgid "Notifications" +msgstr "Notifiche" -#: ../../boot.php:825 ../boot.php:825 ../../boot.php:825 -msgid "Forgot your password?" -msgstr "" +#: ../../include/nav.php:104 +msgid "Manage" +msgstr "Gestisci" -#: ../../boot.php:826 ../boot.php:826 ../../boot.php:826 -msgid "Password Reset" -msgstr "" +#: ../../include/nav.php:107 +msgid "Settings" +msgstr "Impostazioni" -#: ../../boot.php:1077 ../boot.php:1077 ../../boot.php:1077 -msgid "prev" -msgstr "" +#: ../../include/nav.php:109 +msgid "Profiles" +msgstr "Profili" -#: ../../boot.php:1079 ../boot.php:1079 ../../boot.php:1079 -msgid "first" -msgstr "" +#: ../../include/items.php:1004 +msgid "Birthday:" +msgstr "Compleanno:" -#: ../../boot.php:1108 ../boot.php:1108 ../../boot.php:1108 -msgid "last" -msgstr "" +#: ../../include/items.php:1348 +msgid "You have a new follower at " +msgstr "Hai un nuovo seguace su " -#: ../../boot.php:1111 ../boot.php:1111 ../../boot.php:1111 -msgid "next" -msgstr "" +#: ../../include/group.php:130 +msgid "Create a new group" +msgstr "Crea un nuovo gruppo" -#: ../../boot.php:1831 ../boot.php:1831 ../../boot.php:1831 -msgid " likes this." -msgstr "" +#: ../../include/group.php:131 +msgid "Everybody" +msgstr "Tutti" -#: ../../boot.php:1831 ../boot.php:1831 ../../boot.php:1831 -msgid " doesn't like this." -msgstr "" - -#: ../../boot.php:1834 ../boot.php:1834 ../../boot.php:1834 -msgid "people" -msgstr "" - -#: ../../boot.php:1834 ../boot.php:1834 ../../boot.php:1834 -msgid "like this." -msgstr "" - -#: ../../boot.php:1834 ../boot.php:1834 ../../boot.php:1834 -msgid "don't like this." -msgstr "" - -#: ../../boot.php:1839 ../boot.php:1839 ../../boot.php:1839 -msgid "and" -msgstr "" - -#: ../../boot.php:1842 ../boot.php:1842 ../../boot.php:1842 -msgid ", and " -msgstr "" - -#: ../../boot.php:1842 ../boot.php:1842 ../../boot.php:1842 -msgid " other people" -msgstr "" - -#: ../../boot.php:1843 ../boot.php:1843 ../../boot.php:1843 -msgid " like this." -msgstr "" - -#: ../../boot.php:1843 ../boot.php:1843 ../../boot.php:1843 -msgid " don't like this." -msgstr "" - -#: ../../boot.php:2004 ../boot.php:2004 ../../boot.php:2004 -msgid "No contacts" -msgstr "" - -#: ../../boot.php:2257 ../boot.php:2257 ../../boot.php:2257 -msgid "Connect" -msgstr "" - -#: ../../boot.php:2267 ../boot.php:2267 ../../boot.php:2267 -msgid "Location:" -msgstr "" - -#: ../../boot.php:2271 ../boot.php:2271 ../../boot.php:2271 -msgid ", " -msgstr "" - -#: ../../boot.php:2279 ../boot.php:2279 ../../boot.php:2279 -msgid "Gender:" -msgstr "" - -#: ../../boot.php:2283 ../boot.php:2283 ../../boot.php:2283 -msgid "Status:" -msgstr "" - -#: ../../boot.php:2285 ../boot.php:2285 ../../boot.php:2285 -msgid "Homepage:" -msgstr "" - -#: ../../boot.php:2376 ../boot.php:2376 ../../boot.php:2376 -msgid "Monday" -msgstr "" - -#: ../../boot.php:2376 ../boot.php:2376 ../../boot.php:2376 -msgid "Tuesday" -msgstr "" - -#: ../../boot.php:2376 ../boot.php:2376 ../../boot.php:2376 -msgid "Wednesday" -msgstr "" - -#: ../../boot.php:2376 ../boot.php:2376 ../../boot.php:2376 -msgid "Thursday" -msgstr "" - -#: ../../boot.php:2376 ../boot.php:2376 ../../boot.php:2376 -msgid "Friday" -msgstr "" - -#: ../../boot.php:2376 ../boot.php:2376 ../../boot.php:2376 -msgid "Saturday" -msgstr "" - -#: ../../boot.php:2376 ../boot.php:2376 ../../boot.php:2376 -msgid "Sunday" -msgstr "" - -#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 -msgid "January" -msgstr "" - -#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 -msgid "February" -msgstr "" - -#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 -msgid "March" -msgstr "" - -#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 -msgid "April" -msgstr "" - -#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 -msgid "May" -msgstr "" - -#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 -msgid "June" -msgstr "" - -#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 -msgid "July" -msgstr "" - -#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 -msgid "August" -msgstr "" - -#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 -msgid "September" -msgstr "" - -#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 -msgid "October" -msgstr "" - -#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 -msgid "November" -msgstr "" - -#: ../../boot.php:2380 ../boot.php:2380 ../../boot.php:2380 -msgid "December" -msgstr "" - -#: ../../boot.php:2409 ../boot.php:2409 ../../boot.php:2409 -msgid "Birthdays this week:" -msgstr "" - -#: ../../boot.php:2410 ../boot.php:2410 ../../boot.php:2410 -msgid "(Adjusted for local time)" -msgstr "" - -#: ../../boot.php:2419 ../boot.php:2419 ../../boot.php:2419 -msgid "[today]" -msgstr "" - -#: ../../boot.php:2616 ../boot.php:2616 ../../boot.php:2616 -msgid "link to source" -msgstr "" - -#: ../../mod/lostpass.php:38 ../../mod/lostpass.php:38 ../../mod/lostpass.php:38 -#, php-format -msgid "Password reset requested at %s" -msgstr "" - -#: ../../mod/manage.php:37 ../../mod/manage.php:37 ../../mod/manage.php:37 -#, php-format -msgid "Welcome back %s" -msgstr "" - -#: ../../mod/dfrn_poll.php:78 ../../mod/dfrn_poll.php:392 -#: ../../mod/dfrn_poll.php:78 ../../mod/dfrn_poll.php:78 -#: ../../mod/dfrn_poll.php:392 -#, php-format -msgid "%s welcomes %s" -msgstr "" - -#: ../../mod/wall_upload.php:56 ../../mod/profile_photo.php:109 -#: ../../../mod/wall_upload.php:56 ../../mod/wall_upload.php:56 -#: ../../mod/wall_upload.php:56 ../../mod/profile_photo.php:109 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "" - -#: ../../mod/home.php:23 ../../mod/home.php:23 ../../mod/home.php:23 -#, php-format -msgid "Welcome to %s" -msgstr "" - -#: ../../mod/regmod.php:54 ../../mod/regmod.php:54 ../../mod/regmod.php:54 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - -#: ../../mod/regmod.php:92 ../../mod/register.php:310 ../../mod/regmod.php:92 -#: ../../mod/regmod.php:92 ../../mod/register.php:310 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: ../../mod/item.php:422 ../../mod/item.php:422 ../../mod/item.php:422 -#, php-format -msgid "%s commented on your item at %s" -msgstr "" - -#: ../../mod/item.php:445 ../../mod/item.php:445 ../../mod/item.php:445 -#, php-format -msgid "%s posted on your profile wall at %s" -msgstr "" - -#: ../../mod/item.php:446 ../../mod/item.php:446 ../../mod/item.php:446 -msgid "Administrator@" -msgstr "" - -#: ../../mod/item.php:489 ../../mod/item.php:489 ../../mod/item.php:489 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendika social network." -msgstr "" - -#: ../../mod/item.php:495 ../../mod/item.php:495 ../../mod/item.php:495 -#, php-format -msgid "%s posted an update." -msgstr "" - -#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68 -#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:237 -#: ../../../mod/profile_photo.php:61 ../../mod/profile_photo.php:75 -#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:61 -#: ../../mod/profile_photo.php:68 ../../mod/profile_photo.php:75 -#: ../../mod/profile_photo.php:237 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "" - -#: ../../mod/invite.php:28 ../../mod/invite.php:28 ../../mod/invite.php:28 -#, php-format -msgid "%s : Not a valid email address." -msgstr "" - -#: ../../mod/invite.php:32 ../../mod/invite.php:32 ../../mod/invite.php:32 -#, php-format -msgid "Please join my network on %s" -msgstr "" - -#: ../../mod/invite.php:38 ../../mod/invite.php:38 ../../mod/invite.php:38 -#, php-format -msgid "%s : Message delivery failed." -msgstr "" - -#: ../../mod/invite.php:42 ../../mod/invite.php:42 ../../mod/invite.php:42 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" - -#: ../../mod/invite.php:60 ../../mod/invite.php:60 ../../mod/invite.php:60 -#, php-format -msgid "Please join my social network on %s" -msgstr "" - -#: ../../mod/register.php:347 ../../mod/register.php:347 -#: ../../mod/register.php:347 -#, php-format -msgid "Registration request at %s" -msgstr "" - -#: ../../mod/like.php:151 ../../mod/like.php:151 ../../mod/like.php:151 -#, php-format -msgid "%s's" -msgstr "di %s" - -#: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:357 ../test.php:6 -#: ../../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:126 -#: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:357 -#: ../../test.php:6 -#, 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 alla posizione data" -msgstr[1] "%d parametri richiesti non sono stati trovati alla posizione data" - -#: ../../mod/dfrn_request.php:241 ../../mod/dfrn_request.php:241 -#: ../../mod/dfrn_request.php:241 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s ha ricevuto troppe richieste di connessioni per oggi." - -#: ../../mod/dfrn_request.php:309 ../../mod/dfrn_request.php:309 -#: ../../mod/dfrn_request.php:309 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Sembra che tu sia già amico di %s." +#: ../../include/oembed.php:57 +msgid "Embedding disabled" +msgstr "Inclusione disabilitata" diff --git a/view/it/strings.php b/view/it/strings.php index e12ea556f9..a09d9288e0 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -3,554 +3,563 @@ function string_plural_select($n){ return ($n != 1); } +; +$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["Normal View"] = "Vista Normale"; -$a->strings["New Item View"] = "Vista Nuovi Elementi"; +$a->strings["Create a New Account"] = "Crea un Nuovo Account"; +$a->strings["Register"] = "Regitrati"; +$a->strings["Nickname or Email address: "] = "Soprannome o indirizzo Email: "; +$a->strings["Password: "] = "Password: "; +$a->strings["Login"] = "Accedi"; +$a->strings["Nickname/Email/OpenID: "] = "Soprannome/Email/OpenID: "; +$a->strings["Password (if not OpenID): "] = "Password (se non OpenID): "; +$a->strings["Forgot your password?"] = "Dimenticata la password?"; +$a->strings["Password Reset"] = "Resetta password"; +$a->strings["Logout"] = "Esci"; +$a->strings["prev"] = "prec"; +$a->strings["first"] = "primo"; +$a->strings["last"] = "ultimo"; +$a->strings["next"] = "succ"; +$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["No contacts"] = "Nessun contatto"; +$a->strings["Contacts"] = "Contatti"; +$a->strings["View Contacts"] = "Guarda contatti"; +$a->strings["Search"] = "Cerca"; +$a->strings["No profile"] = "Nessun profilo"; +$a->strings["Connect"] = "Connetti"; +$a->strings["Location:"] = "Posizione:"; +$a->strings[", "] = ", "; +$a->strings["Gender:"] = "Genere:"; +$a->strings["Status:"] = "Stato:"; +$a->strings["Homepage:"] = "Homepage:"; +$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["Birthdays this week:"] = "Compleanni questa settimana:"; +$a->strings["(Adjusted for local time)"] = "(Convertiti all'ora locale)"; +$a->strings["[today]"] = "[oggi]"; +$a->strings["link to source"] = "Collegamento all'originale"; +$a->strings["Welcome back %s"] = "Bentornato %s"; +$a->strings["Manage Identities and/or Pages"] = "Gestisci Indentità e/o Pagine"; +$a->strings["(Toggle between different identities or community/group pages which shareyour account details.)"] = ""; +$a->strings["Select an identity to manage: "] = "Seleziona una identità da gestire:"; +$a->strings["Submit"] = "Invia"; +$a->strings["Image exceeds size limit of %d"] = "La dimensionde dell'immagine supera il limite di %d"; +$a->strings["Unable to process image."] = "Impossibile elaborare l'immagine."; +$a->strings["Wall Photos"] = "Foto Bacheca"; +$a->strings["Image upload failed."] = "Caricamento immagine fallito."; +$a->strings["Administrator"] = "Amministratore"; +$a->strings["noreply"] = "nessuna risposta"; +$a->strings["New mail received at "] = "Nuova mail ricevuta su "; +$a->strings["%s commented on an item at %s"] = "%s ha commentato un elemento su %s"; $a->strings["Share"] = "Condividi"; $a->strings["Upload photo"] = "Carica foto"; -$a->strings["Insert web link"] = "Inserisci collegamento web"; +$a->strings["Insert web link"] = "Inserisci link"; $a->strings["Insert YouTube video"] = "Inserisci video da YouTube"; $a->strings["Set your location"] = "Imposta la tua posizione"; -$a->strings["Clear browser location"] = "Cancella la posizione del browser"; +$a->strings["Clear browser location"] = "Cancella la tua posizione data dal browser"; $a->strings["Please wait"] = "Attendi"; -$a->strings["Permission settings"] = "Impostazioni permessi"; +$a->strings["Permission settings"] = "Impostazione permessi"; $a->strings["CC: email addresses"] = "CC: indirizzi email"; $a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com"; -$a->strings["No such group"] = "Nessun gruppo"; -$a->strings["Group is empty"] = "Il gruppo è vuoto"; -$a->strings["Group: "] = "Gruppo:"; -$a->strings["View $name's profile"] = "Vedi il profilo di $name"; -$a->strings["View in context"] = "Vedi nel contesto"; -$a->strings["Private Message"] = "Messaggio Privato"; -$a->strings["I like this (toggle)"] = "Mi piace (metti/togli)"; -$a->strings["I don't like this (toggle)"] = "Non mi piace (metti/togli)"; +$a->strings["Private Message"] = "Messaggio privato"; +$a->strings["I like this (toggle)"] = "Mi piace questo (metti/togli)"; +$a->strings["I don't like this (toggle)"] = "Non mi piace questo (metti/togli)"; $a->strings["This is you"] = "Questo sei tu"; -$a->strings["Delete"] = "Elimina"; -$a->strings["View $owner_name's profile"] = "Vedi il profilo di $owner_name"; -$a->strings["to"] = "a"; -$a->strings["Wall-to-Wall"] = "Sulla Bacheca"; -$a->strings["via Wall-To-Wall:"] = "sulla sua Bacheca:"; +$a->strings["Delete"] = "Cancella"; +$a->strings["View $name's profile"] = "Guarda il profilo di $name"; +$a->strings["Shared content is covered by the Creative CommonsAttribution 3.0 license."] = ""; +$a->strings["The profile address specified does not provide adequate information."] = ""; +$a->strings["Limited profile. This person will be unable to receive direct/personalnotifications from you."] = ""; +$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto."; +$a->strings["following"] = "segue"; +$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il ritaglio è fallito."; +$a->strings["Profile Photos"] = "Foto del profilo"; +$a->strings["Image size reduction [%s] failed."] = "Riduzione della dimensione dell'immagine [%s] fallito."; +$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; +$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; +$a->strings["Welcome to %s"] = "Benvenuto su %s"; +$a->strings["Please login."] = "Accedi."; +$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; +$a->strings["Registration details for %s"] = "Dettagli registrazione per %s"; +$a->strings["Account approved."] = "Account approvato."; $a->strings["Profile not found."] = "Profilo non trovato."; -$a->strings["Profile Name is required."] = "Il Nome del Profilo è richieso."; +$a->strings["Profile Name is required."] = "Il Nome Profilo è richiesto ."; $a->strings["Profile updated."] = "Profilo aggiornato."; -$a->strings["Profile deleted."] = "Profilo cancellato."; +$a->strings["Profile deleted."] = "Profilo elminato."; $a->strings["Profile-"] = "Profilo-"; $a->strings["New profile created."] = "Nuovo profilo creato."; -$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; -$a->strings["Age: "] = "Età:"; -$a->strings["Profile Image"] = "Immagine del profilo"; -$a->strings["Administrator"] = "Amministratore"; -$a->strings["Invalid request identifier."] = "Indentificativo richiesta non valido."; -$a->strings["Discard"] = "Rimuovi"; +$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il plrofilo."; +$a->strings["This is your public profile.
It maybe visible to anybody using the internet."] = ""; +$a->strings["Age: "] = "Età : "; +$a->strings["Profile Image"] = "Immagine del Profilo"; +$a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Passoword non cambiata."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Password vuote non sono consentite. Password non cambiata."; +$a->strings["Password changed."] = "Password cambiata."; +$a->strings["Password update failed. Please try again."] = "Aggiornamento password fallito. Prova ancora."; +$a->strings[" Please use a shorter name."] = " Usa un nome più corto."; +$a->strings[" Name too short."] = " Nome troppo corto."; +$a->strings[" Not valid email."] = " Email non valida."; +$a->strings[" Cannot change to that email."] = "Non puoi usare quella email."; +$a->strings["Settings updated."] = "Impostazioni aggiornate."; +$a->strings["Plugin Settings"] = "Impostazioni Plugin"; +$a->strings["Account Settings"] = "Impostazioni Account"; +$a->strings["No Plugin settings configured"] = "Nessun Plugin ha delle configurazioni che puoi modificare"; +$a->strings["OpenID: "] = "OpenID: "; +$a->strings[" (Optional) Allow this OpenID to login to this account."] = ""; +$a->strings["Profile is not published."] = "Il profilo non è pubblicato."; +$a->strings["Default Post Permissions"] = "Permessi di default per i messaggi"; +$a->strings["View in context"] = "Vedi nel contesto"; +$a->strings["Photo Albums"] = "Album Foto"; +$a->strings["Contact Photos"] = "Foto dei contatti"; +$a->strings["Contact information unavailable"] = "Informazione sul contatto non disponibile"; +$a->strings["Album not found."] = "Album non trovato."; +$a->strings["Delete Album"] = "Elimina album"; +$a->strings["Delete Photo"] = "Elimina foto"; +$a->strings["was tagged in a"] = "è stato taggato in"; +$a->strings["photo"] = "foto"; +$a->strings["by"] = "da"; +$a->strings["Image exceeds size limit of "] = "L'immagine supera il limite di dimensione di "; +$a->strings["No photos selected"] = "Nessuna foto selezionata"; +$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["Permissions"] = "Permessi"; +$a->strings["Edit Album"] = "Modifica album"; +$a->strings["View Photo"] = "Vedi foto"; +$a->strings["Photo not available"] = "Foto non disponibile"; +$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 album"; +$a->strings["Caption"] = "Didascalia"; +$a->strings["Add a Tag"] = "Aggiungi un tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = ""; +$a->strings["Recent Photos"] = "Foto recenti"; +$a->strings["Upload New Photos"] = "Carica nuova foto"; +$a->strings["View Album"] = "Vedi album"; +$a->strings["Item not found."] = "Elemento non trovato."; +$a->strings["View $owner_name's profile"] = "Guarda il profilo di $owner_name"; +$a->strings["to"] = "a"; +$a->strings["Wall-to-Wall"] = "Bacheca-A-Bacheca"; +$a->strings["via Wall-To-Wall:"] = "sulla sua Bacheca:"; +$a->strings["Item has been removed."] = "L'elemento è stato rimosso."; +$a->strings["%s : Not a valid email address."] = "%s: Non è un indirizzo email valido."; +$a->strings["Please join my network on %s"] = "Unisciti al mio social network su %s"; +$a->strings["%s : Message delivery failed."] = "%s: Consegna del messaggio fallita."; +$a->strings["%d message sent."] = array( + 0 => "%d messaggio inviato.", + 1 => "%d messaggi inviati.", +); +$a->strings["Send invitations"] = "Invia inviti"; +$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; +$a->strings["Your message:"] = "Il tuo messaggio:"; +$a->strings["Please join my social network on %s"] = "Unisciti al mio social network su %s"; +$a->strings["To accept this invitation, please visit:"] = "Per accettare questo invito visita:"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me sul mio profilo a:"; +$a->strings["Invite Friends"] = "Invita Amici"; +$a->strings["Connect/Follow"] = "Connetti/Segui"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; +$a->strings["Follow"] = "Segui"; +$a->strings["Could not access contact record."] = "Non si puo' 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 aggiornando il contatto."; +$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 conttatto è non ignorato"; +$a->strings["stopped following"] = "tolto dai seguiti"; +$a->strings["Contact has been removed."] = "Il contatto è stato rimosso."; +$a->strings["Contact not found."] = "Contatto non trovato."; +$a->strings["Mutual Friendship"] = "Reciproca amicizia"; +$a->strings["is a fan of yours"] = "è un tuo fan"; +$a->strings["you are a fan of"] = "sei un fan di"; +$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["Contact Editor"] = "Editor dei Contatti"; +$a->strings["Visit $name's profile"] = "Visita il profilo di $name"; +$a->strings["Block/Unblock contact"] = "Blocca/Sblocca contatto"; +$a->strings["Ignore contact"] = "Ingnora il contatto"; +$a->strings["Delete contact"] = "Rimuovi contatto"; +$a->strings["Last updated: "] = "Ultimo aggiornameto: "; +$a->strings["Update public posts: "] = "Aggiorna messaggi pubblici: "; +$a->strings["Update now"] = "Aggiorna adesso"; +$a->strings["Unblock this contact"] = "Sblocca questo contatto"; +$a->strings["Block this contact"] = "Blocca questo contatto"; +$a->strings["Unignore this contact"] = "Rimuovi dai contatti ingorati"; +$a->strings["Ignore this contact"] = "Aggiungi ai contatti ignorati"; +$a->strings["Currently blocked"] = "Bloccato"; +$a->strings["Currently ignored"] = "Ignorato"; +$a->strings["Show Blocked Connections"] = "Mostra connessioni bloccate"; +$a->strings["Hide Blocked Connections"] = "Nascondi connessioni bloccate"; +$a->strings["Finding: "] = "Cerco: "; +$a->strings["Find"] = "Trova"; +$a->strings["Visit $username's profile"] = "Visita il profilo di $username"; +$a->strings["Edit contact"] = "Modifca contatto"; +$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; +$a->strings["Visible to:"] = "Visibile a:"; +$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."] = ""; +$a->strings["Not a valid email address."] = "Indirizzo email invaildo."; +$a->strings["Cannot use that email."] = "Questa email non si puo' usare."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", andmust also begin with a letter."] = ""; +$a->strings["Nickname is already registered. Please choose another."] = "Soprannome già registrato. Scegline un'altro."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: Generazione delle chiavi di sicurezza fallito."; +$a->strings["An error occurred during registration. Please try again."] = "Si è verificato un errore durante la registrazione. Prova ancora."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Si è verificato un errore creando il tuo profilo. Prova ancora."; +$a->strings["Registration successful. Please check your email for further instructions."] = ""; +$a->strings["Failed to send email message. Here is the message that failed."] = "Errore inviando il messaggio email. Questo è il messaggio non inviato."; +$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere elaborata."; +$a->strings["Registration request at %s"] = "Richiesta di registrazione su %s"; +$a->strings["Your registration is pending approval by the site owner."] = ""; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenIDand clicking 'Register'."] = ""; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fillin the rest of the items."] = ""; +$a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): "; +$a->strings["Members of this network prefer to communicate with real people who use theirreal names."] = ""; +$a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco dei membir?"; +$a->strings["Yes"] = "Si"; +$a->strings["No"] = "No"; +$a->strings["Registration"] = "Registrazione"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo Nome Completo (p.e. Mario Rossi): "; +$a->strings["Your Email Address: "] = "Il tuo Indirizzo Email: "; +$a->strings["Choose a profile nickname. This must begin with a text character. Yourprofile address on this site will then be'nickname@$sitename'."] = ""; +$a->strings["Choose a nickname: "] = "Scegli un soprannome: "; +$a->strings["Could not create/connect to database."] = "Impossibile creare/collegarsi al database."; +$a->strings["Connected to database."] = "Collegato al database."; +$a->strings["Database import succeeded."] = "Importazione database completata."; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = ""; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Guarda il file \"INSTALL.txt\"."; +$a->strings["Database import failed."] = "Importazione database fallita."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadminor mysql."] = ""; +$a->strings["Welcome to Friendika."] = "Benvenuto su Friendika."; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = ""; +$a->strings["This is required. Please adjust the configuration file .htconfig.phpaccordingly."] = "E' richiesto. Aggiorna il file .htconfig.php di conseguenza."; +$a->strings["The command line version of PHP on your system does not have\"register_argc_argv\" enabled."] = ""; +$a->strings["This is required for message delivery to work."] = "Ciò è richiesto per far funzionare la consegna dei messaggi."; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able togenerate encryption keys"] = ""; +$a->strings["If running under Windows, please see\"http://www.php.net/manual/en/openssl.installation.php\"."] = ""; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = ""; +$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto ma non installato."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = ""; +$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto ma non installato."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto ma non installato"; +$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."] = ""; +$a->strings["This is most often a permission setting, as the web server may not be ableto write files in your folder - even if you can."] = ""; +$a->strings["Please check with your site documentation or support people to see if thissituation can be corrected."] = ""; +$a->strings["If not, you may be required to perform a manual installation. Please see thefile \"INSTALL.txt\" for instructions."] = ""; +$a->strings["The database configuration file \".htconfig.php\" could not be written.Please use the enclosed text to create a configuration file in your webserver root."] = ""; +$a->strings["Errors encountered creating database tables."] = "Errori creando le tabelle nel database."; +$a->strings["Normal View"] = "Vista normale"; +$a->strings["New Item View"] = "Vista Nuovi Elementi"; +$a->strings["No such group"] = "Nessun gruppo"; +$a->strings["Group is empty"] = "Il gruppo è vuoto"; +$a->strings["Group: "] = "Gruppo: "; +$a->strings["Invalid request identifier."] = "Identificativo richiesta invalido."; +$a->strings["Discard"] = "Scarta"; $a->strings["Ignore"] = "Ignora"; -$a->strings["Show Ignored Requests"] = "Mostra Richieste Ignorate"; -$a->strings["Hide Ignored Requests"] = "Nascondi Richieste Ignorate"; -$a->strings["Claims to be known to you: "] = "Dice di conoscerti:"; +$a->strings["Show Ignored Requests"] = "Mostra richieste ignorate"; +$a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate"; +$a->strings["Claims to be known to you: "] = "Dice di conoscerti: "; $a->strings["yes"] = "si"; $a->strings["no"] = "no"; -$a->strings["Approve as: "] = "Approva come:"; +$a->strings["Approve as: "] = "Approva come: "; $a->strings["Friend"] = "Amico"; -$a->strings["Fan/Admirer"] = "Fan/Ammiratore"; -$a->strings["Notification type: "] = "Tipo di notifica:"; -$a->strings["Friend/Connect Request"] = "Amico/Richiesta di Connessione"; -$a->strings["New Follower"] = "Nuovo seguace"; +$a->strings["Fan/Admirer"] = "Fan/Admiratore"; +$a->strings["Notification type: "] = "Tipo di notifica: "; +$a->strings["Friend/Connect Request"] = "Richiesta Amicizia/Connessione"; +$a->strings["New Follower"] = "Nuovo Seguace"; $a->strings["Approve"] = "Approva"; $a->strings["No notifications."] = "Nessuna notifica."; $a->strings["No registrations."] = "Nessuna registrazione."; -$a->strings["Could not create/connect to database."] = "Nono posso creare/connettermi al database."; -$a->strings["Connected to database."] = "Connesso al database."; -$a->strings["Database import succeeded."] = "Importazione del database riuscita."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Guarda il file \"INSTALL.txt\"."; -$a->strings["Database import failed."] = "Importazione del database fallita."; -$a->strings["Welcome to Friendika."] = "Benvenuto su Friendika."; -$a->strings["Submit"] = "Invia"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = ""; -$a->strings["This is required for message delivery to work."] = "E' richiesto per il funzionamento della consegna dei messaggi."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: Il modulo libCURL di PHP è richiesto ma non è installato."; -$a->strings["Error: openssl PHP module required but not installed."] = "Errore: Il modulo openssl di PHP è richiesto ma non è installato."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: Il modulo mysqli di PHP è richiesto ma non è installato."; -$a->strings["Errors encountered creating database tables."] = ""; -$a->strings["No recipient selected."] = ""; -$a->strings["[no subject]"] = ""; -$a->strings["Unable to locate contact information."] = ""; -$a->strings["Wall Photos"] = ""; -$a->strings["Message sent."] = ""; -$a->strings["Message could not be sent."] = ""; -$a->strings["Messages"] = ""; -$a->strings["Inbox"] = ""; -$a->strings["Outbox"] = ""; -$a->strings["New Message"] = ""; -$a->strings["Message deleted."] = ""; -$a->strings["Conversation removed."] = ""; -$a->strings["Send Private Message"] = ""; -$a->strings["To:"] = ""; -$a->strings["Subject:"] = ""; -$a->strings["Your message:"] = ""; -$a->strings["No messages."] = ""; -$a->strings["Delete conversation"] = ""; -$a->strings["Message not available."] = ""; -$a->strings["Delete message"] = ""; -$a->strings["Send Reply"] = ""; -$a->strings["Global Directory"] = ""; -$a->strings["Finding: "] = ""; -$a->strings["Welcome back "] = ""; -$a->strings["Manage Identities and/or Pages"] = ""; -$a->strings["Select an identity to manage: "] = ""; -$a->strings[" welcomes "] = ""; -$a->strings["Contact not found."] = ""; -$a->strings["Response from remote site was not understood."] = ""; -$a->strings["Unexpected response from remote site: "] = ""; -$a->strings["Confirmation completed successfully."] = ""; -$a->strings["Remote site reported: "] = ""; -$a->strings["Temporary failure. Please wait and try again."] = ""; -$a->strings["Introduction failed or was revoked."] = ""; -$a->strings["Unable to set contact photo."] = ""; -$a->strings["is now friends with"] = ""; -$a->strings["No user record found for '%s' "] = ""; -$a->strings["Our site encryption key is apparently messed up."] = ""; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = ""; -$a->strings["Contact record was not found for you on our site."] = ""; -$a->strings["Unable to set your contact credentials on our system."] = ""; -$a->strings["Unable to update your contact profile details on our system"] = ""; -$a->strings["Connection accepted at %s"] = ""; -$a->strings["Image exceeds size limit of "] = ""; -$a->strings["Unable to process image."] = ""; -$a->strings["Image upload failed."] = ""; -$a->strings["Item not found."] = ""; -$a->strings["Item has been removed."] = ""; -$a->strings["Remote privacy information not available."] = ""; -$a->strings["Visible to:"] = ""; -$a->strings["noreply"] = ""; -$a->strings["New mail received at "] = ""; -$a->strings["%s commented on an item at %s"] = ""; -$a->strings["From: Administrator@"] = ""; -$a->strings["Remove My Account"] = ""; -$a->strings["Please enter your password for verification:"] = ""; -$a->strings["Welcome to "] = ""; -$a->strings["Please login."] = ""; -$a->strings["Registration revoked for "] = ""; -$a->strings["Registration details for "] = ""; -$a->strings["Account approved."] = ""; -$a->strings["Applications"] = ""; -$a->strings["Photo Albums"] = ""; -$a->strings["Contact Photos"] = ""; -$a->strings["Contact information unavailable"] = ""; -$a->strings["Profile Photos"] = ""; -$a->strings["Album not found."] = ""; -$a->strings["Delete Album"] = ""; -$a->strings["Delete Photo"] = ""; -$a->strings["was tagged in a"] = ""; -$a->strings["photo"] = ""; -$a->strings["by"] = ""; -$a->strings["No photos selected"] = ""; -$a->strings["Upload Photos"] = ""; -$a->strings["New album name: "] = ""; -$a->strings["or existing album name: "] = ""; -$a->strings["Permissions"] = ""; -$a->strings["Edit Album"] = ""; -$a->strings["View Photo"] = ""; -$a->strings["Photo not available"] = ""; -$a->strings["Edit photo"] = ""; -$a->strings["Use as profile photo"] = ""; -$a->strings["View Full Size"] = ""; -$a->strings["Tags: "] = ""; -$a->strings["[Remove any tag]"] = ""; -$a->strings["New album name"] = ""; -$a->strings["Caption"] = ""; -$a->strings["Add a Tag"] = ""; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = ""; -$a->strings["Recent Photos"] = ""; -$a->strings["Upload New Photos"] = ""; -$a->strings["View Album"] = ""; -$a->strings["No profile"] = ""; -$a->strings["View Contacts"] = ""; -$a->strings["No contacts."] = ""; -$a->strings["Visit "] = ""; -$a->strings["'s profile"] = ""; -$a->strings["Passwords do not match. Password unchanged."] = ""; -$a->strings["Empty passwords are not allowed. Password unchanged."] = ""; -$a->strings["Password changed."] = ""; -$a->strings["Password update failed. Please try again."] = ""; -$a->strings[" Please use a shorter name."] = ""; -$a->strings[" Name too short."] = ""; -$a->strings[" Not valid email."] = ""; -$a->strings[" Cannot change to that email."] = ""; -$a->strings["Settings updated."] = ""; -$a->strings["Plugin Settings"] = ""; -$a->strings["Account Settings"] = ""; -$a->strings["No Plugin settings configured"] = ""; -$a->strings["OpenID: "] = ""; -$a->strings[" (Optional) Allow this OpenID to login to this account."] = ""; -$a->strings["Profile is not published."] = ""; -$a->strings["Default Post Permissions"] = ""; -$a->strings["Unable to locate original post."] = ""; -$a->strings["Empty post discarded."] = ""; -$a->strings[" commented on your item at "] = ""; -$a->strings[" posted on your profile wall at "] = ""; -$a->strings["System error. Post not saved."] = ""; -$a->strings["This message was sent to you by "] = ""; -$a->strings[", a member of the Friendika social network."] = ""; -$a->strings["You may visit them online at"] = ""; -$a->strings["posted an update."] = ""; -$a->strings["Search"] = ""; -$a->strings["Image uploaded but image cropping failed."] = ""; -$a->strings["Image size reduction [175] failed."] = ""; -$a->strings["Image size reduction [80] failed."] = ""; -$a->strings["Image size reduction [48] failed."] = ""; -$a->strings["Unable to process image"] = ""; -$a->strings["Image uploaded successfully."] = ""; -$a->strings["Image size reduction [640] failed."] = ""; -$a->strings["Group created."] = ""; -$a->strings["Could not create group."] = ""; -$a->strings["Group not found."] = ""; -$a->strings["Group name changed."] = ""; -$a->strings["Membership list updated."] = ""; -$a->strings["Permission denied"] = ""; -$a->strings["Group removed."] = ""; -$a->strings["Unable to remove group."] = ""; -$a->strings["Cancel"] = ""; -$a->strings["Tag removed"] = ""; -$a->strings["Remove Item Tag"] = ""; -$a->strings["Select a tag to remove: "] = ""; -$a->strings["Remove"] = ""; -$a->strings[" : "] = ""; -$a->strings["Not a valid email address."] = ""; -$a->strings["Please join my network on "] = ""; -$a->strings["Message delivery failed."] = ""; -$a->strings[" messages sent."] = ""; -$a->strings["Send invitations"] = ""; -$a->strings["Enter email addresses, one per line:"] = ""; -$a->strings["Please join my social network on "] = ""; -$a->strings["To accept this invitation, please visit:"] = ""; -$a->strings["Invalid OpenID url"] = ""; -$a->strings["Please enter the required information."] = ""; -$a->strings["Please use a shorter name."] = ""; -$a->strings["Name too short."] = ""; -$a->strings["That doesn\\'t appear to be your full (First Last) name."] = ""; -$a->strings["Your email domain is not among those allowed on this site."] = ""; -$a->strings["Cannot use that email."] = ""; -$a->strings["Nickname is already registered. Please choose another."] = ""; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = ""; -$a->strings["An error occurred during registration. Please try again."] = ""; -$a->strings["An error occurred creating your default profile. Please try again."] = ""; -$a->strings["Failed to send email message. Here is the message that failed."] = ""; -$a->strings["Your registration can not be processed."] = ""; -$a->strings["Registration request at "] = ""; -$a->strings["Your registration is pending approval by the site owner."] = ""; -$a->strings["Your OpenID (optional): "] = ""; -$a->strings["Include your profile in member directory?"] = ""; -$a->strings["Yes"] = ""; -$a->strings["No"] = ""; -$a->strings["Registration"] = ""; -$a->strings["Your Full Name (e.g. Joe Smith): "] = ""; -$a->strings["Your Email Address: "] = ""; -$a->strings["Choose a nickname: "] = ""; -$a->strings["Register"] = ""; -$a->strings["Login failed."] = ""; -$a->strings["status"] = ""; -$a->strings["likes"] = ""; -$a->strings["doesn't like"] = ""; -$a->strings["'s"] = ""; -$a->strings["The profile address specified does not provide adequate information."] = ""; -$a->strings["Unable to retrieve contact information."] = ""; -$a->strings["following"] = ""; -$a->strings["This introduction has already been accepted."] = ""; +$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."] = ""; $a->strings["Warning: profile location has no identifiable owner name."] = ""; -$a->strings["Warning: profile location has no profile photo."] = ""; -$a->strings[" required parameter"] = ""; -$a->strings[" was "] = ""; -$a->strings["s were "] = ""; -$a->strings["not found at the given location."] = ""; -$a->strings["Introduction complete."] = ""; -$a->strings["Unrecoverable protocol error."] = ""; -$a->strings["Profile unavailable."] = ""; -$a->strings[" has received too many connection requests today."] = ""; -$a->strings["Spam protection measures have been invoked."] = ""; -$a->strings["Friends are advised to please try again in 24 hours."] = ""; -$a->strings["Invalid locator"] = ""; -$a->strings["Unable to resolve your name at the provided location."] = ""; -$a->strings["You have already introduced yourself here."] = ""; -$a->strings["Apparently you are already friends with ."] = ""; -$a->strings["Invalid profile URL."] = ""; -$a->strings["Disallowed profile URL."] = ""; -$a->strings["Failed to update contact record."] = ""; -$a->strings["Your introduction has been sent."] = ""; -$a->strings["Please login to confirm introduction."] = ""; -$a->strings["[Name Withheld]"] = ""; -$a->strings["Introduction received at "] = ""; -$a->strings["Friend/Connection Request"] = ""; -$a->strings["Please answer the following:"] = ""; -$a->strings["Does $name know you?"] = ""; -$a->strings["Add a personal note:"] = ""; -$a->strings["Friendika"] = ""; -$a->strings["StatusNet/Federated Social Web"] = ""; -$a->strings["Private (secure) network"] = ""; -$a->strings["Public (insecure) network"] = ""; -$a->strings["Your profile address:"] = ""; -$a->strings["Submit Request"] = ""; -$a->strings["Invite Friends"] = ""; -$a->strings["Connect/Follow"] = ""; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = ""; -$a->strings["Follow"] = ""; -$a->strings["Could not access contact record."] = ""; -$a->strings["Could not locate selected profile."] = ""; -$a->strings["Contact updated."] = ""; -$a->strings["Contact has been blocked"] = ""; -$a->strings["Contact has been unblocked"] = ""; -$a->strings["Contact has been ignored"] = ""; -$a->strings["Contact has been unignored"] = ""; -$a->strings["stopped following"] = ""; -$a->strings["Contact has been removed."] = ""; -$a->strings["Mutual Friendship"] = ""; -$a->strings["is a fan of yours"] = ""; -$a->strings["you are a fan of"] = ""; -$a->strings["Never"] = ""; -$a->strings["(Update was successful)"] = ""; -$a->strings["(Update was not successful)"] = ""; -$a->strings["Contact Editor"] = ""; -$a->strings["Visit $name's profile"] = ""; -$a->strings["Block/Unblock contact"] = ""; -$a->strings["Ignore contact"] = ""; -$a->strings["Delete contact"] = ""; -$a->strings["Last updated: "] = ""; -$a->strings["Update public posts: "] = ""; -$a->strings["Update now"] = ""; -$a->strings["Unblock this contact"] = ""; -$a->strings["Block this contact"] = ""; -$a->strings["Unignore this contact"] = ""; -$a->strings["Ignore this contact"] = ""; -$a->strings["Currently blocked"] = ""; -$a->strings["Currently ignored"] = ""; -$a->strings["Contacts"] = ""; -$a->strings["Show Blocked Connections"] = ""; -$a->strings["Hide Blocked Connections"] = ""; -$a->strings["Find"] = ""; -$a->strings["Visit $username's profile"] = ""; -$a->strings["Edit contact"] = ""; -$a->strings["Facebook disabled"] = ""; -$a->strings["Facebook API key is missing."] = ""; -$a->strings["Facebook Connect"] = ""; -$a->strings["Install Facebook post connector"] = ""; -$a->strings["Remove Facebook post connector"] = ""; -$a->strings["Post to Facebook by default"] = ""; -$a->strings["Facebook"] = ""; -$a->strings["Facebook Connector Settings"] = ""; -$a->strings["Post to Facebook"] = ""; -$a->strings["Image: "] = ""; -$a->strings["Randplace Settings"] = ""; -$a->strings["Enable Randplace Plugin"] = ""; -$a->strings["Post to Twitter"] = ""; -$a->strings["Twitter Posting Settings"] = ""; -$a->strings["Log in with Twitter"] = ""; -$a->strings["Copy the PIN from Twitter here"] = ""; -$a->strings["Currently connected to: "] = ""; -$a->strings["Send public postings to Twitter"] = ""; -$a->strings["Clear OAuth configuration"] = ""; -$a->strings["Three Dimensional Tic-Tac-Toe"] = ""; -$a->strings["3D Tic-Tac-Toe"] = ""; -$a->strings["New game"] = ""; -$a->strings["New game with handicap"] = ""; -$a->strings["You go first..."] = ""; -$a->strings["I'm going first this time..."] = ""; -$a->strings["You won!"] = ""; -$a->strings["\"Cat\" game!"] = ""; -$a->strings["I won!"] = ""; -$a->strings["Upload a file"] = ""; -$a->strings["Drop files here to upload"] = ""; -$a->strings["Failed"] = ""; -$a->strings["No files were uploaded."] = ""; -$a->strings["Uploaded file is empty"] = ""; -$a->strings["Uploaded file is too large"] = ""; -$a->strings["File has an invalid extension, it should be one of "] = ""; -$a->strings["Upload was cancelled, or server error encountered"] = ""; -$a->strings["Select files to upload: "] = ""; -$a->strings["Post to StatusNet"] = ""; -$a->strings["StatusNet Posting Settings"] = ""; -$a->strings["OAuth Consumer Key"] = ""; -$a->strings["OAuth Consumer Secret"] = ""; -$a->strings["Base API Path (remember the trailing /)"] = ""; -$a->strings["Log in with StatusNet"] = ""; -$a->strings["Copy the security code from StatusNet here"] = ""; -$a->strings["Send public postings to StatusNet"] = ""; -$a->strings["Not Found"] = ""; -$a->strings["Page not found."] = ""; -$a->strings["Visible To:"] = ""; -$a->strings["Groups"] = ""; -$a->strings["Except For:"] = ""; -$a->strings["Logged out."] = ""; -$a->strings["Male"] = ""; -$a->strings["Female"] = ""; -$a->strings["Currently Male"] = ""; -$a->strings["Currently Female"] = ""; -$a->strings["Mostly Male"] = ""; -$a->strings["Mostly Female"] = ""; -$a->strings["Transgender"] = ""; -$a->strings["Intersex"] = ""; -$a->strings["Transsexual"] = ""; -$a->strings["Hermaphrodite"] = ""; -$a->strings["Neuter"] = ""; -$a->strings["Non-specific"] = ""; -$a->strings["Other"] = ""; -$a->strings["Undecided"] = ""; -$a->strings["Males"] = ""; -$a->strings["Females"] = ""; -$a->strings["Gay"] = ""; -$a->strings["Lesbian"] = ""; -$a->strings["No Preference"] = ""; -$a->strings["Bisexual"] = ""; -$a->strings["Autosexual"] = ""; -$a->strings["Abstinent"] = ""; -$a->strings["Virgin"] = ""; -$a->strings["Deviant"] = ""; -$a->strings["Fetish"] = ""; -$a->strings["Oodles"] = ""; -$a->strings["Nonsexual"] = ""; -$a->strings["Single"] = ""; -$a->strings["Lonely"] = ""; -$a->strings["Available"] = ""; -$a->strings["Unavailable"] = ""; -$a->strings["Dating"] = ""; -$a->strings["Unfaithful"] = ""; -$a->strings["Sex Addict"] = ""; -$a->strings["Friends"] = ""; -$a->strings["Friends/Benefits"] = ""; -$a->strings["Casual"] = ""; -$a->strings["Engaged"] = ""; -$a->strings["Married"] = ""; -$a->strings["Partners"] = ""; -$a->strings["Cohabiting"] = ""; -$a->strings["Happy"] = ""; -$a->strings["Not Looking"] = ""; -$a->strings["Swinger"] = ""; -$a->strings["Betrayed"] = ""; -$a->strings["Separated"] = ""; -$a->strings["Unstable"] = ""; -$a->strings["Divorced"] = ""; -$a->strings["Widowed"] = ""; -$a->strings["Uncertain"] = ""; -$a->strings["Complicated"] = ""; -$a->strings["Don't care"] = ""; -$a->strings["Ask me"] = ""; -$a->strings["Unknown | Not categorised"] = ""; -$a->strings["Block immediately"] = ""; -$a->strings["Shady, spammer, self-marketer"] = ""; -$a->strings["Known to me, but no opinion"] = ""; -$a->strings["OK, probably harmless"] = ""; -$a->strings["Reputable, has my trust"] = ""; -$a->strings["Frequently"] = ""; -$a->strings["Hourly"] = ""; -$a->strings["Twice daily"] = ""; -$a->strings["Daily"] = ""; -$a->strings["Weekly"] = ""; -$a->strings["Monthly"] = ""; -$a->strings["Logout"] = ""; -$a->strings["Login"] = ""; -$a->strings["Home"] = ""; -$a->strings["Apps"] = ""; -$a->strings["Directory"] = ""; -$a->strings["Network"] = ""; -$a->strings["Notifications"] = ""; -$a->strings["Manage"] = ""; -$a->strings["Settings"] = ""; -$a->strings["Profiles"] = ""; -$a->strings["Embedding disabled"] = ""; -$a->strings["Birthday:"] = ""; -$a->strings["You have a new follower at "] = ""; -$a->strings["Create a new group"] = ""; -$a->strings["Everybody"] = ""; -$a->strings["Miscellaneous"] = ""; -$a->strings["less than a second ago"] = ""; -$a->strings["year"] = ""; -$a->strings["years"] = ""; -$a->strings["month"] = ""; -$a->strings["months"] = ""; -$a->strings["week"] = ""; -$a->strings["weeks"] = ""; -$a->strings["day"] = ""; -$a->strings["days"] = ""; -$a->strings["hour"] = ""; -$a->strings["hours"] = ""; -$a->strings["minute"] = ""; -$a->strings["minutes"] = ""; -$a->strings["second"] = ""; -$a->strings["seconds"] = ""; -$a->strings[" ago"] = ""; -$a->strings["Create a New Account"] = ""; -$a->strings["Nickname or Email address: "] = ""; -$a->strings["Password: "] = ""; -$a->strings["Nickname/Email/OpenID: "] = ""; -$a->strings["Password (if not OpenID): "] = ""; -$a->strings["Forgot your password?"] = ""; -$a->strings["Password Reset"] = ""; -$a->strings["prev"] = ""; -$a->strings["first"] = ""; -$a->strings["last"] = ""; -$a->strings["next"] = ""; -$a->strings[" likes this."] = ""; -$a->strings[" doesn't like this."] = ""; -$a->strings["people"] = ""; -$a->strings["like this."] = ""; -$a->strings["don't like this."] = ""; -$a->strings["and"] = ""; -$a->strings[", and "] = ""; -$a->strings[" other people"] = ""; -$a->strings[" like this."] = ""; -$a->strings[" don't like this."] = ""; -$a->strings["No contacts"] = ""; -$a->strings["Connect"] = ""; -$a->strings["Location:"] = ""; -$a->strings[", "] = ""; -$a->strings["Gender:"] = ""; -$a->strings["Status:"] = ""; -$a->strings["Homepage:"] = ""; -$a->strings["Monday"] = ""; -$a->strings["Tuesday"] = ""; -$a->strings["Wednesday"] = ""; -$a->strings["Thursday"] = ""; -$a->strings["Friday"] = ""; -$a->strings["Saturday"] = ""; -$a->strings["Sunday"] = ""; -$a->strings["January"] = ""; -$a->strings["February"] = ""; -$a->strings["March"] = ""; -$a->strings["April"] = ""; -$a->strings["May"] = ""; -$a->strings["June"] = ""; -$a->strings["July"] = ""; -$a->strings["August"] = ""; -$a->strings["September"] = ""; -$a->strings["October"] = ""; -$a->strings["November"] = ""; -$a->strings["December"] = ""; -$a->strings["Birthdays this week:"] = ""; -$a->strings["(Adjusted for local time)"] = ""; -$a->strings["[today]"] = ""; -$a->strings["link to source"] = ""; -$a->strings["Password reset requested at %s"] = ""; -$a->strings["Welcome back %s"] = ""; -$a->strings["%s welcomes %s"] = ""; -$a->strings["Image exceeds size limit of %d"] = ""; -$a->strings["Welcome to %s"] = ""; -$a->strings["Registration revoked for %s"] = ""; -$a->strings["Registration details for %s"] = ""; -$a->strings["%s commented on your item at %s"] = ""; -$a->strings["%s posted on your profile wall at %s"] = ""; -$a->strings["Administrator@"] = ""; -$a->strings["%s posted an update."] = ""; -$a->strings["Image size reduction [%s] failed."] = ""; -$a->strings["%s : Not a valid email address."] = ""; -$a->strings["Please join my network on %s"] = ""; -$a->strings["%s : Message delivery failed."] = ""; -$a->strings["%d message sent."] = array( - 0 => "", -); -$a->strings["Please join my social network on %s"] = ""; -$a->strings["Registration request at %s"] = ""; -$a->strings["%s's"] = "di %s"; +$a->strings["Warning: profile location has no profile photo."] = "Attenzione: la posizione 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 alla posizione data", - 1 => "%d parametri richiesti non sono stati trovati alla posizione data", + 0 => "%d parametro richiesto non è stato trovato nella posizione data", + 1 => "%d parametri richiesti non sono stati trovati nella posizione data", ); -$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessioni per oggi."; +$a->strings["Introduction complete."] = "Presentazione completa."; +$a->strings["Unrecoverable protocol error."] = "Errore di protocollo non recuperabile."; +$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["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."] = "Sembra che tu sia già amico di %s."; +$a->strings["Invalid profile URL."] = "Indirizzo profilo invalido."; +$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 tothis profile."] = ""; +$a->strings["[Name Withheld]"] = "[Nome Nascosto]"; +$a->strings["Introduction received at "] = "Introduzione ricevuta su "; +$a->strings["Friend/Connection Request"] = "Richieste di Amicizia/Connessione"; +$a->strings["Please answer the following:"] = "Rispondi al seguente:"; +$a->strings["Does $name know you?"] = "$name ti conosce?"; +$a->strings["Add a personal note:"] = "Aggiungi una nota personale:"; +$a->strings["Please enter your profile address from one of the following supported socialnetworks:"] = ""; +$a->strings["Friendika"] = "Friendika"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; +$a->strings["Private (secure) network"] = "Network (sicuro) privato"; +$a->strings["Public (insecure) network"] = "Network (insicuro) pubblico"; +$a->strings["Your profile address:"] = "L'indirizzo del tuo profilo:"; +$a->strings["Submit Request"] = "Invia richiesta"; +$a->strings["Cancel"] = "Annulla"; +$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["Password reset requested at %s"] = "Richiesta recupero password su %s"; +$a->strings["Remove My Account"] = "Rimuovi il mio Account"; +$a->strings["This will completely remove your account. Once this has been done it is notrecoverable."] = ""; +$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; +$a->strings["Applications"] = "Applicazioni"; +$a->strings["Global Directory"] = "Elenco Globale"; +$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; +$a->strings["%s commented on your item at %s"] = "%s ha commentato un tuo elemento su %s"; +$a->strings["%s posted on your profile wall at %s"] = "%s ha scritto sulla tua bacheca su %s"; +$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 Friendika social network."] = ""; +$a->strings["You may visit them online at"] = "Puoi visitarli online a "; +$a->strings["Please contact the sender by replying to this post if you do not wish toreceive these messages."] = ""; +$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento."; +$a->strings["Tag removed"] = "TAg rimosso"; +$a->strings["Remove Item Tag"] = "Rimuovi tag dall'elemento"; +$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; +$a->strings["Remove"] = "Rimuovi"; +$a->strings["No recipient selected."] = "Nessun destinatario selezionato."; +$a->strings["[no subject]"] = "[nessun oggetto]"; +$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto."; +$a->strings["Message sent."] = "Messaggio inviato."; +$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato."; +$a->strings["Messages"] = "Messaggi"; +$a->strings["Inbox"] = "In arrivo"; +$a->strings["Outbox"] = "Inviati"; +$a->strings["New Message"] = "Nuovo messaggio"; +$a->strings["Message deleted."] = "Messaggio cancellato."; +$a->strings["Conversation removed."] = "Conversazione rimossa."; +$a->strings["Send Private Message"] = "Invia messaggio privato"; +$a->strings["To:"] = "A:"; +$a->strings["Subject:"] = "Oggetto:"; +$a->strings["No messages."] = "Nessun messaggio."; +$a->strings["Delete conversation"] = "Cancella conversazione"; +$a->strings["Message not available."] = "Messaggio non disponibile."; +$a->strings["Delete message"] = "Cancella messaggio"; +$a->strings["Send Reply"] = "Invia risposta"; +$a->strings["Response from remote site was not understood."] = "La risposta dal sito remota non è stata capita."; +$a->strings["Unexpected response from remote site: "] = "Risposta dal sito remoto inaspettata: "; +$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."] = "Errore temporaneo. Attendi e riprova."; +$a->strings["Introduction failed or was revoked."] = "La presentazione è fallita o è stata revocata."; +$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto."; +$a->strings["is now friends with"] = "ora è amico di"; +$a->strings["No user record found for '%s' "] = "Nessun utente trovato per '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito è apparentemente incasinata."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = ""; +$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito."; +$a->strings["The ID provided by your system is a duplicate on our system. It should workif you try again."] = ""; +$a->strings["Unable to set your contact credentials on our system."] = ""; +$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"; +$a->strings["Connection accepted at %s"] = "Connession accettata su %s"; +$a->strings["Login failed."] = "Accesso fallito."; +$a->strings["Welcome back "] = "Bentornato "; +$a->strings["%s welcomes %s"] = "%s da il benvenuto a %s"; +$a->strings["No contacts."] = "Nessuno contatto."; +$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["Membership list updated."] = "Lista adesioni aggiornata."; +$a->strings["Group removed."] = "Gruppo rimosso."; +$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; +$a->strings["Post to Twitter"] = "Inva a Twitter"; +$a->strings["Twitter Posting Settings"] = "Impostazioni Invio a Twitter"; +$a->strings["No consumer key pair for Twitter found. Please contact your siteadministrator."] = ""; +$a->strings["At this Friendika instance the Twitter plugin was enabled but you have notyet connected your account to your Twitter account. To do so click thebutton below to get a PIN from Twitter which you have to copy into the inputbox below and submit the form. Only your public posts willbe posted to Twitter."] = ""; +$a->strings["Log in with Twitter"] = "Accedi con Twitter"; +$a->strings["Copy the PIN from Twitter here"] = "Copia il PIN da Twitter qui"; +$a->strings["Currently connected to: "] = "Al momento collegato con:"; +$a->strings["If enabled all your public postings will be posted to theassociated Twitter account as well."] = ""; +$a->strings["Send public postings to Twitter"] = "Invia messaggi pubblici su Twitter"; +$a->strings["Clear OAuth configuration"] = "Cancella la configurazione OAuth"; +$a->strings["Post to StatusNet"] = "Invia a StatusNet"; +$a->strings["StatusNet Posting Settings"] = "Impostazioni di invio a StatusNet"; +$a->strings["No consumer key pair for StatusNet found. Register your Friendika Account asan desktop client on your StatusNet account, copy the consumer key pair hereand enter the API base root.
Before you register your own OAuth keypair ask the administrator if there is already a key pair for this Friendikainstallation at your favorited StatusNet installation."] = ""; +$a->strings["OAuth Consumer Key"] = "OAuth Consumer Key"; +$a->strings["OAuth Consumer Secret"] = "OAuth Consumer Secret"; +$a->strings["Base API Path (remember the trailing /)"] = "Indirizzo di base per le API (ricorda la / alla fine)"; +$a->strings["To connect to your StatusNet account click the button below to get asecurity code from StatusNet which you have to copy into the input box belowand submit the form. Only your public posts will be postedto StatusNet."] = ""; +$a->strings["Log in with StatusNet"] = "Login con StatuNet"; +$a->strings["Copy the security code from StatusNet here"] = "Copia il codice di sicurezza da StatusNet qui"; +$a->strings["If enabled all your public postings will be posted to theassociated StatusNet account as well."] = ""; +$a->strings["Send public postings to StatusNet"] = "Invia messaggi pubblici su StatusNet"; +$a->strings["Three Dimensional Tic-Tac-Toe"] = "Tic-Tac-Toe tridimensionale"; +$a->strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe"; +$a->strings["New game"] = "Nuovo gioco"; +$a->strings["New game with handicap"] = "Nuovo gioco con l'handicap"; +$a->strings["Three dimensional tic-tac-toe is just like the traditional game except thatit is played on multiple levels simultaneously."] = ""; +$a->strings["In this case there are three levels. You win by getting three in a row onany level, as well as up, down, and diagonally across the different levels."] = ""; +$a->strings["The handicap game disables the center position on the middle level becausethe player claiming this square often has an unfair advantage."] = ""; +$a->strings["You go first..."] = "Cominci tu..."; +$a->strings["I'm going first this time..."] = "Comincio io questa volta..."; +$a->strings["You won!"] = "Hai vinto!"; +$a->strings["\"Cat\" game!"] = "Stallo!"; +$a->strings["I won!"] = "Ho vinto!"; +$a->strings["Select files to upload: "] = "Seleziona i file da caricare: "; +$a->strings["Use the following controls only if the Java uploader [above] fails to launch."] = ""; +$a->strings["Facebook disabled"] = "Facebook disabilitato"; +$a->strings["Facebook API key is missing."] = "Chiave API Facebook mancante."; +$a->strings["Facebook Connect"] = "Facebook Connect"; +$a->strings["Install Facebook post connector"] = "Istalla il connettore con Facebook"; +$a->strings["Remove Facebook post connector"] = "Rimuovi il connettore con facebook"; +$a->strings["Post to Facebook by default"] = "Invia su Facebook di default"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Facebook Connector Settings"] = "Impostazioni Connettore Facebook"; +$a->strings["Post to Facebook"] = "Invia a Facebook"; +$a->strings["Image: "] = "Immagine: "; +$a->strings["Randplace Settings"] = "Impostazioni Randplace"; +$a->strings["Enable Randplace Plugin"] = "Abilita il plugin Randplace"; +$a->strings["Upload a file"] = "Carica un file"; +$a->strings["Drop files here to upload"] = "Trascina un file qui per caricarlo"; +$a->strings["Failed"] = "Fallito"; +$a->strings["No files were uploaded."] = "Nessun file è stato caricato."; +$a->strings["Uploaded file is empty"] = "Il file caricato è vuoto"; +$a->strings["Uploaded file is too large"] = "Il file caricato è troppo grande"; +$a->strings["File has an invalid extension, it should be one of "] = "Il file ha una estensione non valida, dovrebbe essere una di "; +$a->strings["Upload was cancelled, or server error encountered"] = ""; +$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 oppinioni"; +$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo"; +$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia"; +$a->strings["Frequently"] = "Frequentemente"; +$a->strings["Hourly"] = "Ogni ora"; +$a->strings["Twice daily"] = "Due volte al dì"; +$a->strings["Daily"] = "Giornalmente"; +$a->strings["Weekly"] = "Settimanalmente"; +$a->strings["Monthly"] = "Mensilmente"; +$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"] = "Transgenere"; +$a->strings["Intersex"] = "Bisessuale"; +$a->strings["Transsexual"] = "Transsessuale"; +$a->strings["Hermaphrodite"] = "Ermafrodito"; +$a->strings["Neuter"] = "Neutro"; +$a->strings["Non-specific"] = "Non-specifico"; +$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"] = "Disoponibile"; +$a->strings["Unavailable"] = "Non disponibile"; +$a->strings["Dating"] = "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["Partners"] = "Partners"; +$a->strings["Cohabiting"] = "Coinquilino"; +$a->strings["Happy"] = "Felice"; +$a->strings["Not Looking"] = "Non in cerca"; +$a->strings["Swinger"] = "Scambista"; +$a->strings["Betrayed"] = "Tradito"; +$a->strings["Separated"] = "Separato"; +$a->strings["Unstable"] = "Instabile"; +$a->strings["Divorced"] = "Divorziato"; +$a->strings["Widowed"] = "Vedovo"; +$a->strings["Uncertain"] = "Incerto"; +$a->strings["Complicated"] = "Complicato"; +$a->strings["Don't care"] = "Non interessa"; +$a->strings["Ask me"] = "Chiedimelo"; +$a->strings["Visible To:"] = "Visibile a:"; +$a->strings["Groups"] = "Gruppi"; +$a->strings["Except For:"] = "Eccetto per:"; +$a->strings["Logged out."] = "Sei uscito."; +$a->strings["Miscellaneous"] = "Varie"; +$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[" ago"] = " fa"; +$a->strings["Home"] = "Home"; +$a->strings["Apps"] = "Applicazioni"; +$a->strings["Directory"] = "Elenco"; +$a->strings["Network"] = "Rete"; +$a->strings["Notifications"] = "Notifiche"; +$a->strings["Manage"] = "Gestisci"; +$a->strings["Settings"] = "Impostazioni"; +$a->strings["Profiles"] = "Profili"; +$a->strings["Birthday:"] = "Compleanno:"; +$a->strings["You have a new follower at "] = "Hai un nuovo seguace su "; +$a->strings["Create a new group"] = "Crea un nuovo gruppo"; +$a->strings["Everybody"] = "Tutti"; +$a->strings["Embedding disabled"] = "Inclusione disabilitata"; From 7e4f22a0b676c153f643345b9f449b22fb2500f4 Mon Sep 17 00:00:00 2001 From: Fabio Comuni Date: Fri, 18 Mar 2011 11:25:22 +0100 Subject: [PATCH 16/17] Fix to po2php on multiline msgstr --- util/po2php.php | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/util/po2php.php b/util/po2php.php index cf62492e74..66edd290c0 100644 --- a/util/po2php.php +++ b/util/po2php.php @@ -22,10 +22,13 @@ function po2php_run($argv, $argc) { $infile = file($pofile); $k=""; + $v=""; $arr = False; $ink = False; + $inv = False; foreach ($infile as $l) { $len = strlen($l); + if ($l[0]=="#") $l=""; if (substr($l,0,15)=='"Plural-Forms: '){ $match=Array(); preg_match("|nplurals=([0-9]*); plural=(.*);|", $l, $match); @@ -40,12 +43,16 @@ function po2php_run($argv, $argc) { if ($k!="" && substr($l,0,7)=="msgstr "){ if ($ink) { $ink = False; $out .= '$a->strings["'.$k.'"] = '; } - $v = substr($l,7,$len-8); - $out .= $v; + if ($inv) { $inv = False; $out .= '"'.$v.'"'; } + + $v = substr($l,8,$len-10); + $inv = True; + //$out .= $v; } if ($k!="" && substr($l,0,7)=="msgstr["){ if ($ink) { $ink = False; $out .= '$a->strings["'.$k.'"] = '; } - + if ($inv) { $inv = False; $out .= '"'.$v.'"'; } + if (!$arr) { $arr=True; $out .= "array(\n"; @@ -56,13 +63,15 @@ function po2php_run($argv, $argc) { } if (substr($l,0,6)=="msgid_") { $ink = False; $out .= '$a->strings["'.$k.'"] = '; }; - + + if ($ink) { - $k .= trim($l,"\" \r\n"); + $k .= trim($l,"\"\r\n"); //$out .= '$a->strings['.$k.'] = '; } if (substr($l,0,6)=="msgid "){ + if ($inv) { $inv = False; $out .= '"'.$v.'"'; } if ($k!="") $out .= $arr?");\n":";\n"; $arr=False; $k = str_replace("msgid ","",$l); @@ -74,9 +83,15 @@ function po2php_run($argv, $argc) { $ink = True; } + if ($inv && substr($l,0,6)!="msgstr") { + $v .= trim($l,"\"\r\n"); + //$out .= '$a->strings['.$k.'] = '; + } + } + if ($inv) { $inv = False; $out .= '"'.$v.'"'; } if ($k!="") $out .= $arr?");\n":";\n"; file_put_contents($outfile, $out); From e307846c2d89cf450ed2e7ddf8f325f5f4581f8f Mon Sep 17 00:00:00 2001 From: Fabio Comuni Date: Fri, 18 Mar 2011 12:36:34 +0100 Subject: [PATCH 17/17] Updated utils/README --- util/README | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) diff --git a/util/README b/util/README index 285358b286..c6bc032a54 100644 --- a/util/README +++ b/util/README @@ -44,5 +44,77 @@ then relocate the files to the view directory. The files in the top-level view directory are template files which do not require translation. +Placeholders + +Do not translate placeholders in strings! Things like %s, %d, %1$s and $somename +are used to add dynamic content to the string. + +%s rappresent a dynamic string, like in "Welcome to %s" +%d rappresent a dynamic number, like in "%d new messages" +$somename is a variable like in php +In %1$s %2$s, the numbers are the position index of multiple dynamic content. +You could swap position in string of indexed placeholders. +e.g. +"%1$s's %2$s" => "John's photo", "John's item" +"%2$s di %1$s" => "foto di John", "elemento di John" + + +Plural + +The tt() function supports plural form. Script extract.php write this in +strings.php as an array, one string for every plural form language supports: + +$a->string["%d message sent"] = Array( + 0 => "%d message sent", + 1 => "%d messages sent", +); + +The function string_plural_select($n) defined in strings.php, return the string +index to use, related to the numbers of item (value of $n). + +This is modelled after ngettext function of GNU gettext. +More info at http://www.gnu.org/software/hello/manual/gettext/Plural-forms.html + + +Xgettext and .po workflow + +1. Run utils/run_xgettext.sh script (on *unix sistems, with GNU xgettext installed) + This script runs xgettext on source tree, extracting strings from t() and tt() + functions, and creates a utils/messages.po file. +2. copy utils/messages.po to views//messages.po +3. open views//messages.po with a text editor and fill in infos in + "Last-Translator: FULL NAME " + "Language-Team: LANGUAGE \n" + "Language: \n" + + (eg: + "Last-Translator: Guybrush Threepwood " + "Language-Team: Pirate Friendika \n" + "Language: pi\n" + ) + + For the line + "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + read GNU gettext manual at + http://www.gnu.org/software/hello/manual/gettext/Plural-forms.html + +4. You could then translate the strings in text editor, but I suggest to use one + of the many .po editors out there, like QtLinguist + +5. run + $ php utils/po2php.php views//messages.po + to create the strings.php file + +When strings are added or modified in source, you could run + $ utils/run_xgettext.sh views//messages.po + to extraxt strings from source files and join them with the existing .po file: + new strings are added, the existing are not overwritten. + +If you already translated Friendika using strings.php, you could import your old +translation to messages.po. Run: +$ php utils/php2po.php views//strings.php + + +