From 8a40c718fb9f9272ea99094a760f399e323cd66c Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Fri, 11 Mar 2011 00:18:29 +0100 Subject: [PATCH 01/28] 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/28] 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/28] 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/28] 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/28] 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/28] 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/28] 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/28] 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/28] 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 e94ae8d396b8583407b140faf211f4f92a503bc6 Mon Sep 17 00:00:00 2001 From: erik Date: Fri, 11 Mar 2011 20:12:32 +0100 Subject: [PATCH 10/28] commit001 --- view/sv/cmnt_received_eml.tpl | 18 + view/sv/contact_edit.tpl | 81 ++ view/sv/cropbody.tpl | 57 ++ view/sv/dfrn_req_confirm.tpl | 17 + view/sv/directory_header.tpl | 14 + view/sv/follow_notify_eml.tpl | 14 + view/sv/friend_complete_eml.tpl | 22 + view/sv/group_edit.tpl | 24 + view/sv/group_new.tpl | 23 + view/sv/head.tpl | 32 + view/sv/htconfig.tpl | 74 ++ view/sv/insecure_net.tpl | 6 + view/sv/install_db.tpl | 40 + view/sv/intro_complete_eml.tpl | 22 + view/sv/intros-top.tpl | 7 + view/sv/jot-header.tpl | 142 +++ view/sv/lostpass.tpl | 18 + view/sv/lostpass_eml.tpl | 32 + view/sv/mail_received_html_body_eml.tpl | 25 + view/sv/mail_received_text_body_eml.tpl | 10 + view/sv/msg-header.tpl | 104 +++ view/sv/pagetypes.tpl | 25 + view/sv/passchanged_eml.tpl | 20 + view/sv/profile-hide-friends.tpl | 16 + view/sv/profile-in-directory.tpl | 16 + view/sv/profile-in-netdir.tpl | 16 + view/sv/profile.php | 72 ++ view/sv/profile_advanced.php | 225 +++++ view/sv/profile_edit.tpl | 293 ++++++ view/sv/profile_entry_default.tpl | 9 + view/sv/profile_listing_header.tpl | 8 + view/sv/profile_photo.tpl | 18 + view/sv/profile_tabs.tpl | 7 + view/sv/pwdreset.tpl | 16 + view/sv/register_open_eml.tpl | 21 + view/sv/register_verify_eml.tpl | 26 + view/sv/registrations-top.tpl | 3 + view/sv/registrations.tpl | 1 + view/sv/request_notify_eml.tpl | 17 + view/sv/settings.tpl | 163 ++++ view/sv/settings_nick_set.tpl | 9 + view/sv/settings_nick_subdir.tpl | 6 + view/sv/settings_nick_unset.tpl | 14 + view/sv/strings.php | 1124 +++++++++++++++++++++++ view/sv/wall_received_eml.tpl | 18 + 45 files changed, 2925 insertions(+) create mode 100644 view/sv/cmnt_received_eml.tpl create mode 100644 view/sv/contact_edit.tpl create mode 100644 view/sv/cropbody.tpl create mode 100644 view/sv/dfrn_req_confirm.tpl create mode 100644 view/sv/directory_header.tpl create mode 100644 view/sv/follow_notify_eml.tpl create mode 100644 view/sv/friend_complete_eml.tpl create mode 100644 view/sv/group_edit.tpl create mode 100644 view/sv/group_new.tpl create mode 100644 view/sv/head.tpl create mode 100644 view/sv/htconfig.tpl create mode 100644 view/sv/insecure_net.tpl create mode 100644 view/sv/install_db.tpl create mode 100644 view/sv/intro_complete_eml.tpl create mode 100644 view/sv/intros-top.tpl create mode 100644 view/sv/jot-header.tpl create mode 100644 view/sv/lostpass.tpl create mode 100644 view/sv/lostpass_eml.tpl create mode 100644 view/sv/mail_received_html_body_eml.tpl create mode 100644 view/sv/mail_received_text_body_eml.tpl create mode 100644 view/sv/msg-header.tpl create mode 100644 view/sv/pagetypes.tpl create mode 100644 view/sv/passchanged_eml.tpl create mode 100644 view/sv/profile-hide-friends.tpl create mode 100644 view/sv/profile-in-directory.tpl create mode 100644 view/sv/profile-in-netdir.tpl create mode 100644 view/sv/profile.php create mode 100644 view/sv/profile_advanced.php create mode 100644 view/sv/profile_edit.tpl create mode 100644 view/sv/profile_entry_default.tpl create mode 100644 view/sv/profile_listing_header.tpl create mode 100644 view/sv/profile_photo.tpl create mode 100644 view/sv/profile_tabs.tpl create mode 100644 view/sv/pwdreset.tpl create mode 100644 view/sv/register_open_eml.tpl create mode 100644 view/sv/register_verify_eml.tpl create mode 100644 view/sv/registrations-top.tpl create mode 100644 view/sv/registrations.tpl create mode 100644 view/sv/request_notify_eml.tpl create mode 100644 view/sv/settings.tpl create mode 100644 view/sv/settings_nick_set.tpl create mode 100644 view/sv/settings_nick_subdir.tpl create mode 100644 view/sv/settings_nick_unset.tpl create mode 100644 view/sv/strings.php create mode 100644 view/sv/wall_received_eml.tpl diff --git a/view/sv/cmnt_received_eml.tpl b/view/sv/cmnt_received_eml.tpl new file mode 100644 index 0000000000..60a5711ea6 --- /dev/null +++ b/view/sv/cmnt_received_eml.tpl @@ -0,0 +1,18 @@ + +$username, + + '$from' har kommenterat något som du följer. + +----- +$body +----- + +Logga in på $siteurl för att se hela konversationen: + +$display + +Tack, + $sitename admin + + + diff --git a/view/sv/contact_edit.tpl b/view/sv/contact_edit.tpl new file mode 100644 index 0000000000..40a7510735 --- /dev/null +++ b/view/sv/contact_edit.tpl @@ -0,0 +1,81 @@ + +

$header

+ +
$name
+ +
+ + +
+ +
+ $alt_text +
+ $name +
+
+
+
+ + + +
+ + +
+
$lastupdtext$last_update +
$updpub
+ $poll_interval + +
+
+
+ +$insecure +$blocked +$ignored + +
+

Kontaktuppgifter / Anteckningar

+ +
+
+ + + +
+

Profilvisning

+

Välj vilken profil som ska visas för $name när han eller hon tittar på din profil i säkert läge. +

+
+$profile_select +
+ + + + +
+

Rykte online

+

+Ibland kanske dina vänner vill få reda på hur någon annan uppför sig på nätet innan de våga inleda någon kontakt. Du kan hjälpa till genom att ange personens 'rykte'. +

+
+$rating +
+
+

+Var vänlig spendera tid på att fylla i något här om du känner att det kan vara till någon hjälp för andra. +

+ +
+
+$groups + + + +
diff --git a/view/sv/cropbody.tpl b/view/sv/cropbody.tpl new file mode 100644 index 0000000000..39395af8e1 --- /dev/null +++ b/view/sv/cropbody.tpl @@ -0,0 +1,57 @@ +

Crop Image

+

+Please adjust the image cropping for optimum viewing. +

+
+ +
+
+
+
+ + + +
+ + + + + + + + + + +
+ +
+ +
diff --git a/view/sv/dfrn_req_confirm.tpl b/view/sv/dfrn_req_confirm.tpl new file mode 100644 index 0000000000..f053f22af2 --- /dev/null +++ b/view/sv/dfrn_req_confirm.tpl @@ -0,0 +1,17 @@ + +

+Welcome home $username. +
+Please confirm your introduction to $dfrn_url. + +

+
+ + + +$aes_allow + +
+ +
+
\ No newline at end of file diff --git a/view/sv/directory_header.tpl b/view/sv/directory_header.tpl new file mode 100644 index 0000000000..03eed62b3c --- /dev/null +++ b/view/sv/directory_header.tpl @@ -0,0 +1,14 @@ +

Site Directory

+ +$globaldir + +$finding + +
+
+ + +
+
+
+ diff --git a/view/sv/follow_notify_eml.tpl b/view/sv/follow_notify_eml.tpl new file mode 100644 index 0000000000..ae758c9a8f --- /dev/null +++ b/view/sv/follow_notify_eml.tpl @@ -0,0 +1,14 @@ + +Dear $myname, + +You have a new follower at $sitename - '$requestor'. + +You may visit their profile at $url. + +Please login to your site to approve or ignore/cancel the request. + +$siteurl + +Regards, + + $sitename administrator \ No newline at end of file diff --git a/view/sv/friend_complete_eml.tpl b/view/sv/friend_complete_eml.tpl new file mode 100644 index 0000000000..ab12fcb6b7 --- /dev/null +++ b/view/sv/friend_complete_eml.tpl @@ -0,0 +1,22 @@ + +Dear $username, + + Great news... '$fn' at '$dfrn_url' has accepted +your connection request at '$sitename'. + +You are now mutual friends and may exchange status updates, photos, and email +without restriction. + +Please visit your 'Contacts' page at $sitename if you wish to make +any changes to this relationship. + +$siteurl + +[For instance, you may create a separate profile with information that is not +available to the general public - and assign viewing rights to '$fn']. + +Sincerely, + + $sitename Administrator + + diff --git a/view/sv/group_edit.tpl b/view/sv/group_edit.tpl new file mode 100644 index 0000000000..e6c7afb490 --- /dev/null +++ b/view/sv/group_edit.tpl @@ -0,0 +1,24 @@ +

Group Editor

+ + +
+
+
+ + +
+
+
+ +$selector + +
+$drop +
+
+ +
+ +
+
+
diff --git a/view/sv/group_new.tpl b/view/sv/group_new.tpl new file mode 100644 index 0000000000..a1efa77175 --- /dev/null +++ b/view/sv/group_new.tpl @@ -0,0 +1,23 @@ + + + +
+
+ +
+

+Create a group of contacts/friends. + +

+ + +
+
+ +
+ + +
+
+ + \ No newline at end of file diff --git a/view/sv/head.tpl b/view/sv/head.tpl new file mode 100644 index 0000000000..8f97a11e50 --- /dev/null +++ b/view/sv/head.tpl @@ -0,0 +1,32 @@ + + + + + + + + + + + + diff --git a/view/sv/htconfig.tpl b/view/sv/htconfig.tpl new file mode 100644 index 0000000000..d3bb6b411e --- /dev/null +++ b/view/sv/htconfig.tpl @@ -0,0 +1,74 @@ +path to 'directory/subdirectory'. + +$a->path = '$urlpath'; + +// Choose a legal default timezone. If you are unsure, use "America/Los_Angeles". +// It can be changed later and only applies to timestamps for anonymous viewers. + +$default_timezone = '$timezone'; + +// What is your site name? + +$a->config['sitename'] = "My Friend Network"; + +// Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED. +// Be certain to create your own personal account before setting +// REGISTER_CLOSED. 'register_text' (if set) will be displayed prominently on +// the registration page. REGISTER_APPROVE requires you set 'admin_email' +// to the email address of an already registered person who can authorise +// and/or approve/deny the request. + +$a->config['register_policy'] = REGISTER_OPEN; +$a->config['register_text'] = ''; +$a->config['admin_email'] = ''; + +// Maximum size of an imported message, 0 is unlimited + +$a->config['max_import_size'] = 10000; + +// maximum size of uploaded photos + +$a->config['system']['maximagesize'] = 800000; + +// Location of PHP command line processor + +$a->config['php_path'] = '$phpath'; + +// Location of global directory submission page. + +$a->config['system']['directory_submit_url'] = 'http://dir.friendika.com/submit'; +$a->config['system']['directory_search_url'] = 'http://dir.friendika.com/directory?search='; + +// PuSH - aka pubsubhubbub URL. This makes delivery of public posts as fast as private posts + +$a->config['system']['huburl'] = 'http://pubsubhubbub.appspot.com'; + +// Server-to-server private message encryption (RINO) is allowed by default. +// Encryption will only be provided if this setting is true and the +// PHP mcrypt extension is installed on both systems + +$a->config['system']['rino_encrypt'] = true; + +// default system theme + +$a->config['system']['theme'] = 'duepuntozero'; + +// Addons or plugins are configured here. +// This is a comma seperated list of addons to enable. Example: +// $a->config['system']['addon'] = 'js_upload,randplace,oembed'; + +$a->config['system']['addon'] = 'js_upload'; + diff --git a/view/sv/insecure_net.tpl b/view/sv/insecure_net.tpl new file mode 100644 index 0000000000..5628639ccf --- /dev/null +++ b/view/sv/insecure_net.tpl @@ -0,0 +1,6 @@ +
+

+The social network that $name belongs to is an open network with limited or non-existent privacy controls. +Please use appropriate discretion. +

+
\ No newline at end of file diff --git a/view/sv/install_db.tpl b/view/sv/install_db.tpl new file mode 100644 index 0000000000..c413689c25 --- /dev/null +++ b/view/sv/install_db.tpl @@ -0,0 +1,40 @@ + +

Friendika Social Network

+

Installation

+ +

+In order to install Friendika we need to know how to contact your database. Please contact your hosting provider or site administrator if you have questions about these settings. The database you specify below must already exist. If it does not, please create it before continuing. +

+ +
+ + + + + +
+ + + +
+ + + +
+ + + +
+ +
+Please select a default timezone for your website +
+ +$tzselect + +
+ + +
+
+ diff --git a/view/sv/intro_complete_eml.tpl b/view/sv/intro_complete_eml.tpl new file mode 100644 index 0000000000..a60745ec55 --- /dev/null +++ b/view/sv/intro_complete_eml.tpl @@ -0,0 +1,22 @@ + +Dear $username, + + '$fn' at '$dfrn_url' has accepted +your connection request at '$sitename'. + + '$fn' has chosen to accept you a "fan", which restricts +some forms of communication - such as private messaging and some profile +interactions. If this is a celebrity or community page, these settings were +applied automatically. + + '$fn' may choose to extend this into a two-way or more permissive +relationship in the future. + + You will start receiving public status updates from '$fn', +which will appear on your 'Network' page at + +$siteurl + +Sincerely, + + $sitename Administrator diff --git a/view/sv/intros-top.tpl b/view/sv/intros-top.tpl new file mode 100644 index 0000000000..d8b7394a4a --- /dev/null +++ b/view/sv/intros-top.tpl @@ -0,0 +1,7 @@ +

Pending Friend/Connect Notifications

+ + + + diff --git a/view/sv/jot-header.tpl b/view/sv/jot-header.tpl new file mode 100644 index 0000000000..fe818410e5 --- /dev/null +++ b/view/sv/jot-header.tpl @@ -0,0 +1,142 @@ + + + + + + diff --git a/view/sv/lostpass.tpl b/view/sv/lostpass.tpl new file mode 100644 index 0000000000..a7040c1493 --- /dev/null +++ b/view/sv/lostpass.tpl @@ -0,0 +1,18 @@ +

Forgot your Password?

+ +

+Enter your email address and submit to have your password reset. Then check your email for further instructions. +

+ +
+
+ + +
+
+
+ +
+
+
+ diff --git a/view/sv/lostpass_eml.tpl b/view/sv/lostpass_eml.tpl new file mode 100644 index 0000000000..c350236a43 --- /dev/null +++ b/view/sv/lostpass_eml.tpl @@ -0,0 +1,32 @@ + +Dear $username, + A request was recently received at $sitename to reset your account +password. In order to confirm this request, please select the verification link +below or paste it into your web browser address bar. + +If you did NOT request this change, please DO NOT follow the link +provided and ignore and/or delete this email. + +Your password will not be changed unless we can verify that you +issued this request. + +Follow this link to verify your identity: + +$reset_link + +You will then receive a follow-up message containing the new password. + +You may change that password from your account settings page after logging in. + +The login details are as follows: + +Site Location: $siteurl +Login Name: $email + + + + +Sincerely, + $sitename Administrator + + diff --git a/view/sv/mail_received_html_body_eml.tpl b/view/sv/mail_received_html_body_eml.tpl new file mode 100644 index 0000000000..6b7eb88735 --- /dev/null +++ b/view/sv/mail_received_html_body_eml.tpl @@ -0,0 +1,25 @@ + + + + Friendika Message + + + + + + + + + + + + + + + + + + +
Friendika
$from sent you a new private message at $siteName.
$from
$title
$htmlversion
Please login at $siteurl to read and reply to your private messages.
Thank You,
$siteName Administrator
+ + \ No newline at end of file diff --git a/view/sv/mail_received_text_body_eml.tpl b/view/sv/mail_received_text_body_eml.tpl new file mode 100644 index 0000000000..0238673043 --- /dev/null +++ b/view/sv/mail_received_text_body_eml.tpl @@ -0,0 +1,10 @@ +$from sent you a new private message at $siteName. + +$title + +$textversion + +Please login at $siteurl to read and reply to your private messages. + +Thank you, +$siteName administrator diff --git a/view/sv/msg-header.tpl b/view/sv/msg-header.tpl new file mode 100644 index 0000000000..174e6c985f --- /dev/null +++ b/view/sv/msg-header.tpl @@ -0,0 +1,104 @@ + + + + + + diff --git a/view/sv/pagetypes.tpl b/view/sv/pagetypes.tpl new file mode 100644 index 0000000000..2036614abd --- /dev/null +++ b/view/sv/pagetypes.tpl @@ -0,0 +1,25 @@ + +
+ + + This account is a normal personal profile +
+
+
+ + + Automatically approve all connection/friend requests as read-only fans +
+
+
+ + + Automatically approve all connection/friend requests as read-write fans +
+
+
+ + + Automatically approve all connection/friend requests as friends +
+
diff --git a/view/sv/passchanged_eml.tpl b/view/sv/passchanged_eml.tpl new file mode 100644 index 0000000000..9692159e18 --- /dev/null +++ b/view/sv/passchanged_eml.tpl @@ -0,0 +1,20 @@ + +Dear $username, + Your password has been changed as requested. Please retain this +information for your records (or change your password immediately to +something that you will remember). + + +Your login details are as follows: + +Site Location: $siteurl +Login Name: $email +Password: $new_password + +You may change that password from your account settings page after logging in. + + +Sincerely, + $sitename Administrator + + diff --git a/view/sv/profile-hide-friends.tpl b/view/sv/profile-hide-friends.tpl new file mode 100644 index 0000000000..54ade00fec --- /dev/null +++ b/view/sv/profile-hide-friends.tpl @@ -0,0 +1,16 @@ +

+Hide my contact/friend list from viewers of this profile? +

+ +
+ + + +
+
+
+ + + +
+
diff --git a/view/sv/profile-in-directory.tpl b/view/sv/profile-in-directory.tpl new file mode 100644 index 0000000000..98af3e59a9 --- /dev/null +++ b/view/sv/profile-in-directory.tpl @@ -0,0 +1,16 @@ +

+Publish your default profile in site directory? +

+ +
+ + + +
+
+
+ + + +
+
diff --git a/view/sv/profile-in-netdir.tpl b/view/sv/profile-in-netdir.tpl new file mode 100644 index 0000000000..be111aa67f --- /dev/null +++ b/view/sv/profile-in-netdir.tpl @@ -0,0 +1,16 @@ +

+Publish your default profile in global social directory? +

+ +
+ + + +
+
+
+ + + +
+
diff --git a/view/sv/profile.php b/view/sv/profile.php new file mode 100644 index 0000000000..fa7372668c --- /dev/null +++ b/view/sv/profile.php @@ -0,0 +1,72 @@ + + + + <?php if(x($page,'title')) echo $page['title']; ?> + + + +
+ + +
+ + +
+
+ +
+ + + diff --git a/view/sv/profile_advanced.php b/view/sv/profile_advanced.php new file mode 100644 index 0000000000..6d2ecba4d6 --- /dev/null +++ b/view/sv/profile_advanced.php @@ -0,0 +1,225 @@ +Profile + + +EOT; + +if($a->profile['name']) { +$o .= <<< EOT +
+
Full Name:
+
{$a->profile['name']}
+
+
+EOT; +} + +if($a->profile['gender']) { +$o .= <<< EOT +
+
Gender:
+
{$a->profile['gender']}
+
+
+EOT; +} + +if(($a->profile['dob']) && ($a->profile['dob'] != '0000-00-00')) { +$o .= <<< EOT +
+
Birthday:
+EOT; + +// If no year, add an arbitrary one so just we can parse the month and day. + +$o .= '
' + . ((intval($a->profile['dob'])) + ? day_translate(datetime_convert('UTC','UTC',$a->profile['dob'] . ' 00:00 +00:00','j F, Y')) + : day_translate(datetime_convert('UTC','UTC','2001-' . substr($a->profile['dob'],6) . ' 00:00 +00:00','j F'))) + . "
\r\n
"; + +$o .= '
'; + +} + +if($age = age($a->profile['dob'],$a->profile['timezone'],'')) { +$o .= <<< EOT +
+
Age:
+
$age
+
+
+EOT; +} + +if($a->profile['marital']) { +$o .= <<< EOT +
+
Status:
+
{$a->profile['marital']}
+EOT; + +if($a->profile['with']) + $o .= "
({$a->profile['with']})
"; +$o .= <<< EOT +
+
+EOT; +} + +if($a->profile['sexual']) { +$o .= <<< EOT +
+
Sexual Preference:
+
{$a->profile['sexual']}
+
+
+EOT; +} + +if($a->profile['homepage']) { + $homepage = linkify($a->profile['homepage']); +$o .= <<< EOT +
+
Homepage:
+
$homepage
+
+
+EOT; +} + +if($a->profile['politic']) { +$o .= <<< EOT +
+
Political Views:
+
{$a->profile['politic']}
+
+
+EOT; +} + +if($a->profile['religion']) { +$o .= <<< EOT +
+
Religion:
+
{$a->profile['religion']}
+
+
+EOT; +} +if($txt = prepare_text($a->profile['about'])) { +$o .= <<< EOT +
+
About:
+
+
$txt
+
+
+EOT; +} + +if($txt = prepare_text($a->profile['interest'])) { +$o .= <<< EOT +
+
Hobbies/Interests:
+
+
$txt
+
+
+EOT; +} + +if($txt = prepare_text($a->profile['contact'])) { +$o .= <<< EOT +
+
Contact information and Social Networks:
+
+
$txt
+
+
+EOT; +} + +if($txt = prepare_text($a->profile['music'])) { +$o .= <<< EOT +
+
Musical interests:
+
+
$txt
+
+
+EOT; +} + +if($txt = prepare_text($a->profile['book'])) { +$o .= <<< EOT +
+
Books, literature:
+
+
$txt
+
+
+EOT; +} + +if($txt = prepare_text($a->profile['tv'])) { +$o .= <<< EOT +
+
Television:
+
+
$txt
+
+
+EOT; +} + +if($txt = prepare_text($a->profile['film'])) { +$o .= <<< EOT +
+
Film/dance/culture/entertainment:
+
+
$txt
+
+
+EOT; +} + +if($txt = prepare_text($a->profile['romance'])) { +$o .= <<< EOT +
+
Love/romance:
+
+
$txt
+
+
+EOT; +} + +if($txt = prepare_text($a->profile['work'])) { +$o .= <<< EOT +
+
Work/employment:
+
+
$txt
+
+
+EOT; +} + +if($txt = prepare_text($a->profile['education'])) { +$o .= <<< EOT +
+
School/education:
+
+
$txt
+
+
+EOT; +} + + diff --git a/view/sv/profile_edit.tpl b/view/sv/profile_edit.tpl new file mode 100644 index 0000000000..b0d4850d0d --- /dev/null +++ b/view/sv/profile_edit.tpl @@ -0,0 +1,293 @@ +

Edit Profile Details

+ + + + + +$default + +
+
+ +
+ +
*
+
+
+ +
+ + +
+
+ +
+ + +
+
+ + +
+ +$gender +
+
+ +
+ +
+$dob $age +
+
+
+ +$hide_friends + +
+ +
+
+ + +
+ + +
+
+ +
+ + +
+
+ + +
+ + +
+
+ +
+ + +
+
+ +
+ + +
+
+ +
+ +
+
+ +
+ +$marital +
+ + +
+ +
+ +$sexual +
+
+ + + +
+ + +
+
+ +
+ + +
+
+ +
+ + +
+
+ +
+ + +
(Used for searching public profiles, never shown to others)
+
+ + +
+ +
+
+ +
+

+Tell us about yourself... +

+ + + +
+
+
+ + +
+

+Hobbies/Interests +

+ + + +
+
+
+ + +
+

+Contact information and Social Networks +

+ + + +
+
+
+ + +
+ +
+
+ + +
+

+Musical interests +

+ + + +
+
+
+ +
+

+Books, literature +

+ + + +
+
+ + + + +
+

+Television +

+ + + +
+
+ + + + +
+

+Film/dance/culture/entertainment +

+ + + +
+
+ + + +
+ +
+
+ + +
+

+Love/romance +

+ + + +
+
+ + + + +
+

+Work/employment +

+ + + +
+
+ + + + +
+

+School/education +

+ + + +
+
+ + + + +
+ +
+
+ + + + + \ No newline at end of file diff --git a/view/sv/profile_entry_default.tpl b/view/sv/profile_entry_default.tpl new file mode 100644 index 0000000000..6511999184 --- /dev/null +++ b/view/sv/profile_entry_default.tpl @@ -0,0 +1,9 @@ + +
+
+Profile Image +
+
+ +
+
diff --git a/view/sv/profile_listing_header.tpl b/view/sv/profile_listing_header.tpl new file mode 100644 index 0000000000..d4b139a698 --- /dev/null +++ b/view/sv/profile_listing_header.tpl @@ -0,0 +1,8 @@ +

Profiles

+

+Change profile photo +

+ + diff --git a/view/sv/profile_photo.tpl b/view/sv/profile_photo.tpl new file mode 100644 index 0000000000..30e51210a8 --- /dev/null +++ b/view/sv/profile_photo.tpl @@ -0,0 +1,18 @@ +

Upload Profile Photo

+ +
+ +
+ + +
+ +
+ +
+ +
+ + \ No newline at end of file diff --git a/view/sv/profile_tabs.tpl b/view/sv/profile_tabs.tpl new file mode 100644 index 0000000000..9c6c54a1c5 --- /dev/null +++ b/view/sv/profile_tabs.tpl @@ -0,0 +1,7 @@ + +
+ Status + Profile + Photos +
+
\ No newline at end of file diff --git a/view/sv/pwdreset.tpl b/view/sv/pwdreset.tpl new file mode 100644 index 0000000000..dd609f0610 --- /dev/null +++ b/view/sv/pwdreset.tpl @@ -0,0 +1,16 @@ +

Password Reset

+ +

+Your password has been reset as requested. +

+

+Your new password is +

+

+$newpass +

+

+Save or copy your new password - and then click here to login. +

+

+Your password may be changed from the 'Settings' page after successful login. \ No newline at end of file diff --git a/view/sv/register_open_eml.tpl b/view/sv/register_open_eml.tpl new file mode 100644 index 0000000000..8a00f21e97 --- /dev/null +++ b/view/sv/register_open_eml.tpl @@ -0,0 +1,21 @@ + +Dear $username, + Thank you for registering at $sitename. Your account has been created. +The login details are as follows: + + +Site Location: $siteurl +Login Name: $email +Password: $password + +You may change your password from your account "Settings" page after logging +in. + +Please take a few moments to review the other account settings on that page. + +Thank you and welcome to $sitename. + +Sincerely, + $sitename Administrator + + diff --git a/view/sv/register_verify_eml.tpl b/view/sv/register_verify_eml.tpl new file mode 100644 index 0000000000..60c38d8000 --- /dev/null +++ b/view/sv/register_verify_eml.tpl @@ -0,0 +1,26 @@ + +A new user registration request was received at $sitename which requires +your approval. + + +The login details are as follows: + +Full Name: $username +Site Location: $siteurl +Login Name: $email + + +To approve this request please visit the following link: + + +$siteurl/regmod/allow/$hash + + +To deny the request and remove the account, please visit: + + +$siteurl/regmod/deny/$hash + + +Thank you. + diff --git a/view/sv/registrations-top.tpl b/view/sv/registrations-top.tpl new file mode 100644 index 0000000000..d8faf3439e --- /dev/null +++ b/view/sv/registrations-top.tpl @@ -0,0 +1,3 @@ +

User registrations waiting for confirm

+ + diff --git a/view/sv/registrations.tpl b/view/sv/registrations.tpl new file mode 100644 index 0000000000..c8646043ed --- /dev/null +++ b/view/sv/registrations.tpl @@ -0,0 +1 @@ +
  • $fullname ($email) : Approve - Deny
  • diff --git a/view/sv/request_notify_eml.tpl b/view/sv/request_notify_eml.tpl new file mode 100644 index 0000000000..9eef7a61eb --- /dev/null +++ b/view/sv/request_notify_eml.tpl @@ -0,0 +1,17 @@ + +Dear $myname, + +You have just received a connection request at $sitename + +from '$requestor'. + +You may visit their profile at $url. + +Please login to your site to view the complete introduction +and approve or ignore/cancel the request. + +$siteurl + +Regards, + + $sitename administrator \ No newline at end of file diff --git a/view/sv/settings.tpl b/view/sv/settings.tpl new file mode 100644 index 0000000000..97d67cbf61 --- /dev/null +++ b/view/sv/settings.tpl @@ -0,0 +1,163 @@ +

    Account Settings

    + + + +$nickname_block + + +
    + + +

    Basic Settings

    + +
    + + +
    +
    + +
    + + +
    +
    + + + +
    + +$zoneselect +
    +
    + +
    + + +
    +
    + +
    + + +
    +
    + + + + +
    + +$theme +
    +
    + +
    + +
    + + +

    Security and Privacy Settings

    + + + + +
    + + +
    (to prevent spam abuse)
    +
    +
    + + + + +$profile_in_dir + +$profile_in_net_dir + + + +
    + +
    + + +
    +
    + +
    + +
    + + + +

    Notification Settings

    + + +
    +
    Send a notification email when:
    + + +
    + + +
    + + +
    + + +
    + + +
    +
    +
    + +
    + +
    + + +

    Password Settings

    + + +
    +

    +Leave password fields blank unless changing +

    + + +
    +
    + +
    + + +
    +
    + +
    + $oidhtml +
    +
    + + +
    + +
    + + +

    Advanced Page Settings

    + +$pagetype + +
    + +
    + + diff --git a/view/sv/settings_nick_set.tpl b/view/sv/settings_nick_set.tpl new file mode 100644 index 0000000000..a36b3b9a20 --- /dev/null +++ b/view/sv/settings_nick_set.tpl @@ -0,0 +1,9 @@ + +
    +

    +Your profile address is '$nickname@$basepath' +

    +$subdir + +
    +
    diff --git a/view/sv/settings_nick_subdir.tpl b/view/sv/settings_nick_subdir.tpl new file mode 100644 index 0000000000..303c24df71 --- /dev/null +++ b/view/sv/settings_nick_subdir.tpl @@ -0,0 +1,6 @@ +

    +It appears that your website is located in a subdirectory of the
    +$hostname website, so this setting may not work reliably.
    +

    +

    If you have any issues, you may have better results using the profile
    address '$baseurl/profile/$nickname'. +

    \ No newline at end of file diff --git a/view/sv/settings_nick_unset.tpl b/view/sv/settings_nick_unset.tpl new file mode 100644 index 0000000000..903768b594 --- /dev/null +++ b/view/sv/settings_nick_unset.tpl @@ -0,0 +1,14 @@ + +
    +

    +Your profile URL is currently '$baseurl/profile/$uid'. +Setting a nickname will allow a friendly profile URL such as +'nickname@$basepath'. +
    +Once set, it can never be changed. The nickname must start with a letter; and only letters, numbers, dashes, and underscores are allowed. +

    + + +
    +
    + diff --git a/view/sv/strings.php b/view/sv/strings.php new file mode 100644 index 0000000000..6685130bb9 --- /dev/null +++ b/view/sv/strings.php @@ -0,0 +1,1124 @@ +strings['Not Found'] = 'Hittades inte'; +$a->strings['Page not found.' ] = 'Sidan hittades inte.' ; +$a->strings['Permission denied'] = 'Åtkomst nekad'; +$a->strings['Permission denied.'] = 'Åtkomst nekad.'; +$a->strings['Create a New Account'] = 'Skapa nytt konto'; +$a->strings['Register'] = 'Registrera'; +$a->strings['Nickname or Email address: '] = 'Användarnamn eller e-postadress: '; +$a->strings['Password: '] = 'Lösenord: '; +$a->strings['Login'] = 'Logga in'; +$a->strings['Nickname/Email/OpenID: '] = 'Användarnamn/E-post/OpenID: '; +$a->strings["Password \x28if not OpenID\x29: "] = "Lösenord \x28om inget OpenID\x29: "; +$a->strings['Forgot your password?'] = 'Glömt lösenordet?'; +$a->strings['Password Reset'] = 'Återställ lösenord'; +$a->strings['Logout'] = 'Logga ut'; +$a->strings['prev'] = 'föreg'; +$a->strings['first'] = 'första'; +$a->strings['last'] = 'sista'; +$a->strings['next'] = 'nästa'; +$a->strings[' likes this.'] = ' gillar detta.'; +$a->strings[' doesn\'t like this.'] = ' ogillar detta.'; +$a->strings['people'] = 'personer'; +$a->strings['like this.'] = 'gilla detta.'; +$a->strings['don\'t like this.'] = 'ogilla detta.'; +$a->strings['and'] = 'och'; +$a->strings[', and '] = ', och '; +$a->strings[' other people'] = ' personer till'; +$a->strings[' like this.'] = ' gillar detta.'; +$a->strings[' don\'t like this.'] = ' ogillar detta.'; +$a->strings['No contacts'] = 'Inga kontakter'; +$a->strings['Contacts'] = 'Kontakter'; +$a->strings['View Contacts'] = 'Visa kontakter'; +$a->strings['Search'] = 'Sök'; +$a->strings['No profile'] = 'Ingen profil'; +$a->strings['Connect'] = 'Anslut'; +$a->strings['Location:'] = 'Plats:'; +$a->strings[', '] = ', '; +$a->strings['Gender:'] = 'Kön:'; +$a->strings['Status:'] = 'Status:'; +$a->strings['Homepage:'] = 'Hemsida:'; +$a->strings['Monday'] = 'måndag'; +$a->strings['Tuesday'] = 'tisdag'; +$a->strings['Wednesday'] = 'onsdag'; +$a->strings['Thursday'] = 'torsdag'; +$a->strings['Friday'] = 'fredag'; +$a->strings['Saturday'] = 'lördag'; +$a->strings['Sunday'] = 'söndag'; +$a->strings['January'] = 'januari'; +$a->strings['February'] = 'februari'; +$a->strings['March'] = 'mars'; +$a->strings['April'] = 'april'; +$a->strings['May'] = 'maj'; +$a->strings['June'] = 'juni'; +$a->strings['July'] = 'juli'; +$a->strings['August'] = 'augusti'; +$a->strings['September'] = 'september'; +$a->strings['October'] = 'oktober'; +$a->strings['November'] = 'november'; +$a->strings['December'] = 'december'; +$a->strings['Birthdays this week:'] = 'Födelsedagar denna vecka:'; +$a->strings["\x28Adjusted for local time\x29"] = "\x28Justerad till lokal tid\x29"; +$a->strings['[today]'] = '[today]'; +$a->strings['link to source'] = 'link to source'; +$a->strings['No recipient selected.'] = 'Ingen mottagare vald.'; +$a->strings['[no subject]'] = '[no subject]'; +$a->strings['Unable to locate contact information.'] = 'Hittar inga kontaktuppgifter.'; +$a->strings['Wall Photos'] = 'Loggfoton'; +$a->strings['Message sent.'] = 'Meddelandet har skickats.'; +$a->strings['Message could not be sent.'] = 'Det gick inte att skicka meddelandet.'; +$a->strings['Messages'] = 'Meddelanden'; +$a->strings['Inbox'] = 'Inkort'; +$a->strings['Outbox'] = 'Utkorg'; +$a->strings['New Message'] = 'Nytt meddelande'; +$a->strings['Message deleted.'] = 'Meddelandet borttaget.'; +$a->strings['Conversation removed.'] = 'Konversationen borttagen.'; +$a->strings['Send Private Message'] = 'Skicka personligt meddelande'; +$a->strings['To:'] = 'Till:'; +$a->strings['Subject:'] = 'Ämne:'; +$a->strings['Your message:'] = 'Ditt meddelande:'; +$a->strings['Upload photo'] = 'Ladda upp foto'; +$a->strings['Insert web link'] = 'Infoga länk'; +$a->strings['Please wait'] = 'Vänta'; +$a->strings['No messages.'] = 'Inga meddelanden.'; +$a->strings['Delete conversation'] = 'Ta bort konversation'; +$a->strings['Message not available.'] = 'Meddelandet är inte tillgängligt.'; +$a->strings['Delete message'] = 'Ta bort meddelande'; +$a->strings['Send Reply'] = 'Skicka svar'; +$a->strings['Applications'] = 'Applikationer'; +$a->strings["Invite Friends"] = "Bjud in vänner"; +$a->strings['Connect/Follow'] = 'Anslut/Följ'; +$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Exempel: adam@exempel.com, http://exempel.com/bertil'; +$a->strings['Follow'] = 'Följ'; +$a->strings['Could not access contact record.'] = 'Could not access contact record.'; +$a->strings['Could not locate selected profile.'] = 'Hittade inte vald profil.'; +$a->strings['Contact updated.'] = 'Kontakten har uppdaterats.'; +$a->strings['Failed to update contact record.'] = 'Failed to update contact record.'; +$a->strings['Contact has been '] = 'Kontakt '; +$a->strings['blocked'] = 'spärrad'; +$a->strings['unblocked'] = 'inte längre spärrad'; +$a->strings['ignored'] = 'ignoreras'; +$a->strings['unignored'] = 'ignoreras inte längre'; +$a->strings['stopped following'] = 'stopped following'; +$a->strings['Contact has been removed.'] = 'Kontakten har tagits bort.'; +$a->strings['Contact not found.'] = 'Kontakten hittades inte.'; +$a->strings['Mutual Friendship'] = 'Ömsesidig vänskap'; +$a->strings['is a fan of yours'] = 'är ett fan till dig'; +$a->strings['you are a fan of'] = 'du är fan till'; +$a->strings['Never'] = 'Aldrig'; +$a->strings["\x28Update was successful\x29"] = "\x28Uppdateringen lyckades\x29"; +$a->strings["\x28Update was not successful\x29"] = "\x28Uppdateringen lyckades inte\x29"; +$a->strings['Contact Editor'] = 'Kontaktredigerare'; +$a->strings['Visit $name\'s profile'] = 'Besök $name '; +$a->strings['Block/Unblock contact'] = 'Spärra kontakt eller häv spärr'; +$a->strings['Ignore contact'] = 'Ignorera kontakt'; +$a->strings['Delete contact'] = 'Ta bort kontakt'; +$a->strings['Last updated: '] = 'Uppdaterad senast: '; +$a->strings['Update public posts: '] = 'Uppdatera offentliga inlägg: '; +$a->strings['Update now'] = 'Updatera nu'; +$a->strings['Unblock this contact'] = 'Häv spärr för kontakt'; +$a->strings['Block this contact'] = 'Spärra kontakt'; +$a->strings['Unignore this contact'] = 'Ignorera inte längre kontakt'; +$a->strings['Ignore this contact'] = 'Ignorera kontakt'; +$a->strings['Currently blocked'] = 'Spärrad'; +$a->strings['Currently ignored'] = 'Ignoreras'; +$a->strings['Show Blocked Connections'] = 'Visa spärrade kontakter'; +$a->strings['Hide Blocked Connections'] = 'Dölj spärrade kontakter'; +$a->strings['Finding: '] = 'Finding: '; +$a->strings['Find'] = 'Find'; +$a->strings['Visit '] = 'Besök '; +$a->strings['\'s profile'] = 's profil'; +$a->strings['Edit contact'] = 'Ändra kontakt'; +$a->strings['Profile not found.'] = 'Profilen hittades inte.'; +$a->strings['Response from remote site was not understood.'] = 'Kunde inte tolka svaret från fjärrsajten.'; +$a->strings['Unexpected response from remote site: '] = 'Oväntat svar från fjärrsajten: '; +$a->strings["Confirmation completed successfully."] = "Confirmation completed successfully."; +$a->strings['Remote site reported: '] = 'Remote site reported: '; +$a->strings["Temporary failure. Please wait and try again."] = "Tillfälligt fel. Försök igen lite senare."; +$a->strings["Introduction failed or was revoked."] = "Introduction failed or was revoked."; +$a->strings['Unable to set contact photo.'] = 'Det gick inte att välja profilbild.'; +$a->strings['is now friends with'] = 'är nu vän med'; +$a->strings['No user record found for '] = 'No user record found for '; +$a->strings['Our site encryption key is apparently messed up.'] = 'Det är något fel på webbplatsens krypteringsnyckel.'; +$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'] = 'Administratör'; +$a->strings['noreply'] = 'noreply'; +$a->strings[' commented on an item at '] = ' skrev en kommentar på '; +$a->strings[" commented on an item at "] = " skrev en kommentar på "; +$a->strings[' welcomes '] = ' välkomnar '; +$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.'] = 'Profiladressen är ogiltig eller innehåller ingen profilinformation.'; +$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'] = ' obligatoriskt fält'; +$a->strings[" was "] = " was "; +$a->strings["s were "] = "s were "; +$a->strings["not found at the given location."] = "finns inte på platsen som angavs."; +$a->strings["Introduction complete."] = "Presentationen klar."; +$a->strings['Unrecoverable protocol error.'] = 'Unrecoverable protocol error.'; +$a->strings['Profile unavailable.'] = 'Profilen är inte tillgänglig.'; +$a->strings[' has received too many connection requests today.'] = ' 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.'] = 'Du har redan presenterat dig här.'; +$a->strings['Apparently you are already friends with .'] = 'Du är tydligen redan vän med .'; +$a->strings['Invalid profile URL.'] = 'Ogiltig profil-URL.'; +$a->strings['Disallowed profile URL.'] = 'Disallowed profile URL.'; +$a->strings['Your introduction has been sent.'] = 'Presentationen har skickats.'; +$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['Friend/Connection Request'] = 'Friend/Connection Request'; +$a->strings['Please answer the following:'] = 'Besvara följande, tack:'; +$a->strings['Does $name know you?'] = 'Känner $name dig?'; +$a->strings['Yes'] = 'Ja'; +$a->strings['No'] = 'Nej'; +$a->strings['Add a personal note:'] = 'Lägg till ett personligt meddelande:'; +$a->strings['Please enter your profile address from one of the following supported social networks:'] = 'Ange din profiladress på ett av följande sociala nätverk som stöds:'; +$a->strings['Friendika'] = 'Friendika'; +$a->strings['StatusNet/Federated Social Web'] = 'StatusNet/Federated Social Web'; +$a->strings["Private \x28secure\x29 network"] = "Privat \x28säkert\x29 nätverk"; +$a->strings["Public \x28insecure\x29 network"] = "Offentligt \x28osäkert\x29 nätverk"; +$a->strings['Your profile address:'] = 'Din profiladress:'; +$a->strings['Submit Request'] = 'Skicka begäran'; +$a->strings['Cancel'] = 'Avbryt'; +$a->strings['Global Directory'] = 'Global katalog'; +$a->strings['Item not found.'] = 'Hittades inte.'; +$a->strings['Private Message'] = 'Personligt meddelande'; +$a->strings["I like this \x28toggle\x29"] = "Jag gillar detta \x28toggle\x29"; +$a->strings["I don't like this \x28toggle\x29"] = "Jag ogillar detta \x28toggle\x29"; +$a->strings['This is you'] = 'Det här är du'; +$a->strings['Delete'] = 'Ta bort'; +$a->strings['View $name\'s profile'] = 'Visa $name s profil'; +$a->strings['View $owner_name\'s profile'] = 'Visa $owner_name s profil'; +$a->strings['to'] = 'till'; +$a->strings['Wall-to-Wall'] = 'Logg-till-logg'; +$a->strings['via Wall-To-Wall:'] = 'via Logg-till-logg:'; +$a->strings['Item has been removed.'] = 'Har tagits bort.'; +$a->strings['Shared content is covered by the Creative Commons Attribution 3.0 license.'] = 'Innehållet omfattas av licensen Creative Commons Attribution 3.0.'; +$a->strings['CC: email addresses'] = 'CC: e-postadresser'; +$a->strings['Example: bob@example.com, mary@example.com'] = 'Exempel: adam@exempel.com, bertil@exempel.com'; +$a->strings['The profile address specified does not provide adequate information.'] = 'Angiven profiladress ger inte tillräcklig information.'; +$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Begränsad profil. Den här personen kommer inte att kunna ta emot personliga meddelanden från dig.'; +$a->strings['Unable to retrieve contact information.'] = 'Det gick inte att nå kontaktinformationen.'; +$a->strings['following'] = 'följer'; +$a->strings['Group created.'] = 'Gruppen har skapats.'; +$a->strings['Could not create group.'] = 'Det gick inte att skapa gruppen.'; +$a->strings['Group not found.'] = 'Gruppen hittades inte.'; +$a->strings['Group name changed.'] = 'Gruppens namn har ändrats.'; +$a->strings['Membership list updated.'] = 'Medlemslistan har uppdaterats.'; +$a->strings['Group removed.'] = 'Gruppen har tagits bort.'; +$a->strings['Unable to remove group.'] = 'Gruppen kunde inte tas bort.'; +$a->strings["Welcome to "] = "Välkommen till "; +$a->strings['Could not create/connect to database.'] = 'Det gick inte att skapa eller ansluta till databasen.'; +$a->strings['Connected to database.'] = 'Ansluten till databasen.'; +$a->strings['Database import succeeded.'] = 'Databasen har importerats.'; +$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the poller.'] = 'IMPORTANT: You will need to [manually] setup a scheduled task for the poller.'; +$a->strings['Please see the file "INSTALL.txt".'] = 'Se filen "INSTALL.txt".'; +$a->strings['Database import failed.'] = 'Det gick inte att importera databasen.'; +$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'Du kanske måste importera filen "database.sql" manuellt med phpmyadmin eller mysql.'; +$a->strings['Welcome to Friendika.'] = 'Välkommen till Friendika.'; +$a->strings['Submit'] = 'Skicka'; +$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Could not find a command line version of PHP in the web server PATH.'; +$a->strings['This is required. Please adjust the configuration file .htconfig.php accordingly.'] = 'This is required. Please adjust the configuration file .htconfig.php accordingly.'; +$a->strings['The command line version of PHP on your system does not have "register_argc_argv" enabled.'] = 'The command line version of PHP on your system does not have "register_argc_argv" enabled.'; +$a->strings['This is required for message delivery to work.'] = 'Det krävs för att meddelanden ska kunna levereras.'; +$a->strings['Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys'] = 'Fel: funktionen "openssl_pkey_new" kan inte skapa krypteringsnycklar'; +$a->strings['If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'] = 'Läs mer på "http://www.php.net/manual/en/openssl.installation.php" om du kör Windows.'; +$a->strings['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Error: Apache webserver mod-rewrite module is required but not installed.'; +$a->strings['Error: libCURL PHP module required but not installed.'] = 'Error: libCURL PHP module required but not installed.'; +$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Error: GD graphics PHP module with JPEG support required but not installed.'; +$a->strings['Error: openssl PHP module required but not installed.'] = 'Error: openssl PHP module required but not installed.'; +$a->strings['Error: mysqli PHP module required but not installed.'] = 'Error: mysqli PHP module required but not installed.'; +$a->strings['The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.'] = '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 able to write files in your folder - even if you can.'] = 'This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can.'; +$a->strings['Please check with your site documentation or support people to see if this situation can be corrected.'] = 'Please check with your site documentation or support people to see if this situation can be corrected.'; +$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.'] = 'Fel vid skapandet av databastabeller.'; +$a->strings[' : '] = ' : '; +$a->strings['Not a valid email address.'] = 'Ogiltig e-postadress.'; +$a->strings['Please join my network on '] = 'Gå med i mitt nätverk på '; +$a->strings['Message delivery failed.'] = 'Meddelandet kom inte fram.'; +$a->strings[' messages sent.'] = ' meddelanden har skickats.'; +$a->strings['Send invitations'] = 'Send invitations'; +$a->strings['Enter email addresses, one per line:'] = 'Ange e-postadresser, en per rad:'; +$a->strings['Please join my social network on '] = 'Gå med i mitt sociala nätverk på '; +$a->strings['To accept this invitation, please visit:'] = 'Gå hit för att tacka ja till inbjudan:'; +$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['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['System error. Post not saved.'] = 'Systemfel. Inlägget sparades inte.'; +$a->strings['This message was sent to you by '] = 'Du har fått det här meddelandet av '; +$a->strings[', a member of the Friendika social network.'] = ', medlem i det sociala nätverket Friendika.'; +$a->strings['You may visit them online at'] = 'Besök online på'; +$a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Kontakta avsändaren genom att svara på det här meddelandet om du inte vill ha sådana här meddelanden.'; +$a->strings['posted an update.'] = 'gjorde en uppdatering.'; +$a->strings['photo'] = 'foto'; +$a->strings['status'] = 'status'; +$a->strings['likes'] = 'gillar'; +$a->strings['doesn\'t like'] = 'ogillar'; +$a->strings['\'s'] = 's'; +$a->strings['Remote privacy information not available.'] = 'Remote privacy information not available.'; +$a->strings['Visible to:'] = 'Synlig för:'; +$a->strings['Password reset requested at '] = 'Lösenordsåterställning begärd kl '; +$a->strings["Welcome back "] = "Välkommen tillbaka "; +$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['Normal View'] = 'Normal vy'; +$a->strings['New Item View'] = 'New Item View'; +$a->strings['Share'] = 'Dela'; +$a->strings['Insert YouTube video'] = 'Infoga klipp från YouTube'; +$a->strings['Set your location'] = 'Ange plats'; +$a->strings['Clear browser location'] = 'Clear browser location'; +$a->strings['Permission settings'] = 'Permission settings'; +$a->strings['No such group'] = 'Gruppen finns inte'; +$a->strings['Group is empty'] = 'Gruppen är tom'; +$a->strings['Group: '] = 'Grupp: '; +$a->strings['View in context'] = 'Se i sitt sammanhang'; +$a->strings['Invalid request identifier.'] = 'Invalid request identifier.'; +$a->strings['Discard'] = 'Kasta bort'; +$a->strings['Ignore'] = 'Ignorera'; +$a->strings['Show Ignored Requests'] = 'Show Ignored Requests'; +$a->strings['Hide Ignored Requests'] = 'Hide Ignored Requests'; +$a->strings['Claims to be known to you: '] = 'Claims to be known to you: '; +$a->strings['yes'] = 'ja'; +$a->strings['no'] = 'nej'; +$a->strings['Approve as: '] = 'Approve as: '; +$a->strings['Friend'] = 'Vän'; +$a->strings['Fan/Admirer'] = 'Fan/Beundrare'; +$a->strings['Notification type: '] = 'Notification type: '; +$a->strings['Friend/Connect Request'] = 'Friend/Connect Request'; +$a->strings['New Follower'] = 'New Follower'; +$a->strings['Approve'] = 'Godkänn'; +$a->strings['No notifications.'] = 'Inga aviseringar.'; +$a->strings['No registrations.'] = 'Inga registreringar.'; +$a->strings['Login failed.'] = 'Inloggningen misslyckades.'; +$a->strings['Photo Albums'] = 'Fotoalbum'; +$a->strings['Contact Photos'] = 'Contact Photos'; +$a->strings['Contact information unavailable'] = 'Kontaktinformationen är inte tillgänglig'; +$a->strings['Profile Photos'] = 'Profilbilder'; +$a->strings['Album not found.'] = 'Albumet finns inte.'; +$a->strings['Delete Album'] = 'Ta bort album'; +$a->strings['Delete Photo'] = 'Ta bort foto'; +$a->strings['was tagged in a'] = 'was tagged in a'; +$a->strings['by'] = 'av'; +$a->strings['Image exceeds size limit of '] = 'Bilden överskrider den tillåtna storleken '; +$a->strings['Unable to process image.'] = 'Bilden kunde inte bahandlas.'; +$a->strings['Image upload failed.'] = 'Fel vid bilduppladdning.'; +$a->strings['No photos selected'] = 'Inga foton har valts'; +$a->strings['Upload Photos'] = 'Ladda upp foton'; +$a->strings['New album name: '] = 'Nytt album med namn: '; +$a->strings['or existing album name: '] = 'eller befintligt album med namn: '; +$a->strings['Permissions'] = 'Permissions'; +$a->strings['Edit Album'] = 'Redigera album'; +$a->strings['View Photo'] = 'Visa foto'; +$a->strings['Photo not available'] = 'Fotot är inte tillgängligt'; +$a->strings['Edit photo'] = 'Redigera foto'; +$a->strings['View Full Size'] = 'Visa fullstor'; +$a->strings['Tags: '] = 'Taggar: '; +$a->strings['[Remove any tag]'] = '[Remove any tag]'; +$a->strings['New album name'] = 'New album name'; +$a->strings['Caption'] = 'Caption'; +$a->strings['Add a Tag'] = 'Lägg till tagg'; +$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'; +$a->strings['Recent Photos'] = 'Nyligen tillagda foton'; +$a->strings['Upload New Photos'] = 'Ladda upp foton'; +$a->strings['View Album'] = 'Titta i album'; +$a->strings['Image uploaded but image cropping failed.'] = 'Bilden laddades upp men det blev fel när den skulle beskäras.'; +$a->strings['Image size reduction [175] failed.'] = 'Fel när bildstorlek skulle minskas [175].'; +$a->strings['Image size reduction [80] failed.'] = 'Fel när bildstorlek skulle minskas [80].'; +$a->strings['Image size reduction [48] failed.'] = 'Fel när bildstorlek skulle minskas [48].'; +$a->strings['Unable to process image'] = 'Det gick inte att behandla bilden'; +$a->strings['Image uploaded successfully.'] = 'Bilden har laddats upp.'; +$a->strings['Image size reduction [640] failed.'] = 'Fel när bildstorlek skulle minskas [640].'; +$a->strings['Profile Name is required.'] = 'Profile Name is required.'; +$a->strings['Profile updated.'] = 'Profilen har uppdaterats.'; +$a->strings['Profile deleted.'] = 'Profilen har tagits bort.'; +$a->strings['Profile-'] = 'Profil-'; +$a->strings['New profile created.'] = 'En ny profil har skapats.'; +$a->strings['Profile unavailable to clone.'] = 'Det gick inte att klona profilen.'; +$a->strings['This is your public profile.
    It may be visible to anybody using the internet.'] = 'Det här är din offentliga profil.
    Den kan vara synlig för vem som helst på internet.'; +$a->strings['Age: '] = 'Ålder: '; +$a->strings['Profile Image'] = 'Profilbild'; +$a->strings['Invalid OpenID url'] = 'Ogiltig OpenID-url'; +$a->strings['Please enter the required information.'] = 'Fyll i alla obligatoriska fält.'; +$a->strings['Please use a shorter name.'] = 'Välj ett kortare namn.'; +$a->strings['Name too short.'] = 'Namnet är för kort.'; +$a->strings["That doesn\'t appear to be your full \x28First Last\x29 name."] = "Du verkar inte ha angett ditt fullständiga namn."; +$a->strings['Your email domain is not among those allowed on this site.'] = 'Din epostdomän är inte tillåten på den här webbplatsen.'; +$a->strings['Cannot use that email.'] = 'Får inte använda den e-postadressen.'; +$a->strings['Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.'] = 'Ditt användarnamn får bara innehålla "a-z", "0-9", "-" och "_", och måste dessutom börja med en bokstav.'; +$a->strings['Nickname is already registered. Please choose another.'] = 'Användarnamnet är upptaget. Välj ett annat.'; +$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.'] = 'Något gick fel vid registreringen. Försök igen.'; +$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.'] = 'Registrering klar. Kolla din e-post för vidare instruktioner.'; +$a->strings['Failed to send email message. Here is the message that failed.'] = 'Det gick inte att skicka e-brevet. Här är meddelandet som inte kunde skickas.'; +$a->strings['Your registration can not be processed.'] = 'Det går inte att behandla registreringen.'; +$a->strings['Registration request at '] = 'Registration request at '; +$a->strings['Your registration is pending approval by the site owner.'] = 'Din registrering inväntar godkännande av webbplatsens ägare.'; +$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.'] = 'Om du inte känner till OpenID kan du lämna det fältet tomt och fylla i resten.'; +$a->strings["Your OpenID \x28optional\x29: "] = "Ditt OpenID \x28krävs ej\x29: "; +$a->strings['Members of this network prefer to communicate with real people who use their real names.'] = 'Medlemmarna i det här nätverket föredrar att kommunicera med riktiga människor som använder sina riktiga namn.'; +$a->strings['Include your profile in member directory?'] = 'Inkludera din profil i medlemskatalogen?'; +$a->strings['Registration'] = 'Registrering'; +$a->strings['Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '] = 'Ditt fullständiga namn ' . "\x28" . 't. ex. Karl Karlsson' . "\x29" . ': '; +$a->strings['Your Email Address: '] = 'Din e-postadress: '; +$a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'nickname@$sitename\'.'] = 'Välj ett användarnamn. Det måste inledas med en bokstav. Din profiladress på den här webbplatsen blir \'användarnamn@$sitename\'.'; +$a->strings['Choose a nickname: '] = 'Välj ett användarnamn: '; +$a->strings['Please login.'] = 'Logga in.'; +$a->strings['Registration revoked for '] = 'Registration revoked for '; +$a->strings['Account approved.'] = 'Account approved.'; +$a->strings['Remove My Account'] = 'Ta bort mitt konto'; +$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Detta kommer att ta bort kontot helt och hållet. Efter att det är gjort går det inte att återställa.'; +$a->strings['Please enter your password for verification:'] = 'Ange lösenordet igen för jämförelse:'; +$a->strings['Passwords do not match. Password unchanged.'] = 'Lösenorden skiljer sig åt. Lösenordet ändras inte.'; +$a->strings['Empty passwords are not allowed. Password unchanged.'] = 'Lösenordet får inte vara blankt. Lösenordet ändras inte.'; +$a->strings['Password changed.'] = 'Lösenordet har ändrats.'; +$a->strings['Password update failed. Please try again.'] = 'Det blev fel när lösenordet skulle ändras. Försök igen.'; +$a->strings[' Please use a shorter name.'] = ' Använd ett kortare namn.'; +$a->strings[' Name too short.'] = ' Namnet är för kort.'; +$a->strings[' Not valid email.'] = ' Ogiltig e-postadress.'; +$a->strings[' Cannot change to that email.'] = ' Ändring till den e-postadressen görs inte.'; +$a->strings['Settings updated.'] = 'Inställningarna har uppdaterats.'; +$a->strings['Plugin Settings'] = 'Plugin Settings'; +$a->strings['Account Settings'] = 'Kontoinställningar'; +$a->strings['No Plugin settings configured'] = 'No Plugin settings configured'; +$a->strings['OpenID: '] = 'OpenID: '; +$a->strings[" \x28Optional\x29 Allow this OpenID to login to this account."] = " \x28Optional\x29 Allow this OpenID to login to this account."; +$a->strings['Profile is not published.'] = 'Profilen är inte publicerad.'; +$a->strings['Default Post Permissions'] = 'Default Post Permissions'; +$a->strings['Tag removed'] = 'Taggen har tagits bort'; +$a->strings['Remove Item Tag'] = 'Remove Item Tag'; +$a->strings['Select a tag to remove: '] = 'Välj tagg som ska tas bort: '; +$a->strings['Remove'] = 'Ta bort'; +$a->strings['No contacts.'] = 'Inga kontakter.'; +$a->strings['Visible To:'] = 'Synlig för:'; +$a->strings['Groups'] = 'Grupper'; +$a->strings['Except For:'] = 'Utom för:'; +$a->strings['Logged out.'] = 'Utloggad.'; +$a->strings['Unknown | Not categorised'] = 'Okänd | Inte kategoriserad'; +$a->strings['Block immediately'] = 'Spärra omedelbart'; +$a->strings['Shady, spammer, self-marketer'] = 'Suspekt, spammare, reklamspridare'; +$a->strings['Known to me, but no opinion'] = 'Jag vet vem det är, men har ingen åsikt'; +$a->strings['OK, probably harmless'] = 'OK, antagligen harmlös'; +$a->strings['Reputable, has my trust'] = 'Pålitlig, jag litar på personen'; +$a->strings['Frequently'] = 'Ofta'; +$a->strings['Hourly'] = 'Varje timme'; +$a->strings['Twice daily'] = 'Två gånger om dagen'; +$a->strings['Daily'] = 'Dagligen'; +$a->strings['Weekly'] = 'Veckovis'; +$a->strings['Monthly'] = 'Månadsvis'; +$a->strings['Miscellaneous'] = 'Blandat'; +$a->strings['less than a second ago'] = 'för mindre än en sekund sedan'; +$a->strings['year'] = 'år'; +$a->strings['years'] = 'år'; +$a->strings['month'] = 'månad'; +$a->strings['months'] = 'månader'; +$a->strings['week'] = 'vecka'; +$a->strings['weeks'] = 'veckor'; +$a->strings['day'] = 'dag'; +$a->strings['days'] = 'dagar'; +$a->strings['hour'] = 'timme'; +$a->strings['hours'] = 'timmar'; +$a->strings['minute'] = 'minut'; +$a->strings['minutes'] = 'minuter'; +$a->strings['second'] = 'sekund'; +$a->strings['seconds'] = 'sekunder'; +$a->strings[' ago'] = ' sedan'; +$a->strings['Create a new group'] = 'Skapa ny grupp'; +$a->strings['Everybody'] = 'Alla'; +$a->strings['Birthday:'] = 'Födelsedatum:'; +$a->strings['Home'] = 'Hem'; +$a->strings['Apps'] = 'Apps'; +$a->strings['Directory'] = 'Katalog'; +$a->strings['Network'] = 'Nätverk'; +$a->strings['Notifications'] = 'Aviseringar'; +$a->strings['Manage'] = 'Hantera'; +$a->strings['Settings'] = 'Inställningar'; +$a->strings['Profiles'] = 'Profiler'; +$a->strings['Embedding disabled'] = 'Embedding disabled'; +$a->strings['Male'] = 'Man'; +$a->strings['Female'] = 'Kvinna'; +$a->strings['Currently Male'] = 'För närvarande man'; +$a->strings['Currently Female'] = 'För närvarande kvinna'; +$a->strings['Mostly Male'] = 'Mestadels man'; +$a->strings['Mostly Female'] = 'Mestadels kvinna'; +$a->strings['Transgender'] = 'Transgender'; +$a->strings['Intersex'] = 'Intersex'; +$a->strings['Transsexual'] = 'Transsexuell'; +$a->strings['Hermaphrodite'] = 'Hermafrodit'; +$a->strings['Neuter'] = 'Neuter'; +$a->strings['Non-specific'] = 'Non-specific'; +$a->strings['Other'] = 'Annat'; +$a->strings['Undecided'] = 'Undecided'; +$a->strings['Males'] = 'Males'; +$a->strings['Females'] = 'Females'; +$a->strings['Gay'] = 'Bög'; +$a->strings['Lesbian'] = 'Lesbisk'; +$a->strings['No Preference'] = 'No Preference'; +$a->strings['Bisexual'] = 'Bisexuell'; +$a->strings['Autosexual'] = 'Autosexual'; +$a->strings['Abstinent'] = 'Abstinent'; +$a->strings['Virgin'] = 'Oskuld'; +$a->strings['Deviant'] = 'Avvikande'; +$a->strings['Fetish'] = 'Fetish'; +$a->strings['Oodles'] = 'Oodles'; +$a->strings['Nonsexual'] = 'Nonsexual'; +$a->strings['Single'] = 'Singel'; +$a->strings['Lonely'] = 'Ensam'; +$a->strings['Available'] = 'Tillgänglig'; +$a->strings['Unavailable'] = 'Upptagen'; +$a->strings['Dating'] = 'Dejtar'; +$a->strings['Unfaithful'] = 'Unfaithful'; +$a->strings['Sex Addict'] = 'Sexmissbrukare'; +$a->strings['Friends'] = 'Vänner'; +$a->strings['Friends/Benefits'] = 'Friends/Benefits'; +$a->strings['Casual'] = 'Casual'; +$a->strings['Engaged'] = 'Förlovad'; +$a->strings['Married'] = 'Gift'; +$a->strings['Partners'] = 'I partnerskap'; +$a->strings['Cohabiting'] = 'Cohabiting'; +$a->strings['Happy'] = 'Glad'; +$a->strings['Not Looking'] = 'Letar inte'; +$a->strings['Swinger'] = 'Swinger'; +$a->strings['Betrayed'] = 'Bedragen'; +$a->strings['Separated'] = 'Separerat'; +$a->strings['Unstable'] = 'Unstable'; +$a->strings['Divorced'] = 'Skiljd'; +$a->strings['Widowed'] = 'Widowed'; +$a->strings['Uncertain'] = 'Uncertain'; +$a->strings['Complicated'] = 'Komplicerat'; +$a->strings['Don\'t care'] = 'Don\'t care'; +$a->strings['Ask me'] = 'Fråga mig'; +$a->strings['Facebook disabled'] = 'Facebook disabled'; +$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['Facebook'] = 'Facebook'; +$a->strings['Facebook Connector Settings'] = 'Facebook Connector Settings'; +$a->strings['Post to Facebook'] = 'Post to Facebook'; +$a->strings['Image: '] = 'Bild: '; +$a->strings['Select files to upload: '] = 'Välj filer att ladda upp: '; +$a->strings['Use the following controls only if the Java uploader [above] fails to launch.'] = 'Use the following controls only if the Java uploader [above] fails to launch.'; +$a->strings['Upload a file'] = 'Ladda upp fil'; +$a->strings['Drop files here to upload'] = 'Dra filer som ska laddas upp hit'; +$a->strings['Failed'] = 'Misslyckades'; +$a->strings['No files were uploaded.'] = 'Inga filer laddades upp.'; +$a->strings['Uploaded file is empty'] = 'Den uppladdade filen är tom'; +$a->strings['Uploaded file is too large'] = 'Den uppladdade filen är för stor'; +$a->strings['File has an invalid extension, it should be one of '] = 'Otillåten filnamnsändelse, det ska vara '; +$a->strings['Upload was cancelled, or server error encountered'] = 'Serverfel eller avbruten uppladdning'; +$a->strings['Randplace Settings'] = 'Randplace Settings'; +$a->strings['Enable Randplace Plugin'] = 'Enable Randplace Plugin'; +$a->strings['Post to StatusNet'] = 'Post to StatusNet'; +$a->strings['StatusNet Posting Settings'] = 'StatusNet Posting Settings'; +$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.'] = '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.'; +$a->strings['OAuth Consumer Key'] = 'OAuth Consumer Key'; +$a->strings['OAuth Consumer Secret'] = 'OAuth Consumer Secret'; +$a->strings["Base API Path \x28remember the trailing /\x29"] = "Base API Path \x28remember the trailing /\x29"; +$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.'] = '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.'; +$a->strings['Log in with StatusNet'] = 'Log in with StatusNet'; +$a->strings['Copy the security code from StatusNet here'] = 'Copy the security code from StatusNet here'; +$a->strings['Currently connected to: '] = 'Currently connected to: '; +$a->strings['If enabled all your public postings will be posted to the associated StatusNet account as well.'] = 'If enabled all your public postings will be posted to the associated StatusNet account as well.'; +$a->strings['Send public postings to StatusNet'] = 'Send public postings to StatusNet'; +$a->strings['Clear OAuth configuration'] = 'Clear OAuth configuration'; +$a->strings['Three Dimensional Tic-Tac-Toe'] = 'Tredimensionellt luffarschack'; +$a->strings['3D Tic-Tac-Toe'] = '3D-luffarschack'; +$a->strings['New game'] = 'New game'; +$a->strings['New game with handicap'] = 'New game with handicap'; +$a->strings['Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. '] = 'Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. '; +$a->strings['In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels.'] = '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.'; +$a->strings['The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage.'] = 'The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage.'; +$a->strings['You go first...'] = 'You go first...'; +$a->strings['I\'m going first this time...'] = 'I\'m going first this time...'; +$a->strings['You won!'] = 'You won!'; +$a->strings['"Cat" game!'] = '"Cat" game!'; +$a->strings['I won!'] = 'I won!'; +$a->strings['Post to Twitter'] = 'Post to Twitter'; +$a->strings['Twitter Posting Settings'] = 'Twitter Posting Settings'; +$a->strings['No consumer key pair for Twitter found. Please contact your site administrator.'] = 'No consumer key pair for Twitter found. Please contact your site administrator.'; +$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.'] = '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.'; +$a->strings['Copy the PIN from Twitter here'] = 'Copy the PIN from Twitter here'; +$a->strings['If enabled all your public postings will be posted to the associated Twitter account as well.'] = 'If enabled all your public postings will be posted to the associated Twitter account as well.'; +$a->strings['Send public postings to Twitter'] = 'Send public postings to Twitter'; +$a->strings['Africa/Abidjan'] = 'Afrika/Abidjan'; +$a->strings['Africa/Accra'] = 'Afrika/Accra'; +$a->strings['Africa/Addis_Ababa'] = 'Afrika/Addis_Ababa'; +$a->strings['Africa/Algiers'] = 'Afrika/Algiers'; +$a->strings['Africa/Asmara'] = 'Afrika/Asmara'; +$a->strings['Africa/Asmera'] = 'Afrika/Asmera'; +$a->strings['Africa/Bamako'] = 'Afrika/Bamako'; +$a->strings['Africa/Bangui'] = 'Afrika/Bangui'; +$a->strings['Africa/Banjul'] = 'Afrika/Banjul'; +$a->strings['Africa/Bissau'] = 'Afrika/Bissau'; +$a->strings['Africa/Blantyre'] = 'Afrika/Blantyre'; +$a->strings['Africa/Brazzaville'] = 'Afrika/Brazzaville'; +$a->strings['Africa/Bujumbura'] = 'Afrika/Bujumbura'; +$a->strings['Africa/Cairo'] = 'Afrika/Cairo'; +$a->strings['Africa/Casablanca'] = 'Afrika/Casablanca'; +$a->strings['Africa/Ceuta'] = 'Afrika/Ceuta'; +$a->strings['Africa/Conakry'] = 'Afrika/Conakry'; +$a->strings['Africa/Dakar'] = 'Afrika/Dakar'; +$a->strings['Africa/Dar_es_Salaam'] = 'Afrika/Dar_es_Salaam'; +$a->strings['Africa/Djibouti'] = 'Afrika/Djibouti'; +$a->strings['Africa/Douala'] = 'Afrika/Douala'; +$a->strings['Africa/El_Aaiun'] = 'Afrika/El_Aaiun'; +$a->strings['Africa/Freetown'] = 'Afrika/Freetown'; +$a->strings['Africa/Gaborone'] = 'Afrika/Gaborone'; +$a->strings['Africa/Harare'] = 'Afrika/Harare'; +$a->strings['Africa/Johannesburg'] = 'Afrika/Johannesburg'; +$a->strings['Africa/Kampala'] = 'Afrika/Kampala'; +$a->strings['Africa/Khartoum'] = 'Afrika/Khartoum'; +$a->strings['Africa/Kigali'] = 'Afrika/Kigali'; +$a->strings['Africa/Kinshasa'] = 'Afrika/Kinshasa'; +$a->strings['Africa/Lagos'] = 'Afrika/Lagos'; +$a->strings['Africa/Libreville'] = 'Afrika/Libreville'; +$a->strings['Africa/Lome'] = 'Afrika/Lome'; +$a->strings['Africa/Luanda'] = 'Afrika/Luanda'; +$a->strings['Africa/Lubumbashi'] = 'Afrika/Lubumbashi'; +$a->strings['Africa/Lusaka'] = 'Afrika/Lusaka'; +$a->strings['Africa/Malabo'] = 'Afrika/Malabo'; +$a->strings['Africa/Maputo'] = 'Afrika/Maputo'; +$a->strings['Africa/Maseru'] = 'Afrika/Maseru'; +$a->strings['Africa/Mbabane'] = 'Afrika/Mbabane'; +$a->strings['Africa/Mogadishu'] = 'Afrika/Mogadishu'; +$a->strings['Africa/Monrovia'] = 'Afrika/Monrovia'; +$a->strings['Africa/Nairobi'] = 'Afrika/Nairobi'; +$a->strings['Africa/Ndjamena'] = 'Afrika/Ndjamena'; +$a->strings['Africa/Niamey'] = 'Afrika/Niamey'; +$a->strings['Africa/Nouakchott'] = 'Afrika/Nouakchott'; +$a->strings['Africa/Ouagadougou'] = 'Afrika/Ouagadougou'; +$a->strings['Africa/Porto-Novo'] = 'Afrika/Porto-Novo'; +$a->strings['Africa/Sao_Tome'] = 'Afrika/Sao_Tome'; +$a->strings['Africa/Timbuktu'] = 'Afrika/Timbuktu'; +$a->strings['Africa/Tripoli'] = 'Afrika/Tripoli'; +$a->strings['Africa/Tunis'] = 'Afrika/Tunis'; +$a->strings['Africa/Windhoek'] = 'Afrika/Windhoek'; +$a->strings['America/Adak'] = 'Amerika/Adak'; +$a->strings['America/Anchorage'] = 'Amerika/Anchorage'; +$a->strings['America/Anguilla'] = 'Amerika/Anguilla'; +$a->strings['America/Antigua'] = 'Amerika/Antigua'; +$a->strings['America/Araguaina'] = 'Amerika/Araguaina'; +$a->strings['America/Argentina/Buenos_Aires'] = 'Amerika/Argentina/Buenos_Aires'; +$a->strings['America/Argentina/Catamarca'] = 'Amerika/Argentina/Catamarca'; +$a->strings['America/Argentina/ComodRivadavia'] = 'Amerika/Argentina/ComodRivadavia'; +$a->strings['America/Argentina/Cordoba'] = 'Amerika/Argentina/Cordoba'; +$a->strings['America/Argentina/Jujuy'] = 'Amerika/Argentina/Jujuy'; +$a->strings['America/Argentina/La_Rioja'] = 'Amerika/Argentina/La_Rioja'; +$a->strings['America/Argentina/Mendoza'] = 'Amerika/Argentina/Mendoza'; +$a->strings['America/Argentina/Rio_Gallegos'] = 'Amerika/Argentina/Rio_Gallegos'; +$a->strings['America/Argentina/Salta'] = 'Amerika/Argentina/Salta'; +$a->strings['America/Argentina/San_Juan'] = 'Amerika/Argentina/San_Juan'; +$a->strings['America/Argentina/San_Luis'] = 'Amerika/Argentina/San_Luis'; +$a->strings['America/Argentina/Tucuman'] = 'Amerika/Argentina/Tucuman'; +$a->strings['America/Argentina/Ushuaia'] = 'Amerika/Argentina/Ushuaia'; +$a->strings['America/Aruba'] = 'Amerika/Aruba'; +$a->strings['America/Asuncion'] = 'Amerika/Asuncion'; +$a->strings['America/Atikokan'] = 'Amerika/Atikokan'; +$a->strings['America/Atka'] = 'Amerika/Atka'; +$a->strings['America/Bahia'] = 'Amerika/Bahia'; +$a->strings['America/Barbados'] = 'Amerika/Barbados'; +$a->strings['America/Belem'] = 'Amerika/Belem'; +$a->strings['America/Belize'] = 'Amerika/Belize'; +$a->strings['America/Blanc-Sablon'] = 'Amerika/Blanc-Sablon'; +$a->strings['America/Boa_Vista'] = 'Amerika/Boa_Vista'; +$a->strings['America/Bogota'] = 'Amerika/Bogota'; +$a->strings['America/Boise'] = 'Amerika/Boise'; +$a->strings['America/Buenos_Aires'] = 'Amerika/Buenos_Aires'; +$a->strings['America/Cambridge_Bay'] = 'Amerika/Cambridge_Bay'; +$a->strings['America/Campo_Grande'] = 'Amerika/Campo_Grande'; +$a->strings['America/Cancun'] = 'Amerika/Cancun'; +$a->strings['America/Caracas'] = 'Amerika/Caracas'; +$a->strings['America/Catamarca'] = 'Amerika/Catamarca'; +$a->strings['America/Cayenne'] = 'Amerika/Cayenne'; +$a->strings['America/Cayman'] = 'Amerika/Cayman'; +$a->strings['America/Chicago'] = 'Amerika/Chicago'; +$a->strings['America/Chihuahua'] = 'Amerika/Chihuahua'; +$a->strings['America/Coral_Harbour'] = 'Amerika/Coral_Harbour'; +$a->strings['America/Cordoba'] = 'Amerika/Cordoba'; +$a->strings['America/Costa_Rica'] = 'Amerika/Costa_Rica'; +$a->strings['America/Cuiaba'] = 'Amerika/Cuiaba'; +$a->strings['America/Curacao'] = 'Amerika/Curacao'; +$a->strings['America/Danmarkshavn'] = 'Amerika/Danmarkshavn'; +$a->strings['America/Dawson'] = 'Amerika/Dawson'; +$a->strings['America/Dawson_Creek'] = 'Amerika/Dawson_Creek'; +$a->strings['America/Denver'] = 'Amerika/Denver'; +$a->strings['America/Detroit'] = 'Amerika/Detroit'; +$a->strings['America/Dominica'] = 'Amerika/Dominica'; +$a->strings['America/Edmonton'] = 'Amerika/Edmonton'; +$a->strings['America/Eirunepe'] = 'Amerika/Eirunepe'; +$a->strings['America/El_Salvador'] = 'Amerika/El_Salvador'; +$a->strings['America/Ensenada'] = 'Amerika/Ensenada'; +$a->strings['America/Fort_Wayne'] = 'Amerika/Fort_Wayne'; +$a->strings['America/Fortaleza'] = 'Amerika/Fortaleza'; +$a->strings['America/Glace_Bay'] = 'Amerika/Glace_Bay'; +$a->strings['America/Godthab'] = 'Amerika/Godthab'; +$a->strings['America/Goose_Bay'] = 'Amerika/Goose_Bay'; +$a->strings['America/Grand_Turk'] = 'Amerika/Grand_Turk'; +$a->strings['America/Grenada'] = 'Amerika/Grenada'; +$a->strings['America/Guadeloupe'] = 'Amerika/Guadeloupe'; +$a->strings['America/Guatemala'] = 'Amerika/Guatemala'; +$a->strings['America/Guayaquil'] = 'Amerika/Guayaquil'; +$a->strings['America/Guyana'] = 'Amerika/Guyana'; +$a->strings['America/Halifax'] = 'Amerika/Halifax'; +$a->strings['America/Havana'] = 'Amerika/Havana'; +$a->strings['America/Hermosillo'] = 'Amerika/Hermosillo'; +$a->strings['America/Indiana/Indianapolis'] = 'Amerika/Indiana/Indianapolis'; +$a->strings['America/Indiana/Knox'] = 'Amerika/Indiana/Knox'; +$a->strings['America/Indiana/Marengo'] = 'Amerika/Indiana/Marengo'; +$a->strings['America/Indiana/Petersburg'] = 'Amerika/Indiana/Petersburg'; +$a->strings['America/Indiana/Tell_City'] = 'Amerika/Indiana/Tell_City'; +$a->strings['America/Indiana/Vevay'] = 'Amerika/Indiana/Vevay'; +$a->strings['America/Indiana/Vincennes'] = 'Amerika/Indiana/Vincennes'; +$a->strings['America/Indiana/Winamac'] = 'Amerika/Indiana/Winamac'; +$a->strings['America/Indianapolis'] = 'Amerika/Indianapolis'; +$a->strings['America/Inuvik'] = 'Amerika/Inuvik'; +$a->strings['America/Iqaluit'] = 'Amerika/Iqaluit'; +$a->strings['America/Jamaica'] = 'Amerika/Jamaica'; +$a->strings['America/Jujuy'] = 'Amerika/Jujuy'; +$a->strings['America/Juneau'] = 'Amerika/Juneau'; +$a->strings['America/Kentucky/Louisville'] = 'Amerika/Kentucky/Louisville'; +$a->strings['America/Kentucky/Monticello'] = 'Amerika/Kentucky/Monticello'; +$a->strings['America/Knox_IN'] = 'Amerika/Knox_IN'; +$a->strings['America/La_Paz'] = 'Amerika/La_Paz'; +$a->strings['America/Lima'] = 'Amerika/Lima'; +$a->strings['America/Los_Angeles'] = 'Amerika/Los_Angeles'; +$a->strings['America/Louisville'] = 'Amerika/Louisville'; +$a->strings['America/Maceio'] = 'Amerika/Maceio'; +$a->strings['America/Managua'] = 'Amerika/Managua'; +$a->strings['America/Manaus'] = 'Amerika/Manaus'; +$a->strings['America/Marigot'] = 'Amerika/Marigot'; +$a->strings['America/Martinique'] = 'Amerika/Martinique'; +$a->strings['America/Matamoros'] = 'Amerika/Matamoros'; +$a->strings['America/Mazatlan'] = 'Amerika/Mazatlan'; +$a->strings['America/Mendoza'] = 'Amerika/Mendoza'; +$a->strings['America/Menominee'] = 'Amerika/Menominee'; +$a->strings['America/Merida'] = 'Amerika/Merida'; +$a->strings['America/Mexico_City'] = 'Amerika/Mexico_City'; +$a->strings['America/Miquelon'] = 'Amerika/Miquelon'; +$a->strings['America/Moncton'] = 'Amerika/Moncton'; +$a->strings['America/Monterrey'] = 'Amerika/Monterrey'; +$a->strings['America/Montevideo'] = 'Amerika/Montevideo'; +$a->strings['America/Montreal'] = 'Amerika/Montreal'; +$a->strings['America/Montserrat'] = 'Amerika/Montserrat'; +$a->strings['America/Nassau'] = 'Amerika/Nassau'; +$a->strings['America/New_York'] = 'Amerika/New_York'; +$a->strings['America/Nipigon'] = 'Amerika/Nipigon'; +$a->strings['America/Nome'] = 'Amerika/Nome'; +$a->strings['America/Noronha'] = 'Amerika/Noronha'; +$a->strings['America/North_Dakota/Center'] = 'Amerika/North_Dakota/Center'; +$a->strings['America/North_Dakota/New_Salem'] = 'Amerika/North_Dakota/New_Salem'; +$a->strings['America/Ojinaga'] = 'Amerika/Ojinaga'; +$a->strings['America/Panama'] = 'Amerika/Panama'; +$a->strings['America/Pangnirtung'] = 'Amerika/Pangnirtung'; +$a->strings['America/Paramaribo'] = 'Amerika/Paramaribo'; +$a->strings['America/Phoenix'] = 'Amerika/Phoenix'; +$a->strings['America/Port-au-Prince'] = 'Amerika/Port-au-Prince'; +$a->strings['America/Port_of_Spain'] = 'Amerika/Port_of_Spain'; +$a->strings['America/Porto_Acre'] = 'Amerika/Porto_Acre'; +$a->strings['America/Porto_Velho'] = 'Amerika/Porto_Velho'; +$a->strings['America/Puerto_Rico'] = 'Amerika/Puerto_Rico'; +$a->strings['America/Rainy_River'] = 'Amerika/Rainy_River'; +$a->strings['America/Rankin_Inlet'] = 'Amerika/Rankin_Inlet'; +$a->strings['America/Recife'] = 'Amerika/Recife'; +$a->strings['America/Regina'] = 'Amerika/Regina'; +$a->strings['America/Resolute'] = 'Amerika/Resolute'; +$a->strings['America/Rio_Branco'] = 'Amerika/Rio_Branco'; +$a->strings['America/Rosario'] = 'Amerika/Rosario'; +$a->strings['America/Santa_Isabel'] = 'Amerika/Santa_Isabel'; +$a->strings['America/Santarem'] = 'Amerika/Santarem'; +$a->strings['America/Santiago'] = 'Amerika/Santiago'; +$a->strings['America/Santo_Domingo'] = 'Amerika/Santo_Domingo'; +$a->strings['America/Sao_Paulo'] = 'Amerika/Sao_Paulo'; +$a->strings['America/Scoresbysund'] = 'Amerika/Scoresbysund'; +$a->strings['America/Shiprock'] = 'Amerika/Shiprock'; +$a->strings['America/St_Barthelemy'] = 'Amerika/St_Barthelemy'; +$a->strings['America/St_Johns'] = 'Amerika/St_Johns'; +$a->strings['America/St_Kitts'] = 'Amerika/St_Kitts'; +$a->strings['America/St_Lucia'] = 'Amerika/St_Lucia'; +$a->strings['America/St_Thomas'] = 'Amerika/St_Thomas'; +$a->strings['America/St_Vincent'] = 'Amerika/St_Vincent'; +$a->strings['America/Swift_Current'] = 'Amerika/Swift_Current'; +$a->strings['America/Tegucigalpa'] = 'Amerika/Tegucigalpa'; +$a->strings['America/Thule'] = 'Amerika/Thule'; +$a->strings['America/Thunder_Bay'] = 'Amerika/Thunder_Bay'; +$a->strings['America/Tijuana'] = 'Amerika/Tijuana'; +$a->strings['America/Toronto'] = 'Amerika/Toronto'; +$a->strings['America/Tortola'] = 'Amerika/Tortola'; +$a->strings['America/Vancouver'] = 'Amerika/Vancouver'; +$a->strings['America/Virgin'] = 'Amerika/Virgin'; +$a->strings['America/Whitehorse'] = 'Amerika/Whitehorse'; +$a->strings['America/Winnipeg'] = 'Amerika/Winnipeg'; +$a->strings['America/Yakutat'] = 'Amerika/Yakutat'; +$a->strings['America/Yellowknife'] = 'Amerika/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'] = 'Asien/Aden'; +$a->strings['Asia/Almaty'] = 'Asien/Almaty'; +$a->strings['Asia/Amman'] = 'Asien/Amman'; +$a->strings['Asia/Anadyr'] = 'Asien/Anadyr'; +$a->strings['Asia/Aqtau'] = 'Asien/Aqtau'; +$a->strings['Asia/Aqtobe'] = 'Asien/Aqtobe'; +$a->strings['Asia/Ashgabat'] = 'Asien/Ashgabat'; +$a->strings['Asia/Ashkhabad'] = 'Asien/Ashkhabad'; +$a->strings['Asia/Baghdad'] = 'Asien/Baghdad'; +$a->strings['Asia/Bahrain'] = 'Asien/Bahrain'; +$a->strings['Asia/Baku'] = 'Asien/Baku'; +$a->strings['Asia/Bangkok'] = 'Asien/Bangkok'; +$a->strings['Asia/Beirut'] = 'Asien/Beirut'; +$a->strings['Asia/Bishkek'] = 'Asien/Bishkek'; +$a->strings['Asia/Brunei'] = 'Asien/Brunei'; +$a->strings['Asia/Calcutta'] = 'Asien/Calcutta'; +$a->strings['Asia/Choibalsan'] = 'Asien/Choibalsan'; +$a->strings['Asia/Chongqing'] = 'Asien/Chongqing'; +$a->strings['Asia/Chungking'] = 'Asien/Chungking'; +$a->strings['Asia/Colombo'] = 'Asien/Colombo'; +$a->strings['Asia/Dacca'] = 'Asien/Dacca'; +$a->strings['Asia/Damascus'] = 'Asien/Damascus'; +$a->strings['Asia/Dhaka'] = 'Asien/Dhaka'; +$a->strings['Asia/Dili'] = 'Asien/Dili'; +$a->strings['Asia/Dubai'] = 'Asien/Dubai'; +$a->strings['Asia/Dushanbe'] = 'Asien/Dushanbe'; +$a->strings['Asia/Gaza'] = 'Asien/Gaza'; +$a->strings['Asia/Harbin'] = 'Asien/Harbin'; +$a->strings['Asia/Ho_Chi_Minh'] = 'Asien/Ho_Chi_Minh'; +$a->strings['Asia/Hong_Kong'] = 'Asien/Hong_Kong'; +$a->strings['Asia/Hovd'] = 'Asien/Hovd'; +$a->strings['Asia/Irkutsk'] = 'Asien/Irkutsk'; +$a->strings['Asia/Istanbul'] = 'Asien/Istanbul'; +$a->strings['Asia/Jakarta'] = 'Asien/Jakarta'; +$a->strings['Asia/Jayapura'] = 'Asien/Jayapura'; +$a->strings['Asia/Jerusalem'] = 'Asien/Jerusalem'; +$a->strings['Asia/Kabul'] = 'Asien/Kabul'; +$a->strings['Asia/Kamchatka'] = 'Asien/Kamchatka'; +$a->strings['Asia/Karachi'] = 'Asien/Karachi'; +$a->strings['Asia/Kashgar'] = 'Asien/Kashgar'; +$a->strings['Asia/Kathmandu'] = 'Asien/Kathmandu'; +$a->strings['Asia/Katmandu'] = 'Asien/Katmandu'; +$a->strings['Asia/Kolkata'] = 'Asien/Kolkata'; +$a->strings['Asia/Krasnoyarsk'] = 'Asien/Krasnoyarsk'; +$a->strings['Asia/Kuala_Lumpur'] = 'Asien/Kuala_Lumpur'; +$a->strings['Asia/Kuching'] = 'Asien/Kuching'; +$a->strings['Asia/Kuwait'] = 'Asien/Kuwait'; +$a->strings['Asia/Macao'] = 'Asien/Macao'; +$a->strings['Asia/Macau'] = 'Asien/Macau'; +$a->strings['Asia/Magadan'] = 'Asien/Magadan'; +$a->strings['Asia/Makassar'] = 'Asien/Makassar'; +$a->strings['Asia/Manila'] = 'Asien/Manila'; +$a->strings['Asia/Muscat'] = 'Asien/Muscat'; +$a->strings['Asia/Nicosia'] = 'Asien/Nicosia'; +$a->strings['Asia/Novokuznetsk'] = 'Asien/Novokuznetsk'; +$a->strings['Asia/Novosibirsk'] = 'Asien/Novosibirsk'; +$a->strings['Asia/Omsk'] = 'Asien/Omsk'; +$a->strings['Asia/Oral'] = 'Asien/Oral'; +$a->strings['Asia/Phnom_Penh'] = 'Asien/Phnom_Penh'; +$a->strings['Asia/Pontianak'] = 'Asien/Pontianak'; +$a->strings['Asia/Pyongyang'] = 'Asien/Pyongyang'; +$a->strings['Asia/Qatar'] = 'Asien/Qatar'; +$a->strings['Asia/Qyzylorda'] = 'Asien/Qyzylorda'; +$a->strings['Asia/Rangoon'] = 'Asien/Rangoon'; +$a->strings['Asia/Riyadh'] = 'Asien/Riyadh'; +$a->strings['Asia/Saigon'] = 'Asien/Saigon'; +$a->strings['Asia/Sakhalin'] = 'Asien/Sakhalin'; +$a->strings['Asia/Samarkand'] = 'Asien/Samarkand'; +$a->strings['Asia/Seoul'] = 'Asien/Seoul'; +$a->strings['Asia/Shanghai'] = 'Asien/Shanghai'; +$a->strings['Asia/Singapore'] = 'Asien/Singapore'; +$a->strings['Asia/Taipei'] = 'Asien/Taipei'; +$a->strings['Asia/Tashkent'] = 'Asien/Tashkent'; +$a->strings['Asia/Tbilisi'] = 'Asien/Tbilisi'; +$a->strings['Asia/Tehran'] = 'Asien/Tehran'; +$a->strings['Asia/Tel_Aviv'] = 'Asien/Tel_Aviv'; +$a->strings['Asia/Thimbu'] = 'Asien/Thimbu'; +$a->strings['Asia/Thimphu'] = 'Asien/Thimphu'; +$a->strings['Asia/Tokyo'] = 'Asien/Tokyo'; +$a->strings['Asia/Ujung_Pandang'] = 'Asien/Ujung_Pandang'; +$a->strings['Asia/Ulaanbaatar'] = 'Asien/Ulaanbaatar'; +$a->strings['Asia/Ulan_Bator'] = 'Asien/Ulan_Bator'; +$a->strings['Asia/Urumqi'] = 'Asien/Urumqi'; +$a->strings['Asia/Vientiane'] = 'Asien/Vientiane'; +$a->strings['Asia/Vladivostok'] = 'Asien/Vladivostok'; +$a->strings['Asia/Yakutsk'] = 'Asien/Yakutsk'; +$a->strings['Asia/Yekaterinburg'] = 'Asien/Yekaterinburg'; +$a->strings['Asia/Yerevan'] = 'Asien/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'] = 'Australien/ACT'; +$a->strings['Australia/Adelaide'] = 'Australien/Adelaide'; +$a->strings['Australia/Brisbane'] = 'Australien/Brisbane'; +$a->strings['Australia/Broken_Hill'] = 'Australien/Broken_Hill'; +$a->strings['Australia/Canberra'] = 'Australien/Canberra'; +$a->strings['Australia/Currie'] = 'Australien/Currie'; +$a->strings['Australia/Darwin'] = 'Australien/Darwin'; +$a->strings['Australia/Eucla'] = 'Australien/Eucla'; +$a->strings['Australia/Hobart'] = 'Australien/Hobart'; +$a->strings['Australia/LHI'] = 'Australien/LHI'; +$a->strings['Australia/Lindeman'] = 'Australien/Lindeman'; +$a->strings['Australia/Lord_Howe'] = 'Australien/Lord_Howe'; +$a->strings['Australia/Melbourne'] = 'Australien/Melbourne'; +$a->strings['Australia/North'] = 'Australien/North'; +$a->strings['Australia/NSW'] = 'Australien/NSW'; +$a->strings['Australia/Perth'] = 'Australien/Perth'; +$a->strings['Australia/Queensland'] = 'Australien/Queensland'; +$a->strings['Australia/South'] = 'Australien/South'; +$a->strings['Australia/Sydney'] = 'Australien/Sydney'; +$a->strings['Australia/Tasmania'] = 'Australien/Tasmania'; +$a->strings['Australia/Victoria'] = 'Australien/Victoria'; +$a->strings['Australia/West'] = 'Australien/West'; +$a->strings['Australia/Yancowinna'] = 'Australien/Yancowinna'; +$a->strings['Brazil/Acre'] = 'Brasilien/Acre'; +$a->strings['Brazil/DeNoronha'] = 'Brasilien/DeNoronha'; +$a->strings['Brazil/East'] = 'Brasilien/East'; +$a->strings['Brazil/West'] = 'Brasilien/West'; +$a->strings['Canada/Atlantic'] = 'Kanada/Atlantic'; +$a->strings['Canada/Central'] = 'Kanada/Central'; +$a->strings['Canada/East-Saskatchewan'] = 'Kanada/East-Saskatchewan'; +$a->strings['Canada/Eastern'] = 'Kanada/Eastern'; +$a->strings['Canada/Mountain'] = 'Kanada/Mountain'; +$a->strings['Canada/Newfoundland'] = 'Kanada/Newfoundland'; +$a->strings['Canada/Pacific'] = 'Kanada/Pacific'; +$a->strings['Canada/Saskatchewan'] = 'Kanada/Saskatchewan'; +$a->strings['Canada/Yukon'] = 'Kanada/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'] = 'Egypten'; +$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'] = 'Europa/Amsterdam'; +$a->strings['Europe/Andorra'] = 'Europa/Andorra'; +$a->strings['Europe/Athens'] = 'Europa/Aten'; +$a->strings['Europe/Belfast'] = 'Europa/Belfast'; +$a->strings['Europe/Belgrade'] = 'Europa/Belgrad'; +$a->strings['Europe/Berlin'] = 'Europa/Berlin'; +$a->strings['Europe/Bratislava'] = 'Europa/Bratislava'; +$a->strings['Europe/Brussels'] = 'Europa/Bryssel'; +$a->strings['Europe/Bucharest'] = 'Europa/Bucharest'; +$a->strings['Europe/Budapest'] = 'Europa/Budapest'; +$a->strings['Europe/Chisinau'] = 'Europa/Chisinau'; +$a->strings['Europe/Copenhagen'] = 'Europa/Köpenhamn'; +$a->strings['Europe/Dublin'] = 'Europa/Dublin'; +$a->strings['Europe/Gibraltar'] = 'Europa/Gibraltar'; +$a->strings['Europe/Guernsey'] = 'Europa/Guernsey'; +$a->strings['Europe/Helsinki'] = 'Europa/Helsingfors'; +$a->strings['Europe/Isle_of_Man'] = 'Europa/Isle_of_Man'; +$a->strings['Europe/Istanbul'] = 'Europa/Istanbul'; +$a->strings['Europe/Jersey'] = 'Europa/Jersey'; +$a->strings['Europe/Kaliningrad'] = 'Europa/Kaliningrad'; +$a->strings['Europe/Kiev'] = 'Europa/Kiev'; +$a->strings['Europe/Lisbon'] = 'Europa/Lisabon'; +$a->strings['Europe/Ljubljana'] = 'Europa/Ljubljana'; +$a->strings['Europe/London'] = 'Europa/London'; +$a->strings['Europe/Luxembourg'] = 'Europa/Luxemburg'; +$a->strings['Europe/Madrid'] = 'Europa/Madrid'; +$a->strings['Europe/Malta'] = 'Europa/Malta'; +$a->strings['Europe/Mariehamn'] = 'Europa/Mariehamn'; +$a->strings['Europe/Minsk'] = 'Europa/Minsk'; +$a->strings['Europe/Monaco'] = 'Europa/Monaco'; +$a->strings['Europe/Moscow'] = 'Europa/Moskva'; +$a->strings['Europe/Nicosia'] = 'Europa/Nicosia'; +$a->strings['Europe/Oslo'] = 'Europa/Oslo'; +$a->strings['Europe/Paris'] = 'Europa/Paris'; +$a->strings['Europe/Podgorica'] = 'Europa/Podgorica'; +$a->strings['Europe/Prague'] = 'Europa/Prag'; +$a->strings['Europe/Riga'] = 'Europa/Riga'; +$a->strings['Europe/Rome'] = 'Europa/Rom'; +$a->strings['Europe/Samara'] = 'Europa/Samara'; +$a->strings['Europe/San_Marino'] = 'Europa/San_Marino'; +$a->strings['Europe/Sarajevo'] = 'Europa/Sarajevo'; +$a->strings['Europe/Simferopol'] = 'Europa/Simferopol'; +$a->strings['Europe/Skopje'] = 'Europa/Skopje'; +$a->strings['Europe/Sofia'] = 'Europa/Sofia'; +$a->strings['Europe/Stockholm'] = 'Europa/Stockholm'; +$a->strings['Europe/Tallinn'] = 'Europa/Tallinn'; +$a->strings['Europe/Tirane'] = 'Europa/Tirane'; +$a->strings['Europe/Tiraspol'] = 'Europa/Tiraspol'; +$a->strings['Europe/Uzhgorod'] = 'Europa/Uzhgorod'; +$a->strings['Europe/Vaduz'] = 'Europa/Vaduz'; +$a->strings['Europe/Vatican'] = 'Europa/Vatikanen'; +$a->strings['Europe/Vienna'] = 'Europa/Wien'; +$a->strings['Europe/Vilnius'] = 'Europa/Vilnius'; +$a->strings['Europe/Volgograd'] = 'Europa/Volgograd'; +$a->strings['Europe/Warsaw'] = 'Europa/Warsawa'; +$a->strings['Europe/Zagreb'] = 'Europa/Zagreb'; +$a->strings['Europe/Zaporozhye'] = 'Europa/Zaporozhye'; +$a->strings['Europe/Zurich'] = 'Europa/Zürich'; +$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'] = 'Turkiet'; +$a->strings['UCT'] = 'UCT'; +$a->strings['Universal'] = 'Universal'; +$a->strings['US/Alaska'] = 'USA/Alaska'; +$a->strings['US/Aleutian'] = 'USA/Aleutian'; +$a->strings['US/Arizona'] = 'USA/Arizona'; +$a->strings['US/Central'] = 'USA/Central'; +$a->strings['US/East-Indiana'] = 'USA/East-Indiana'; +$a->strings['US/Eastern'] = 'USA/Eastern'; +$a->strings['US/Hawaii'] = 'USA/Hawaii'; +$a->strings['US/Indiana-Starke'] = 'USA/Indiana-Starke'; +$a->strings['US/Michigan'] = 'USA/Michigan'; +$a->strings['US/Mountain'] = 'USA/Mountain'; +$a->strings['US/Pacific'] = 'USA/Pacific'; +$a->strings['US/Pacific-New'] = 'USA/Pacific-New'; +$a->strings['US/Samoa'] = 'USA/Samoa'; +$a->strings['UTC'] = 'UTC'; +$a->strings['W-SU'] = 'W-SU'; +$a->strings['WET'] = 'WET'; +$a->strings['Zulu'] = 'Zulu'; diff --git a/view/sv/wall_received_eml.tpl b/view/sv/wall_received_eml.tpl new file mode 100644 index 0000000000..c296de7851 --- /dev/null +++ b/view/sv/wall_received_eml.tpl @@ -0,0 +1,18 @@ + +Dear $username, + + '$from' posted something to your profile wall. + +----- +$body +----- + +Please login at $siteurl to view or delete the item: + +$display + +Thank you, + $sitename administrator + + + From a7af6df962bad0901611d28450a990831fb25680 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Sun, 13 Mar 2011 13:50:44 +0100 Subject: [PATCH 11/28] 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 12/28] 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 3d323fd2608d58164f2fb1889f508b2796190f23 Mon Sep 17 00:00:00 2001 From: Friendika Date: Thu, 17 Mar 2011 00:32:24 -0700 Subject: [PATCH 13/28] condense birthday display --- boot.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/boot.php b/boot.php index d02ecd344a..330c965f4e 100644 --- a/boot.php +++ b/boot.php @@ -2423,7 +2423,13 @@ function get_birthdays() { ); if($r && count($r)) { - $o .= '
    ' . t('Birthdays this week:') . '
    '; + $total = 0; + foreach($r as $rr) + if(strlen($rr['name'])) + $total ++; + + $o .= ''; + $o .= '' ; } - $o .= '
    '; + $o .= ''; } return $o; From 90178f86cb02cc3b6d2b7e5d49222dfeec0e8921 Mon Sep 17 00:00:00 2001 From: Friendika Date: Thu, 17 Mar 2011 14:41:36 -0700 Subject: [PATCH 14/28] revup --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 330c965f4e..389ea93a97 100644 --- a/boot.php +++ b/boot.php @@ -2,7 +2,7 @@ set_time_limit(0); -define ( 'FRIENDIKA_VERSION', '2.1.920' ); +define ( 'FRIENDIKA_VERSION', '2.1.921' ); define ( 'DFRN_PROTOCOL_VERSION', '2.1' ); define ( 'DB_UPDATE_VERSION', 1043 ); From 0bce69fe9c0d9d66e6242c5673cf8c9bf6564d0b Mon Sep 17 00:00:00 2001 From: Friendika Date: Thu, 17 Mar 2011 14:55:25 -0700 Subject: [PATCH 15/28] swedush string update via erikl --- view/sv/strings.php | 143 -------------------------------------------- 1 file changed, 143 deletions(-) diff --git a/view/sv/strings.php b/view/sv/strings.php index d30a14b1fc..6685130bb9 100644 --- a/view/sv/strings.php +++ b/view/sv/strings.php @@ -60,11 +60,7 @@ $a->strings['December'] = 'december'; $a->strings['Birthdays this week:'] = 'Födelsedagar denna vecka:'; $a->strings["\x28Adjusted for local time\x29"] = "\x28Justerad till lokal tid\x29"; $a->strings['[today]'] = '[today]'; -<<<<<<< HEAD -$a->strings['link to source'] = 'länk till källa'; -======= $a->strings['link to source'] = 'link to source'; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['No recipient selected.'] = 'Ingen mottagare vald.'; $a->strings['[no subject]'] = '[no subject]'; $a->strings['Unable to locate contact information.'] = 'Hittar inga kontaktuppgifter.'; @@ -98,20 +94,12 @@ $a->strings['Could not access contact record.'] = 'Could not access contact reco $a->strings['Could not locate selected profile.'] = 'Hittade inte vald profil.'; $a->strings['Contact updated.'] = 'Kontakten har uppdaterats.'; $a->strings['Failed to update contact record.'] = 'Failed to update contact record.'; -<<<<<<< HEAD -$a->strings['Contact has been '] = 'Kontakten '; -======= $a->strings['Contact has been '] = 'Kontakt '; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['blocked'] = 'spärrad'; $a->strings['unblocked'] = 'inte längre spärrad'; $a->strings['ignored'] = 'ignoreras'; $a->strings['unignored'] = 'ignoreras inte längre'; -<<<<<<< HEAD -$a->strings['stopped following'] = 'följer inte längre'; -======= $a->strings['stopped following'] = 'stopped following'; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['Contact has been removed.'] = 'Kontakten har tagits bort.'; $a->strings['Contact not found.'] = 'Kontakten hittades inte.'; $a->strings['Mutual Friendship'] = 'Ömsesidig vänskap'; @@ -154,41 +142,20 @@ $a->strings['No user record found for '] = 'No user record found for '; $a->strings['Our site encryption key is apparently messed up.'] = 'Det är något fel på webbplatsens krypteringsnyckel.'; $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.'; -<<<<<<< HEAD -$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'Det ID som angavs av ditt system är samma som på vårt system. Det borde fungera om du provar igen.'; -======= $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.'; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $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'] = 'Administratör'; $a->strings['noreply'] = 'noreply'; -<<<<<<< HEAD -$a->strings[' commented on an item at '] = ' har kommenterat '; -$a->strings[" commented on an item at "] = " har kommenterat "; -$a->strings[' welcomes '] = ' välkomnar '; -$a->strings["This introduction has already been accepted."] = "Den här förfrågan har redan accepterats."; -======= $a->strings[' commented on an item at '] = ' skrev en kommentar på '; $a->strings[" commented on an item at "] = " skrev en kommentar på "; $a->strings[' welcomes '] = ' välkomnar '; $a->strings["This introduction has already been accepted."] = "This introduction has already been accepted."; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['Profile location is not valid or does not contain profile information.'] = 'Profiladressen är ogiltig eller innehåller ingen profilinformation.'; $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'] = ' obligatoriskt fält'; -<<<<<<< HEAD -$a->strings[" was "] = " var "; -$a->strings["s were "] = " var "; -$a->strings["not found at the given location."] = "finns inte på platsen som angavs."; -$a->strings["Introduction complete."] = "Presentationen klar."; -$a->strings['Unrecoverable protocol error.'] = 'Irreparabelt protokollfel.'; -$a->strings['Profile unavailable.'] = 'Profilen är inte tillgänglig.'; -$a->strings[' has received too many connection requests today.'] = ' har tagit emot för många förfrågningar idag.'; -$a->strings['Spam protection measures have been invoked.'] = 'Åtgärder för skydd mot spam har aktiverats.'; -======= $a->strings[" was "] = " was "; $a->strings["s were "] = "s were "; $a->strings["not found at the given location."] = "finns inte på platsen som angavs."; @@ -197,28 +164,18 @@ $a->strings['Unrecoverable protocol error.'] = 'Unrecoverable protocol error.'; $a->strings['Profile unavailable.'] = 'Profilen är inte tillgänglig.'; $a->strings[' has received too many connection requests today.'] = ' has received too many connection requests today.'; $a->strings['Spam protection measures have been invoked.'] = 'Spam protection measures have been invoked.'; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $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.'] = 'Du har redan presenterat dig här.'; $a->strings['Apparently you are already friends with .'] = 'Du är tydligen redan vän med .'; $a->strings['Invalid profile URL.'] = 'Ogiltig profil-URL.'; -<<<<<<< HEAD -$a->strings['Disallowed profile URL.'] = 'Otillåten profil-URL.'; -$a->strings['Your introduction has been sent.'] = 'Presentationen har skickats.'; -$a->strings["Please login to confirm introduction."] = "Logga in för att acceptera förfrågan."; -$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['Friend/Connection Request'] = 'Vän- eller kontaktförfrågan'; -======= $a->strings['Disallowed profile URL.'] = 'Disallowed profile URL.'; $a->strings['Your introduction has been sent.'] = 'Presentationen har skickats.'; $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['Friend/Connection Request'] = 'Friend/Connection Request'; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['Please answer the following:'] = 'Besvara följande, tack:'; $a->strings['Does $name know you?'] = 'Känner $name dig?'; $a->strings['Yes'] = 'Ja'; @@ -315,26 +272,16 @@ $a->strings['Remote privacy information not available.'] = 'Remote privacy infor $a->strings['Visible to:'] = 'Synlig för:'; $a->strings['Password reset requested at '] = 'Lösenordsåterställning begärd kl '; $a->strings["Welcome back "] = "Välkommen tillbaka "; -<<<<<<< HEAD -$a->strings['Manage Identities and/or Pages'] = 'Ändra identitet eller sidor'; -$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: '] = 'Välj vilken identitet du vill ändra: '; -======= $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: '; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['Normal View'] = 'Normal vy'; $a->strings['New Item View'] = 'New Item View'; $a->strings['Share'] = 'Dela'; $a->strings['Insert YouTube video'] = 'Infoga klipp från YouTube'; $a->strings['Set your location'] = 'Ange plats'; $a->strings['Clear browser location'] = 'Clear browser location'; -<<<<<<< HEAD -$a->strings['Permission settings'] = 'Åtkomstinställningar'; -======= $a->strings['Permission settings'] = 'Permission settings'; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['No such group'] = 'Gruppen finns inte'; $a->strings['Group is empty'] = 'Gruppen är tom'; $a->strings['Group: '] = 'Grupp: '; @@ -344,17 +291,10 @@ $a->strings['Discard'] = 'Kasta bort'; $a->strings['Ignore'] = 'Ignorera'; $a->strings['Show Ignored Requests'] = 'Show Ignored Requests'; $a->strings['Hide Ignored Requests'] = 'Hide Ignored Requests'; -<<<<<<< HEAD -$a->strings['Claims to be known to you: '] = 'Hävdar att du vet vem han/hon är: '; -$a->strings['yes'] = 'ja'; -$a->strings['no'] = 'nej'; -$a->strings['Approve as: '] = 'Godkänn som: '; -======= $a->strings['Claims to be known to you: '] = 'Claims to be known to you: '; $a->strings['yes'] = 'ja'; $a->strings['no'] = 'nej'; $a->strings['Approve as: '] = 'Approve as: '; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['Friend'] = 'Vän'; $a->strings['Fan/Admirer'] = 'Fan/Beundrare'; $a->strings['Notification type: '] = 'Notification type: '; @@ -371,11 +311,7 @@ $a->strings['Profile Photos'] = 'Profilbilder'; $a->strings['Album not found.'] = 'Albumet finns inte.'; $a->strings['Delete Album'] = 'Ta bort album'; $a->strings['Delete Photo'] = 'Ta bort foto'; -<<<<<<< HEAD -$a->strings['was tagged in a'] = 'har taggats i'; -======= $a->strings['was tagged in a'] = 'was tagged in a'; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['by'] = 'av'; $a->strings['Image exceeds size limit of '] = 'Bilden överskrider den tillåtna storleken '; $a->strings['Unable to process image.'] = 'Bilden kunde inte bahandlas.'; @@ -384,11 +320,7 @@ $a->strings['No photos selected'] = 'Inga foton har valts'; $a->strings['Upload Photos'] = 'Ladda upp foton'; $a->strings['New album name: '] = 'Nytt album med namn: '; $a->strings['or existing album name: '] = 'eller befintligt album med namn: '; -<<<<<<< HEAD -$a->strings['Permissions'] = 'Åtkomst'; -======= $a->strings['Permissions'] = 'Permissions'; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['Edit Album'] = 'Redigera album'; $a->strings['View Photo'] = 'Visa foto'; $a->strings['Photo not available'] = 'Fotot är inte tillgängligt'; @@ -396,17 +328,10 @@ $a->strings['Edit photo'] = 'Redigera foto'; $a->strings['View Full Size'] = 'Visa fullstor'; $a->strings['Tags: '] = 'Taggar: '; $a->strings['[Remove any tag]'] = '[Remove any tag]'; -<<<<<<< HEAD -$a->strings['New album name'] = 'Nytt album med namn'; -$a->strings['Caption'] = 'Caption'; -$a->strings['Add a Tag'] = 'Lägg till tagg'; -$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Exempel: @adam, @Anna_Andersson, @johan@exempel.com, #Stockholm, #camping'; -======= $a->strings['New album name'] = 'New album name'; $a->strings['Caption'] = 'Caption'; $a->strings['Add a Tag'] = 'Lägg till tagg'; $a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['Recent Photos'] = 'Nyligen tillagda foton'; $a->strings['Upload New Photos'] = 'Ladda upp foton'; $a->strings['View Album'] = 'Titta i album'; @@ -417,11 +342,7 @@ $a->strings['Image size reduction [48] failed.'] = 'Fel när bildstorlek skulle $a->strings['Unable to process image'] = 'Det gick inte att behandla bilden'; $a->strings['Image uploaded successfully.'] = 'Bilden har laddats upp.'; $a->strings['Image size reduction [640] failed.'] = 'Fel när bildstorlek skulle minskas [640].'; -<<<<<<< HEAD -$a->strings['Profile Name is required.'] = 'Profilen måste ha ett namn.'; -======= $a->strings['Profile Name is required.'] = 'Profile Name is required.'; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['Profile updated.'] = 'Profilen har uppdaterats.'; $a->strings['Profile deleted.'] = 'Profilen har tagits bort.'; $a->strings['Profile-'] = 'Profil-'; @@ -430,11 +351,7 @@ $a->strings['Profile unavailable to clone.'] = 'Det gick inte att klona profilen $a->strings['This is your public profile.
    It may be visible to anybody using the internet.'] = 'Det här är din offentliga profil.
    Den kan vara synlig för vem som helst på internet.'; $a->strings['Age: '] = 'Ålder: '; $a->strings['Profile Image'] = 'Profilbild'; -<<<<<<< HEAD -$a->strings['Invalid OpenID url'] = 'Ogiltig OpenID-URL'; -======= $a->strings['Invalid OpenID url'] = 'Ogiltig OpenID-url'; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['Please enter the required information.'] = 'Fyll i alla obligatoriska fält.'; $a->strings['Please use a shorter name.'] = 'Välj ett kortare namn.'; $a->strings['Name too short.'] = 'Namnet är för kort.'; @@ -464,11 +381,7 @@ $a->strings['Choose a profile nickname. This must begin with a text character. Y $a->strings['Choose a nickname: '] = 'Välj ett användarnamn: '; $a->strings['Please login.'] = 'Logga in.'; $a->strings['Registration revoked for '] = 'Registration revoked for '; -<<<<<<< HEAD -$a->strings['Account approved.'] = 'Kontot har godkänts.'; -======= $a->strings['Account approved.'] = 'Account approved.'; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['Remove My Account'] = 'Ta bort mitt konto'; $a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Detta kommer att ta bort kontot helt och hållet. Efter att det är gjort går det inte att återställa.'; $a->strings['Please enter your password for verification:'] = 'Ange lösenordet igen för jämförelse:'; @@ -485,21 +398,12 @@ $a->strings['Plugin Settings'] = 'Plugin Settings'; $a->strings['Account Settings'] = 'Kontoinställningar'; $a->strings['No Plugin settings configured'] = 'No Plugin settings configured'; $a->strings['OpenID: '] = 'OpenID: '; -<<<<<<< HEAD -$a->strings[" \x28Optional\x29 Allow this OpenID to login to this account."] = " \x28Valfritt\x29 Tillåt inloggning med detta OpenID på det här kontot."; -$a->strings['Profile is not published.'] = 'Profilen är inte publicerad.'; -$a->strings['Default Post Permissions'] = 'Default Post Permissions'; -$a->strings['Tag removed'] = 'Taggen har tagits bort'; -$a->strings['Remove Item Tag'] = 'Ta bort tagg'; -$a->strings['Select a tag to remove: '] = 'Välj vilken tagg som ska tas bort: '; -======= $a->strings[" \x28Optional\x29 Allow this OpenID to login to this account."] = " \x28Optional\x29 Allow this OpenID to login to this account."; $a->strings['Profile is not published.'] = 'Profilen är inte publicerad.'; $a->strings['Default Post Permissions'] = 'Default Post Permissions'; $a->strings['Tag removed'] = 'Taggen har tagits bort'; $a->strings['Remove Item Tag'] = 'Remove Item Tag'; $a->strings['Select a tag to remove: '] = 'Välj tagg som ska tas bort: '; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['Remove'] = 'Ta bort'; $a->strings['No contacts.'] = 'Inga kontakter.'; $a->strings['Visible To:'] = 'Synlig för:'; @@ -598,11 +502,7 @@ $a->strings['Divorced'] = 'Skiljd'; $a->strings['Widowed'] = 'Widowed'; $a->strings['Uncertain'] = 'Uncertain'; $a->strings['Complicated'] = 'Komplicerat'; -<<<<<<< HEAD -$a->strings['Don\'t care'] = 'Bryr mig inte'; -======= $a->strings['Don\'t care'] = 'Don\'t care'; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['Ask me'] = 'Fråga mig'; $a->strings['Facebook disabled'] = 'Facebook disabled'; $a->strings['Facebook API key is missing.'] = 'Facebook API key is missing.'; @@ -611,17 +511,10 @@ $a->strings['Install Facebook post connector'] = 'Install Facebook post connecto $a->strings['Remove Facebook post connector'] = 'Remove Facebook post connector'; $a->strings['Facebook'] = 'Facebook'; $a->strings['Facebook Connector Settings'] = 'Facebook Connector Settings'; -<<<<<<< HEAD -$a->strings['Post to Facebook'] = 'Lägg in på Facebook'; -$a->strings['Image: '] = 'Bild: '; -$a->strings['Select files to upload: '] = 'Välj filer att ladda upp: '; -$a->strings['Use the following controls only if the Java uploader [above] fails to launch.'] = 'Använd följande bara om javauppladdaren ovanför inte startar.'; -======= $a->strings['Post to Facebook'] = 'Post to Facebook'; $a->strings['Image: '] = 'Bild: '; $a->strings['Select files to upload: '] = 'Välj filer att ladda upp: '; $a->strings['Use the following controls only if the Java uploader [above] fails to launch.'] = 'Use the following controls only if the Java uploader [above] fails to launch.'; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['Upload a file'] = 'Ladda upp fil'; $a->strings['Drop files here to upload'] = 'Dra filer som ska laddas upp hit'; $a->strings['Failed'] = 'Misslyckades'; @@ -632,48 +525,21 @@ $a->strings['File has an invalid extension, it should be one of '] = 'Otillåten $a->strings['Upload was cancelled, or server error encountered'] = 'Serverfel eller avbruten uppladdning'; $a->strings['Randplace Settings'] = 'Randplace Settings'; $a->strings['Enable Randplace Plugin'] = 'Enable Randplace Plugin'; -<<<<<<< HEAD -$a->strings['Post to StatusNet'] = 'Lägg in på StatusNet'; -======= $a->strings['Post to StatusNet'] = 'Post to StatusNet'; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['StatusNet Posting Settings'] = 'StatusNet Posting Settings'; $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.'] = '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.'; $a->strings['OAuth Consumer Key'] = 'OAuth Consumer Key'; $a->strings['OAuth Consumer Secret'] = 'OAuth Consumer Secret'; $a->strings["Base API Path \x28remember the trailing /\x29"] = "Base API Path \x28remember the trailing /\x29"; $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.'] = '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.'; -<<<<<<< HEAD -$a->strings['Log in with StatusNet'] = 'Logga in med StatusNet'; -$a->strings['Copy the security code from StatusNet here'] = 'Copy the security code from StatusNet here'; -$a->strings['Currently connected to: '] = 'Ansluten till: '; -======= $a->strings['Log in with StatusNet'] = 'Log in with StatusNet'; $a->strings['Copy the security code from StatusNet here'] = 'Copy the security code from StatusNet here'; $a->strings['Currently connected to: '] = 'Currently connected to: '; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['If enabled all your public postings will be posted to the associated StatusNet account as well.'] = 'If enabled all your public postings will be posted to the associated StatusNet account as well.'; $a->strings['Send public postings to StatusNet'] = 'Send public postings to StatusNet'; $a->strings['Clear OAuth configuration'] = 'Clear OAuth configuration'; $a->strings['Three Dimensional Tic-Tac-Toe'] = 'Tredimensionellt luffarschack'; $a->strings['3D Tic-Tac-Toe'] = '3D-luffarschack'; -<<<<<<< HEAD -$a->strings['New game'] = 'Ny spelomgång'; -$a->strings['New game with handicap'] = 'Ny spelomgång med handikapp'; -$a->strings['Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. '] = 'Det tredimensionella luffarschacket är precis som vanligt luffarschack förutom att det spelas i flera nivåer samtidigt. '; -$a->strings['In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels.'] = 'Här är det tre nivåer. Man vinner om man får tre i rad på vilken nivå som helst, eller uppåt, nedåt eller diagonalt på flera nivåer.'; -$a->strings['The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage.'] = 'Om man spelar med handikapp så stängs mittenpositionen på mittennivån av eftersom spelare som väljer den positionen ofta får övertaget.'; -$a->strings['You go first...'] = 'Du börjar...'; -$a->strings['I\'m going first this time...'] = 'Jag börjar den här gången...'; -$a->strings['You won!'] = 'Du vann!'; -$a->strings['"Cat" game!'] = '"Cat" game!'; -$a->strings['I won!'] = 'Jag vann!'; -$a->strings['Post to Twitter'] = 'Lägg in på Twitter'; -$a->strings['Twitter Posting Settings'] = 'Twitter Posting Settings'; -$a->strings['No consumer key pair for Twitter found. Please contact your site administrator.'] = 'No consumer key pair for Twitter found. Please contact your site administrator.'; -$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.'] = '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.'; -$a->strings['Copy the PIN from Twitter here'] = 'Ange PIN-koden från Twitter här'; -======= $a->strings['New game'] = 'New game'; $a->strings['New game with handicap'] = 'New game with handicap'; $a->strings['Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. '] = 'Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. '; @@ -689,7 +555,6 @@ $a->strings['Twitter Posting Settings'] = 'Twitter Posting Settings'; $a->strings['No consumer key pair for Twitter found. Please contact your site administrator.'] = 'No consumer key pair for Twitter found. Please contact your site administrator.'; $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.'] = '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.'; $a->strings['Copy the PIN from Twitter here'] = 'Copy the PIN from Twitter here'; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['If enabled all your public postings will be posted to the associated Twitter account as well.'] = 'If enabled all your public postings will be posted to the associated Twitter account as well.'; $a->strings['Send public postings to Twitter'] = 'Send public postings to Twitter'; $a->strings['Africa/Abidjan'] = 'Afrika/Abidjan'; @@ -1180,11 +1045,7 @@ $a->strings['Israel'] = 'Israel'; $a->strings['Jamaica'] = 'Jamaica'; $a->strings['Japan'] = 'Japan'; $a->strings['Kwajalein'] = 'Kwajalein'; -<<<<<<< HEAD -$a->strings['Libya'] = 'Libyen'; -======= $a->strings['Libya'] = 'Libya'; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['MET'] = 'MET'; $a->strings['Mexico/BajaNorte'] = 'Mexico/BajaNorte'; $a->strings['Mexico/BajaSur'] = 'Mexico/BajaSur'; @@ -1234,11 +1095,7 @@ $a->strings['Pacific/Truk'] = 'Pacific/Truk'; $a->strings['Pacific/Wake'] = 'Pacific/Wake'; $a->strings['Pacific/Wallis'] = 'Pacific/Wallis'; $a->strings['Pacific/Yap'] = 'Pacific/Yap'; -<<<<<<< HEAD -$a->strings['Poland'] = 'Polen'; -======= $a->strings['Poland'] = 'Poland'; ->>>>>>> e94ae8d396b8583407b140faf211f4f92a503bc6 $a->strings['Portugal'] = 'Portugal'; $a->strings['PRC'] = 'PRC'; $a->strings['PST8PDT'] = 'PST8PDT'; From a5d5ae5efaa59abc6fc8888ccab303187a7a04ac Mon Sep 17 00:00:00 2001 From: Friendika Date: Thu, 17 Mar 2011 15:26:45 -0700 Subject: [PATCH 16/28] updated swedish templates --- view/sv/jot-header.tpl | 30 ++++++++++++++++++++++++++++++ view/sv/profile_edit.tpl | 16 +++++++++++----- view/sv/settings.tpl | 7 ++++++- 3 files changed, 47 insertions(+), 6 deletions(-) diff --git a/view/sv/jot-header.tpl b/view/sv/jot-header.tpl index fe818410e5..b6e156324e 100644 --- a/view/sv/jot-header.tpl +++ b/view/sv/jot-header.tpl @@ -104,6 +104,28 @@ tinyMCE.init({ } } + + function jotGetVideo() { + reply = prompt("Please enter a YouTube link:"); + if(reply && reply.length) { + tinyMCE.execCommand('mceInsertRawHTML',false,'[youtube]' + reply + '[/youtube]'); + } + } + + function jotVideoURL() { + reply = prompt("Please enter a video(.ogg) link/URL:"); + if(reply && reply.length) { + tinyMCE.execCommand('mceInsertRawHTML',false,'[video]' + reply + '[/video]'); + } + } + + function jotAudioURL() { + reply = prompt("Please enter an audio(.ogg) link/URL:"); + if(reply && reply.length) { + tinyMCE.execCommand('mceInsertRawHTML',false,'[audio]' + reply + '[/audio]'); + } + } + function jotGetLocation() { reply = prompt("Where are you right now?", $('#jot-location').val()); if(reply && reply.length) { @@ -111,6 +133,14 @@ tinyMCE.init({ } } + function jotShare(id) { + $('#like-rotator-' + id).show(); + $.get('share/' + id, function(data) { + tinyMCE.execCommand('mceInsertRawHTML',false,data); + $('#like-rotator-' + id).hide(); + $(window).scrollTop(0); + }); + } function linkdropper(event) { var linkFound = event.dataTransfer.types.contains("text/uri-list"); diff --git a/view/sv/profile_edit.tpl b/view/sv/profile_edit.tpl index b0d4850d0d..6c7d74dafc 100644 --- a/view/sv/profile_edit.tpl +++ b/view/sv/profile_edit.tpl @@ -134,11 +134,17 @@ $sexual
    -
    - - -
    (Used for searching public profiles, never shown to others)
    -
    +
    + + +
    (Used for suggesting potential friends, can be seen by others)
    +
    + +
    + + +
    (Used for searching profiles, never shown to others)
    +
    diff --git a/view/sv/settings.tpl b/view/sv/settings.tpl index 97d67cbf61..ea4e2e52c8 100644 --- a/view/sv/settings.tpl +++ b/view/sv/settings.tpl @@ -78,7 +78,7 @@ $profile_in_net_dir
    - +
    +
    Automatically expire (delete) posts older than days
    +
    + + +
    From 5d9550e08f16b25f5680f1dcbefc78e60670981c Mon Sep 17 00:00:00 2001 From: Friendika Date: Thu, 17 Mar 2011 15:31:46 -0700 Subject: [PATCH 17/28] incorrect slinky param --- addon/facebook/facebook.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addon/facebook/facebook.php b/addon/facebook/facebook.php index e1ea6673be..f3f313efe6 100644 --- a/addon/facebook/facebook.php +++ b/addon/facebook/facebook.php @@ -237,7 +237,7 @@ function facebook_post_hook(&$a,&$b) { require_once('library/slinky.php'); $display_url = $a->get_baseurl() . '/display/' . $a->user['nickname'] . '/' . $b['id']; - $slinky = new Slinky( $posturl ); + $slinky = new Slinky( $display_url ); // setup a cascade of shortening services // try to get a short link from these services // in the order ur1.ca, trim, id.gd, tinyurl From 6380d22229a6d0003f7024d0c8420ef7c9ec2a4d Mon Sep 17 00:00:00 2001 From: Friendika Date: Thu, 17 Mar 2011 17:31:39 -0700 Subject: [PATCH 18/28] better colour matching on toolbar, replace "share" with "recycle" --- images/recycle.gif | Bin 0 -> 612 bytes images/remote-link.gif | Bin 365 -> 237 bytes view/like.tpl | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 images/recycle.gif diff --git a/images/recycle.gif b/images/recycle.gif new file mode 100644 index 0000000000000000000000000000000000000000..01b3e13b400785cc2a1ce44bd8e9540becbe82f5 GIT binary patch literal 612 zcmZ?wbhEHb6krfwI9ANS5LCkuT*na7z!28N6xPHL-ohH*$Pm%S64AmC)xjFs$`IYf z8r{wi)599m$q?Je5!1mI+rqCkdubrb_8I@PiHOvko!UE9y~?YPjt>*D17muDZkI`8ncw-zP|eO?e*vH z@4o){{QdWrAHTl-{QdLK-~Yq`#h)yUTnzOLIt)MniW3I*gAMgf_1SKLp{k~8F3r95 z7EH{ZhP;x@QGNAs>`MGP5$wvMg286D8am85pbq6W$yV literal 0 HcmV?d00001 diff --git a/images/remote-link.gif b/images/remote-link.gif index 1224e3db5fb7f8c72353b5291029ef1ef965dbd3..64de29aeee9dc8e4895e81d86effbfec86bf2de9 100644 GIT binary patch literal 237 zcmZ?wbhEHb6krfwXc1%3468FpnP`|k%{Xh8Y3_Wp{Dl@JD=kV_Tb8Y{EMI5Wurq$f zshU-n>sDVrbmR4ro3GE_e|P@D`->0X-+%Sx!Rs&2-+%v)7byN@VdP?vXV75)0+5{y ztXU7#`%*Hy99JzRyu_6I2t9aFyRvIs^Vbixv|5w(O|*E4;H)(LcVI=mZHLrmHA2SOWl5b#Z(E literal 365 zcmZ?wbhEHb6krfwSgORp5ci)U?F>WOMTV4b3~7HD(*851{pZR#$B_jj|BDp;mnyp| zUG`t5?7u?gf7P1*8nyq8Td$e4UNZ%vwrj?%|4m!}JN5q0S^mF!=l|Ya|8KtdfBWVC zC-46~`|$ty$NxWn|Nr^tKkb0xKSAfB)Wnk16ovB4k_-iRPu~Cr#h)yUTnzRMIt)Mn z@+bpa>4EtL9y(I3-AjxrbqsW-u4v8FNpXpI^W{f$jLpqcOglsJ4n2P7
    From ea03d9fa86827cbc7e86885bbe2493d8a9739546 Mon Sep 17 00:00:00 2001 From: Friendika Date: Thu, 17 Mar 2011 21:15:27 -0700 Subject: [PATCH 19/28] more thorough cleanup on account/contact removal --- include/Contact.php | 5 +++++ mod/photos.php | 1 + 2 files changed, 6 insertions(+) diff --git a/include/Contact.php b/include/Contact.php index 7cac3c0e0c..4ca77d0651 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -14,11 +14,13 @@ function user_remove($uid) { q("DELETE FROM `group` WHERE `uid` = %d", intval($uid)); q("DELETE FROM `group_member` WHERE `uid` = %d", intval($uid)); q("DELETE FROM `intro` WHERE `uid` = %d", intval($uid)); + q("DELETE FROM `event` WHERE `uid` = %d", intval($uid)); q("DELETE FROM `item` WHERE `uid` = %d", intval($uid)); q("DELETE FROM `mail` WHERE `uid` = %d", intval($uid)); q("DELETE FROM `photo` WHERE `uid` = %d", intval($uid)); q("DELETE FROM `profile` WHERE `uid` = %d", intval($uid)); q("DELETE FROM `profile_check` WHERE `uid` = %d", intval($uid)); + q("DELETE FROM `pconfig` WHERE `uid` = %d", intval($uid)); q("DELETE FROM `user` WHERE `uid` = %d", intval($uid)); if($uid == local_user()) { unset($_SESSION['authenticated']); @@ -41,6 +43,9 @@ function contact_remove($id) { q("DELETE FROM `mail` WHERE `contact-id` = %d ", intval($id) ); + q("DELETE FROM `event` WHERE `cid` = %d ", + intval($id) + ); } diff --git a/mod/photos.php b/mod/photos.php index 4bb6e3eab4..8298d0d3f0 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -310,6 +310,7 @@ foreach($_FILES AS $key => $val) { $arr['deny_gid'] = $p[0]['deny_gid']; $arr['last-child'] = 1; $arr['visible'] = $visibility; + $arr['body'] = '[url=' . $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $p[0]['resource-id'] . ']' . '[img]' . $a->get_baseurl() . '/photo/' . $p[0]['resource-id'] . '-' . $p[0]['scale'] . '.jpg' . '[/img]' . '[/url]'; From 9f5201dcaa4737427da7ec37969556c574e4711f Mon Sep 17 00:00:00 2001 From: Friendika Date: Fri, 18 Mar 2011 00:30:34 -0700 Subject: [PATCH 20/28] edit posting after submission --- images/pencil.gif | Bin 0 -> 553 bytes mod/editpost.php | 91 ++++++++++++++++++++++++++++++ mod/item.php | 48 +++++++++++++++- mod/network.php | 4 ++ mod/profile.php | 7 +++ view/theme/duepuntozero/style.css | 4 ++ view/theme/loozah/style.css | 4 ++ view/wall_item.tpl | 1 + view/wallwall_item.tpl | 1 + 9 files changed, 159 insertions(+), 1 deletion(-) create mode 100644 images/pencil.gif create mode 100644 mod/editpost.php diff --git a/images/pencil.gif b/images/pencil.gif new file mode 100644 index 0000000000000000000000000000000000000000..26bfb0c9a4f39b79bfc4195cc58c43d77d8f03e4 GIT binary patch literal 553 zcmZ?wbhEHb6krfwIOfhEAZsY9<{+)_Cv6ZQYZ4}J9;IlVq->X_>X@VDRjut)r{mYC zcC7(T%`YKm#>EYr9-7RigP(pOt&tg+4AVwbnoE^oVi{tk!2-3~>2 zolEw)lPs^(s-oqwru(UrDkS0}8!IdA*jg*)#p+I4^F-Uq7>KH7Hj>Go64cAa^? z_uPwv7hfH_`ufbxw`Xs?yKv|I)dwH0J^c9k!;hc8{`?<0K=CIFBNszGgAM}_fZ~LK zy{)0Xskx=KtzA_{tG$(zU5HJyr%A>|l$nX6$6U!--b#d#z1>*bPTpQlnnAx!*T_u6 zQBs;$w@t;=(7;hlhTFJJ)>^~VK}3ejyiLkh!NyidhSQ==&`{CIR#1kg-NaJI$x1+i muSdsvcrvS#nargc > 1) ? intval($a->argv[1]) : 0); + + if(! $post_id) { + notice( t('Item not found') . EOL); + return; + } + + $r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1", + intval($post_id), + intval(local_user()) + ); + + if(! count($r)) { + notice( t('Item not found') . EOL); + return; + } + + + $o .= '

    ' . t('Edit post') . '

    '; + + $tpl = load_view_file('view/jot-header.tpl'); + + $a->page['htmlhead'] .= replace_macros($tpl, array( + '$baseurl' => $a->get_baseurl(), + '$geotag' => $geotag, + '$nickname' => $a->user['nickname'] + )); + + + $tpl = load_view_file("view/jot.tpl"); + + if(($group) || (is_array($a->user) && ((strlen($a->user['allow_cid'])) || (strlen($a->user['allow_gid'])) || (strlen($a->user['deny_cid'])) || (strlen($a->user['deny_gid']))))) + $lockstate = 'lock'; + else + $lockstate = 'unlock'; + + $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false); + + $jotplugins = ''; + $jotnets = ''; + call_hooks('jot_tool', $jotplugins); + call_hooks('jot_networks', $jotnets); + + $tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins)); + + $o .= replace_macros($tpl,array( + '$return_path' => $_SESSION['return_url'], + '$action' => 'item', + '$share' => t('Edit'), + '$upload' => t('Upload photo'), + '$weblink' => t('Insert web link'), + '$youtube' => t('Insert YouTube video'), + '$video' => t('Insert Vorbis [.ogg] video'), + '$audio' => t('Insert Vorbis [.ogg] audio'), + '$setloc' => t('Set your location'), + '$noloc' => t('Clear browser location'), + '$wait' => t('Please wait'), + '$permset' => t('Permission settings'), + '$content' => $r[0]['body'], + '$post_id' => $post_id, + '$baseurl' => $a->get_baseurl(), + '$defloc' => $a->user['default-location'], + '$visitor' => 'none', + '$emailcc' => t('CC: email addresses'), + '$jotnets' => $jotnets, + '$emtitle' => t('Example: bob@example.com, mary@example.com'), + '$lockstate' => $lockstate, + '$acl' => '', // populate_acl((($group) ? $group_acl : $a->user), $celeb), + '$bang' => (($group) ? '!' : ''), + '$profile_uid' => $_SESSION['uid'] + )); + + + return $o; + +} + + diff --git a/mod/item.php b/mod/item.php index 6e6e822d0c..511e268093 100644 --- a/mod/item.php +++ b/mod/item.php @@ -51,7 +51,7 @@ function item_post(&$a) { } $profile_uid = ((x($_POST,'profile_uid')) ? intval($_POST['profile_uid']) : 0); - + $post_id = ((x($_POST['post_id'])) ? intval($_POST['post_id']) : 0); if(! can_write_wall($a,$profile_uid)) { notice( t('Permission denied.') . EOL) ; @@ -151,6 +151,35 @@ function item_post(&$a) { } } + // is this an edited post? + + $orig_post = null; + + if($post_id) { + $i = q("SELECT * FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1", + intval($profile_uid), + intval($post_id) + ); + if(! count($i)) + killme(); + $orig_post = $i[0]; + } + + if($orig_post) { + $str_group_allow = $orig_post['allow_gid']; + $str_contact_allow = $orig_post['allow_cid']; + $str_group_deny = $orig_post['deny_gid']; + $str_contact_deny = $orig_post['deny_cid']; + $private = $orig_post['private']; + $title = $orig_post['title']; + $location = $orig_post['location']; + $coord = $orig_post['coord']; + $verb = $orig_post['verb']; + $emailcc = $orig_post['emailcc']; + + $body = escape_tags(trim($_POST['body'])); + } + /** * @@ -294,8 +323,25 @@ function item_post(&$a) { } + if($orig_post) { + $r = q("UPDATE `item` SET `body` = '%s', `edited` = '%s' WHERE `id` = %d AND `uid` = %d LIMIT 1", + dbesc($body), + dbesc(datetime_convert()), + intval($post_id), + intval($profile_uid) + ); + proc_run('php', "include/notifier.php", 'edit_post', "$post_id"); + if((x($_POST,'return')) && strlen($_POST['return'])) { + logger('return: ' . $_POST['return']); + goaway($a->get_baseurl() . "/" . $_POST['return'] ); + } + killme(); + } + + $post_id = 0; $wall = 0; + if($post_type === 'wall' || $post_type === 'wall-comment') $wall = 1; diff --git a/mod/network.php b/mod/network.php index abdf59c486..81c85f0ff7 100644 --- a/mod/network.php +++ b/mod/network.php @@ -387,6 +387,9 @@ function network_content(&$a, $update = 0) { )); } + $edpost = ''; + if(($item['id'] == $item['parent']) && (intval($item['wall']) == 1)) + $edpost = ''; $drop = replace_macros(load_view_file('view/wall_item_drop.tpl'), array('$id' => $item['id'], '$delete' => t('Delete'))); $photo = $item['photo']; @@ -455,6 +458,7 @@ function network_content(&$a, $update = 0) { '$owner_photo' => $owner_photo, '$owner_name' => $owner_name, '$plink' => get_plink($item), + '$edpost' => $edpost, '$drop' => $drop, '$vote' => $likebuttons, '$like' => $like, diff --git a/mod/profile.php b/mod/profile.php index c0989bd28a..1053e4a1e6 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -348,6 +348,12 @@ function profile_content(&$a, $update = 0) { else $sparkle = ''; + + $edpost = ''; + if((local_user()) && ($a->profile['profile_uid'] == local_user()) && ($item['id'] == $item['parent']) && (intval($item['wall']) == 1)) + $edpost = ''; + + // We would prefer to use our own avatar link for this item because the one in the author-avatar might reference a // remote site (which could be down). We will use author-avatar if we haven't got something stored locally. // We use this same logic block in mod/network.php to determine it this is a third party post and we don't have any @@ -400,6 +406,7 @@ function profile_content(&$a, $update = 0) { '$location' => $location, '$indent' => $indent, '$plink' => get_plink($item), + '$edpost' => $edpost, '$drop' => $drop, '$like' => $like, '$vote' => $likebuttons, diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index ce75655fb9..5db45921ad 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -927,6 +927,10 @@ input#dfrn-url { margin-left: 10px; } +.editpost { + margin-left: 15px; +} + .wall-item-links-wrapper { float: left; } diff --git a/view/theme/loozah/style.css b/view/theme/loozah/style.css index 1c378793ad..0284bdcf86 100644 --- a/view/theme/loozah/style.css +++ b/view/theme/loozah/style.css @@ -999,6 +999,10 @@ input#dfrn-url { margin-left: 5px; } +.editpost { + margin-left: 15px; +} + .wall-item-links-wrapper { float: left; } diff --git a/view/wall_item.tpl b/view/wall_item.tpl index 5cae6b1424..4c2a3fbf42 100644 --- a/view/wall_item.tpl +++ b/view/wall_item.tpl @@ -24,6 +24,7 @@
    $vote $plink + $edpost $drop
    diff --git a/view/wallwall_item.tpl b/view/wallwall_item.tpl index 256320a46d..60383d8854 100644 --- a/view/wallwall_item.tpl +++ b/view/wallwall_item.tpl @@ -28,6 +28,7 @@
    $vote $plink + $edpost $drop
    From ce754bc0e23234f31d723a00ca870966d80375c5 Mon Sep 17 00:00:00 2001 From: Friendika Date: Fri, 18 Mar 2011 01:24:34 -0700 Subject: [PATCH 21/28] edit to display page --- mod/display.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mod/display.php b/mod/display.php index 059952adca..eddaf8aaf7 100644 --- a/mod/display.php +++ b/mod/display.php @@ -217,6 +217,9 @@ function display_content(&$a) { $profile_name = (((strlen($item['author-name'])) && $diff_author) ? $item['author-name'] : $item['name']); $profile_avatar = (((strlen($item['author-avatar'])) && $diff_author) ? $item['author-avatar'] : $item['thumb']); + $edpost = ''; + if((local_user()) && ($item['uid'] == local_user()) && ($item['id'] == $item['parent']) && (intval($item['wall']) == 1)) + $edpost = ''; // Can we use our special contact URL for this author? if(strlen($item['author-link'])) { @@ -276,6 +279,7 @@ function display_content(&$a) { '$owner_photo' => $owner_photo, '$owner_name' => $owner_name, '$plink' => get_plink($item), + '$edpost' => $edpost, '$drop' => $drop, '$vote' => $likebuttons, '$like' => $like, From 7df8e18dd1917de9df359094e0ff486f47e4a08d Mon Sep 17 00:00:00 2001 From: Fabio Comuni Date: Fri, 18 Mar 2011 11:02:42 +0100 Subject: [PATCH 22/28] 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 23/28] 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 24/28] 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 25/28] 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 26/28] 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 27/28] 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 + + + From 43234a667878327a825914070884161c6d57271e Mon Sep 17 00:00:00 2001 From: Friendika Date: Fri, 18 Mar 2011 05:06:16 -0700 Subject: [PATCH 28/28] rework post editing a bit --- mod/item.php | 156 ++++++++++++++++++++++++++------------------------- 1 file changed, 79 insertions(+), 77 deletions(-) diff --git a/mod/item.php b/mod/item.php index 511e268093..6a61163367 100644 --- a/mod/item.php +++ b/mod/item.php @@ -51,7 +51,7 @@ function item_post(&$a) { } $profile_uid = ((x($_POST,'profile_uid')) ? intval($_POST['profile_uid']) : 0); - $post_id = ((x($_POST['post_id'])) ? intval($_POST['post_id']) : 0); + $post_id = ((x($_POST['post_id'])) ? intval($_POST['post_id']) : 0); if(! can_write_wall($a,$profile_uid)) { notice( t('Permission denied.') . EOL) ; @@ -60,6 +60,21 @@ function item_post(&$a) { killme(); } + + // is this an edited post? + + $orig_post = null; + + if($post_id) { + $i = q("SELECT * FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1", + intval($profile_uid), + intval($post_id) + ); + if(! count($i)) + killme(); + $orig_post = $i[0]; + } + $user = null; $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", @@ -68,37 +83,51 @@ function item_post(&$a) { if(count($r)) $user = $r[0]; + if($orig_post) { + $str_group_allow = $orig_post['allow_gid']; + $str_contact_allow = $orig_post['allow_cid']; + $str_group_deny = $orig_post['deny_gid']; + $str_contact_deny = $orig_post['deny_cid']; + $title = $orig_post['title']; + $location = $orig_post['location']; + $coord = $orig_post['coord']; + $verb = $orig_post['verb']; + $emailcc = $orig_post['emailcc']; - $str_group_allow = perms2str($_POST['group_allow']); - $str_contact_allow = perms2str($_POST['contact_allow']); - $str_group_deny = perms2str($_POST['group_deny']); - $str_contact_deny = perms2str($_POST['contact_deny']); - - $private = ((strlen($str_group_allow) || strlen($str_contact_allow) || strlen($str_group_deny) || strlen($str_contact_deny)) ? 1 : 0); - - if(($parent_item) && - (($parent_item['private']) - || strlen($parent_item['allow_cid']) - || strlen($parent_item['allow_gid']) - || strlen($parent_item['deny_cid']) - || strlen($parent_item['deny_gid']) - ) - ) { - $private = 1; + $body = escape_tags(trim($_POST['body'])); + $private = $orig_post['private']; } + else { + $str_group_allow = perms2str($_POST['group_allow']); + $str_contact_allow = perms2str($_POST['contact_allow']); + $str_group_deny = perms2str($_POST['group_deny']); + $str_contact_deny = perms2str($_POST['contact_deny']); + $title = notags(trim($_POST['title'])); + $location = notags(trim($_POST['location'])); + $coord = notags(trim($_POST['coord'])); + $verb = notags(trim($_POST['verb'])); + $emailcc = notags(trim($_POST['emailcc'])); - $title = notags(trim($_POST['title'])); - $body = escape_tags(trim($_POST['body'])); - $location = notags(trim($_POST['location'])); - $coord = notags(trim($_POST['coord'])); - $verb = notags(trim($_POST['verb'])); - $emailcc = notags(trim($_POST['emailcc'])); + $body = escape_tags(trim($_POST['body'])); + $private = ((strlen($str_group_allow) || strlen($str_contact_allow) || strlen($str_group_deny) || strlen($str_contact_deny)) ? 1 : 0); - if(! strlen($body)) { - notice( t('Empty post discarded.') . EOL ); - if(x($_POST,'return')) - goaway($a->get_baseurl() . "/" . $_POST['return'] ); - killme(); + if(($parent_item) && + (($parent_item['private']) + || strlen($parent_item['allow_cid']) + || strlen($parent_item['allow_gid']) + || strlen($parent_item['deny_cid']) + || strlen($parent_item['deny_gid']) + )) { + $private = 1; + } + + + if(! strlen($body)) { + notice( t('Empty post discarded.') . EOL ); + if(x($_POST,'return')) + goaway($a->get_baseurl() . "/" . $_POST['return'] ); + killme(); + } } // get contact info for poster @@ -151,36 +180,6 @@ function item_post(&$a) { } } - // is this an edited post? - - $orig_post = null; - - if($post_id) { - $i = q("SELECT * FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1", - intval($profile_uid), - intval($post_id) - ); - if(! count($i)) - killme(); - $orig_post = $i[0]; - } - - if($orig_post) { - $str_group_allow = $orig_post['allow_gid']; - $str_contact_allow = $orig_post['allow_cid']; - $str_group_deny = $orig_post['deny_gid']; - $str_contact_deny = $orig_post['deny_cid']; - $private = $orig_post['private']; - $title = $orig_post['title']; - $location = $orig_post['location']; - $coord = $orig_post['coord']; - $verb = $orig_post['verb']; - $emailcc = $orig_post['emailcc']; - - $body = escape_tags(trim($_POST['body'])); - } - - /** * * When a photo was uploaded into the message using the (profile wall) ajax @@ -316,30 +315,11 @@ function item_post(&$a) { $str_tags .= ','; $str_tags .= '@[url=' . $alias . ']' . $newname . '[/url]'; } - } } } } - - if($orig_post) { - $r = q("UPDATE `item` SET `body` = '%s', `edited` = '%s' WHERE `id` = %d AND `uid` = %d LIMIT 1", - dbesc($body), - dbesc(datetime_convert()), - intval($post_id), - intval($profile_uid) - ); - - proc_run('php', "include/notifier.php", 'edit_post', "$post_id"); - if((x($_POST,'return')) && strlen($_POST['return'])) { - logger('return: ' . $_POST['return']); - goaway($a->get_baseurl() . "/" . $_POST['return'] ); - } - killme(); - } - - $post_id = 0; $wall = 0; if($post_type === 'wall' || $post_type === 'wall-comment') @@ -392,9 +372,31 @@ function item_post(&$a) { $datarray['parent'] = $parent; $datarray['self'] = $self; + if($orig_post) + $datarray['edit'] = true; call_hooks('post_local',$datarray); + + if($orig_post) { + $r = q("UPDATE `item` SET `body` = '%s', `edited` = '%s' WHERE `id` = %d AND `uid` = %d LIMIT 1", + dbesc($body), + dbesc(datetime_convert()), + intval($post_id), + intval($profile_uid) + ); + + proc_run('php', "include/notifier.php", 'edit_post', "$post_id"); + if((x($_POST,'return')) && strlen($_POST['return'])) { + logger('return: ' . $_POST['return']); + goaway($a->get_baseurl() . "/" . $_POST['return'] ); + } + killme(); + } + else + $post_id = 0; + + $r = q("INSERT INTO `item` (`uid`,`type`,`wall`,`gravity`,`contact-id`,`owner-name`,`owner-link`,`owner-avatar`, `author-name`, `author-link`, `author-avatar`, `created`, `edited`, `changed`, `uri`, `title`, `body`, `location`, `coord`, `tag`, `inform`, `verb`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid`, `private` )