From faa510befca7b5f2f990960987931d7b23b92c32 Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Thu, 13 Jun 2013 08:12:15 -0400 Subject: [PATCH 01/12] move html from paginate functions to template --- boot.php | 6 +- include/text.php | 170 ++++++++++++++++++++---------------- view/templates/paginate.tpl | 13 +++ 3 files changed, 114 insertions(+), 75 deletions(-) create mode 100644 view/templates/paginate.tpl diff --git a/boot.php b/boot.php index bed6caa572..0f3f7f67a4 100644 --- a/boot.php +++ b/boot.php @@ -635,7 +635,11 @@ if(! class_exists('App')) { function set_pager_itemspage($n) { $this->pager['itemspage'] = ((intval($n) > 0) ? intval($n) : 0); $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage']; - + } + + function set_pager_page($n) { + $this->pager['page'] = $n; + $this->pager['start'] = ($this->pager['page'] * $this->pager['itemspage']) - $this->pager['itemspage']; } function init_pagehead() { diff --git a/include/text.php b/include/text.php index 9f8114d926..264dd76a5e 100644 --- a/include/text.php +++ b/include/text.php @@ -27,7 +27,11 @@ function replace_macros($s,$r) { $a = get_app(); $t = $a->template_engine(); - $output = $t->replace_macros($s,$r); + try { + $output = $t->replace_macros($s,$r); + } catch (Exception $e) { + echo "
".__function__.": ".$e->getMessage()."
"; killme(); + } $a->save_timestamp($stamp1, "rendering"); @@ -260,6 +264,84 @@ function hex2bin($s) { }} +if(! function_exists('paginate_data')) { +/** + * Automatica pagination data. + * + * @param App $a App instance + * @param int $count [optional] item count (used with alt pager) + * @return Array data for pagination template + */ +function paginate_data(&$a, $count=null) { + $stripped = preg_replace('/(&page=[0-9]*)/','',$a->query_string); + + $stripped = str_replace('q=','',$stripped); + $stripped = trim($stripped,'/'); + $pagenum = $a->pager['page']; + $url = $a->get_baseurl() . '/' . $stripped; + + + $data = array(); + function _l(&$d, $name, $url, $text, $class="") { + + $d[$name] = array('url'=>$url, 'text'=>$text, 'class'=>$class); + } + + if (!is_null($count)){ + // alt pager + if($a->pager['page']>1) + _l($data, "prev", $url.'&page='.($a->pager['page'] - 1), t('newer')); + if($count>0) + _l($data, "next", $url.'&page='.($a->pager['page'] - 1), t('older')); + } else { + // full pager + if($a->pager['total'] > $a->pager['itemspage']) { + if($a->pager['page'] != 1) + _l($data, "prev", $url.'&page='.($a->pager['page'] - 1), t('prev')); + + _l($data, "first", $url."&page=1", t('first')); + + + $numpages = $a->pager['total'] / $a->pager['itemspage']; + + $numstart = 1; + $numstop = $numpages; + + if($numpages > 14) { + $numstart = (($pagenum > 7) ? ($pagenum - 7) : 1); + $numstop = (($pagenum > ($numpages - 7)) ? $numpages : ($numstart + 14)); + } + + $pages = array(); + + for($i = $numstart; $i <= $numstop; $i++){ + if($i == $a->pager['page']) + _l($pages, $i, "#", $i, "current"); + else + _l($pages, $i, $url."&page=$i", $i, "n"); + } + + if(($a->pager['total'] % $a->pager['itemspage']) != 0) { + if($i == $a->pager['page']) + _l($pages, $i, "#", $i, "current"); + else + _l($pages, $i, $url."&page=$i", $i, "n"); + } + + $data['pages'] = $pages; + + $lastpage = (($numpages > intval($numpages)) ? intval($numpages)+1 : $numpages); + _l($data, "last", $url."&page=$lastpage", t('last')); + + if(($a->pager['total'] - ($a->pager['itemspage'] * $a->pager['page'])) > 0) + _l($data, "next", $url."&page=".($a->pager['page'] + 1), t('next')); + + } + } + return $data; + +}} + if(! function_exists('paginate')) { /** * Automatic pagination. @@ -277,58 +359,11 @@ if(! function_exists('paginate')) { * @return string html for pagination #FIXME remove html */ function paginate(&$a) { - $o = ''; - $stripped = preg_replace('/(&page=[0-9]*)/','',$a->query_string); + + $data = paginate_data($a); + $tpl = get_markup_template("paginate.tpl"); + return replace_macros($tpl, array("pager" => $data)); -// $stripped = preg_replace('/&zrl=(.*?)([\?&]|$)/ism','',$stripped); - - $stripped = str_replace('q=','',$stripped); - $stripped = trim($stripped,'/'); - $pagenum = $a->pager['page']; - $url = $a->get_baseurl() . '/' . $stripped; - - - if($a->pager['total'] > $a->pager['itemspage']) { - $o .= '
'; - if($a->pager['page'] != 1) - $o .= ''."pager['page'] - 1).'">' . t('prev') . ' '; - - $o .= "" . t('first') . " "; - - $numpages = $a->pager['total'] / $a->pager['itemspage']; - - $numstart = 1; - $numstop = $numpages; - - if($numpages > 14) { - $numstart = (($pagenum > 7) ? ($pagenum - 7) : 1); - $numstop = (($pagenum > ($numpages - 7)) ? $numpages : ($numstart + 14)); - } - - for($i = $numstart; $i <= $numstop; $i++){ - if($i == $a->pager['page']) - $o .= ''.(($i < 10) ? ' '.$i : $i); - else - $o .= "".(($i < 10) ? ' '.$i : $i).""; - $o .= ' '; - } - - if(($a->pager['total'] % $a->pager['itemspage']) != 0) { - if($i == $a->pager['page']) - $o .= ''.(($i < 10) ? ' '.$i : $i); - else - $o .= "".(($i < 10) ? ' '.$i : $i).""; - $o .= ' '; - } - - $lastpage = (($numpages > intval($numpages)) ? intval($numpages)+1 : $numpages); - $o .= "" . t('last') . " "; - - if(($a->pager['total'] - ($a->pager['itemspage'] * $a->pager['page'])) > 0) - $o .= ''."pager['page'] + 1).'">' . t('next') . ''; - $o .= '
'."\r\n"; - } - return $o; }} if(! function_exists('alt_pager')) { @@ -339,27 +374,11 @@ if(! function_exists('alt_pager')) { * @return string html for pagination #FIXME remove html */ function alt_pager(&$a, $i) { - $o = ''; - $stripped = preg_replace('/(&page=[0-9]*)/','',$a->query_string); - $stripped = str_replace('q=','',$stripped); - $stripped = trim($stripped,'/'); - $pagenum = $a->pager['page']; - $url = $a->get_baseurl() . '/' . $stripped; - $o .= '
'; - - if($a->pager['page']>1) - $o .= "pager['page'] - 1).'" class="pager_newer">' . t('newer') . ''; - if($i>0) { - if($a->pager['page']>1) - $o .= " - "; - $o .= "pager['page'] + 1).'" class="pager_older">' . t('older') . ''; - } - - - $o .= '
'."\r\n"; - - return $o; + $data = paginate_data($a, $i); + $tpl = get_markup_template("paginate.tpl"); + return replace_macros($tpl, array('pager' => $data)); + }} @@ -564,8 +583,11 @@ function get_markup_template($s, $root = '') { $a = get_app(); $t = $a->template_engine(); - - $template = $t->get_template_file($s, $root); + try { + $template = $t->get_template_file($s, $root); + } catch (Exception $e) { + echo "
".__function__.": ".$e->getMessage()."
"; killme(); + } $a->save_timestamp($stamp1, "file"); diff --git a/view/templates/paginate.tpl b/view/templates/paginate.tpl new file mode 100644 index 0000000000..68dafc4e9e --- /dev/null +++ b/view/templates/paginate.tpl @@ -0,0 +1,13 @@ +
+ {{if $pager}} + {{ if $pager.prev }}{{ $pager.prev.text }}{{ /if }} + + {{ if $pager.first }}{{ $pager.first.text }}{{ /if }} + + {{ foreach $pager.pages as $p }}{{ $p.text }}{{ /foreach }} + + {{ if $pager.last }}{{ $pager.last.text }}{{ /if }} + + {{ if $pager.next }}{{ $pager.next.text }}{{ /if }} + {{/if}} +
\ No newline at end of file From 4b02e11eebf9ba6d7ba6d5621c027a2f3c2e6a14 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 16 Jun 2013 14:49:04 +0200 Subject: [PATCH 02/12] CS: update to the strings --- view/cs/messages.po | 75 +++++++++++++++++++++++---------------------- view/cs/strings.php | 2 +- 2 files changed, 39 insertions(+), 38 deletions(-) diff --git a/view/cs/messages.po b/view/cs/messages.po index 8d430d0627..31663ed95a 100644 --- a/view/cs/messages.po +++ b/view/cs/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" -"POT-Creation-Date: 2013-05-22 00:01-0700\n" -"PO-Revision-Date: 2013-05-24 17:03+0000\n" +"POT-Creation-Date: 2013-06-12 00:01-0700\n" +"PO-Revision-Date: 2013-06-12 18:39+0000\n" "Last-Translator: Michal Šupler \n" "Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n" "MIME-Version: 1.0\n" @@ -401,7 +401,8 @@ msgstr "Editovat Kontakty" msgid "Send PM" msgstr "Poslat soukromou zprávu" -#: ../../include/bbcode.php:210 ../../include/bbcode.php:549 +#: ../../include/bbcode.php:210 ../../include/bbcode.php:550 +#: ../../include/bbcode.php:551 msgid "Image/photo" msgstr "Obrázek/fotografie" @@ -416,7 +417,7 @@ msgstr "%s napsal následujíc msgid "$1 wrote:" msgstr "$1 napsal:" -#: ../../include/bbcode.php:557 ../../include/bbcode.php:558 +#: ../../include/bbcode.php:559 ../../include/bbcode.php:560 msgid "Encrypted content" msgstr "Šifrovaný obsah" @@ -594,7 +595,7 @@ msgstr "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo." msgid "An error occurred during registration. Please try again." msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu." -#: ../../include/user.php:237 ../../include/text.php:1594 +#: ../../include/user.php:237 ../../include/text.php:1596 msgid "default" msgstr "standardní" @@ -926,7 +927,7 @@ msgstr "%1$s je nyní přítel s %2$s" msgid "Sharing notification from Diaspora network" msgstr "Sdílení oznámení ze sítě Diaspora" -#: ../../include/diaspora.php:1874 ../../include/text.php:1860 +#: ../../include/diaspora.php:1874 ../../include/text.php:1862 #: ../../include/conversation.php:126 ../../include/conversation.php:254 #: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151 #: ../../view/theme/diabook/theme.php:464 @@ -1361,112 +1362,112 @@ msgstr "uvolněný" msgid "surprised" msgstr "překvapený" -#: ../../include/text.php:1161 +#: ../../include/text.php:1163 msgid "Monday" msgstr "Pondělí" -#: ../../include/text.php:1161 +#: ../../include/text.php:1163 msgid "Tuesday" msgstr "Úterý" -#: ../../include/text.php:1161 +#: ../../include/text.php:1163 msgid "Wednesday" msgstr "Středa" -#: ../../include/text.php:1161 +#: ../../include/text.php:1163 msgid "Thursday" msgstr "Čtvrtek" -#: ../../include/text.php:1161 +#: ../../include/text.php:1163 msgid "Friday" msgstr "Pátek" -#: ../../include/text.php:1161 +#: ../../include/text.php:1163 msgid "Saturday" msgstr "Sobota" -#: ../../include/text.php:1161 +#: ../../include/text.php:1163 msgid "Sunday" msgstr "Neděle" -#: ../../include/text.php:1165 +#: ../../include/text.php:1167 msgid "January" msgstr "Ledna" -#: ../../include/text.php:1165 +#: ../../include/text.php:1167 msgid "February" msgstr "Února" -#: ../../include/text.php:1165 +#: ../../include/text.php:1167 msgid "March" msgstr "Března" -#: ../../include/text.php:1165 +#: ../../include/text.php:1167 msgid "April" msgstr "Dubna" -#: ../../include/text.php:1165 +#: ../../include/text.php:1167 msgid "May" msgstr "Května" -#: ../../include/text.php:1165 +#: ../../include/text.php:1167 msgid "June" msgstr "Června" -#: ../../include/text.php:1165 +#: ../../include/text.php:1167 msgid "July" msgstr "Července" -#: ../../include/text.php:1165 +#: ../../include/text.php:1167 msgid "August" msgstr "Srpna" -#: ../../include/text.php:1165 +#: ../../include/text.php:1167 msgid "September" msgstr "Září" -#: ../../include/text.php:1165 +#: ../../include/text.php:1167 msgid "October" msgstr "Října" -#: ../../include/text.php:1165 +#: ../../include/text.php:1167 msgid "November" msgstr "Listopadu" -#: ../../include/text.php:1165 +#: ../../include/text.php:1167 msgid "December" msgstr "Prosinec" -#: ../../include/text.php:1321 ../../mod/videos.php:301 +#: ../../include/text.php:1323 ../../mod/videos.php:301 msgid "View Video" msgstr "Zobrazit video" -#: ../../include/text.php:1353 +#: ../../include/text.php:1355 msgid "bytes" msgstr "bytů" -#: ../../include/text.php:1377 ../../include/text.php:1389 +#: ../../include/text.php:1379 ../../include/text.php:1391 msgid "Click to open/close" msgstr "Klikněte pro otevření/zavření" -#: ../../include/text.php:1551 ../../mod/events.php:335 +#: ../../include/text.php:1553 ../../mod/events.php:335 msgid "link to source" msgstr "odkaz na zdroj" -#: ../../include/text.php:1606 +#: ../../include/text.php:1608 msgid "Select an alternate language" msgstr "Vyběr alternativního jazyka" -#: ../../include/text.php:1858 ../../include/conversation.php:118 +#: ../../include/text.php:1860 ../../include/conversation.php:118 #: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456 msgid "event" msgstr "událost" -#: ../../include/text.php:1862 +#: ../../include/text.php:1864 msgid "activity" msgstr "aktivita" -#: ../../include/text.php:1864 ../../mod/content.php:628 +#: ../../include/text.php:1866 ../../mod/content.php:628 #: ../../object/Item.php:364 ../../object/Item.php:377 msgid "comment" msgid_plural "comments" @@ -1474,11 +1475,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "komentář" -#: ../../include/text.php:1865 +#: ../../include/text.php:1867 msgid "post" msgstr "příspěvek" -#: ../../include/text.php:2020 +#: ../../include/text.php:2022 msgid "Item filed" msgstr "Položka vyplněna" @@ -6367,8 +6368,8 @@ msgid "Tips for New Members" msgstr "Tipy pro nové členy" #: ../../mod/install.php:117 -msgid "Friendica Social Communications Server - Setup" -msgstr "Friendica Sociální komunkační server - Nastavení" +msgid "Friendica Communications Server - Setup" +msgstr "Friendica Komunikační server - Nastavení" #: ../../mod/install.php:123 msgid "Could not connect to database." diff --git a/view/cs/strings.php b/view/cs/strings.php index cf6fee93ca..6d6251830e 100644 --- a/view/cs/strings.php +++ b/view/cs/strings.php @@ -1489,7 +1489,7 @@ $a->strings["Go to the Help Section"] = "Navštivte sekci nápovědy"; $a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Na stránkách Nápověda naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací."; $a->strings["Requested profile is not available."] = "Požadovaný profil není k dispozici."; $a->strings["Tips for New Members"] = "Tipy pro nové členy"; -$a->strings["Friendica Social Communications Server - Setup"] = "Friendica Sociální komunkační server - Nastavení"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica Komunikační server - Nastavení"; $a->strings["Could not connect to database."] = "Nelze se připojit k databázi."; $a->strings["Could not create table."] = "Nelze vytvořit tabulku."; $a->strings["Your Friendica site database has been installed."] = "Vaše databáze Friendica byla nainstalována."; From 49f33c8841368c0b59b0e6204d93f640d3a41e4d Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 16 Jun 2013 14:50:22 +0200 Subject: [PATCH 03/12] NB_NO: update to the strings --- view/nb-no/messages.po | 14838 +++++++++++++------------------ view/nb-no/strings.php | 3296 +++---- view/nb-no/update_fail_eml.tpl | 2 +- 3 files changed, 7581 insertions(+), 10555 deletions(-) diff --git a/view/nb-no/messages.po b/view/nb-no/messages.po index e1547fad84..630bbb9fb0 100644 --- a/view/nb-no/messages.po +++ b/view/nb-no/messages.po @@ -1,15 +1,15 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010, 2011 the Friendica Project +# Copyright (C) 2010, 2011, 2012, 2013 the Friendica Project # This file is distributed under the same license as the Friendica package. # # Translators: -# Haakon Meland Eriksen , 2012. +# Haakon Meland Eriksen , 2012-2013 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" -"POT-Creation-Date: 2012-12-03 10:00-0800\n" -"PO-Revision-Date: 2012-12-03 17:17+0000\n" +"POT-Creation-Date: 2013-06-12 00:01-0700\n" +"PO-Revision-Date: 2013-06-11 17:12+0000\n" "Last-Translator: Haakon Meland Eriksen \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/friendica/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -18,7838 +18,22 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Innlegg vellykket." - -#: ../../mod/update_notes.php:41 ../../mod/update_community.php:18 -#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41 -#: ../../mod/update_display.php:22 -msgid "[Embedded content - reload page to view]" -msgstr "[Innebygget innhold - hent siden på nytt for å se det]" - -#: ../../mod/crepair.php:102 -msgid "Contact settings applied." -msgstr "Kontaktinnstillinger i bruk." - -#: ../../mod/crepair.php:104 -msgid "Contact update failed." -msgstr "Kontaktoppdatering mislyktes." - -#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55 -#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:995 -#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135 -#: ../../mod/notifications.php:66 ../../mod/contacts.php:147 -#: ../../mod/settings.php:91 ../../mod/settings.php:541 -#: ../../mod/settings.php:546 ../../mod/manage.php:90 ../../mod/network.php:6 -#: ../../mod/notes.php:20 ../../mod/uimport.php:23 ../../mod/wallmessage.php:9 -#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 -#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33 -#: ../../mod/group.php:19 ../../mod/viewcontacts.php:22 -#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:139 -#: ../../mod/item.php:155 ../../mod/mood.php:114 -#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 -#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 -#: ../../mod/message.php:38 ../../mod/message.php:172 -#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25 -#: ../../mod/wall_upload.php:66 ../../mod/follow.php:9 -#: ../../mod/display.php:165 ../../mod/profiles.php:7 -#: ../../mod/profiles.php:431 ../../mod/delegate.php:6 -#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81 -#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510 -#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159 -#: ../../addon/fbpost/fbpost.php:165 -#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3977 -#: ../../index.php:333 ../../addon.old/facebook/facebook.php:510 -#: ../../addon.old/facebook/facebook.php:516 -#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165 -#: ../../addon.old/dav/friendica/layout.fnk.php:354 -msgid "Permission denied." -msgstr "Ingen tilgang." - -#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118 -msgid "Contact not found." -msgstr "Kontakt ikke funnet." - -#: ../../mod/crepair.php:135 -msgid "Repair Contact Settings" -msgstr "Reparer kontaktinnstillinger" - -#: ../../mod/crepair.php:137 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ADVARSEL: Dette er meget avansert og hvis du skriver feil informasjon her, så kan kommunikasjonen med denne kontakten slutte å virke." - -#: ../../mod/crepair.php:138 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Vennligst bruk Tilbake-knappen i nettleseren din hvis du er usikker på hva du bør gjøre på denne siden." - -#: ../../mod/crepair.php:144 -msgid "Return to contact editor" -msgstr "" - -#: ../../mod/crepair.php:148 ../../mod/settings.php:561 -#: ../../mod/settings.php:587 ../../mod/admin.php:695 ../../mod/admin.php:705 -msgid "Name" -msgstr "Navn" - -#: ../../mod/crepair.php:149 -msgid "Account Nickname" -msgstr "Konto Kallenavn" - -#: ../../mod/crepair.php:150 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Merkelappnavn - overstyrer Navn/Kallenavn" - -#: ../../mod/crepair.php:151 -msgid "Account URL" -msgstr "Konto URL" - -#: ../../mod/crepair.php:152 -msgid "Friend Request URL" -msgstr "Venneforespørsel URL" - -#: ../../mod/crepair.php:153 -msgid "Friend Confirm URL" -msgstr "Vennebekreftelse URL" - -#: ../../mod/crepair.php:154 -msgid "Notification Endpoint URL" -msgstr "Endepunkt URL for beskjed" - -#: ../../mod/crepair.php:155 -msgid "Poll/Feed URL" -msgstr "Poll/Feed URL" - -#: ../../mod/crepair.php:156 -msgid "New photo from this URL" -msgstr "Nytt bilde fra denne URL-en" - -#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107 -#: ../../mod/events.php:455 ../../mod/photos.php:1028 -#: ../../mod/photos.php:1100 ../../mod/photos.php:1363 -#: ../../mod/photos.php:1403 ../../mod/photos.php:1447 -#: ../../mod/photos.php:1519 ../../mod/install.php:246 -#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199 -#: ../../mod/content.php:693 ../../mod/contacts.php:352 -#: ../../mod/settings.php:559 ../../mod/settings.php:669 -#: ../../mod/settings.php:738 ../../mod/settings.php:810 -#: ../../mod/settings.php:1017 ../../mod/group.php:85 ../../mod/mood.php:137 -#: ../../mod/message.php:301 ../../mod/message.php:487 ../../mod/admin.php:445 -#: ../../mod/admin.php:692 ../../mod/admin.php:829 ../../mod/admin.php:1028 -#: ../../mod/admin.php:1115 ../../mod/profiles.php:604 -#: ../../mod/invite.php:119 ../../addon/fromgplus/fromgplus.php:40 -#: ../../addon/facebook/facebook.php:619 -#: ../../addon/snautofollow/snautofollow.php:64 -#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76 -#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88 -#: ../../addon/page/page.php:211 ../../addon/planets/planets.php:158 -#: ../../addon/uhremotestorage/uhremotestorage.php:89 -#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93 -#: ../../addon/remote_permissions/remote_permissions.php:47 -#: ../../addon/remote_permissions/remote_permissions.php:195 -#: ../../addon/startpage/startpage.php:92 -#: ../../addon/geonames/geonames.php:187 -#: ../../addon/forumlist/forumlist.php:175 -#: ../../addon/impressum/impressum.php:83 -#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57 -#: ../../addon/qcomment/qcomment.php:61 -#: ../../addon/openstreetmap/openstreetmap.php:70 -#: ../../addon/group_text/group_text.php:84 -#: ../../addon/libravatar/libravatar.php:99 -#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:87 -#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84 -#: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95 -#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93 -#: ../../addon/jappixmini/jappixmini.php:307 -#: ../../addon/statusnet/statusnet.php:278 -#: ../../addon/statusnet/statusnet.php:292 -#: ../../addon/statusnet/statusnet.php:318 -#: ../../addon/statusnet/statusnet.php:325 -#: ../../addon/statusnet/statusnet.php:353 -#: ../../addon/statusnet/statusnet.php:685 ../../addon/tumblr/tumblr.php:90 -#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88 -#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48 -#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180 -#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:506 -#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77 -#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103 -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/diabook/theme.php:642 -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 -#: ../../object/Item.php:570 ../../addon.old/fromgplus/fromgplus.php:40 -#: ../../addon.old/facebook/facebook.php:619 -#: ../../addon.old/snautofollow/snautofollow.php:64 -#: ../../addon.old/bg/bg.php:90 ../../addon.old/fbpost/fbpost.php:226 -#: ../../addon.old/yourls/yourls.php:76 ../../addon.old/ljpost/ljpost.php:93 -#: ../../addon.old/nsfw/nsfw.php:88 ../../addon.old/page/page.php:211 -#: ../../addon.old/planets/planets.php:158 -#: ../../addon.old/uhremotestorage/uhremotestorage.php:89 -#: ../../addon.old/randplace/randplace.php:177 -#: ../../addon.old/dwpost/dwpost.php:93 ../../addon.old/drpost/drpost.php:110 -#: ../../addon.old/startpage/startpage.php:92 -#: ../../addon.old/geonames/geonames.php:187 -#: ../../addon.old/oembed.old/oembed.php:41 -#: ../../addon.old/forumlist/forumlist.php:175 -#: ../../addon.old/impressum/impressum.php:83 -#: ../../addon.old/notimeline/notimeline.php:64 -#: ../../addon.old/blockem/blockem.php:57 -#: ../../addon.old/qcomment/qcomment.php:61 -#: ../../addon.old/openstreetmap/openstreetmap.php:70 -#: ../../addon.old/group_text/group_text.php:84 -#: ../../addon.old/libravatar/libravatar.php:99 -#: ../../addon.old/libertree/libertree.php:90 -#: ../../addon.old/altpager/altpager.php:87 -#: ../../addon.old/mathjax/mathjax.php:42 -#: ../../addon.old/editplain/editplain.php:84 -#: ../../addon.old/blackout/blackout.php:98 -#: ../../addon.old/gravatar/gravatar.php:95 -#: ../../addon.old/pageheader/pageheader.php:55 -#: ../../addon.old/ijpost/ijpost.php:93 -#: ../../addon.old/jappixmini/jappixmini.php:307 -#: ../../addon.old/statusnet/statusnet.php:278 -#: ../../addon.old/statusnet/statusnet.php:292 -#: ../../addon.old/statusnet/statusnet.php:318 -#: ../../addon.old/statusnet/statusnet.php:325 -#: ../../addon.old/statusnet/statusnet.php:353 -#: ../../addon.old/statusnet/statusnet.php:576 -#: ../../addon.old/tumblr/tumblr.php:90 -#: ../../addon.old/numfriends/numfriends.php:85 -#: ../../addon.old/gnot/gnot.php:88 ../../addon.old/wppost/wppost.php:110 -#: ../../addon.old/showmore/showmore.php:48 ../../addon.old/piwik/piwik.php:89 -#: ../../addon.old/twitter/twitter.php:180 -#: ../../addon.old/twitter/twitter.php:209 -#: ../../addon.old/twitter/twitter.php:394 ../../addon.old/irc/irc.php:55 -#: ../../addon.old/fromapp/fromapp.php:77 -#: ../../addon.old/blogger/blogger.php:102 -#: ../../addon.old/posterous/posterous.php:103 -msgid "Submit" -msgstr "Lagre" - -#: ../../mod/help.php:79 -msgid "Help:" -msgstr "Hjelp:" - -#: ../../mod/help.php:84 ../../addon/dav/friendica/layout.fnk.php:225 -#: ../../include/nav.php:86 ../../addon.old/dav/friendica/layout.fnk.php:225 -msgid "Help" -msgstr "Hjelp" - -#: ../../mod/help.php:90 ../../index.php:218 -msgid "Not Found" -msgstr "Ikke funnet" - -#: ../../mod/help.php:93 ../../index.php:221 -msgid "Page not found." -msgstr "Fant ikke siden." - -#: ../../mod/wall_attach.php:69 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Filstørrelsen er større enn begrensning på %d" - -#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 -msgid "File upload failed." -msgstr "Opplasting av filen mislyktes." - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Venneforslag sendt." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Foreslå venner" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Foreslå en venn for %s" - -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "" - -#: ../../mod/events.php:279 -msgid "l, F j" -msgstr "" - -#: ../../mod/events.php:301 -msgid "Edit event" -msgstr "Rediger hendelse" - -#: ../../mod/events.php:323 ../../include/text.php:1190 -msgid "link to source" -msgstr "lenke til kilde" - -#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:91 -#: ../../include/nav.php:52 ../../boot.php:1748 -msgid "Events" -msgstr "Hendelser" - -#: ../../mod/events.php:348 -msgid "Create New Event" -msgstr "Lag ny hendelse" - -#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263 -#: ../../addon.old/dav/friendica/layout.fnk.php:263 -msgid "Previous" -msgstr "Forrige" - -#: ../../mod/events.php:350 ../../mod/install.php:205 -#: ../../addon/dav/friendica/layout.fnk.php:266 -#: ../../addon.old/dav/friendica/layout.fnk.php:266 -msgid "Next" -msgstr "Neste" - -#: ../../mod/events.php:423 -msgid "hour:minute" -msgstr "time:minutt" - -#: ../../mod/events.php:433 -msgid "Event details" -msgstr "Hendelsesdetaljer" - -#: ../../mod/events.php:434 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "" - -#: ../../mod/events.php:436 -msgid "Event Starts:" -msgstr "Hendelsen starter:" - -#: ../../mod/events.php:436 ../../mod/events.php:450 -msgid "Required" -msgstr "" - -#: ../../mod/events.php:439 -msgid "Finish date/time is not known or not relevant" -msgstr "Avslutningsdato/-tid er ukjent eller ikke relevant" - -#: ../../mod/events.php:441 -msgid "Event Finishes:" -msgstr "Hendelsen slutter:" - -#: ../../mod/events.php:444 -msgid "Adjust for viewer timezone" -msgstr "Tilpass til iakttakerens tidssone" - -#: ../../mod/events.php:446 -msgid "Description:" -msgstr "Beskrivelse:" - -#: ../../mod/events.php:448 ../../mod/directory.php:134 -#: ../../addon/forumdirectory/forumdirectory.php:156 -#: ../../include/event.php:40 ../../include/bb2diaspora.php:412 -#: ../../boot.php:1278 -msgid "Location:" -msgstr "Plassering:" - -#: ../../mod/events.php:450 -msgid "Title:" -msgstr "" - -#: ../../mod/events.php:452 -msgid "Share this event" -msgstr "Del denne hendelsen" - -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:145 -#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:560 -#: ../../mod/settings.php:586 ../../addon/js_upload/js_upload.php:45 -#: ../../include/conversation.php:1009 -#: ../../addon.old/js_upload/js_upload.php:45 -msgid "Cancel" -msgstr "Avbryt" - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Fjernet tag" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Fjern tag" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Velg en tag å fjerne:" - -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 -#: ../../addon/dav/common/wdcal_edit.inc.php:468 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:468 -msgid "Remove" -msgstr "Slett" - -#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Tillat forbindelse til program" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Gå tilbake til din app og legg inn denne sikkerhetskoden:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Vennligst logg inn for å fortsette." - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vil du tillate at dette programmet får tilgang til dine innlegg og kontakter, og/eller kan opprette nye innlegg for deg?" - -#: ../../mod/api.php:105 ../../mod/dfrn_request.php:835 -#: ../../mod/settings.php:933 ../../mod/settings.php:939 -#: ../../mod/settings.php:947 ../../mod/settings.php:951 -#: ../../mod/settings.php:956 ../../mod/settings.php:962 -#: ../../mod/settings.php:968 ../../mod/settings.php:974 -#: ../../mod/settings.php:1004 ../../mod/settings.php:1005 -#: ../../mod/settings.php:1006 ../../mod/settings.php:1007 -#: ../../mod/settings.php:1008 ../../mod/register.php:237 -#: ../../mod/profiles.php:584 -msgid "Yes" -msgstr "Ja" - -#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836 -#: ../../mod/settings.php:933 ../../mod/settings.php:939 -#: ../../mod/settings.php:947 ../../mod/settings.php:951 -#: ../../mod/settings.php:956 ../../mod/settings.php:962 -#: ../../mod/settings.php:968 ../../mod/settings.php:974 -#: ../../mod/settings.php:1004 ../../mod/settings.php:1005 -#: ../../mod/settings.php:1006 ../../mod/settings.php:1007 -#: ../../mod/settings.php:1008 ../../mod/register.php:238 -#: ../../mod/profiles.php:585 -msgid "No" -msgstr "Nei" - -#: ../../mod/photos.php:51 ../../boot.php:1741 -msgid "Photo Albums" -msgstr "Fotoalbum" - -#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1009 -#: ../../mod/photos.php:1092 ../../mod/photos.php:1107 -#: ../../mod/photos.php:1562 ../../mod/photos.php:1574 -#: ../../addon/communityhome/communityhome.php:110 -#: ../../view/theme/diabook/theme.php:492 -#: ../../addon.old/communityhome/communityhome.php:110 -msgid "Contact Photos" -msgstr "Kontaktbilder" - -#: ../../mod/photos.php:66 ../../mod/photos.php:1123 ../../mod/photos.php:1612 -msgid "Upload New Photos" -msgstr "Last opp nye bilder" - -#: ../../mod/photos.php:79 ../../mod/settings.php:23 -msgid "everybody" -msgstr "alle" - -#: ../../mod/photos.php:143 -msgid "Contact information unavailable" -msgstr "Kontaktinformasjon utilgjengelig" - -#: ../../mod/photos.php:154 ../../mod/photos.php:676 ../../mod/photos.php:1092 -#: ../../mod/photos.php:1107 ../../mod/profile_photo.php:74 -#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 -#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 -#: ../../mod/profile_photo.php:305 -#: ../../addon/communityhome/communityhome.php:111 -#: ../../view/theme/diabook/theme.php:493 ../../include/user.php:324 -#: ../../include/user.php:331 ../../include/user.php:338 -#: ../../addon.old/communityhome/communityhome.php:111 -msgid "Profile Photos" -msgstr "Profilbilder" - -#: ../../mod/photos.php:164 -msgid "Album not found." -msgstr "Album ble ikke funnet." - -#: ../../mod/photos.php:182 ../../mod/photos.php:1101 -msgid "Delete Album" -msgstr "Slett album" - -#: ../../mod/photos.php:245 ../../mod/photos.php:1364 -msgid "Delete Photo" -msgstr "Slett bilde" - -#: ../../mod/photos.php:607 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "" - -#: ../../mod/photos.php:607 -msgid "a photo" -msgstr "" - -#: ../../mod/photos.php:712 ../../addon/js_upload/js_upload.php:321 -#: ../../addon.old/js_upload/js_upload.php:315 -msgid "Image exceeds size limit of " -msgstr "Bilde overstiger størrelsesbegrensningen på " - -#: ../../mod/photos.php:720 -msgid "Image file is empty." -msgstr "Bildefilen er tom." - -#: ../../mod/photos.php:752 ../../mod/profile_photo.php:153 -#: ../../mod/wall_upload.php:112 -msgid "Unable to process image." -msgstr "Ikke i stand til å behandle bildet." - -#: ../../mod/photos.php:779 ../../mod/profile_photo.php:301 -#: ../../mod/wall_upload.php:138 -msgid "Image upload failed." -msgstr "Mislyktes med å laste opp bilde." - -#: ../../mod/photos.php:865 ../../mod/community.php:18 -#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17 -#: ../../mod/display.php:7 ../../mod/search.php:89 ../../mod/directory.php:31 -#: ../../addon/forumdirectory/forumdirectory.php:53 -msgid "Public access denied." -msgstr "Offentlig tilgang ikke tillatt." - -#: ../../mod/photos.php:875 -msgid "No photos selected" -msgstr "Ingen bilder er valgt" - -#: ../../mod/photos.php:976 -msgid "Access to this item is restricted." -msgstr "Tilgang til dette elementet er begrenset." - -#: ../../mod/photos.php:1037 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "" - -#: ../../mod/photos.php:1043 -msgid "Upload Photos" -msgstr "Last opp bilder" - -#: ../../mod/photos.php:1047 ../../mod/photos.php:1096 -msgid "New album name: " -msgstr "Nytt albumnavn:" - -#: ../../mod/photos.php:1048 -msgid "or existing album name: " -msgstr "eller eksisterende albumnavn:" - -#: ../../mod/photos.php:1049 -msgid "Do not show a status post for this upload" -msgstr "Ikke vis statusoppdatering for denne opplastingen" - -#: ../../mod/photos.php:1051 ../../mod/photos.php:1359 -msgid "Permissions" -msgstr "Tillatelser" - -#: ../../mod/photos.php:1111 -msgid "Edit Album" -msgstr "Endre album" - -#: ../../mod/photos.php:1117 -msgid "Show Newest First" -msgstr "" - -#: ../../mod/photos.php:1119 -msgid "Show Oldest First" -msgstr "" - -#: ../../mod/photos.php:1143 ../../mod/photos.php:1595 -msgid "View Photo" -msgstr "Vis bilde" - -#: ../../mod/photos.php:1178 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Tilgang nektet. Tilgang til dette elementet kan være begrenset." - -#: ../../mod/photos.php:1180 -msgid "Photo not available" -msgstr "Bilde ikke tilgjengelig" - -#: ../../mod/photos.php:1236 -msgid "View photo" -msgstr "Vis foto" - -#: ../../mod/photos.php:1236 -msgid "Edit photo" -msgstr "Endre bilde" - -#: ../../mod/photos.php:1237 -msgid "Use as profile photo" -msgstr "Bruk som profilbilde" - -#: ../../mod/photos.php:1243 ../../mod/content.php:603 -#: ../../object/Item.php:104 -msgid "Private Message" -msgstr "Privat melding" - -#: ../../mod/photos.php:1262 -msgid "View Full Size" -msgstr "Vis i full størrelse" - -#: ../../mod/photos.php:1336 -msgid "Tags: " -msgstr "Tagger:" - -#: ../../mod/photos.php:1339 -msgid "[Remove any tag]" -msgstr "[Fjern en tag]" - -#: ../../mod/photos.php:1349 -msgid "Rotate CW (right)" -msgstr "" - -#: ../../mod/photos.php:1350 -msgid "Rotate CCW (left)" -msgstr "" - -#: ../../mod/photos.php:1352 -msgid "New album name" -msgstr "Nytt albumnavn" - -#: ../../mod/photos.php:1355 -msgid "Caption" -msgstr "Overskrift" - -#: ../../mod/photos.php:1357 -msgid "Add a Tag" -msgstr "Legg til tag" - -#: ../../mod/photos.php:1361 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: ../../mod/photos.php:1381 ../../mod/content.php:667 -#: ../../object/Item.php:202 -msgid "I like this (toggle)" -msgstr "Jeg liker dette (skru på/av)" - -#: ../../mod/photos.php:1382 ../../mod/content.php:668 -#: ../../object/Item.php:203 -msgid "I don't like this (toggle)" -msgstr "Jeg liker ikke dette (skru på/av)" - -#: ../../mod/photos.php:1383 ../../include/conversation.php:969 -msgid "Share" -msgstr "Del" - -#: ../../mod/photos.php:1384 ../../mod/editpost.php:121 -#: ../../mod/content.php:482 ../../mod/content.php:848 -#: ../../mod/wallmessage.php:152 ../../mod/message.php:300 -#: ../../mod/message.php:488 ../../include/conversation.php:624 -#: ../../include/conversation.php:988 ../../object/Item.php:269 -msgid "Please wait" -msgstr "Vennligst vent" - -#: ../../mod/photos.php:1400 ../../mod/photos.php:1444 -#: ../../mod/photos.php:1516 ../../mod/content.php:690 -#: ../../object/Item.php:567 -msgid "This is you" -msgstr "Dette er deg" - -#: ../../mod/photos.php:1402 ../../mod/photos.php:1446 -#: ../../mod/photos.php:1518 ../../mod/content.php:692 ../../boot.php:608 -#: ../../object/Item.php:266 ../../object/Item.php:569 -msgid "Comment" -msgstr "Kommentar" - -#: ../../mod/photos.php:1404 ../../mod/photos.php:1448 -#: ../../mod/photos.php:1520 ../../mod/editpost.php:142 -#: ../../mod/content.php:702 ../../include/conversation.php:1006 -#: ../../object/Item.php:579 -msgid "Preview" -msgstr "" - -#: ../../mod/photos.php:1488 ../../mod/content.php:439 -#: ../../mod/content.php:724 ../../mod/settings.php:622 -#: ../../mod/group.php:168 ../../mod/admin.php:699 -#: ../../include/conversation.php:569 ../../object/Item.php:118 -msgid "Delete" -msgstr "Slett" - -#: ../../mod/photos.php:1601 -msgid "View Album" -msgstr "Vis album" - -#: ../../mod/photos.php:1610 -msgid "Recent Photos" -msgstr "Nye bilder" - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Ikke tilgjengelig." - -#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93 -#: ../../include/nav.php:101 -msgid "Community" -msgstr "Fellesskap" - -#: ../../mod/community.php:61 ../../mod/community.php:86 -#: ../../mod/search.php:162 ../../mod/search.php:188 -msgid "No results." -msgstr "Fant ikke noe." - -#: ../../mod/friendica.php:55 -msgid "This is Friendica, version" -msgstr "" - -#: ../../mod/friendica.php:56 -msgid "running at web location" -msgstr "kjører på web-plassering" - -#: ../../mod/friendica.php:58 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "" - -#: ../../mod/friendica.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Feilrapporter og problemer: vennligst besøk" - -#: ../../mod/friendica.php:61 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "" - -#: ../../mod/friendica.php:75 -msgid "Installed plugins/addons/apps:" -msgstr "" - -#: ../../mod/friendica.php:88 -msgid "No installed plugins/addons/apps" -msgstr "Ingen installerte plugins/tillegg/apper" - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Fant ikke elementet" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Endre innlegg" - -#: ../../mod/editpost.php:91 ../../include/conversation.php:955 -msgid "Post to Email" -msgstr "Innlegg til e-post" - -#: ../../mod/editpost.php:106 ../../mod/content.php:711 -#: ../../mod/settings.php:621 ../../object/Item.php:108 -msgid "Edit" -msgstr "Endre" - -#: ../../mod/editpost.php:107 ../../mod/wallmessage.php:150 -#: ../../mod/message.php:298 ../../mod/message.php:485 -#: ../../include/conversation.php:970 -msgid "Upload photo" -msgstr "Last opp bilde" - -#: ../../mod/editpost.php:108 ../../include/conversation.php:971 -msgid "upload photo" -msgstr "" - -#: ../../mod/editpost.php:109 ../../include/conversation.php:972 -msgid "Attach file" -msgstr "Legg ved fil" - -#: ../../mod/editpost.php:110 ../../include/conversation.php:973 -msgid "attach file" -msgstr "" - -#: ../../mod/editpost.php:111 ../../mod/wallmessage.php:151 -#: ../../mod/message.php:299 ../../mod/message.php:486 -#: ../../include/conversation.php:974 -msgid "Insert web link" -msgstr "Sett inn web-adresse" - -#: ../../mod/editpost.php:112 ../../include/conversation.php:975 -msgid "web link" -msgstr "" - -#: ../../mod/editpost.php:113 ../../include/conversation.php:976 -msgid "Insert video link" -msgstr "" - -#: ../../mod/editpost.php:114 ../../include/conversation.php:977 -msgid "video link" -msgstr "" - -#: ../../mod/editpost.php:115 ../../include/conversation.php:978 -msgid "Insert audio link" -msgstr "" - -#: ../../mod/editpost.php:116 ../../include/conversation.php:979 -msgid "audio link" -msgstr "" - -#: ../../mod/editpost.php:117 ../../include/conversation.php:980 -msgid "Set your location" -msgstr "Angi din plassering" - -#: ../../mod/editpost.php:118 ../../include/conversation.php:981 -msgid "set location" -msgstr "" - -#: ../../mod/editpost.php:119 ../../include/conversation.php:982 -msgid "Clear browser location" -msgstr "Fjern nettleserplassering" - -#: ../../mod/editpost.php:120 ../../include/conversation.php:983 -msgid "clear location" -msgstr "" - -#: ../../mod/editpost.php:122 ../../include/conversation.php:989 -msgid "Permission settings" -msgstr "Tillatelser" - -#: ../../mod/editpost.php:130 ../../include/conversation.php:998 -msgid "CC: email addresses" -msgstr "Kopi: e-postadresser" - -#: ../../mod/editpost.php:131 ../../include/conversation.php:999 -msgid "Public post" -msgstr "Offentlig innlegg" - -#: ../../mod/editpost.php:134 ../../include/conversation.php:985 -msgid "Set title" -msgstr "Lagre tittel" - -#: ../../mod/editpost.php:136 ../../include/conversation.php:987 -msgid "Categories (comma-separated list)" -msgstr "" - -#: ../../mod/editpost.php:137 ../../include/conversation.php:1001 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Eksempel: ola@example.com, kari@example.com" - -#: ../../mod/dfrn_request.php:93 -msgid "This introduction has already been accepted." -msgstr "Denne introduksjonen har allerede blitt akseptert." - -#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profilstedet er ikke gyldig og inneholder ikke profilinformasjon." - -#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Advarsel: profilstedet har ikke identifiserbart eiernavn." - -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:519 -msgid "Warning: profile location has no profile photo." -msgstr "Advarsel: profilstedet har ikke noe profilbilde." - -#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522 -#, 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] "one: %d nødvendig parameter ble ikke funnet på angitt sted" -msgstr[1] "other: %d nødvendige parametre ble ikke funnet på angitt sted" - -#: ../../mod/dfrn_request.php:170 -msgid "Introduction complete." -msgstr "Introduksjon ferdig." - -#: ../../mod/dfrn_request.php:209 -msgid "Unrecoverable protocol error." -msgstr "Uopprettelig protokollfeil." - -#: ../../mod/dfrn_request.php:237 -msgid "Profile unavailable." -msgstr "Profil utilgjengelig." - -#: ../../mod/dfrn_request.php:262 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s har mottatt for mange kontaktforespørsler idag." - -#: ../../mod/dfrn_request.php:263 -msgid "Spam protection measures have been invoked." -msgstr "Tiltak mot søppelpost har blitt iverksatt." - -#: ../../mod/dfrn_request.php:264 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Venner anbefales å prøve igjen om 24 timer." - -#: ../../mod/dfrn_request.php:326 -msgid "Invalid locator" -msgstr "Ugyldig stedsangivelse" - -#: ../../mod/dfrn_request.php:335 -msgid "Invalid email address." -msgstr "" - -#: ../../mod/dfrn_request.php:361 -msgid "This account has not been configured for email. Request failed." -msgstr "Denne kontoen er ikke konfigurert for e-post. Forespørsel mislyktes." - -#: ../../mod/dfrn_request.php:457 -msgid "Unable to resolve your name at the provided location." -msgstr "Ikke i stand til å avgjøre navnet ditt hos det oppgitte stedet." - -#: ../../mod/dfrn_request.php:470 -msgid "You have already introduced yourself here." -msgstr "Du har allerede introdusert deg selv her." - -#: ../../mod/dfrn_request.php:474 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Du er visst allerede venn med %s." - -#: ../../mod/dfrn_request.php:495 -msgid "Invalid profile URL." -msgstr "Ugyldig profil-URL." - -#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Underkjent profil-URL." - -#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:124 -msgid "Failed to update contact record." -msgstr "Mislyktes med å oppdatere kontaktposten." - -#: ../../mod/dfrn_request.php:591 -msgid "Your introduction has been sent." -msgstr "Din introduksjon er sendt." - -#: ../../mod/dfrn_request.php:644 -msgid "Please login to confirm introduction." -msgstr "Vennligst logg inn for å bekrefte introduksjonen." - -#: ../../mod/dfrn_request.php:658 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Feil identitet er logget inn for øyeblikket. Vennligst logg inn i denne profilen." - -#: ../../mod/dfrn_request.php:669 -msgid "Hide this contact" -msgstr "" - -#: ../../mod/dfrn_request.php:672 -#, php-format -msgid "Welcome home %s." -msgstr "Velkommen hjem %s." - -#: ../../mod/dfrn_request.php:673 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s." - -#: ../../mod/dfrn_request.php:674 -msgid "Confirm" -msgstr "Bekreft" - -#: ../../mod/dfrn_request.php:715 ../../include/items.php:3356 -msgid "[Name Withheld]" -msgstr "[Navnet tilbakeholdt]" - -#: ../../mod/dfrn_request.php:810 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "" - -#: ../../mod/dfrn_request.php:826 -msgid "Connect as an email follower (Coming soon)" -msgstr "" - -#: ../../mod/dfrn_request.php:828 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "" - -#: ../../mod/dfrn_request.php:831 -msgid "Friend/Connection Request" -msgstr "Venne-/Koblings-forespørsel" - -#: ../../mod/dfrn_request.php:832 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Eksempler: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: ../../mod/dfrn_request.php:833 -msgid "Please answer the following:" -msgstr "Vennligst svar på følgende:" - -#: ../../mod/dfrn_request.php:834 -#, php-format -msgid "Does %s know you?" -msgstr "Kjenner %s deg?" - -#: ../../mod/dfrn_request.php:837 -msgid "Add a personal note:" -msgstr "Legg til en personlig melding:" - -#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../mod/dfrn_request.php:840 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federeated Social Web" - -#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:681 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../mod/dfrn_request.php:842 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "" - -#: ../../mod/dfrn_request.php:843 -msgid "Your Identity Address:" -msgstr "Din identitetsadresse:" - -#: ../../mod/dfrn_request.php:846 -msgid "Submit Request" -msgstr "Send forespørsel" - -#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:138 -msgid "Account settings" -msgstr "Kontoinnstillinger" - -#: ../../mod/uexport.php:14 ../../mod/settings.php:40 -msgid "Display settings" -msgstr "" - -#: ../../mod/uexport.php:20 ../../mod/settings.php:46 -msgid "Connector settings" -msgstr "Koblingsinnstillinger" - -#: ../../mod/uexport.php:25 ../../mod/settings.php:51 -msgid "Plugin settings" -msgstr "Tilleggsinnstillinger" - -#: ../../mod/uexport.php:30 ../../mod/settings.php:56 -msgid "Connected apps" -msgstr "Tilkoblede programmer" - -#: ../../mod/uexport.php:35 ../../mod/uexport.php:80 ../../mod/settings.php:61 -msgid "Export personal data" -msgstr "Eksporter personlige data" - -#: ../../mod/uexport.php:40 ../../mod/settings.php:66 -msgid "Remove account" -msgstr "" - -#: ../../mod/uexport.php:48 ../../mod/settings.php:74 -#: ../../mod/newmember.php:22 ../../mod/admin.php:788 ../../mod/admin.php:993 -#: ../../addon/dav/friendica/layout.fnk.php:225 -#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:537 -#: ../../view/theme/diabook/theme.php:658 ../../include/nav.php:138 -#: ../../addon.old/dav/friendica/layout.fnk.php:225 -#: ../../addon.old/mathjax/mathjax.php:36 -msgid "Settings" -msgstr "Innstillinger" - -#: ../../mod/uexport.php:72 -msgid "Export account" -msgstr "" - -#: ../../mod/uexport.php:72 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "" - -#: ../../mod/uexport.php:73 -msgid "Export all" -msgstr "" - -#: ../../mod/uexport.php:73 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "" - -#: ../../mod/install.php:117 -msgid "Friendica Social Communications Server - Setup" -msgstr "" - -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr "" - -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "" - -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "" - -#: ../../mod/install.php:138 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Du må kanskje importere filen \"database.sql\" manuelt ved hjelp av phpmyadmin eller mysql." - -#: ../../mod/install.php:139 ../../mod/install.php:204 -#: ../../mod/install.php:488 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Vennligst se filen \"INSTALL.txt\"." - -#: ../../mod/install.php:201 -msgid "System check" -msgstr "" - -#: ../../mod/install.php:206 -msgid "Check again" -msgstr "" - -#: ../../mod/install.php:225 -msgid "Database connection" -msgstr "" - -#: ../../mod/install.php:226 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "" - -#: ../../mod/install.php:227 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Vennligst kontakt din tilbyder eller administrator hvis du har spørsmål til disse innstillingene." - -#: ../../mod/install.php:228 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Databasen du oppgir nedenfor må finnes. Hvis ikke, vennligst opprett den før du fortsetter." - -#: ../../mod/install.php:232 -msgid "Database Server Name" -msgstr "Databasetjenerens navn" - -#: ../../mod/install.php:233 -msgid "Database Login Name" -msgstr "Database brukernavn" - -#: ../../mod/install.php:234 -msgid "Database Login Password" -msgstr "Database passord" - -#: ../../mod/install.php:235 -msgid "Database Name" -msgstr "Databasenavn" - -#: ../../mod/install.php:236 ../../mod/install.php:275 -msgid "Site administrator email address" -msgstr "" - -#: ../../mod/install.php:236 ../../mod/install.php:275 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "" - -#: ../../mod/install.php:240 ../../mod/install.php:278 -msgid "Please select a default timezone for your website" -msgstr "Vennligst velg en standard tidssone for ditt nettsted" - -#: ../../mod/install.php:265 -msgid "Site settings" -msgstr "" - -#: ../../mod/install.php:318 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Fant ikke en kommandolinjeversjon av PHP i webtjenerens PATH." - -#: ../../mod/install.php:319 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "" - -#: ../../mod/install.php:323 -msgid "PHP executable path" -msgstr "" - -#: ../../mod/install.php:323 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: ../../mod/install.php:328 -msgid "Command line PHP" -msgstr "" - -#: ../../mod/install.php:337 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" aktivert." - -#: ../../mod/install.php:338 -msgid "This is required for message delivery to work." -msgstr "Dette er nødvendig for at meldingslevering skal virke." - -#: ../../mod/install.php:340 -msgid "PHP register_argc_argv" -msgstr "" - -#: ../../mod/install.php:361 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler" - -#: ../../mod/install.php:362 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "For kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/install.php:364 -msgid "Generate encryption keys" -msgstr "" - -#: ../../mod/install.php:371 -msgid "libCurl PHP module" -msgstr "" - -#: ../../mod/install.php:372 -msgid "GD graphics PHP module" -msgstr "" - -#: ../../mod/install.php:373 -msgid "OpenSSL PHP module" -msgstr "" - -#: ../../mod/install.php:374 -msgid "mysqli PHP module" -msgstr "" - -#: ../../mod/install.php:375 -msgid "mb_string PHP module" -msgstr "" - -#: ../../mod/install.php:380 ../../mod/install.php:382 -msgid "Apache mod_rewrite module" -msgstr "" - -#: ../../mod/install.php:380 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Feil: Modulen mod-rewrite for Apache-webtjeneren er påkrevet, men er ikke installert." - -#: ../../mod/install.php:388 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Feil: libCURL PHP-modulen er påkrevet, men er ikke installert." - -#: ../../mod/install.php:392 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Feil: GD graphics PHP-modulen med JPEG-støtte er påkrevet, men er ikke installert." - -#: ../../mod/install.php:396 -msgid "Error: openssl PHP module required but not installed." -msgstr "Feil: openssl PHP-modulen er påkrevet, men er ikke installert." - -#: ../../mod/install.php:400 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Feil: mysqli PHP-modulen er påkrevet, men er ikke installert." - -#: ../../mod/install.php:404 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Feil: mb_string PHP-modulen er påkrevet men ikke installert." - -#: ../../mod/install.php:421 -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 "Web-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette." - -#: ../../mod/install.php:422 -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 "Dette skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje ikke kan skrive filer i din mappe - selv om du kan." - -#: ../../mod/install.php:423 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "" - -#: ../../mod/install.php:424 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "" - -#: ../../mod/install.php:427 -msgid ".htconfig.php is writable" -msgstr "" - -#: ../../mod/install.php:439 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" - -#: ../../mod/install.php:441 -msgid "Url rewrite is working" -msgstr "" - -#: ../../mod/install.php:451 -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 "Filen \".htconfig.php\" med databasekonfigurasjonen kunne ikke bli skrevet. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i roten på din web-tjener." - -#: ../../mod/install.php:475 -msgid "Errors encountered creating database tables." -msgstr "Feil oppstod under opprettelsen av databasetabeller." - -#: ../../mod/install.php:486 -msgid "

What next

" -msgstr "" - -#: ../../mod/install.php:487 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering." - -#: ../../mod/localtime.php:12 ../../include/event.php:11 -#: ../../include/bb2diaspora.php:390 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Tidskonvertering" - -#: ../../mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "" - -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "UTC tid: %s" - -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Gjeldende tidssone: %s" - -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Konvertert lokaltid: %s" - -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Vennligst velg din tidssone:" - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "" - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Profiltreff" - -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord i din standardprofil." - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "" - -#: ../../mod/match.php:58 ../../mod/suggest.php:59 -#: ../../include/contact_widgets.php:9 ../../boot.php:1216 -msgid "Connect" -msgstr "Forbindelse" - -#: ../../mod/match.php:65 ../../mod/dirfind.php:60 -msgid "No matches" -msgstr "Ingen treff" - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Ekstern informasjon om privatlivsinnstillinger er ikke tilgjengelig." - -#: ../../mod/lockview.php:48 -#: ../../addon/remote_permissions/remote_permissions.php:123 -msgid "Visible to:" -msgstr "Synlig for:" - -#: ../../mod/content.php:119 ../../mod/network.php:594 -msgid "No such group" -msgstr "Gruppen finnes ikke" - -#: ../../mod/content.php:130 ../../mod/network.php:605 -msgid "Group is empty" -msgstr "Gruppen er tom" - -#: ../../mod/content.php:134 ../../mod/network.php:609 -msgid "Group: " -msgstr "Gruppe:" - -#: ../../mod/content.php:438 ../../mod/content.php:723 -#: ../../include/conversation.php:568 ../../object/Item.php:117 -msgid "Select" -msgstr "Velg" - -#: ../../mod/content.php:455 ../../mod/content.php:817 -#: ../../mod/content.php:818 ../../include/conversation.php:587 -#: ../../object/Item.php:234 ../../object/Item.php:235 -#, php-format -msgid "View %s's profile @ %s" -msgstr "" - -#: ../../mod/content.php:465 ../../mod/content.php:829 -#: ../../include/conversation.php:607 ../../object/Item.php:248 -#, php-format -msgid "%s from %s" -msgstr "%s fra %s" - -#: ../../mod/content.php:480 ../../include/conversation.php:622 -msgid "View in context" -msgstr "Vis i sammenheng" - -#: ../../mod/content.php:586 ../../object/Item.php:288 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/content.php:588 ../../include/text.php:1446 -#: ../../object/Item.php:290 ../../object/Item.php:303 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/content.php:589 ../../addon/page/page.php:77 -#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119 -#: ../../include/contact_widgets.php:204 ../../boot.php:609 -#: ../../object/Item.php:291 ../../addon.old/page/page.php:77 -#: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119 -msgid "show more" -msgstr "" - -#: ../../mod/content.php:667 ../../object/Item.php:202 -msgid "like" -msgstr "" - -#: ../../mod/content.php:668 ../../object/Item.php:203 -msgid "dislike" -msgstr "" - -#: ../../mod/content.php:670 ../../object/Item.php:205 -msgid "Share this" -msgstr "" - -#: ../../mod/content.php:670 ../../object/Item.php:205 -msgid "share" -msgstr "" - -#: ../../mod/content.php:694 ../../object/Item.php:571 -msgid "Bold" -msgstr "" - -#: ../../mod/content.php:695 ../../object/Item.php:572 -msgid "Italic" -msgstr "" - -#: ../../mod/content.php:696 ../../object/Item.php:573 -msgid "Underline" -msgstr "" - -#: ../../mod/content.php:697 ../../object/Item.php:574 -msgid "Quote" -msgstr "" - -#: ../../mod/content.php:698 ../../object/Item.php:575 -msgid "Code" -msgstr "" - -#: ../../mod/content.php:699 ../../object/Item.php:576 -msgid "Image" -msgstr "" - -#: ../../mod/content.php:700 ../../object/Item.php:577 -msgid "Link" -msgstr "" - -#: ../../mod/content.php:701 ../../object/Item.php:578 -msgid "Video" -msgstr "" - -#: ../../mod/content.php:736 ../../object/Item.php:181 -msgid "add star" -msgstr "" - -#: ../../mod/content.php:737 ../../object/Item.php:182 -msgid "remove star" -msgstr "" - -#: ../../mod/content.php:738 ../../object/Item.php:183 -msgid "toggle star status" -msgstr "veksle stjernestatus" - -#: ../../mod/content.php:741 ../../object/Item.php:186 -msgid "starred" -msgstr "" - -#: ../../mod/content.php:742 ../../object/Item.php:191 -msgid "add tag" -msgstr "" - -#: ../../mod/content.php:746 ../../object/Item.php:121 -msgid "save to folder" -msgstr "" - -#: ../../mod/content.php:819 ../../object/Item.php:236 -msgid "to" -msgstr "til" - -#: ../../mod/content.php:820 ../../object/Item.php:238 -msgid "Wall-to-Wall" -msgstr "vegg-til-vegg" - -#: ../../mod/content.php:821 ../../object/Item.php:239 -msgid "via Wall-To-Wall:" -msgstr "via vegg-til-vegg" - -#: ../../mod/home.php:30 ../../addon/communityhome/communityhome.php:179 -#: ../../addon.old/communityhome/communityhome.php:179 -#, php-format -msgid "Welcome to %s" -msgstr "Velkommen til %s" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ugyldig forespørselsidentifikator." - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:210 -msgid "Discard" -msgstr "Forkast" - -#: ../../mod/notifications.php:51 ../../mod/notifications.php:163 -#: ../../mod/notifications.php:209 ../../mod/contacts.php:325 -#: ../../mod/contacts.php:379 -msgid "Ignore" -msgstr "Ignorer" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "" - -#: ../../mod/notifications.php:83 ../../include/nav.php:113 -msgid "Network" -msgstr "Nettverk" - -#: ../../mod/notifications.php:88 ../../mod/network.php:444 -msgid "Personal" -msgstr "" - -#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87 -#: ../../include/nav.php:77 ../../include/nav.php:116 -msgid "Home" -msgstr "Hjem" - -#: ../../mod/notifications.php:98 ../../include/nav.php:122 -msgid "Introductions" -msgstr "Introduksjoner" - -#: ../../mod/notifications.php:103 ../../mod/message.php:180 -#: ../../include/nav.php:129 -msgid "Messages" -msgstr "Meldinger" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Vis ignorerte forespørsler" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Skjul ignorerte forespørsler" - -#: ../../mod/notifications.php:148 ../../mod/notifications.php:194 -msgid "Notification type: " -msgstr "Beskjedtype:" - -#: ../../mod/notifications.php:149 -msgid "Friend Suggestion" -msgstr "Venneforslag" - -#: ../../mod/notifications.php:151 -#, php-format -msgid "suggested by %s" -msgstr "foreslått av %s" - -#: ../../mod/notifications.php:156 ../../mod/notifications.php:203 -#: ../../mod/contacts.php:385 -msgid "Hide this contact from others" -msgstr "" - -#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 -msgid "Post a new friend activity" -msgstr "" - -#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 -msgid "if applicable" -msgstr "" - -#: ../../mod/notifications.php:160 ../../mod/notifications.php:207 -#: ../../mod/admin.php:697 -msgid "Approve" -msgstr "Godkjenn" - -#: ../../mod/notifications.php:180 -msgid "Claims to be known to you: " -msgstr "Påstår å kjenne deg:" - -#: ../../mod/notifications.php:180 -msgid "yes" -msgstr "ja" - -#: ../../mod/notifications.php:180 -msgid "no" -msgstr "ei" - -#: ../../mod/notifications.php:187 -msgid "Approve as: " -msgstr "Godkjenn som:" - -#: ../../mod/notifications.php:188 -msgid "Friend" -msgstr "Venn" - -#: ../../mod/notifications.php:189 -msgid "Sharer" -msgstr "Deler" - -#: ../../mod/notifications.php:189 -msgid "Fan/Admirer" -msgstr "Fan/Beundrer" - -#: ../../mod/notifications.php:195 -msgid "Friend/Connect Request" -msgstr "Venn/kontakt-forespørsel" - -#: ../../mod/notifications.php:195 -msgid "New Follower" -msgstr "Ny følgesvenn" - -#: ../../mod/notifications.php:216 -msgid "No introductions." -msgstr "" - -#: ../../mod/notifications.php:219 ../../include/nav.php:123 -msgid "Notifications" -msgstr "Varslinger" - -#: ../../mod/notifications.php:256 ../../mod/notifications.php:381 -#: ../../mod/notifications.php:468 -#, php-format -msgid "%s liked %s's post" -msgstr "%s likte %s sitt innlegg" - -#: ../../mod/notifications.php:265 ../../mod/notifications.php:390 -#: ../../mod/notifications.php:477 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s mislikte %s sitt innlegg" - -#: ../../mod/notifications.php:279 ../../mod/notifications.php:404 -#: ../../mod/notifications.php:491 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s er nå venner med %s" - -#: ../../mod/notifications.php:286 ../../mod/notifications.php:411 -#, php-format -msgid "%s created a new post" -msgstr "%s skrev et nytt innlegg" - -#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 -#: ../../mod/notifications.php:500 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s kommenterte på %s sitt innlegg" - -#: ../../mod/notifications.php:301 -msgid "No more network notifications." -msgstr "" - -#: ../../mod/notifications.php:305 -msgid "Network Notifications" -msgstr "" - -#: ../../mod/notifications.php:331 ../../mod/notify.php:61 -msgid "No more system notifications." -msgstr "" - -#: ../../mod/notifications.php:335 ../../mod/notify.php:65 -msgid "System Notifications" -msgstr "" - -#: ../../mod/notifications.php:426 -msgid "No more personal notifications." -msgstr "" - -#: ../../mod/notifications.php:430 -msgid "Personal Notifications" -msgstr "" - -#: ../../mod/notifications.php:507 -msgid "No more home notifications." -msgstr "" - -#: ../../mod/notifications.php:511 -msgid "Home Notifications" -msgstr "" - -#: ../../mod/contacts.php:85 ../../mod/contacts.php:165 -msgid "Could not access contact record." -msgstr "Fikk ikke tilgang til kontaktposten." - -#: ../../mod/contacts.php:99 -msgid "Could not locate selected profile." -msgstr "Kunne ikke lokalisere valgt profil." - -#: ../../mod/contacts.php:122 -msgid "Contact updated." -msgstr "Kontakt oppdatert." - -#: ../../mod/contacts.php:187 -msgid "Contact has been blocked" -msgstr "Kontakten er blokkert" - -#: ../../mod/contacts.php:187 -msgid "Contact has been unblocked" -msgstr "Kontakten er ikke blokkert lenger" - -#: ../../mod/contacts.php:201 -msgid "Contact has been ignored" -msgstr "Kontakten er ignorert" - -#: ../../mod/contacts.php:201 -msgid "Contact has been unignored" -msgstr "Kontakten er ikke ignorert lenger" - -#: ../../mod/contacts.php:220 -msgid "Contact has been archived" -msgstr "" - -#: ../../mod/contacts.php:220 -msgid "Contact has been unarchived" -msgstr "" - -#: ../../mod/contacts.php:233 -msgid "Contact has been removed." -msgstr "Kontakten er fjernet." - -#: ../../mod/contacts.php:267 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Du er gjensidig venn med %s" - -#: ../../mod/contacts.php:271 -#, php-format -msgid "You are sharing with %s" -msgstr "Du deler med %s" - -#: ../../mod/contacts.php:276 -#, php-format -msgid "%s is sharing with you" -msgstr "%s deler med deg" - -#: ../../mod/contacts.php:293 -msgid "Private communications are not available for this contact." -msgstr "Privat kommunikasjon er ikke tilgjengelig mot denne kontakten." - -#: ../../mod/contacts.php:296 -msgid "Never" -msgstr "Aldri" - -#: ../../mod/contacts.php:300 -msgid "(Update was successful)" -msgstr "(Oppdatering vellykket)" - -#: ../../mod/contacts.php:300 -msgid "(Update was not successful)" -msgstr "(Oppdatering mislykket)" - -#: ../../mod/contacts.php:302 -msgid "Suggest friends" -msgstr "Foreslå venner" - -#: ../../mod/contacts.php:306 -#, php-format -msgid "Network type: %s" -msgstr "Nettverkstype: %s" - -#: ../../mod/contacts.php:309 ../../include/contact_widgets.php:199 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d felles kontakt" -msgstr[1] "%d felles kontakter" - -#: ../../mod/contacts.php:314 -msgid "View all contacts" -msgstr "Vis alle kontakter" - -#: ../../mod/contacts.php:319 ../../mod/contacts.php:378 -#: ../../mod/admin.php:701 -msgid "Unblock" -msgstr "Ikke blokker" - -#: ../../mod/contacts.php:319 ../../mod/contacts.php:378 -#: ../../mod/admin.php:700 -msgid "Block" -msgstr "Blokker" - -#: ../../mod/contacts.php:322 -msgid "Toggle Blocked status" -msgstr "" - -#: ../../mod/contacts.php:325 ../../mod/contacts.php:379 -msgid "Unignore" -msgstr "Fjern ignorering" - -#: ../../mod/contacts.php:328 -msgid "Toggle Ignored status" -msgstr "" - -#: ../../mod/contacts.php:332 -msgid "Unarchive" -msgstr "" - -#: ../../mod/contacts.php:332 -msgid "Archive" -msgstr "" - -#: ../../mod/contacts.php:335 -msgid "Toggle Archive status" -msgstr "" - -#: ../../mod/contacts.php:338 -msgid "Repair" -msgstr "Reparer" - -#: ../../mod/contacts.php:341 -msgid "Advanced Contact Settings" -msgstr "" - -#: ../../mod/contacts.php:347 -msgid "Communications lost with this contact!" -msgstr "" - -#: ../../mod/contacts.php:350 -msgid "Contact Editor" -msgstr "Endre kontakt" - -#: ../../mod/contacts.php:353 -msgid "Profile Visibility" -msgstr "Profilens synlighet" - -#: ../../mod/contacts.php:354 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Vennligst velg profilen du ønsker å vise til %s når denne ser profilen på en sikret måte." - -#: ../../mod/contacts.php:355 -msgid "Contact Information / Notes" -msgstr "Kontaktinformasjon/-notater" - -#: ../../mod/contacts.php:356 -msgid "Edit contact notes" -msgstr "Endre kontaktnotater" - -#: ../../mod/contacts.php:361 ../../mod/contacts.php:553 -#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Besøk %ss profil [%s]" - -#: ../../mod/contacts.php:362 -msgid "Block/Unblock contact" -msgstr "Blokker kontakt/fjern blokkering for kontakt" - -#: ../../mod/contacts.php:363 -msgid "Ignore contact" -msgstr "Ignorer kontakt" - -#: ../../mod/contacts.php:364 -msgid "Repair URL settings" -msgstr "Reparer URL-innstillinger" - -#: ../../mod/contacts.php:365 -msgid "View conversations" -msgstr "Vis samtaler" - -#: ../../mod/contacts.php:367 -msgid "Delete contact" -msgstr "Slett kontakt" - -#: ../../mod/contacts.php:371 -msgid "Last update:" -msgstr "Siste oppdatering:" - -#: ../../mod/contacts.php:373 -msgid "Update public posts" -msgstr "Oppdater offentlige innlegg" - -#: ../../mod/contacts.php:375 ../../mod/admin.php:1173 -msgid "Update now" -msgstr "Oppdater nå" - -#: ../../mod/contacts.php:382 -msgid "Currently blocked" -msgstr "Blokkert nå" - -#: ../../mod/contacts.php:383 -msgid "Currently ignored" -msgstr "Ignorert nå" - -#: ../../mod/contacts.php:384 -msgid "Currently archived" -msgstr "" - -#: ../../mod/contacts.php:385 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "" - -#: ../../mod/contacts.php:438 -msgid "Suggestions" -msgstr "" - -#: ../../mod/contacts.php:441 -msgid "Suggest potential friends" -msgstr "" - -#: ../../mod/contacts.php:444 ../../mod/group.php:191 -msgid "All Contacts" -msgstr "Alle kontakter" - -#: ../../mod/contacts.php:447 -msgid "Show all contacts" -msgstr "" - -#: ../../mod/contacts.php:450 -msgid "Unblocked" -msgstr "" - -#: ../../mod/contacts.php:453 -msgid "Only show unblocked contacts" -msgstr "" - -#: ../../mod/contacts.php:457 -msgid "Blocked" -msgstr "" - -#: ../../mod/contacts.php:460 -msgid "Only show blocked contacts" -msgstr "" - -#: ../../mod/contacts.php:464 -msgid "Ignored" -msgstr "" - -#: ../../mod/contacts.php:467 -msgid "Only show ignored contacts" -msgstr "" - -#: ../../mod/contacts.php:471 -msgid "Archived" -msgstr "" - -#: ../../mod/contacts.php:474 -msgid "Only show archived contacts" -msgstr "" - -#: ../../mod/contacts.php:478 -msgid "Hidden" -msgstr "" - -#: ../../mod/contacts.php:481 -msgid "Only show hidden contacts" -msgstr "" - -#: ../../mod/contacts.php:529 -msgid "Mutual Friendship" -msgstr "Gjensidig vennskap" - -#: ../../mod/contacts.php:533 -msgid "is a fan of yours" -msgstr "er en tilhenger av deg" - -#: ../../mod/contacts.php:537 -msgid "you are a fan of" -msgstr "du er en tilhenger av" - -#: ../../mod/contacts.php:554 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Endre kontakt" - -#: ../../mod/contacts.php:575 ../../view/theme/diabook/theme.php:89 -#: ../../include/nav.php:142 -msgid "Contacts" -msgstr "Kontakter" - -#: ../../mod/contacts.php:579 -msgid "Search your contacts" -msgstr "Søk i dine kontakter" - -#: ../../mod/contacts.php:580 ../../mod/directory.php:59 -#: ../../addon/forumdirectory/forumdirectory.php:81 -msgid "Finding: " -msgstr "Fant:" - -#: ../../mod/contacts.php:581 ../../mod/directory.php:61 -#: ../../addon/forumdirectory/forumdirectory.php:83 -#: ../../include/contact_widgets.php:33 -msgid "Find" -msgstr "Finn" - -#: ../../mod/lostpass.php:16 -msgid "No valid account found." -msgstr "Fant ingen gyldig konto." - -#: ../../mod/lostpass.php:32 -msgid "Password reset request issued. Check your email." -msgstr "Forespørsel om å tilbakestille passord er sendt. Sjekk e-posten din." - -#: ../../mod/lostpass.php:43 -#, php-format -msgid "Password reset requested at %s" -msgstr "Forespørsel om tilbakestilling av passord ved %s" - -#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107 -#: ../../mod/register.php:91 ../../mod/register.php:145 -#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752 -#: ../../addon/facebook/facebook.php:702 -#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661 -#: ../../addon/public_server/public_server.php:62 -#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3365 -#: ../../boot.php:824 ../../addon.old/facebook/facebook.php:702 -#: ../../addon.old/facebook/facebook.php:1200 -#: ../../addon.old/fbpost/fbpost.php:661 -#: ../../addon.old/public_server/public_server.php:62 -#: ../../addon.old/testdrive/testdrive.php:67 -msgid "Administrator" -msgstr "Administrator" - -#: ../../mod/lostpass.php:65 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Forespørselen kunne ikke verifiseres. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord milslyktes." - -#: ../../mod/lostpass.php:83 ../../boot.php:963 -msgid "Password Reset" -msgstr "Passord tilbakestilling" - -#: ../../mod/lostpass.php:84 -msgid "Your password has been reset as requested." -msgstr "Ditt passord er tilbakestilt som forespurt." - -#: ../../mod/lostpass.php:85 -msgid "Your new password is" -msgstr "Ditt nye passord er" - -#: ../../mod/lostpass.php:86 -msgid "Save or copy your new password - and then" -msgstr "Lagre eller kopier ditt nye passord, og deretter" - -#: ../../mod/lostpass.php:87 -msgid "click here to login" -msgstr "klikk her for å logge inn" - -#: ../../mod/lostpass.php:88 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Passordet ditt kan endres fra siden Innstillinger etter vellykket logg inn." - -#: ../../mod/lostpass.php:119 -msgid "Forgot your Password?" -msgstr "Glemte du passordet?" - -#: ../../mod/lostpass.php:120 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Skriv inn e-postadressen og send inn for å tilbakestille passordet ditt. Sjekk deretter e-posten din for nærmere forklaring." - -#: ../../mod/lostpass.php:121 -msgid "Nickname or Email: " -msgstr "Kallenavn eller e-post:" - -#: ../../mod/lostpass.php:122 -msgid "Reset" -msgstr "Tilbakestill" - -#: ../../mod/settings.php:35 -msgid "Additional features" -msgstr "" - -#: ../../mod/settings.php:118 -msgid "Missing some important data!" -msgstr "Mangler noen viktige data!" - -#: ../../mod/settings.php:121 ../../mod/settings.php:585 -msgid "Update" -msgstr "Oppdater" - -#: ../../mod/settings.php:226 -msgid "Failed to connect with email account using the settings provided." -msgstr "Mislyktes i å opprette forbindelse med e-postkontoen med de oppgitte innstillingene." - -#: ../../mod/settings.php:231 -msgid "Email settings updated." -msgstr "E-postinnstillinger er oppdatert." - -#: ../../mod/settings.php:246 -msgid "Features updated" -msgstr "" - -#: ../../mod/settings.php:306 -msgid "Passwords do not match. Password unchanged." -msgstr "Passordene er ikke like. Passord uendret." - -#: ../../mod/settings.php:311 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Tomme passord er ikke lov. Passord uendret." - -#: ../../mod/settings.php:322 -msgid "Password changed." -msgstr "Passord endret." - -#: ../../mod/settings.php:324 -msgid "Password update failed. Please try again." -msgstr "Passordoppdatering mislyktes. Vennligst prøv igjen." - -#: ../../mod/settings.php:389 -msgid " Please use a shorter name." -msgstr "Vennligst bruk et kortere navn." - -#: ../../mod/settings.php:391 -msgid " Name too short." -msgstr "Navnet er for kort." - -#: ../../mod/settings.php:397 -msgid " Not valid email." -msgstr "Ugyldig e-postadresse." - -#: ../../mod/settings.php:399 -msgid " Cannot change to that email." -msgstr "Kan ikke endre til den e-postadressen." - -#: ../../mod/settings.php:453 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "" - -#: ../../mod/settings.php:457 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "" - -#: ../../mod/settings.php:487 ../../addon/facebook/facebook.php:495 -#: ../../addon/fbpost/fbpost.php:144 -#: ../../addon/remote_permissions/remote_permissions.php:204 -#: ../../addon/impressum/impressum.php:78 -#: ../../addon/openstreetmap/openstreetmap.php:80 -#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105 -#: ../../addon/twitter/twitter.php:501 -#: ../../addon.old/facebook/facebook.php:495 -#: ../../addon.old/fbpost/fbpost.php:144 -#: ../../addon.old/impressum/impressum.php:78 -#: ../../addon.old/openstreetmap/openstreetmap.php:80 -#: ../../addon.old/mathjax/mathjax.php:66 ../../addon.old/piwik/piwik.php:105 -#: ../../addon.old/twitter/twitter.php:389 -msgid "Settings updated." -msgstr "Innstillinger oppdatert." - -#: ../../mod/settings.php:558 ../../mod/settings.php:584 -#: ../../mod/settings.php:620 -msgid "Add application" -msgstr "Legg til program" - -#: ../../mod/settings.php:562 ../../mod/settings.php:588 -#: ../../addon/statusnet/statusnet.php:679 -#: ../../addon.old/statusnet/statusnet.php:570 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../mod/settings.php:563 ../../mod/settings.php:589 -#: ../../addon/statusnet/statusnet.php:678 -#: ../../addon.old/statusnet/statusnet.php:569 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../mod/settings.php:564 ../../mod/settings.php:590 -msgid "Redirect" -msgstr "Omdiriger" - -#: ../../mod/settings.php:565 ../../mod/settings.php:591 -msgid "Icon url" -msgstr "Ikon URL" - -#: ../../mod/settings.php:576 -msgid "You can't edit this application." -msgstr "Du kan ikke redigere dette programmet." - -#: ../../mod/settings.php:619 -msgid "Connected Apps" -msgstr "Tilkoblede programmer" - -#: ../../mod/settings.php:623 -msgid "Client key starts with" -msgstr "Klientnøkkelen starter med" - -#: ../../mod/settings.php:624 -msgid "No name" -msgstr "Ingen navn" - -#: ../../mod/settings.php:625 -msgid "Remove authorization" -msgstr "Fjern tillatelse" - -#: ../../mod/settings.php:637 -msgid "No Plugin settings configured" -msgstr "Ingen tilleggsinnstillinger konfigurert" - -#: ../../mod/settings.php:645 ../../addon/widgets/widgets.php:123 -#: ../../addon.old/widgets/widgets.php:123 -msgid "Plugin Settings" -msgstr "Tilleggsinnstillinger" - -#: ../../mod/settings.php:659 -msgid "Off" -msgstr "" - -#: ../../mod/settings.php:659 -msgid "On" -msgstr "" - -#: ../../mod/settings.php:667 -msgid "Additional Features" -msgstr "" - -#: ../../mod/settings.php:681 ../../mod/settings.php:682 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Innebygget støtte for %s forbindelse er %s" - -#: ../../mod/settings.php:681 ../../mod/settings.php:682 -msgid "enabled" -msgstr "aktivert" - -#: ../../mod/settings.php:681 ../../mod/settings.php:682 -msgid "disabled" -msgstr "avskrudd" - -#: ../../mod/settings.php:682 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:714 -msgid "Email access is disabled on this site." -msgstr "E-posttilgang er avskrudd på dette stedet." - -#: ../../mod/settings.php:720 -msgid "Connector Settings" -msgstr "Koblingsinnstillinger" - -#: ../../mod/settings.php:725 -msgid "Email/Mailbox Setup" -msgstr "E-post-/postboksinnstillinger" - -#: ../../mod/settings.php:726 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Hvis du ønsker å kommunisere med e-postkontakter via denne tjenesten (frivillig), vennligst oppgi hvordan din postboks kontaktes." - -#: ../../mod/settings.php:727 -msgid "Last successful email check:" -msgstr "Siste vellykkede e-postsjekk:" - -#: ../../mod/settings.php:729 -msgid "IMAP server name:" -msgstr "IMAP-tjeners navn:" - -#: ../../mod/settings.php:730 -msgid "IMAP port:" -msgstr "IMAP port:" - -#: ../../mod/settings.php:731 -msgid "Security:" -msgstr "Sikkerhet:" - -#: ../../mod/settings.php:731 ../../mod/settings.php:736 -#: ../../addon/dav/common/wdcal_edit.inc.php:191 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:191 -msgid "None" -msgstr "Ingen" - -#: ../../mod/settings.php:732 -msgid "Email login name:" -msgstr "E-post brukernavn:" - -#: ../../mod/settings.php:733 -msgid "Email password:" -msgstr "E-post passord:" - -#: ../../mod/settings.php:734 -msgid "Reply-to address:" -msgstr "Svar-til-adresse:" - -#: ../../mod/settings.php:735 -msgid "Send public posts to all email contacts:" -msgstr "Send offentlige meldinger til alle e-postkontakter:" - -#: ../../mod/settings.php:736 -msgid "Action after import:" -msgstr "" - -#: ../../mod/settings.php:736 -msgid "Mark as seen" -msgstr "" - -#: ../../mod/settings.php:736 -msgid "Move to folder" -msgstr "" - -#: ../../mod/settings.php:737 -msgid "Move to folder:" -msgstr "" - -#: ../../mod/settings.php:768 ../../mod/admin.php:404 -msgid "No special theme for mobile devices" -msgstr "" - -#: ../../mod/settings.php:808 -msgid "Display Settings" -msgstr "" - -#: ../../mod/settings.php:814 ../../mod/settings.php:825 -msgid "Display Theme:" -msgstr "Vis tema:" - -#: ../../mod/settings.php:815 -msgid "Mobile Theme:" -msgstr "" - -#: ../../mod/settings.php:816 -msgid "Update browser every xx seconds" -msgstr "" - -#: ../../mod/settings.php:816 -msgid "Minimum of 10 seconds, no maximum" -msgstr "" - -#: ../../mod/settings.php:817 -msgid "Number of items to display per page:" -msgstr "" - -#: ../../mod/settings.php:817 -msgid "Maximum of 100 items" -msgstr "" - -#: ../../mod/settings.php:818 -msgid "Don't show emoticons" -msgstr "" - -#: ../../mod/settings.php:894 -msgid "Normal Account Page" -msgstr "" - -#: ../../mod/settings.php:895 -msgid "This account is a normal personal profile" -msgstr "Denne kontoen er en vanlig personlig profil" - -#: ../../mod/settings.php:898 -msgid "Soapbox Page" -msgstr "" - -#: ../../mod/settings.php:899 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med kun leserettigheter" - -#: ../../mod/settings.php:902 -msgid "Community Forum/Celebrity Account" -msgstr "" - -#: ../../mod/settings.php:903 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med lese- og skriverettigheter" - -#: ../../mod/settings.php:906 -msgid "Automatic Friend Page" -msgstr "" - -#: ../../mod/settings.php:907 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som venner" - -#: ../../mod/settings.php:910 -msgid "Private Forum [Experimental]" -msgstr "" - -#: ../../mod/settings.php:911 -msgid "Private forum - approved members only" -msgstr "" - -#: ../../mod/settings.php:923 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:923 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Valgfritt) Tillat denne OpenID-en å logge inn i denne kontoen." - -#: ../../mod/settings.php:933 -msgid "Publish your default profile in your local site directory?" -msgstr "Skal standardprofilen din publiseres i katalogen til nettstedet ditt?" - -#: ../../mod/settings.php:939 -msgid "Publish your default profile in the global social directory?" -msgstr "Skal standardprofilen din publiseres i den globale sosiale katalogen?" - -#: ../../mod/settings.php:947 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Skjul kontakt-/venne-listen din for besøkende til standardprofilen din?" - -#: ../../mod/settings.php:951 -msgid "Hide your profile details from unknown viewers?" -msgstr "" - -#: ../../mod/settings.php:956 -msgid "Allow friends to post to your profile page?" -msgstr "Tillat venner å poste innlegg på din profilside?" - -#: ../../mod/settings.php:962 -msgid "Allow friends to tag your posts?" -msgstr "Tillat venner å merke dine innlegg?" - -#: ../../mod/settings.php:968 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: ../../mod/settings.php:974 -msgid "Permit unknown people to send you private mail?" -msgstr "" - -#: ../../mod/settings.php:982 -msgid "Profile is not published." -msgstr "Profilen er ikke publisert." - -#: ../../mod/settings.php:985 ../../mod/profile_photo.php:248 -msgid "or" -msgstr "eller" - -#: ../../mod/settings.php:990 -msgid "Your Identity Address is" -msgstr "Din identitetsadresse er" - -#: ../../mod/settings.php:1001 -msgid "Automatically expire posts after this many days:" -msgstr "" - -#: ../../mod/settings.php:1001 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Tomme innlegg utgår ikke. Utgåtte innlegg slettes." - -#: ../../mod/settings.php:1002 -msgid "Advanced expiration settings" -msgstr "" - -#: ../../mod/settings.php:1003 -msgid "Advanced Expiration" -msgstr "" - -#: ../../mod/settings.php:1004 -msgid "Expire posts:" -msgstr "" - -#: ../../mod/settings.php:1005 -msgid "Expire personal notes:" -msgstr "" - -#: ../../mod/settings.php:1006 -msgid "Expire starred posts:" -msgstr "" - -#: ../../mod/settings.php:1007 -msgid "Expire photos:" -msgstr "" - -#: ../../mod/settings.php:1008 -msgid "Only expire posts by others:" -msgstr "" - -#: ../../mod/settings.php:1015 -msgid "Account Settings" -msgstr "Kontoinnstillinger" - -#: ../../mod/settings.php:1023 -msgid "Password Settings" -msgstr "Passordinnstillinger" - -#: ../../mod/settings.php:1024 -msgid "New Password:" -msgstr "Nytt passord:" - -#: ../../mod/settings.php:1025 -msgid "Confirm:" -msgstr "Bekreft:" - -#: ../../mod/settings.php:1025 -msgid "Leave password fields blank unless changing" -msgstr "La passordfeltene stå tomme hvis du ikke skal bytte" - -#: ../../mod/settings.php:1029 -msgid "Basic Settings" -msgstr "Grunninnstillinger" - -#: ../../mod/settings.php:1030 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "Fullt navn:" - -#: ../../mod/settings.php:1031 -msgid "Email Address:" -msgstr "E-postadresse:" - -#: ../../mod/settings.php:1032 -msgid "Your Timezone:" -msgstr "Din tidssone:" - -#: ../../mod/settings.php:1033 -msgid "Default Post Location:" -msgstr "Standard oppholdssted når du poster:" - -#: ../../mod/settings.php:1034 -msgid "Use Browser Location:" -msgstr "Bruk nettleserens oppholdssted:" - -#: ../../mod/settings.php:1037 -msgid "Security and Privacy Settings" -msgstr "Sikkerhet og privatlivsinnstillinger" - -#: ../../mod/settings.php:1039 -msgid "Maximum Friend Requests/Day:" -msgstr "Maksimum venneforespørsler/dag:" - -#: ../../mod/settings.php:1039 ../../mod/settings.php:1058 -msgid "(to prevent spam abuse)" -msgstr "(for å forhindre søppelpost)" - -#: ../../mod/settings.php:1040 -msgid "Default Post Permissions" -msgstr "Standardtillatelser ved posting" - -#: ../../mod/settings.php:1041 -msgid "(click to open/close)" -msgstr "(klikk for å åpne/lukke)" - -#: ../../mod/settings.php:1058 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: ../../mod/settings.php:1061 -msgid "Notification Settings" -msgstr "Beskjedinnstillinger" - -#: ../../mod/settings.php:1062 -msgid "By default post a status message when:" -msgstr "" - -#: ../../mod/settings.php:1063 -msgid "accepting a friend request" -msgstr "" - -#: ../../mod/settings.php:1064 -msgid "joining a forum/community" -msgstr "" - -#: ../../mod/settings.php:1065 -msgid "making an interesting profile change" -msgstr "" - -#: ../../mod/settings.php:1066 -msgid "Send a notification email when:" -msgstr "Send en e-post med beskjed når:" - -#: ../../mod/settings.php:1067 -msgid "You receive an introduction" -msgstr "Du mottar en introduksjon" - -#: ../../mod/settings.php:1068 -msgid "Your introductions are confirmed" -msgstr "Dine introduksjoner er bekreftet" - -#: ../../mod/settings.php:1069 -msgid "Someone writes on your profile wall" -msgstr "Noen skriver på veggen til profilen din" - -#: ../../mod/settings.php:1070 -msgid "Someone writes a followup comment" -msgstr "Noen skriver en oppfølgingskommentar" - -#: ../../mod/settings.php:1071 -msgid "You receive a private message" -msgstr "Du mottar en privat melding" - -#: ../../mod/settings.php:1072 -msgid "You receive a friend suggestion" -msgstr "" - -#: ../../mod/settings.php:1073 -msgid "You are tagged in a post" -msgstr "" - -#: ../../mod/settings.php:1074 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: ../../mod/settings.php:1077 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../mod/settings.php:1078 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../mod/manage.php:94 -msgid "Manage Identities and/or Pages" -msgstr "Behandle identiteter og/eller sider" - -#: ../../mod/manage.php:97 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Veksle mellom ulike identiteter eller felleskaps-/gruppesider som deler dine kontodetaljer eller som du har blitt gitt \"behandle\" tillatelser" - -#: ../../mod/manage.php:99 -msgid "Select an identity to manage: " -msgstr "Velg en identitet å behandle:" - -#: ../../mod/network.php:181 -msgid "Search Results For:" -msgstr "" - -#: ../../mod/network.php:224 ../../mod/search.php:21 -msgid "Remove term" -msgstr "Fjern uttrykk" - -#: ../../mod/network.php:233 ../../mod/search.php:30 -#: ../../include/features.php:41 -msgid "Saved Searches" -msgstr "Lagrede søk" - -#: ../../mod/network.php:234 ../../include/group.php:275 -msgid "add" -msgstr "" - -#: ../../mod/network.php:397 -msgid "Commented Order" -msgstr "Etter kommentarer" - -#: ../../mod/network.php:400 -msgid "Sort by Comment Date" -msgstr "" - -#: ../../mod/network.php:403 -msgid "Posted Order" -msgstr "Etter innlegg" - -#: ../../mod/network.php:406 -msgid "Sort by Post Date" -msgstr "" - -#: ../../mod/network.php:447 -msgid "Posts that mention or involve you" -msgstr "" - -#: ../../mod/network.php:453 -msgid "New" -msgstr "Ny" - -#: ../../mod/network.php:456 -msgid "Activity Stream - by date" -msgstr "" - -#: ../../mod/network.php:462 -msgid "Shared Links" -msgstr "" - -#: ../../mod/network.php:465 -msgid "Interesting Links" -msgstr "" - -#: ../../mod/network.php:471 -msgid "Starred" -msgstr "Med stjerne" - -#: ../../mod/network.php:474 -msgid "Favourite Posts" -msgstr "" - -#: ../../mod/network.php:546 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk." -msgstr[1] "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk." - -#: ../../mod/network.php:549 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Private meldinger til denne gruppen risikerer å bli offentliggjort." - -#: ../../mod/network.php:619 -msgid "Contact: " -msgstr "Kontakt:" - -#: ../../mod/network.php:621 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Private meldinger til denne personen risikerer å bli offentliggjort." - -#: ../../mod/network.php:626 -msgid "Invalid contact." -msgstr "Ugyldig kontakt." - -#: ../../mod/notes.php:44 ../../boot.php:1755 -msgid "Personal Notes" -msgstr "Personlige notater" - -#: ../../mod/notes.php:63 ../../mod/filer.php:30 -#: ../../addon/facebook/facebook.php:770 -#: ../../addon/privacy_image_cache/privacy_image_cache.php:281 -#: ../../addon/fbpost/fbpost.php:267 -#: ../../addon/dav/friendica/layout.fnk.php:441 -#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:688 -#: ../../addon.old/facebook/facebook.php:770 -#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263 -#: ../../addon.old/fbpost/fbpost.php:267 -#: ../../addon.old/dav/friendica/layout.fnk.php:441 -#: ../../addon.old/dav/friendica/layout.fnk.php:488 -msgid "Save" -msgstr "Lagre" - -#: ../../mod/uimport.php:50 ../../mod/register.php:190 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: ../../mod/uimport.php:64 -msgid "Import" -msgstr "" - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "" - -#: ../../mod/uimport.php:67 -msgid "" -"You can import an account from another Friendica server.
\r\n" -" You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here.
\r\n" -" This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora" -msgstr "" - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "" - -#: ../../mod/uimport.php:70 -msgid "" -"To export your accont, go to \"Settings->Export your porsonal data\" and " -"select \"Export account\"" -msgstr "" - -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Antall daglige veggmeldinger for %s er overskredet. Melding mislyktes." - -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 -msgid "No recipient selected." -msgstr "Ingen mottaker valgt." - -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "" - -#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 -msgid "Message could not be sent." -msgstr "Meldingen kunne ikke sendes." - -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "" - -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -msgid "Message sent." -msgstr "Melding sendt." - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "" - -#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131 -#: ../../mod/message.php:249 ../../mod/message.php:257 -#: ../../include/conversation.php:905 ../../include/conversation.php:923 -msgid "Please enter a link URL:" -msgstr "Vennligst skriv inn en lenke URL:" - -#: ../../mod/wallmessage.php:138 ../../mod/message.php:285 -msgid "Send Private Message" -msgstr "Send privat melding" - -#: ../../mod/wallmessage.php:139 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "" - -#: ../../mod/wallmessage.php:140 ../../mod/message.php:286 -#: ../../mod/message.php:476 -msgid "To:" -msgstr "Til:" - -#: ../../mod/wallmessage.php:141 ../../mod/message.php:291 -#: ../../mod/message.php:478 -msgid "Subject:" -msgstr "Emne:" - -#: ../../mod/wallmessage.php:147 ../../mod/message.php:295 -#: ../../mod/message.php:481 ../../mod/invite.php:113 -msgid "Your message:" -msgstr "Din melding:" - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Sjekkliste for nye medlemmer" - -#: ../../mod/newmember.php:12 -msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page. A link to this page " -"will be visible from your home page for two weeks after your initial " -"registration and then will quietly disappear." -msgstr "" - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "" - -#: ../../mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "" - -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "" - -#: ../../mod/newmember.php:26 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "" - -#: ../../mod/newmember.php:28 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished" -" directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "Se over de andre innstillingene, særlig personverninnstillingene. En katalogoppføring som ikke er publisert er som å ha skjult telefonnummer. Generelt, så bør du antakelig publisere oppføringen, med mindre dine venner eller potensielle venner vet nøyaktig hvordan de skal finne deg." - -#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 -#: ../../view/theme/diabook/theme.php:88 ../../include/profile_advanced.php:7 -#: ../../include/profile_advanced.php:84 ../../include/nav.php:50 -#: ../../boot.php:1731 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84 +#: ../../include/nav.php:77 ../../mod/profperm.php:103 +#: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88 +#: ../../boot.php:1947 msgid "Profile" msgstr "Profil" -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "Last opp profilbilde" +#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1079 +msgid "Full Name:" +msgstr "Fullt navn:" -#: ../../mod/newmember.php:36 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make" -" friends than people who do not." -msgstr "Last opp et profilbilde hvis du ikke har gjort det allerede. Studier viser at folk som har ekte bilde av seg selv har ti ganger større sannsynlighet for å få venner enn folk som ikke gjør det." - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "" - -#: ../../mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Du kan endre standardprofilen din slik du ønsker. Se over innstillingene som lar deg skjule vennelisten og skjule profilen fra ukjente besøkende." - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "" - -#: ../../mod/newmember.php:40 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Legg til noen offentlige nøkkelord til standardprofilen din som beskriver dine interesser. Det kan hende vi klarer å finne andre folk med liknende interesser og foreslå vennskap." - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "" - -#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239 -#: ../../include/contact_selectors.php:81 -#: ../../addon.old/facebook/facebook.php:728 -#: ../../addon.old/fbpost/fbpost.php:239 -msgid "Facebook" -msgstr "Facebook" - -#: ../../mod/newmember.php:49 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "Tillat Facebook-koblingen hvis du har en Facebook-konto og vi vil (valgfritt) importere alle dine Facebook-venner og samtaler." - -#: ../../mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "" - -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "" - -#: ../../mod/newmember.php:56 -msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" -msgstr "" - -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "" - -#: ../../mod/newmember.php:58 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." -msgstr "" - -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "" - -#: ../../mod/newmember.php:60 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "Katalog-siden lar deg finne andre folk i dette nettverket eller andre forente nettsteder. Se etter en Connect eller Follow lenke på profilsiden deres. Oppgi din egen identitetsadresse hvis du blir forespurt om det." - -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "" - -#: ../../mod/newmember.php:62 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand" -" new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "" - -#: ../../mod/newmember.php:66 ../../include/group.php:270 -msgid "Groups" -msgstr "" - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "" - -#: ../../mod/newmember.php:70 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with" -" each group privately on your Network page." -msgstr "Når du har fått noen venner, så kan du organisere dem i private samtalegrupper i sidefeltet på Kontakt-siden din, og deretter kan du samhandle med hver gruppe privat på din Nettverk-side." - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "" - -#: ../../mod/newmember.php:73 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "" - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Våre hjelpesider kan leses for flere detaljer og ressurser om andre egenskaper ved programmet." - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Elementet er ikke tilgjengelig." - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Elementet ble ikke funnet." - -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Gruppen er laget." - -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Kunne ikke lage gruppen." - -#: ../../mod/group.php:47 ../../mod/group.php:137 -msgid "Group not found." -msgstr "Fant ikke gruppen." - -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Gruppenavnet er endret" - -#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:332 -msgid "Permission denied" -msgstr "Tilgang nektet" - -#: ../../mod/group.php:90 -msgid "Create a group of contacts/friends." -msgstr "Lag en gruppe med kontakter/venner." - -#: ../../mod/group.php:91 ../../mod/group.php:177 -msgid "Group Name: " -msgstr "Gruppenavn:" - -#: ../../mod/group.php:110 -msgid "Group removed." -msgstr "Gruppe fjernet." - -#: ../../mod/group.php:112 -msgid "Unable to remove group." -msgstr "Mislyktes med å fjerne gruppe." - -#: ../../mod/group.php:176 -msgid "Group Editor" -msgstr "Gruppebehandler" - -#: ../../mod/group.php:189 -msgid "Members" -msgstr "Medlemmer" - -#: ../../mod/group.php:221 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." -msgstr "Klikk på en kontakt for å legge til eller fjerne." - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Ugyldig profilidentifikator." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Behandle profilsynlighet" - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Synlig for" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Alle kontakter (med sikret profiltilgang)" - -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." -msgstr "Ingen kontakter." - -#: ../../mod/viewcontacts.php:76 ../../include/text.php:625 -msgid "View Contacts" -msgstr "Vis kontakter" - -#: ../../mod/register.php:89 ../../mod/regmod.php:52 -#, php-format -msgid "Registration details for %s" -msgstr "Registeringsdetaljer for %s" - -#: ../../mod/register.php:97 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Vellykket registrering. Vennligst sjekk e-posten din for videre instruksjoner." - -#: ../../mod/register.php:101 -msgid "Failed to send email message. Here is the message that failed." -msgstr "Mislyktes med å sende e-postmelding. Her er meldingen som mislyktes." - -#: ../../mod/register.php:106 -msgid "Your registration can not be processed." -msgstr "Din registrering kan ikke behandles." - -#: ../../mod/register.php:143 -#, php-format -msgid "Registration request at %s" -msgstr "Henvendelse om registrering ved %s" - -#: ../../mod/register.php:152 -msgid "Your registration is pending approval by the site owner." -msgstr "Din registrering venter på godkjenning fra eier av stedet." - -#: ../../mod/register.php:218 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Du kan (valgfritt) fylle ut dette skjemaet via OpenID ved å oppgi din OpenID og klikke \"Registrer\"." - -#: ../../mod/register.php:219 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Hvis du ikke er kjent med OpenID, vennligst la feltet stå tomt, og fyll ut de andre feltene." - -#: ../../mod/register.php:220 -msgid "Your OpenID (optional): " -msgstr "Din OpenID (valgfritt):" - -#: ../../mod/register.php:234 -msgid "Include your profile in member directory?" -msgstr "Legg til profilen din i medlemskatalogen?" - -#: ../../mod/register.php:256 -msgid "Membership on this site is by invitation only." -msgstr "Medlemskap ved dette nettstedet skjer bare på invitasjon." - -#: ../../mod/register.php:257 -msgid "Your invitation ID: " -msgstr "Din invitasjons-ID:" - -#: ../../mod/register.php:260 ../../mod/admin.php:446 -msgid "Registration" -msgstr "Registrering" - -#: ../../mod/register.php:268 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Ditt fulle navn (f.eks. Ola Nordmann):" - -#: ../../mod/register.php:269 -msgid "Your Email Address: " -msgstr "Din e-postadresse:" - -#: ../../mod/register.php:270 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Velg et kallenavn til profilen. Dette må begynne med en bokstav. Din profiladresse på dette stedet vil bli \"kallenavn@$sitename\"." - -#: ../../mod/register.php:271 -msgid "Choose a nickname: " -msgstr "Velg et kallenavn:" - -#: ../../mod/register.php:274 ../../include/nav.php:81 ../../boot.php:923 -msgid "Register" -msgstr "Registrer" - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Personsøk" - -#: ../../mod/like.php:145 ../../mod/subthread.php:87 ../../mod/tagger.php:62 -#: ../../addon/communityhome/communityhome.php:163 -#: ../../view/theme/diabook/theme.php:464 ../../include/text.php:1442 -#: ../../include/diaspora.php:1848 ../../include/conversation.php:125 -#: ../../include/conversation.php:253 -#: ../../addon.old/communityhome/communityhome.php:163 -msgid "photo" -msgstr "bilde" - -#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/subthread.php:87 -#: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1598 -#: ../../addon/communityhome/communityhome.php:158 -#: ../../addon/communityhome/communityhome.php:167 -#: ../../view/theme/diabook/theme.php:459 -#: ../../view/theme/diabook/theme.php:468 ../../include/diaspora.php:1848 -#: ../../include/conversation.php:120 ../../include/conversation.php:129 -#: ../../include/conversation.php:248 ../../include/conversation.php:257 -#: ../../addon.old/facebook/facebook.php:1598 -#: ../../addon.old/communityhome/communityhome.php:158 -#: ../../addon.old/communityhome/communityhome.php:167 -msgid "status" -msgstr "status" - -#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602 -#: ../../addon/communityhome/communityhome.php:172 -#: ../../view/theme/diabook/theme.php:473 ../../include/diaspora.php:1864 -#: ../../include/conversation.php:136 -#: ../../addon.old/facebook/facebook.php:1602 -#: ../../addon.old/communityhome/communityhome.php:172 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s liker %2$s's %3$s" - -#: ../../mod/like.php:164 ../../include/conversation.php:139 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s liker ikke %2$s's %3$s" - -#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159 -#: ../../mod/admin.php:737 ../../mod/admin.php:936 ../../mod/display.php:39 -#: ../../mod/display.php:169 ../../include/items.php:3843 -msgid "Item not found." -msgstr "Enheten ble ikke funnet." - -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "" - -#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90 -#: ../../include/nav.php:51 ../../boot.php:1738 -msgid "Photos" -msgstr "Bilder" - -#: ../../mod/fbrowser.php:96 -msgid "Files" -msgstr "" - -#: ../../mod/regmod.php:61 -msgid "Account approved." -msgstr "Konto godkjent." - -#: ../../mod/regmod.php:98 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registreringen til %s er trukket tilbake" - -#: ../../mod/regmod.php:110 -msgid "Please login." -msgstr "Vennligst logg inn." - -#: ../../mod/item.php:104 -msgid "Unable to locate original post." -msgstr "Mislyktes med å lokalisere opprinnelig melding." - -#: ../../mod/item.php:288 -msgid "Empty post discarded." -msgstr "Tom melding forkastet." - -#: ../../mod/item.php:424 ../../mod/wall_upload.php:135 -#: ../../mod/wall_upload.php:144 ../../mod/wall_upload.php:151 -#: ../../include/message.php:144 -msgid "Wall Photos" -msgstr "Veggbilder" - -#: ../../mod/item.php:837 -msgid "System error. Post not saved." -msgstr "Systemfeil. Meldingen ble ikke lagret." - -#: ../../mod/item.php:862 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "" - -#: ../../mod/item.php:864 -#, php-format -msgid "You may visit them online at %s" -msgstr "Du kan besøke dem online på %s" - -#: ../../mod/item.php:865 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Vennligst kontakt avsenderen ved å svare på denne meldingen hvis du ikke ønsker å motta disse meldingene." - -#: ../../mod/item.php:867 -#, php-format -msgid "%s posted an update." -msgstr "%s postet en oppdatering." - -#: ../../mod/mood.php:62 ../../include/conversation.php:226 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "" - -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Bildet ble lastet opp, men beskjæringen mislyktes." - -#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 -#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Reduksjon av bildestørrelse [%s] mislyktes." - -#: ../../mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Shift-last-siden-på-nytt eller slett mellomlagret i nettleseren hvis det nye bildet ikke vises umiddelbart." - -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Mislyktes med å behandle bilde" - -#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:90 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Bildets størrelse overstiger størrelsesbegrensningen på %d" - -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Last opp fil:" - -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "" - -#: ../../mod/profile_photo.php:245 -#: ../../addon/dav/friendica/layout.fnk.php:152 -#: ../../addon.old/dav/friendica/layout.fnk.php:152 -msgid "Upload" -msgstr "Last opp" - -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "hopp over dette steget" - -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "velg et bilde fra dine fotoalbum" - -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Beskjær bilde" - -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Vennligst juster beskjæringen av bildet for optimal visning." - -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Behandling ferdig" - -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Bilde ble lastet opp." - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Ingen profil" - -#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 -msgid "Remove My Account" -msgstr "Slett min konto" - -#: ../../mod/removeme.php:46 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Dette vil slette din konto fullstendig. Når dette er gjort kan den ikke gjenopprettes." - -#: ../../mod/removeme.php:47 -msgid "Please enter your password for verification:" -msgstr "Vennligst skriv inn ditt passord for å bekrefte:" - -#: ../../mod/message.php:9 ../../include/nav.php:132 -msgid "New Message" -msgstr "Ny melding" - -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Mislyktes med å finne kontaktinformasjon." - -#: ../../mod/message.php:195 -msgid "Message deleted." -msgstr "Melding slettet." - -#: ../../mod/message.php:225 -msgid "Conversation removed." -msgstr "Samtale slettet." - -#: ../../mod/message.php:334 -msgid "No messages." -msgstr "Ingen meldinger." - -#: ../../mod/message.php:341 -#, php-format -msgid "Unknown sender - %s" -msgstr "" - -#: ../../mod/message.php:344 -#, php-format -msgid "You and %s" -msgstr "" - -#: ../../mod/message.php:347 -#, php-format -msgid "%s and You" -msgstr "" - -#: ../../mod/message.php:357 ../../mod/message.php:469 -msgid "Delete conversation" -msgstr "Slett samtale" - -#: ../../mod/message.php:360 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/message.php:363 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/message.php:398 -msgid "Message not available." -msgstr "Melding utilgjengelig." - -#: ../../mod/message.php:451 -msgid "Delete message" -msgstr "Slett melding" - -#: ../../mod/message.php:471 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: ../../mod/message.php:475 -msgid "Send Reply" -msgstr "Send svar" - -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Venner av %s" - -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Ingen venner å vise." - -#: ../../mod/admin.php:55 -msgid "Theme settings updated." -msgstr "" - -#: ../../mod/admin.php:96 ../../mod/admin.php:444 -msgid "Site" -msgstr "Nettsted" - -#: ../../mod/admin.php:97 ../../mod/admin.php:691 ../../mod/admin.php:704 -msgid "Users" -msgstr "Brukere" - -#: ../../mod/admin.php:98 ../../mod/admin.php:786 ../../mod/admin.php:828 -msgid "Plugins" -msgstr "Tillegg" - -#: ../../mod/admin.php:99 ../../mod/admin.php:991 ../../mod/admin.php:1027 -msgid "Themes" -msgstr "" - -#: ../../mod/admin.php:100 -msgid "DB updates" -msgstr "" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1114 -msgid "Logs" -msgstr "Logger" - -#: ../../mod/admin.php:120 ../../include/nav.php:149 -msgid "Admin" -msgstr "Administrator" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "Brukerregistreringer venter på bekreftelse" - -#: ../../mod/admin.php:183 ../../mod/admin.php:672 -msgid "Normal Account" -msgstr "Vanlig konto" - -#: ../../mod/admin.php:184 ../../mod/admin.php:673 -msgid "Soapbox Account" -msgstr "Talerstol-konto" - -#: ../../mod/admin.php:185 ../../mod/admin.php:674 -msgid "Community/Celebrity Account" -msgstr "Gruppe-/kjendiskonto" - -#: ../../mod/admin.php:186 ../../mod/admin.php:675 -msgid "Automatic Friend Account" -msgstr "Automatisk vennekonto" - -#: ../../mod/admin.php:187 -msgid "Blog Account" -msgstr "" - -#: ../../mod/admin.php:188 -msgid "Private Forum" -msgstr "" - -#: ../../mod/admin.php:207 -msgid "Message queues" -msgstr "" - -#: ../../mod/admin.php:212 ../../mod/admin.php:443 ../../mod/admin.php:690 -#: ../../mod/admin.php:785 ../../mod/admin.php:827 ../../mod/admin.php:990 -#: ../../mod/admin.php:1026 ../../mod/admin.php:1113 -msgid "Administration" -msgstr "Administrasjon" - -#: ../../mod/admin.php:213 -msgid "Summary" -msgstr "Oppsummering" - -#: ../../mod/admin.php:215 -msgid "Registered users" -msgstr "Registrerte brukere" - -#: ../../mod/admin.php:217 -msgid "Pending registrations" -msgstr "Ventende registreringer" - -#: ../../mod/admin.php:218 -msgid "Version" -msgstr "Versjon" - -#: ../../mod/admin.php:220 -msgid "Active plugins" -msgstr "Aktive tillegg" - -#: ../../mod/admin.php:375 -msgid "Site settings updated." -msgstr "Nettstedets innstillinger er oppdatert." - -#: ../../mod/admin.php:430 -msgid "Closed" -msgstr "Stengt" - -#: ../../mod/admin.php:431 -msgid "Requires approval" -msgstr "Krever godkjenning" - -#: ../../mod/admin.php:432 -msgid "Open" -msgstr "Åpen" - -#: ../../mod/admin.php:436 -msgid "No SSL policy, links will track page SSL state" -msgstr "" - -#: ../../mod/admin.php:437 -msgid "Force all links to use SSL" -msgstr "" - -#: ../../mod/admin.php:438 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "" - -#: ../../mod/admin.php:447 -msgid "File upload" -msgstr "Last opp fil" - -#: ../../mod/admin.php:448 -msgid "Policies" -msgstr "Retningslinjer" - -#: ../../mod/admin.php:449 -msgid "Advanced" -msgstr "Avansert" - -#: ../../mod/admin.php:453 ../../addon/statusnet/statusnet.php:676 -#: ../../addon.old/statusnet/statusnet.php:567 -msgid "Site name" -msgstr "Nettstedets navn" - -#: ../../mod/admin.php:454 -msgid "Banner/Logo" -msgstr "Banner/logo" - -#: ../../mod/admin.php:455 -msgid "System language" -msgstr "Systemspråk" - -#: ../../mod/admin.php:456 -msgid "System theme" -msgstr "Systemtema" - -#: ../../mod/admin.php:456 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: ../../mod/admin.php:457 -msgid "Mobile system theme" -msgstr "" - -#: ../../mod/admin.php:457 -msgid "Theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:458 -msgid "SSL link policy" -msgstr "" - -#: ../../mod/admin.php:458 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "" - -#: ../../mod/admin.php:459 -msgid "Maximum image size" -msgstr "Maksimum bildestørrelse" - -#: ../../mod/admin.php:459 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: ../../mod/admin.php:460 -msgid "Maximum image length" -msgstr "" - -#: ../../mod/admin.php:460 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "" - -#: ../../mod/admin.php:461 -msgid "JPEG image quality" -msgstr "" - -#: ../../mod/admin.php:461 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "" - -#: ../../mod/admin.php:463 -msgid "Register policy" -msgstr "Registrer retningslinjer" - -#: ../../mod/admin.php:464 -msgid "Maximum Daily Registrations" -msgstr "" - -#: ../../mod/admin.php:464 -msgid "" -"If registration is permitted above, this sets the maximum number of new user" -" registrations to accept per day. If register is set to closed, this " -"setting has no effect." -msgstr "" - -#: ../../mod/admin.php:465 -msgid "Register text" -msgstr "Registrer tekst" - -#: ../../mod/admin.php:465 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: ../../mod/admin.php:466 -msgid "Accounts abandoned after x days" -msgstr "" - -#: ../../mod/admin.php:466 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" - -#: ../../mod/admin.php:467 -msgid "Allowed friend domains" -msgstr "Tillate vennedomener" - -#: ../../mod/admin.php:467 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "" - -#: ../../mod/admin.php:468 -msgid "Allowed email domains" -msgstr "Tillate e-postdomener" - -#: ../../mod/admin.php:468 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "" - -#: ../../mod/admin.php:469 -msgid "Block public" -msgstr "Utesteng publikum" - -#: ../../mod/admin.php:469 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "" - -#: ../../mod/admin.php:470 -msgid "Force publish" -msgstr "Tving publisering" - -#: ../../mod/admin.php:470 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: ../../mod/admin.php:471 -msgid "Global directory update URL" -msgstr "URL for oppdatering av Global-katalog" - -#: ../../mod/admin.php:471 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "" - -#: ../../mod/admin.php:472 -msgid "Allow threaded items" -msgstr "" - -#: ../../mod/admin.php:472 -msgid "Allow infinite level threading for items on this site." -msgstr "" - -#: ../../mod/admin.php:473 -msgid "Private posts by default for new users" -msgstr "" - -#: ../../mod/admin.php:473 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "" - -#: ../../mod/admin.php:475 -msgid "Block multiple registrations" -msgstr "Blokker flere registreringer" - -#: ../../mod/admin.php:475 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "" - -#: ../../mod/admin.php:476 -msgid "OpenID support" -msgstr "OpenID-støtte" - -#: ../../mod/admin.php:476 -msgid "OpenID support for registration and logins." -msgstr "" - -#: ../../mod/admin.php:477 -msgid "Fullname check" -msgstr "Sjekk fullt navn" - -#: ../../mod/admin.php:477 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "" - -#: ../../mod/admin.php:478 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 regulære uttrykk" - -#: ../../mod/admin.php:478 -msgid "Use PHP UTF8 regular expressions" -msgstr "" - -#: ../../mod/admin.php:479 -msgid "Show Community Page" -msgstr "Vis Felleskap-side" - -#: ../../mod/admin.php:479 -msgid "" -"Display a Community page showing all recent public postings on this site." -msgstr "" - -#: ../../mod/admin.php:480 -msgid "Enable OStatus support" -msgstr "Aktiver Ostatus-støtte" - -#: ../../mod/admin.php:480 -msgid "" -"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "" - -#: ../../mod/admin.php:481 -msgid "Enable Diaspora support" -msgstr "" - -#: ../../mod/admin.php:481 -msgid "Provide built-in Diaspora network compatibility." -msgstr "" - -#: ../../mod/admin.php:482 -msgid "Only allow Friendica contacts" -msgstr "" - -#: ../../mod/admin.php:482 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "" - -#: ../../mod/admin.php:483 -msgid "Verify SSL" -msgstr "Bekreft SSL" - -#: ../../mod/admin.php:483 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you" -" cannot connect (at all) to self-signed SSL sites." -msgstr "" - -#: ../../mod/admin.php:484 -msgid "Proxy user" -msgstr "Brukernavn til mellomtjener" - -#: ../../mod/admin.php:485 -msgid "Proxy URL" -msgstr "Mellomtjener URL" - -#: ../../mod/admin.php:486 -msgid "Network timeout" -msgstr "Tidsavbrudd for nettverk" - -#: ../../mod/admin.php:486 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: ../../mod/admin.php:487 -msgid "Delivery interval" -msgstr "" - -#: ../../mod/admin.php:487 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "" - -#: ../../mod/admin.php:488 -msgid "Poll interval" -msgstr "" - -#: ../../mod/admin.php:488 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../mod/admin.php:489 -msgid "Maximum Load Average" -msgstr "" - -#: ../../mod/admin.php:489 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../mod/admin.php:506 -msgid "Update has been marked successful" -msgstr "" - -#: ../../mod/admin.php:516 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Utføring av %s mislyktes. Sjekk systemlogger." - -#: ../../mod/admin.php:519 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" - -#: ../../mod/admin.php:523 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: ../../mod/admin.php:526 -#, php-format -msgid "Update function %s could not be found." -msgstr "" - -#: ../../mod/admin.php:541 -msgid "No failed updates." -msgstr "Ingen mislykkede oppdateringer." - -#: ../../mod/admin.php:545 -msgid "Failed Updates" -msgstr "Mislykkede oppdateringer" - -#: ../../mod/admin.php:546 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "" - -#: ../../mod/admin.php:547 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: ../../mod/admin.php:548 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: ../../mod/admin.php:573 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:580 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s bruker slettet" -msgstr[1] "%s brukere slettet" - -#: ../../mod/admin.php:619 -#, php-format -msgid "User '%s' deleted" -msgstr "Brukeren '%s' er slettet" - -#: ../../mod/admin.php:627 -#, php-format -msgid "User '%s' unblocked" -msgstr "Brukeren '%s' er ikke blokkert" - -#: ../../mod/admin.php:627 -#, php-format -msgid "User '%s' blocked" -msgstr "Brukeren '%s' er blokkert" - -#: ../../mod/admin.php:693 -msgid "select all" -msgstr "velg alle" - -#: ../../mod/admin.php:694 -msgid "User registrations waiting for confirm" -msgstr "Brukerregistreringer venter på bekreftelse" - -#: ../../mod/admin.php:695 -msgid "Request date" -msgstr "Forespørselsdato" - -#: ../../mod/admin.php:695 ../../mod/admin.php:705 -#: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 -msgid "Email" -msgstr "E-post" - -#: ../../mod/admin.php:696 -msgid "No registrations." -msgstr "Ingen registreringer." - -#: ../../mod/admin.php:698 -msgid "Deny" -msgstr "Nekt" - -#: ../../mod/admin.php:702 -msgid "Site admin" -msgstr "" - -#: ../../mod/admin.php:705 -msgid "Register date" -msgstr "Registreringsdato" - -#: ../../mod/admin.php:705 -msgid "Last login" -msgstr "Siste innlogging" - -#: ../../mod/admin.php:705 -msgid "Last item" -msgstr "Siste element" - -#: ../../mod/admin.php:705 -msgid "Account" -msgstr "Konto" - -#: ../../mod/admin.php:707 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Valgte brukere vil bli slettet!\\n\\nAlt disse brukerne har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse brukerne?" - -#: ../../mod/admin.php:708 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Brukeren {0} vil bli slettet!\\n\\nAlt denne brukeren har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne brukeren?" - -#: ../../mod/admin.php:749 -#, php-format -msgid "Plugin %s disabled." -msgstr "Tillegget %s er avskrudd." - -#: ../../mod/admin.php:753 -#, php-format -msgid "Plugin %s enabled." -msgstr "Tillegget %s er aktivert." - -#: ../../mod/admin.php:763 ../../mod/admin.php:961 -msgid "Disable" -msgstr "Skru av" - -#: ../../mod/admin.php:765 ../../mod/admin.php:963 -msgid "Enable" -msgstr "Aktiver" - -#: ../../mod/admin.php:787 ../../mod/admin.php:992 -msgid "Toggle" -msgstr "Veksle" - -#: ../../mod/admin.php:795 ../../mod/admin.php:1002 -msgid "Author: " -msgstr "" - -#: ../../mod/admin.php:796 ../../mod/admin.php:1003 -msgid "Maintainer: " -msgstr "" - -#: ../../mod/admin.php:925 -msgid "No themes found." -msgstr "" - -#: ../../mod/admin.php:984 -msgid "Screenshot" -msgstr "" - -#: ../../mod/admin.php:1032 -msgid "[Experimental]" -msgstr "" - -#: ../../mod/admin.php:1033 -msgid "[Unsupported]" -msgstr "" - -#: ../../mod/admin.php:1060 -msgid "Log settings updated." -msgstr "Logginnstillinger er oppdatert." - -#: ../../mod/admin.php:1116 -msgid "Clear" -msgstr "Tøm" - -#: ../../mod/admin.php:1122 -msgid "Debugging" -msgstr "Feilsøking" - -#: ../../mod/admin.php:1123 -msgid "Log file" -msgstr "Loggfil" - -#: ../../mod/admin.php:1123 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "" - -#: ../../mod/admin.php:1124 -msgid "Log level" -msgstr "Loggnivå" - -#: ../../mod/admin.php:1174 -msgid "Close" -msgstr "Lukk" - -#: ../../mod/admin.php:1180 -msgid "FTP Host" -msgstr "FTP-tjener" - -#: ../../mod/admin.php:1181 -msgid "FTP Path" -msgstr "FTP-sti" - -#: ../../mod/admin.php:1182 -msgid "FTP User" -msgstr "FTP-bruker" - -#: ../../mod/admin.php:1183 -msgid "FTP Password" -msgstr "FTP-passord" - -#: ../../mod/profile.php:21 ../../boot.php:1126 -msgid "Requested profile is not available." -msgstr "" - -#: ../../mod/profile.php:155 ../../mod/display.php:87 -msgid "Access to this profile has been restricted." -msgstr "Tilgang til denne profilen er blitt begrenset." - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Tips til nye medlemmer" - -#: ../../mod/ping.php:238 -msgid "{0} wants to be your friend" -msgstr "{0} ønsker å bli din venn" - -#: ../../mod/ping.php:243 -msgid "{0} sent you a message" -msgstr "{0} sendte deg en melding" - -#: ../../mod/ping.php:248 -msgid "{0} requested registration" -msgstr "{0} forespurte om registrering" - -#: ../../mod/ping.php:254 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} kommenterte %s sitt innlegg" - -#: ../../mod/ping.php:259 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0} likte %s sitt innlegg" - -#: ../../mod/ping.php:264 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} likte ikke %s sitt innlegg" - -#: ../../mod/ping.php:269 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} er nå venner med %s" - -#: ../../mod/ping.php:274 -msgid "{0} posted" -msgstr "{0} postet et innlegg" - -#: ../../mod/ping.php:279 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} merket %s sitt innlegg med #%s" - -#: ../../mod/ping.php:285 -msgid "{0} mentioned you in a post" -msgstr "" - -#: ../../mod/nogroup.php:58 -msgid "Contacts who are not members of a group" -msgstr "" - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "" - -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "" - -#: ../../mod/openid.php:93 ../../include/auth.php:110 -#: ../../include/auth.php:173 -msgid "Login failed." -msgstr "Innlogging mislyktes." - -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "" - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: ../../mod/share.php:28 -msgid "link" -msgstr "" - -#: ../../mod/display.php:162 -msgid "Item has been removed." -msgstr "Elementet har blitt slettet." - -#: ../../mod/apps.php:4 -msgid "Applications" -msgstr "Programmer" - -#: ../../mod/apps.php:7 -msgid "No installed applications." -msgstr "Ingen installerte programmer." - -#: ../../mod/search.php:99 ../../include/text.php:685 -#: ../../include/text.php:686 ../../include/nav.php:91 -msgid "Search" -msgstr "Søk" - -#: ../../mod/profiles.php:21 ../../mod/profiles.php:441 -#: ../../mod/profiles.php:555 ../../mod/dfrn_confirm.php:62 -msgid "Profile not found." -msgstr "Fant ikke profilen." - -#: ../../mod/profiles.php:31 -msgid "Profile Name is required." -msgstr "Profilnavn er påkrevet." - -#: ../../mod/profiles.php:178 -msgid "Marital Status" -msgstr "" - -#: ../../mod/profiles.php:182 -msgid "Romantic Partner" -msgstr "" - -#: ../../mod/profiles.php:186 -msgid "Likes" -msgstr "" - -#: ../../mod/profiles.php:190 -msgid "Dislikes" -msgstr "" - -#: ../../mod/profiles.php:194 -msgid "Work/Employment" -msgstr "" - -#: ../../mod/profiles.php:197 -msgid "Religion" -msgstr "" - -#: ../../mod/profiles.php:201 -msgid "Political Views" -msgstr "" - -#: ../../mod/profiles.php:205 -msgid "Gender" -msgstr "" - -#: ../../mod/profiles.php:209 -msgid "Sexual Preference" -msgstr "" - -#: ../../mod/profiles.php:213 -msgid "Homepage" -msgstr "" - -#: ../../mod/profiles.php:217 -msgid "Interests" -msgstr "" - -#: ../../mod/profiles.php:221 -msgid "Address" -msgstr "" - -#: ../../mod/profiles.php:228 ../../addon/dav/common/wdcal_edit.inc.php:183 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:183 -msgid "Location" -msgstr "" - -#: ../../mod/profiles.php:311 -msgid "Profile updated." -msgstr "Profil oppdatert." - -#: ../../mod/profiles.php:378 -msgid " and " -msgstr "" - -#: ../../mod/profiles.php:386 -msgid "public profile" -msgstr "" - -#: ../../mod/profiles.php:389 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - -#: ../../mod/profiles.php:390 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "" - -#: ../../mod/profiles.php:393 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" - -#: ../../mod/profiles.php:460 -msgid "Profile deleted." -msgstr "Profil slettet." - -#: ../../mod/profiles.php:478 ../../mod/profiles.php:512 -msgid "Profile-" -msgstr "Profil-" - -#: ../../mod/profiles.php:497 ../../mod/profiles.php:539 -msgid "New profile created." -msgstr "Ny profil opprettet." - -#: ../../mod/profiles.php:518 -msgid "Profile unavailable to clone." -msgstr "Profilen er utilgjengelig for kloning." - -#: ../../mod/profiles.php:583 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Skjul kontakten/vennen din fra folk som kan se denne profilen?" - -#: ../../mod/profiles.php:603 -msgid "Edit Profile Details" -msgstr "Endre profildetaljer" - -#: ../../mod/profiles.php:605 -msgid "View this profile" -msgstr "Vis denne profilen" - -#: ../../mod/profiles.php:606 -msgid "Create a new profile using these settings" -msgstr "Opprett en ny profil med disse innstillingene" - -#: ../../mod/profiles.php:607 -msgid "Clone this profile" -msgstr "Klon denne profilen" - -#: ../../mod/profiles.php:608 -msgid "Delete this profile" -msgstr "Slette denne profilen" - -#: ../../mod/profiles.php:609 -msgid "Profile Name:" -msgstr "Profilnavn:" - -#: ../../mod/profiles.php:610 -msgid "Your Full Name:" -msgstr "Ditt fulle navn:" - -#: ../../mod/profiles.php:611 -msgid "Title/Description:" -msgstr "Tittel/Beskrivelse:" - -#: ../../mod/profiles.php:612 -msgid "Your Gender:" -msgstr "Ditt kjønn:" - -#: ../../mod/profiles.php:613 -#, php-format -msgid "Birthday (%s):" -msgstr "Fødselsdag (%s):" - -#: ../../mod/profiles.php:614 -msgid "Street Address:" -msgstr "Gateadresse:" - -#: ../../mod/profiles.php:615 -msgid "Locality/City:" -msgstr "Plassering/by:" - -#: ../../mod/profiles.php:616 -msgid "Postal/Zip Code:" -msgstr "Postnummer:" - -#: ../../mod/profiles.php:617 -msgid "Country:" -msgstr "Land:" - -#: ../../mod/profiles.php:618 -msgid "Region/State:" -msgstr "Region/fylke:" - -#: ../../mod/profiles.php:619 -msgid " Marital Status:" -msgstr " Sivilstand:" - -#: ../../mod/profiles.php:620 -msgid "Who: (if applicable)" -msgstr "Hvem: (hvis gjeldende)" - -#: ../../mod/profiles.php:621 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Eksempler: kari123, Kari Nordmann, kari@example.com" - -#: ../../mod/profiles.php:622 -msgid "Since [date]:" -msgstr "" - -#: ../../mod/profiles.php:623 ../../include/profile_advanced.php:46 -msgid "Sexual Preference:" -msgstr "Seksuell orientering:" - -#: ../../mod/profiles.php:624 -msgid "Homepage URL:" -msgstr "Hjemmeside URL:" - -#: ../../mod/profiles.php:625 ../../include/profile_advanced.php:50 -msgid "Hometown:" -msgstr "" - -#: ../../mod/profiles.php:626 ../../include/profile_advanced.php:54 -msgid "Political Views:" -msgstr "Politisk ståsted:" - -#: ../../mod/profiles.php:627 -msgid "Religious Views:" -msgstr "Religiøst ståsted:" - -#: ../../mod/profiles.php:628 -msgid "Public Keywords:" -msgstr "Offentlige nøkkelord:" - -#: ../../mod/profiles.php:629 -msgid "Private Keywords:" -msgstr "Private nøkkelord:" - -#: ../../mod/profiles.php:630 ../../include/profile_advanced.php:62 -msgid "Likes:" -msgstr "" - -#: ../../mod/profiles.php:631 ../../include/profile_advanced.php:64 -msgid "Dislikes:" -msgstr "" - -#: ../../mod/profiles.php:632 -msgid "Example: fishing photography software" -msgstr "Eksempel: fisking fotografering programvare" - -#: ../../mod/profiles.php:633 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Brukes for å foreslå mulige venner, kan ses av andre)" - -#: ../../mod/profiles.php:634 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Brukes for å søke i profiler, vises aldri til andre)" - -#: ../../mod/profiles.php:635 -msgid "Tell us about yourself..." -msgstr "Fortell oss om deg selv..." - -#: ../../mod/profiles.php:636 -msgid "Hobbies/Interests" -msgstr "Hobbier/interesser" - -#: ../../mod/profiles.php:637 -msgid "Contact information and Social Networks" -msgstr "Kontaktinformasjon og sosiale nettverk" - -#: ../../mod/profiles.php:638 -msgid "Musical interests" -msgstr "Musikksmak" - -#: ../../mod/profiles.php:639 -msgid "Books, literature" -msgstr "Bøker, litteratur" - -#: ../../mod/profiles.php:640 -msgid "Television" -msgstr "TV" - -#: ../../mod/profiles.php:641 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/kultur/underholdning" - -#: ../../mod/profiles.php:642 -msgid "Love/romance" -msgstr "Kjærlighet/romanse" - -#: ../../mod/profiles.php:643 -msgid "Work/employment" -msgstr "Arbeid/ansatt hos" - -#: ../../mod/profiles.php:644 -msgid "School/education" -msgstr "Skole/utdanning" - -#: ../../mod/profiles.php:649 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Dette er din offentlige profil.
Den kan ses av alle på Internet." - -#: ../../mod/profiles.php:659 ../../mod/directory.php:111 -#: ../../addon/forumdirectory/forumdirectory.php:133 -msgid "Age: " -msgstr "Alder:" - -#: ../../mod/profiles.php:698 -msgid "Edit/Manage Profiles" -msgstr "Rediger/Behandle profiler" - -#: ../../mod/profiles.php:699 ../../boot.php:1244 -msgid "Change profile photo" -msgstr "Endre profilbilde" - -#: ../../mod/profiles.php:700 ../../boot.php:1245 -msgid "Create New Profile" -msgstr "Lag ny profil" - -#: ../../mod/profiles.php:711 ../../boot.php:1255 -msgid "Profile Image" -msgstr "Profilbilde" - -#: ../../mod/profiles.php:713 ../../boot.php:1258 -msgid "visible to everybody" -msgstr "synlig for alle" - -#: ../../mod/profiles.php:714 ../../boot.php:1259 -msgid "Edit visibility" -msgstr "Endre synlighet" - -#: ../../mod/filer.php:29 ../../include/conversation.php:909 -#: ../../include/conversation.php:927 -msgid "Save to Folder:" -msgstr "" - -#: ../../mod/filer.php:29 -msgid "- select -" -msgstr "" - -#: ../../mod/tagger.php:95 ../../include/conversation.php:265 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s merket %2$s sitt %3$s med %4$s" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "" - -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Deleger sidebehandling" - -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Delegater kan behandle alle sider ved denne kontoen/siden, bortsett fra grunnleggende kontoinnstillinger. Vennligst ikke deleger din personlige konto til noen som du ikke stoler fullt og fast på." - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Eksisterende sidebehandlere" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "" - -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "" - -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "" - -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "" - -#: ../../mod/babel.php:35 -msgid "bb2html: " -msgstr "" - -#: ../../mod/babel.php:39 -msgid "bb2html2bb: " -msgstr "" - -#: ../../mod/babel.php:43 -msgid "bb2md: " -msgstr "" - -#: ../../mod/babel.php:47 -msgid "bb2md2html: " -msgstr "" - -#: ../../mod/babel.php:51 -msgid "bb2dia2bb: " -msgstr "" - -#: ../../mod/babel.php:55 -msgid "bb2md2html2bb: " -msgstr "" - -#: ../../mod/babel.php:65 -msgid "Source input (Diaspora format): " -msgstr "" - -#: ../../mod/babel.php:70 -msgid "diaspora2bb: " -msgstr "" - -#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:520 -#: ../../include/contact_widgets.php:34 -msgid "Friend Suggestions" -msgstr "Venneforslag" - -#: ../../mod/suggest.php:44 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" - -#: ../../mod/suggest.php:61 -msgid "Ignore/Hide" -msgstr "Ignorér/Skjul" - -#: ../../mod/directory.php:49 ../../addon/forumdirectory/forumdirectory.php:71 -#: ../../view/theme/diabook/theme.php:518 -msgid "Global Directory" -msgstr "Global katalog" - -#: ../../mod/directory.php:57 ../../addon/forumdirectory/forumdirectory.php:79 -msgid "Find on this site" -msgstr "" - -#: ../../mod/directory.php:60 ../../addon/forumdirectory/forumdirectory.php:82 -msgid "Site Directory" -msgstr "Stedets katalog" - -#: ../../mod/directory.php:114 -#: ../../addon/forumdirectory/forumdirectory.php:136 -msgid "Gender: " -msgstr "Kjønn:" - -#: ../../mod/directory.php:136 -#: ../../addon/forumdirectory/forumdirectory.php:158 -#: ../../include/profile_advanced.php:17 ../../boot.php:1280 +#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136 +#: ../../boot.php:1487 msgid "Gender:" msgstr "Kjønn:" -#: ../../mod/directory.php:138 -#: ../../addon/forumdirectory/forumdirectory.php:160 -#: ../../include/profile_advanced.php:37 ../../boot.php:1283 -msgid "Status:" -msgstr "Status:" - -#: ../../mod/directory.php:140 -#: ../../addon/forumdirectory/forumdirectory.php:162 -#: ../../include/profile_advanced.php:48 ../../boot.php:1285 -msgid "Homepage:" -msgstr "Hjemmeside:" - -#: ../../mod/directory.php:142 -#: ../../addon/forumdirectory/forumdirectory.php:164 -#: ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "Om:" - -#: ../../mod/directory.php:180 -#: ../../addon/forumdirectory/forumdirectory.php:202 -msgid "No entries (some entries may be hidden)." -msgstr "Ingen oppføringer (noen oppføringer kan være skjulte)." - -#: ../../mod/invite.php:35 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Ugyldig e-postadresse." - -#: ../../mod/invite.php:59 -msgid "Please join us on Friendica" -msgstr "" - -#: ../../mod/invite.php:69 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Mislyktes med å levere meldingen." - -#: ../../mod/invite.php:73 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "one: %d melding sendt." -msgstr[1] "other: %d meldinger sendt." - -#: ../../mod/invite.php:92 -msgid "You have no more invitations available" -msgstr "Du har ingen flere tilgjengelige invitasjoner" - -#: ../../mod/invite.php:100 -#, php-format -msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "" - -#: ../../mod/invite.php:102 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "" - -#: ../../mod/invite.php:103 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "" - -#: ../../mod/invite.php:106 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Vi beklager. Dette systemet er for øyeblikket ikke konfigurert for forbindelser med andre offentlige nettsteder eller å invitere medlemmer." - -#: ../../mod/invite.php:111 -msgid "Send invitations" -msgstr "Send invitasjoner" - -#: ../../mod/invite.php:112 -msgid "Enter email addresses, one per line:" -msgstr "Skriv e-postadresser, en per linje:" - -#: ../../mod/invite.php:114 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "" - -#: ../../mod/invite.php:116 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Du må oppgi denne invitasjonskoden: $invite_code" - -#: ../../mod/invite.php:116 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Når du har registrert, vennligst kontakt meg via min profilside på:" - -#: ../../mod/invite.php:118 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "" - -#: ../../mod/dfrn_confirm.php:119 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "" - -#: ../../mod/dfrn_confirm.php:237 -msgid "Response from remote site was not understood." -msgstr "Forstod ikke svaret fra det andre stedet." - -#: ../../mod/dfrn_confirm.php:246 -msgid "Unexpected response from remote site: " -msgstr "Uventet svar fra det andre stedet:" - -#: ../../mod/dfrn_confirm.php:254 -msgid "Confirmation completed successfully." -msgstr "Sending av bekreftelse var vellykket. " - -#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 -#: ../../mod/dfrn_confirm.php:277 -msgid "Remote site reported: " -msgstr "Det andre stedet rapporterte:" - -#: ../../mod/dfrn_confirm.php:268 -msgid "Temporary failure. Please wait and try again." -msgstr "Midlertidig feil. Vennligst vent og prøv igjen." - -#: ../../mod/dfrn_confirm.php:275 -msgid "Introduction failed or was revoked." -msgstr "Introduksjon mislyktes eller ble trukket tilbake." - -#: ../../mod/dfrn_confirm.php:420 -msgid "Unable to set contact photo." -msgstr "Fikk ikke satt kontaktbilde." - -#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:619 -#: ../../include/conversation.php:171 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s er nå venner med %2$s" - -#: ../../mod/dfrn_confirm.php:562 -#, php-format -msgid "No user record found for '%s' " -msgstr "Ingen brukerregistrering funnet for '%s'" - -#: ../../mod/dfrn_confirm.php:572 -msgid "Our site encryption key is apparently messed up." -msgstr "Krypteringsnøkkelen til nettstedet vårt ser ut til å være ødelagt." - -#: ../../mod/dfrn_confirm.php:583 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "En tom nettsteds-URL ble oppgitt eller URL-en kunne ikke dekrypteres av oss." - -#: ../../mod/dfrn_confirm.php:604 -msgid "Contact record was not found for you on our site." -msgstr "Kontaktinformasjon om deg ble ikke funnet på vårt nettsted." - -#: ../../mod/dfrn_confirm.php:618 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "" - -#: ../../mod/dfrn_confirm.php:638 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "ID-en som ble oppgitt av ditt system har en duplikat i vårt system. Det bør virke hvis du prøver igjen." - -#: ../../mod/dfrn_confirm.php:649 -msgid "Unable to set your contact credentials on our system." -msgstr "Får ikke lagret din kontaktlegitamasjon på vårt system." - -#: ../../mod/dfrn_confirm.php:716 -msgid "Unable to update your contact profile details on our system" -msgstr "Får ikke oppdatert kontaktdetaljene dine på vårt system." - -#: ../../mod/dfrn_confirm.php:750 -#, php-format -msgid "Connection accepted at %s" -msgstr "Tilkobling godtatt på %s" - -#: ../../mod/dfrn_confirm.php:799 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "" - -#: ../../addon/fromgplus/fromgplus.php:29 -#: ../../addon.old/fromgplus/fromgplus.php:29 -msgid "Google+ Import Settings" -msgstr "" - -#: ../../addon/fromgplus/fromgplus.php:32 -#: ../../addon.old/fromgplus/fromgplus.php:32 -msgid "Enable Google+ Import" -msgstr "" - -#: ../../addon/fromgplus/fromgplus.php:35 -#: ../../addon.old/fromgplus/fromgplus.php:35 -msgid "Google Account ID" -msgstr "" - -#: ../../addon/fromgplus/fromgplus.php:55 -#: ../../addon.old/fromgplus/fromgplus.php:55 -msgid "Google+ Import Settings saved." -msgstr "" - -#: ../../addon/facebook/facebook.php:523 -#: ../../addon.old/facebook/facebook.php:523 -msgid "Facebook disabled" -msgstr "Facebook avskrudd" - -#: ../../addon/facebook/facebook.php:528 -#: ../../addon.old/facebook/facebook.php:528 -msgid "Updating contacts" -msgstr "Oppdaterer kontakter" - -#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192 -#: ../../addon.old/facebook/facebook.php:551 -#: ../../addon.old/fbpost/fbpost.php:192 -msgid "Facebook API key is missing." -msgstr "Facebook API-nøkkel mangler." - -#: ../../addon/facebook/facebook.php:558 -#: ../../addon.old/facebook/facebook.php:558 -msgid "Facebook Connect" -msgstr "Facebook-kobling" - -#: ../../addon/facebook/facebook.php:564 -#: ../../addon.old/facebook/facebook.php:564 -msgid "Install Facebook connector for this account." -msgstr "Legg til Facebook-kobling for denne kontoen." - -#: ../../addon/facebook/facebook.php:571 -#: ../../addon.old/facebook/facebook.php:571 -msgid "Remove Facebook connector" -msgstr "Fjern Facebook-kobling" - -#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217 -#: ../../addon.old/facebook/facebook.php:576 -#: ../../addon.old/fbpost/fbpost.php:217 -msgid "" -"Re-authenticate [This is necessary whenever your Facebook password is " -"changed.]" -msgstr "" - -#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224 -#: ../../addon.old/facebook/facebook.php:583 -#: ../../addon.old/fbpost/fbpost.php:224 -msgid "Post to Facebook by default" -msgstr "Post til Facebook som standard" - -#: ../../addon/facebook/facebook.php:589 -#: ../../addon.old/facebook/facebook.php:589 -msgid "" -"Facebook friend linking has been disabled on this site. The following " -"settings will have no effect." -msgstr "" - -#: ../../addon/facebook/facebook.php:593 -#: ../../addon.old/facebook/facebook.php:593 -msgid "" -"Facebook friend linking has been disabled on this site. If you disable it, " -"you will be unable to re-enable it." -msgstr "" - -#: ../../addon/facebook/facebook.php:596 -#: ../../addon.old/facebook/facebook.php:596 -msgid "Link all your Facebook friends and conversations on this website" -msgstr "" - -#: ../../addon/facebook/facebook.php:598 -#: ../../addon.old/facebook/facebook.php:598 -msgid "" -"Facebook conversations consist of your profile wall and your friend" -" stream." -msgstr "" - -#: ../../addon/facebook/facebook.php:599 -#: ../../addon.old/facebook/facebook.php:599 -msgid "On this website, your Facebook friend stream is only visible to you." -msgstr "" - -#: ../../addon/facebook/facebook.php:600 -#: ../../addon.old/facebook/facebook.php:600 -msgid "" -"The following settings determine the privacy of your Facebook profile wall " -"on this website." -msgstr "" - -#: ../../addon/facebook/facebook.php:604 -#: ../../addon.old/facebook/facebook.php:604 -msgid "" -"On this website your Facebook profile wall conversations will only be " -"visible to you" -msgstr "" - -#: ../../addon/facebook/facebook.php:609 -#: ../../addon.old/facebook/facebook.php:609 -msgid "Do not import your Facebook profile wall conversations" -msgstr "" - -#: ../../addon/facebook/facebook.php:611 -#: ../../addon.old/facebook/facebook.php:611 -msgid "" -"If you choose to link conversations and leave both of these boxes unchecked," -" your Facebook profile wall will be merged with your profile wall on this " -"website and your privacy settings on this website will be used to determine " -"who may see the conversations." -msgstr "" - -#: ../../addon/facebook/facebook.php:616 -#: ../../addon.old/facebook/facebook.php:616 -msgid "Comma separated applications to ignore" -msgstr "" - -#: ../../addon/facebook/facebook.php:700 -#: ../../addon.old/facebook/facebook.php:700 -msgid "Problems with Facebook Real-Time Updates" -msgstr "" - -#: ../../addon/facebook/facebook.php:729 -#: ../../addon.old/facebook/facebook.php:729 -msgid "Facebook Connector Settings" -msgstr "Innstillinger for Facebook-kobling" - -#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255 -#: ../../addon.old/facebook/facebook.php:744 -#: ../../addon.old/fbpost/fbpost.php:255 -msgid "Facebook API Key" -msgstr "" - -#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262 -#: ../../addon.old/facebook/facebook.php:754 -#: ../../addon.old/fbpost/fbpost.php:262 -msgid "" -"Error: it appears that you have specified the App-ID and -Secret in your " -".htconfig.php file. As long as they are specified there, they cannot be set " -"using this form.

" -msgstr "" - -#: ../../addon/facebook/facebook.php:759 -#: ../../addon.old/facebook/facebook.php:759 -msgid "" -"Error: the given API Key seems to be incorrect (the application access token" -" could not be retrieved)." -msgstr "" - -#: ../../addon/facebook/facebook.php:761 -#: ../../addon.old/facebook/facebook.php:761 -msgid "The given API Key seems to work correctly." -msgstr "" - -#: ../../addon/facebook/facebook.php:763 -#: ../../addon.old/facebook/facebook.php:763 -msgid "" -"The correctness of the API Key could not be detected. Something strange's " -"going on." -msgstr "" - -#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264 -#: ../../addon.old/facebook/facebook.php:766 -#: ../../addon.old/fbpost/fbpost.php:264 -msgid "App-ID / API-Key" -msgstr "" - -#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265 -#: ../../addon.old/facebook/facebook.php:767 -#: ../../addon.old/fbpost/fbpost.php:265 -msgid "Application secret" -msgstr "" - -#: ../../addon/facebook/facebook.php:768 -#: ../../addon.old/facebook/facebook.php:768 -#, php-format -msgid "Polling Interval in minutes (minimum %1$s minutes)" -msgstr "" - -#: ../../addon/facebook/facebook.php:769 -#: ../../addon.old/facebook/facebook.php:769 -msgid "" -"Synchronize comments (no comments on Facebook are missed, at the cost of " -"increased system load)" -msgstr "" - -#: ../../addon/facebook/facebook.php:773 -#: ../../addon.old/facebook/facebook.php:773 -msgid "Real-Time Updates" -msgstr "" - -#: ../../addon/facebook/facebook.php:777 -#: ../../addon.old/facebook/facebook.php:777 -msgid "Real-Time Updates are activated." -msgstr "" - -#: ../../addon/facebook/facebook.php:778 -#: ../../addon.old/facebook/facebook.php:778 -msgid "Deactivate Real-Time Updates" -msgstr "" - -#: ../../addon/facebook/facebook.php:780 -#: ../../addon.old/facebook/facebook.php:780 -msgid "Real-Time Updates not activated." -msgstr "" - -#: ../../addon/facebook/facebook.php:780 -#: ../../addon.old/facebook/facebook.php:780 -msgid "Activate Real-Time Updates" -msgstr "" - -#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282 -#: ../../addon/dav/friendica/layout.fnk.php:361 -#: ../../addon.old/facebook/facebook.php:799 -#: ../../addon.old/fbpost/fbpost.php:282 -#: ../../addon.old/dav/friendica/layout.fnk.php:361 -msgid "The new values have been saved." -msgstr "" - -#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301 -#: ../../addon.old/facebook/facebook.php:823 -#: ../../addon.old/fbpost/fbpost.php:301 -msgid "Post to Facebook" -msgstr "Post til Facebook" - -#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399 -#: ../../addon.old/facebook/facebook.php:921 -#: ../../addon.old/fbpost/fbpost.php:399 -msgid "" -"Post to Facebook cancelled because of multi-network access permission " -"conflict." -msgstr "Posting til Facebook avbrutt på grunn av konflikt med tilgangsrettigheter i multi-nettverk." - -#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610 -#: ../../addon.old/facebook/facebook.php:1149 -#: ../../addon.old/fbpost/fbpost.php:610 -msgid "View on Friendica" -msgstr "" - -#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643 -#: ../../addon.old/facebook/facebook.php:1182 -#: ../../addon.old/fbpost/fbpost.php:643 -msgid "Facebook post failed. Queued for retry." -msgstr "Facebook-innlegg mislyktes. Innlegget er lagt i kø for å prøve igjen." - -#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683 -#: ../../addon.old/facebook/facebook.php:1222 -#: ../../addon.old/fbpost/fbpost.php:683 -msgid "Your Facebook connection became invalid. Please Re-authenticate." -msgstr "" - -#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684 -#: ../../addon.old/facebook/facebook.php:1223 -#: ../../addon.old/fbpost/fbpost.php:684 -msgid "Facebook connection became invalid" -msgstr "" - -#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685 -#: ../../addon.old/facebook/facebook.php:1224 -#: ../../addon.old/fbpost/fbpost.php:685 -#, php-format -msgid "" -"Hi %1$s,\n" -"\n" -"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s." -msgstr "" - -#: ../../addon/snautofollow/snautofollow.php:32 -#: ../../addon.old/snautofollow/snautofollow.php:32 -msgid "StatusNet AutoFollow settings updated." -msgstr "" - -#: ../../addon/snautofollow/snautofollow.php:56 -#: ../../addon.old/snautofollow/snautofollow.php:56 -msgid "StatusNet AutoFollow Settings" -msgstr "" - -#: ../../addon/snautofollow/snautofollow.php:58 -#: ../../addon.old/snautofollow/snautofollow.php:58 -msgid "Automatically follow any StatusNet followers/mentioners" -msgstr "" - -#: ../../addon/privacy_image_cache/privacy_image_cache.php:278 -#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260 -msgid "Lifetime of the cache (in hours)" -msgstr "" - -#: ../../addon/privacy_image_cache/privacy_image_cache.php:283 -#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265 -msgid "Cache Statistics" -msgstr "" - -#: ../../addon/privacy_image_cache/privacy_image_cache.php:286 -#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268 -msgid "Number of items" -msgstr "" - -#: ../../addon/privacy_image_cache/privacy_image_cache.php:288 -#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270 -msgid "Size of the cache" -msgstr "" - -#: ../../addon/privacy_image_cache/privacy_image_cache.php:290 -#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272 -msgid "Delete the whole cache" -msgstr "" - -#: ../../addon/fbpost/fbpost.php:172 ../../addon.old/fbpost/fbpost.php:172 -msgid "Facebook Post disabled" -msgstr "" - -#: ../../addon/fbpost/fbpost.php:199 ../../addon.old/fbpost/fbpost.php:199 -msgid "Facebook Post" -msgstr "" - -#: ../../addon/fbpost/fbpost.php:205 ../../addon.old/fbpost/fbpost.php:205 -msgid "Install Facebook Post connector for this account." -msgstr "" - -#: ../../addon/fbpost/fbpost.php:212 ../../addon.old/fbpost/fbpost.php:212 -msgid "Remove Facebook Post connector" -msgstr "" - -#: ../../addon/fbpost/fbpost.php:240 ../../addon.old/fbpost/fbpost.php:240 -msgid "Facebook Post Settings" -msgstr "" - -#: ../../addon/widgets/widget_like.php:58 -#: ../../addon.old/widgets/widget_like.php:58 -#, php-format -msgid "%d person likes this" -msgid_plural "%d people like this" -msgstr[0] "" -msgstr[1] "" - -#: ../../addon/widgets/widget_like.php:61 -#: ../../addon.old/widgets/widget_like.php:61 -#, php-format -msgid "%d person doesn't like this" -msgid_plural "%d people don't like this" -msgstr[0] "" -msgstr[1] "" - -#: ../../addon/widgets/widget_friendheader.php:40 -#: ../../addon.old/widgets/widget_friendheader.php:40 -msgid "Get added to this list!" -msgstr "" - -#: ../../addon/widgets/widgets.php:56 ../../addon.old/widgets/widgets.php:56 -msgid "Generate new key" -msgstr "Lag ny nøkkel" - -#: ../../addon/widgets/widgets.php:59 ../../addon.old/widgets/widgets.php:59 -msgid "Widgets key" -msgstr "Nøkkel til småprogrammer" - -#: ../../addon/widgets/widgets.php:61 ../../addon.old/widgets/widgets.php:61 -msgid "Widgets available" -msgstr "Småprogrammer er tilgjengelige" - -#: ../../addon/widgets/widget_friends.php:40 -#: ../../addon.old/widgets/widget_friends.php:40 -msgid "Connect on Friendica!" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:19 -#: ../../addon.old/morepokes/morepokes.php:19 -msgid "bitchslap" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:19 -#: ../../addon.old/morepokes/morepokes.php:19 -msgid "bitchslapped" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:20 -#: ../../addon.old/morepokes/morepokes.php:20 -msgid "shag" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:20 -#: ../../addon.old/morepokes/morepokes.php:20 -msgid "shagged" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:21 -#: ../../addon.old/morepokes/morepokes.php:21 -msgid "do something obscenely biological to" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:21 -#: ../../addon.old/morepokes/morepokes.php:21 -msgid "did something obscenely biological to" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:22 -#: ../../addon.old/morepokes/morepokes.php:22 -msgid "point out the poke feature to" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:22 -#: ../../addon.old/morepokes/morepokes.php:22 -msgid "pointed out the poke feature to" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:23 -#: ../../addon.old/morepokes/morepokes.php:23 -msgid "declare undying love for" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:23 -#: ../../addon.old/morepokes/morepokes.php:23 -msgid "declared undying love for" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:24 -#: ../../addon.old/morepokes/morepokes.php:24 -msgid "patent" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:24 -#: ../../addon.old/morepokes/morepokes.php:24 -msgid "patented" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:25 -#: ../../addon.old/morepokes/morepokes.php:25 -msgid "stroke beard" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:25 -#: ../../addon.old/morepokes/morepokes.php:25 -msgid "stroked their beard at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:26 -#: ../../addon.old/morepokes/morepokes.php:26 -msgid "" -"bemoan the declining standards of modern secondary and tertiary education to" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:26 -#: ../../addon.old/morepokes/morepokes.php:26 -msgid "" -"bemoans the declining standards of modern secondary and tertiary education " -"to" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:27 -#: ../../addon.old/morepokes/morepokes.php:27 -msgid "hug" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:27 -#: ../../addon.old/morepokes/morepokes.php:27 -msgid "hugged" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:28 -#: ../../addon.old/morepokes/morepokes.php:28 -msgid "kiss" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:28 -#: ../../addon.old/morepokes/morepokes.php:28 -msgid "kissed" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:29 -#: ../../addon.old/morepokes/morepokes.php:29 -msgid "raise eyebrows at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:29 -#: ../../addon.old/morepokes/morepokes.php:29 -msgid "raised their eyebrows at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:30 -#: ../../addon.old/morepokes/morepokes.php:30 -msgid "insult" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:30 -#: ../../addon.old/morepokes/morepokes.php:30 -msgid "insulted" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:31 -#: ../../addon.old/morepokes/morepokes.php:31 -msgid "praise" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:31 -#: ../../addon.old/morepokes/morepokes.php:31 -msgid "praised" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:32 -#: ../../addon.old/morepokes/morepokes.php:32 -msgid "be dubious of" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:32 -#: ../../addon.old/morepokes/morepokes.php:32 -msgid "was dubious of" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:33 -#: ../../addon.old/morepokes/morepokes.php:33 -msgid "eat" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:33 -#: ../../addon.old/morepokes/morepokes.php:33 -msgid "ate" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:34 -#: ../../addon.old/morepokes/morepokes.php:34 -msgid "giggle and fawn at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:34 -#: ../../addon.old/morepokes/morepokes.php:34 -msgid "giggled and fawned at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:35 -#: ../../addon.old/morepokes/morepokes.php:35 -msgid "doubt" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:35 -#: ../../addon.old/morepokes/morepokes.php:35 -msgid "doubted" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:36 -#: ../../addon.old/morepokes/morepokes.php:36 -msgid "glare" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:36 -#: ../../addon.old/morepokes/morepokes.php:36 -msgid "glared at" -msgstr "" - -#: ../../addon/yourls/yourls.php:55 ../../addon.old/yourls/yourls.php:55 -msgid "YourLS Settings" -msgstr "" - -#: ../../addon/yourls/yourls.php:57 ../../addon.old/yourls/yourls.php:57 -msgid "URL: http://" -msgstr "" - -#: ../../addon/yourls/yourls.php:62 ../../addon.old/yourls/yourls.php:62 -msgid "Username:" -msgstr "" - -#: ../../addon/yourls/yourls.php:67 ../../addon.old/yourls/yourls.php:67 -msgid "Password:" -msgstr "" - -#: ../../addon/yourls/yourls.php:72 ../../addon.old/yourls/yourls.php:72 -msgid "Use SSL " -msgstr "" - -#: ../../addon/yourls/yourls.php:92 ../../addon.old/yourls/yourls.php:92 -msgid "yourls Settings saved." -msgstr "" - -#: ../../addon/ljpost/ljpost.php:39 ../../addon.old/ljpost/ljpost.php:39 -msgid "Post to LiveJournal" -msgstr "" - -#: ../../addon/ljpost/ljpost.php:70 ../../addon.old/ljpost/ljpost.php:70 -msgid "LiveJournal Post Settings" -msgstr "" - -#: ../../addon/ljpost/ljpost.php:72 ../../addon.old/ljpost/ljpost.php:72 -msgid "Enable LiveJournal Post Plugin" -msgstr "" - -#: ../../addon/ljpost/ljpost.php:77 ../../addon.old/ljpost/ljpost.php:77 -msgid "LiveJournal username" -msgstr "" - -#: ../../addon/ljpost/ljpost.php:82 ../../addon.old/ljpost/ljpost.php:82 -msgid "LiveJournal password" -msgstr "" - -#: ../../addon/ljpost/ljpost.php:87 ../../addon.old/ljpost/ljpost.php:87 -msgid "Post to LiveJournal by default" -msgstr "" - -#: ../../addon/nsfw/nsfw.php:78 ../../addon.old/nsfw/nsfw.php:78 -msgid "Not Safe For Work (General Purpose Content Filter) settings" -msgstr "" - -#: ../../addon/nsfw/nsfw.php:80 ../../addon.old/nsfw/nsfw.php:80 -msgid "" -"This plugin looks in posts for the words/text you specify below, and " -"collapses any content containing those keywords so it is not displayed at " -"inappropriate times, such as sexual innuendo that may be improper in a work " -"setting. It is polite and recommended to tag any content containing nudity " -"with #NSFW. This filter can also match any other word/text you specify, and" -" can thereby be used as a general purpose content filter." -msgstr "" - -#: ../../addon/nsfw/nsfw.php:81 ../../addon.old/nsfw/nsfw.php:81 -msgid "Enable Content filter" -msgstr "" - -#: ../../addon/nsfw/nsfw.php:84 ../../addon.old/nsfw/nsfw.php:84 -msgid "Comma separated list of keywords to hide" -msgstr "" - -#: ../../addon/nsfw/nsfw.php:89 ../../addon.old/nsfw/nsfw.php:89 -msgid "Use /expression/ to provide regular expressions" -msgstr "" - -#: ../../addon/nsfw/nsfw.php:105 ../../addon.old/nsfw/nsfw.php:105 -msgid "NSFW Settings saved." -msgstr "" - -#: ../../addon/nsfw/nsfw.php:157 ../../addon.old/nsfw/nsfw.php:157 -#, php-format -msgid "%s - Click to open/close" -msgstr "" - -#: ../../addon/page/page.php:62 ../../addon/page/page.php:92 -#: ../../addon/forumlist/forumlist.php:60 ../../addon.old/page/page.php:62 -#: ../../addon.old/page/page.php:92 ../../addon.old/forumlist/forumlist.php:60 -msgid "Forums" -msgstr "" - -#: ../../addon/page/page.php:130 ../../addon/forumlist/forumlist.php:94 -#: ../../addon.old/page/page.php:130 -#: ../../addon.old/forumlist/forumlist.php:94 -msgid "Forums:" -msgstr "" - -#: ../../addon/page/page.php:166 ../../addon.old/page/page.php:166 -msgid "Page settings updated." -msgstr "" - -#: ../../addon/page/page.php:195 ../../addon.old/page/page.php:195 -msgid "Page Settings" -msgstr "" - -#: ../../addon/page/page.php:197 ../../addon.old/page/page.php:197 -msgid "How many forums to display on sidebar without paging" -msgstr "" - -#: ../../addon/page/page.php:200 ../../addon.old/page/page.php:200 -msgid "Randomise Page/Forum list" -msgstr "" - -#: ../../addon/page/page.php:203 ../../addon.old/page/page.php:203 -msgid "Show pages/forums on profile page" -msgstr "" - -#: ../../addon/planets/planets.php:150 ../../addon.old/planets/planets.php:150 -msgid "Planets Settings" -msgstr "" - -#: ../../addon/planets/planets.php:152 ../../addon.old/planets/planets.php:152 -msgid "Enable Planets Plugin" -msgstr "" - -#: ../../addon/forumdirectory/forumdirectory.php:22 -msgid "Forum Directory" -msgstr "" - -#: ../../addon/communityhome/communityhome.php:28 -#: ../../addon/communityhome/communityhome.php:34 -#: ../../addon/communityhome/twillingham/communityhome.php:28 -#: ../../addon/communityhome/twillingham/communityhome.php:34 -#: ../../include/nav.php:64 ../../boot.php:949 -#: ../../addon.old/communityhome/communityhome.php:28 -#: ../../addon.old/communityhome/communityhome.php:34 -#: ../../addon.old/communityhome/twillingham/communityhome.php:28 -#: ../../addon.old/communityhome/twillingham/communityhome.php:34 -msgid "Login" -msgstr "Logg inn" - -#: ../../addon/communityhome/communityhome.php:29 -#: ../../addon/communityhome/twillingham/communityhome.php:29 -#: ../../addon.old/communityhome/communityhome.php:29 -#: ../../addon.old/communityhome/twillingham/communityhome.php:29 -msgid "OpenID" -msgstr "" - -#: ../../addon/communityhome/communityhome.php:38 -#: ../../addon/communityhome/twillingham/communityhome.php:38 -#: ../../addon.old/communityhome/communityhome.php:38 -#: ../../addon.old/communityhome/twillingham/communityhome.php:38 -msgid "Latest users" -msgstr "" - -#: ../../addon/communityhome/communityhome.php:81 -#: ../../addon/communityhome/twillingham/communityhome.php:81 -#: ../../addon.old/communityhome/communityhome.php:81 -#: ../../addon.old/communityhome/twillingham/communityhome.php:81 -msgid "Most active users" -msgstr "" - -#: ../../addon/communityhome/communityhome.php:98 -#: ../../addon.old/communityhome/communityhome.php:98 -msgid "Latest photos" -msgstr "" - -#: ../../addon/communityhome/communityhome.php:133 -#: ../../addon.old/communityhome/communityhome.php:133 -msgid "Latest likes" -msgstr "" - -#: ../../addon/communityhome/communityhome.php:155 -#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1440 -#: ../../include/conversation.php:117 ../../include/conversation.php:245 -#: ../../addon.old/communityhome/communityhome.php:155 -msgid "event" -msgstr "hendelse" - -#: ../../addon/dav/common/wdcal_backend.inc.php:92 -#: ../../addon/dav/common/wdcal_backend.inc.php:166 -#: ../../addon/dav/common/wdcal_backend.inc.php:178 -#: ../../addon/dav/common/wdcal_backend.inc.php:206 -#: ../../addon/dav/common/wdcal_backend.inc.php:214 -#: ../../addon/dav/common/wdcal_backend.inc.php:229 -#: ../../addon.old/dav/common/wdcal_backend.inc.php:92 -#: ../../addon.old/dav/common/wdcal_backend.inc.php:166 -#: ../../addon.old/dav/common/wdcal_backend.inc.php:178 -#: ../../addon.old/dav/common/wdcal_backend.inc.php:206 -#: ../../addon.old/dav/common/wdcal_backend.inc.php:214 -#: ../../addon.old/dav/common/wdcal_backend.inc.php:229 -msgid "No access" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:30 -#: ../../addon/dav/common/wdcal_edit.inc.php:738 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:30 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:738 -msgid "Could not open component for editing" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:140 -#: ../../addon/dav/friendica/layout.fnk.php:143 -#: ../../addon/dav/friendica/layout.fnk.php:422 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:140 -#: ../../addon.old/dav/friendica/layout.fnk.php:143 -#: ../../addon.old/dav/friendica/layout.fnk.php:422 -msgid "Go back to the calendar" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:144 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:144 -msgid "Event data" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:146 -#: ../../addon/dav/friendica/main.php:239 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:146 -#: ../../addon.old/dav/friendica/main.php:239 -msgid "Calendar" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:163 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:163 -msgid "Special color" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:169 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:169 -msgid "Subject" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:173 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:173 -msgid "Starts" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:178 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:178 -msgid "Ends" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:185 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:185 -msgid "Description" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:188 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:188 -msgid "Recurrence" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:190 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:190 -msgid "Frequency" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:194 -#: ../../include/contact_selectors.php:59 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:194 -msgid "Daily" -msgstr "Daglig" - -#: ../../addon/dav/common/wdcal_edit.inc.php:197 -#: ../../include/contact_selectors.php:60 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:197 -msgid "Weekly" -msgstr "Ukentlig" - -#: ../../addon/dav/common/wdcal_edit.inc.php:200 -#: ../../include/contact_selectors.php:61 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:200 -msgid "Monthly" -msgstr "Månedlig" - -#: ../../addon/dav/common/wdcal_edit.inc.php:203 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:203 -msgid "Yearly" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:214 -#: ../../include/datetime.php:288 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:214 -msgid "days" -msgstr "dager" - -#: ../../addon/dav/common/wdcal_edit.inc.php:215 -#: ../../include/datetime.php:287 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:215 -msgid "weeks" -msgstr "uker" - -#: ../../addon/dav/common/wdcal_edit.inc.php:216 -#: ../../include/datetime.php:286 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:216 -msgid "months" -msgstr "måneder" - -#: ../../addon/dav/common/wdcal_edit.inc.php:217 -#: ../../include/datetime.php:285 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:217 -msgid "years" -msgstr "år" - -#: ../../addon/dav/common/wdcal_edit.inc.php:218 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:218 -msgid "Interval" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:218 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:218 -msgid "All %select% %time%" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:222 -#: ../../addon/dav/common/wdcal_edit.inc.php:260 -#: ../../addon/dav/common/wdcal_edit.inc.php:481 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:222 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:260 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:481 -msgid "Days" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:231 -#: ../../addon/dav/common/wdcal_edit.inc.php:254 -#: ../../addon/dav/common/wdcal_edit.inc.php:270 -#: ../../addon/dav/common/wdcal_edit.inc.php:293 -#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:922 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:231 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:254 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:270 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:293 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:305 -msgid "Sunday" -msgstr "søndag" - -#: ../../addon/dav/common/wdcal_edit.inc.php:235 -#: ../../addon/dav/common/wdcal_edit.inc.php:274 -#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:922 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:235 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:274 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:308 -msgid "Monday" -msgstr "mandag" - -#: ../../addon/dav/common/wdcal_edit.inc.php:238 -#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:922 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:238 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:277 -msgid "Tuesday" -msgstr "tirsdag" - -#: ../../addon/dav/common/wdcal_edit.inc.php:241 -#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:922 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:241 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:280 -msgid "Wednesday" -msgstr "onsdag" - -#: ../../addon/dav/common/wdcal_edit.inc.php:244 -#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:922 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:244 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:283 -msgid "Thursday" -msgstr "torsdag" - -#: ../../addon/dav/common/wdcal_edit.inc.php:247 -#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:922 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:247 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:286 -msgid "Friday" -msgstr "fredag" - -#: ../../addon/dav/common/wdcal_edit.inc.php:250 -#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:922 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:250 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:289 -msgid "Saturday" -msgstr "lørdag" - -#: ../../addon/dav/common/wdcal_edit.inc.php:297 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:297 -msgid "First day of week:" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:350 -#: ../../addon/dav/common/wdcal_edit.inc.php:373 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:350 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:373 -msgid "Day of month" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:354 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:354 -msgid "#num#th of each month" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:357 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:357 -msgid "#num#th-last of each month" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:360 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:360 -msgid "#num#th #wkday# of each month" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:363 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:363 -msgid "#num#th-last #wkday# of each month" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:372 -#: ../../addon/dav/friendica/layout.fnk.php:255 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:372 -#: ../../addon.old/dav/friendica/layout.fnk.php:255 -msgid "Month" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:377 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:377 -msgid "#num#th of the given month" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:380 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:380 -msgid "#num#th-last of the given month" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:383 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:383 -msgid "#num#th #wkday# of the given month" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:386 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:386 -msgid "#num#th-last #wkday# of the given month" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:413 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:413 -msgid "Repeat until" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:417 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:417 -msgid "Infinite" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:420 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:420 -msgid "Until the following date" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:423 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:423 -msgid "Number of times" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:429 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:429 -msgid "Exceptions" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:432 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:432 -msgid "none" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:449 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:449 -msgid "Notification" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:466 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:466 -msgid "Notify by" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:469 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:469 -msgid "E-Mail" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:470 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:470 -msgid "On Friendica / Display" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:474 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:474 -msgid "Time" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:478 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:478 -msgid "Hours" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:479 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:479 -msgid "Minutes" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:480 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:480 -msgid "Seconds" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:482 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:482 -msgid "Weeks" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:485 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:485 -msgid "before the" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:486 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:486 -msgid "start of the event" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:487 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:487 -msgid "end of the event" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:492 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:492 -msgid "Add a notification" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:687 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:687 -msgid "The event #name# will start at #date" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:696 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:696 -msgid "#name# is about to begin." -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:769 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:769 -msgid "Saved" -msgstr "" - -#: ../../addon/dav/common/wdcal_configuration.php:148 -#: ../../addon.old/dav/common/wdcal_configuration.php:148 -msgid "U.S. Time Format (mm/dd/YYYY)" -msgstr "" - -#: ../../addon/dav/common/wdcal_configuration.php:243 -#: ../../addon.old/dav/common/wdcal_configuration.php:243 -msgid "German Time Format (dd.mm.YYYY)" -msgstr "" - -#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39 -#: ../../addon.old/dav/common/dav_caldav_backend_private.inc.php:39 -msgid "Private Events" -msgstr "" - -#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46 -#: ../../addon.old/dav/common/dav_carddav_backend_private.inc.php:46 -msgid "Private Addressbooks" -msgstr "" - -#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36 -#: ../../addon.old/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36 -msgid "Friendica-Native events" -msgstr "" - -#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36 -#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59 -#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36 -#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59 -msgid "Friendica-Contacts" -msgstr "" - -#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60 -#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60 -msgid "Your Friendica-Contacts" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:99 -#: ../../addon/dav/friendica/layout.fnk.php:136 -#: ../../addon.old/dav/friendica/layout.fnk.php:99 -#: ../../addon.old/dav/friendica/layout.fnk.php:136 -msgid "" -"Something went wrong when trying to import the file. Sorry. Maybe some " -"events were imported anyway." -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:131 -#: ../../addon.old/dav/friendica/layout.fnk.php:131 -msgid "Something went wrong when trying to import the file. Sorry." -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:134 -#: ../../addon.old/dav/friendica/layout.fnk.php:134 -msgid "The ICS-File has been imported." -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:138 -#: ../../addon.old/dav/friendica/layout.fnk.php:138 -msgid "No file was uploaded." -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:147 -#: ../../addon.old/dav/friendica/layout.fnk.php:147 -msgid "Import a ICS-file" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:150 -#: ../../addon.old/dav/friendica/layout.fnk.php:150 -msgid "ICS-File" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:151 -#: ../../addon.old/dav/friendica/layout.fnk.php:151 -msgid "Overwrite all #num# existing events" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:228 -#: ../../addon.old/dav/friendica/layout.fnk.php:228 -msgid "New event" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:232 -#: ../../addon.old/dav/friendica/layout.fnk.php:232 -msgid "Today" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:241 -#: ../../addon.old/dav/friendica/layout.fnk.php:241 -msgid "Day" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:248 -#: ../../addon.old/dav/friendica/layout.fnk.php:248 -msgid "Week" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:260 -#: ../../addon.old/dav/friendica/layout.fnk.php:260 -msgid "Reload" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:271 -#: ../../addon.old/dav/friendica/layout.fnk.php:271 -msgid "Date" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:313 -#: ../../addon.old/dav/friendica/layout.fnk.php:313 -msgid "Error" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:380 -#: ../../addon.old/dav/friendica/layout.fnk.php:380 -msgid "The calendar has been updated." -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:393 -#: ../../addon.old/dav/friendica/layout.fnk.php:393 -msgid "The new calendar has been created." -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:417 -#: ../../addon.old/dav/friendica/layout.fnk.php:417 -msgid "The calendar has been deleted." -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:424 -#: ../../addon.old/dav/friendica/layout.fnk.php:424 -msgid "Calendar Settings" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:430 -#: ../../addon.old/dav/friendica/layout.fnk.php:430 -msgid "Date format" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:439 -#: ../../addon.old/dav/friendica/layout.fnk.php:439 -msgid "Time zone" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:445 -#: ../../addon.old/dav/friendica/layout.fnk.php:445 -msgid "Calendars" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:487 -#: ../../addon.old/dav/friendica/layout.fnk.php:487 -msgid "Create a new calendar" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:496 -#: ../../addon.old/dav/friendica/layout.fnk.php:496 -msgid "Limitations" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:500 -#: ../../addon/libravatar/libravatar.php:82 -#: ../../addon.old/dav/friendica/layout.fnk.php:500 -#: ../../addon.old/libravatar/libravatar.php:82 -msgid "Warning" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:504 -#: ../../addon.old/dav/friendica/layout.fnk.php:504 -msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:511 -#: ../../addon.old/dav/friendica/layout.fnk.php:511 -msgid "Synchronizing this calendar with the iPhone" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:522 -#: ../../addon.old/dav/friendica/layout.fnk.php:522 -msgid "Synchronizing your Friendica-Contacts with the iPhone" -msgstr "" - -#: ../../addon/dav/friendica/main.php:202 -#: ../../addon.old/dav/friendica/main.php:202 -msgid "" -"The current version of this plugin has not been set up correctly. Please " -"contact the system administrator of your installation of friendica to fix " -"this." -msgstr "" - -#: ../../addon/dav/friendica/main.php:242 -#: ../../addon.old/dav/friendica/main.php:242 -msgid "Extended calendar with CalDAV-support" -msgstr "" - -#: ../../addon/dav/friendica/main.php:279 -#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464 -#: ../../include/enotify.php:28 ../../include/notifier.php:778 -#: ../../addon.old/dav/friendica/main.php:279 -#: ../../addon.old/dav/friendica/main.php:280 -msgid "noreply" -msgstr "ikke svar" - -#: ../../addon/dav/friendica/main.php:282 -#: ../../addon.old/dav/friendica/main.php:282 -msgid "Notification: " -msgstr "" - -#: ../../addon/dav/friendica/main.php:309 -#: ../../addon.old/dav/friendica/main.php:309 -msgid "The database tables have been installed." -msgstr "" - -#: ../../addon/dav/friendica/main.php:310 -#: ../../addon.old/dav/friendica/main.php:310 -msgid "An error occurred during the installation." -msgstr "" - -#: ../../addon/dav/friendica/main.php:316 -#: ../../addon.old/dav/friendica/main.php:316 -msgid "The database tables have been updated." -msgstr "" - -#: ../../addon/dav/friendica/main.php:317 -#: ../../addon.old/dav/friendica/main.php:317 -msgid "An error occurred during the update." -msgstr "" - -#: ../../addon/dav/friendica/main.php:333 -#: ../../addon.old/dav/friendica/main.php:333 -msgid "No system-wide settings yet." -msgstr "" - -#: ../../addon/dav/friendica/main.php:336 -#: ../../addon.old/dav/friendica/main.php:336 -msgid "Database status" -msgstr "" - -#: ../../addon/dav/friendica/main.php:339 -#: ../../addon.old/dav/friendica/main.php:339 -msgid "Installed" -msgstr "" - -#: ../../addon/dav/friendica/main.php:343 -#: ../../addon.old/dav/friendica/main.php:343 -msgid "Upgrade needed" -msgstr "" - -#: ../../addon/dav/friendica/main.php:343 -#: ../../addon.old/dav/friendica/main.php:343 -msgid "" -"Please back up all calendar data (the tables beginning with dav_*) before " -"proceeding. While all calendar events should be converted to the new " -"database structure, it's always safe to have a backup. Below, you can have a" -" look at the database-queries that will be made when pressing the " -"'update'-button." -msgstr "" - -#: ../../addon/dav/friendica/main.php:343 -#: ../../addon.old/dav/friendica/main.php:343 -msgid "Upgrade" -msgstr "" - -#: ../../addon/dav/friendica/main.php:346 -#: ../../addon.old/dav/friendica/main.php:346 -msgid "Not installed" -msgstr "" - -#: ../../addon/dav/friendica/main.php:346 -#: ../../addon.old/dav/friendica/main.php:346 -msgid "Install" -msgstr "" - -#: ../../addon/dav/friendica/main.php:350 -#: ../../addon.old/dav/friendica/main.php:350 -msgid "Unknown" -msgstr "" - -#: ../../addon/dav/friendica/main.php:350 -#: ../../addon.old/dav/friendica/main.php:350 -msgid "" -"Something really went wrong. I cannot recover from this state automatically," -" sorry. Please go to the database backend, back up the data, and delete all " -"tables beginning with 'dav_' manually. Afterwards, this installation routine" -" should be able to reinitialize the tables automatically." -msgstr "" - -#: ../../addon/dav/friendica/main.php:355 -#: ../../addon.old/dav/friendica/main.php:355 -msgid "Troubleshooting" -msgstr "" - -#: ../../addon/dav/friendica/main.php:356 -#: ../../addon.old/dav/friendica/main.php:356 -msgid "Manual creation of the database tables:" -msgstr "" - -#: ../../addon/dav/friendica/main.php:357 -#: ../../addon.old/dav/friendica/main.php:357 -msgid "Show SQL-statements" -msgstr "" - -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206 -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206 -msgid "Private Calendar" -msgstr "" - -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207 -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207 -msgid "Friendica Events: Mine" -msgstr "" - -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208 -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208 -msgid "Friendica Events: Contacts" -msgstr "" - -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248 -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248 -msgid "Private Addresses" -msgstr "" - -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249 -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249 -msgid "Friendica Contacts" -msgstr "" - -#: ../../addon/uhremotestorage/uhremotestorage.php:84 -#: ../../addon.old/uhremotestorage/uhremotestorage.php:84 -#, php-format -msgid "" -"Allow to use your friendica id (%s) to connecto to external unhosted-enabled" -" storage (like ownCloud). See RemoteStorage" -" WebFinger" -msgstr "Tillat å bruke din friendica id (%s) for å koble til ekstern unhosted-aktivert lagring (som ownCloud). Se RemoteStorage WebFinger" - -#: ../../addon/uhremotestorage/uhremotestorage.php:85 -#: ../../addon.old/uhremotestorage/uhremotestorage.php:85 -msgid "Template URL (with {category})" -msgstr "" - -#: ../../addon/uhremotestorage/uhremotestorage.php:86 -#: ../../addon.old/uhremotestorage/uhremotestorage.php:86 -msgid "OAuth end-point" -msgstr "" - -#: ../../addon/uhremotestorage/uhremotestorage.php:87 -#: ../../addon.old/uhremotestorage/uhremotestorage.php:87 -msgid "Api" -msgstr "" - -#: ../../addon/membersince/membersince.php:18 -#: ../../addon.old/membersince/membersince.php:18 -msgid "Member since:" -msgstr "" - -#: ../../addon/tictac/tictac.php:20 ../../addon.old/tictac/tictac.php:20 -msgid "Three Dimensional Tic-Tac-Toe" -msgstr "Tredimensjonal tre-på-rad" - -#: ../../addon/tictac/tictac.php:53 ../../addon.old/tictac/tictac.php:53 -msgid "3D Tic-Tac-Toe" -msgstr "3D tre-på-rad" - -#: ../../addon/tictac/tictac.php:58 ../../addon.old/tictac/tictac.php:58 -msgid "New game" -msgstr "Nytt spill" - -#: ../../addon/tictac/tictac.php:59 ../../addon.old/tictac/tictac.php:59 -msgid "New game with handicap" -msgstr "Nytt spill med handikapp" - -#: ../../addon/tictac/tictac.php:60 ../../addon.old/tictac/tictac.php:60 -msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that " -"it is played on multiple levels simultaneously. " -msgstr "Tredimensjonal tre-på-rad er akkurat som det vanlige spillet, bortsett fra at det spilles på flere nivåer samtidig." - -#: ../../addon/tictac/tictac.php:61 ../../addon.old/tictac/tictac.php:61 -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 "I dette tilfellet er det tre nivåer. Du vinner ved å få tre på rad på ethvert nivå, samt opp, ned og diagonalt på tvers av forskjellige nivåer." - -#: ../../addon/tictac/tictac.php:63 ../../addon.old/tictac/tictac.php:63 -msgid "" -"The handicap game disables the center position on the middle level because " -"the player claiming this square often has an unfair advantage." -msgstr "Handicap-spillet skrur av midtposisjonen på det midtre nivået, fordi spilleren som tar denne posisjonen ofte får en urettferdig fordel." - -#: ../../addon/tictac/tictac.php:182 ../../addon.old/tictac/tictac.php:182 -msgid "You go first..." -msgstr "Du starter først..." - -#: ../../addon/tictac/tictac.php:187 ../../addon.old/tictac/tictac.php:187 -msgid "I'm going first this time..." -msgstr "Jeg starter først denne gangen..." - -#: ../../addon/tictac/tictac.php:193 ../../addon.old/tictac/tictac.php:193 -msgid "You won!" -msgstr "Du vant!" - -#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224 -#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224 -msgid "\"Cat\" game!" -msgstr "\"Katte\"-spill!" - -#: ../../addon/tictac/tictac.php:222 ../../addon.old/tictac/tictac.php:222 -msgid "I won!" -msgstr "Jeg vant!" - -#: ../../addon/randplace/randplace.php:169 -#: ../../addon.old/randplace/randplace.php:169 -msgid "Randplace Settings" -msgstr "Tilfeldig plassering" - -#: ../../addon/randplace/randplace.php:171 -#: ../../addon.old/randplace/randplace.php:171 -msgid "Enable Randplace Plugin" -msgstr "Aktiver Tilfeldig plassering-tillegget" - -#: ../../addon/dwpost/dwpost.php:39 ../../addon.old/dwpost/dwpost.php:39 -msgid "Post to Dreamwidth" -msgstr "" - -#: ../../addon/dwpost/dwpost.php:70 ../../addon.old/dwpost/dwpost.php:70 -msgid "Dreamwidth Post Settings" -msgstr "" - -#: ../../addon/dwpost/dwpost.php:72 ../../addon.old/dwpost/dwpost.php:72 -msgid "Enable dreamwidth Post Plugin" -msgstr "" - -#: ../../addon/dwpost/dwpost.php:77 ../../addon.old/dwpost/dwpost.php:77 -msgid "dreamwidth username" -msgstr "" - -#: ../../addon/dwpost/dwpost.php:82 ../../addon.old/dwpost/dwpost.php:82 -msgid "dreamwidth password" -msgstr "" - -#: ../../addon/dwpost/dwpost.php:87 ../../addon.old/dwpost/dwpost.php:87 -msgid "Post to dreamwidth by default" -msgstr "" - -#: ../../addon/remote_permissions/remote_permissions.php:44 -msgid "Remote Permissions Settings" -msgstr "" - -#: ../../addon/remote_permissions/remote_permissions.php:45 -msgid "" -"Allow recipients of your private posts to see the other recipients of the " -"posts" -msgstr "" - -#: ../../addon/remote_permissions/remote_permissions.php:57 -msgid "Remote Permissions settings updated." -msgstr "" - -#: ../../addon/remote_permissions/remote_permissions.php:177 -msgid "Visible to" -msgstr "" - -#: ../../addon/remote_permissions/remote_permissions.php:177 -msgid "may only be a partial list" -msgstr "" - -#: ../../addon/remote_permissions/remote_permissions.php:196 -msgid "Global" -msgstr "" - -#: ../../addon/remote_permissions/remote_permissions.php:196 -msgid "The posts of every user on this server show the post recipients" -msgstr "" - -#: ../../addon/remote_permissions/remote_permissions.php:197 -msgid "Individual" -msgstr "" - -#: ../../addon/remote_permissions/remote_permissions.php:197 -msgid "Each user chooses whether his/her posts show the post recipients" -msgstr "" - -#: ../../addon/startpage/startpage.php:83 -#: ../../addon.old/startpage/startpage.php:83 -msgid "Startpage Settings" -msgstr "" - -#: ../../addon/startpage/startpage.php:85 -#: ../../addon.old/startpage/startpage.php:85 -msgid "Home page to load after login - leave blank for profile wall" -msgstr "" - -#: ../../addon/startpage/startpage.php:88 -#: ../../addon.old/startpage/startpage.php:88 -msgid "Examples: "network" or "notifications/system"" -msgstr "" - -#: ../../addon/geonames/geonames.php:143 -#: ../../addon.old/geonames/geonames.php:143 -msgid "Geonames settings updated." -msgstr "" - -#: ../../addon/geonames/geonames.php:179 -#: ../../addon.old/geonames/geonames.php:179 -msgid "Geonames Settings" -msgstr "" - -#: ../../addon/geonames/geonames.php:181 -#: ../../addon.old/geonames/geonames.php:181 -msgid "Enable Geonames Plugin" -msgstr "" - -#: ../../addon/public_server/public_server.php:126 -#: ../../addon/testdrive/testdrive.php:94 -#: ../../addon.old/public_server/public_server.php:126 -#: ../../addon.old/testdrive/testdrive.php:94 -#, php-format -msgid "Your account on %s will expire in a few days." -msgstr "" - -#: ../../addon/public_server/public_server.php:127 -#: ../../addon.old/public_server/public_server.php:127 -msgid "Your Friendica account is about to expire." -msgstr "" - -#: ../../addon/public_server/public_server.php:128 -#: ../../addon.old/public_server/public_server.php:128 -#, php-format -msgid "" -"Hi %1$s,\n" -"\n" -"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:43 -#: ../../addon.old/js_upload/js_upload.php:43 -msgid "Upload a file" -msgstr "Last opp en fil" - -#: ../../addon/js_upload/js_upload.php:44 -#: ../../addon.old/js_upload/js_upload.php:44 -msgid "Drop files here to upload" -msgstr "Slipp filer her for å laste de opp" - -#: ../../addon/js_upload/js_upload.php:46 -#: ../../addon.old/js_upload/js_upload.php:46 -msgid "Failed" -msgstr "Mislyktes" - -#: ../../addon/js_upload/js_upload.php:303 -#: ../../addon.old/js_upload/js_upload.php:297 -msgid "No files were uploaded." -msgstr "Ingen filer ble lastet opp." - -#: ../../addon/js_upload/js_upload.php:309 -#: ../../addon.old/js_upload/js_upload.php:303 -msgid "Uploaded file is empty" -msgstr "Opplastet fil er tom" - -#: ../../addon/js_upload/js_upload.php:332 -#: ../../addon.old/js_upload/js_upload.php:326 -msgid "File has an invalid extension, it should be one of " -msgstr "Filen har en ugyldig endelse, den må være en av " - -#: ../../addon/js_upload/js_upload.php:343 -#: ../../addon.old/js_upload/js_upload.php:337 -msgid "Upload was cancelled, or server error encountered" -msgstr "Opplasting avbrutt, eller det oppstod en feil på tjeneren" - -#: ../../addon/forumlist/forumlist.php:63 -#: ../../addon.old/forumlist/forumlist.php:63 -msgid "show/hide" -msgstr "" - -#: ../../addon/forumlist/forumlist.php:77 -#: ../../addon.old/forumlist/forumlist.php:77 -msgid "No forum subscriptions" -msgstr "" - -#: ../../addon/forumlist/forumlist.php:131 -#: ../../addon.old/forumlist/forumlist.php:131 -msgid "Forumlist settings updated." -msgstr "" - -#: ../../addon/forumlist/forumlist.php:159 -#: ../../addon.old/forumlist/forumlist.php:159 -msgid "Forumlist Settings" -msgstr "" - -#: ../../addon/forumlist/forumlist.php:161 -#: ../../addon.old/forumlist/forumlist.php:161 -msgid "Randomise forum list" -msgstr "" - -#: ../../addon/forumlist/forumlist.php:164 -#: ../../addon.old/forumlist/forumlist.php:164 -msgid "Show forums on profile page" -msgstr "" - -#: ../../addon/forumlist/forumlist.php:167 -#: ../../addon.old/forumlist/forumlist.php:167 -msgid "Show forums on network page" -msgstr "" - -#: ../../addon/impressum/impressum.php:37 -#: ../../addon.old/impressum/impressum.php:37 -msgid "Impressum" -msgstr "Informasjon om nettstedet" - -#: ../../addon/impressum/impressum.php:50 -#: ../../addon/impressum/impressum.php:52 -#: ../../addon/impressum/impressum.php:84 -#: ../../addon.old/impressum/impressum.php:50 -#: ../../addon.old/impressum/impressum.php:52 -#: ../../addon.old/impressum/impressum.php:84 -msgid "Site Owner" -msgstr "Nettstedets eier" - -#: ../../addon/impressum/impressum.php:50 -#: ../../addon/impressum/impressum.php:88 -#: ../../addon.old/impressum/impressum.php:50 -#: ../../addon.old/impressum/impressum.php:88 -msgid "Email Address" -msgstr "E-postadresse" - -#: ../../addon/impressum/impressum.php:55 -#: ../../addon/impressum/impressum.php:86 -#: ../../addon.old/impressum/impressum.php:55 -#: ../../addon.old/impressum/impressum.php:86 -msgid "Postal Address" -msgstr "Postadresse" - -#: ../../addon/impressum/impressum.php:61 -#: ../../addon.old/impressum/impressum.php:61 -msgid "" -"The impressum addon needs to be configured!
Please add at least the " -"owner variable to your config file. For other variables please " -"refer to the README file of the addon." -msgstr "Tillegget for \"Informasjon om nettstedet\" må konfigureres!
Vennligst fyll ut minst eier variabelen i konfigurasjonsfilen din. For andre variabler, vennligst se over README-filen til tillegget." - -#: ../../addon/impressum/impressum.php:84 -#: ../../addon.old/impressum/impressum.php:84 -msgid "The page operators name." -msgstr "" - -#: ../../addon/impressum/impressum.php:85 -#: ../../addon.old/impressum/impressum.php:85 -msgid "Site Owners Profile" -msgstr "Nettstedseiers profil" - -#: ../../addon/impressum/impressum.php:85 -#: ../../addon.old/impressum/impressum.php:85 -msgid "Profile address of the operator." -msgstr "" - -#: ../../addon/impressum/impressum.php:86 -#: ../../addon.old/impressum/impressum.php:86 -msgid "How to contact the operator via snail mail. You can use BBCode here." -msgstr "" - -#: ../../addon/impressum/impressum.php:87 -#: ../../addon.old/impressum/impressum.php:87 -msgid "Notes" -msgstr "Notater" - -#: ../../addon/impressum/impressum.php:87 -#: ../../addon.old/impressum/impressum.php:87 -msgid "" -"Additional notes that are displayed beneath the contact information. You can" -" use BBCode here." -msgstr "" - -#: ../../addon/impressum/impressum.php:88 -#: ../../addon.old/impressum/impressum.php:88 -msgid "How to contact the operator via email. (will be displayed obfuscated)" -msgstr "" - -#: ../../addon/impressum/impressum.php:89 -#: ../../addon.old/impressum/impressum.php:89 -msgid "Footer note" -msgstr "" - -#: ../../addon/impressum/impressum.php:89 -#: ../../addon.old/impressum/impressum.php:89 -msgid "Text for the footer. You can use BBCode here." -msgstr "" - -#: ../../addon/buglink/buglink.php:15 ../../addon.old/buglink/buglink.php:15 -msgid "Report Bug" -msgstr "" - -#: ../../addon/notimeline/notimeline.php:32 -#: ../../addon.old/notimeline/notimeline.php:32 -msgid "No Timeline settings updated." -msgstr "" - -#: ../../addon/notimeline/notimeline.php:56 -#: ../../addon.old/notimeline/notimeline.php:56 -msgid "No Timeline Settings" -msgstr "" - -#: ../../addon/notimeline/notimeline.php:58 -#: ../../addon.old/notimeline/notimeline.php:58 -msgid "Disable Archive selector on profile wall" -msgstr "" - -#: ../../addon/blockem/blockem.php:51 ../../addon.old/blockem/blockem.php:51 -msgid "\"Blockem\" Settings" -msgstr "" - -#: ../../addon/blockem/blockem.php:53 ../../addon.old/blockem/blockem.php:53 -msgid "Comma separated profile URLS to block" -msgstr "" - -#: ../../addon/blockem/blockem.php:70 ../../addon.old/blockem/blockem.php:70 -msgid "BLOCKEM Settings saved." -msgstr "" - -#: ../../addon/blockem/blockem.php:105 ../../addon.old/blockem/blockem.php:105 -#, php-format -msgid "Blocked %s - Click to open/close" -msgstr "" - -#: ../../addon/blockem/blockem.php:160 ../../addon.old/blockem/blockem.php:160 -msgid "Unblock Author" -msgstr "" - -#: ../../addon/blockem/blockem.php:162 ../../addon.old/blockem/blockem.php:162 -msgid "Block Author" -msgstr "" - -#: ../../addon/blockem/blockem.php:194 ../../addon.old/blockem/blockem.php:194 -msgid "blockem settings updated" -msgstr "" - -#: ../../addon/qcomment/qcomment.php:51 -#: ../../addon.old/qcomment/qcomment.php:51 -msgid ":-)" -msgstr "" - -#: ../../addon/qcomment/qcomment.php:51 -#: ../../addon.old/qcomment/qcomment.php:51 -msgid ":-(" -msgstr "" - -#: ../../addon/qcomment/qcomment.php:51 -#: ../../addon.old/qcomment/qcomment.php:51 -msgid "lol" -msgstr "" - -#: ../../addon/qcomment/qcomment.php:54 -#: ../../addon.old/qcomment/qcomment.php:54 -msgid "Quick Comment Settings" -msgstr "" - -#: ../../addon/qcomment/qcomment.php:56 -#: ../../addon.old/qcomment/qcomment.php:56 -msgid "" -"Quick comments are found near comment boxes, sometimes hidden. Click them to" -" provide simple replies." -msgstr "" - -#: ../../addon/qcomment/qcomment.php:57 -#: ../../addon.old/qcomment/qcomment.php:57 -msgid "Enter quick comments, one per line" -msgstr "" - -#: ../../addon/qcomment/qcomment.php:75 -#: ../../addon.old/qcomment/qcomment.php:75 -msgid "Quick Comment settings saved." -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:71 -#: ../../addon.old/openstreetmap/openstreetmap.php:71 -msgid "Tile Server URL" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:71 -#: ../../addon.old/openstreetmap/openstreetmap.php:71 -msgid "" -"A list of public tile servers" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:72 -#: ../../addon.old/openstreetmap/openstreetmap.php:72 -msgid "Default zoom" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:72 -#: ../../addon.old/openstreetmap/openstreetmap.php:72 -msgid "The default zoom level. (1:world, 18:highest)" -msgstr "" - -#: ../../addon/group_text/group_text.php:46 -#: ../../addon/editplain/editplain.php:46 -#: ../../addon.old/group_text/group_text.php:46 -#: ../../addon.old/editplain/editplain.php:46 -msgid "Editplain settings updated." -msgstr "" - -#: ../../addon/group_text/group_text.php:76 -#: ../../addon.old/group_text/group_text.php:76 -msgid "Group Text" -msgstr "" - -#: ../../addon/group_text/group_text.php:78 -#: ../../addon.old/group_text/group_text.php:78 -msgid "Use a text only (non-image) group selector in the \"group edit\" menu" -msgstr "" - -#: ../../addon/libravatar/libravatar.php:14 -#: ../../addon.old/libravatar/libravatar.php:14 -msgid "Could NOT install Libravatar successfully.
It requires PHP >= 5.3" -msgstr "" - -#: ../../addon/libravatar/libravatar.php:73 -#: ../../addon/gravatar/gravatar.php:71 -#: ../../addon.old/libravatar/libravatar.php:73 -#: ../../addon.old/gravatar/gravatar.php:71 -msgid "generic profile image" -msgstr "" - -#: ../../addon/libravatar/libravatar.php:74 -#: ../../addon/gravatar/gravatar.php:72 -#: ../../addon.old/libravatar/libravatar.php:74 -#: ../../addon.old/gravatar/gravatar.php:72 -msgid "random geometric pattern" -msgstr "" - -#: ../../addon/libravatar/libravatar.php:75 -#: ../../addon/gravatar/gravatar.php:73 -#: ../../addon.old/libravatar/libravatar.php:75 -#: ../../addon.old/gravatar/gravatar.php:73 -msgid "monster face" -msgstr "" - -#: ../../addon/libravatar/libravatar.php:76 -#: ../../addon/gravatar/gravatar.php:74 -#: ../../addon.old/libravatar/libravatar.php:76 -#: ../../addon.old/gravatar/gravatar.php:74 -msgid "computer generated face" -msgstr "" - -#: ../../addon/libravatar/libravatar.php:77 -#: ../../addon/gravatar/gravatar.php:75 -#: ../../addon.old/libravatar/libravatar.php:77 -#: ../../addon.old/gravatar/gravatar.php:75 -msgid "retro arcade style face" -msgstr "" - -#: ../../addon/libravatar/libravatar.php:83 -#: ../../addon.old/libravatar/libravatar.php:83 -#, php-format -msgid "Your PHP version %s is lower than the required PHP >= 5.3." -msgstr "" - -#: ../../addon/libravatar/libravatar.php:84 -#: ../../addon.old/libravatar/libravatar.php:84 -msgid "This addon is not functional on your server." -msgstr "" - -#: ../../addon/libravatar/libravatar.php:93 -#: ../../addon/gravatar/gravatar.php:89 -#: ../../addon.old/libravatar/libravatar.php:93 -#: ../../addon.old/gravatar/gravatar.php:89 -msgid "Information" -msgstr "" - -#: ../../addon/libravatar/libravatar.php:93 -#: ../../addon.old/libravatar/libravatar.php:93 -msgid "" -"Gravatar addon is installed. Please disable the Gravatar addon.
The " -"Libravatar addon will fall back to Gravatar if nothing was found at " -"Libravatar." -msgstr "" - -#: ../../addon/libravatar/libravatar.php:100 -#: ../../addon/gravatar/gravatar.php:96 -#: ../../addon.old/libravatar/libravatar.php:100 -#: ../../addon.old/gravatar/gravatar.php:96 -msgid "Default avatar image" -msgstr "" - -#: ../../addon/libravatar/libravatar.php:100 -#: ../../addon.old/libravatar/libravatar.php:100 -msgid "Select default avatar image if none was found. See README" -msgstr "" - -#: ../../addon/libravatar/libravatar.php:112 -#: ../../addon.old/libravatar/libravatar.php:112 -msgid "Libravatar settings updated." -msgstr "" - -#: ../../addon/libertree/libertree.php:36 -#: ../../addon.old/libertree/libertree.php:36 -msgid "Post to libertree" -msgstr "" - -#: ../../addon/libertree/libertree.php:67 -#: ../../addon.old/libertree/libertree.php:67 -msgid "libertree Post Settings" -msgstr "" - -#: ../../addon/libertree/libertree.php:69 -#: ../../addon.old/libertree/libertree.php:69 -msgid "Enable Libertree Post Plugin" -msgstr "" - -#: ../../addon/libertree/libertree.php:74 -#: ../../addon.old/libertree/libertree.php:74 -msgid "Libertree API token" -msgstr "" - -#: ../../addon/libertree/libertree.php:79 -#: ../../addon.old/libertree/libertree.php:79 -msgid "Libertree site URL" -msgstr "" - -#: ../../addon/libertree/libertree.php:84 -#: ../../addon.old/libertree/libertree.php:84 -msgid "Post to Libertree by default" -msgstr "" - -#: ../../addon/altpager/altpager.php:46 -#: ../../addon.old/altpager/altpager.php:46 -msgid "Altpager settings updated." -msgstr "" - -#: ../../addon/altpager/altpager.php:79 -#: ../../addon.old/altpager/altpager.php:79 -msgid "Alternate Pagination Setting" -msgstr "" - -#: ../../addon/altpager/altpager.php:81 -#: ../../addon.old/altpager/altpager.php:81 -msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?" -msgstr "" - -#: ../../addon/mathjax/mathjax.php:37 ../../addon.old/mathjax/mathjax.php:37 -msgid "" -"The MathJax addon renders mathematical formulae written using the LaTeX " -"syntax surrounded by the usual $$ or an eqnarray block in the postings of " -"your wall,network tab and private mail." -msgstr "" - -#: ../../addon/mathjax/mathjax.php:38 ../../addon.old/mathjax/mathjax.php:38 -msgid "Use the MathJax renderer" -msgstr "" - -#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74 -msgid "MathJax Base URL" -msgstr "" - -#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74 -msgid "" -"The URL for the javascript file that should be included to use MathJax. Can " -"be either the MathJax CDN or another installation of MathJax." -msgstr "" - -#: ../../addon/editplain/editplain.php:76 -#: ../../addon.old/editplain/editplain.php:76 -msgid "Editplain Settings" -msgstr "" - -#: ../../addon/editplain/editplain.php:78 -#: ../../addon.old/editplain/editplain.php:78 -msgid "Disable richtext status editor" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:89 -#: ../../addon.old/gravatar/gravatar.php:89 -msgid "" -"Libravatar addon is installed, too. Please disable Libravatar addon or this " -"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " -"nothing was found at Libravatar." -msgstr "" - -#: ../../addon/gravatar/gravatar.php:96 -#: ../../addon.old/gravatar/gravatar.php:96 -msgid "Select default avatar image if none was found at Gravatar. See README" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:97 -#: ../../addon.old/gravatar/gravatar.php:97 -msgid "Rating of images" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:97 -#: ../../addon.old/gravatar/gravatar.php:97 -msgid "Select the appropriate avatar rating for your site. See README" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:111 -#: ../../addon.old/gravatar/gravatar.php:111 -msgid "Gravatar settings updated." -msgstr "" - -#: ../../addon/testdrive/testdrive.php:95 -#: ../../addon.old/testdrive/testdrive.php:95 -msgid "Your Friendica test account is about to expire." -msgstr "" - -#: ../../addon/testdrive/testdrive.php:96 -#: ../../addon.old/testdrive/testdrive.php:96 -#, php-format -msgid "" -"Hi %1$s,\n" -"\n" -"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com." -msgstr "" - -#: ../../addon/pageheader/pageheader.php:50 -#: ../../addon.old/pageheader/pageheader.php:50 -msgid "\"pageheader\" Settings" -msgstr "" - -#: ../../addon/pageheader/pageheader.php:68 -#: ../../addon.old/pageheader/pageheader.php:68 -msgid "pageheader Settings saved." -msgstr "" - -#: ../../addon/ijpost/ijpost.php:39 ../../addon.old/ijpost/ijpost.php:39 -msgid "Post to Insanejournal" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:70 ../../addon.old/ijpost/ijpost.php:70 -msgid "InsaneJournal Post Settings" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:72 ../../addon.old/ijpost/ijpost.php:72 -msgid "Enable InsaneJournal Post Plugin" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:77 ../../addon.old/ijpost/ijpost.php:77 -msgid "InsaneJournal username" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:82 ../../addon.old/ijpost/ijpost.php:82 -msgid "InsaneJournal password" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:87 ../../addon.old/ijpost/ijpost.php:87 -msgid "Post to InsaneJournal by default" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:266 -#: ../../addon.old/jappixmini/jappixmini.php:266 -msgid "Jappix Mini addon settings" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:268 -#: ../../addon.old/jappixmini/jappixmini.php:268 -msgid "Activate addon" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:271 -#: ../../addon.old/jappixmini/jappixmini.php:271 -msgid "" -"Do not insert the Jappixmini Chat-Widget into the webinterface" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:274 -#: ../../addon.old/jappixmini/jappixmini.php:274 -msgid "Jabber username" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:277 -#: ../../addon.old/jappixmini/jappixmini.php:277 -msgid "Jabber server" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:281 -#: ../../addon.old/jappixmini/jappixmini.php:281 -msgid "Jabber BOSH host" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:285 -#: ../../addon.old/jappixmini/jappixmini.php:285 -msgid "Jabber password" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:290 -#: ../../addon.old/jappixmini/jappixmini.php:290 -msgid "Encrypt Jabber password with Friendica password (recommended)" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:293 -#: ../../addon.old/jappixmini/jappixmini.php:293 -msgid "Friendica password" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:296 -#: ../../addon.old/jappixmini/jappixmini.php:296 -msgid "Approve subscription requests from Friendica contacts automatically" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:299 -#: ../../addon.old/jappixmini/jappixmini.php:299 -msgid "Subscribe to Friendica contacts automatically" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:302 -#: ../../addon.old/jappixmini/jappixmini.php:302 -msgid "Purge internal list of jabber addresses of contacts" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:308 -#: ../../addon.old/jappixmini/jappixmini.php:308 -msgid "Add contact" -msgstr "" - -#: ../../addon/viewsrc/viewsrc.php:37 ../../addon.old/viewsrc/viewsrc.php:37 -msgid "View Source" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:134 -#: ../../addon.old/statusnet/statusnet.php:134 -msgid "Post to StatusNet" -msgstr "Post til StatusNet" - -#: ../../addon/statusnet/statusnet.php:176 -#: ../../addon.old/statusnet/statusnet.php:176 -msgid "" -"Please contact your site administrator.
The provided API URL is not " -"valid." -msgstr "Vennligst kontakt administratoren på nettstedet ditt.
Den oppgitter API URL-en er ikke gyldig." - -#: ../../addon/statusnet/statusnet.php:204 -#: ../../addon.old/statusnet/statusnet.php:204 -msgid "We could not contact the StatusNet API with the Path you entered." -msgstr "Vi kunne ikke kontakte StatusNet API-en med den banen du oppgav." - -#: ../../addon/statusnet/statusnet.php:232 -#: ../../addon.old/statusnet/statusnet.php:232 -msgid "StatusNet settings updated." -msgstr "StatusNet-innstillinger er oppdatert." - -#: ../../addon/statusnet/statusnet.php:257 -#: ../../addon.old/statusnet/statusnet.php:257 -msgid "StatusNet Posting Settings" -msgstr "Innstillinger for posting til StatusNet" - -#: ../../addon/statusnet/statusnet.php:271 -#: ../../addon.old/statusnet/statusnet.php:271 -msgid "Globally Available StatusNet OAuthKeys" -msgstr "Globalt tilgjengelige StatusNet OAuthKeys" - -#: ../../addon/statusnet/statusnet.php:272 -#: ../../addon.old/statusnet/statusnet.php:272 -msgid "" -"There are preconfigured OAuth key pairs for some StatusNet servers " -"available. If you are useing one of them, please use these credentials. If " -"not feel free to connect to any other StatusNet instance (see below)." -msgstr "Det finnes ferdig konfigurerte OAuth nøkkelpar tilgjengelig for noen StatusNet-tjenere. Hvis du bruker en av disse, vennligst bruk disse som legitimasjon. Hvis ikke, så er du fri til å opprette en forbindelse til enhver annen StatusNet-forekomst (se nedenfor)." - -#: ../../addon/statusnet/statusnet.php:280 -#: ../../addon.old/statusnet/statusnet.php:280 -msgid "Provide your own OAuth Credentials" -msgstr "Oppgi din egen OAuth-legitimasjon" - -#: ../../addon/statusnet/statusnet.php:281 -#: ../../addon.old/statusnet/statusnet.php:281 -msgid "" -"No consumer key pair for StatusNet found. Register your Friendica 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 " -"Friendica installation at your favorited StatusNet installation." -msgstr "" - -#: ../../addon/statusnet/statusnet.php:283 -#: ../../addon.old/statusnet/statusnet.php:283 -msgid "OAuth Consumer Key" -msgstr "OAuth Consumer Key" - -#: ../../addon/statusnet/statusnet.php:286 -#: ../../addon.old/statusnet/statusnet.php:286 -msgid "OAuth Consumer Secret" -msgstr "OAuth Consumer Secret" - -#: ../../addon/statusnet/statusnet.php:289 -#: ../../addon.old/statusnet/statusnet.php:289 -msgid "Base API Path (remember the trailing /)" -msgstr "Base API Path (husk / på slutten)" - -#: ../../addon/statusnet/statusnet.php:310 -#: ../../addon.old/statusnet/statusnet.php:310 -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 "For å koble din StatusNet-konto, klikk knappen under for å få en sikkerhetskode fra StatusNet som du må kopiere inn i tekstfeltet under, og send inn skjemaet. Det er bare dine offentlige meldinger som blir postet til StatusNet." - -#: ../../addon/statusnet/statusnet.php:311 -#: ../../addon.old/statusnet/statusnet.php:311 -msgid "Log in with StatusNet" -msgstr "Logg inn med StatusNet" - -#: ../../addon/statusnet/statusnet.php:313 -#: ../../addon.old/statusnet/statusnet.php:313 -msgid "Copy the security code from StatusNet here" -msgstr "Kopier sikkerhetskoden fra StatusNet hit" - -#: ../../addon/statusnet/statusnet.php:319 -#: ../../addon.old/statusnet/statusnet.php:319 -msgid "Cancel Connection Process" -msgstr "Avbryt forbindelsesprosessen" - -#: ../../addon/statusnet/statusnet.php:321 -#: ../../addon.old/statusnet/statusnet.php:321 -msgid "Current StatusNet API is" -msgstr "Gjeldende StatusNet API er" - -#: ../../addon/statusnet/statusnet.php:322 -#: ../../addon.old/statusnet/statusnet.php:322 -msgid "Cancel StatusNet Connection" -msgstr "Avbryt StatusNet-forbindelsen" - -#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189 -#: ../../addon.old/statusnet/statusnet.php:333 -#: ../../addon.old/twitter/twitter.php:189 -msgid "Currently connected to: " -msgstr "For øyeblikket tilkoblet til:" - -#: ../../addon/statusnet/statusnet.php:334 -#: ../../addon.old/statusnet/statusnet.php:334 -msgid "" -"If enabled all your public postings can be posted to the " -"associated StatusNet account. You can choose to do so by default (here) or " -"for every posting separately in the posting options when writing the entry." -msgstr "Aktivering gjør at alle dine offentlige innlegg kan postes til den tilknyttede StatusNet-kontoen. Du kan velge å gjøre dette som standard (her), eller for hvert enkelt innlegg separat i valgmulighetene for posting når du skriver et innlegg." - -#: ../../addon/statusnet/statusnet.php:336 -#: ../../addon.old/statusnet/statusnet.php:336 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to StatusNet will lead the visitor to a blank page " -"informing the visitor that the access to your profile has been restricted." -msgstr "" - -#: ../../addon/statusnet/statusnet.php:339 -#: ../../addon.old/statusnet/statusnet.php:339 -msgid "Allow posting to StatusNet" -msgstr "Tillat innlegg til StatusNet" - -#: ../../addon/statusnet/statusnet.php:342 -#: ../../addon.old/statusnet/statusnet.php:342 -msgid "Send public postings to StatusNet by default" -msgstr "Send offentlige innlegg til StatusNet som standard" - -#: ../../addon/statusnet/statusnet.php:345 -#: ../../addon.old/statusnet/statusnet.php:345 -msgid "Send linked #-tags and @-names to StatusNet" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206 -#: ../../addon.old/statusnet/statusnet.php:350 -#: ../../addon.old/twitter/twitter.php:206 -msgid "Clear OAuth configuration" -msgstr "Fjern OAuth-konfigurasjon" - -#: ../../addon/statusnet/statusnet.php:677 -#: ../../addon.old/statusnet/statusnet.php:568 -msgid "API URL" -msgstr "API URL" - -#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 -#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 -msgid "Infinite Improbability Drive" -msgstr "" - -#: ../../addon/tumblr/tumblr.php:36 ../../addon.old/tumblr/tumblr.php:36 -msgid "Post to Tumblr" -msgstr "" - -#: ../../addon/tumblr/tumblr.php:67 ../../addon.old/tumblr/tumblr.php:67 -msgid "Tumblr Post Settings" -msgstr "" - -#: ../../addon/tumblr/tumblr.php:69 ../../addon.old/tumblr/tumblr.php:69 -msgid "Enable Tumblr Post Plugin" -msgstr "" - -#: ../../addon/tumblr/tumblr.php:74 ../../addon.old/tumblr/tumblr.php:74 -msgid "Tumblr login" -msgstr "" - -#: ../../addon/tumblr/tumblr.php:79 ../../addon.old/tumblr/tumblr.php:79 -msgid "Tumblr password" -msgstr "" - -#: ../../addon/tumblr/tumblr.php:84 ../../addon.old/tumblr/tumblr.php:84 -msgid "Post to Tumblr by default" -msgstr "" - -#: ../../addon/numfriends/numfriends.php:46 -#: ../../addon.old/numfriends/numfriends.php:46 -msgid "Numfriends settings updated." -msgstr "" - -#: ../../addon/numfriends/numfriends.php:77 -#: ../../addon.old/numfriends/numfriends.php:77 -msgid "Numfriends Settings" -msgstr "" - -#: ../../addon/numfriends/numfriends.php:79 ../../addon.old/bg/bg.php:84 -#: ../../addon.old/numfriends/numfriends.php:79 -msgid "How many contacts to display on profile sidebar" -msgstr "" - -#: ../../addon/gnot/gnot.php:48 ../../addon.old/gnot/gnot.php:48 -msgid "Gnot settings updated." -msgstr "" - -#: ../../addon/gnot/gnot.php:79 ../../addon.old/gnot/gnot.php:79 -msgid "Gnot Settings" -msgstr "" - -#: ../../addon/gnot/gnot.php:81 ../../addon.old/gnot/gnot.php:81 -msgid "" -"Allows threading of email comment notifications on Gmail and anonymising the" -" subject line." -msgstr "" - -#: ../../addon/gnot/gnot.php:82 ../../addon.old/gnot/gnot.php:82 -msgid "Enable this plugin/addon?" -msgstr "" - -#: ../../addon/gnot/gnot.php:97 ../../addon.old/gnot/gnot.php:97 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%d" -msgstr "" - -#: ../../addon/wppost/wppost.php:42 ../../addon.old/wppost/wppost.php:42 -msgid "Post to Wordpress" -msgstr "" - -#: ../../addon/wppost/wppost.php:76 ../../addon.old/wppost/wppost.php:76 -msgid "WordPress Post Settings" -msgstr "" - -#: ../../addon/wppost/wppost.php:78 ../../addon.old/wppost/wppost.php:78 -msgid "Enable WordPress Post Plugin" -msgstr "" - -#: ../../addon/wppost/wppost.php:83 ../../addon.old/wppost/wppost.php:83 -msgid "WordPress username" -msgstr "" - -#: ../../addon/wppost/wppost.php:88 ../../addon.old/wppost/wppost.php:88 -msgid "WordPress password" -msgstr "" - -#: ../../addon/wppost/wppost.php:93 ../../addon.old/wppost/wppost.php:93 -msgid "WordPress API URL" -msgstr "" - -#: ../../addon/wppost/wppost.php:98 ../../addon.old/wppost/wppost.php:98 -msgid "Post to WordPress by default" -msgstr "" - -#: ../../addon/wppost/wppost.php:103 ../../addon.old/wppost/wppost.php:103 -msgid "Provide a backlink to the Friendica post" -msgstr "" - -#: ../../addon/wppost/wppost.php:201 ../../addon/blogger/blogger.php:172 -#: ../../addon/posterous/posterous.php:189 -#: ../../addon.old/drpost/drpost.php:184 ../../addon.old/wppost/wppost.php:201 -#: ../../addon.old/blogger/blogger.php:172 -#: ../../addon.old/posterous/posterous.php:189 -msgid "Post from Friendica" -msgstr "" - -#: ../../addon/wppost/wppost.php:207 ../../addon.old/wppost/wppost.php:207 -msgid "Read the original post and comment stream on Friendica" -msgstr "" - -#: ../../addon/showmore/showmore.php:38 -#: ../../addon.old/showmore/showmore.php:38 -msgid "\"Show more\" Settings" -msgstr "" - -#: ../../addon/showmore/showmore.php:41 -#: ../../addon.old/showmore/showmore.php:41 -msgid "Enable Show More" -msgstr "" - -#: ../../addon/showmore/showmore.php:44 -#: ../../addon.old/showmore/showmore.php:44 -msgid "Cutting posts after how much characters" -msgstr "" - -#: ../../addon/showmore/showmore.php:65 -#: ../../addon.old/showmore/showmore.php:65 -msgid "Show More Settings saved." -msgstr "" - -#: ../../addon/piwik/piwik.php:79 ../../addon.old/piwik/piwik.php:79 -msgid "" -"This website is tracked using the Piwik " -"analytics tool." -msgstr "" - -#: ../../addon/piwik/piwik.php:82 ../../addon.old/piwik/piwik.php:82 -#, php-format -msgid "" -"If you do not want that your visits are logged this way you can" -" set a cookie to prevent Piwik from tracking further visits of the site " -"(opt-out)." -msgstr "" - -#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90 -msgid "Piwik Base URL" -msgstr "Piwik Base URL" - -#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90 -msgid "" -"Absolute path to your Piwik installation. (without protocol (http/s), with " -"trailing slash)" -msgstr "" - -#: ../../addon/piwik/piwik.php:91 ../../addon.old/piwik/piwik.php:91 -msgid "Site ID" -msgstr "Nettstedets ID" - -#: ../../addon/piwik/piwik.php:92 ../../addon.old/piwik/piwik.php:92 -msgid "Show opt-out cookie link?" -msgstr "Vis lenke for å velge bort cookie?" - -#: ../../addon/piwik/piwik.php:93 ../../addon.old/piwik/piwik.php:93 -msgid "Asynchronous tracking" -msgstr "" - -#: ../../addon/twitter/twitter.php:73 ../../addon.old/twitter/twitter.php:73 -msgid "Post to Twitter" -msgstr "Post til Twitter" - -#: ../../addon/twitter/twitter.php:122 ../../addon.old/twitter/twitter.php:122 -msgid "Twitter settings updated." -msgstr "Twitter-innstilinger oppdatert." - -#: ../../addon/twitter/twitter.php:146 ../../addon.old/twitter/twitter.php:146 -msgid "Twitter Posting Settings" -msgstr "Innstillinger for posting til Twitter" - -#: ../../addon/twitter/twitter.php:153 ../../addon.old/twitter/twitter.php:153 -msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." -msgstr "Ingen \"consumer key pair\" for Twitter funnet. Vennligst kontakt stedets administrator." - -#: ../../addon/twitter/twitter.php:172 ../../addon.old/twitter/twitter.php:172 -msgid "" -"At this Friendica 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 "Ved denne Friendica-forekomsten er Twitter-tillegget aktivert, men du har ennå ikke tilkoblet din konto til din Twitter-konto. For å gjøre det, klikk på knappen nedenfor for å få en PIN-kode fra Twitter som du må kopiere inn i feltet nedenfor og sende inn skjemaet. Bare dine offentlige innlegg vil bli lagt inn på Twitter. " - -#: ../../addon/twitter/twitter.php:173 ../../addon.old/twitter/twitter.php:173 -msgid "Log in with Twitter" -msgstr "Logg inn via Twitter" - -#: ../../addon/twitter/twitter.php:175 ../../addon.old/twitter/twitter.php:175 -msgid "Copy the PIN from Twitter here" -msgstr "Kopier PIN-kode fra Twitter hit" - -#: ../../addon/twitter/twitter.php:190 ../../addon.old/twitter/twitter.php:190 -msgid "" -"If enabled all your public postings can be posted to the " -"associated Twitter account. You can choose to do so by default (here) or for" -" every posting separately in the posting options when writing the entry." -msgstr "Aktivering gjør at alle dine offentlige innlegg kan postes til den tilknyttede Twitter-kontoen. Du kan velge å gjøre dette som standard (her), eller for hvert enkelt innlegg separat i valgmulighetene for posting når du skriver et innlegg." - -#: ../../addon/twitter/twitter.php:192 ../../addon.old/twitter/twitter.php:192 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to Twitter will lead the visitor to a blank page informing " -"the visitor that the access to your profile has been restricted." -msgstr "" - -#: ../../addon/twitter/twitter.php:195 ../../addon.old/twitter/twitter.php:195 -msgid "Allow posting to Twitter" -msgstr "Tillat posting til Twitter" - -#: ../../addon/twitter/twitter.php:198 ../../addon.old/twitter/twitter.php:198 -msgid "Send public postings to Twitter by default" -msgstr "Send offentlige innlegg til Twitter som standard" - -#: ../../addon/twitter/twitter.php:201 ../../addon.old/twitter/twitter.php:201 -msgid "Send linked #-tags and @-names to Twitter" -msgstr "" - -#: ../../addon/twitter/twitter.php:508 ../../addon.old/twitter/twitter.php:396 -msgid "Consumer key" -msgstr "Consumer key" - -#: ../../addon/twitter/twitter.php:509 ../../addon.old/twitter/twitter.php:397 -msgid "Consumer secret" -msgstr "Consumer secret" - -#: ../../addon/irc/irc.php:44 ../../addon.old/irc/irc.php:44 -msgid "IRC Settings" -msgstr "" - -#: ../../addon/irc/irc.php:46 ../../addon.old/irc/irc.php:46 -msgid "Channel(s) to auto connect (comma separated)" -msgstr "" - -#: ../../addon/irc/irc.php:51 ../../addon.old/irc/irc.php:51 -msgid "Popular Channels (comma separated)" -msgstr "" - -#: ../../addon/irc/irc.php:69 ../../addon.old/irc/irc.php:69 -msgid "IRC settings saved." -msgstr "" - -#: ../../addon/irc/irc.php:74 ../../addon.old/irc/irc.php:74 -msgid "IRC Chatroom" -msgstr "" - -#: ../../addon/irc/irc.php:96 ../../addon.old/irc/irc.php:96 -msgid "Popular Channels" -msgstr "" - -#: ../../addon/fromapp/fromapp.php:38 ../../addon.old/fromapp/fromapp.php:38 -msgid "Fromapp settings updated." -msgstr "" - -#: ../../addon/fromapp/fromapp.php:64 ../../addon.old/fromapp/fromapp.php:64 -msgid "FromApp Settings" -msgstr "" - -#: ../../addon/fromapp/fromapp.php:66 ../../addon.old/fromapp/fromapp.php:66 -msgid "" -"The application name you would like to show your posts originating from." -msgstr "" - -#: ../../addon/fromapp/fromapp.php:70 ../../addon.old/fromapp/fromapp.php:70 -msgid "Use this application name even if another application was used." -msgstr "" - -#: ../../addon/blogger/blogger.php:42 ../../addon.old/blogger/blogger.php:42 -msgid "Post to blogger" -msgstr "" - -#: ../../addon/blogger/blogger.php:74 ../../addon.old/blogger/blogger.php:74 -msgid "Blogger Post Settings" -msgstr "" - -#: ../../addon/blogger/blogger.php:76 ../../addon.old/blogger/blogger.php:76 -msgid "Enable Blogger Post Plugin" -msgstr "" - -#: ../../addon/blogger/blogger.php:81 ../../addon.old/blogger/blogger.php:81 -msgid "Blogger username" -msgstr "" - -#: ../../addon/blogger/blogger.php:86 ../../addon.old/blogger/blogger.php:86 -msgid "Blogger password" -msgstr "" - -#: ../../addon/blogger/blogger.php:91 ../../addon.old/blogger/blogger.php:91 -msgid "Blogger API URL" -msgstr "" - -#: ../../addon/blogger/blogger.php:96 ../../addon.old/blogger/blogger.php:96 -msgid "Post to Blogger by default" -msgstr "" - -#: ../../addon/posterous/posterous.php:37 -#: ../../addon.old/posterous/posterous.php:37 -msgid "Post to Posterous" -msgstr "" - -#: ../../addon/posterous/posterous.php:70 -#: ../../addon.old/posterous/posterous.php:70 -msgid "Posterous Post Settings" -msgstr "" - -#: ../../addon/posterous/posterous.php:72 -#: ../../addon.old/posterous/posterous.php:72 -msgid "Enable Posterous Post Plugin" -msgstr "" - -#: ../../addon/posterous/posterous.php:77 -#: ../../addon.old/posterous/posterous.php:77 -msgid "Posterous login" -msgstr "" - -#: ../../addon/posterous/posterous.php:82 -#: ../../addon.old/posterous/posterous.php:82 -msgid "Posterous password" -msgstr "" - -#: ../../addon/posterous/posterous.php:87 -#: ../../addon.old/posterous/posterous.php:87 -msgid "Posterous site ID" -msgstr "" - -#: ../../addon/posterous/posterous.php:92 -#: ../../addon.old/posterous/posterous.php:92 -msgid "Posterous API token" -msgstr "" - -#: ../../addon/posterous/posterous.php:97 -#: ../../addon.old/posterous/posterous.php:97 -msgid "Post to Posterous by default" -msgstr "" - -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/diabook/config.php:154 -#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 -msgid "Theme settings" -msgstr "" - -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "" - -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/diabook/config.php:155 -#: ../../view/theme/dispy/config.php:73 -msgid "Set font-size for posts and comments" -msgstr "" - -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "" - -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "" - -#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:49 -#: ../../include/nav.php:116 -msgid "Your posts and conversations" -msgstr "Dine innlegg og samtaler" - -#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:50 -msgid "Your profile page" -msgstr "" - -#: ../../view/theme/diabook/theme.php:89 -msgid "Your contacts" -msgstr "" - -#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:51 -msgid "Your photos" -msgstr "" - -#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:52 -msgid "Your events" -msgstr "" - -#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:53 -msgid "Personal notes" -msgstr "" - -#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:53 -msgid "Your personal photos" -msgstr "" - -#: ../../view/theme/diabook/theme.php:94 -#: ../../view/theme/diabook/theme.php:537 -#: ../../view/theme/diabook/theme.php:632 -#: ../../view/theme/diabook/config.php:163 -msgid "Community Pages" -msgstr "" - -#: ../../view/theme/diabook/theme.php:384 -#: ../../view/theme/diabook/theme.php:634 -#: ../../view/theme/diabook/config.php:165 -msgid "Community Profiles" -msgstr "" - -#: ../../view/theme/diabook/theme.php:405 -#: ../../view/theme/diabook/theme.php:639 -#: ../../view/theme/diabook/config.php:170 -msgid "Last users" -msgstr "" - -#: ../../view/theme/diabook/theme.php:434 -#: ../../view/theme/diabook/theme.php:641 -#: ../../view/theme/diabook/config.php:172 -msgid "Last likes" -msgstr "" - -#: ../../view/theme/diabook/theme.php:479 -#: ../../view/theme/diabook/theme.php:640 -#: ../../view/theme/diabook/config.php:171 -msgid "Last photos" -msgstr "" - -#: ../../view/theme/diabook/theme.php:516 -#: ../../view/theme/diabook/theme.php:637 -#: ../../view/theme/diabook/config.php:168 -msgid "Find Friends" -msgstr "" - -#: ../../view/theme/diabook/theme.php:517 -msgid "Local Directory" -msgstr "" - -#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35 -msgid "Similar Interests" -msgstr "" - -#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37 -msgid "Invite Friends" -msgstr "Inviterer venner" - -#: ../../view/theme/diabook/theme.php:572 -#: ../../view/theme/diabook/theme.php:633 -#: ../../view/theme/diabook/config.php:164 -msgid "Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:577 -msgid "Set zoomfactor for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:578 -#: ../../view/theme/diabook/config.php:161 -msgid "Set longitude (X) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/config.php:162 -msgid "Set latitude (Y) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:592 -#: ../../view/theme/diabook/theme.php:635 -#: ../../view/theme/diabook/config.php:166 -msgid "Help or @NewHere ?" -msgstr "" - -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:636 -#: ../../view/theme/diabook/config.php:167 -msgid "Connect Services" -msgstr "" - -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:638 -msgid "Last Tweets" -msgstr "" - -#: ../../view/theme/diabook/theme.php:609 -#: ../../view/theme/diabook/config.php:159 -msgid "Set twitter search term" -msgstr "" - -#: ../../view/theme/diabook/theme.php:629 -#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:288 -msgid "don't show" -msgstr "ikke vis" - -#: ../../view/theme/diabook/theme.php:629 -#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:287 -msgid "show" -msgstr "vis" - -#: ../../view/theme/diabook/theme.php:630 -msgid "Show/hide boxes at right-hand column:" -msgstr "" - -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "" - -#: ../../view/theme/diabook/config.php:157 -msgid "Set resolution for middle column" -msgstr "" - -#: ../../view/theme/diabook/config.php:158 -msgid "Set color scheme" -msgstr "" - -#: ../../view/theme/diabook/config.php:160 -msgid "Set zoomfactor for Earth Layer" -msgstr "" - -#: ../../view/theme/diabook/config.php:169 -msgid "Last tweets" -msgstr "" - -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "" - -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "" - -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "" - #: ../../include/profile_advanced.php:22 msgid "j F, Y" msgstr "j F, Y" @@ -7866,23 +50,57 @@ msgstr "Fødselsdag:" msgid "Age:" msgstr "Alder:" +#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138 +#: ../../boot.php:1490 +msgid "Status:" +msgstr "Status:" + #: ../../include/profile_advanced.php:43 #, php-format msgid "for %1$d %2$s" msgstr "" +#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:650 +msgid "Sexual Preference:" +msgstr "Seksuell orientering:" + +#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140 +#: ../../boot.php:1492 +msgid "Homepage:" +msgstr "Hjemmeside:" + +#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:652 +msgid "Hometown:" +msgstr "" + #: ../../include/profile_advanced.php:52 msgid "Tags:" msgstr "" +#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:653 +msgid "Political Views:" +msgstr "Politisk ståsted:" + #: ../../include/profile_advanced.php:56 msgid "Religion:" msgstr "Religion:" +#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142 +msgid "About:" +msgstr "Om:" + #: ../../include/profile_advanced.php:60 msgid "Hobbies/Interests:" msgstr "Hobbyer/Interesser:" +#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:657 +msgid "Likes:" +msgstr "" + +#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:658 +msgid "Dislikes:" +msgstr "" + #: ../../include/profile_advanced.php:67 msgid "Contact information and Social Networks:" msgstr "Kontaktinformasjon og sosiale nettverk:" @@ -7915,70 +133,6 @@ msgstr "Arbeid/ansatt hos:" msgid "School/education:" msgstr "Skole/utdanning:" -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Ukjent | Ikke kategorisert" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Blokker umiddelbart" - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Grumsete, poster søppel, fremhever bare seg selv" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Bekjent av meg, men har ingen mening" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, antakelig harmløs" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Respektert, har min tillit" - -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Ofte" - -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Hver time" - -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "To ganger daglig" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "" - -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "" - #: ../../include/profile_selectors.php:6 msgid "Male" msgstr "Mann" @@ -8123,8 +277,8 @@ msgstr "Utro" msgid "Sex Addict" msgstr "Sexavhengig" -#: ../../include/profile_selectors.php:42 ../../include/user.php:278 -#: ../../include/user.php:282 +#: ../../include/profile_selectors.php:42 ../../include/user.php:279 +#: ../../include/user.php:283 msgid "Friends" msgstr "Venner" @@ -8212,466 +366,347 @@ msgstr "Uinteressert" msgid "Ask me" msgstr "Spør meg" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:396 +#: ../../include/Contact.php:115 +msgid "stopped following" +msgstr "sluttet å følge" + +#: ../../include/Contact.php:225 ../../include/conversation.php:878 +msgid "Poke" +msgstr "" + +#: ../../include/Contact.php:226 ../../include/conversation.php:872 +msgid "View Status" +msgstr "" + +#: ../../include/Contact.php:227 ../../include/conversation.php:873 +msgid "View Profile" +msgstr "" + +#: ../../include/Contact.php:228 ../../include/conversation.php:874 +msgid "View Photos" +msgstr "" + +#: ../../include/Contact.php:229 ../../include/Contact.php:251 +#: ../../include/conversation.php:875 +msgid "Network Posts" +msgstr "" + +#: ../../include/Contact.php:230 ../../include/Contact.php:251 +#: ../../include/conversation.php:876 +msgid "Edit Contact" +msgstr "" + +#: ../../include/Contact.php:231 ../../include/Contact.php:251 +#: ../../include/conversation.php:877 +msgid "Send PM" +msgstr "Send privat melding" + +#: ../../include/bbcode.php:210 ../../include/bbcode.php:550 +#: ../../include/bbcode.php:551 +msgid "Image/photo" +msgstr "Bilde/fotografi" + +#: ../../include/bbcode.php:272 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "" + +#: ../../include/bbcode.php:514 ../../include/bbcode.php:534 +msgid "$1 wrote:" +msgstr "" + +#: ../../include/bbcode.php:559 ../../include/bbcode.php:560 +msgid "Encrypted content" +msgstr "" + +#: ../../include/acl_selectors.php:325 +msgid "Visible to everybody" +msgstr "Synlig for alle" + +#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146 +#: ../../view/theme/diabook/theme.php:629 +msgid "show" +msgstr "vis" + +#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146 +#: ../../view/theme/diabook/theme.php:629 +msgid "don't show" +msgstr "ikke vis" + +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Logget ut." + +#: ../../include/auth.php:112 ../../include/auth.php:175 +#: ../../mod/openid.php:93 +msgid "Login failed." +msgstr "Innlogging mislyktes." + +#: ../../include/auth.php:128 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" + +#: ../../include/auth.php:128 +msgid "The error message was:" +msgstr "" + +#: ../../include/bb2diaspora.php:393 ../../include/event.php:11 +#: ../../mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: ../../include/bb2diaspora.php:399 ../../include/event.php:20 msgid "Starts:" msgstr "Starter:" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:404 +#: ../../include/bb2diaspora.php:407 ../../include/event.php:30 msgid "Finishes:" msgstr "Slutter:" -#: ../../include/delivery.php:457 ../../include/notifier.php:771 -msgid "(no subject)" -msgstr "(uten emne)" +#: ../../include/bb2diaspora.php:415 ../../include/event.php:40 +#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1485 +msgid "Location:" +msgstr "Plassering:" -#: ../../include/Scrape.php:583 -msgid " on Last.fm" +#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502 +msgid "Disallowed profile URL." +msgstr "Underkjent profil-URL." + +#: ../../include/follow.php:32 +msgid "Connect URL missing." msgstr "" -#: ../../include/text.php:243 -msgid "prev" -msgstr "forrige" +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Dette nettverkets konfigurasjon tillater ikke kommunikasjon med andre nettverk." -#: ../../include/text.php:245 -msgid "first" -msgstr "første" +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Ingen passende kommunikasjonsprotokoller eller strømmer ble oppdaget." -#: ../../include/text.php:274 -msgid "last" -msgstr "siste" +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "Den angitte profiladressen inneholder for lite information." -#: ../../include/text.php:277 -msgid "next" -msgstr "neste" +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Fant ingen forfatter eller navn." -#: ../../include/text.php:295 -msgid "newer" +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Ingen nettleser-URL passet med denne adressen." + +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." msgstr "" -#: ../../include/text.php:299 -msgid "older" +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." msgstr "" -#: ../../include/text.php:604 -msgid "No contacts" -msgstr "Ingen kontakter" +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Den oppgitte profiladressen tilhører et nettverk som har blitt avskrudd på dette nettstedet." -#: ../../include/text.php:613 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d kontakt" -msgstr[1] "%d kontakter" +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Begrenset profil. Denne personen kan ikke motta direkte/personlige oppdateringer fra deg." -#: ../../include/text.php:726 -msgid "poke" +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Ikke i stand til å hente kontaktinformasjon." + +#: ../../include/follow.php:259 +msgid "following" +msgstr "følger" + +#: ../../include/user.php:39 +msgid "An invitation is required." +msgstr "En invitasjon er nødvendig." + +#: ../../include/user.php:44 +msgid "Invitation could not be verified." +msgstr "Invitasjon kunne ikke bekreftes." + +#: ../../include/user.php:52 +msgid "Invalid OpenID url" +msgstr "Ugyldig OpenID URL" + +#: ../../include/user.php:67 +msgid "Please enter the required information." +msgstr "Vennligst skriv inn den nødvendige informasjonen." + +#: ../../include/user.php:81 +msgid "Please use a shorter name." +msgstr "Vennligst bruk et kortere navn." + +#: ../../include/user.php:83 +msgid "Name too short." +msgstr "Navnet er for kort." + +#: ../../include/user.php:98 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Dette ser ikke ut til å være ditt full navn (Fornavn Etternavn)." + +#: ../../include/user.php:103 +msgid "Your email domain is not among those allowed on this site." +msgstr "Ditt e-postdomene er ikke blant de som er tillat på dette stedet." + +#: ../../include/user.php:106 +msgid "Not a valid email address." +msgstr "Ugyldig e-postadresse." + +#: ../../include/user.php:116 +msgid "Cannot use that email." +msgstr "Kan ikke bruke den e-postadressen." + +#: ../../include/user.php:122 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Ditt kallenavn kan bare inneholde \"a-z\", \"0-9\", \"-\", \"_\", og må også begynne med en bokstav." + +#: ../../include/user.php:128 ../../include/user.php:226 +msgid "Nickname is already registered. Please choose another." +msgstr "Kallenavnet er allerede registrert. Vennligst velg et annet." + +#: ../../include/user.php:138 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." msgstr "" -#: ../../include/text.php:726 ../../include/conversation.php:210 -msgid "poked" -msgstr "" +#: ../../include/user.php:154 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ALVORLIG FEIL: mislyktes med å lage sikkerhetsnøkler." -#: ../../include/text.php:727 -msgid "ping" -msgstr "" +#: ../../include/user.php:212 +msgid "An error occurred during registration. Please try again." +msgstr "En feil oppstod under registreringen. Vennligst prøv igjen." -#: ../../include/text.php:727 -msgid "pinged" -msgstr "" - -#: ../../include/text.php:728 -msgid "prod" -msgstr "" - -#: ../../include/text.php:728 -msgid "prodded" -msgstr "" - -#: ../../include/text.php:729 -msgid "slap" -msgstr "" - -#: ../../include/text.php:729 -msgid "slapped" -msgstr "" - -#: ../../include/text.php:730 -msgid "finger" -msgstr "" - -#: ../../include/text.php:730 -msgid "fingered" -msgstr "" - -#: ../../include/text.php:731 -msgid "rebuff" -msgstr "" - -#: ../../include/text.php:731 -msgid "rebuffed" -msgstr "" - -#: ../../include/text.php:743 -msgid "happy" -msgstr "" - -#: ../../include/text.php:744 -msgid "sad" -msgstr "" - -#: ../../include/text.php:745 -msgid "mellow" -msgstr "" - -#: ../../include/text.php:746 -msgid "tired" -msgstr "" - -#: ../../include/text.php:747 -msgid "perky" -msgstr "" - -#: ../../include/text.php:748 -msgid "angry" -msgstr "" - -#: ../../include/text.php:749 -msgid "stupified" -msgstr "" - -#: ../../include/text.php:750 -msgid "puzzled" -msgstr "" - -#: ../../include/text.php:751 -msgid "interested" -msgstr "" - -#: ../../include/text.php:752 -msgid "bitter" -msgstr "" - -#: ../../include/text.php:753 -msgid "cheerful" -msgstr "" - -#: ../../include/text.php:754 -msgid "alive" -msgstr "" - -#: ../../include/text.php:755 -msgid "annoyed" -msgstr "" - -#: ../../include/text.php:756 -msgid "anxious" -msgstr "" - -#: ../../include/text.php:757 -msgid "cranky" -msgstr "" - -#: ../../include/text.php:758 -msgid "disturbed" -msgstr "" - -#: ../../include/text.php:759 -msgid "frustrated" -msgstr "" - -#: ../../include/text.php:760 -msgid "motivated" -msgstr "" - -#: ../../include/text.php:761 -msgid "relaxed" -msgstr "" - -#: ../../include/text.php:762 -msgid "surprised" -msgstr "" - -#: ../../include/text.php:926 -msgid "January" -msgstr "januar" - -#: ../../include/text.php:926 -msgid "February" -msgstr "februar" - -#: ../../include/text.php:926 -msgid "March" -msgstr "mars" - -#: ../../include/text.php:926 -msgid "April" -msgstr "april" - -#: ../../include/text.php:926 -msgid "May" -msgstr "mai" - -#: ../../include/text.php:926 -msgid "June" -msgstr "juni" - -#: ../../include/text.php:926 -msgid "July" -msgstr "juli" - -#: ../../include/text.php:926 -msgid "August" -msgstr "august" - -#: ../../include/text.php:926 -msgid "September" -msgstr "september" - -#: ../../include/text.php:926 -msgid "October" -msgstr "oktober" - -#: ../../include/text.php:926 -msgid "November" -msgstr "november" - -#: ../../include/text.php:926 -msgid "December" -msgstr "desember" - -#: ../../include/text.php:1010 -msgid "bytes" -msgstr "bytes" - -#: ../../include/text.php:1037 ../../include/text.php:1049 -msgid "Click to open/close" -msgstr "" - -#: ../../include/text.php:1222 ../../include/user.php:236 +#: ../../include/user.php:237 ../../include/text.php:1596 msgid "default" msgstr "" -#: ../../include/text.php:1234 -msgid "Select an alternate language" -msgstr "Velg et annet språk" +#: ../../include/user.php:247 +msgid "An error occurred creating your default profile. Please try again." +msgstr "En feil oppstod under opprettelsen av din standardprofil. Vennligst prøv igjen." -#: ../../include/text.php:1444 -msgid "activity" +#: ../../include/user.php:325 ../../include/user.php:332 +#: ../../include/user.php:339 ../../mod/photos.php:154 +#: ../../mod/photos.php:725 ../../mod/photos.php:1183 +#: ../../mod/photos.php:1206 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:493 +msgid "Profile Photos" +msgstr "Profilbilder" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Ukjent | Ikke kategorisert" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Blokker umiddelbart" + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Grumsete, poster søppel, fremhever bare seg selv" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Bekjent av meg, men har ingen mening" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, antakelig harmløs" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Respektert, har min tillit" + +#: ../../include/contact_selectors.php:56 ../../mod/admin.php:452 +msgid "Frequently" +msgstr "Ofte" + +#: ../../include/contact_selectors.php:57 ../../mod/admin.php:453 +msgid "Hourly" +msgstr "Hver time" + +#: ../../include/contact_selectors.php:58 ../../mod/admin.php:454 +msgid "Twice daily" +msgstr "To ganger daglig" + +#: ../../include/contact_selectors.php:59 ../../mod/admin.php:455 +msgid "Daily" +msgstr "Daglig" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Ukentlig" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Månedlig" + +#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/contact_selectors.php:77 +msgid "OStatus" msgstr "" -#: ../../include/text.php:1447 -msgid "post" +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" msgstr "" -#: ../../include/text.php:1602 -msgid "Item filed" +#: ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 ../../mod/admin.php:766 +#: ../../mod/admin.php:777 +msgid "Email" +msgstr "E-post" + +#: ../../include/contact_selectors.php:80 ../../mod/settings.php:705 +#: ../../mod/dfrn_request.php:842 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49 +#: ../../mod/newmember.php:51 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/contact_selectors.php:82 +msgid "Zot!" msgstr "" -#: ../../include/diaspora.php:702 -msgid "Sharing notification from Diaspora network" -msgstr "Dele varslinger fra Diaspora nettverket" - -#: ../../include/diaspora.php:2236 -msgid "Attachments:" +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" msgstr "" -#: ../../include/network.php:847 -msgid "view full size" +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" msgstr "" -#: ../../include/oembed.php:137 -msgid "Embedded content" +#: ../../include/contact_selectors.php:85 +msgid "MySpace" msgstr "" -#: ../../include/oembed.php:146 -msgid "Embedding disabled" -msgstr "Innebygging avskrudd" - -#: ../../include/uimport.php:61 -msgid "Error decoding account file" -msgstr "" - -#: ../../include/uimport.php:67 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" - -#: ../../include/uimport.php:72 -msgid "Error! I can't import this file: DB schema version is not compatible." -msgstr "" - -#: ../../include/uimport.php:81 -msgid "Error! Cannot check nickname" -msgstr "" - -#: ../../include/uimport.php:85 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "" - -#: ../../include/uimport.php:104 -msgid "User creation error" -msgstr "" - -#: ../../include/uimport.php:122 -msgid "User profile creation error" -msgstr "" - -#: ../../include/uimport.php:167 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/uimport.php:245 -msgid "Done. You can now login with your username and password" -msgstr "" - -#: ../../include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "" - -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "" - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Alle" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Lag en ny gruppe" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "" - -#: ../../include/nav.php:46 ../../boot.php:948 -msgid "Logout" -msgstr "Logg ut" - -#: ../../include/nav.php:46 -msgid "End this session" -msgstr "Avslutt denne økten" - -#: ../../include/nav.php:49 ../../boot.php:1724 -msgid "Status" -msgstr "Status" - -#: ../../include/nav.php:64 -msgid "Sign in" -msgstr "Logg inn" - -#: ../../include/nav.php:77 -msgid "Home Page" -msgstr "Hovedside" - -#: ../../include/nav.php:81 -msgid "Create an account" -msgstr "Lag konto" - -#: ../../include/nav.php:86 -msgid "Help and documentation" -msgstr "Hjelp og dokumentasjon" - -#: ../../include/nav.php:89 -msgid "Apps" -msgstr "Programmer" - -#: ../../include/nav.php:89 -msgid "Addon applications, utilities, games" -msgstr "Tilleggsprorammer, verktøy, spill" - -#: ../../include/nav.php:91 -msgid "Search site content" -msgstr "Søk i nettstedets innhold" - -#: ../../include/nav.php:101 -msgid "Conversations on this site" -msgstr "Samtaler på dette nettstedet" - -#: ../../include/nav.php:103 -msgid "Directory" -msgstr "Katalog" - -#: ../../include/nav.php:103 -msgid "People directory" -msgstr "Personkatalog" - -#: ../../include/nav.php:113 -msgid "Conversations from your friends" -msgstr "Samtaler fra dine venner" - -#: ../../include/nav.php:114 -msgid "Network Reset" -msgstr "" - -#: ../../include/nav.php:114 -msgid "Load Network page with no filters" -msgstr "" - -#: ../../include/nav.php:122 -msgid "Friend Requests" -msgstr "" - -#: ../../include/nav.php:124 -msgid "See all notifications" -msgstr "" - -#: ../../include/nav.php:125 -msgid "Mark all system notifications seen" -msgstr "" - -#: ../../include/nav.php:129 -msgid "Private mail" -msgstr "Privat post" - -#: ../../include/nav.php:130 -msgid "Inbox" -msgstr "Innboks" - -#: ../../include/nav.php:131 -msgid "Outbox" -msgstr "Utboks" - -#: ../../include/nav.php:135 -msgid "Manage" -msgstr "Behandle" - -#: ../../include/nav.php:135 -msgid "Manage other pages" -msgstr "Behandle andre sider" - -#: ../../include/nav.php:140 ../../boot.php:1238 -msgid "Profiles" -msgstr "Profiler" - -#: ../../include/nav.php:140 -msgid "Manage/Edit Profiles" -msgstr "" - -#: ../../include/nav.php:142 -msgid "Manage/edit friends and contacts" -msgstr "Behandle/endre venner og kontakter" - -#: ../../include/nav.php:149 -msgid "Site setup and configuration" -msgstr "Nettstedsoppsett og konfigurasjon" - -#: ../../include/nav.php:173 -msgid "Nothing new here" +#: ../../include/contact_selectors.php:87 +msgid "Google+" msgstr "" #: ../../include/contact_widgets.php:6 @@ -8686,6 +721,11 @@ msgstr "" msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Eksempel: ole@eksempel.no, http://eksempel.no/kari" +#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88 +#: ../../mod/match.php:58 ../../boot.php:1417 +msgid "Connect" +msgstr "Forbindelse" + #: ../../include/contact_widgets.php:23 #, php-format msgid "%d invitation available" @@ -8709,10 +749,28 @@ msgstr "Koble/Følg" msgid "Examples: Robert Morgenstein, Fishing" msgstr "" +#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613 +#: ../../mod/directory.php:61 +msgid "Find" +msgstr "Finn" + +#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66 +#: ../../view/theme/diabook/theme.php:520 +msgid "Friend Suggestions" +msgstr "Venneforslag" + +#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519 +msgid "Similar Interests" +msgstr "" + #: ../../include/contact_widgets.php:36 msgid "Random Profile" msgstr "" +#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521 +msgid "Invite Friends" +msgstr "Inviterer venner" + #: ../../include/contact_widgets.php:70 msgid "Networks" msgstr "" @@ -8733,19 +791,25 @@ msgstr "" msgid "Categories" msgstr "" -#: ../../include/auth.php:36 -msgid "Logged out." -msgstr "Logget ut." +#: ../../include/contact_widgets.php:199 ../../mod/contacts.php:343 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d felles kontakt" +msgstr[1] "%d felles kontakter" -#: ../../include/auth.php:126 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." +#: ../../include/contact_widgets.php:204 ../../mod/content.php:629 +#: ../../object/Item.php:365 ../../boot.php:671 +msgid "show more" +msgstr "vis mer" + +#: ../../include/Scrape.php:583 +msgid " on Last.fm" msgstr "" -#: ../../include/auth.php:126 -msgid "The error message was:" -msgstr "" +#: ../../include/network.php:877 +msgid "view full size" +msgstr "Vis i full størrelse" #: ../../include/datetime.php:43 ../../include/datetime.php:45 msgid "Miscellaneous" @@ -8771,10 +835,26 @@ msgstr "aldri" msgid "less than a second ago" msgstr "for mindre enn ett sekund siden" +#: ../../include/datetime.php:285 +msgid "years" +msgstr "år" + +#: ../../include/datetime.php:286 +msgid "months" +msgstr "måneder" + #: ../../include/datetime.php:287 msgid "week" msgstr "uke" +#: ../../include/datetime.php:287 +msgid "weeks" +msgstr "uker" + +#: ../../include/datetime.php:288 +msgid "days" +msgstr "dager" + #: ../../include/datetime.php:289 msgid "hour" msgstr "time" @@ -8804,30 +884,145 @@ msgstr "sekunder" msgid "%1$d %2$s ago" msgstr "" -#: ../../include/datetime.php:472 ../../include/items.php:1695 +#: ../../include/datetime.php:472 ../../include/items.php:1813 #, php-format msgid "%s's birthday" msgstr "" -#: ../../include/datetime.php:473 ../../include/items.php:1696 +#: ../../include/datetime.php:473 ../../include/items.php:1814 #, php-format msgid "Happy Birthday %s" msgstr "" -#: ../../include/onepoll.php:414 -msgid "From: " -msgstr "Fra: " - -#: ../../include/bbcode.php:202 ../../include/bbcode.php:423 -msgid "Image/photo" -msgstr "Bilde/fotografi" - -#: ../../include/bbcode.php:388 ../../include/bbcode.php:408 -msgid "$1 wrote:" +#: ../../include/plugin.php:439 ../../include/plugin.php:441 +msgid "Click here to upgrade." msgstr "" -#: ../../include/bbcode.php:427 ../../include/bbcode.php:428 -msgid "Encrypted content" +#: ../../include/plugin.php:447 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/plugin.php:452 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: ../../include/delivery.php:457 ../../include/notifier.php:775 +msgid "(no subject)" +msgstr "(uten emne)" + +#: ../../include/delivery.php:468 ../../include/enotify.php:28 +#: ../../include/notifier.php:785 +msgid "noreply" +msgstr "ikke svar" + +#: ../../include/diaspora.php:621 ../../include/conversation.php:172 +#: ../../mod/dfrn_confirm.php:477 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s er nå venner med %2$s" + +#: ../../include/diaspora.php:704 +msgid "Sharing notification from Diaspora network" +msgstr "Dele varslinger fra Diaspora nettverket" + +#: ../../include/diaspora.php:1874 ../../include/text.php:1862 +#: ../../include/conversation.php:126 ../../include/conversation.php:254 +#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151 +#: ../../view/theme/diabook/theme.php:464 +msgid "photo" +msgstr "bilde" + +#: ../../include/diaspora.php:1874 ../../include/conversation.php:121 +#: ../../include/conversation.php:130 ../../include/conversation.php:249 +#: ../../include/conversation.php:258 ../../mod/subthread.php:87 +#: ../../mod/tagger.php:62 ../../mod/like.php:151 ../../mod/like.php:322 +#: ../../view/theme/diabook/theme.php:459 +#: ../../view/theme/diabook/theme.php:468 +msgid "status" +msgstr "status" + +#: ../../include/diaspora.php:1890 ../../include/conversation.php:137 +#: ../../mod/like.php:168 ../../view/theme/diabook/theme.php:473 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s liker %2$s's %3$s" + +#: ../../include/diaspora.php:2262 +msgid "Attachments:" +msgstr "" + +#: ../../include/items.php:3488 ../../mod/dfrn_request.php:716 +msgid "[Name Withheld]" +msgstr "[Navnet tilbakeholdt]" + +#: ../../include/items.php:3495 +msgid "A new person is sharing with you at " +msgstr "" + +#: ../../include/items.php:3495 +msgid "You have a new follower at " +msgstr "Du har en ny følgesvenn på " + +#: ../../include/items.php:3979 ../../mod/display.php:51 +#: ../../mod/display.php:246 ../../mod/admin.php:158 ../../mod/admin.php:809 +#: ../../mod/admin.php:1009 ../../mod/viewsrc.php:15 ../../mod/notice.php:15 +msgid "Item not found." +msgstr "Enheten ble ikke funnet." + +#: ../../include/items.php:4018 +msgid "Do you really want to delete this item?" +msgstr "" + +#: ../../include/items.php:4020 ../../mod/profiles.php:610 +#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246 +#: ../../mod/settings.php:961 ../../mod/settings.php:967 +#: ../../mod/settings.php:975 ../../mod/settings.php:979 +#: ../../mod/settings.php:984 ../../mod/settings.php:990 +#: ../../mod/settings.php:996 ../../mod/settings.php:1002 +#: ../../mod/settings.php:1032 ../../mod/settings.php:1033 +#: ../../mod/settings.php:1034 ../../mod/settings.php:1035 +#: ../../mod/settings.php:1036 ../../mod/dfrn_request.php:836 +#: ../../mod/suggest.php:29 ../../mod/message.php:209 +msgid "Yes" +msgstr "Ja" + +#: ../../include/items.php:4023 ../../include/conversation.php:1120 +#: ../../mod/contacts.php:249 ../../mod/settings.php:585 +#: ../../mod/settings.php:611 ../../mod/dfrn_request.php:848 +#: ../../mod/suggest.php:32 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 +#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/message.php:212 +#: ../../mod/photos.php:202 ../../mod/photos.php:290 +msgid "Cancel" +msgstr "Avbryt" + +#: ../../include/items.php:4143 ../../mod/profiles.php:146 +#: ../../mod/profiles.php:571 ../../mod/notes.php:20 ../../mod/display.php:242 +#: ../../mod/nogroup.php:25 ../../mod/item.php:143 ../../mod/item.php:159 +#: ../../mod/allfriends.php:9 ../../mod/api.php:26 ../../mod/api.php:31 +#: ../../mod/register.php:40 ../../mod/regmod.php:118 ../../mod/attach.php:33 +#: ../../mod/contacts.php:147 ../../mod/settings.php:91 +#: ../../mod/settings.php:566 ../../mod/settings.php:571 +#: ../../mod/crepair.php:115 ../../mod/delegate.php:6 ../../mod/poke.php:135 +#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56 +#: ../../mod/editpost.php:10 ../../mod/events.php:140 ../../mod/uimport.php:23 +#: ../../mod/follow.php:9 ../../mod/fsuggest.php:78 ../../mod/group.php:19 +#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55 +#: ../../mod/wall_upload.php:66 ../../mod/invite.php:15 +#: ../../mod/invite.php:101 ../../mod/wallmessage.php:9 +#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 +#: ../../mod/wallmessage.php:103 ../../mod/manage.php:96 +#: ../../mod/message.php:38 ../../mod/message.php:174 ../../mod/mood.php:114 +#: ../../mod/network.php:6 ../../mod/notifications.php:66 +#: ../../mod/photos.php:133 ../../mod/photos.php:1044 +#: ../../mod/install.php:151 ../../mod/profile_photo.php:19 +#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180 +#: ../../mod/profile_photo.php:193 ../../index.php:346 +msgid "Permission denied." +msgstr "Ingen tilgang." + +#: ../../include/items.php:4213 +msgid "Archives" msgstr "" #: ../../include/features.php:23 @@ -8890,6 +1085,11 @@ msgstr "" msgid "Enable widget to display Network posts only from selected network" msgstr "" +#: ../../include/features.php:41 ../../mod/search.php:30 +#: ../../mod/network.php:233 +msgid "Saved Searches" +msgstr "Lagrede søk" + #: ../../include/features.php:41 msgid "Save search terms for re-use" msgstr "" @@ -8978,18 +1178,621 @@ msgstr "" msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/dba.php:41 +#: ../../include/dba.php:44 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "Kan ikke finne DNS informasjon for databasetjeneren '%s' " -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[ikke noe emne]" +#: ../../include/text.php:294 +msgid "prev" +msgstr "forrige" -#: ../../include/acl_selectors.php:286 -msgid "Visible to everybody" -msgstr "Synlig for alle" +#: ../../include/text.php:296 +msgid "first" +msgstr "første" + +#: ../../include/text.php:325 +msgid "last" +msgstr "siste" + +#: ../../include/text.php:328 +msgid "next" +msgstr "neste" + +#: ../../include/text.php:352 +msgid "newer" +msgstr "" + +#: ../../include/text.php:356 +msgid "older" +msgstr "" + +#: ../../include/text.php:807 +msgid "No contacts" +msgstr "Ingen kontakter" + +#: ../../include/text.php:816 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d kontakt" +msgstr[1] "%d kontakter" + +#: ../../include/text.php:828 ../../mod/viewcontacts.php:76 +msgid "View Contacts" +msgstr "Vis kontakter" + +#: ../../include/text.php:905 ../../include/text.php:906 +#: ../../include/nav.php:118 ../../mod/search.php:99 +msgid "Search" +msgstr "Søk" + +#: ../../include/text.php:908 ../../mod/notes.php:63 ../../mod/filer.php:31 +msgid "Save" +msgstr "Lagre" + +#: ../../include/text.php:957 +msgid "poke" +msgstr "" + +#: ../../include/text.php:957 ../../include/conversation.php:211 +msgid "poked" +msgstr "" + +#: ../../include/text.php:958 +msgid "ping" +msgstr "" + +#: ../../include/text.php:958 +msgid "pinged" +msgstr "" + +#: ../../include/text.php:959 +msgid "prod" +msgstr "" + +#: ../../include/text.php:959 +msgid "prodded" +msgstr "" + +#: ../../include/text.php:960 +msgid "slap" +msgstr "" + +#: ../../include/text.php:960 +msgid "slapped" +msgstr "" + +#: ../../include/text.php:961 +msgid "finger" +msgstr "" + +#: ../../include/text.php:961 +msgid "fingered" +msgstr "" + +#: ../../include/text.php:962 +msgid "rebuff" +msgstr "" + +#: ../../include/text.php:962 +msgid "rebuffed" +msgstr "" + +#: ../../include/text.php:976 +msgid "happy" +msgstr "" + +#: ../../include/text.php:977 +msgid "sad" +msgstr "" + +#: ../../include/text.php:978 +msgid "mellow" +msgstr "" + +#: ../../include/text.php:979 +msgid "tired" +msgstr "" + +#: ../../include/text.php:980 +msgid "perky" +msgstr "" + +#: ../../include/text.php:981 +msgid "angry" +msgstr "" + +#: ../../include/text.php:982 +msgid "stupified" +msgstr "" + +#: ../../include/text.php:983 +msgid "puzzled" +msgstr "" + +#: ../../include/text.php:984 +msgid "interested" +msgstr "" + +#: ../../include/text.php:985 +msgid "bitter" +msgstr "" + +#: ../../include/text.php:986 +msgid "cheerful" +msgstr "" + +#: ../../include/text.php:987 +msgid "alive" +msgstr "" + +#: ../../include/text.php:988 +msgid "annoyed" +msgstr "" + +#: ../../include/text.php:989 +msgid "anxious" +msgstr "" + +#: ../../include/text.php:990 +msgid "cranky" +msgstr "" + +#: ../../include/text.php:991 +msgid "disturbed" +msgstr "" + +#: ../../include/text.php:992 +msgid "frustrated" +msgstr "" + +#: ../../include/text.php:993 +msgid "motivated" +msgstr "" + +#: ../../include/text.php:994 +msgid "relaxed" +msgstr "" + +#: ../../include/text.php:995 +msgid "surprised" +msgstr "" + +#: ../../include/text.php:1163 +msgid "Monday" +msgstr "mandag" + +#: ../../include/text.php:1163 +msgid "Tuesday" +msgstr "tirsdag" + +#: ../../include/text.php:1163 +msgid "Wednesday" +msgstr "onsdag" + +#: ../../include/text.php:1163 +msgid "Thursday" +msgstr "torsdag" + +#: ../../include/text.php:1163 +msgid "Friday" +msgstr "fredag" + +#: ../../include/text.php:1163 +msgid "Saturday" +msgstr "lørdag" + +#: ../../include/text.php:1163 +msgid "Sunday" +msgstr "søndag" + +#: ../../include/text.php:1167 +msgid "January" +msgstr "januar" + +#: ../../include/text.php:1167 +msgid "February" +msgstr "februar" + +#: ../../include/text.php:1167 +msgid "March" +msgstr "mars" + +#: ../../include/text.php:1167 +msgid "April" +msgstr "april" + +#: ../../include/text.php:1167 +msgid "May" +msgstr "mai" + +#: ../../include/text.php:1167 +msgid "June" +msgstr "juni" + +#: ../../include/text.php:1167 +msgid "July" +msgstr "juli" + +#: ../../include/text.php:1167 +msgid "August" +msgstr "august" + +#: ../../include/text.php:1167 +msgid "September" +msgstr "september" + +#: ../../include/text.php:1167 +msgid "October" +msgstr "oktober" + +#: ../../include/text.php:1167 +msgid "November" +msgstr "november" + +#: ../../include/text.php:1167 +msgid "December" +msgstr "desember" + +#: ../../include/text.php:1323 ../../mod/videos.php:301 +msgid "View Video" +msgstr "" + +#: ../../include/text.php:1355 +msgid "bytes" +msgstr "bytes" + +#: ../../include/text.php:1379 ../../include/text.php:1391 +msgid "Click to open/close" +msgstr "" + +#: ../../include/text.php:1553 ../../mod/events.php:335 +msgid "link to source" +msgstr "lenke til kilde" + +#: ../../include/text.php:1608 +msgid "Select an alternate language" +msgstr "Velg et annet språk" + +#: ../../include/text.php:1860 ../../include/conversation.php:118 +#: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456 +msgid "event" +msgstr "hendelse" + +#: ../../include/text.php:1864 +msgid "activity" +msgstr "" + +#: ../../include/text.php:1866 ../../mod/content.php:628 +#: ../../object/Item.php:364 ../../object/Item.php:377 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/text.php:1867 +msgid "post" +msgstr "" + +#: ../../include/text.php:2022 +msgid "Item filed" +msgstr "" + +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "" + +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "" + +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "Alle" + +#: ../../include/group.php:249 +msgid "edit" +msgstr "" + +#: ../../include/group.php:270 ../../mod/newmember.php:66 +msgid "Groups" +msgstr "" + +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "" + +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Lag en ny gruppe" + +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "" + +#: ../../include/group.php:275 ../../mod/network.php:234 +msgid "add" +msgstr "" + +#: ../../include/conversation.php:140 ../../mod/like.php:170 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s liker ikke %2$s's %3$s" + +#: ../../include/conversation.php:207 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:227 ../../mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: ../../include/conversation.php:266 ../../mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s merket %2$s sitt %3$s med %4$s" + +#: ../../include/conversation.php:291 +msgid "post/item" +msgstr "" + +#: ../../include/conversation.php:292 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "" + +#: ../../include/conversation.php:612 ../../mod/content.php:461 +#: ../../mod/content.php:763 ../../object/Item.php:126 +msgid "Select" +msgstr "Velg" + +#: ../../include/conversation.php:613 ../../mod/admin.php:770 +#: ../../mod/settings.php:647 ../../mod/group.php:171 +#: ../../mod/photos.php:1637 ../../mod/content.php:462 +#: ../../mod/content.php:764 ../../object/Item.php:127 +msgid "Delete" +msgstr "Slett" + +#: ../../include/conversation.php:652 ../../mod/content.php:495 +#: ../../mod/content.php:875 ../../mod/content.php:876 +#: ../../object/Item.php:306 ../../object/Item.php:307 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Besøk %ss profil [%s]" + +#: ../../include/conversation.php:664 ../../object/Item.php:297 +msgid "Categories:" +msgstr "Kategorier:" + +#: ../../include/conversation.php:665 ../../object/Item.php:298 +msgid "Filed under:" +msgstr "Lagret i:" + +#: ../../include/conversation.php:672 ../../mod/content.php:505 +#: ../../mod/content.php:887 ../../object/Item.php:320 +#, php-format +msgid "%s from %s" +msgstr "%s fra %s" + +#: ../../include/conversation.php:687 ../../mod/content.php:520 +msgid "View in context" +msgstr "Vis i sammenheng" + +#: ../../include/conversation.php:689 ../../include/conversation.php:1100 +#: ../../mod/editpost.php:124 ../../mod/wallmessage.php:156 +#: ../../mod/message.php:334 ../../mod/message.php:565 +#: ../../mod/photos.php:1532 ../../mod/content.php:522 +#: ../../mod/content.php:906 ../../object/Item.php:341 +msgid "Please wait" +msgstr "Vennligst vent" + +#: ../../include/conversation.php:768 +msgid "remove" +msgstr "" + +#: ../../include/conversation.php:772 +msgid "Delete Selected Items" +msgstr "Slette valgte elementer" + +#: ../../include/conversation.php:871 +msgid "Follow Thread" +msgstr "" + +#: ../../include/conversation.php:940 +#, php-format +msgid "%s likes this." +msgstr "%s liker dette." + +#: ../../include/conversation.php:940 +#, php-format +msgid "%s doesn't like this." +msgstr "%s liker ikke dette." + +#: ../../include/conversation.php:945 +#, php-format +msgid "%2$d people like this" +msgstr "" + +#: ../../include/conversation.php:948 +#, php-format +msgid "%2$d people don't like this" +msgstr "" + +#: ../../include/conversation.php:962 +msgid "and" +msgstr "og" + +#: ../../include/conversation.php:968 +#, php-format +msgid ", and %d other people" +msgstr ", og %d andre personer" + +#: ../../include/conversation.php:970 +#, php-format +msgid "%s like this." +msgstr "%s liker dette." + +#: ../../include/conversation.php:970 +#, php-format +msgid "%s don't like this." +msgstr "%s liker ikke dette." + +#: ../../include/conversation.php:997 ../../include/conversation.php:1015 +msgid "Visible to everybody" +msgstr "Synlig for alle" + +#: ../../include/conversation.php:998 ../../include/conversation.php:1016 +#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 +#: ../../mod/message.php:283 ../../mod/message.php:291 +#: ../../mod/message.php:466 ../../mod/message.php:474 +msgid "Please enter a link URL:" +msgstr "Vennligst skriv inn en lenke URL:" + +#: ../../include/conversation.php:999 ../../include/conversation.php:1017 +msgid "Please enter a video link/URL:" +msgstr "" + +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +msgid "Please enter an audio link/URL:" +msgstr "" + +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +msgid "Tag term:" +msgstr "" + +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +#: ../../mod/filer.php:30 +msgid "Save to Folder:" +msgstr "" + +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Where are you right now?" +msgstr "Hvor er du akkurat nå?" + +#: ../../include/conversation.php:1004 +msgid "Delete item(s)?" +msgstr "" + +#: ../../include/conversation.php:1046 +msgid "Post to Email" +msgstr "Innlegg til e-post" + +#: ../../include/conversation.php:1081 ../../mod/photos.php:1531 +msgid "Share" +msgstr "Del" + +#: ../../include/conversation.php:1082 ../../mod/editpost.php:110 +#: ../../mod/wallmessage.php:154 ../../mod/message.php:332 +#: ../../mod/message.php:562 +msgid "Upload photo" +msgstr "Last opp bilde" + +#: ../../include/conversation.php:1083 ../../mod/editpost.php:111 +msgid "upload photo" +msgstr "" + +#: ../../include/conversation.php:1084 ../../mod/editpost.php:112 +msgid "Attach file" +msgstr "Legg ved fil" + +#: ../../include/conversation.php:1085 ../../mod/editpost.php:113 +msgid "attach file" +msgstr "" + +#: ../../include/conversation.php:1086 ../../mod/editpost.php:114 +#: ../../mod/wallmessage.php:155 ../../mod/message.php:333 +#: ../../mod/message.php:563 +msgid "Insert web link" +msgstr "Sett inn web-adresse" + +#: ../../include/conversation.php:1087 ../../mod/editpost.php:115 +msgid "web link" +msgstr "" + +#: ../../include/conversation.php:1088 ../../mod/editpost.php:116 +msgid "Insert video link" +msgstr "" + +#: ../../include/conversation.php:1089 ../../mod/editpost.php:117 +msgid "video link" +msgstr "" + +#: ../../include/conversation.php:1090 ../../mod/editpost.php:118 +msgid "Insert audio link" +msgstr "" + +#: ../../include/conversation.php:1091 ../../mod/editpost.php:119 +msgid "audio link" +msgstr "" + +#: ../../include/conversation.php:1092 ../../mod/editpost.php:120 +msgid "Set your location" +msgstr "Angi din plassering" + +#: ../../include/conversation.php:1093 ../../mod/editpost.php:121 +msgid "set location" +msgstr "" + +#: ../../include/conversation.php:1094 ../../mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Fjern nettleserplassering" + +#: ../../include/conversation.php:1095 ../../mod/editpost.php:123 +msgid "clear location" +msgstr "" + +#: ../../include/conversation.php:1097 ../../mod/editpost.php:137 +msgid "Set title" +msgstr "Lagre tittel" + +#: ../../include/conversation.php:1099 ../../mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "" + +#: ../../include/conversation.php:1101 ../../mod/editpost.php:125 +msgid "Permission settings" +msgstr "Tillatelser" + +#: ../../include/conversation.php:1102 +msgid "permissions" +msgstr "" + +#: ../../include/conversation.php:1110 ../../mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "Kopi: e-postadresser" + +#: ../../include/conversation.php:1111 ../../mod/editpost.php:134 +msgid "Public post" +msgstr "Offentlig innlegg" + +#: ../../include/conversation.php:1113 ../../mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Eksempel: ola@example.com, kari@example.com" + +#: ../../include/conversation.php:1117 ../../mod/editpost.php:145 +#: ../../mod/photos.php:1553 ../../mod/photos.php:1597 +#: ../../mod/photos.php:1680 ../../mod/content.php:742 +#: ../../object/Item.php:662 +msgid "Preview" +msgstr "forhåndsvisning" + +#: ../../include/conversation.php:1126 +msgid "Post to Groups" +msgstr "" + +#: ../../include/conversation.php:1127 +msgid "Post to Contacts" +msgstr "" + +#: ../../include/conversation.php:1128 +msgid "Private post" +msgstr "" #: ../../include/enotify.php:16 msgid "Friendica Notification" @@ -9033,284 +1836,437 @@ msgstr "" msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: ../../include/enotify.php:89 +#: ../../include/enotify.php:90 #, php-format msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "" -#: ../../include/enotify.php:96 +#: ../../include/enotify.php:97 #, php-format msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "" -#: ../../include/enotify.php:104 +#: ../../include/enotify.php:105 #, php-format msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "" -#: ../../include/enotify.php:114 +#: ../../include/enotify.php:115 #, php-format msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../include/enotify.php:115 +#: ../../include/enotify.php:116 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "" -#: ../../include/enotify.php:118 ../../include/enotify.php:133 -#: ../../include/enotify.php:146 ../../include/enotify.php:164 -#: ../../include/enotify.php:177 +#: ../../include/enotify.php:119 ../../include/enotify.php:134 +#: ../../include/enotify.php:147 ../../include/enotify.php:165 +#: ../../include/enotify.php:178 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: ../../include/enotify.php:125 +#: ../../include/enotify.php:126 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "" -#: ../../include/enotify.php:127 +#: ../../include/enotify.php:128 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "" -#: ../../include/enotify.php:129 +#: ../../include/enotify.php:130 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "" -#: ../../include/enotify.php:140 +#: ../../include/enotify.php:141 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "" -#: ../../include/enotify.php:141 +#: ../../include/enotify.php:142 #, php-format msgid "%1$s tagged you at %2$s" msgstr "" -#: ../../include/enotify.php:142 +#: ../../include/enotify.php:143 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." msgstr "" -#: ../../include/enotify.php:154 +#: ../../include/enotify.php:155 #, php-format msgid "[Friendica:Notify] %1$s poked you" msgstr "" -#: ../../include/enotify.php:155 +#: ../../include/enotify.php:156 #, php-format msgid "%1$s poked you at %2$s" msgstr "" -#: ../../include/enotify.php:156 +#: ../../include/enotify.php:157 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "" -#: ../../include/enotify.php:171 +#: ../../include/enotify.php:172 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "" -#: ../../include/enotify.php:172 +#: ../../include/enotify.php:173 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "" -#: ../../include/enotify.php:173 +#: ../../include/enotify.php:174 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "" -#: ../../include/enotify.php:184 -msgid "[Friendica:Notify] Introduction received" -msgstr "" - #: ../../include/enotify.php:185 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" +msgid "[Friendica:Notify] Introduction received" msgstr "" #: ../../include/enotify.php:186 #, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "" + +#: ../../include/enotify.php:187 +#, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "" -#: ../../include/enotify.php:189 ../../include/enotify.php:207 +#: ../../include/enotify.php:190 ../../include/enotify.php:208 #, php-format msgid "You may visit their profile at %s" msgstr "" -#: ../../include/enotify.php:191 +#: ../../include/enotify.php:192 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "" -#: ../../include/enotify.php:198 +#: ../../include/enotify.php:199 msgid "[Friendica:Notify] Friend suggestion received" msgstr "" -#: ../../include/enotify.php:199 +#: ../../include/enotify.php:200 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "" -#: ../../include/enotify.php:200 +#: ../../include/enotify.php:201 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "" -#: ../../include/enotify.php:205 +#: ../../include/enotify.php:206 msgid "Name:" msgstr "" -#: ../../include/enotify.php:206 +#: ../../include/enotify.php:207 msgid "Photo:" msgstr "" -#: ../../include/enotify.php:209 +#: ../../include/enotify.php:210 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../include/follow.php:32 -msgid "Connect URL missing." +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[ikke noe emne]" + +#: ../../include/message.php:144 ../../mod/item.php:446 +#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 +#: ../../mod/wall_upload.php:151 +msgid "Wall Photos" +msgstr "Veggbilder" + +#: ../../include/nav.php:34 ../../mod/navigation.php:20 +msgid "Nothing new here" msgstr "" -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Dette nettverkets konfigurasjon tillater ikke kommunikasjon med andre nettverk." - -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Ingen passende kommunikasjonsprotokoller eller strømmer ble oppdaget." - -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "Den angitte profiladressen inneholder for lite information." - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Fant ingen forfatter eller navn." - -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Ingen nettleser-URL passet med denne adressen." - -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." +#: ../../include/nav.php:38 ../../mod/navigation.php:24 +msgid "Clear notifications" msgstr "" -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." +#: ../../include/nav.php:73 ../../boot.php:1136 +msgid "Logout" +msgstr "Logg ut" + +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Avslutt denne økten" + +#: ../../include/nav.php:76 ../../boot.php:1940 +msgid "Status" +msgstr "Status" + +#: ../../include/nav.php:76 ../../include/nav.php:143 +#: ../../view/theme/diabook/theme.php:87 +msgid "Your posts and conversations" +msgstr "Dine innlegg og samtaler" + +#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88 +msgid "Your profile page" msgstr "" -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Den oppgitte profiladressen tilhører et nettverk som har blitt avskrudd på dette nettstedet." +#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 +#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1954 +msgid "Photos" +msgstr "Bilder" -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Begrenset profil. Denne personen kan ikke motta direkte/personlige oppdateringer fra deg." - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Ikke i stand til å hente kontaktinformasjon." - -#: ../../include/follow.php:259 -msgid "following" -msgstr "følger" - -#: ../../include/items.php:3363 -msgid "A new person is sharing with you at " +#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90 +msgid "Your photos" msgstr "" -#: ../../include/items.php:3363 -msgid "You have a new follower at " -msgstr "Du har en ny følgesvenn på " +#: ../../include/nav.php:79 ../../mod/events.php:370 +#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1971 +msgid "Events" +msgstr "Hendelser" -#: ../../include/items.php:4047 -msgid "Archives" +#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91 +msgid "Your events" msgstr "" -#: ../../include/user.php:38 -msgid "An invitation is required." -msgstr "En invitasjon er nødvendig." - -#: ../../include/user.php:43 -msgid "Invitation could not be verified." -msgstr "Invitasjon kunne ikke bekreftes." - -#: ../../include/user.php:51 -msgid "Invalid OpenID url" -msgstr "Ugyldig OpenID URL" - -#: ../../include/user.php:66 -msgid "Please enter the required information." -msgstr "Vennligst skriv inn den nødvendige informasjonen." - -#: ../../include/user.php:80 -msgid "Please use a shorter name." -msgstr "Vennligst bruk et kortere navn." - -#: ../../include/user.php:82 -msgid "Name too short." -msgstr "Navnet er for kort." - -#: ../../include/user.php:97 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Dette ser ikke ut til å være ditt full navn (Fornavn Etternavn)." - -#: ../../include/user.php:102 -msgid "Your email domain is not among those allowed on this site." -msgstr "Ditt e-postdomene er ikke blant de som er tillat på dette stedet." - -#: ../../include/user.php:105 -msgid "Not a valid email address." -msgstr "Ugyldig e-postadresse." - -#: ../../include/user.php:115 -msgid "Cannot use that email." -msgstr "Kan ikke bruke den e-postadressen." - -#: ../../include/user.php:121 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Ditt kallenavn kan bare inneholde \"a-z\", \"0-9\", \"-\", \"_\", og må også begynne med en bokstav." - -#: ../../include/user.php:127 ../../include/user.php:225 -msgid "Nickname is already registered. Please choose another." -msgstr "Kallenavnet er allerede registrert. Vennligst velg et annet." - -#: ../../include/user.php:137 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." +#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92 +msgid "Personal notes" msgstr "" -#: ../../include/user.php:153 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ALVORLIG FEIL: mislyktes med å lage sikkerhetsnøkler." +#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92 +msgid "Your personal photos" +msgstr "" -#: ../../include/user.php:211 -msgid "An error occurred during registration. Please try again." -msgstr "En feil oppstod under registreringen. Vennligst prøv igjen." +#: ../../include/nav.php:91 ../../boot.php:1137 +msgid "Login" +msgstr "Logg inn" -#: ../../include/user.php:246 -msgid "An error occurred creating your default profile. Please try again." -msgstr "En feil oppstod under opprettelsen av din standardprofil. Vennligst prøv igjen." +#: ../../include/nav.php:91 +msgid "Sign in" +msgstr "Logg inn" + +#: ../../include/nav.php:104 ../../include/nav.php:143 +#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87 +msgid "Home" +msgstr "Hjem" + +#: ../../include/nav.php:104 +msgid "Home Page" +msgstr "Hovedside" + +#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1112 +msgid "Register" +msgstr "Registrer" + +#: ../../include/nav.php:108 +msgid "Create an account" +msgstr "Lag konto" + +#: ../../include/nav.php:113 ../../mod/help.php:84 +msgid "Help" +msgstr "Hjelp" + +#: ../../include/nav.php:113 +msgid "Help and documentation" +msgstr "Hjelp og dokumentasjon" + +#: ../../include/nav.php:116 +msgid "Apps" +msgstr "Programmer" + +#: ../../include/nav.php:116 +msgid "Addon applications, utilities, games" +msgstr "Tilleggsprorammer, verktøy, spill" + +#: ../../include/nav.php:118 +msgid "Search site content" +msgstr "Søk i nettstedets innhold" + +#: ../../include/nav.php:128 ../../mod/community.php:32 +#: ../../view/theme/diabook/theme.php:93 +msgid "Community" +msgstr "Fellesskap" + +#: ../../include/nav.php:128 +msgid "Conversations on this site" +msgstr "Samtaler på dette nettstedet" + +#: ../../include/nav.php:130 +msgid "Directory" +msgstr "Katalog" + +#: ../../include/nav.php:130 +msgid "People directory" +msgstr "Personkatalog" + +#: ../../include/nav.php:140 ../../mod/notifications.php:83 +msgid "Network" +msgstr "Nettverk" + +#: ../../include/nav.php:140 +msgid "Conversations from your friends" +msgstr "Samtaler fra dine venner" + +#: ../../include/nav.php:141 +msgid "Network Reset" +msgstr "" + +#: ../../include/nav.php:141 +msgid "Load Network page with no filters" +msgstr "" + +#: ../../include/nav.php:149 ../../mod/notifications.php:98 +msgid "Introductions" +msgstr "Introduksjoner" + +#: ../../include/nav.php:149 +msgid "Friend Requests" +msgstr "" + +#: ../../include/nav.php:150 ../../mod/notifications.php:220 +msgid "Notifications" +msgstr "Varslinger" + +#: ../../include/nav.php:151 +msgid "See all notifications" +msgstr "" + +#: ../../include/nav.php:152 +msgid "Mark all system notifications seen" +msgstr "" + +#: ../../include/nav.php:156 ../../mod/message.php:182 +#: ../../mod/notifications.php:103 +msgid "Messages" +msgstr "Meldinger" + +#: ../../include/nav.php:156 +msgid "Private mail" +msgstr "Privat post" + +#: ../../include/nav.php:157 +msgid "Inbox" +msgstr "Innboks" + +#: ../../include/nav.php:158 +msgid "Outbox" +msgstr "Utboks" + +#: ../../include/nav.php:159 ../../mod/message.php:9 +msgid "New Message" +msgstr "Ny melding" + +#: ../../include/nav.php:162 +msgid "Manage" +msgstr "Behandle" + +#: ../../include/nav.php:162 +msgid "Manage other pages" +msgstr "Behandle andre sider" + +#: ../../include/nav.php:165 +msgid "Delegations" +msgstr "" + +#: ../../include/nav.php:165 ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Deleger sidebehandling" + +#: ../../include/nav.php:167 ../../mod/admin.php:861 ../../mod/admin.php:1069 +#: ../../mod/settings.php:74 ../../mod/uexport.php:48 +#: ../../mod/newmember.php:22 ../../view/theme/diabook/theme.php:537 +#: ../../view/theme/diabook/theme.php:658 +msgid "Settings" +msgstr "Innstillinger" + +#: ../../include/nav.php:167 ../../mod/settings.php:30 ../../mod/uexport.php:9 +msgid "Account settings" +msgstr "Kontoinnstillinger" + +#: ../../include/nav.php:169 ../../boot.php:1439 +msgid "Profiles" +msgstr "Profiler" + +#: ../../include/nav.php:169 +msgid "Manage/Edit Profiles" +msgstr "" + +#: ../../include/nav.php:171 ../../mod/contacts.php:607 +#: ../../view/theme/diabook/theme.php:89 +msgid "Contacts" +msgstr "Kontakter" + +#: ../../include/nav.php:171 +msgid "Manage/edit friends and contacts" +msgstr "Behandle/endre venner og kontakter" + +#: ../../include/nav.php:178 ../../mod/admin.php:120 +msgid "Admin" +msgstr "Administrator" + +#: ../../include/nav.php:178 +msgid "Site setup and configuration" +msgstr "Nettstedsoppsett og konfigurasjon" + +#: ../../include/nav.php:182 +msgid "Navigation" +msgstr "" + +#: ../../include/nav.php:182 +msgid "Site map" +msgstr "" + +#: ../../include/oembed.php:138 +msgid "Embedded content" +msgstr "" + +#: ../../include/oembed.php:147 +msgid "Embedding disabled" +msgstr "Innebygging avskrudd" + +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "" + +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "" + +#: ../../include/uimport.php:116 +msgid "Error! Cannot check nickname" +msgstr "" + +#: ../../include/uimport.php:120 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "" + +#: ../../include/uimport.php:139 +msgid "User creation error" +msgstr "" + +#: ../../include/uimport.php:157 +msgid "User profile creation error" +msgstr "" + +#: ../../include/uimport.php:202 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/uimport.php:272 +msgid "Done. You can now login with your username and password" +msgstr "" #: ../../include/security.php:22 msgid "Welcome " @@ -9324,326 +2280,4836 @@ msgstr "Vennligst last opp et profilbilde." msgid "Welcome back " msgstr "Velkommen tilbake" -#: ../../include/security.php:357 +#: ../../include/security.php:366 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "" -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "sluttet å følge" +#: ../../mod/profiles.php:18 ../../mod/profiles.php:133 +#: ../../mod/profiles.php:160 ../../mod/profiles.php:583 +#: ../../mod/dfrn_confirm.php:62 +msgid "Profile not found." +msgstr "Fant ikke profilen." -#: ../../include/Contact.php:225 ../../include/conversation.php:795 -msgid "Poke" +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profil slettet." + +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" +msgstr "Profil-" + +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." +msgstr "Ny profil opprettet." + +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Profilen er utilgjengelig for kloning." + +#: ../../mod/profiles.php:170 +msgid "Profile Name is required." +msgstr "Profilnavn er påkrevet." + +#: ../../mod/profiles.php:317 +msgid "Marital Status" msgstr "" -#: ../../include/Contact.php:226 ../../include/conversation.php:789 -msgid "View Status" +#: ../../mod/profiles.php:321 +msgid "Romantic Partner" msgstr "" -#: ../../include/Contact.php:227 ../../include/conversation.php:790 -msgid "View Profile" +#: ../../mod/profiles.php:325 +msgid "Likes" msgstr "" -#: ../../include/Contact.php:228 ../../include/conversation.php:791 -msgid "View Photos" +#: ../../mod/profiles.php:329 +msgid "Dislikes" msgstr "" -#: ../../include/Contact.php:229 ../../include/Contact.php:242 -#: ../../include/conversation.php:792 -msgid "Network Posts" +#: ../../mod/profiles.php:333 +msgid "Work/Employment" msgstr "" -#: ../../include/Contact.php:230 ../../include/Contact.php:242 -#: ../../include/conversation.php:793 -msgid "Edit Contact" +#: ../../mod/profiles.php:336 +msgid "Religion" msgstr "" -#: ../../include/Contact.php:231 ../../include/Contact.php:242 -#: ../../include/conversation.php:794 -msgid "Send PM" +#: ../../mod/profiles.php:340 +msgid "Political Views" +msgstr "" + +#: ../../mod/profiles.php:344 +msgid "Gender" +msgstr "" + +#: ../../mod/profiles.php:348 +msgid "Sexual Preference" +msgstr "" + +#: ../../mod/profiles.php:352 +msgid "Homepage" +msgstr "" + +#: ../../mod/profiles.php:356 +msgid "Interests" +msgstr "" + +#: ../../mod/profiles.php:360 +msgid "Address" +msgstr "" + +#: ../../mod/profiles.php:367 +msgid "Location" +msgstr "" + +#: ../../mod/profiles.php:450 +msgid "Profile updated." +msgstr "Profil oppdatert." + +#: ../../mod/profiles.php:521 +msgid " and " +msgstr "" + +#: ../../mod/profiles.php:529 +msgid "public profile" +msgstr "" + +#: ../../mod/profiles.php:532 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: ../../mod/profiles.php:533 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "" + +#: ../../mod/profiles.php:536 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: ../../mod/profiles.php:609 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Skjul kontakten/vennen din fra folk som kan se denne profilen?" + +#: ../../mod/profiles.php:611 ../../mod/api.php:106 ../../mod/register.php:240 +#: ../../mod/settings.php:961 ../../mod/settings.php:967 +#: ../../mod/settings.php:975 ../../mod/settings.php:979 +#: ../../mod/settings.php:984 ../../mod/settings.php:990 +#: ../../mod/settings.php:996 ../../mod/settings.php:1002 +#: ../../mod/settings.php:1032 ../../mod/settings.php:1033 +#: ../../mod/settings.php:1034 ../../mod/settings.php:1035 +#: ../../mod/settings.php:1036 ../../mod/dfrn_request.php:837 +msgid "No" +msgstr "Nei" + +#: ../../mod/profiles.php:629 +msgid "Edit Profile Details" +msgstr "Endre profildetaljer" + +#: ../../mod/profiles.php:630 ../../mod/admin.php:491 ../../mod/admin.php:763 +#: ../../mod/admin.php:902 ../../mod/admin.php:1102 ../../mod/admin.php:1189 +#: ../../mod/contacts.php:386 ../../mod/settings.php:584 +#: ../../mod/settings.php:694 ../../mod/settings.php:763 +#: ../../mod/settings.php:837 ../../mod/settings.php:1064 +#: ../../mod/crepair.php:166 ../../mod/poke.php:199 ../../mod/events.php:478 +#: ../../mod/fsuggest.php:107 ../../mod/group.php:87 ../../mod/invite.php:140 +#: ../../mod/localtime.php:45 ../../mod/manage.php:110 +#: ../../mod/message.php:335 ../../mod/message.php:564 ../../mod/mood.php:137 +#: ../../mod/photos.php:1078 ../../mod/photos.php:1199 +#: ../../mod/photos.php:1501 ../../mod/photos.php:1552 +#: ../../mod/photos.php:1596 ../../mod/photos.php:1679 +#: ../../mod/install.php:248 ../../mod/install.php:286 +#: ../../mod/content.php:733 ../../object/Item.php:653 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/diabook/config.php:152 +#: ../../view/theme/diabook/theme.php:642 ../../view/theme/dispy/config.php:70 +#: ../../view/theme/quattro/config.php:64 +msgid "Submit" +msgstr "Lagre" + +#: ../../mod/profiles.php:631 +msgid "Change Profile Photo" +msgstr "" + +#: ../../mod/profiles.php:632 +msgid "View this profile" +msgstr "Vis denne profilen" + +#: ../../mod/profiles.php:633 +msgid "Create a new profile using these settings" +msgstr "Opprett en ny profil med disse innstillingene" + +#: ../../mod/profiles.php:634 +msgid "Clone this profile" +msgstr "Klon denne profilen" + +#: ../../mod/profiles.php:635 +msgid "Delete this profile" +msgstr "Slette denne profilen" + +#: ../../mod/profiles.php:636 +msgid "Profile Name:" +msgstr "Profilnavn:" + +#: ../../mod/profiles.php:637 +msgid "Your Full Name:" +msgstr "Ditt fulle navn:" + +#: ../../mod/profiles.php:638 +msgid "Title/Description:" +msgstr "Tittel/Beskrivelse:" + +#: ../../mod/profiles.php:639 +msgid "Your Gender:" +msgstr "Ditt kjønn:" + +#: ../../mod/profiles.php:640 +#, php-format +msgid "Birthday (%s):" +msgstr "Fødselsdag (%s):" + +#: ../../mod/profiles.php:641 +msgid "Street Address:" +msgstr "Gateadresse:" + +#: ../../mod/profiles.php:642 +msgid "Locality/City:" +msgstr "Plassering/by:" + +#: ../../mod/profiles.php:643 +msgid "Postal/Zip Code:" +msgstr "Postnummer:" + +#: ../../mod/profiles.php:644 +msgid "Country:" +msgstr "Land:" + +#: ../../mod/profiles.php:645 +msgid "Region/State:" +msgstr "Region/fylke:" + +#: ../../mod/profiles.php:646 +msgid " Marital Status:" +msgstr " Sivilstand:" + +#: ../../mod/profiles.php:647 +msgid "Who: (if applicable)" +msgstr "Hvem: (hvis gjeldende)" + +#: ../../mod/profiles.php:648 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Eksempler: kari123, Kari Nordmann, kari@example.com" + +#: ../../mod/profiles.php:649 +msgid "Since [date]:" +msgstr "" + +#: ../../mod/profiles.php:651 +msgid "Homepage URL:" +msgstr "Hjemmeside URL:" + +#: ../../mod/profiles.php:654 +msgid "Religious Views:" +msgstr "Religiøst ståsted:" + +#: ../../mod/profiles.php:655 +msgid "Public Keywords:" +msgstr "Offentlige nøkkelord:" + +#: ../../mod/profiles.php:656 +msgid "Private Keywords:" +msgstr "Private nøkkelord:" + +#: ../../mod/profiles.php:659 +msgid "Example: fishing photography software" +msgstr "Eksempel: fisking fotografering programvare" + +#: ../../mod/profiles.php:660 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Brukes for å foreslå mulige venner, kan ses av andre)" + +#: ../../mod/profiles.php:661 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Brukes for å søke i profiler, vises aldri til andre)" + +#: ../../mod/profiles.php:662 +msgid "Tell us about yourself..." +msgstr "Fortell oss om deg selv..." + +#: ../../mod/profiles.php:663 +msgid "Hobbies/Interests" +msgstr "Hobbier/interesser" + +#: ../../mod/profiles.php:664 +msgid "Contact information and Social Networks" +msgstr "Kontaktinformasjon og sosiale nettverk" + +#: ../../mod/profiles.php:665 +msgid "Musical interests" +msgstr "Musikksmak" + +#: ../../mod/profiles.php:666 +msgid "Books, literature" +msgstr "Bøker, litteratur" + +#: ../../mod/profiles.php:667 +msgid "Television" +msgstr "TV" + +#: ../../mod/profiles.php:668 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/kultur/underholdning" + +#: ../../mod/profiles.php:669 +msgid "Love/romance" +msgstr "Kjærlighet/romanse" + +#: ../../mod/profiles.php:670 +msgid "Work/employment" +msgstr "Arbeid/ansatt hos" + +#: ../../mod/profiles.php:671 +msgid "School/education" +msgstr "Skole/utdanning" + +#: ../../mod/profiles.php:676 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Dette er din offentlige profil.
Den kan ses av alle på Internet." + +#: ../../mod/profiles.php:686 ../../mod/directory.php:111 +msgid "Age: " +msgstr "Alder:" + +#: ../../mod/profiles.php:725 +msgid "Edit/Manage Profiles" +msgstr "Rediger/Behandle profiler" + +#: ../../mod/profiles.php:726 ../../boot.php:1445 ../../boot.php:1471 +msgid "Change profile photo" +msgstr "Endre profilbilde" + +#: ../../mod/profiles.php:727 ../../boot.php:1446 +msgid "Create New Profile" +msgstr "Lag ny profil" + +#: ../../mod/profiles.php:738 ../../boot.php:1456 +msgid "Profile Image" +msgstr "Profilbilde" + +#: ../../mod/profiles.php:740 ../../boot.php:1459 +msgid "visible to everybody" +msgstr "synlig for alle" + +#: ../../mod/profiles.php:741 ../../boot.php:1460 +msgid "Edit visibility" +msgstr "Endre synlighet" + +#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:345 +msgid "Permission denied" +msgstr "Tilgang nektet" + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Ugyldig profilidentifikator." + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Behandle profilsynlighet" + +#: ../../mod/profperm.php:105 ../../mod/group.php:224 +msgid "Click on a contact to add or remove." +msgstr "Klikk på en kontakt for å legge til eller fjerne." + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Synlig for" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Alle kontakter (med sikret profiltilgang)" + +#: ../../mod/notes.php:44 ../../boot.php:1978 +msgid "Personal Notes" +msgstr "Personlige notater" + +#: ../../mod/display.php:19 ../../mod/search.php:89 +#: ../../mod/dfrn_request.php:761 ../../mod/directory.php:31 +#: ../../mod/videos.php:115 ../../mod/viewcontacts.php:17 +#: ../../mod/photos.php:914 ../../mod/community.php:18 +msgid "Public access denied." +msgstr "Offentlig tilgang ikke tillatt." + +#: ../../mod/display.php:99 ../../mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Tilgang til denne profilen er blitt begrenset." + +#: ../../mod/display.php:239 +msgid "Item has been removed." +msgstr "Elementet har blitt slettet." + +#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395 +#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Besøk %ss profil [%s]" + +#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586 +msgid "Edit contact" +msgstr "Endre kontakt" + +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "" + +#: ../../mod/ping.php:238 +msgid "{0} wants to be your friend" +msgstr "{0} ønsker å bli din venn" + +#: ../../mod/ping.php:243 +msgid "{0} sent you a message" +msgstr "{0} sendte deg en melding" + +#: ../../mod/ping.php:248 +msgid "{0} requested registration" +msgstr "{0} forespurte om registrering" + +#: ../../mod/ping.php:254 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} kommenterte %s sitt innlegg" + +#: ../../mod/ping.php:259 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0} likte %s sitt innlegg" + +#: ../../mod/ping.php:264 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0} likte ikke %s sitt innlegg" + +#: ../../mod/ping.php:269 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} er nå venner med %s" + +#: ../../mod/ping.php:274 +msgid "{0} posted" +msgstr "{0} postet et innlegg" + +#: ../../mod/ping.php:279 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} merket %s sitt innlegg med #%s" + +#: ../../mod/ping.php:285 +msgid "{0} mentioned you in a post" +msgstr "" + +#: ../../mod/admin.php:55 +msgid "Theme settings updated." +msgstr "Temainnstillinger oppdatert." + +#: ../../mod/admin.php:96 ../../mod/admin.php:490 +msgid "Site" +msgstr "Nettsted" + +#: ../../mod/admin.php:97 ../../mod/admin.php:762 ../../mod/admin.php:776 +msgid "Users" +msgstr "Brukere" + +#: ../../mod/admin.php:98 ../../mod/admin.php:859 ../../mod/admin.php:901 +msgid "Plugins" +msgstr "Tillegg" + +#: ../../mod/admin.php:99 ../../mod/admin.php:1067 ../../mod/admin.php:1101 +msgid "Themes" +msgstr "Tema" + +#: ../../mod/admin.php:100 +msgid "DB updates" +msgstr "Databaseoppdateringer" + +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1188 +msgid "Logs" +msgstr "Logger" + +#: ../../mod/admin.php:121 +msgid "Plugin Features" +msgstr "Utvidelse - egenskaper" + +#: ../../mod/admin.php:123 +msgid "User registrations waiting for confirmation" +msgstr "Brukerregistreringer venter på bekreftelse" + +#: ../../mod/admin.php:182 ../../mod/admin.php:733 +msgid "Normal Account" +msgstr "Vanlig konto" + +#: ../../mod/admin.php:183 ../../mod/admin.php:734 +msgid "Soapbox Account" +msgstr "Talerstol-konto" + +#: ../../mod/admin.php:184 ../../mod/admin.php:735 +msgid "Community/Celebrity Account" +msgstr "Gruppe-/kjendiskonto" + +#: ../../mod/admin.php:185 ../../mod/admin.php:736 +msgid "Automatic Friend Account" +msgstr "Automatisk vennekonto" + +#: ../../mod/admin.php:186 +msgid "Blog Account" +msgstr "Bloggkonto" + +#: ../../mod/admin.php:187 +msgid "Private Forum" +msgstr "Privat forum" + +#: ../../mod/admin.php:206 +msgid "Message queues" +msgstr "Meldingskøer" + +#: ../../mod/admin.php:211 ../../mod/admin.php:489 ../../mod/admin.php:761 +#: ../../mod/admin.php:858 ../../mod/admin.php:900 ../../mod/admin.php:1066 +#: ../../mod/admin.php:1100 ../../mod/admin.php:1187 +msgid "Administration" +msgstr "Administrasjon" + +#: ../../mod/admin.php:212 +msgid "Summary" +msgstr "Oppsummering" + +#: ../../mod/admin.php:214 +msgid "Registered users" +msgstr "Registrerte brukere" + +#: ../../mod/admin.php:216 +msgid "Pending registrations" +msgstr "Ventende registreringer" + +#: ../../mod/admin.php:217 +msgid "Version" +msgstr "Versjon" + +#: ../../mod/admin.php:219 +msgid "Active plugins" +msgstr "Aktive tillegg" + +#: ../../mod/admin.php:405 +msgid "Site settings updated." +msgstr "Nettstedets innstillinger er oppdatert." + +#: ../../mod/admin.php:434 ../../mod/settings.php:793 +msgid "No special theme for mobile devices" +msgstr "Ikke eget tema for mobile enheter" + +#: ../../mod/admin.php:451 ../../mod/contacts.php:330 +msgid "Never" +msgstr "Aldri" + +#: ../../mod/admin.php:460 +msgid "Multi user instance" +msgstr "Flerbrukerinstans" + +#: ../../mod/admin.php:476 +msgid "Closed" +msgstr "Stengt" + +#: ../../mod/admin.php:477 +msgid "Requires approval" +msgstr "Krever godkjenning" + +#: ../../mod/admin.php:478 +msgid "Open" +msgstr "Åpen" + +#: ../../mod/admin.php:482 +msgid "No SSL policy, links will track page SSL state" +msgstr "Ingen SSL-retningslinjer, lenker vil spore sidens SSL-tilstand" + +#: ../../mod/admin.php:483 +msgid "Force all links to use SSL" +msgstr "Tving alle lenker til å bruke SSL" + +#: ../../mod/admin.php:484 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Selvsignert sertifikat, bruk SSL bare til lokale lenker (ikke anbefalt)" + +#: ../../mod/admin.php:492 ../../mod/register.php:261 +msgid "Registration" +msgstr "Registrering" + +#: ../../mod/admin.php:493 +msgid "File upload" +msgstr "Last opp fil" + +#: ../../mod/admin.php:494 +msgid "Policies" +msgstr "Retningslinjer" + +#: ../../mod/admin.php:495 +msgid "Advanced" +msgstr "Avansert" + +#: ../../mod/admin.php:496 +msgid "Performance" +msgstr "Ytelse" + +#: ../../mod/admin.php:500 +msgid "Site name" +msgstr "Nettstedets navn" + +#: ../../mod/admin.php:501 +msgid "Banner/Logo" +msgstr "Banner/logo" + +#: ../../mod/admin.php:502 +msgid "System language" +msgstr "Systemspråk" + +#: ../../mod/admin.php:503 +msgid "System theme" +msgstr "Systemtema" + +#: ../../mod/admin.php:503 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standard tema for systemet - kan overstyres av brukerprofiler - endre temainnstillinger" + +#: ../../mod/admin.php:504 +msgid "Mobile system theme" +msgstr "Mobilt tema til systemet" + +#: ../../mod/admin.php:504 +msgid "Theme for mobile devices" +msgstr "Tema for mobile enheter" + +#: ../../mod/admin.php:505 +msgid "SSL link policy" +msgstr "Retningslinjer for SSL og lenker" + +#: ../../mod/admin.php:505 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Avgjør om genererte lenker skal tvinges til å bruke SSL" + +#: ../../mod/admin.php:506 +msgid "'Share' element" +msgstr "'Dele' element" + +#: ../../mod/admin.php:506 +msgid "Activates the bbcode element 'share' for repeating items." +msgstr "Aktiverer BBCode-elementet 'dele' for å gjenta elementer." + +#: ../../mod/admin.php:507 +msgid "Hide help entry from navigation menu" +msgstr "Skjul punktet om hjelp fra navigasjonsmenyen" + +#: ../../mod/admin.php:507 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Skjuler menypunktet for Hjelp-sidene fra navigasjonsmenyen. Du kan fremdeles få tilgang ved å bruke /help direkte." + +#: ../../mod/admin.php:508 +msgid "Single user instance" +msgstr "Enkeltbrukerinstans" + +#: ../../mod/admin.php:508 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Gjør denne instansen til flerbruker eller enkeltbruker for den navngitte brukeren" + +#: ../../mod/admin.php:509 +msgid "Maximum image size" +msgstr "Maksimum bildestørrelse" + +#: ../../mod/admin.php:509 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maksimal størrelse i bytes for opplastede bilder. Standard er 0, som betyr ingen størrelsesgrense." + +#: ../../mod/admin.php:510 +msgid "Maximum image length" +msgstr "Maksimal bildelenge" + +#: ../../mod/admin.php:510 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Maksimal lengde i pixler for den lengste siden til opplastede bilder. Standard er -1, some betyr ingen grense." + +#: ../../mod/admin.php:511 +msgid "JPEG image quality" +msgstr "JPEG-bildekvalitet" + +#: ../../mod/admin.php:511 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Opplastede JPEG-er vil bli lagret med disse kvalitetsinnstillingene [0-100]. Standard er 100, som er høyeste kvalitet." + +#: ../../mod/admin.php:513 +msgid "Register policy" +msgstr "Registrer retningslinjer" + +#: ../../mod/admin.php:514 +msgid "Maximum Daily Registrations" +msgstr "Maksimalt antall daglige registreringer" + +#: ../../mod/admin.php:514 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "Hvis registrering er tillat ovenfor, så vil dette angi maksimalt antall nye brukerregistreringer som aksepteres per dag. Hvis registrering er satt til stengt, så vil ikke denne innstillingen ha noen effekt." + +#: ../../mod/admin.php:515 +msgid "Register text" +msgstr "Registrer tekst" + +#: ../../mod/admin.php:515 +msgid "Will be displayed prominently on the registration page." +msgstr "Vil bli vist på en fremtredende måte på registreringssiden." + +#: ../../mod/admin.php:516 +msgid "Accounts abandoned after x days" +msgstr "Kontoer forlatt etter x dager" + +#: ../../mod/admin.php:516 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder om forlatte kontoer. Skriv 0 for ingen tidsgrense." + +#: ../../mod/admin.php:517 +msgid "Allowed friend domains" +msgstr "Tillate vennedomener" + +#: ../../mod/admin.php:517 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Kommaseparert liste med domener som har lov til å etablere vennskap med dette nettstedet.\nJokertegn aksepteres. Tom for å tillate alle domener." + +#: ../../mod/admin.php:518 +msgid "Allowed email domains" +msgstr "Tillate e-postdomener" + +#: ../../mod/admin.php:518 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er tillatt. Tom for å tillate alle domener." + +#: ../../mod/admin.php:519 +msgid "Block public" +msgstr "Utesteng publikum" + +#: ../../mod/admin.php:519 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "" + +#: ../../mod/admin.php:520 +msgid "Force publish" +msgstr "Tving publisering" + +#: ../../mod/admin.php:520 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: ../../mod/admin.php:521 +msgid "Global directory update URL" +msgstr "URL for oppdatering av Global-katalog" + +#: ../../mod/admin.php:521 +msgid "" +"URL to update the global directory. If this is not set, the global directory" +" is completely unavailable to the application." +msgstr "" + +#: ../../mod/admin.php:522 +msgid "Allow threaded items" +msgstr "" + +#: ../../mod/admin.php:522 +msgid "Allow infinite level threading for items on this site." +msgstr "" + +#: ../../mod/admin.php:523 +msgid "Private posts by default for new users" +msgstr "" + +#: ../../mod/admin.php:523 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: ../../mod/admin.php:524 +msgid "Don't include post content in email notifications" +msgstr "" + +#: ../../mod/admin.php:524 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "" + +#: ../../mod/admin.php:525 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "" + +#: ../../mod/admin.php:525 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "" + +#: ../../mod/admin.php:526 +msgid "Don't embed private images in posts" +msgstr "" + +#: ../../mod/admin.php:526 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "" + +#: ../../mod/admin.php:528 +msgid "Block multiple registrations" +msgstr "Blokker flere registreringer" + +#: ../../mod/admin.php:528 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "" + +#: ../../mod/admin.php:529 +msgid "OpenID support" +msgstr "OpenID-støtte" + +#: ../../mod/admin.php:529 +msgid "OpenID support for registration and logins." +msgstr "" + +#: ../../mod/admin.php:530 +msgid "Fullname check" +msgstr "Sjekk fullt navn" + +#: ../../mod/admin.php:530 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "" + +#: ../../mod/admin.php:531 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 regulære uttrykk" + +#: ../../mod/admin.php:531 +msgid "Use PHP UTF8 regular expressions" +msgstr "" + +#: ../../mod/admin.php:532 +msgid "Show Community Page" +msgstr "Vis Felleskap-side" + +#: ../../mod/admin.php:532 +msgid "" +"Display a Community page showing all recent public postings on this site." +msgstr "" + +#: ../../mod/admin.php:533 +msgid "Enable OStatus support" +msgstr "Aktiver Ostatus-støtte" + +#: ../../mod/admin.php:533 +msgid "" +"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: ../../mod/admin.php:534 +msgid "OStatus conversation completion interval" +msgstr "" + +#: ../../mod/admin.php:534 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "" + +#: ../../mod/admin.php:535 +msgid "Enable Diaspora support" +msgstr "" + +#: ../../mod/admin.php:535 +msgid "Provide built-in Diaspora network compatibility." +msgstr "" + +#: ../../mod/admin.php:536 +msgid "Only allow Friendica contacts" +msgstr "" + +#: ../../mod/admin.php:536 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "" + +#: ../../mod/admin.php:537 +msgid "Verify SSL" +msgstr "Bekreft SSL" + +#: ../../mod/admin.php:537 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "" + +#: ../../mod/admin.php:538 +msgid "Proxy user" +msgstr "Brukernavn til mellomtjener" + +#: ../../mod/admin.php:539 +msgid "Proxy URL" +msgstr "Mellomtjener URL" + +#: ../../mod/admin.php:540 +msgid "Network timeout" +msgstr "Tidsavbrudd for nettverk" + +#: ../../mod/admin.php:540 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: ../../mod/admin.php:541 +msgid "Delivery interval" +msgstr "" + +#: ../../mod/admin.php:541 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: ../../mod/admin.php:542 +msgid "Poll interval" +msgstr "" + +#: ../../mod/admin.php:542 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: ../../mod/admin.php:543 +msgid "Maximum Load Average" +msgstr "" + +#: ../../mod/admin.php:543 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: ../../mod/admin.php:545 +msgid "Use MySQL full text engine" +msgstr "" + +#: ../../mod/admin.php:545 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "" + +#: ../../mod/admin.php:546 +msgid "Path to item cache" +msgstr "" + +#: ../../mod/admin.php:547 +msgid "Cache duration in seconds" +msgstr "" + +#: ../../mod/admin.php:547 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day)." +msgstr "" + +#: ../../mod/admin.php:548 +msgid "Path for lock file" +msgstr "" + +#: ../../mod/admin.php:549 +msgid "Temp path" +msgstr "" + +#: ../../mod/admin.php:550 +msgid "Base path to installation" +msgstr "" + +#: ../../mod/admin.php:567 +msgid "Update has been marked successful" +msgstr "" + +#: ../../mod/admin.php:577 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Utføring av %s mislyktes. Sjekk systemlogger." + +#: ../../mod/admin.php:580 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: ../../mod/admin.php:584 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: ../../mod/admin.php:587 +#, php-format +msgid "Update function %s could not be found." +msgstr "" + +#: ../../mod/admin.php:602 +msgid "No failed updates." +msgstr "Ingen mislykkede oppdateringer." + +#: ../../mod/admin.php:606 +msgid "Failed Updates" +msgstr "Mislykkede oppdateringer" + +#: ../../mod/admin.php:607 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "" + +#: ../../mod/admin.php:608 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: ../../mod/admin.php:609 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: ../../mod/admin.php:634 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:641 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s bruker slettet" +msgstr[1] "%s brukere slettet" + +#: ../../mod/admin.php:680 +#, php-format +msgid "User '%s' deleted" +msgstr "Brukeren '%s' er slettet" + +#: ../../mod/admin.php:688 +#, php-format +msgid "User '%s' unblocked" +msgstr "Brukeren '%s' er ikke blokkert" + +#: ../../mod/admin.php:688 +#, php-format +msgid "User '%s' blocked" +msgstr "Brukeren '%s' er blokkert" + +#: ../../mod/admin.php:764 +msgid "select all" +msgstr "velg alle" + +#: ../../mod/admin.php:765 +msgid "User registrations waiting for confirm" +msgstr "Brukerregistreringer venter på bekreftelse" + +#: ../../mod/admin.php:766 +msgid "Request date" +msgstr "Forespørselsdato" + +#: ../../mod/admin.php:766 ../../mod/admin.php:777 ../../mod/settings.php:586 +#: ../../mod/settings.php:612 ../../mod/crepair.php:148 +msgid "Name" +msgstr "Navn" + +#: ../../mod/admin.php:767 +msgid "No registrations." +msgstr "Ingen registreringer." + +#: ../../mod/admin.php:768 ../../mod/notifications.php:161 +#: ../../mod/notifications.php:208 +msgid "Approve" +msgstr "Godkjenn" + +#: ../../mod/admin.php:769 +msgid "Deny" +msgstr "Nekt" + +#: ../../mod/admin.php:771 ../../mod/contacts.php:353 +#: ../../mod/contacts.php:412 +msgid "Block" +msgstr "Blokker" + +#: ../../mod/admin.php:772 ../../mod/contacts.php:353 +#: ../../mod/contacts.php:412 +msgid "Unblock" +msgstr "Ikke blokker" + +#: ../../mod/admin.php:773 +msgid "Site admin" +msgstr "" + +#: ../../mod/admin.php:774 +msgid "Account expired" +msgstr "" + +#: ../../mod/admin.php:777 +msgid "Register date" +msgstr "Registreringsdato" + +#: ../../mod/admin.php:777 +msgid "Last login" +msgstr "Siste innlogging" + +#: ../../mod/admin.php:777 +msgid "Last item" +msgstr "Siste element" + +#: ../../mod/admin.php:777 +msgid "Account" +msgstr "Konto" + +#: ../../mod/admin.php:779 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Valgte brukere vil bli slettet!\\n\\nAlt disse brukerne har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse brukerne?" + +#: ../../mod/admin.php:780 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Brukeren {0} vil bli slettet!\\n\\nAlt denne brukeren har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne brukeren?" + +#: ../../mod/admin.php:821 +#, php-format +msgid "Plugin %s disabled." +msgstr "Tillegget %s er avskrudd." + +#: ../../mod/admin.php:825 +#, php-format +msgid "Plugin %s enabled." +msgstr "Tillegget %s er aktivert." + +#: ../../mod/admin.php:835 ../../mod/admin.php:1038 +msgid "Disable" +msgstr "Skru av" + +#: ../../mod/admin.php:837 ../../mod/admin.php:1040 +msgid "Enable" +msgstr "Aktiver" + +#: ../../mod/admin.php:860 ../../mod/admin.php:1068 +msgid "Toggle" +msgstr "Veksle" + +#: ../../mod/admin.php:868 ../../mod/admin.php:1078 +msgid "Author: " +msgstr "" + +#: ../../mod/admin.php:869 ../../mod/admin.php:1079 +msgid "Maintainer: " +msgstr "" + +#: ../../mod/admin.php:998 +msgid "No themes found." +msgstr "" + +#: ../../mod/admin.php:1060 +msgid "Screenshot" +msgstr "" + +#: ../../mod/admin.php:1106 +msgid "[Experimental]" +msgstr "" + +#: ../../mod/admin.php:1107 +msgid "[Unsupported]" +msgstr "" + +#: ../../mod/admin.php:1134 +msgid "Log settings updated." +msgstr "Logginnstillinger er oppdatert." + +#: ../../mod/admin.php:1190 +msgid "Clear" +msgstr "Tøm" + +#: ../../mod/admin.php:1196 +msgid "Enable Debugging" +msgstr "" + +#: ../../mod/admin.php:1197 +msgid "Log file" +msgstr "Loggfil" + +#: ../../mod/admin.php:1197 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "" + +#: ../../mod/admin.php:1198 +msgid "Log level" +msgstr "Loggnivå" + +#: ../../mod/admin.php:1247 ../../mod/contacts.php:409 +msgid "Update now" +msgstr "Oppdater nå" + +#: ../../mod/admin.php:1248 +msgid "Close" +msgstr "Lukk" + +#: ../../mod/admin.php:1254 +msgid "FTP Host" +msgstr "FTP-tjener" + +#: ../../mod/admin.php:1255 +msgid "FTP Path" +msgstr "FTP-sti" + +#: ../../mod/admin.php:1256 +msgid "FTP User" +msgstr "FTP-bruker" + +#: ../../mod/admin.php:1257 +msgid "FTP Password" +msgstr "FTP-passord" + +#: ../../mod/item.php:108 +msgid "Unable to locate original post." +msgstr "Mislyktes med å lokalisere opprinnelig melding." + +#: ../../mod/item.php:310 +msgid "Empty post discarded." +msgstr "Tom melding forkastet." + +#: ../../mod/item.php:872 +msgid "System error. Post not saved." +msgstr "Systemfeil. Meldingen ble ikke lagret." + +#: ../../mod/item.php:897 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "" + +#: ../../mod/item.php:899 +#, php-format +msgid "You may visit them online at %s" +msgstr "Du kan besøke dem online på %s" + +#: ../../mod/item.php:900 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Vennligst kontakt avsenderen ved å svare på denne meldingen hvis du ikke ønsker å motta disse meldingene." + +#: ../../mod/item.php:904 +#, php-format +msgid "%s posted an update." +msgstr "%s postet en oppdatering." + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Venner av %s" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Ingen venner å vise." + +#: ../../mod/search.php:21 ../../mod/network.php:224 +msgid "Remove term" +msgstr "Fjern uttrykk" + +#: ../../mod/search.php:180 ../../mod/search.php:206 +#: ../../mod/community.php:61 ../../mod/community.php:89 +msgid "No results." +msgstr "Fant ikke noe." + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Tillat forbindelse til program" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Gå tilbake til din app og legg inn denne sikkerhetskoden:" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Vennligst logg inn for å fortsette." + +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vil du tillate at dette programmet får tilgang til dine innlegg og kontakter, og/eller kan opprette nye innlegg for deg?" + +#: ../../mod/register.php:91 ../../mod/regmod.php:54 +#, php-format +msgid "Registration details for %s" +msgstr "Registeringsdetaljer for %s" + +#: ../../mod/register.php:99 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Vellykket registrering. Vennligst sjekk e-posten din for videre instruksjoner." + +#: ../../mod/register.php:103 +msgid "Failed to send email message. Here is the message that failed." +msgstr "Mislyktes med å sende e-postmelding. Her er meldingen som mislyktes." + +#: ../../mod/register.php:108 +msgid "Your registration can not be processed." +msgstr "Din registrering kan ikke behandles." + +#: ../../mod/register.php:145 +#, php-format +msgid "Registration request at %s" +msgstr "Henvendelse om registrering ved %s" + +#: ../../mod/register.php:154 +msgid "Your registration is pending approval by the site owner." +msgstr "Din registrering venter på godkjenning fra eier av stedet." + +#: ../../mod/register.php:192 ../../mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: ../../mod/register.php:220 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Du kan (valgfritt) fylle ut dette skjemaet via OpenID ved å oppgi din OpenID og klikke \"Registrer\"." + +#: ../../mod/register.php:221 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Hvis du ikke er kjent med OpenID, vennligst la feltet stå tomt, og fyll ut de andre feltene." + +#: ../../mod/register.php:222 +msgid "Your OpenID (optional): " +msgstr "Din OpenID (valgfritt):" + +#: ../../mod/register.php:236 +msgid "Include your profile in member directory?" +msgstr "Legg til profilen din i medlemskatalogen?" + +#: ../../mod/register.php:257 +msgid "Membership on this site is by invitation only." +msgstr "Medlemskap ved dette nettstedet skjer bare på invitasjon." + +#: ../../mod/register.php:258 +msgid "Your invitation ID: " +msgstr "Din invitasjons-ID:" + +#: ../../mod/register.php:269 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Ditt fulle navn (f.eks. Ola Nordmann):" + +#: ../../mod/register.php:270 +msgid "Your Email Address: " +msgstr "Din e-postadresse:" + +#: ../../mod/register.php:271 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Velg et kallenavn til profilen. Dette må begynne med en bokstav. Din profiladresse på dette stedet vil bli \"kallenavn@$sitename\"." + +#: ../../mod/register.php:272 +msgid "Choose a nickname: " +msgstr "Velg et kallenavn:" + +#: ../../mod/regmod.php:63 +msgid "Account approved." +msgstr "Konto godkjent." + +#: ../../mod/regmod.php:100 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registreringen til %s er trukket tilbake" + +#: ../../mod/regmod.php:112 +msgid "Please login." +msgstr "Vennligst logg inn." + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Elementet er ikke tilgjengelig." + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Elementet ble ikke funnet." + +#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 +msgid "Remove My Account" +msgstr "Slett min konto" + +#: ../../mod/removeme.php:46 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Dette vil slette din konto fullstendig. Når dette er gjort kan den ikke gjenopprettes." + +#: ../../mod/removeme.php:47 +msgid "Please enter your password for verification:" +msgstr "Vennligst skriv inn ditt passord for å bekrefte:" + +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "BBcode kildetekst:" + +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Diaspora kildetekst å konvertere til BBcode:" + +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Kilde-input:" + +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (rå HTML):" + +#: ../../mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html:" + +#: ../../mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb:" + +#: ../../mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md:" + +#: ../../mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html:" + +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb:" + +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb:" + +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Diaspora-formatert kilde-input:" + +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb:" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "" + +#: ../../mod/apps.php:7 +msgid "You must be logged in to use addons. " +msgstr "" + +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Programmer" + +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Ingen installerte programmer." + +#: ../../mod/contacts.php:85 ../../mod/contacts.php:165 +msgid "Could not access contact record." +msgstr "Fikk ikke tilgang til kontaktposten." + +#: ../../mod/contacts.php:99 +msgid "Could not locate selected profile." +msgstr "Kunne ikke lokalisere valgt profil." + +#: ../../mod/contacts.php:122 +msgid "Contact updated." +msgstr "Kontakt oppdatert." + +#: ../../mod/contacts.php:124 ../../mod/dfrn_request.php:571 +msgid "Failed to update contact record." +msgstr "Mislyktes med å oppdatere kontaktposten." + +#: ../../mod/contacts.php:187 +msgid "Contact has been blocked" +msgstr "Kontakten er blokkert" + +#: ../../mod/contacts.php:187 +msgid "Contact has been unblocked" +msgstr "Kontakten er ikke blokkert lenger" + +#: ../../mod/contacts.php:201 +msgid "Contact has been ignored" +msgstr "Kontakten er ignorert" + +#: ../../mod/contacts.php:201 +msgid "Contact has been unignored" +msgstr "Kontakten er ikke ignorert lenger" + +#: ../../mod/contacts.php:220 +msgid "Contact has been archived" +msgstr "" + +#: ../../mod/contacts.php:220 +msgid "Contact has been unarchived" +msgstr "" + +#: ../../mod/contacts.php:244 +msgid "Do you really want to delete this contact?" +msgstr "" + +#: ../../mod/contacts.php:263 +msgid "Contact has been removed." +msgstr "Kontakten er fjernet." + +#: ../../mod/contacts.php:301 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Du er gjensidig venn med %s" + +#: ../../mod/contacts.php:305 +#, php-format +msgid "You are sharing with %s" +msgstr "Du deler med %s" + +#: ../../mod/contacts.php:310 +#, php-format +msgid "%s is sharing with you" +msgstr "%s deler med deg" + +#: ../../mod/contacts.php:327 +msgid "Private communications are not available for this contact." +msgstr "Privat kommunikasjon er ikke tilgjengelig mot denne kontakten." + +#: ../../mod/contacts.php:334 +msgid "(Update was successful)" +msgstr "(Oppdatering vellykket)" + +#: ../../mod/contacts.php:334 +msgid "(Update was not successful)" +msgstr "(Oppdatering mislykket)" + +#: ../../mod/contacts.php:336 +msgid "Suggest friends" +msgstr "Foreslå venner" + +#: ../../mod/contacts.php:340 +#, php-format +msgid "Network type: %s" +msgstr "Nettverkstype: %s" + +#: ../../mod/contacts.php:348 +msgid "View all contacts" +msgstr "Vis alle kontakter" + +#: ../../mod/contacts.php:356 +msgid "Toggle Blocked status" +msgstr "" + +#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 +msgid "Unignore" +msgstr "Fjern ignorering" + +#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:210 +msgid "Ignore" +msgstr "Ignorer" + +#: ../../mod/contacts.php:362 +msgid "Toggle Ignored status" +msgstr "" + +#: ../../mod/contacts.php:366 +msgid "Unarchive" +msgstr "" + +#: ../../mod/contacts.php:366 +msgid "Archive" +msgstr "" + +#: ../../mod/contacts.php:369 +msgid "Toggle Archive status" +msgstr "" + +#: ../../mod/contacts.php:372 +msgid "Repair" +msgstr "Reparer" + +#: ../../mod/contacts.php:375 +msgid "Advanced Contact Settings" +msgstr "" + +#: ../../mod/contacts.php:381 +msgid "Communications lost with this contact!" +msgstr "" + +#: ../../mod/contacts.php:384 +msgid "Contact Editor" +msgstr "Endre kontakt" + +#: ../../mod/contacts.php:387 +msgid "Profile Visibility" +msgstr "Profilens synlighet" + +#: ../../mod/contacts.php:388 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Vennligst velg profilen du ønsker å vise til %s når denne ser profilen på en sikret måte." + +#: ../../mod/contacts.php:389 +msgid "Contact Information / Notes" +msgstr "Kontaktinformasjon/-notater" + +#: ../../mod/contacts.php:390 +msgid "Edit contact notes" +msgstr "Endre kontaktnotater" + +#: ../../mod/contacts.php:396 +msgid "Block/Unblock contact" +msgstr "Blokker kontakt/fjern blokkering for kontakt" + +#: ../../mod/contacts.php:397 +msgid "Ignore contact" +msgstr "Ignorer kontakt" + +#: ../../mod/contacts.php:398 +msgid "Repair URL settings" +msgstr "Reparer URL-innstillinger" + +#: ../../mod/contacts.php:399 +msgid "View conversations" +msgstr "Vis samtaler" + +#: ../../mod/contacts.php:401 +msgid "Delete contact" +msgstr "Slett kontakt" + +#: ../../mod/contacts.php:405 +msgid "Last update:" +msgstr "Siste oppdatering:" + +#: ../../mod/contacts.php:407 +msgid "Update public posts" +msgstr "Oppdater offentlige innlegg" + +#: ../../mod/contacts.php:416 +msgid "Currently blocked" +msgstr "Blokkert nå" + +#: ../../mod/contacts.php:417 +msgid "Currently ignored" +msgstr "Ignorert nå" + +#: ../../mod/contacts.php:418 +msgid "Currently archived" +msgstr "" + +#: ../../mod/contacts.php:419 ../../mod/notifications.php:157 +#: ../../mod/notifications.php:204 +msgid "Hide this contact from others" +msgstr "Skjul denne kontakten for andre" + +#: ../../mod/contacts.php:419 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "" + +#: ../../mod/contacts.php:470 +msgid "Suggestions" +msgstr "" + +#: ../../mod/contacts.php:473 +msgid "Suggest potential friends" +msgstr "" + +#: ../../mod/contacts.php:476 ../../mod/group.php:194 +msgid "All Contacts" +msgstr "Alle kontakter" + +#: ../../mod/contacts.php:479 +msgid "Show all contacts" +msgstr "" + +#: ../../mod/contacts.php:482 +msgid "Unblocked" +msgstr "" + +#: ../../mod/contacts.php:485 +msgid "Only show unblocked contacts" +msgstr "" + +#: ../../mod/contacts.php:489 +msgid "Blocked" +msgstr "" + +#: ../../mod/contacts.php:492 +msgid "Only show blocked contacts" +msgstr "" + +#: ../../mod/contacts.php:496 +msgid "Ignored" +msgstr "" + +#: ../../mod/contacts.php:499 +msgid "Only show ignored contacts" +msgstr "" + +#: ../../mod/contacts.php:503 +msgid "Archived" +msgstr "" + +#: ../../mod/contacts.php:506 +msgid "Only show archived contacts" +msgstr "" + +#: ../../mod/contacts.php:510 +msgid "Hidden" +msgstr "" + +#: ../../mod/contacts.php:513 +msgid "Only show hidden contacts" +msgstr "" + +#: ../../mod/contacts.php:561 +msgid "Mutual Friendship" +msgstr "Gjensidig vennskap" + +#: ../../mod/contacts.php:565 +msgid "is a fan of yours" +msgstr "er en tilhenger av deg" + +#: ../../mod/contacts.php:569 +msgid "you are a fan of" +msgstr "du er en tilhenger av" + +#: ../../mod/contacts.php:611 +msgid "Search your contacts" +msgstr "Søk i dine kontakter" + +#: ../../mod/contacts.php:612 ../../mod/directory.php:59 +msgid "Finding: " +msgstr "Fant:" + +#: ../../mod/settings.php:23 ../../mod/photos.php:79 +msgid "everybody" +msgstr "alle" + +#: ../../mod/settings.php:35 +msgid "Additional features" +msgstr "" + +#: ../../mod/settings.php:40 ../../mod/uexport.php:14 +msgid "Display settings" +msgstr "" + +#: ../../mod/settings.php:46 ../../mod/uexport.php:20 +msgid "Connector settings" +msgstr "Koblingsinnstillinger" + +#: ../../mod/settings.php:51 ../../mod/uexport.php:25 +msgid "Plugin settings" +msgstr "Tilleggsinnstillinger" + +#: ../../mod/settings.php:56 ../../mod/uexport.php:30 +msgid "Connected apps" +msgstr "Tilkoblede programmer" + +#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80 +msgid "Export personal data" +msgstr "Eksporter personlige data" + +#: ../../mod/settings.php:66 ../../mod/uexport.php:40 +msgid "Remove account" +msgstr "" + +#: ../../mod/settings.php:118 +msgid "Missing some important data!" +msgstr "Mangler noen viktige data!" + +#: ../../mod/settings.php:121 ../../mod/settings.php:610 +msgid "Update" +msgstr "Oppdater" + +#: ../../mod/settings.php:227 +msgid "Failed to connect with email account using the settings provided." +msgstr "Mislyktes i å opprette forbindelse med e-postkontoen med de oppgitte innstillingene." + +#: ../../mod/settings.php:232 +msgid "Email settings updated." +msgstr "E-postinnstillinger er oppdatert." + +#: ../../mod/settings.php:247 +msgid "Features updated" +msgstr "" + +#: ../../mod/settings.php:312 +msgid "Passwords do not match. Password unchanged." +msgstr "Passordene er ikke like. Passord uendret." + +#: ../../mod/settings.php:317 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Tomme passord er ikke lov. Passord uendret." + +#: ../../mod/settings.php:325 +msgid "Wrong password." +msgstr "" + +#: ../../mod/settings.php:336 +msgid "Password changed." +msgstr "Passord endret." + +#: ../../mod/settings.php:338 +msgid "Password update failed. Please try again." +msgstr "Passordoppdatering mislyktes. Vennligst prøv igjen." + +#: ../../mod/settings.php:403 +msgid " Please use a shorter name." +msgstr "Vennligst bruk et kortere navn." + +#: ../../mod/settings.php:405 +msgid " Name too short." +msgstr "Navnet er for kort." + +#: ../../mod/settings.php:414 +msgid "Wrong Password" +msgstr "" + +#: ../../mod/settings.php:419 +msgid " Not valid email." +msgstr "Ugyldig e-postadresse." + +#: ../../mod/settings.php:422 +msgid " Cannot change to that email." +msgstr "Kan ikke endre til den e-postadressen." + +#: ../../mod/settings.php:476 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "" + +#: ../../mod/settings.php:480 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "" + +#: ../../mod/settings.php:510 +msgid "Settings updated." +msgstr "Innstillinger oppdatert." + +#: ../../mod/settings.php:583 ../../mod/settings.php:609 +#: ../../mod/settings.php:645 +msgid "Add application" +msgstr "Legg til program" + +#: ../../mod/settings.php:587 ../../mod/settings.php:613 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../mod/settings.php:588 ../../mod/settings.php:614 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: ../../mod/settings.php:589 ../../mod/settings.php:615 +msgid "Redirect" +msgstr "Omdiriger" + +#: ../../mod/settings.php:590 ../../mod/settings.php:616 +msgid "Icon url" +msgstr "Ikon URL" + +#: ../../mod/settings.php:601 +msgid "You can't edit this application." +msgstr "Du kan ikke redigere dette programmet." + +#: ../../mod/settings.php:644 +msgid "Connected Apps" +msgstr "Tilkoblede programmer" + +#: ../../mod/settings.php:646 ../../mod/editpost.php:109 +#: ../../mod/content.php:751 ../../object/Item.php:117 +msgid "Edit" +msgstr "Endre" + +#: ../../mod/settings.php:648 +msgid "Client key starts with" +msgstr "Klientnøkkelen starter med" + +#: ../../mod/settings.php:649 +msgid "No name" +msgstr "Ingen navn" + +#: ../../mod/settings.php:650 +msgid "Remove authorization" +msgstr "Fjern tillatelse" + +#: ../../mod/settings.php:662 +msgid "No Plugin settings configured" +msgstr "Ingen tilleggsinnstillinger konfigurert" + +#: ../../mod/settings.php:670 +msgid "Plugin Settings" +msgstr "Tilleggsinnstillinger" + +#: ../../mod/settings.php:684 +msgid "Off" +msgstr "" + +#: ../../mod/settings.php:684 +msgid "On" +msgstr "" + +#: ../../mod/settings.php:692 +msgid "Additional Features" +msgstr "" + +#: ../../mod/settings.php:705 ../../mod/settings.php:706 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Innebygget støtte for %s forbindelse er %s" + +#: ../../mod/settings.php:705 ../../mod/settings.php:706 +msgid "enabled" +msgstr "aktivert" + +#: ../../mod/settings.php:705 ../../mod/settings.php:706 +msgid "disabled" +msgstr "avskrudd" + +#: ../../mod/settings.php:706 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../mod/settings.php:738 +msgid "Email access is disabled on this site." +msgstr "E-posttilgang er avskrudd på dette stedet." + +#: ../../mod/settings.php:745 +msgid "Connector Settings" +msgstr "Koblingsinnstillinger" + +#: ../../mod/settings.php:750 +msgid "Email/Mailbox Setup" +msgstr "E-post-/postboksinnstillinger" + +#: ../../mod/settings.php:751 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Hvis du ønsker å kommunisere med e-postkontakter via denne tjenesten (frivillig), vennligst oppgi hvordan din postboks kontaktes." + +#: ../../mod/settings.php:752 +msgid "Last successful email check:" +msgstr "Siste vellykkede e-postsjekk:" + +#: ../../mod/settings.php:754 +msgid "IMAP server name:" +msgstr "IMAP-tjeners navn:" + +#: ../../mod/settings.php:755 +msgid "IMAP port:" +msgstr "IMAP port:" + +#: ../../mod/settings.php:756 +msgid "Security:" +msgstr "Sikkerhet:" + +#: ../../mod/settings.php:756 ../../mod/settings.php:761 +msgid "None" +msgstr "Ingen" + +#: ../../mod/settings.php:757 +msgid "Email login name:" +msgstr "E-post brukernavn:" + +#: ../../mod/settings.php:758 +msgid "Email password:" +msgstr "E-post passord:" + +#: ../../mod/settings.php:759 +msgid "Reply-to address:" +msgstr "Svar-til-adresse:" + +#: ../../mod/settings.php:760 +msgid "Send public posts to all email contacts:" +msgstr "Send offentlige meldinger til alle e-postkontakter:" + +#: ../../mod/settings.php:761 +msgid "Action after import:" +msgstr "" + +#: ../../mod/settings.php:761 +msgid "Mark as seen" +msgstr "" + +#: ../../mod/settings.php:761 +msgid "Move to folder" +msgstr "" + +#: ../../mod/settings.php:762 +msgid "Move to folder:" +msgstr "" + +#: ../../mod/settings.php:835 +msgid "Display Settings" +msgstr "" + +#: ../../mod/settings.php:841 ../../mod/settings.php:853 +msgid "Display Theme:" +msgstr "Vis tema:" + +#: ../../mod/settings.php:842 +msgid "Mobile Theme:" +msgstr "" + +#: ../../mod/settings.php:843 +msgid "Update browser every xx seconds" +msgstr "" + +#: ../../mod/settings.php:843 +msgid "Minimum of 10 seconds, no maximum" +msgstr "" + +#: ../../mod/settings.php:844 +msgid "Number of items to display per page:" +msgstr "" + +#: ../../mod/settings.php:844 ../../mod/settings.php:845 +msgid "Maximum of 100 items" +msgstr "" + +#: ../../mod/settings.php:845 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: ../../mod/settings.php:846 +msgid "Don't show emoticons" +msgstr "" + +#: ../../mod/settings.php:922 +msgid "Normal Account Page" +msgstr "" + +#: ../../mod/settings.php:923 +msgid "This account is a normal personal profile" +msgstr "Denne kontoen er en vanlig personlig profil" + +#: ../../mod/settings.php:926 +msgid "Soapbox Page" +msgstr "" + +#: ../../mod/settings.php:927 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med kun leserettigheter" + +#: ../../mod/settings.php:930 +msgid "Community Forum/Celebrity Account" +msgstr "" + +#: ../../mod/settings.php:931 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med lese- og skriverettigheter" + +#: ../../mod/settings.php:934 +msgid "Automatic Friend Page" +msgstr "" + +#: ../../mod/settings.php:935 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som venner" + +#: ../../mod/settings.php:938 +msgid "Private Forum [Experimental]" +msgstr "" + +#: ../../mod/settings.php:939 +msgid "Private forum - approved members only" +msgstr "" + +#: ../../mod/settings.php:951 +msgid "OpenID:" +msgstr "OpenID:" + +#: ../../mod/settings.php:951 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Valgfritt) Tillat denne OpenID-en å logge inn i denne kontoen." + +#: ../../mod/settings.php:961 +msgid "Publish your default profile in your local site directory?" +msgstr "Skal standardprofilen din publiseres i katalogen til nettstedet ditt?" + +#: ../../mod/settings.php:967 +msgid "Publish your default profile in the global social directory?" +msgstr "Skal standardprofilen din publiseres i den globale sosiale katalogen?" + +#: ../../mod/settings.php:975 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Skjul kontakt-/venne-listen din for besøkende til standardprofilen din?" + +#: ../../mod/settings.php:979 +msgid "Hide your profile details from unknown viewers?" +msgstr "" + +#: ../../mod/settings.php:984 +msgid "Allow friends to post to your profile page?" +msgstr "Tillat venner å poste innlegg på din profilside?" + +#: ../../mod/settings.php:990 +msgid "Allow friends to tag your posts?" +msgstr "Tillat venner å merke dine innlegg?" + +#: ../../mod/settings.php:996 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: ../../mod/settings.php:1002 +msgid "Permit unknown people to send you private mail?" +msgstr "" + +#: ../../mod/settings.php:1010 +msgid "Profile is not published." +msgstr "Profilen er ikke publisert." + +#: ../../mod/settings.php:1013 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "eller" + +#: ../../mod/settings.php:1018 +msgid "Your Identity Address is" +msgstr "Din identitetsadresse er" + +#: ../../mod/settings.php:1029 +msgid "Automatically expire posts after this many days:" +msgstr "" + +#: ../../mod/settings.php:1029 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Tomme innlegg utgår ikke. Utgåtte innlegg slettes." + +#: ../../mod/settings.php:1030 +msgid "Advanced expiration settings" +msgstr "" + +#: ../../mod/settings.php:1031 +msgid "Advanced Expiration" +msgstr "" + +#: ../../mod/settings.php:1032 +msgid "Expire posts:" +msgstr "" + +#: ../../mod/settings.php:1033 +msgid "Expire personal notes:" +msgstr "" + +#: ../../mod/settings.php:1034 +msgid "Expire starred posts:" +msgstr "" + +#: ../../mod/settings.php:1035 +msgid "Expire photos:" +msgstr "" + +#: ../../mod/settings.php:1036 +msgid "Only expire posts by others:" +msgstr "" + +#: ../../mod/settings.php:1062 +msgid "Account Settings" +msgstr "Kontoinnstillinger" + +#: ../../mod/settings.php:1070 +msgid "Password Settings" +msgstr "Passordinnstillinger" + +#: ../../mod/settings.php:1071 +msgid "New Password:" +msgstr "Nytt passord:" + +#: ../../mod/settings.php:1072 +msgid "Confirm:" +msgstr "Bekreft:" + +#: ../../mod/settings.php:1072 +msgid "Leave password fields blank unless changing" +msgstr "La passordfeltene stå tomme hvis du ikke skal bytte" + +#: ../../mod/settings.php:1073 +msgid "Current Password:" +msgstr "" + +#: ../../mod/settings.php:1073 ../../mod/settings.php:1074 +msgid "Your current password to confirm the changes" +msgstr "" + +#: ../../mod/settings.php:1074 +msgid "Password:" +msgstr "" + +#: ../../mod/settings.php:1078 +msgid "Basic Settings" +msgstr "Grunninnstillinger" + +#: ../../mod/settings.php:1080 +msgid "Email Address:" +msgstr "E-postadresse:" + +#: ../../mod/settings.php:1081 +msgid "Your Timezone:" +msgstr "Din tidssone:" + +#: ../../mod/settings.php:1082 +msgid "Default Post Location:" +msgstr "Standard oppholdssted når du poster:" + +#: ../../mod/settings.php:1083 +msgid "Use Browser Location:" +msgstr "Bruk nettleserens oppholdssted:" + +#: ../../mod/settings.php:1086 +msgid "Security and Privacy Settings" +msgstr "Sikkerhet og privatlivsinnstillinger" + +#: ../../mod/settings.php:1088 +msgid "Maximum Friend Requests/Day:" +msgstr "Maksimum venneforespørsler/dag:" + +#: ../../mod/settings.php:1088 ../../mod/settings.php:1118 +msgid "(to prevent spam abuse)" +msgstr "(for å forhindre søppelpost)" + +#: ../../mod/settings.php:1089 +msgid "Default Post Permissions" +msgstr "Standardtillatelser ved posting" + +#: ../../mod/settings.php:1090 +msgid "(click to open/close)" +msgstr "(klikk for å åpne/lukke)" + +#: ../../mod/settings.php:1099 ../../mod/photos.php:1140 +#: ../../mod/photos.php:1506 +msgid "Show to Groups" +msgstr "" + +#: ../../mod/settings.php:1100 ../../mod/photos.php:1141 +#: ../../mod/photos.php:1507 +msgid "Show to Contacts" +msgstr "" + +#: ../../mod/settings.php:1101 +msgid "Default Private Post" +msgstr "" + +#: ../../mod/settings.php:1102 +msgid "Default Public Post" +msgstr "" + +#: ../../mod/settings.php:1106 +msgid "Default Permissions for New Posts" +msgstr "" + +#: ../../mod/settings.php:1118 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: ../../mod/settings.php:1121 +msgid "Notification Settings" +msgstr "Beskjedinnstillinger" + +#: ../../mod/settings.php:1122 +msgid "By default post a status message when:" +msgstr "" + +#: ../../mod/settings.php:1123 +msgid "accepting a friend request" +msgstr "" + +#: ../../mod/settings.php:1124 +msgid "joining a forum/community" +msgstr "" + +#: ../../mod/settings.php:1125 +msgid "making an interesting profile change" +msgstr "" + +#: ../../mod/settings.php:1126 +msgid "Send a notification email when:" +msgstr "Send en e-post med beskjed når:" + +#: ../../mod/settings.php:1127 +msgid "You receive an introduction" +msgstr "Du mottar en introduksjon" + +#: ../../mod/settings.php:1128 +msgid "Your introductions are confirmed" +msgstr "Dine introduksjoner er bekreftet" + +#: ../../mod/settings.php:1129 +msgid "Someone writes on your profile wall" +msgstr "Noen skriver på veggen til profilen din" + +#: ../../mod/settings.php:1130 +msgid "Someone writes a followup comment" +msgstr "Noen skriver en oppfølgingskommentar" + +#: ../../mod/settings.php:1131 +msgid "You receive a private message" +msgstr "Du mottar en privat melding" + +#: ../../mod/settings.php:1132 +msgid "You receive a friend suggestion" +msgstr "" + +#: ../../mod/settings.php:1133 +msgid "You are tagged in a post" +msgstr "" + +#: ../../mod/settings.php:1134 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: ../../mod/settings.php:1137 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: ../../mod/settings.php:1138 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: ../../mod/share.php:44 +msgid "link" +msgstr "" + +#: ../../mod/crepair.php:102 +msgid "Contact settings applied." +msgstr "Kontaktinnstillinger i bruk." + +#: ../../mod/crepair.php:104 +msgid "Contact update failed." +msgstr "Kontaktoppdatering mislyktes." + +#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118 +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Kontakt ikke funnet." + +#: ../../mod/crepair.php:135 +msgid "Repair Contact Settings" +msgstr "Reparer kontaktinnstillinger" + +#: ../../mod/crepair.php:137 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ADVARSEL: Dette er meget avansert og hvis du skriver feil informasjon her, så kan kommunikasjonen med denne kontakten slutte å virke." + +#: ../../mod/crepair.php:138 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Vennligst bruk Tilbake-knappen i nettleseren din hvis du er usikker på hva du bør gjøre på denne siden." + +#: ../../mod/crepair.php:144 +msgid "Return to contact editor" +msgstr "" + +#: ../../mod/crepair.php:149 +msgid "Account Nickname" +msgstr "Konto Kallenavn" + +#: ../../mod/crepair.php:150 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Merkelappnavn - overstyrer Navn/Kallenavn" + +#: ../../mod/crepair.php:151 +msgid "Account URL" +msgstr "Konto URL" + +#: ../../mod/crepair.php:152 +msgid "Friend Request URL" +msgstr "Venneforespørsel URL" + +#: ../../mod/crepair.php:153 +msgid "Friend Confirm URL" +msgstr "Vennebekreftelse URL" + +#: ../../mod/crepair.php:154 +msgid "Notification Endpoint URL" +msgstr "Endepunkt URL for beskjed" + +#: ../../mod/crepair.php:155 +msgid "Poll/Feed URL" +msgstr "Poll/Feed URL" + +#: ../../mod/crepair.php:156 +msgid "New photo from this URL" +msgstr "Nytt bilde fra denne URL-en" + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "" + +#: ../../mod/delegate.php:123 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Delegater kan behandle alle sider ved denne kontoen/siden, bortsett fra grunnleggende kontoinnstillinger. Vennligst ikke deleger din personlige konto til noen som du ikke stoler fullt og fast på." + +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Eksisterende sidebehandlere" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "" + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "" + +#: ../../mod/delegate.php:130 ../../mod/tagrm.php:93 +msgid "Remove" +msgstr "Slett" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "" + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "" + +#: ../../mod/dfrn_confirm.php:119 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "" + +#: ../../mod/dfrn_confirm.php:237 +msgid "Response from remote site was not understood." +msgstr "Forstod ikke svaret fra det andre stedet." + +#: ../../mod/dfrn_confirm.php:246 +msgid "Unexpected response from remote site: " +msgstr "Uventet svar fra det andre stedet:" + +#: ../../mod/dfrn_confirm.php:254 +msgid "Confirmation completed successfully." +msgstr "Sending av bekreftelse var vellykket. " + +#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 +#: ../../mod/dfrn_confirm.php:277 +msgid "Remote site reported: " +msgstr "Det andre stedet rapporterte:" + +#: ../../mod/dfrn_confirm.php:268 +msgid "Temporary failure. Please wait and try again." +msgstr "Midlertidig feil. Vennligst vent og prøv igjen." + +#: ../../mod/dfrn_confirm.php:275 +msgid "Introduction failed or was revoked." +msgstr "Introduksjon mislyktes eller ble trukket tilbake." + +#: ../../mod/dfrn_confirm.php:420 +msgid "Unable to set contact photo." +msgstr "Fikk ikke satt kontaktbilde." + +#: ../../mod/dfrn_confirm.php:562 +#, php-format +msgid "No user record found for '%s' " +msgstr "Ingen brukerregistrering funnet for '%s'" + +#: ../../mod/dfrn_confirm.php:572 +msgid "Our site encryption key is apparently messed up." +msgstr "Krypteringsnøkkelen til nettstedet vårt ser ut til å være ødelagt." + +#: ../../mod/dfrn_confirm.php:583 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "En tom nettsteds-URL ble oppgitt eller URL-en kunne ikke dekrypteres av oss." + +#: ../../mod/dfrn_confirm.php:604 +msgid "Contact record was not found for you on our site." +msgstr "Kontaktinformasjon om deg ble ikke funnet på vårt nettsted." + +#: ../../mod/dfrn_confirm.php:618 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "" + +#: ../../mod/dfrn_confirm.php:638 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "ID-en som ble oppgitt av ditt system har en duplikat i vårt system. Det bør virke hvis du prøver igjen." + +#: ../../mod/dfrn_confirm.php:649 +msgid "Unable to set your contact credentials on our system." +msgstr "Får ikke lagret din kontaktlegitamasjon på vårt system." + +#: ../../mod/dfrn_confirm.php:716 +msgid "Unable to update your contact profile details on our system" +msgstr "Får ikke oppdatert kontaktdetaljene dine på vårt system." + +#: ../../mod/dfrn_confirm.php:751 +#, php-format +msgid "Connection accepted at %s" +msgstr "Tilkobling godtatt på %s" + +#: ../../mod/dfrn_confirm.php:800 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "" + +#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "" + +#: ../../mod/dfrn_request.php:93 +msgid "This introduction has already been accepted." +msgstr "Denne introduksjonen har allerede blitt akseptert." + +#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profilstedet er ikke gyldig og inneholder ikke profilinformasjon." + +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Advarsel: profilstedet har ikke identifiserbart eiernavn." + +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 +msgid "Warning: profile location has no profile photo." +msgstr "Advarsel: profilstedet har ikke noe profilbilde." + +#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 +#, 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] "one: %d nødvendig parameter ble ikke funnet på angitt sted" +msgstr[1] "other: %d nødvendige parametre ble ikke funnet på angitt sted" + +#: ../../mod/dfrn_request.php:170 +msgid "Introduction complete." +msgstr "Introduksjon ferdig." + +#: ../../mod/dfrn_request.php:209 +msgid "Unrecoverable protocol error." +msgstr "Uopprettelig protokollfeil." + +#: ../../mod/dfrn_request.php:237 +msgid "Profile unavailable." +msgstr "Profil utilgjengelig." + +#: ../../mod/dfrn_request.php:262 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s har mottatt for mange kontaktforespørsler idag." + +#: ../../mod/dfrn_request.php:263 +msgid "Spam protection measures have been invoked." +msgstr "Tiltak mot søppelpost har blitt iverksatt." + +#: ../../mod/dfrn_request.php:264 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Venner anbefales å prøve igjen om 24 timer." + +#: ../../mod/dfrn_request.php:326 +msgid "Invalid locator" +msgstr "Ugyldig stedsangivelse" + +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." +msgstr "Ugyldig e-postadresse." + +#: ../../mod/dfrn_request.php:362 +msgid "This account has not been configured for email. Request failed." +msgstr "Denne kontoen er ikke konfigurert for e-post. Forespørsel mislyktes." + +#: ../../mod/dfrn_request.php:458 +msgid "Unable to resolve your name at the provided location." +msgstr "Ikke i stand til å avgjøre navnet ditt hos det oppgitte stedet." + +#: ../../mod/dfrn_request.php:471 +msgid "You have already introduced yourself here." +msgstr "Du har allerede introdusert deg selv her." + +#: ../../mod/dfrn_request.php:475 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Du er visst allerede venn med %s." + +#: ../../mod/dfrn_request.php:496 +msgid "Invalid profile URL." +msgstr "Ugyldig profil-URL." + +#: ../../mod/dfrn_request.php:592 +msgid "Your introduction has been sent." +msgstr "Din introduksjon er sendt." + +#: ../../mod/dfrn_request.php:645 +msgid "Please login to confirm introduction." +msgstr "Vennligst logg inn for å bekrefte introduksjonen." + +#: ../../mod/dfrn_request.php:659 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Feil identitet er logget inn for øyeblikket. Vennligst logg inn i denne profilen." + +#: ../../mod/dfrn_request.php:670 +msgid "Hide this contact" +msgstr "Skjul denne kontakten" + +#: ../../mod/dfrn_request.php:673 +#, php-format +msgid "Welcome home %s." +msgstr "Velkommen hjem %s." + +#: ../../mod/dfrn_request.php:674 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s." + +#: ../../mod/dfrn_request.php:675 +msgid "Confirm" +msgstr "Bekreft" + +#: ../../mod/dfrn_request.php:811 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Vennligst skriv inn din identitetsadresse fra en av følgende støttede sosiale nettverk:" + +#: ../../mod/dfrn_request.php:827 +msgid "Connect as an email follower (Coming soon)" +msgstr "Koble til som en e-postfølgesvenn (Kommer snart)" + +#: ../../mod/dfrn_request.php:829 +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public" +" Friendica site and join us today." +msgstr "Hvis du ennå ikke er en del av den frie sosiale webben, følg denne lenken for å finne et offentlig Friendica-nettsted og bli med oss idag." + +#: ../../mod/dfrn_request.php:832 +msgid "Friend/Connection Request" +msgstr "Venne-/Koblings-forespørsel" + +#: ../../mod/dfrn_request.php:833 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Eksempler: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: ../../mod/dfrn_request.php:834 +msgid "Please answer the following:" +msgstr "Vennligst svar på følgende:" + +#: ../../mod/dfrn_request.php:835 +#, php-format +msgid "Does %s know you?" +msgstr "Kjenner %s deg?" + +#: ../../mod/dfrn_request.php:838 +msgid "Add a personal note:" +msgstr "Legg til en personlig melding:" + +#: ../../mod/dfrn_request.php:841 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federeated Social Web" + +#: ../../mod/dfrn_request.php:843 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "- vennligst ikke bruk dette skjemaet. I stedet skriver du %s inn søkelinjen i Diaspora." + +#: ../../mod/dfrn_request.php:844 +msgid "Your Identity Address:" +msgstr "Din identitetsadresse:" + +#: ../../mod/dfrn_request.php:847 +msgid "Submit Request" +msgstr "Send forespørsel" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518 +msgid "Global Directory" +msgstr "Global katalog" + +#: ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "" + +#: ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "Stedets katalog" + +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "Kjønn:" + +#: ../../mod/directory.php:187 +msgid "No entries (some entries may be hidden)." +msgstr "Ingen oppføringer (noen oppføringer kan være skjulte)." + +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "" + +#: ../../mod/suggest.php:72 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "" + +#: ../../mod/suggest.php:90 +msgid "Ignore/Hide" +msgstr "Ignorér/Skjul" + +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Personsøk" + +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "Ingen treff" + +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "" + +#: ../../mod/videos.php:226 ../../mod/photos.php:1025 +msgid "Access to this item is restricted." +msgstr "Tilgang til dette elementet er begrenset." + +#: ../../mod/videos.php:308 ../../mod/photos.php:1784 +msgid "View Album" +msgstr "Vis album" + +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "" + +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "" + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Fjernet tag" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Fjern tag" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Velg en tag å fjerne:" + +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Fant ikke elementet" + +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Endre innlegg" + +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "" + +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "" + +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "Rediger hendelse" + +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "Lag ny hendelse" + +#: ../../mod/events.php:372 +msgid "Previous" +msgstr "Forrige" + +#: ../../mod/events.php:373 ../../mod/install.php:207 +msgid "Next" +msgstr "Neste" + +#: ../../mod/events.php:446 +msgid "hour:minute" +msgstr "time:minutt" + +#: ../../mod/events.php:456 +msgid "Event details" +msgstr "Hendelsesdetaljer" + +#: ../../mod/events.php:457 +#, php-format +msgid "Format is %s %s. Starting date and Title are required." +msgstr "" + +#: ../../mod/events.php:459 +msgid "Event Starts:" +msgstr "Hendelsen starter:" + +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" +msgstr "" + +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" +msgstr "Avslutningsdato/-tid er ukjent eller ikke relevant" + +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "Hendelsen slutter:" + +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "Tilpass til iakttakerens tidssone" + +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "Beskrivelse:" + +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "" + +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "Del denne hendelsen" + +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "" + +#: ../../mod/uexport.php:72 +msgid "Export account" +msgstr "" + +#: ../../mod/uexport.php:72 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "" + +#: ../../mod/uexport.php:73 +msgid "Export all" +msgstr "" + +#: ../../mod/uexport.php:73 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "" + +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "" + +#: ../../mod/uimport.php:64 +msgid "Import" +msgstr "" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "" + +#: ../../mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "" + +#: ../../mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "" + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "" + +#: ../../mod/uimport.php:70 +msgid "" +"To export your accont, go to \"Settings->Export your porsonal data\" and " +"select \"Export account\"" +msgstr "" + +#: ../../mod/update_community.php:18 ../../mod/update_display.php:22 +#: ../../mod/update_network.php:22 ../../mod/update_notes.php:41 +#: ../../mod/update_profile.php:41 +msgid "[Embedded content - reload page to view]" +msgstr "[Innebygget innhold - hent siden på nytt for å se det]" + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "" + +#: ../../mod/friendica.php:55 +msgid "This is Friendica, version" +msgstr "" + +#: ../../mod/friendica.php:56 +msgid "running at web location" +msgstr "kjører på web-plassering" + +#: ../../mod/friendica.php:58 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "" + +#: ../../mod/friendica.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Feilrapporter og problemer: vennligst besøk" + +#: ../../mod/friendica.php:61 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "" + +#: ../../mod/friendica.php:75 +msgid "Installed plugins/addons/apps:" +msgstr "" + +#: ../../mod/friendica.php:88 +msgid "No installed plugins/addons/apps" +msgstr "Ingen installerte plugins/tillegg/apper" + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Venneforslag sendt." + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Foreslå venner" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Foreslå en venn for %s" + +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Gruppen er laget." + +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Kunne ikke lage gruppen." + +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." +msgstr "Fant ikke gruppen." + +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "Gruppenavnet er endret" + +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Lag en gruppe med kontakter/venner." + +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "Gruppenavn:" + +#: ../../mod/group.php:113 +msgid "Group removed." +msgstr "Gruppe fjernet." + +#: ../../mod/group.php:115 +msgid "Unable to remove group." +msgstr "Mislyktes med å fjerne gruppe." + +#: ../../mod/group.php:179 +msgid "Group Editor" +msgstr "Gruppebehandler" + +#: ../../mod/group.php:192 +msgid "Members" +msgstr "Medlemmer" + +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Ingen profil" + +#: ../../mod/help.php:79 +msgid "Help:" +msgstr "Hjelp:" + +#: ../../mod/help.php:90 ../../index.php:231 +msgid "Not Found" +msgstr "Ikke funnet" + +#: ../../mod/help.php:93 ../../index.php:234 +msgid "Page not found." +msgstr "Fant ikke siden." + +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "Ingen kontakter." + +#: ../../mod/home.php:34 +#, php-format +msgid "Welcome to %s" +msgstr "Velkommen til %s" + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "" + +#: ../../mod/wall_attach.php:69 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Filstørrelsen er større enn begrensning på %d" + +#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 +msgid "File upload failed." +msgstr "Opplasting av filen mislyktes." + +#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Bildets størrelse overstiger størrelsesbegrensningen på %d" + +#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801 +#: ../../mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Ikke i stand til å behandle bildet." + +#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828 +#: ../../mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Mislyktes med å laste opp bilde." + +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "" + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: Ugyldig e-postadresse." + +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "" + +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "" + +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Mislyktes med å levere meldingen." + +#: ../../mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "one: %d melding sendt." +msgstr[1] "other: %d meldinger sendt." + +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Du har ingen flere tilgjengelige invitasjoner" + +#: ../../mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "" + +#: ../../mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "" + +#: ../../mod/invite.php:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "" + +#: ../../mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Vi beklager. Dette systemet er for øyeblikket ikke konfigurert for forbindelser med andre offentlige nettsteder eller å invitere medlemmer." + +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "Send invitasjoner" + +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Skriv e-postadresser, en per linje:" + +#: ../../mod/invite.php:134 ../../mod/wallmessage.php:151 +#: ../../mod/message.php:329 ../../mod/message.php:558 +msgid "Your message:" +msgstr "Din melding:" + +#: ../../mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "" + +#: ../../mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Du må oppgi denne invitasjonskoden: $invite_code" + +#: ../../mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Når du har registrert, vennligst kontakt meg via min profilside på:" + +#: ../../mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "" + +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Antall daglige veggmeldinger for %s er overskredet. Melding mislyktes." + +#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 +msgid "No recipient selected." +msgstr "Ingen mottaker valgt." + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "" + +#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 +msgid "Message could not be sent." +msgstr "Meldingen kunne ikke sendes." + +#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 +msgid "Message collection failure." +msgstr "" + +#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 +msgid "Message sent." +msgstr "Melding sendt." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "" + +#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 +msgid "Send Private Message" msgstr "Send privat melding" -#: ../../include/conversation.php:206 +#: ../../mod/wallmessage.php:143 #, php-format -msgid "%1$s poked %2$s" +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." msgstr "" -#: ../../include/conversation.php:290 -msgid "post/item" +#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 +#: ../../mod/message.php:553 +msgid "To:" +msgstr "Til:" + +#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 +#: ../../mod/message.php:555 +msgid "Subject:" +msgstr "Emne:" + +#: ../../mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Tidskonvertering" + +#: ../../mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." msgstr "" -#: ../../include/conversation.php:291 +#: ../../mod/localtime.php:30 #, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "" +msgid "UTC time: %s" +msgstr "UTC tid: %s" -#: ../../include/conversation.php:599 ../../object/Item.php:225 -msgid "Categories:" -msgstr "" - -#: ../../include/conversation.php:600 ../../object/Item.php:226 -msgid "Filed under:" -msgstr "" - -#: ../../include/conversation.php:685 -msgid "remove" -msgstr "" - -#: ../../include/conversation.php:689 -msgid "Delete Selected Items" -msgstr "Slette valgte elementer" - -#: ../../include/conversation.php:788 -msgid "Follow Thread" -msgstr "" - -#: ../../include/conversation.php:857 +#: ../../mod/localtime.php:33 #, php-format -msgid "%s likes this." -msgstr "%s liker dette." +msgid "Current timezone: %s" +msgstr "Gjeldende tidssone: %s" -#: ../../include/conversation.php:857 +#: ../../mod/localtime.php:36 #, php-format -msgid "%s doesn't like this." -msgstr "%s liker ikke dette." +msgid "Converted localtime: %s" +msgstr "Konvertert lokaltid: %s" -#: ../../include/conversation.php:861 +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Vennligst velg din tidssone:" + +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Ekstern informasjon om privatlivsinnstillinger er ikke tilgjengelig." + +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Synlig for:" + +#: ../../mod/lostpass.php:17 +msgid "No valid account found." +msgstr "Fant ingen gyldig konto." + +#: ../../mod/lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Forespørsel om å tilbakestille passord er sendt. Sjekk e-posten din." + +#: ../../mod/lostpass.php:44 #, php-format -msgid "%2$d people like this." -msgstr "%2$d personer liker dette." +msgid "Password reset requested at %s" +msgstr "Forespørsel om tilbakestilling av passord ved %s" -#: ../../include/conversation.php:863 +#: ../../mod/lostpass.php:66 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Forespørselen kunne ikke verifiseres. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord milslyktes." + +#: ../../mod/lostpass.php:84 ../../boot.php:1151 +msgid "Password Reset" +msgstr "Passord tilbakestilling" + +#: ../../mod/lostpass.php:85 +msgid "Your password has been reset as requested." +msgstr "Ditt passord er tilbakestilt som forespurt." + +#: ../../mod/lostpass.php:86 +msgid "Your new password is" +msgstr "Ditt nye passord er" + +#: ../../mod/lostpass.php:87 +msgid "Save or copy your new password - and then" +msgstr "Lagre eller kopier ditt nye passord, og deretter" + +#: ../../mod/lostpass.php:88 +msgid "click here to login" +msgstr "klikk her for å logge inn" + +#: ../../mod/lostpass.php:89 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Passordet ditt kan endres fra siden Innstillinger etter vellykket logg inn." + +#: ../../mod/lostpass.php:107 #, php-format -msgid "%2$d people don't like this." -msgstr "%2$d personer liker ikke dette." +msgid "Your password has been changed at %s" +msgstr "" -#: ../../include/conversation.php:869 -msgid "and" -msgstr "og" +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Glemte du passordet?" -#: ../../include/conversation.php:875 +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Skriv inn e-postadressen og send inn for å tilbakestille passordet ditt. Sjekk deretter e-posten din for nærmere forklaring." + +#: ../../mod/lostpass.php:124 +msgid "Nickname or Email: " +msgstr "Kallenavn eller e-post:" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Tilbakestill" + +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "" + +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Behandle identiteter og/eller sider" + +#: ../../mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Veksle mellom ulike identiteter eller felleskaps-/gruppesider som deler dine kontodetaljer eller som du har blitt gitt \"behandle\" tillatelser" + +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Velg en identitet å behandle:" + +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Profiltreff" + +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord i din standardprofil." + +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "" + +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Mislyktes med å finne kontaktinformasjon." + +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "" + +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Melding slettet." + +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Samtale slettet." + +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Ingen meldinger." + +#: ../../mod/message.php:378 #, php-format -msgid ", and %d other people" -msgstr ", og %d andre personer" +msgid "Unknown sender - %s" +msgstr "" -#: ../../include/conversation.php:877 +#: ../../mod/message.php:381 #, php-format -msgid "%s like this." -msgstr "%s liker dette." +msgid "You and %s" +msgstr "" -#: ../../include/conversation.php:877 +#: ../../mod/message.php:384 #, php-format -msgid "%s don't like this." -msgstr "%s liker ikke dette." - -#: ../../include/conversation.php:904 ../../include/conversation.php:922 -msgid "Visible to everybody" -msgstr "Synlig for alle" - -#: ../../include/conversation.php:906 ../../include/conversation.php:924 -msgid "Please enter a video link/URL:" +msgid "%s and You" msgstr "" -#: ../../include/conversation.php:907 ../../include/conversation.php:925 -msgid "Please enter an audio link/URL:" +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Slett samtale" + +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: ../../mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Melding utilgjengelig." + +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Slett melding" + +#: ../../mod/message.php:548 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." msgstr "" -#: ../../include/conversation.php:908 ../../include/conversation.php:926 -msgid "Tag term:" +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Send svar" + +#: ../../mod/mood.php:133 +msgid "Mood" msgstr "" -#: ../../include/conversation.php:910 ../../include/conversation.php:928 -msgid "Where are you right now?" -msgstr "Hvor er du akkurat nå?" - -#: ../../include/conversation.php:911 -msgid "Delete item(s)?" +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" msgstr "" -#: ../../include/conversation.php:990 -msgid "permissions" +#: ../../mod/network.php:181 +msgid "Search Results For:" msgstr "" -#: ../../include/plugin.php:389 ../../include/plugin.php:391 -msgid "Click here to upgrade." +#: ../../mod/network.php:397 +msgid "Commented Order" +msgstr "Etter kommentarer" + +#: ../../mod/network.php:400 +msgid "Sort by Comment Date" msgstr "" -#: ../../include/plugin.php:397 -msgid "This action exceeds the limits set by your subscription plan." +#: ../../mod/network.php:403 +msgid "Posted Order" +msgstr "Etter innlegg" + +#: ../../mod/network.php:406 +msgid "Sort by Post Date" msgstr "" -#: ../../include/plugin.php:402 -msgid "This action is not available under your subscription plan." +#: ../../mod/network.php:444 ../../mod/notifications.php:88 +msgid "Personal" +msgstr "Personlig" + +#: ../../mod/network.php:447 +msgid "Posts that mention or involve you" msgstr "" -#: ../../boot.php:607 +#: ../../mod/network.php:453 +msgid "New" +msgstr "Ny" + +#: ../../mod/network.php:456 +msgid "Activity Stream - by date" +msgstr "" + +#: ../../mod/network.php:462 +msgid "Shared Links" +msgstr "" + +#: ../../mod/network.php:465 +msgid "Interesting Links" +msgstr "" + +#: ../../mod/network.php:471 +msgid "Starred" +msgstr "Med stjerne" + +#: ../../mod/network.php:474 +msgid "Favourite Posts" +msgstr "" + +#: ../../mod/network.php:546 +#, php-format +msgid "Warning: This group contains %s member from an insecure network." +msgid_plural "" +"Warning: This group contains %s members from an insecure network." +msgstr[0] "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk." +msgstr[1] "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk." + +#: ../../mod/network.php:549 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Private meldinger til denne gruppen risikerer å bli offentliggjort." + +#: ../../mod/network.php:596 ../../mod/content.php:119 +msgid "No such group" +msgstr "Gruppen finnes ikke" + +#: ../../mod/network.php:607 ../../mod/content.php:130 +msgid "Group is empty" +msgstr "Gruppen er tom" + +#: ../../mod/network.php:611 ../../mod/content.php:134 +msgid "Group: " +msgstr "Gruppe:" + +#: ../../mod/network.php:621 +msgid "Contact: " +msgstr "Kontakt:" + +#: ../../mod/network.php:623 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Private meldinger til denne personen risikerer å bli offentliggjort." + +#: ../../mod/network.php:628 +msgid "Invalid contact." +msgstr "Ugyldig kontakt." + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Ugyldig forespørselsidentifikator." + +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "Forkast" + +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "System" + +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "Vis ignorerte forespørsler" + +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "Skjul ignorerte forespørsler" + +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " +msgstr "Beskjedtype:" + +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "Venneforslag" + +#: ../../mod/notifications.php:152 +#, php-format +msgid "suggested by %s" +msgstr "foreslått av %s" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" +msgstr "Post om en ny venn" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" +msgstr "hvis gyldig" + +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "Påstår å kjenne deg:" + +#: ../../mod/notifications.php:181 +msgid "yes" +msgstr "ja" + +#: ../../mod/notifications.php:181 +msgid "no" +msgstr "ei" + +#: ../../mod/notifications.php:188 +msgid "Approve as: " +msgstr "Godkjenn som:" + +#: ../../mod/notifications.php:189 +msgid "Friend" +msgstr "Venn" + +#: ../../mod/notifications.php:190 +msgid "Sharer" +msgstr "Deler" + +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "Fan/Beundrer" + +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "Venn/kontakt-forespørsel" + +#: ../../mod/notifications.php:196 +msgid "New Follower" +msgstr "Ny følgesvenn" + +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "Ingen introduksjoner." + +#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 +#: ../../mod/notifications.php:469 +#, php-format +msgid "%s liked %s's post" +msgstr "%s likte %s sitt innlegg" + +#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 +#: ../../mod/notifications.php:478 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s mislikte %s sitt innlegg" + +#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 +#: ../../mod/notifications.php:492 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s er nå venner med %s" + +#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 +#, php-format +msgid "%s created a new post" +msgstr "%s skrev et nytt innlegg" + +#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 +#: ../../mod/notifications.php:501 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s kommenterte på %s sitt innlegg" + +#: ../../mod/notifications.php:302 +msgid "No more network notifications." +msgstr "Ingen flere nettverksvarslinger." + +#: ../../mod/notifications.php:306 +msgid "Network Notifications" +msgstr "Nettverksvarslinger" + +#: ../../mod/notifications.php:332 ../../mod/notify.php:61 +msgid "No more system notifications." +msgstr "" + +#: ../../mod/notifications.php:336 ../../mod/notify.php:65 +msgid "System Notifications" +msgstr "Systemvarsler" + +#: ../../mod/notifications.php:427 +msgid "No more personal notifications." +msgstr "Ingen flere personlige varsler." + +#: ../../mod/notifications.php:431 +msgid "Personal Notifications" +msgstr "Personlige varsler" + +#: ../../mod/notifications.php:508 +msgid "No more home notifications." +msgstr "Ingen flere hjemmevarsler." + +#: ../../mod/notifications.php:512 +msgid "Home Notifications" +msgstr "Hjemmevarsler" + +#: ../../mod/photos.php:51 ../../boot.php:1957 +msgid "Photo Albums" +msgstr "Fotoalbum" + +#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1058 +#: ../../mod/photos.php:1183 ../../mod/photos.php:1206 +#: ../../mod/photos.php:1736 ../../mod/photos.php:1748 +#: ../../view/theme/diabook/theme.php:492 +msgid "Contact Photos" +msgstr "Kontaktbilder" + +#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795 +msgid "Upload New Photos" +msgstr "Last opp nye bilder" + +#: ../../mod/photos.php:143 +msgid "Contact information unavailable" +msgstr "Kontaktinformasjon utilgjengelig" + +#: ../../mod/photos.php:164 +msgid "Album not found." +msgstr "Album ble ikke funnet." + +#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200 +msgid "Delete Album" +msgstr "Slett album" + +#: ../../mod/photos.php:197 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "" + +#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502 +msgid "Delete Photo" +msgstr "Slett bilde" + +#: ../../mod/photos.php:285 +msgid "Do you really want to delete this photo?" +msgstr "" + +#: ../../mod/photos.php:656 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "" + +#: ../../mod/photos.php:656 +msgid "a photo" +msgstr "" + +#: ../../mod/photos.php:761 +msgid "Image exceeds size limit of " +msgstr "Bilde overstiger størrelsesbegrensningen på " + +#: ../../mod/photos.php:769 +msgid "Image file is empty." +msgstr "Bildefilen er tom." + +#: ../../mod/photos.php:924 +msgid "No photos selected" +msgstr "Ingen bilder er valgt" + +#: ../../mod/photos.php:1088 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "" + +#: ../../mod/photos.php:1123 +msgid "Upload Photos" +msgstr "Last opp bilder" + +#: ../../mod/photos.php:1127 ../../mod/photos.php:1195 +msgid "New album name: " +msgstr "Nytt albumnavn:" + +#: ../../mod/photos.php:1128 +msgid "or existing album name: " +msgstr "eller eksisterende albumnavn:" + +#: ../../mod/photos.php:1129 +msgid "Do not show a status post for this upload" +msgstr "Ikke vis statusoppdatering for denne opplastingen" + +#: ../../mod/photos.php:1131 ../../mod/photos.php:1497 +msgid "Permissions" +msgstr "Tillatelser" + +#: ../../mod/photos.php:1142 +msgid "Private Photo" +msgstr "" + +#: ../../mod/photos.php:1143 +msgid "Public Photo" +msgstr "" + +#: ../../mod/photos.php:1210 +msgid "Edit Album" +msgstr "Endre album" + +#: ../../mod/photos.php:1216 +msgid "Show Newest First" +msgstr "" + +#: ../../mod/photos.php:1218 +msgid "Show Oldest First" +msgstr "" + +#: ../../mod/photos.php:1251 ../../mod/photos.php:1778 +msgid "View Photo" +msgstr "Vis bilde" + +#: ../../mod/photos.php:1286 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Tilgang nektet. Tilgang til dette elementet kan være begrenset." + +#: ../../mod/photos.php:1288 +msgid "Photo not available" +msgstr "Bilde ikke tilgjengelig" + +#: ../../mod/photos.php:1344 +msgid "View photo" +msgstr "Vis foto" + +#: ../../mod/photos.php:1344 +msgid "Edit photo" +msgstr "Endre bilde" + +#: ../../mod/photos.php:1345 +msgid "Use as profile photo" +msgstr "Bruk som profilbilde" + +#: ../../mod/photos.php:1351 ../../mod/content.php:643 +#: ../../object/Item.php:113 +msgid "Private Message" +msgstr "Privat melding" + +#: ../../mod/photos.php:1370 +msgid "View Full Size" +msgstr "Vis i full størrelse" + +#: ../../mod/photos.php:1444 +msgid "Tags: " +msgstr "Tagger:" + +#: ../../mod/photos.php:1447 +msgid "[Remove any tag]" +msgstr "[Fjern en tag]" + +#: ../../mod/photos.php:1487 +msgid "Rotate CW (right)" +msgstr "" + +#: ../../mod/photos.php:1488 +msgid "Rotate CCW (left)" +msgstr "" + +#: ../../mod/photos.php:1490 +msgid "New album name" +msgstr "Nytt albumnavn" + +#: ../../mod/photos.php:1493 +msgid "Caption" +msgstr "Overskrift" + +#: ../../mod/photos.php:1495 +msgid "Add a Tag" +msgstr "Legg til tag" + +#: ../../mod/photos.php:1499 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: ../../mod/photos.php:1508 +msgid "Private photo" +msgstr "" + +#: ../../mod/photos.php:1509 +msgid "Public photo" +msgstr "" + +#: ../../mod/photos.php:1529 ../../mod/content.php:707 +#: ../../object/Item.php:232 +msgid "I like this (toggle)" +msgstr "Jeg liker dette (skru på/av)" + +#: ../../mod/photos.php:1530 ../../mod/content.php:708 +#: ../../object/Item.php:233 +msgid "I don't like this (toggle)" +msgstr "Jeg liker ikke dette (skru på/av)" + +#: ../../mod/photos.php:1549 ../../mod/photos.php:1593 +#: ../../mod/photos.php:1676 ../../mod/content.php:730 +#: ../../object/Item.php:650 +msgid "This is you" +msgstr "Dette er deg" + +#: ../../mod/photos.php:1551 ../../mod/photos.php:1595 +#: ../../mod/photos.php:1678 ../../mod/content.php:732 +#: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:670 +msgid "Comment" +msgstr "Kommentar" + +#: ../../mod/photos.php:1793 +msgid "Recent Photos" +msgstr "Nye bilder" + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Sjekkliste for nye medlemmer" + +#: ../../mod/newmember.php:12 +msgid "" +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." +msgstr "" + +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "" + +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "" + +#: ../../mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "" + +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "" + +#: ../../mod/newmember.php:26 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "" + +#: ../../mod/newmember.php:28 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "Se over de andre innstillingene, særlig personverninnstillingene. En katalogoppføring som ikke er publisert er som å ha skjult telefonnummer. Generelt, så bør du antakelig publisere oppføringen, med mindre dine venner eller potensielle venner vet nøyaktig hvordan de skal finne deg." + +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "Last opp profilbilde" + +#: ../../mod/newmember.php:36 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "Last opp et profilbilde hvis du ikke har gjort det allerede. Studier viser at folk som har ekte bilde av seg selv har ti ganger større sannsynlighet for å få venner enn folk som ikke gjør det." + +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "" + +#: ../../mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Du kan endre standardprofilen din slik du ønsker. Se over innstillingene som lar deg skjule vennelisten og skjule profilen fra ukjente besøkende." + +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "" + +#: ../../mod/newmember.php:40 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "Legg til noen offentlige nøkkelord til standardprofilen din som beskriver dine interesser. Det kan hende vi klarer å finne andre folk med liknende interesser og foreslå vennskap." + +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "" + +#: ../../mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Tillat Facebook-koblingen hvis du har en Facebook-konto og vi vil (valgfritt) importere alle dine Facebook-venner og samtaler." + +#: ../../mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "" + +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "" + +#: ../../mod/newmember.php:56 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "" + +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "" + +#: ../../mod/newmember.php:58 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "" + +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "" + +#: ../../mod/newmember.php:60 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "Katalog-siden lar deg finne andre folk i dette nettverket eller andre forente nettsteder. Se etter en Connect eller Follow lenke på profilsiden deres. Oppgi din egen identitetsadresse hvis du blir forespurt om det." + +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "" + +#: ../../mod/newmember.php:62 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "" + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "" + +#: ../../mod/newmember.php:70 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "Når du har fått noen venner, så kan du organisere dem i private samtalegrupper i sidefeltet på Kontakt-siden din, og deretter kan du samhandle med hver gruppe privat på din Nettverk-side." + +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "" + +#: ../../mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "" + +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "" + +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Våre hjelpesider kan leses for flere detaljer og ressurser om andre egenskaper ved programmet." + +#: ../../mod/profile.php:21 ../../boot.php:1325 +msgid "Requested profile is not available." +msgstr "Profil utilgjengelig." + +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Tips til nye medlemmer" + +#: ../../mod/install.php:117 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: ../../mod/install.php:123 +msgid "Could not connect to database." +msgstr "" + +#: ../../mod/install.php:127 +msgid "Could not create table." +msgstr "" + +#: ../../mod/install.php:133 +msgid "Your Friendica site database has been installed." +msgstr "" + +#: ../../mod/install.php:138 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Du må kanskje importere filen \"database.sql\" manuelt ved hjelp av phpmyadmin eller mysql." + +#: ../../mod/install.php:139 ../../mod/install.php:206 +#: ../../mod/install.php:521 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Vennligst se filen \"INSTALL.txt\"." + +#: ../../mod/install.php:203 +msgid "System check" +msgstr "" + +#: ../../mod/install.php:208 +msgid "Check again" +msgstr "" + +#: ../../mod/install.php:227 +msgid "Database connection" +msgstr "" + +#: ../../mod/install.php:228 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "" + +#: ../../mod/install.php:229 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Vennligst kontakt din tilbyder eller administrator hvis du har spørsmål til disse innstillingene." + +#: ../../mod/install.php:230 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Databasen du oppgir nedenfor må finnes. Hvis ikke, vennligst opprett den før du fortsetter." + +#: ../../mod/install.php:234 +msgid "Database Server Name" +msgstr "Databasetjenerens navn" + +#: ../../mod/install.php:235 +msgid "Database Login Name" +msgstr "Database brukernavn" + +#: ../../mod/install.php:236 +msgid "Database Login Password" +msgstr "Database passord" + +#: ../../mod/install.php:237 +msgid "Database Name" +msgstr "Databasenavn" + +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "Site administrator email address" +msgstr "" + +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "" + +#: ../../mod/install.php:242 ../../mod/install.php:280 +msgid "Please select a default timezone for your website" +msgstr "Vennligst velg en standard tidssone for ditt nettsted" + +#: ../../mod/install.php:267 +msgid "Site settings" +msgstr "" + +#: ../../mod/install.php:321 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Fant ikke en kommandolinjeversjon av PHP i webtjenerens PATH." + +#: ../../mod/install.php:322 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +msgstr "" + +#: ../../mod/install.php:326 +msgid "PHP executable path" +msgstr "" + +#: ../../mod/install.php:326 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: ../../mod/install.php:331 +msgid "Command line PHP" +msgstr "" + +#: ../../mod/install.php:340 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" + +#: ../../mod/install.php:341 +msgid "Found PHP version: " +msgstr "" + +#: ../../mod/install.php:343 +msgid "PHP cli binary" +msgstr "" + +#: ../../mod/install.php:354 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" aktivert." + +#: ../../mod/install.php:355 +msgid "This is required for message delivery to work." +msgstr "Dette er nødvendig for at meldingslevering skal virke." + +#: ../../mod/install.php:357 +msgid "PHP register_argc_argv" +msgstr "" + +#: ../../mod/install.php:378 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler" + +#: ../../mod/install.php:379 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "For kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: ../../mod/install.php:381 +msgid "Generate encryption keys" +msgstr "" + +#: ../../mod/install.php:388 +msgid "libCurl PHP module" +msgstr "" + +#: ../../mod/install.php:389 +msgid "GD graphics PHP module" +msgstr "" + +#: ../../mod/install.php:390 +msgid "OpenSSL PHP module" +msgstr "" + +#: ../../mod/install.php:391 +msgid "mysqli PHP module" +msgstr "" + +#: ../../mod/install.php:392 +msgid "mb_string PHP module" +msgstr "" + +#: ../../mod/install.php:397 ../../mod/install.php:399 +msgid "Apache mod_rewrite module" +msgstr "" + +#: ../../mod/install.php:397 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Feil: Modulen mod-rewrite for Apache-webtjeneren er påkrevet, men er ikke installert." + +#: ../../mod/install.php:405 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Feil: libCURL PHP-modulen er påkrevet, men er ikke installert." + +#: ../../mod/install.php:409 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Feil: GD graphics PHP-modulen med JPEG-støtte er påkrevet, men er ikke installert." + +#: ../../mod/install.php:413 +msgid "Error: openssl PHP module required but not installed." +msgstr "Feil: openssl PHP-modulen er påkrevet, men er ikke installert." + +#: ../../mod/install.php:417 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Feil: mysqli PHP-modulen er påkrevet, men er ikke installert." + +#: ../../mod/install.php:421 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Feil: mb_string PHP-modulen er påkrevet men ikke installert." + +#: ../../mod/install.php:438 +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 "Web-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette." + +#: ../../mod/install.php:439 +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 "Dette skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje ikke kan skrive filer i din mappe - selv om du kan." + +#: ../../mod/install.php:440 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "" + +#: ../../mod/install.php:441 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "" + +#: ../../mod/install.php:444 +msgid ".htconfig.php is writable" +msgstr "" + +#: ../../mod/install.php:454 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "" + +#: ../../mod/install.php:455 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "" + +#: ../../mod/install.php:456 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "" + +#: ../../mod/install.php:457 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "" + +#: ../../mod/install.php:460 +msgid "view/smarty3 is writable" +msgstr "" + +#: ../../mod/install.php:472 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "" + +#: ../../mod/install.php:474 +msgid "Url rewrite is working" +msgstr "" + +#: ../../mod/install.php:484 +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 "Filen \".htconfig.php\" med databasekonfigurasjonen kunne ikke bli skrevet. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i roten på din web-tjener." + +#: ../../mod/install.php:508 +msgid "Errors encountered creating database tables." +msgstr "Feil oppstod under opprettelsen av databasetabeller." + +#: ../../mod/install.php:519 +msgid "

What next

" +msgstr "" + +#: ../../mod/install.php:520 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering." + +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Innlegg vellykket." + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID protokollfeil. Ingen ID kom i retur." + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Kontoen ble ikke funnet og OpenID-registrering er ikke tillat på dette nettstedet." + +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Bildet ble lastet opp, men beskjæringen mislyktes." + +#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 +#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Reduksjon av bildestørrelse [%s] mislyktes." + +#: ../../mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Shift-last-siden-på-nytt eller slett mellomlagret i nettleseren hvis det nye bildet ikke vises umiddelbart." + +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Mislyktes med å behandle bilde" + +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Last opp fil:" + +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "" + +#: ../../mod/profile_photo.php:245 +msgid "Upload" +msgstr "Last opp" + +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "hopp over dette steget" + +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "velg et bilde fra dine fotoalbum" + +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Beskjær bilde" + +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Vennligst juster beskjæringen av bildet for optimal visning." + +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Behandling ferdig" + +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Bilde ble lastet opp." + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Ikke tilgjengelig." + +#: ../../mod/content.php:626 ../../object/Item.php:362 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/content.php:707 ../../object/Item.php:232 +msgid "like" +msgstr "liker" + +#: ../../mod/content.php:708 ../../object/Item.php:233 +msgid "dislike" +msgstr "liker ikke" + +#: ../../mod/content.php:710 ../../object/Item.php:235 +msgid "Share this" +msgstr "Del denne" + +#: ../../mod/content.php:710 ../../object/Item.php:235 +msgid "share" +msgstr "Del" + +#: ../../mod/content.php:734 ../../object/Item.php:654 +msgid "Bold" +msgstr "uthevet" + +#: ../../mod/content.php:735 ../../object/Item.php:655 +msgid "Italic" +msgstr "kursiv" + +#: ../../mod/content.php:736 ../../object/Item.php:656 +msgid "Underline" +msgstr "understrek" + +#: ../../mod/content.php:737 ../../object/Item.php:657 +msgid "Quote" +msgstr "sitat" + +#: ../../mod/content.php:738 ../../object/Item.php:658 +msgid "Code" +msgstr "kode" + +#: ../../mod/content.php:739 ../../object/Item.php:659 +msgid "Image" +msgstr "Bilde/fotografi" + +#: ../../mod/content.php:740 ../../object/Item.php:660 +msgid "Link" +msgstr "lenke" + +#: ../../mod/content.php:741 ../../object/Item.php:661 +msgid "Video" +msgstr "video" + +#: ../../mod/content.php:776 ../../object/Item.php:211 +msgid "add star" +msgstr "legg til stjerne" + +#: ../../mod/content.php:777 ../../object/Item.php:212 +msgid "remove star" +msgstr "fjern stjerne" + +#: ../../mod/content.php:778 ../../object/Item.php:213 +msgid "toggle star status" +msgstr "veksle stjernestatus" + +#: ../../mod/content.php:781 ../../object/Item.php:216 +msgid "starred" +msgstr "Med stjerne" + +#: ../../mod/content.php:782 ../../object/Item.php:221 +msgid "add tag" +msgstr "Legg til merkelapp" + +#: ../../mod/content.php:786 ../../object/Item.php:130 +msgid "save to folder" +msgstr "lagre i mappe" + +#: ../../mod/content.php:877 ../../object/Item.php:308 +msgid "to" +msgstr "til" + +#: ../../mod/content.php:878 ../../object/Item.php:310 +msgid "Wall-to-Wall" +msgstr "vegg-til-vegg" + +#: ../../mod/content.php:879 ../../object/Item.php:311 +msgid "via Wall-To-Wall:" +msgstr "via vegg-til-vegg" + +#: ../../object/Item.php:92 +msgid "This entry was edited" +msgstr "" + +#: ../../object/Item.php:309 +msgid "via" +msgstr "via" + +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/diabook/config.php:154 +#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 +msgid "Theme settings" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:84 +#: ../../view/theme/diabook/config.php:155 +#: ../../view/theme/dispy/config.php:73 +msgid "Set font-size for posts and comments" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:86 +#: ../../view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "" + +#: ../../view/theme/diabook/config.php:156 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "" + +#: ../../view/theme/diabook/config.php:157 +msgid "Set resolution for middle column" +msgstr "" + +#: ../../view/theme/diabook/config.php:158 +msgid "Set color scheme" +msgstr "" + +#: ../../view/theme/diabook/config.php:159 +#: ../../view/theme/diabook/theme.php:609 +msgid "Set twitter search term" +msgstr "" + +#: ../../view/theme/diabook/config.php:160 +msgid "Set zoomfactor for Earth Layer" +msgstr "" + +#: ../../view/theme/diabook/config.php:161 +#: ../../view/theme/diabook/theme.php:578 +msgid "Set longitude (X) for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/config.php:162 +#: ../../view/theme/diabook/theme.php:579 +msgid "Set latitude (Y) for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/config.php:163 +#: ../../view/theme/diabook/theme.php:94 +#: ../../view/theme/diabook/theme.php:537 +#: ../../view/theme/diabook/theme.php:632 +msgid "Community Pages" +msgstr "" + +#: ../../view/theme/diabook/config.php:164 +#: ../../view/theme/diabook/theme.php:572 +#: ../../view/theme/diabook/theme.php:633 +msgid "Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/config.php:165 +#: ../../view/theme/diabook/theme.php:384 +#: ../../view/theme/diabook/theme.php:634 +msgid "Community Profiles" +msgstr "" + +#: ../../view/theme/diabook/config.php:166 +#: ../../view/theme/diabook/theme.php:592 +#: ../../view/theme/diabook/theme.php:635 +msgid "Help or @NewHere ?" +msgstr "" + +#: ../../view/theme/diabook/config.php:167 +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:636 +msgid "Connect Services" +msgstr "" + +#: ../../view/theme/diabook/config.php:168 +#: ../../view/theme/diabook/theme.php:516 +#: ../../view/theme/diabook/theme.php:637 +msgid "Find Friends" +msgstr "" + +#: ../../view/theme/diabook/config.php:169 +msgid "Last tweets" +msgstr "" + +#: ../../view/theme/diabook/config.php:170 +#: ../../view/theme/diabook/theme.php:405 +#: ../../view/theme/diabook/theme.php:639 +msgid "Last users" +msgstr "" + +#: ../../view/theme/diabook/config.php:171 +#: ../../view/theme/diabook/theme.php:479 +#: ../../view/theme/diabook/theme.php:640 +msgid "Last photos" +msgstr "" + +#: ../../view/theme/diabook/config.php:172 +#: ../../view/theme/diabook/theme.php:434 +#: ../../view/theme/diabook/theme.php:641 +msgid "Last likes" +msgstr "" + +#: ../../view/theme/diabook/theme.php:89 +msgid "Your contacts" +msgstr "" + +#: ../../view/theme/diabook/theme.php:517 +msgid "Local Directory" +msgstr "" + +#: ../../view/theme/diabook/theme.php:577 +msgid "Set zoomfactor for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:638 +msgid "Last Tweets" +msgstr "" + +#: ../../view/theme/diabook/theme.php:630 +msgid "Show/hide boxes at right-hand column:" +msgstr "" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "" + +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "" + +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "" + +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "" + +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "" + +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "" + +#: ../../index.php:405 +msgid "toggle mobile" +msgstr "Velg mobilvisning" + +#: ../../boot.php:669 msgid "Delete this item?" msgstr "Slett dette elementet?" -#: ../../boot.php:610 +#: ../../boot.php:672 msgid "show fewer" msgstr "" -#: ../../boot.php:819 +#: ../../boot.php:999 #, php-format msgid "Update %s failed. See error logs." msgstr "Oppdatering %s mislyktes. Se feilloggene." -#: ../../boot.php:821 +#: ../../boot.php:1001 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../boot.php:922 +#: ../../boot.php:1111 msgid "Create a New Account" msgstr "Lag en ny konto" -#: ../../boot.php:951 +#: ../../boot.php:1139 msgid "Nickname or Email address: " msgstr "Kallenavn eller epostadresse: " -#: ../../boot.php:952 +#: ../../boot.php:1140 msgid "Password: " msgstr "Passord: " -#: ../../boot.php:953 +#: ../../boot.php:1141 msgid "Remember me" msgstr "" -#: ../../boot.php:956 +#: ../../boot.php:1144 msgid "Or login using OpenID: " msgstr "" -#: ../../boot.php:962 +#: ../../boot.php:1150 msgid "Forgot your password?" msgstr "Glemt passordet?" -#: ../../boot.php:1087 +#: ../../boot.php:1153 +msgid "Website Terms of Service" +msgstr "" + +#: ../../boot.php:1154 +msgid "terms of service" +msgstr "" + +#: ../../boot.php:1156 +msgid "Website Privacy Policy" +msgstr "" + +#: ../../boot.php:1157 +msgid "privacy policy" +msgstr "" + +#: ../../boot.php:1286 msgid "Requested account is not available." msgstr "" -#: ../../boot.php:1164 +#: ../../boot.php:1365 ../../boot.php:1469 msgid "Edit profile" msgstr "Rediger profil" -#: ../../boot.php:1230 +#: ../../boot.php:1431 msgid "Message" msgstr "" -#: ../../boot.php:1238 +#: ../../boot.php:1439 msgid "Manage/edit profiles" msgstr "Behandle/endre profiler" -#: ../../boot.php:1352 ../../boot.php:1438 +#: ../../boot.php:1568 ../../boot.php:1654 msgid "g A l F d" msgstr "" -#: ../../boot.php:1353 ../../boot.php:1439 +#: ../../boot.php:1569 ../../boot.php:1655 msgid "F d" msgstr "" -#: ../../boot.php:1398 ../../boot.php:1479 +#: ../../boot.php:1614 ../../boot.php:1695 msgid "[today]" msgstr "[idag]" -#: ../../boot.php:1410 +#: ../../boot.php:1626 msgid "Birthday Reminders" msgstr "Fødselsdager" -#: ../../boot.php:1411 +#: ../../boot.php:1627 msgid "Birthdays this week:" msgstr "Fødselsdager denne uken:" -#: ../../boot.php:1472 +#: ../../boot.php:1688 msgid "[No description]" msgstr "[Ingen beskrivelse]" -#: ../../boot.php:1490 +#: ../../boot.php:1706 msgid "Event Reminders" msgstr "Påminnelser om hendelser" -#: ../../boot.php:1491 +#: ../../boot.php:1707 msgid "Events this week:" msgstr "Hendelser denne uken:" -#: ../../boot.php:1727 +#: ../../boot.php:1943 msgid "Status Messages and Posts" msgstr "" -#: ../../boot.php:1734 +#: ../../boot.php:1950 msgid "Profile Details" msgstr "" -#: ../../boot.php:1751 +#: ../../boot.php:1961 ../../boot.php:1964 +msgid "Videos" +msgstr "" + +#: ../../boot.php:1974 msgid "Events and Calendar" msgstr "" -#: ../../boot.php:1758 +#: ../../boot.php:1981 msgid "Only You Can See This" msgstr "" - -#: ../../object/Item.php:237 -msgid "via" -msgstr "" - -#: ../../index.php:398 -msgid "toggle mobile" -msgstr "" - -#: ../../addon.old/bg/bg.php:51 -msgid "Bg settings updated." -msgstr "" - -#: ../../addon.old/bg/bg.php:82 -msgid "Bg Settings" -msgstr "" - -#: ../../addon.old/drpost/drpost.php:35 -msgid "Post to Drupal" -msgstr "" - -#: ../../addon.old/drpost/drpost.php:72 -msgid "Drupal Post Settings" -msgstr "" - -#: ../../addon.old/drpost/drpost.php:74 -msgid "Enable Drupal Post Plugin" -msgstr "" - -#: ../../addon.old/drpost/drpost.php:79 -msgid "Drupal username" -msgstr "" - -#: ../../addon.old/drpost/drpost.php:84 -msgid "Drupal password" -msgstr "" - -#: ../../addon.old/drpost/drpost.php:89 -msgid "Post Type - article,page,or blog" -msgstr "" - -#: ../../addon.old/drpost/drpost.php:94 -msgid "Drupal site URL" -msgstr "" - -#: ../../addon.old/drpost/drpost.php:99 -msgid "Drupal site uses clean URLS" -msgstr "" - -#: ../../addon.old/drpost/drpost.php:104 -msgid "Post to Drupal by default" -msgstr "" - -#: ../../addon.old/oembed.old/oembed.php:30 -msgid "OEmbed settings updated" -msgstr "OEmbed-innstillingene er oppdatert" - -#: ../../addon.old/oembed.old/oembed.php:43 -msgid "Use OEmbed for YouTube videos" -msgstr "Bruk OEmbed til YouTube-videoer" - -#: ../../addon.old/oembed.old/oembed.php:71 -msgid "URL to embed:" -msgstr "URL som skal innebygges:" diff --git a/view/nb-no/strings.php b/view/nb-no/strings.php index 8f10fcea14..694d3fa133 100644 --- a/view/nb-no/strings.php +++ b/view/nb-no/strings.php @@ -5,1660 +5,25 @@ function string_plural_select_nb_no($n){ return ($n != 1);; }} ; -$a->strings["Post successful."] = "Innlegg vellykket."; -$a->strings["[Embedded content - reload page to view]"] = "[Innebygget innhold - hent siden på nytt for å se det]"; -$a->strings["Contact settings applied."] = "Kontaktinnstillinger i bruk."; -$a->strings["Contact update failed."] = "Kontaktoppdatering mislyktes."; -$a->strings["Permission denied."] = "Ingen tilgang."; -$a->strings["Contact not found."] = "Kontakt ikke funnet."; -$a->strings["Repair Contact Settings"] = "Reparer kontaktinnstillinger"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ADVARSEL: Dette er meget avansert og hvis du skriver feil informasjon her, så kan kommunikasjonen med denne kontakten slutte å virke."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Vennligst bruk Tilbake-knappen i nettleseren din hvis du er usikker på hva du bør gjøre på denne siden."; -$a->strings["Return to contact editor"] = ""; -$a->strings["Name"] = "Navn"; -$a->strings["Account Nickname"] = "Konto Kallenavn"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Merkelappnavn - overstyrer Navn/Kallenavn"; -$a->strings["Account URL"] = "Konto URL"; -$a->strings["Friend Request URL"] = "Venneforespørsel URL"; -$a->strings["Friend Confirm URL"] = "Vennebekreftelse URL"; -$a->strings["Notification Endpoint URL"] = "Endepunkt URL for beskjed"; -$a->strings["Poll/Feed URL"] = "Poll/Feed URL"; -$a->strings["New photo from this URL"] = "Nytt bilde fra denne URL-en"; -$a->strings["Submit"] = "Lagre"; -$a->strings["Help:"] = "Hjelp:"; -$a->strings["Help"] = "Hjelp"; -$a->strings["Not Found"] = "Ikke funnet"; -$a->strings["Page not found."] = "Fant ikke siden."; -$a->strings["File exceeds size limit of %d"] = "Filstørrelsen er større enn begrensning på %d"; -$a->strings["File upload failed."] = "Opplasting av filen mislyktes."; -$a->strings["Friend suggestion sent."] = "Venneforslag sendt."; -$a->strings["Suggest Friends"] = "Foreslå venner"; -$a->strings["Suggest a friend for %s"] = "Foreslå en venn for %s"; -$a->strings["Event title and start time are required."] = ""; -$a->strings["l, F j"] = ""; -$a->strings["Edit event"] = "Rediger hendelse"; -$a->strings["link to source"] = "lenke til kilde"; -$a->strings["Events"] = "Hendelser"; -$a->strings["Create New Event"] = "Lag ny hendelse"; -$a->strings["Previous"] = "Forrige"; -$a->strings["Next"] = "Neste"; -$a->strings["hour:minute"] = "time:minutt"; -$a->strings["Event details"] = "Hendelsesdetaljer"; -$a->strings["Format is %s %s. Starting date and Title are required."] = ""; -$a->strings["Event Starts:"] = "Hendelsen starter:"; -$a->strings["Required"] = ""; -$a->strings["Finish date/time is not known or not relevant"] = "Avslutningsdato/-tid er ukjent eller ikke relevant"; -$a->strings["Event Finishes:"] = "Hendelsen slutter:"; -$a->strings["Adjust for viewer timezone"] = "Tilpass til iakttakerens tidssone"; -$a->strings["Description:"] = "Beskrivelse:"; -$a->strings["Location:"] = "Plassering:"; -$a->strings["Title:"] = ""; -$a->strings["Share this event"] = "Del denne hendelsen"; -$a->strings["Cancel"] = "Avbryt"; -$a->strings["Tag removed"] = "Fjernet tag"; -$a->strings["Remove Item Tag"] = "Fjern tag"; -$a->strings["Select a tag to remove: "] = "Velg en tag å fjerne:"; -$a->strings["Remove"] = "Slett"; -$a->strings["%1\$s welcomes %2\$s"] = ""; -$a->strings["Authorize application connection"] = "Tillat forbindelse til program"; -$a->strings["Return to your app and insert this Securty Code:"] = "Gå tilbake til din app og legg inn denne sikkerhetskoden:"; -$a->strings["Please login to continue."] = "Vennligst logg inn for å fortsette."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate at dette programmet får tilgang til dine innlegg og kontakter, og/eller kan opprette nye innlegg for deg?"; -$a->strings["Yes"] = "Ja"; -$a->strings["No"] = "Nei"; -$a->strings["Photo Albums"] = "Fotoalbum"; -$a->strings["Contact Photos"] = "Kontaktbilder"; -$a->strings["Upload New Photos"] = "Last opp nye bilder"; -$a->strings["everybody"] = "alle"; -$a->strings["Contact information unavailable"] = "Kontaktinformasjon utilgjengelig"; -$a->strings["Profile Photos"] = "Profilbilder"; -$a->strings["Album not found."] = "Album ble ikke funnet."; -$a->strings["Delete Album"] = "Slett album"; -$a->strings["Delete Photo"] = "Slett bilde"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; -$a->strings["a photo"] = ""; -$a->strings["Image exceeds size limit of "] = "Bilde overstiger størrelsesbegrensningen på "; -$a->strings["Image file is empty."] = "Bildefilen er tom."; -$a->strings["Unable to process image."] = "Ikke i stand til å behandle bildet."; -$a->strings["Image upload failed."] = "Mislyktes med å laste opp bilde."; -$a->strings["Public access denied."] = "Offentlig tilgang ikke tillatt."; -$a->strings["No photos selected"] = "Ingen bilder er valgt"; -$a->strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset."; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = ""; -$a->strings["Upload Photos"] = "Last opp bilder"; -$a->strings["New album name: "] = "Nytt albumnavn:"; -$a->strings["or existing album name: "] = "eller eksisterende albumnavn:"; -$a->strings["Do not show a status post for this upload"] = "Ikke vis statusoppdatering for denne opplastingen"; -$a->strings["Permissions"] = "Tillatelser"; -$a->strings["Edit Album"] = "Endre album"; -$a->strings["Show Newest First"] = ""; -$a->strings["Show Oldest First"] = ""; -$a->strings["View Photo"] = "Vis bilde"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Tilgang nektet. Tilgang til dette elementet kan være begrenset."; -$a->strings["Photo not available"] = "Bilde ikke tilgjengelig"; -$a->strings["View photo"] = "Vis foto"; -$a->strings["Edit photo"] = "Endre bilde"; -$a->strings["Use as profile photo"] = "Bruk som profilbilde"; -$a->strings["Private Message"] = "Privat melding"; -$a->strings["View Full Size"] = "Vis i full størrelse"; -$a->strings["Tags: "] = "Tagger:"; -$a->strings["[Remove any tag]"] = "[Fjern en tag]"; -$a->strings["Rotate CW (right)"] = ""; -$a->strings["Rotate CCW (left)"] = ""; -$a->strings["New album name"] = "Nytt albumnavn"; -$a->strings["Caption"] = "Overskrift"; -$a->strings["Add a Tag"] = "Legg til tag"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["I like this (toggle)"] = "Jeg liker dette (skru på/av)"; -$a->strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru på/av)"; -$a->strings["Share"] = "Del"; -$a->strings["Please wait"] = "Vennligst vent"; -$a->strings["This is you"] = "Dette er deg"; -$a->strings["Comment"] = "Kommentar"; -$a->strings["Preview"] = ""; -$a->strings["Delete"] = "Slett"; -$a->strings["View Album"] = "Vis album"; -$a->strings["Recent Photos"] = "Nye bilder"; -$a->strings["Not available."] = "Ikke tilgjengelig."; -$a->strings["Community"] = "Fellesskap"; -$a->strings["No results."] = "Fant ikke noe."; -$a->strings["This is Friendica, version"] = ""; -$a->strings["running at web location"] = "kjører på web-plassering"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = ""; -$a->strings["Bug reports and issues: please visit"] = "Feilrapporter og problemer: vennligst besøk"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = ""; -$a->strings["Installed plugins/addons/apps:"] = ""; -$a->strings["No installed plugins/addons/apps"] = "Ingen installerte plugins/tillegg/apper"; -$a->strings["Item not found"] = "Fant ikke elementet"; -$a->strings["Edit post"] = "Endre innlegg"; -$a->strings["Post to Email"] = "Innlegg til e-post"; -$a->strings["Edit"] = "Endre"; -$a->strings["Upload photo"] = "Last opp bilde"; -$a->strings["upload photo"] = ""; -$a->strings["Attach file"] = "Legg ved fil"; -$a->strings["attach file"] = ""; -$a->strings["Insert web link"] = "Sett inn web-adresse"; -$a->strings["web link"] = ""; -$a->strings["Insert video link"] = ""; -$a->strings["video link"] = ""; -$a->strings["Insert audio link"] = ""; -$a->strings["audio link"] = ""; -$a->strings["Set your location"] = "Angi din plassering"; -$a->strings["set location"] = ""; -$a->strings["Clear browser location"] = "Fjern nettleserplassering"; -$a->strings["clear location"] = ""; -$a->strings["Permission settings"] = "Tillatelser"; -$a->strings["CC: email addresses"] = "Kopi: e-postadresser"; -$a->strings["Public post"] = "Offentlig innlegg"; -$a->strings["Set title"] = "Lagre tittel"; -$a->strings["Categories (comma-separated list)"] = ""; -$a->strings["Example: bob@example.com, mary@example.com"] = "Eksempel: ola@example.com, kari@example.com"; -$a->strings["This introduction has already been accepted."] = "Denne introduksjonen har allerede blitt akseptert."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Profilstedet er ikke gyldig og inneholder ikke profilinformasjon."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Advarsel: profilstedet har ikke identifiserbart eiernavn."; -$a->strings["Warning: profile location has no profile photo."] = "Advarsel: profilstedet har ikke noe profilbilde."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "one: %d nødvendig parameter ble ikke funnet på angitt sted", - 1 => "other: %d nødvendige parametre ble ikke funnet på angitt sted", -); -$a->strings["Introduction complete."] = "Introduksjon ferdig."; -$a->strings["Unrecoverable protocol error."] = "Uopprettelig protokollfeil."; -$a->strings["Profile unavailable."] = "Profil utilgjengelig."; -$a->strings["%s has received too many connection requests today."] = "%s har mottatt for mange kontaktforespørsler idag."; -$a->strings["Spam protection measures have been invoked."] = "Tiltak mot søppelpost har blitt iverksatt."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Venner anbefales å prøve igjen om 24 timer."; -$a->strings["Invalid locator"] = "Ugyldig stedsangivelse"; -$a->strings["Invalid email address."] = ""; -$a->strings["This account has not been configured for email. Request failed."] = "Denne kontoen er ikke konfigurert for e-post. Forespørsel mislyktes."; -$a->strings["Unable to resolve your name at the provided location."] = "Ikke i stand til å avgjøre navnet ditt hos det oppgitte stedet."; -$a->strings["You have already introduced yourself here."] = "Du har allerede introdusert deg selv her."; -$a->strings["Apparently you are already friends with %s."] = "Du er visst allerede venn med %s."; -$a->strings["Invalid profile URL."] = "Ugyldig profil-URL."; -$a->strings["Disallowed profile URL."] = "Underkjent profil-URL."; -$a->strings["Failed to update contact record."] = "Mislyktes med å oppdatere kontaktposten."; -$a->strings["Your introduction has been sent."] = "Din introduksjon er sendt."; -$a->strings["Please login to confirm introduction."] = "Vennligst logg inn for å bekrefte introduksjonen."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Feil identitet er logget inn for øyeblikket. Vennligst logg inn i denne profilen."; -$a->strings["Hide this contact"] = ""; -$a->strings["Welcome home %s."] = "Velkommen hjem %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s."; -$a->strings["Confirm"] = "Bekreft"; -$a->strings["[Name Withheld]"] = "[Navnet tilbakeholdt]"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = ""; -$a->strings["Connect as an email follower (Coming soon)"] = ""; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = ""; -$a->strings["Friend/Connection Request"] = "Venne-/Koblings-forespørsel"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Eksempler: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Vennligst svar på følgende:"; -$a->strings["Does %s know you?"] = "Kjenner %s deg?"; -$a->strings["Add a personal note:"] = "Legg til en personlig melding:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federeated Social Web"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = ""; -$a->strings["Your Identity Address:"] = "Din identitetsadresse:"; -$a->strings["Submit Request"] = "Send forespørsel"; -$a->strings["Account settings"] = "Kontoinnstillinger"; -$a->strings["Display settings"] = ""; -$a->strings["Connector settings"] = "Koblingsinnstillinger"; -$a->strings["Plugin settings"] = "Tilleggsinnstillinger"; -$a->strings["Connected apps"] = "Tilkoblede programmer"; -$a->strings["Export personal data"] = "Eksporter personlige data"; -$a->strings["Remove account"] = ""; -$a->strings["Settings"] = "Innstillinger"; -$a->strings["Export account"] = ""; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = ""; -$a->strings["Export all"] = ""; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = ""; -$a->strings["Friendica Social Communications Server - Setup"] = ""; -$a->strings["Could not connect to database."] = ""; -$a->strings["Could not create table."] = ""; -$a->strings["Your Friendica site database has been installed."] = ""; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Du må kanskje importere filen \"database.sql\" manuelt ved hjelp av phpmyadmin eller mysql."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Vennligst se filen \"INSTALL.txt\"."; -$a->strings["System check"] = ""; -$a->strings["Check again"] = ""; -$a->strings["Database connection"] = ""; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = ""; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vennligst kontakt din tilbyder eller administrator hvis du har spørsmål til disse innstillingene."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du oppgir nedenfor må finnes. Hvis ikke, vennligst opprett den før du fortsetter."; -$a->strings["Database Server Name"] = "Databasetjenerens navn"; -$a->strings["Database Login Name"] = "Database brukernavn"; -$a->strings["Database Login Password"] = "Database passord"; -$a->strings["Database Name"] = "Databasenavn"; -$a->strings["Site administrator email address"] = ""; -$a->strings["Your account email address must match this in order to use the web admin panel."] = ""; -$a->strings["Please select a default timezone for your website"] = "Vennligst velg en standard tidssone for ditt nettsted"; -$a->strings["Site settings"] = ""; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Fant ikke en kommandolinjeversjon av PHP i webtjenerens PATH."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = ""; -$a->strings["PHP executable path"] = ""; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; -$a->strings["Command line PHP"] = ""; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" aktivert."; -$a->strings["This is required for message delivery to work."] = "Dette er nødvendig for at meldingslevering skal virke."; -$a->strings["PHP register_argc_argv"] = ""; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "For kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = ""; -$a->strings["libCurl PHP module"] = ""; -$a->strings["GD graphics PHP module"] = ""; -$a->strings["OpenSSL PHP module"] = ""; -$a->strings["mysqli PHP module"] = ""; -$a->strings["mb_string PHP module"] = ""; -$a->strings["Apache mod_rewrite module"] = ""; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Feil: Modulen mod-rewrite for Apache-webtjeneren er påkrevet, men er ikke installert."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Feil: libCURL PHP-modulen er påkrevet, men er ikke installert."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Feil: GD graphics PHP-modulen med JPEG-støtte er påkrevet, men er ikke installert."; -$a->strings["Error: openssl PHP module required but not installed."] = "Feil: openssl PHP-modulen er påkrevet, men er ikke installert."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Feil: mysqli PHP-modulen er påkrevet, men er ikke installert."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Feil: mb_string PHP-modulen er påkrevet men ikke installert."; -$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."] = "Web-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette."; -$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."] = "Dette skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje ikke kan skrive filer i din mappe - selv om du kan."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = ""; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = ""; -$a->strings[".htconfig.php is writable"] = ""; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; -$a->strings["Url rewrite is working"] = ""; -$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."] = "Filen \".htconfig.php\" med databasekonfigurasjonen kunne ikke bli skrevet. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i roten på din web-tjener."; -$a->strings["Errors encountered creating database tables."] = "Feil oppstod under opprettelsen av databasetabeller."; -$a->strings["

What next

"] = ""; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering."; -$a->strings["l F d, Y \\@ g:i A"] = ""; -$a->strings["Time Conversion"] = "Tidskonvertering"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = ""; -$a->strings["UTC time: %s"] = "UTC tid: %s"; -$a->strings["Current timezone: %s"] = "Gjeldende tidssone: %s"; -$a->strings["Converted localtime: %s"] = "Konvertert lokaltid: %s"; -$a->strings["Please select your timezone:"] = "Vennligst velg din tidssone:"; -$a->strings["Poke/Prod"] = ""; -$a->strings["poke, prod or do other things to somebody"] = ""; -$a->strings["Recipient"] = ""; -$a->strings["Choose what you wish to do to recipient"] = ""; -$a->strings["Make this post private"] = ""; -$a->strings["Profile Match"] = "Profiltreff"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord i din standardprofil."; -$a->strings["is interested in:"] = ""; -$a->strings["Connect"] = "Forbindelse"; -$a->strings["No matches"] = "Ingen treff"; -$a->strings["Remote privacy information not available."] = "Ekstern informasjon om privatlivsinnstillinger er ikke tilgjengelig."; -$a->strings["Visible to:"] = "Synlig for:"; -$a->strings["No such group"] = "Gruppen finnes ikke"; -$a->strings["Group is empty"] = "Gruppen er tom"; -$a->strings["Group: "] = "Gruppe:"; -$a->strings["Select"] = "Velg"; -$a->strings["View %s's profile @ %s"] = ""; -$a->strings["%s from %s"] = "%s fra %s"; -$a->strings["View in context"] = "Vis i sammenheng"; -$a->strings["%d comment"] = array( - 0 => "", - 1 => "", -); -$a->strings["comment"] = array( - 0 => "", - 1 => "", -); -$a->strings["show more"] = ""; -$a->strings["like"] = ""; -$a->strings["dislike"] = ""; -$a->strings["Share this"] = ""; -$a->strings["share"] = ""; -$a->strings["Bold"] = ""; -$a->strings["Italic"] = ""; -$a->strings["Underline"] = ""; -$a->strings["Quote"] = ""; -$a->strings["Code"] = ""; -$a->strings["Image"] = ""; -$a->strings["Link"] = ""; -$a->strings["Video"] = ""; -$a->strings["add star"] = ""; -$a->strings["remove star"] = ""; -$a->strings["toggle star status"] = "veksle stjernestatus"; -$a->strings["starred"] = ""; -$a->strings["add tag"] = ""; -$a->strings["save to folder"] = ""; -$a->strings["to"] = "til"; -$a->strings["Wall-to-Wall"] = "vegg-til-vegg"; -$a->strings["via Wall-To-Wall:"] = "via vegg-til-vegg"; -$a->strings["Welcome to %s"] = "Velkommen til %s"; -$a->strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator."; -$a->strings["Discard"] = "Forkast"; -$a->strings["Ignore"] = "Ignorer"; -$a->strings["System"] = ""; -$a->strings["Network"] = "Nettverk"; -$a->strings["Personal"] = ""; -$a->strings["Home"] = "Hjem"; -$a->strings["Introductions"] = "Introduksjoner"; -$a->strings["Messages"] = "Meldinger"; -$a->strings["Show Ignored Requests"] = "Vis ignorerte forespørsler"; -$a->strings["Hide Ignored Requests"] = "Skjul ignorerte forespørsler"; -$a->strings["Notification type: "] = "Beskjedtype:"; -$a->strings["Friend Suggestion"] = "Venneforslag"; -$a->strings["suggested by %s"] = "foreslått av %s"; -$a->strings["Hide this contact from others"] = ""; -$a->strings["Post a new friend activity"] = ""; -$a->strings["if applicable"] = ""; -$a->strings["Approve"] = "Godkjenn"; -$a->strings["Claims to be known to you: "] = "Påstår å kjenne deg:"; -$a->strings["yes"] = "ja"; -$a->strings["no"] = "ei"; -$a->strings["Approve as: "] = "Godkjenn som:"; -$a->strings["Friend"] = "Venn"; -$a->strings["Sharer"] = "Deler"; -$a->strings["Fan/Admirer"] = "Fan/Beundrer"; -$a->strings["Friend/Connect Request"] = "Venn/kontakt-forespørsel"; -$a->strings["New Follower"] = "Ny følgesvenn"; -$a->strings["No introductions."] = ""; -$a->strings["Notifications"] = "Varslinger"; -$a->strings["%s liked %s's post"] = "%s likte %s sitt innlegg"; -$a->strings["%s disliked %s's post"] = "%s mislikte %s sitt innlegg"; -$a->strings["%s is now friends with %s"] = "%s er nå venner med %s"; -$a->strings["%s created a new post"] = "%s skrev et nytt innlegg"; -$a->strings["%s commented on %s's post"] = "%s kommenterte på %s sitt innlegg"; -$a->strings["No more network notifications."] = ""; -$a->strings["Network Notifications"] = ""; -$a->strings["No more system notifications."] = ""; -$a->strings["System Notifications"] = ""; -$a->strings["No more personal notifications."] = ""; -$a->strings["Personal Notifications"] = ""; -$a->strings["No more home notifications."] = ""; -$a->strings["Home Notifications"] = ""; -$a->strings["Could not access contact record."] = "Fikk ikke tilgang til kontaktposten."; -$a->strings["Could not locate selected profile."] = "Kunne ikke lokalisere valgt profil."; -$a->strings["Contact updated."] = "Kontakt oppdatert."; -$a->strings["Contact has been blocked"] = "Kontakten er blokkert"; -$a->strings["Contact has been unblocked"] = "Kontakten er ikke blokkert lenger"; -$a->strings["Contact has been ignored"] = "Kontakten er ignorert"; -$a->strings["Contact has been unignored"] = "Kontakten er ikke ignorert lenger"; -$a->strings["Contact has been archived"] = ""; -$a->strings["Contact has been unarchived"] = ""; -$a->strings["Contact has been removed."] = "Kontakten er fjernet."; -$a->strings["You are mutual friends with %s"] = "Du er gjensidig venn med %s"; -$a->strings["You are sharing with %s"] = "Du deler med %s"; -$a->strings["%s is sharing with you"] = "%s deler med deg"; -$a->strings["Private communications are not available for this contact."] = "Privat kommunikasjon er ikke tilgjengelig mot denne kontakten."; -$a->strings["Never"] = "Aldri"; -$a->strings["(Update was successful)"] = "(Oppdatering vellykket)"; -$a->strings["(Update was not successful)"] = "(Oppdatering mislykket)"; -$a->strings["Suggest friends"] = "Foreslå venner"; -$a->strings["Network type: %s"] = "Nettverkstype: %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d felles kontakt", - 1 => "%d felles kontakter", -); -$a->strings["View all contacts"] = "Vis alle kontakter"; -$a->strings["Unblock"] = "Ikke blokker"; -$a->strings["Block"] = "Blokker"; -$a->strings["Toggle Blocked status"] = ""; -$a->strings["Unignore"] = "Fjern ignorering"; -$a->strings["Toggle Ignored status"] = ""; -$a->strings["Unarchive"] = ""; -$a->strings["Archive"] = ""; -$a->strings["Toggle Archive status"] = ""; -$a->strings["Repair"] = "Reparer"; -$a->strings["Advanced Contact Settings"] = ""; -$a->strings["Communications lost with this contact!"] = ""; -$a->strings["Contact Editor"] = "Endre kontakt"; -$a->strings["Profile Visibility"] = "Profilens synlighet"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vennligst velg profilen du ønsker å vise til %s når denne ser profilen på en sikret måte."; -$a->strings["Contact Information / Notes"] = "Kontaktinformasjon/-notater"; -$a->strings["Edit contact notes"] = "Endre kontaktnotater"; -$a->strings["Visit %s's profile [%s]"] = "Besøk %ss profil [%s]"; -$a->strings["Block/Unblock contact"] = "Blokker kontakt/fjern blokkering for kontakt"; -$a->strings["Ignore contact"] = "Ignorer kontakt"; -$a->strings["Repair URL settings"] = "Reparer URL-innstillinger"; -$a->strings["View conversations"] = "Vis samtaler"; -$a->strings["Delete contact"] = "Slett kontakt"; -$a->strings["Last update:"] = "Siste oppdatering:"; -$a->strings["Update public posts"] = "Oppdater offentlige innlegg"; -$a->strings["Update now"] = "Oppdater nå"; -$a->strings["Currently blocked"] = "Blokkert nå"; -$a->strings["Currently ignored"] = "Ignorert nå"; -$a->strings["Currently archived"] = ""; -$a->strings["Replies/likes to your public posts may still be visible"] = ""; -$a->strings["Suggestions"] = ""; -$a->strings["Suggest potential friends"] = ""; -$a->strings["All Contacts"] = "Alle kontakter"; -$a->strings["Show all contacts"] = ""; -$a->strings["Unblocked"] = ""; -$a->strings["Only show unblocked contacts"] = ""; -$a->strings["Blocked"] = ""; -$a->strings["Only show blocked contacts"] = ""; -$a->strings["Ignored"] = ""; -$a->strings["Only show ignored contacts"] = ""; -$a->strings["Archived"] = ""; -$a->strings["Only show archived contacts"] = ""; -$a->strings["Hidden"] = ""; -$a->strings["Only show hidden contacts"] = ""; -$a->strings["Mutual Friendship"] = "Gjensidig vennskap"; -$a->strings["is a fan of yours"] = "er en tilhenger av deg"; -$a->strings["you are a fan of"] = "du er en tilhenger av"; -$a->strings["Edit contact"] = "Endre kontakt"; -$a->strings["Contacts"] = "Kontakter"; -$a->strings["Search your contacts"] = "Søk i dine kontakter"; -$a->strings["Finding: "] = "Fant:"; -$a->strings["Find"] = "Finn"; -$a->strings["No valid account found."] = "Fant ingen gyldig konto."; -$a->strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er sendt. Sjekk e-posten din."; -$a->strings["Password reset requested at %s"] = "Forespørsel om tilbakestilling av passord ved %s"; -$a->strings["Administrator"] = "Administrator"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørselen kunne ikke verifiseres. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord milslyktes."; -$a->strings["Password Reset"] = "Passord tilbakestilling"; -$a->strings["Your password has been reset as requested."] = "Ditt passord er tilbakestilt som forespurt."; -$a->strings["Your new password is"] = "Ditt nye passord er"; -$a->strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter"; -$a->strings["click here to login"] = "klikk her for å logge inn"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Passordet ditt kan endres fra siden Innstillinger etter vellykket logg inn."; -$a->strings["Forgot your Password?"] = "Glemte du passordet?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv inn e-postadressen og send inn for å tilbakestille passordet ditt. Sjekk deretter e-posten din for nærmere forklaring."; -$a->strings["Nickname or Email: "] = "Kallenavn eller e-post:"; -$a->strings["Reset"] = "Tilbakestill"; -$a->strings["Additional features"] = ""; -$a->strings["Missing some important data!"] = "Mangler noen viktige data!"; -$a->strings["Update"] = "Oppdater"; -$a->strings["Failed to connect with email account using the settings provided."] = "Mislyktes i å opprette forbindelse med e-postkontoen med de oppgitte innstillingene."; -$a->strings["Email settings updated."] = "E-postinnstillinger er oppdatert."; -$a->strings["Features updated"] = ""; -$a->strings["Passwords do not match. Password unchanged."] = "Passordene er ikke like. Passord uendret."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Tomme passord er ikke lov. Passord uendret."; -$a->strings["Password changed."] = "Passord endret."; -$a->strings["Password update failed. Please try again."] = "Passordoppdatering mislyktes. Vennligst prøv igjen."; -$a->strings[" Please use a shorter name."] = "Vennligst bruk et kortere navn."; -$a->strings[" Name too short."] = "Navnet er for kort."; -$a->strings[" Not valid email."] = "Ugyldig e-postadresse."; -$a->strings[" Cannot change to that email."] = "Kan ikke endre til den e-postadressen."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = ""; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = ""; -$a->strings["Settings updated."] = "Innstillinger oppdatert."; -$a->strings["Add application"] = "Legg til program"; -$a->strings["Consumer Key"] = "Consumer Key"; -$a->strings["Consumer Secret"] = "Consumer Secret"; -$a->strings["Redirect"] = "Omdiriger"; -$a->strings["Icon url"] = "Ikon URL"; -$a->strings["You can't edit this application."] = "Du kan ikke redigere dette programmet."; -$a->strings["Connected Apps"] = "Tilkoblede programmer"; -$a->strings["Client key starts with"] = "Klientnøkkelen starter med"; -$a->strings["No name"] = "Ingen navn"; -$a->strings["Remove authorization"] = "Fjern tillatelse"; -$a->strings["No Plugin settings configured"] = "Ingen tilleggsinnstillinger konfigurert"; -$a->strings["Plugin Settings"] = "Tilleggsinnstillinger"; -$a->strings["Off"] = ""; -$a->strings["On"] = ""; -$a->strings["Additional Features"] = ""; -$a->strings["Built-in support for %s connectivity is %s"] = "Innebygget støtte for %s forbindelse er %s"; -$a->strings["enabled"] = "aktivert"; -$a->strings["disabled"] = "avskrudd"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "E-posttilgang er avskrudd på dette stedet."; -$a->strings["Connector Settings"] = "Koblingsinnstillinger"; -$a->strings["Email/Mailbox Setup"] = "E-post-/postboksinnstillinger"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Hvis du ønsker å kommunisere med e-postkontakter via denne tjenesten (frivillig), vennligst oppgi hvordan din postboks kontaktes."; -$a->strings["Last successful email check:"] = "Siste vellykkede e-postsjekk:"; -$a->strings["IMAP server name:"] = "IMAP-tjeners navn:"; -$a->strings["IMAP port:"] = "IMAP port:"; -$a->strings["Security:"] = "Sikkerhet:"; -$a->strings["None"] = "Ingen"; -$a->strings["Email login name:"] = "E-post brukernavn:"; -$a->strings["Email password:"] = "E-post passord:"; -$a->strings["Reply-to address:"] = "Svar-til-adresse:"; -$a->strings["Send public posts to all email contacts:"] = "Send offentlige meldinger til alle e-postkontakter:"; -$a->strings["Action after import:"] = ""; -$a->strings["Mark as seen"] = ""; -$a->strings["Move to folder"] = ""; -$a->strings["Move to folder:"] = ""; -$a->strings["No special theme for mobile devices"] = ""; -$a->strings["Display Settings"] = ""; -$a->strings["Display Theme:"] = "Vis tema:"; -$a->strings["Mobile Theme:"] = ""; -$a->strings["Update browser every xx seconds"] = ""; -$a->strings["Minimum of 10 seconds, no maximum"] = ""; -$a->strings["Number of items to display per page:"] = ""; -$a->strings["Maximum of 100 items"] = ""; -$a->strings["Don't show emoticons"] = ""; -$a->strings["Normal Account Page"] = ""; -$a->strings["This account is a normal personal profile"] = "Denne kontoen er en vanlig personlig profil"; -$a->strings["Soapbox Page"] = ""; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med kun leserettigheter"; -$a->strings["Community Forum/Celebrity Account"] = ""; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med lese- og skriverettigheter"; -$a->strings["Automatic Friend Page"] = ""; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Automatisk godkjenning av alle forespørsler om forbindelse/venner som venner"; -$a->strings["Private Forum [Experimental]"] = ""; -$a->strings["Private forum - approved members only"] = ""; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Valgfritt) Tillat denne OpenID-en å logge inn i denne kontoen."; -$a->strings["Publish your default profile in your local site directory?"] = "Skal standardprofilen din publiseres i katalogen til nettstedet ditt?"; -$a->strings["Publish your default profile in the global social directory?"] = "Skal standardprofilen din publiseres i den globale sosiale katalogen?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Skjul kontakt-/venne-listen din for besøkende til standardprofilen din?"; -$a->strings["Hide your profile details from unknown viewers?"] = ""; -$a->strings["Allow friends to post to your profile page?"] = "Tillat venner å poste innlegg på din profilside?"; -$a->strings["Allow friends to tag your posts?"] = "Tillat venner å merke dine innlegg?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = ""; -$a->strings["Permit unknown people to send you private mail?"] = ""; -$a->strings["Profile is not published."] = "Profilen er ikke publisert."; -$a->strings["or"] = "eller"; -$a->strings["Your Identity Address is"] = "Din identitetsadresse er"; -$a->strings["Automatically expire posts after this many days:"] = ""; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Tomme innlegg utgår ikke. Utgåtte innlegg slettes."; -$a->strings["Advanced expiration settings"] = ""; -$a->strings["Advanced Expiration"] = ""; -$a->strings["Expire posts:"] = ""; -$a->strings["Expire personal notes:"] = ""; -$a->strings["Expire starred posts:"] = ""; -$a->strings["Expire photos:"] = ""; -$a->strings["Only expire posts by others:"] = ""; -$a->strings["Account Settings"] = "Kontoinnstillinger"; -$a->strings["Password Settings"] = "Passordinnstillinger"; -$a->strings["New Password:"] = "Nytt passord:"; -$a->strings["Confirm:"] = "Bekreft:"; -$a->strings["Leave password fields blank unless changing"] = "La passordfeltene stå tomme hvis du ikke skal bytte"; -$a->strings["Basic Settings"] = "Grunninnstillinger"; -$a->strings["Full Name:"] = "Fullt navn:"; -$a->strings["Email Address:"] = "E-postadresse:"; -$a->strings["Your Timezone:"] = "Din tidssone:"; -$a->strings["Default Post Location:"] = "Standard oppholdssted når du poster:"; -$a->strings["Use Browser Location:"] = "Bruk nettleserens oppholdssted:"; -$a->strings["Security and Privacy Settings"] = "Sikkerhet og privatlivsinnstillinger"; -$a->strings["Maximum Friend Requests/Day:"] = "Maksimum venneforespørsler/dag:"; -$a->strings["(to prevent spam abuse)"] = "(for å forhindre søppelpost)"; -$a->strings["Default Post Permissions"] = "Standardtillatelser ved posting"; -$a->strings["(click to open/close)"] = "(klikk for å åpne/lukke)"; -$a->strings["Maximum private messages per day from unknown people:"] = ""; -$a->strings["Notification Settings"] = "Beskjedinnstillinger"; -$a->strings["By default post a status message when:"] = ""; -$a->strings["accepting a friend request"] = ""; -$a->strings["joining a forum/community"] = ""; -$a->strings["making an interesting profile change"] = ""; -$a->strings["Send a notification email when:"] = "Send en e-post med beskjed når:"; -$a->strings["You receive an introduction"] = "Du mottar en introduksjon"; -$a->strings["Your introductions are confirmed"] = "Dine introduksjoner er bekreftet"; -$a->strings["Someone writes on your profile wall"] = "Noen skriver på veggen til profilen din"; -$a->strings["Someone writes a followup comment"] = "Noen skriver en oppfølgingskommentar"; -$a->strings["You receive a private message"] = "Du mottar en privat melding"; -$a->strings["You receive a friend suggestion"] = ""; -$a->strings["You are tagged in a post"] = ""; -$a->strings["You are poked/prodded/etc. in a post"] = ""; -$a->strings["Advanced Account/Page Type Settings"] = ""; -$a->strings["Change the behaviour of this account for special situations"] = ""; -$a->strings["Manage Identities and/or Pages"] = "Behandle identiteter og/eller sider"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Veksle mellom ulike identiteter eller felleskaps-/gruppesider som deler dine kontodetaljer eller som du har blitt gitt \"behandle\" tillatelser"; -$a->strings["Select an identity to manage: "] = "Velg en identitet å behandle:"; -$a->strings["Search Results For:"] = ""; -$a->strings["Remove term"] = "Fjern uttrykk"; -$a->strings["Saved Searches"] = "Lagrede søk"; -$a->strings["add"] = ""; -$a->strings["Commented Order"] = "Etter kommentarer"; -$a->strings["Sort by Comment Date"] = ""; -$a->strings["Posted Order"] = "Etter innlegg"; -$a->strings["Sort by Post Date"] = ""; -$a->strings["Posts that mention or involve you"] = ""; -$a->strings["New"] = "Ny"; -$a->strings["Activity Stream - by date"] = ""; -$a->strings["Shared Links"] = ""; -$a->strings["Interesting Links"] = ""; -$a->strings["Starred"] = "Med stjerne"; -$a->strings["Favourite Posts"] = ""; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk.", - 1 => "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Private meldinger til denne gruppen risikerer å bli offentliggjort."; -$a->strings["Contact: "] = "Kontakt:"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Private meldinger til denne personen risikerer å bli offentliggjort."; -$a->strings["Invalid contact."] = "Ugyldig kontakt."; -$a->strings["Personal Notes"] = "Personlige notater"; -$a->strings["Save"] = "Lagre"; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = ""; -$a->strings["Import"] = ""; -$a->strings["Move account"] = ""; -$a->strings["You can import an account from another Friendica server.
\r\n You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here.
\r\n This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"] = ""; -$a->strings["Account file"] = ""; -$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = ""; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Antall daglige veggmeldinger for %s er overskredet. Melding mislyktes."; -$a->strings["No recipient selected."] = "Ingen mottaker valgt."; -$a->strings["Unable to check your home location."] = ""; -$a->strings["Message could not be sent."] = "Meldingen kunne ikke sendes."; -$a->strings["Message collection failure."] = ""; -$a->strings["Message sent."] = "Melding sendt."; -$a->strings["No recipient."] = ""; -$a->strings["Please enter a link URL:"] = "Vennligst skriv inn en lenke URL:"; -$a->strings["Send Private Message"] = "Send privat melding"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = ""; -$a->strings["To:"] = "Til:"; -$a->strings["Subject:"] = "Emne:"; -$a->strings["Your message:"] = "Din melding:"; -$a->strings["Welcome to Friendica"] = ""; -$a->strings["New Member Checklist"] = "Sjekkliste for nye medlemmer"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = ""; -$a->strings["Getting Started"] = ""; -$a->strings["Friendica Walk-Through"] = ""; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = ""; -$a->strings["Go to Your Settings"] = ""; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = ""; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Se over de andre innstillingene, særlig personverninnstillingene. En katalogoppføring som ikke er publisert er som å ha skjult telefonnummer. Generelt, så bør du antakelig publisere oppføringen, med mindre dine venner eller potensielle venner vet nøyaktig hvordan de skal finne deg."; $a->strings["Profile"] = "Profil"; -$a->strings["Upload Profile Photo"] = "Last opp profilbilde"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Last opp et profilbilde hvis du ikke har gjort det allerede. Studier viser at folk som har ekte bilde av seg selv har ti ganger større sannsynlighet for å få venner enn folk som ikke gjør det."; -$a->strings["Edit Your Profile"] = ""; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Du kan endre standardprofilen din slik du ønsker. Se over innstillingene som lar deg skjule vennelisten og skjule profilen fra ukjente besøkende."; -$a->strings["Profile Keywords"] = ""; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Legg til noen offentlige nøkkelord til standardprofilen din som beskriver dine interesser. Det kan hende vi klarer å finne andre folk med liknende interesser og foreslå vennskap."; -$a->strings["Connecting"] = ""; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Tillat Facebook-koblingen hvis du har en Facebook-konto og vi vil (valgfritt) importere alle dine Facebook-venner og samtaler."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = ""; -$a->strings["Importing Emails"] = ""; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = ""; -$a->strings["Go to Your Contacts Page"] = ""; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = ""; -$a->strings["Go to Your Site's Directory"] = ""; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Katalog-siden lar deg finne andre folk i dette nettverket eller andre forente nettsteder. Se etter en Connect eller Follow lenke på profilsiden deres. Oppgi din egen identitetsadresse hvis du blir forespurt om det."; -$a->strings["Finding New People"] = ""; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = ""; -$a->strings["Groups"] = ""; -$a->strings["Group Your Contacts"] = ""; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Når du har fått noen venner, så kan du organisere dem i private samtalegrupper i sidefeltet på Kontakt-siden din, og deretter kan du samhandle med hver gruppe privat på din Nettverk-side."; -$a->strings["Why Aren't My Posts Public?"] = ""; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = ""; -$a->strings["Getting Help"] = ""; -$a->strings["Go to the Help Section"] = ""; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Våre hjelpesider kan leses for flere detaljer og ressurser om andre egenskaper ved programmet."; -$a->strings["Item not available."] = "Elementet er ikke tilgjengelig."; -$a->strings["Item was not found."] = "Elementet ble ikke funnet."; -$a->strings["Group created."] = "Gruppen er laget."; -$a->strings["Could not create group."] = "Kunne ikke lage gruppen."; -$a->strings["Group not found."] = "Fant ikke gruppen."; -$a->strings["Group name changed."] = "Gruppenavnet er endret"; -$a->strings["Permission denied"] = "Tilgang nektet"; -$a->strings["Create a group of contacts/friends."] = "Lag en gruppe med kontakter/venner."; -$a->strings["Group Name: "] = "Gruppenavn:"; -$a->strings["Group removed."] = "Gruppe fjernet."; -$a->strings["Unable to remove group."] = "Mislyktes med å fjerne gruppe."; -$a->strings["Group Editor"] = "Gruppebehandler"; -$a->strings["Members"] = "Medlemmer"; -$a->strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne."; -$a->strings["Invalid profile identifier."] = "Ugyldig profilidentifikator."; -$a->strings["Profile Visibility Editor"] = "Behandle profilsynlighet"; -$a->strings["Visible To"] = "Synlig for"; -$a->strings["All Contacts (with secure profile access)"] = "Alle kontakter (med sikret profiltilgang)"; -$a->strings["No contacts."] = "Ingen kontakter."; -$a->strings["View Contacts"] = "Vis kontakter"; -$a->strings["Registration details for %s"] = "Registeringsdetaljer for %s"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Vellykket registrering. Vennligst sjekk e-posten din for videre instruksjoner."; -$a->strings["Failed to send email message. Here is the message that failed."] = "Mislyktes med å sende e-postmelding. Her er meldingen som mislyktes."; -$a->strings["Your registration can not be processed."] = "Din registrering kan ikke behandles."; -$a->strings["Registration request at %s"] = "Henvendelse om registrering ved %s"; -$a->strings["Your registration is pending approval by the site owner."] = "Din registrering venter på godkjenning fra eier av stedet."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kan (valgfritt) fylle ut dette skjemaet via OpenID ved å oppgi din OpenID og klikke \"Registrer\"."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Hvis du ikke er kjent med OpenID, vennligst la feltet stå tomt, og fyll ut de andre feltene."; -$a->strings["Your OpenID (optional): "] = "Din OpenID (valgfritt):"; -$a->strings["Include your profile in member directory?"] = "Legg til profilen din i medlemskatalogen?"; -$a->strings["Membership on this site is by invitation only."] = "Medlemskap ved dette nettstedet skjer bare på invitasjon."; -$a->strings["Your invitation ID: "] = "Din invitasjons-ID:"; -$a->strings["Registration"] = "Registrering"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Ditt fulle navn (f.eks. Ola Nordmann):"; -$a->strings["Your Email Address: "] = "Din e-postadresse:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Velg et kallenavn til profilen. Dette må begynne med en bokstav. Din profiladresse på dette stedet vil bli \"kallenavn@\$sitename\"."; -$a->strings["Choose a nickname: "] = "Velg et kallenavn:"; -$a->strings["Register"] = "Registrer"; -$a->strings["People Search"] = "Personsøk"; -$a->strings["photo"] = "bilde"; -$a->strings["status"] = "status"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s liker %2\$s's %3\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s's %3\$s"; -$a->strings["Item not found."] = "Enheten ble ikke funnet."; -$a->strings["Access denied."] = ""; -$a->strings["Photos"] = "Bilder"; -$a->strings["Files"] = ""; -$a->strings["Account approved."] = "Konto godkjent."; -$a->strings["Registration revoked for %s"] = "Registreringen til %s er trukket tilbake"; -$a->strings["Please login."] = "Vennligst logg inn."; -$a->strings["Unable to locate original post."] = "Mislyktes med å lokalisere opprinnelig melding."; -$a->strings["Empty post discarded."] = "Tom melding forkastet."; -$a->strings["Wall Photos"] = "Veggbilder"; -$a->strings["System error. Post not saved."] = "Systemfeil. Meldingen ble ikke lagret."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = ""; -$a->strings["You may visit them online at %s"] = "Du kan besøke dem online på %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Vennligst kontakt avsenderen ved å svare på denne meldingen hvis du ikke ønsker å motta disse meldingene."; -$a->strings["%s posted an update."] = "%s postet en oppdatering."; -$a->strings["%1\$s is currently %2\$s"] = ""; -$a->strings["Mood"] = ""; -$a->strings["Set your current mood and tell your friends"] = ""; -$a->strings["Image uploaded but image cropping failed."] = "Bildet ble lastet opp, men beskjæringen mislyktes."; -$a->strings["Image size reduction [%s] failed."] = "Reduksjon av bildestørrelse [%s] mislyktes."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-last-siden-på-nytt eller slett mellomlagret i nettleseren hvis det nye bildet ikke vises umiddelbart."; -$a->strings["Unable to process image"] = "Mislyktes med å behandle bilde"; -$a->strings["Image exceeds size limit of %d"] = "Bildets størrelse overstiger størrelsesbegrensningen på %d"; -$a->strings["Upload File:"] = "Last opp fil:"; -$a->strings["Select a profile:"] = ""; -$a->strings["Upload"] = "Last opp"; -$a->strings["skip this step"] = "hopp over dette steget"; -$a->strings["select a photo from your photo albums"] = "velg et bilde fra dine fotoalbum"; -$a->strings["Crop Image"] = "Beskjær bilde"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Vennligst juster beskjæringen av bildet for optimal visning."; -$a->strings["Done Editing"] = "Behandling ferdig"; -$a->strings["Image uploaded successfully."] = "Bilde ble lastet opp."; -$a->strings["No profile"] = "Ingen profil"; -$a->strings["Remove My Account"] = "Slett min konto"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dette vil slette din konto fullstendig. Når dette er gjort kan den ikke gjenopprettes."; -$a->strings["Please enter your password for verification:"] = "Vennligst skriv inn ditt passord for å bekrefte:"; -$a->strings["New Message"] = "Ny melding"; -$a->strings["Unable to locate contact information."] = "Mislyktes med å finne kontaktinformasjon."; -$a->strings["Message deleted."] = "Melding slettet."; -$a->strings["Conversation removed."] = "Samtale slettet."; -$a->strings["No messages."] = "Ingen meldinger."; -$a->strings["Unknown sender - %s"] = ""; -$a->strings["You and %s"] = ""; -$a->strings["%s and You"] = ""; -$a->strings["Delete conversation"] = "Slett samtale"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "", - 1 => "", -); -$a->strings["Message not available."] = "Melding utilgjengelig."; -$a->strings["Delete message"] = "Slett melding"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; -$a->strings["Send Reply"] = "Send svar"; -$a->strings["Friends of %s"] = "Venner av %s"; -$a->strings["No friends to display."] = "Ingen venner å vise."; -$a->strings["Theme settings updated."] = ""; -$a->strings["Site"] = "Nettsted"; -$a->strings["Users"] = "Brukere"; -$a->strings["Plugins"] = "Tillegg"; -$a->strings["Themes"] = ""; -$a->strings["DB updates"] = ""; -$a->strings["Logs"] = "Logger"; -$a->strings["Admin"] = "Administrator"; -$a->strings["Plugin Features"] = ""; -$a->strings["User registrations waiting for confirmation"] = "Brukerregistreringer venter på bekreftelse"; -$a->strings["Normal Account"] = "Vanlig konto"; -$a->strings["Soapbox Account"] = "Talerstol-konto"; -$a->strings["Community/Celebrity Account"] = "Gruppe-/kjendiskonto"; -$a->strings["Automatic Friend Account"] = "Automatisk vennekonto"; -$a->strings["Blog Account"] = ""; -$a->strings["Private Forum"] = ""; -$a->strings["Message queues"] = ""; -$a->strings["Administration"] = "Administrasjon"; -$a->strings["Summary"] = "Oppsummering"; -$a->strings["Registered users"] = "Registrerte brukere"; -$a->strings["Pending registrations"] = "Ventende registreringer"; -$a->strings["Version"] = "Versjon"; -$a->strings["Active plugins"] = "Aktive tillegg"; -$a->strings["Site settings updated."] = "Nettstedets innstillinger er oppdatert."; -$a->strings["Closed"] = "Stengt"; -$a->strings["Requires approval"] = "Krever godkjenning"; -$a->strings["Open"] = "Åpen"; -$a->strings["No SSL policy, links will track page SSL state"] = ""; -$a->strings["Force all links to use SSL"] = ""; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = ""; -$a->strings["File upload"] = "Last opp fil"; -$a->strings["Policies"] = "Retningslinjer"; -$a->strings["Advanced"] = "Avansert"; -$a->strings["Site name"] = "Nettstedets navn"; -$a->strings["Banner/Logo"] = "Banner/logo"; -$a->strings["System language"] = "Systemspråk"; -$a->strings["System theme"] = "Systemtema"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; -$a->strings["Mobile system theme"] = ""; -$a->strings["Theme for mobile devices"] = ""; -$a->strings["SSL link policy"] = ""; -$a->strings["Determines whether generated links should be forced to use SSL"] = ""; -$a->strings["Maximum image size"] = "Maksimum bildestørrelse"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; -$a->strings["Maximum image length"] = ""; -$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = ""; -$a->strings["JPEG image quality"] = ""; -$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = ""; -$a->strings["Register policy"] = "Registrer retningslinjer"; -$a->strings["Maximum Daily Registrations"] = ""; -$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = ""; -$a->strings["Register text"] = "Registrer tekst"; -$a->strings["Will be displayed prominently on the registration page."] = ""; -$a->strings["Accounts abandoned after x days"] = ""; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = ""; -$a->strings["Allowed friend domains"] = "Tillate vennedomener"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; -$a->strings["Allowed email domains"] = "Tillate e-postdomener"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; -$a->strings["Block public"] = "Utesteng publikum"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; -$a->strings["Force publish"] = "Tving publisering"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = ""; -$a->strings["Global directory update URL"] = "URL for oppdatering av Global-katalog"; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; -$a->strings["Allow threaded items"] = ""; -$a->strings["Allow infinite level threading for items on this site."] = ""; -$a->strings["Private posts by default for new users"] = ""; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; -$a->strings["Block multiple registrations"] = "Blokker flere registreringer"; -$a->strings["Disallow users to register additional accounts for use as pages."] = ""; -$a->strings["OpenID support"] = "OpenID-støtte"; -$a->strings["OpenID support for registration and logins."] = ""; -$a->strings["Fullname check"] = "Sjekk fullt navn"; -$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = ""; -$a->strings["UTF-8 Regular expressions"] = "UTF-8 regulære uttrykk"; -$a->strings["Use PHP UTF8 regular expressions"] = ""; -$a->strings["Show Community Page"] = "Vis Felleskap-side"; -$a->strings["Display a Community page showing all recent public postings on this site."] = ""; -$a->strings["Enable OStatus support"] = "Aktiver Ostatus-støtte"; -$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; -$a->strings["Enable Diaspora support"] = ""; -$a->strings["Provide built-in Diaspora network compatibility."] = ""; -$a->strings["Only allow Friendica contacts"] = ""; -$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = ""; -$a->strings["Verify SSL"] = "Bekreft SSL"; -$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = ""; -$a->strings["Proxy user"] = "Brukernavn til mellomtjener"; -$a->strings["Proxy URL"] = "Mellomtjener URL"; -$a->strings["Network timeout"] = "Tidsavbrudd for nettverk"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; -$a->strings["Delivery interval"] = ""; -$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = ""; -$a->strings["Poll interval"] = ""; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; -$a->strings["Maximum Load Average"] = ""; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; -$a->strings["Update has been marked successful"] = ""; -$a->strings["Executing %s failed. Check system logs."] = "Utføring av %s mislyktes. Sjekk systemlogger."; -$a->strings["Update %s was successfully applied."] = ""; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = ""; -$a->strings["Update function %s could not be found."] = ""; -$a->strings["No failed updates."] = "Ingen mislykkede oppdateringer."; -$a->strings["Failed Updates"] = "Mislykkede oppdateringer"; -$a->strings["This does not include updates prior to 1139, which did not return a status."] = ""; -$a->strings["Mark success (if update was manually applied)"] = ""; -$a->strings["Attempt to execute this update step automatically"] = ""; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "", - 1 => "", -); -$a->strings["%s user deleted"] = array( - 0 => "%s bruker slettet", - 1 => "%s brukere slettet", -); -$a->strings["User '%s' deleted"] = "Brukeren '%s' er slettet"; -$a->strings["User '%s' unblocked"] = "Brukeren '%s' er ikke blokkert"; -$a->strings["User '%s' blocked"] = "Brukeren '%s' er blokkert"; -$a->strings["select all"] = "velg alle"; -$a->strings["User registrations waiting for confirm"] = "Brukerregistreringer venter på bekreftelse"; -$a->strings["Request date"] = "Forespørselsdato"; -$a->strings["Email"] = "E-post"; -$a->strings["No registrations."] = "Ingen registreringer."; -$a->strings["Deny"] = "Nekt"; -$a->strings["Site admin"] = ""; -$a->strings["Register date"] = "Registreringsdato"; -$a->strings["Last login"] = "Siste innlogging"; -$a->strings["Last item"] = "Siste element"; -$a->strings["Account"] = "Konto"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valgte brukere vil bli slettet!\\n\\nAlt disse brukerne har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse brukerne?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Brukeren {0} vil bli slettet!\\n\\nAlt denne brukeren har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne brukeren?"; -$a->strings["Plugin %s disabled."] = "Tillegget %s er avskrudd."; -$a->strings["Plugin %s enabled."] = "Tillegget %s er aktivert."; -$a->strings["Disable"] = "Skru av"; -$a->strings["Enable"] = "Aktiver"; -$a->strings["Toggle"] = "Veksle"; -$a->strings["Author: "] = ""; -$a->strings["Maintainer: "] = ""; -$a->strings["No themes found."] = ""; -$a->strings["Screenshot"] = ""; -$a->strings["[Experimental]"] = ""; -$a->strings["[Unsupported]"] = ""; -$a->strings["Log settings updated."] = "Logginnstillinger er oppdatert."; -$a->strings["Clear"] = "Tøm"; -$a->strings["Debugging"] = "Feilsøking"; -$a->strings["Log file"] = "Loggfil"; -$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = ""; -$a->strings["Log level"] = "Loggnivå"; -$a->strings["Close"] = "Lukk"; -$a->strings["FTP Host"] = "FTP-tjener"; -$a->strings["FTP Path"] = "FTP-sti"; -$a->strings["FTP User"] = "FTP-bruker"; -$a->strings["FTP Password"] = "FTP-passord"; -$a->strings["Requested profile is not available."] = ""; -$a->strings["Access to this profile has been restricted."] = "Tilgang til denne profilen er blitt begrenset."; -$a->strings["Tips for New Members"] = "Tips til nye medlemmer"; -$a->strings["{0} wants to be your friend"] = "{0} ønsker å bli din venn"; -$a->strings["{0} sent you a message"] = "{0} sendte deg en melding"; -$a->strings["{0} requested registration"] = "{0} forespurte om registrering"; -$a->strings["{0} commented %s's post"] = "{0} kommenterte %s sitt innlegg"; -$a->strings["{0} liked %s's post"] = "{0} likte %s sitt innlegg"; -$a->strings["{0} disliked %s's post"] = "{0} likte ikke %s sitt innlegg"; -$a->strings["{0} is now friends with %s"] = "{0} er nå venner med %s"; -$a->strings["{0} posted"] = "{0} postet et innlegg"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} merket %s sitt innlegg med #%s"; -$a->strings["{0} mentioned you in a post"] = ""; -$a->strings["Contacts who are not members of a group"] = ""; -$a->strings["OpenID protocol error. No ID returned."] = ""; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = ""; -$a->strings["Login failed."] = "Innlogging mislyktes."; -$a->strings["Contact added"] = ""; -$a->strings["Common Friends"] = ""; -$a->strings["No contacts in common."] = ""; -$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; -$a->strings["link"] = ""; -$a->strings["Item has been removed."] = "Elementet har blitt slettet."; -$a->strings["Applications"] = "Programmer"; -$a->strings["No installed applications."] = "Ingen installerte programmer."; -$a->strings["Search"] = "Søk"; -$a->strings["Profile not found."] = "Fant ikke profilen."; -$a->strings["Profile Name is required."] = "Profilnavn er påkrevet."; -$a->strings["Marital Status"] = ""; -$a->strings["Romantic Partner"] = ""; -$a->strings["Likes"] = ""; -$a->strings["Dislikes"] = ""; -$a->strings["Work/Employment"] = ""; -$a->strings["Religion"] = ""; -$a->strings["Political Views"] = ""; -$a->strings["Gender"] = ""; -$a->strings["Sexual Preference"] = ""; -$a->strings["Homepage"] = ""; -$a->strings["Interests"] = ""; -$a->strings["Address"] = ""; -$a->strings["Location"] = ""; -$a->strings["Profile updated."] = "Profil oppdatert."; -$a->strings[" and "] = ""; -$a->strings["public profile"] = ""; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; -$a->strings[" - Visit %1\$s's %2\$s"] = ""; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; -$a->strings["Profile deleted."] = "Profil slettet."; -$a->strings["Profile-"] = "Profil-"; -$a->strings["New profile created."] = "Ny profil opprettet."; -$a->strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for kloning."; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Skjul kontakten/vennen din fra folk som kan se denne profilen?"; -$a->strings["Edit Profile Details"] = "Endre profildetaljer"; -$a->strings["View this profile"] = "Vis denne profilen"; -$a->strings["Create a new profile using these settings"] = "Opprett en ny profil med disse innstillingene"; -$a->strings["Clone this profile"] = "Klon denne profilen"; -$a->strings["Delete this profile"] = "Slette denne profilen"; -$a->strings["Profile Name:"] = "Profilnavn:"; -$a->strings["Your Full Name:"] = "Ditt fulle navn:"; -$a->strings["Title/Description:"] = "Tittel/Beskrivelse:"; -$a->strings["Your Gender:"] = "Ditt kjønn:"; -$a->strings["Birthday (%s):"] = "Fødselsdag (%s):"; -$a->strings["Street Address:"] = "Gateadresse:"; -$a->strings["Locality/City:"] = "Plassering/by:"; -$a->strings["Postal/Zip Code:"] = "Postnummer:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Region/State:"] = "Region/fylke:"; -$a->strings[" Marital Status:"] = " Sivilstand:"; -$a->strings["Who: (if applicable)"] = "Hvem: (hvis gjeldende)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Nordmann, kari@example.com"; -$a->strings["Since [date]:"] = ""; -$a->strings["Sexual Preference:"] = "Seksuell orientering:"; -$a->strings["Homepage URL:"] = "Hjemmeside URL:"; -$a->strings["Hometown:"] = ""; -$a->strings["Political Views:"] = "Politisk ståsted:"; -$a->strings["Religious Views:"] = "Religiøst ståsted:"; -$a->strings["Public Keywords:"] = "Offentlige nøkkelord:"; -$a->strings["Private Keywords:"] = "Private nøkkelord:"; -$a->strings["Likes:"] = ""; -$a->strings["Dislikes:"] = ""; -$a->strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Brukes for å foreslå mulige venner, kan ses av andre)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Brukes for å søke i profiler, vises aldri til andre)"; -$a->strings["Tell us about yourself..."] = "Fortell oss om deg selv..."; -$a->strings["Hobbies/Interests"] = "Hobbier/interesser"; -$a->strings["Contact information and Social Networks"] = "Kontaktinformasjon og sosiale nettverk"; -$a->strings["Musical interests"] = "Musikksmak"; -$a->strings["Books, literature"] = "Bøker, litteratur"; -$a->strings["Television"] = "TV"; -$a->strings["Film/dance/culture/entertainment"] = "Film/dans/kultur/underholdning"; -$a->strings["Love/romance"] = "Kjærlighet/romanse"; -$a->strings["Work/employment"] = "Arbeid/ansatt hos"; -$a->strings["School/education"] = "Skole/utdanning"; -$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Dette er din offentlige profil.
Den kan ses av alle på Internet."; -$a->strings["Age: "] = "Alder:"; -$a->strings["Edit/Manage Profiles"] = "Rediger/Behandle profiler"; -$a->strings["Change profile photo"] = "Endre profilbilde"; -$a->strings["Create New Profile"] = "Lag ny profil"; -$a->strings["Profile Image"] = "Profilbilde"; -$a->strings["visible to everybody"] = "synlig for alle"; -$a->strings["Edit visibility"] = "Endre synlighet"; -$a->strings["Save to Folder:"] = ""; -$a->strings["- select -"] = ""; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %2\$s sitt %3\$s med %4\$s"; -$a->strings["No potential page delegates located."] = ""; -$a->strings["Delegate Page Management"] = "Deleger sidebehandling"; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Delegater kan behandle alle sider ved denne kontoen/siden, bortsett fra grunnleggende kontoinnstillinger. Vennligst ikke deleger din personlige konto til noen som du ikke stoler fullt og fast på."; -$a->strings["Existing Page Managers"] = "Eksisterende sidebehandlere"; -$a->strings["Existing Page Delegates"] = ""; -$a->strings["Potential Delegates"] = ""; -$a->strings["Add"] = ""; -$a->strings["No entries."] = ""; -$a->strings["Source (bbcode) text:"] = ""; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = ""; -$a->strings["Source input: "] = ""; -$a->strings["bb2html: "] = ""; -$a->strings["bb2html2bb: "] = ""; -$a->strings["bb2md: "] = ""; -$a->strings["bb2md2html: "] = ""; -$a->strings["bb2dia2bb: "] = ""; -$a->strings["bb2md2html2bb: "] = ""; -$a->strings["Source input (Diaspora format): "] = ""; -$a->strings["diaspora2bb: "] = ""; -$a->strings["Friend Suggestions"] = "Venneforslag"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; -$a->strings["Ignore/Hide"] = "Ignorér/Skjul"; -$a->strings["Global Directory"] = "Global katalog"; -$a->strings["Find on this site"] = ""; -$a->strings["Site Directory"] = "Stedets katalog"; -$a->strings["Gender: "] = "Kjønn:"; +$a->strings["Full Name:"] = "Fullt navn:"; $a->strings["Gender:"] = "Kjønn:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Hjemmeside:"; -$a->strings["About:"] = "Om:"; -$a->strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjulte)."; -$a->strings["%s : Not a valid email address."] = "%s: Ugyldig e-postadresse."; -$a->strings["Please join us on Friendica"] = ""; -$a->strings["%s : Message delivery failed."] = "%s: Mislyktes med å levere meldingen."; -$a->strings["%d message sent."] = array( - 0 => "one: %d melding sendt.", - 1 => "other: %d meldinger sendt.", -); -$a->strings["You have no more invitations available"] = "Du har ingen flere tilgjengelige invitasjoner"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = ""; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = ""; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = ""; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Vi beklager. Dette systemet er for øyeblikket ikke konfigurert for forbindelser med andre offentlige nettsteder eller å invitere medlemmer."; -$a->strings["Send invitations"] = "Send invitasjoner"; -$a->strings["Enter email addresses, one per line:"] = "Skriv e-postadresser, en per linje:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = ""; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du må oppgi denne invitasjonskoden: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Når du har registrert, vennligst kontakt meg via min profilside på:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = ""; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = ""; -$a->strings["Response from remote site was not understood."] = "Forstod ikke svaret fra det andre stedet."; -$a->strings["Unexpected response from remote site: "] = "Uventet svar fra det andre stedet:"; -$a->strings["Confirmation completed successfully."] = "Sending av bekreftelse var vellykket. "; -$a->strings["Remote site reported: "] = "Det andre stedet rapporterte:"; -$a->strings["Temporary failure. Please wait and try again."] = "Midlertidig feil. Vennligst vent og prøv igjen."; -$a->strings["Introduction failed or was revoked."] = "Introduksjon mislyktes eller ble trukket tilbake."; -$a->strings["Unable to set contact photo."] = "Fikk ikke satt kontaktbilde."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s er nå venner med %2\$s"; -$a->strings["No user record found for '%s' "] = "Ingen brukerregistrering funnet for '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "Krypteringsnøkkelen til nettstedet vårt ser ut til å være ødelagt."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "En tom nettsteds-URL ble oppgitt eller URL-en kunne ikke dekrypteres av oss."; -$a->strings["Contact record was not found for you on our site."] = "Kontaktinformasjon om deg ble ikke funnet på vårt nettsted."; -$a->strings["Site public key not available in contact record for URL %s."] = ""; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID-en som ble oppgitt av ditt system har en duplikat i vårt system. Det bør virke hvis du prøver igjen."; -$a->strings["Unable to set your contact credentials on our system."] = "Får ikke lagret din kontaktlegitamasjon på vårt system."; -$a->strings["Unable to update your contact profile details on our system"] = "Får ikke oppdatert kontaktdetaljene dine på vårt system."; -$a->strings["Connection accepted at %s"] = "Tilkobling godtatt på %s"; -$a->strings["%1\$s has joined %2\$s"] = ""; -$a->strings["Google+ Import Settings"] = ""; -$a->strings["Enable Google+ Import"] = ""; -$a->strings["Google Account ID"] = ""; -$a->strings["Google+ Import Settings saved."] = ""; -$a->strings["Facebook disabled"] = "Facebook avskrudd"; -$a->strings["Updating contacts"] = "Oppdaterer kontakter"; -$a->strings["Facebook API key is missing."] = "Facebook API-nøkkel mangler."; -$a->strings["Facebook Connect"] = "Facebook-kobling"; -$a->strings["Install Facebook connector for this account."] = "Legg til Facebook-kobling for denne kontoen."; -$a->strings["Remove Facebook connector"] = "Fjern Facebook-kobling"; -$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = ""; -$a->strings["Post to Facebook by default"] = "Post til Facebook som standard"; -$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = ""; -$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = ""; -$a->strings["Link all your Facebook friends and conversations on this website"] = ""; -$a->strings["Facebook conversations consist of your profile wall and your friend stream."] = ""; -$a->strings["On this website, your Facebook friend stream is only visible to you."] = ""; -$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = ""; -$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = ""; -$a->strings["Do not import your Facebook profile wall conversations"] = ""; -$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = ""; -$a->strings["Comma separated applications to ignore"] = ""; -$a->strings["Problems with Facebook Real-Time Updates"] = ""; -$a->strings["Facebook Connector Settings"] = "Innstillinger for Facebook-kobling"; -$a->strings["Facebook API Key"] = ""; -$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.

"] = ""; -$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = ""; -$a->strings["The given API Key seems to work correctly."] = ""; -$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = ""; -$a->strings["App-ID / API-Key"] = ""; -$a->strings["Application secret"] = ""; -$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = ""; -$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = ""; -$a->strings["Real-Time Updates"] = ""; -$a->strings["Real-Time Updates are activated."] = ""; -$a->strings["Deactivate Real-Time Updates"] = ""; -$a->strings["Real-Time Updates not activated."] = ""; -$a->strings["Activate Real-Time Updates"] = ""; -$a->strings["The new values have been saved."] = ""; -$a->strings["Post to Facebook"] = "Post til Facebook"; -$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Posting til Facebook avbrutt på grunn av konflikt med tilgangsrettigheter i multi-nettverk."; -$a->strings["View on Friendica"] = ""; -$a->strings["Facebook post failed. Queued for retry."] = "Facebook-innlegg mislyktes. Innlegget er lagt i kø for å prøve igjen."; -$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = ""; -$a->strings["Facebook connection became invalid"] = ""; -$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = ""; -$a->strings["StatusNet AutoFollow settings updated."] = ""; -$a->strings["StatusNet AutoFollow Settings"] = ""; -$a->strings["Automatically follow any StatusNet followers/mentioners"] = ""; -$a->strings["Lifetime of the cache (in hours)"] = ""; -$a->strings["Cache Statistics"] = ""; -$a->strings["Number of items"] = ""; -$a->strings["Size of the cache"] = ""; -$a->strings["Delete the whole cache"] = ""; -$a->strings["Facebook Post disabled"] = ""; -$a->strings["Facebook Post"] = ""; -$a->strings["Install Facebook Post connector for this account."] = ""; -$a->strings["Remove Facebook Post connector"] = ""; -$a->strings["Facebook Post Settings"] = ""; -$a->strings["%d person likes this"] = array( - 0 => "", - 1 => "", -); -$a->strings["%d person doesn't like this"] = array( - 0 => "", - 1 => "", -); -$a->strings["Get added to this list!"] = ""; -$a->strings["Generate new key"] = "Lag ny nøkkel"; -$a->strings["Widgets key"] = "Nøkkel til småprogrammer"; -$a->strings["Widgets available"] = "Småprogrammer er tilgjengelige"; -$a->strings["Connect on Friendica!"] = ""; -$a->strings["bitchslap"] = ""; -$a->strings["bitchslapped"] = ""; -$a->strings["shag"] = ""; -$a->strings["shagged"] = ""; -$a->strings["do something obscenely biological to"] = ""; -$a->strings["did something obscenely biological to"] = ""; -$a->strings["point out the poke feature to"] = ""; -$a->strings["pointed out the poke feature to"] = ""; -$a->strings["declare undying love for"] = ""; -$a->strings["declared undying love for"] = ""; -$a->strings["patent"] = ""; -$a->strings["patented"] = ""; -$a->strings["stroke beard"] = ""; -$a->strings["stroked their beard at"] = ""; -$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = ""; -$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = ""; -$a->strings["hug"] = ""; -$a->strings["hugged"] = ""; -$a->strings["kiss"] = ""; -$a->strings["kissed"] = ""; -$a->strings["raise eyebrows at"] = ""; -$a->strings["raised their eyebrows at"] = ""; -$a->strings["insult"] = ""; -$a->strings["insulted"] = ""; -$a->strings["praise"] = ""; -$a->strings["praised"] = ""; -$a->strings["be dubious of"] = ""; -$a->strings["was dubious of"] = ""; -$a->strings["eat"] = ""; -$a->strings["ate"] = ""; -$a->strings["giggle and fawn at"] = ""; -$a->strings["giggled and fawned at"] = ""; -$a->strings["doubt"] = ""; -$a->strings["doubted"] = ""; -$a->strings["glare"] = ""; -$a->strings["glared at"] = ""; -$a->strings["YourLS Settings"] = ""; -$a->strings["URL: http://"] = ""; -$a->strings["Username:"] = ""; -$a->strings["Password:"] = ""; -$a->strings["Use SSL "] = ""; -$a->strings["yourls Settings saved."] = ""; -$a->strings["Post to LiveJournal"] = ""; -$a->strings["LiveJournal Post Settings"] = ""; -$a->strings["Enable LiveJournal Post Plugin"] = ""; -$a->strings["LiveJournal username"] = ""; -$a->strings["LiveJournal password"] = ""; -$a->strings["Post to LiveJournal by default"] = ""; -$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = ""; -$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = ""; -$a->strings["Enable Content filter"] = ""; -$a->strings["Comma separated list of keywords to hide"] = ""; -$a->strings["Use /expression/ to provide regular expressions"] = ""; -$a->strings["NSFW Settings saved."] = ""; -$a->strings["%s - Click to open/close"] = ""; -$a->strings["Forums"] = ""; -$a->strings["Forums:"] = ""; -$a->strings["Page settings updated."] = ""; -$a->strings["Page Settings"] = ""; -$a->strings["How many forums to display on sidebar without paging"] = ""; -$a->strings["Randomise Page/Forum list"] = ""; -$a->strings["Show pages/forums on profile page"] = ""; -$a->strings["Planets Settings"] = ""; -$a->strings["Enable Planets Plugin"] = ""; -$a->strings["Forum Directory"] = ""; -$a->strings["Login"] = "Logg inn"; -$a->strings["OpenID"] = ""; -$a->strings["Latest users"] = ""; -$a->strings["Most active users"] = ""; -$a->strings["Latest photos"] = ""; -$a->strings["Latest likes"] = ""; -$a->strings["event"] = "hendelse"; -$a->strings["No access"] = ""; -$a->strings["Could not open component for editing"] = ""; -$a->strings["Go back to the calendar"] = ""; -$a->strings["Event data"] = ""; -$a->strings["Calendar"] = ""; -$a->strings["Special color"] = ""; -$a->strings["Subject"] = ""; -$a->strings["Starts"] = ""; -$a->strings["Ends"] = ""; -$a->strings["Description"] = ""; -$a->strings["Recurrence"] = ""; -$a->strings["Frequency"] = ""; -$a->strings["Daily"] = "Daglig"; -$a->strings["Weekly"] = "Ukentlig"; -$a->strings["Monthly"] = "Månedlig"; -$a->strings["Yearly"] = ""; -$a->strings["days"] = "dager"; -$a->strings["weeks"] = "uker"; -$a->strings["months"] = "måneder"; -$a->strings["years"] = "år"; -$a->strings["Interval"] = ""; -$a->strings["All %select% %time%"] = ""; -$a->strings["Days"] = ""; -$a->strings["Sunday"] = "søndag"; -$a->strings["Monday"] = "mandag"; -$a->strings["Tuesday"] = "tirsdag"; -$a->strings["Wednesday"] = "onsdag"; -$a->strings["Thursday"] = "torsdag"; -$a->strings["Friday"] = "fredag"; -$a->strings["Saturday"] = "lørdag"; -$a->strings["First day of week:"] = ""; -$a->strings["Day of month"] = ""; -$a->strings["#num#th of each month"] = ""; -$a->strings["#num#th-last of each month"] = ""; -$a->strings["#num#th #wkday# of each month"] = ""; -$a->strings["#num#th-last #wkday# of each month"] = ""; -$a->strings["Month"] = ""; -$a->strings["#num#th of the given month"] = ""; -$a->strings["#num#th-last of the given month"] = ""; -$a->strings["#num#th #wkday# of the given month"] = ""; -$a->strings["#num#th-last #wkday# of the given month"] = ""; -$a->strings["Repeat until"] = ""; -$a->strings["Infinite"] = ""; -$a->strings["Until the following date"] = ""; -$a->strings["Number of times"] = ""; -$a->strings["Exceptions"] = ""; -$a->strings["none"] = ""; -$a->strings["Notification"] = ""; -$a->strings["Notify by"] = ""; -$a->strings["E-Mail"] = ""; -$a->strings["On Friendica / Display"] = ""; -$a->strings["Time"] = ""; -$a->strings["Hours"] = ""; -$a->strings["Minutes"] = ""; -$a->strings["Seconds"] = ""; -$a->strings["Weeks"] = ""; -$a->strings["before the"] = ""; -$a->strings["start of the event"] = ""; -$a->strings["end of the event"] = ""; -$a->strings["Add a notification"] = ""; -$a->strings["The event #name# will start at #date"] = ""; -$a->strings["#name# is about to begin."] = ""; -$a->strings["Saved"] = ""; -$a->strings["U.S. Time Format (mm/dd/YYYY)"] = ""; -$a->strings["German Time Format (dd.mm.YYYY)"] = ""; -$a->strings["Private Events"] = ""; -$a->strings["Private Addressbooks"] = ""; -$a->strings["Friendica-Native events"] = ""; -$a->strings["Friendica-Contacts"] = ""; -$a->strings["Your Friendica-Contacts"] = ""; -$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = ""; -$a->strings["Something went wrong when trying to import the file. Sorry."] = ""; -$a->strings["The ICS-File has been imported."] = ""; -$a->strings["No file was uploaded."] = ""; -$a->strings["Import a ICS-file"] = ""; -$a->strings["ICS-File"] = ""; -$a->strings["Overwrite all #num# existing events"] = ""; -$a->strings["New event"] = ""; -$a->strings["Today"] = ""; -$a->strings["Day"] = ""; -$a->strings["Week"] = ""; -$a->strings["Reload"] = ""; -$a->strings["Date"] = ""; -$a->strings["Error"] = ""; -$a->strings["The calendar has been updated."] = ""; -$a->strings["The new calendar has been created."] = ""; -$a->strings["The calendar has been deleted."] = ""; -$a->strings["Calendar Settings"] = ""; -$a->strings["Date format"] = ""; -$a->strings["Time zone"] = ""; -$a->strings["Calendars"] = ""; -$a->strings["Create a new calendar"] = ""; -$a->strings["Limitations"] = ""; -$a->strings["Warning"] = ""; -$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = ""; -$a->strings["Synchronizing this calendar with the iPhone"] = ""; -$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = ""; -$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = ""; -$a->strings["Extended calendar with CalDAV-support"] = ""; -$a->strings["noreply"] = "ikke svar"; -$a->strings["Notification: "] = ""; -$a->strings["The database tables have been installed."] = ""; -$a->strings["An error occurred during the installation."] = ""; -$a->strings["The database tables have been updated."] = ""; -$a->strings["An error occurred during the update."] = ""; -$a->strings["No system-wide settings yet."] = ""; -$a->strings["Database status"] = ""; -$a->strings["Installed"] = ""; -$a->strings["Upgrade needed"] = ""; -$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events should be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = ""; -$a->strings["Upgrade"] = ""; -$a->strings["Not installed"] = ""; -$a->strings["Install"] = ""; -$a->strings["Unknown"] = ""; -$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = ""; -$a->strings["Troubleshooting"] = ""; -$a->strings["Manual creation of the database tables:"] = ""; -$a->strings["Show SQL-statements"] = ""; -$a->strings["Private Calendar"] = ""; -$a->strings["Friendica Events: Mine"] = ""; -$a->strings["Friendica Events: Contacts"] = ""; -$a->strings["Private Addresses"] = ""; -$a->strings["Friendica Contacts"] = ""; -$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See RemoteStorage WebFinger"] = "Tillat å bruke din friendica id (%s) for å koble til ekstern unhosted-aktivert lagring (som ownCloud). Se RemoteStorage WebFinger"; -$a->strings["Template URL (with {category})"] = ""; -$a->strings["OAuth end-point"] = ""; -$a->strings["Api"] = ""; -$a->strings["Member since:"] = ""; -$a->strings["Three Dimensional Tic-Tac-Toe"] = "Tredimensjonal tre-på-rad"; -$a->strings["3D Tic-Tac-Toe"] = "3D tre-på-rad"; -$a->strings["New game"] = "Nytt spill"; -$a->strings["New game with handicap"] = "Nytt spill med handikapp"; -$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Tredimensjonal tre-på-rad er akkurat som det vanlige spillet, bortsett fra at det spilles på flere nivåer samtidig."; -$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."] = "I dette tilfellet er det tre nivåer. Du vinner ved å få tre på rad på ethvert nivå, samt opp, ned og diagonalt på tvers av forskjellige 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."] = "Handicap-spillet skrur av midtposisjonen på det midtre nivået, fordi spilleren som tar denne posisjonen ofte får en urettferdig fordel."; -$a->strings["You go first..."] = "Du starter først..."; -$a->strings["I'm going first this time..."] = "Jeg starter først denne gangen..."; -$a->strings["You won!"] = "Du vant!"; -$a->strings["\"Cat\" game!"] = "\"Katte\"-spill!"; -$a->strings["I won!"] = "Jeg vant!"; -$a->strings["Randplace Settings"] = "Tilfeldig plassering"; -$a->strings["Enable Randplace Plugin"] = "Aktiver Tilfeldig plassering-tillegget"; -$a->strings["Post to Dreamwidth"] = ""; -$a->strings["Dreamwidth Post Settings"] = ""; -$a->strings["Enable dreamwidth Post Plugin"] = ""; -$a->strings["dreamwidth username"] = ""; -$a->strings["dreamwidth password"] = ""; -$a->strings["Post to dreamwidth by default"] = ""; -$a->strings["Remote Permissions Settings"] = ""; -$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = ""; -$a->strings["Remote Permissions settings updated."] = ""; -$a->strings["Visible to"] = ""; -$a->strings["may only be a partial list"] = ""; -$a->strings["Global"] = ""; -$a->strings["The posts of every user on this server show the post recipients"] = ""; -$a->strings["Individual"] = ""; -$a->strings["Each user chooses whether his/her posts show the post recipients"] = ""; -$a->strings["Startpage Settings"] = ""; -$a->strings["Home page to load after login - leave blank for profile wall"] = ""; -$a->strings["Examples: "network" or "notifications/system""] = ""; -$a->strings["Geonames settings updated."] = ""; -$a->strings["Geonames Settings"] = ""; -$a->strings["Enable Geonames Plugin"] = ""; -$a->strings["Your account on %s will expire in a few days."] = ""; -$a->strings["Your Friendica account is about to expire."] = ""; -$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = ""; -$a->strings["Upload a file"] = "Last opp en fil"; -$a->strings["Drop files here to upload"] = "Slipp filer her for å laste de opp"; -$a->strings["Failed"] = "Mislyktes"; -$a->strings["No files were uploaded."] = "Ingen filer ble lastet opp."; -$a->strings["Uploaded file is empty"] = "Opplastet fil er tom"; -$a->strings["File has an invalid extension, it should be one of "] = "Filen har en ugyldig endelse, den må være en av "; -$a->strings["Upload was cancelled, or server error encountered"] = "Opplasting avbrutt, eller det oppstod en feil på tjeneren"; -$a->strings["show/hide"] = ""; -$a->strings["No forum subscriptions"] = ""; -$a->strings["Forumlist settings updated."] = ""; -$a->strings["Forumlist Settings"] = ""; -$a->strings["Randomise forum list"] = ""; -$a->strings["Show forums on profile page"] = ""; -$a->strings["Show forums on network page"] = ""; -$a->strings["Impressum"] = "Informasjon om nettstedet"; -$a->strings["Site Owner"] = "Nettstedets eier"; -$a->strings["Email Address"] = "E-postadresse"; -$a->strings["Postal Address"] = "Postadresse"; -$a->strings["The impressum addon needs to be configured!
Please add at least the owner variable to your config file. For other variables please refer to the README file of the addon."] = "Tillegget for \"Informasjon om nettstedet\" må konfigureres!
Vennligst fyll ut minst eier variabelen i konfigurasjonsfilen din. For andre variabler, vennligst se over README-filen til tillegget."; -$a->strings["The page operators name."] = ""; -$a->strings["Site Owners Profile"] = "Nettstedseiers profil"; -$a->strings["Profile address of the operator."] = ""; -$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = ""; -$a->strings["Notes"] = "Notater"; -$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = ""; -$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = ""; -$a->strings["Footer note"] = ""; -$a->strings["Text for the footer. You can use BBCode here."] = ""; -$a->strings["Report Bug"] = ""; -$a->strings["No Timeline settings updated."] = ""; -$a->strings["No Timeline Settings"] = ""; -$a->strings["Disable Archive selector on profile wall"] = ""; -$a->strings["\"Blockem\" Settings"] = ""; -$a->strings["Comma separated profile URLS to block"] = ""; -$a->strings["BLOCKEM Settings saved."] = ""; -$a->strings["Blocked %s - Click to open/close"] = ""; -$a->strings["Unblock Author"] = ""; -$a->strings["Block Author"] = ""; -$a->strings["blockem settings updated"] = ""; -$a->strings[":-)"] = ""; -$a->strings[":-("] = ""; -$a->strings["lol"] = ""; -$a->strings["Quick Comment Settings"] = ""; -$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = ""; -$a->strings["Enter quick comments, one per line"] = ""; -$a->strings["Quick Comment settings saved."] = ""; -$a->strings["Tile Server URL"] = ""; -$a->strings["A list of public tile servers"] = ""; -$a->strings["Default zoom"] = ""; -$a->strings["The default zoom level. (1:world, 18:highest)"] = ""; -$a->strings["Editplain settings updated."] = ""; -$a->strings["Group Text"] = ""; -$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = ""; -$a->strings["Could NOT install Libravatar successfully.
It requires PHP >= 5.3"] = ""; -$a->strings["generic profile image"] = ""; -$a->strings["random geometric pattern"] = ""; -$a->strings["monster face"] = ""; -$a->strings["computer generated face"] = ""; -$a->strings["retro arcade style face"] = ""; -$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = ""; -$a->strings["This addon is not functional on your server."] = ""; -$a->strings["Information"] = ""; -$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = ""; -$a->strings["Default avatar image"] = ""; -$a->strings["Select default avatar image if none was found. See README"] = ""; -$a->strings["Libravatar settings updated."] = ""; -$a->strings["Post to libertree"] = ""; -$a->strings["libertree Post Settings"] = ""; -$a->strings["Enable Libertree Post Plugin"] = ""; -$a->strings["Libertree API token"] = ""; -$a->strings["Libertree site URL"] = ""; -$a->strings["Post to Libertree by default"] = ""; -$a->strings["Altpager settings updated."] = ""; -$a->strings["Alternate Pagination Setting"] = ""; -$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = ""; -$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = ""; -$a->strings["Use the MathJax renderer"] = ""; -$a->strings["MathJax Base URL"] = ""; -$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = ""; -$a->strings["Editplain Settings"] = ""; -$a->strings["Disable richtext status editor"] = ""; -$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = ""; -$a->strings["Select default avatar image if none was found at Gravatar. See README"] = ""; -$a->strings["Rating of images"] = ""; -$a->strings["Select the appropriate avatar rating for your site. See README"] = ""; -$a->strings["Gravatar settings updated."] = ""; -$a->strings["Your Friendica test account is about to expire."] = ""; -$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = ""; -$a->strings["\"pageheader\" Settings"] = ""; -$a->strings["pageheader Settings saved."] = ""; -$a->strings["Post to Insanejournal"] = ""; -$a->strings["InsaneJournal Post Settings"] = ""; -$a->strings["Enable InsaneJournal Post Plugin"] = ""; -$a->strings["InsaneJournal username"] = ""; -$a->strings["InsaneJournal password"] = ""; -$a->strings["Post to InsaneJournal by default"] = ""; -$a->strings["Jappix Mini addon settings"] = ""; -$a->strings["Activate addon"] = ""; -$a->strings["Do not insert the Jappixmini Chat-Widget into the webinterface"] = ""; -$a->strings["Jabber username"] = ""; -$a->strings["Jabber server"] = ""; -$a->strings["Jabber BOSH host"] = ""; -$a->strings["Jabber password"] = ""; -$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = ""; -$a->strings["Friendica password"] = ""; -$a->strings["Approve subscription requests from Friendica contacts automatically"] = ""; -$a->strings["Subscribe to Friendica contacts automatically"] = ""; -$a->strings["Purge internal list of jabber addresses of contacts"] = ""; -$a->strings["Add contact"] = ""; -$a->strings["View Source"] = ""; -$a->strings["Post to StatusNet"] = "Post til StatusNet"; -$a->strings["Please contact your site administrator.
The provided API URL is not valid."] = "Vennligst kontakt administratoren på nettstedet ditt.
Den oppgitter API URL-en er ikke gyldig."; -$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Vi kunne ikke kontakte StatusNet API-en med den banen du oppgav."; -$a->strings["StatusNet settings updated."] = "StatusNet-innstillinger er oppdatert."; -$a->strings["StatusNet Posting Settings"] = "Innstillinger for posting til StatusNet"; -$a->strings["Globally Available StatusNet OAuthKeys"] = "Globalt tilgjengelige StatusNet OAuthKeys"; -$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Det finnes ferdig konfigurerte OAuth nøkkelpar tilgjengelig for noen StatusNet-tjenere. Hvis du bruker en av disse, vennligst bruk disse som legitimasjon. Hvis ikke, så er du fri til å opprette en forbindelse til enhver annen StatusNet-forekomst (se nedenfor)."; -$a->strings["Provide your own OAuth Credentials"] = "Oppgi din egen OAuth-legitimasjon"; -$a->strings["No consumer key pair for StatusNet found. Register your Friendica 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 Friendica 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 (remember the trailing /)"] = "Base API Path (husk / på slutten)"; -$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."] = "For å koble din StatusNet-konto, klikk knappen under for å få en sikkerhetskode fra StatusNet som du må kopiere inn i tekstfeltet under, og send inn skjemaet. Det er bare dine offentlige meldinger som blir postet til StatusNet."; -$a->strings["Log in with StatusNet"] = "Logg inn med StatusNet"; -$a->strings["Copy the security code from StatusNet here"] = "Kopier sikkerhetskoden fra StatusNet hit"; -$a->strings["Cancel Connection Process"] = "Avbryt forbindelsesprosessen"; -$a->strings["Current StatusNet API is"] = "Gjeldende StatusNet API er"; -$a->strings["Cancel StatusNet Connection"] = "Avbryt StatusNet-forbindelsen"; -$a->strings["Currently connected to: "] = "For øyeblikket tilkoblet til:"; -$a->strings["If enabled all your public postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Aktivering gjør at alle dine offentlige innlegg kan postes til den tilknyttede StatusNet-kontoen. Du kan velge å gjøre dette som standard (her), eller for hvert enkelt innlegg separat i valgmulighetene for posting når du skriver et innlegg."; -$a->strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = ""; -$a->strings["Allow posting to StatusNet"] = "Tillat innlegg til StatusNet"; -$a->strings["Send public postings to StatusNet by default"] = "Send offentlige innlegg til StatusNet som standard"; -$a->strings["Send linked #-tags and @-names to StatusNet"] = ""; -$a->strings["Clear OAuth configuration"] = "Fjern OAuth-konfigurasjon"; -$a->strings["API URL"] = "API URL"; -$a->strings["Infinite Improbability Drive"] = ""; -$a->strings["Post to Tumblr"] = ""; -$a->strings["Tumblr Post Settings"] = ""; -$a->strings["Enable Tumblr Post Plugin"] = ""; -$a->strings["Tumblr login"] = ""; -$a->strings["Tumblr password"] = ""; -$a->strings["Post to Tumblr by default"] = ""; -$a->strings["Numfriends settings updated."] = ""; -$a->strings["Numfriends Settings"] = ""; -$a->strings["How many contacts to display on profile sidebar"] = ""; -$a->strings["Gnot settings updated."] = ""; -$a->strings["Gnot Settings"] = ""; -$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = ""; -$a->strings["Enable this plugin/addon?"] = ""; -$a->strings["[Friendica:Notify] Comment to conversation #%d"] = ""; -$a->strings["Post to Wordpress"] = ""; -$a->strings["WordPress Post Settings"] = ""; -$a->strings["Enable WordPress Post Plugin"] = ""; -$a->strings["WordPress username"] = ""; -$a->strings["WordPress password"] = ""; -$a->strings["WordPress API URL"] = ""; -$a->strings["Post to WordPress by default"] = ""; -$a->strings["Provide a backlink to the Friendica post"] = ""; -$a->strings["Post from Friendica"] = ""; -$a->strings["Read the original post and comment stream on Friendica"] = ""; -$a->strings["\"Show more\" Settings"] = ""; -$a->strings["Enable Show More"] = ""; -$a->strings["Cutting posts after how much characters"] = ""; -$a->strings["Show More Settings saved."] = ""; -$a->strings["This website is tracked using the Piwik analytics tool."] = ""; -$a->strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = ""; -$a->strings["Piwik Base URL"] = "Piwik Base URL"; -$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = ""; -$a->strings["Site ID"] = "Nettstedets ID"; -$a->strings["Show opt-out cookie link?"] = "Vis lenke for å velge bort cookie?"; -$a->strings["Asynchronous tracking"] = ""; -$a->strings["Post to Twitter"] = "Post til Twitter"; -$a->strings["Twitter settings updated."] = "Twitter-innstilinger oppdatert."; -$a->strings["Twitter Posting Settings"] = "Innstillinger for posting til Twitter"; -$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Ingen \"consumer key pair\" for Twitter funnet. Vennligst kontakt stedets administrator."; -$a->strings["At this Friendica 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."] = "Ved denne Friendica-forekomsten er Twitter-tillegget aktivert, men du har ennå ikke tilkoblet din konto til din Twitter-konto. For å gjøre det, klikk på knappen nedenfor for å få en PIN-kode fra Twitter som du må kopiere inn i feltet nedenfor og sende inn skjemaet. Bare dine offentlige innlegg vil bli lagt inn på Twitter. "; -$a->strings["Log in with Twitter"] = "Logg inn via Twitter"; -$a->strings["Copy the PIN from Twitter here"] = "Kopier PIN-kode fra Twitter hit"; -$a->strings["If enabled all your public postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Aktivering gjør at alle dine offentlige innlegg kan postes til den tilknyttede Twitter-kontoen. Du kan velge å gjøre dette som standard (her), eller for hvert enkelt innlegg separat i valgmulighetene for posting når du skriver et innlegg."; -$a->strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = ""; -$a->strings["Allow posting to Twitter"] = "Tillat posting til Twitter"; -$a->strings["Send public postings to Twitter by default"] = "Send offentlige innlegg til Twitter som standard"; -$a->strings["Send linked #-tags and @-names to Twitter"] = ""; -$a->strings["Consumer key"] = "Consumer key"; -$a->strings["Consumer secret"] = "Consumer secret"; -$a->strings["IRC Settings"] = ""; -$a->strings["Channel(s) to auto connect (comma separated)"] = ""; -$a->strings["Popular Channels (comma separated)"] = ""; -$a->strings["IRC settings saved."] = ""; -$a->strings["IRC Chatroom"] = ""; -$a->strings["Popular Channels"] = ""; -$a->strings["Fromapp settings updated."] = ""; -$a->strings["FromApp Settings"] = ""; -$a->strings["The application name you would like to show your posts originating from."] = ""; -$a->strings["Use this application name even if another application was used."] = ""; -$a->strings["Post to blogger"] = ""; -$a->strings["Blogger Post Settings"] = ""; -$a->strings["Enable Blogger Post Plugin"] = ""; -$a->strings["Blogger username"] = ""; -$a->strings["Blogger password"] = ""; -$a->strings["Blogger API URL"] = ""; -$a->strings["Post to Blogger by default"] = ""; -$a->strings["Post to Posterous"] = ""; -$a->strings["Posterous Post Settings"] = ""; -$a->strings["Enable Posterous Post Plugin"] = ""; -$a->strings["Posterous login"] = ""; -$a->strings["Posterous password"] = ""; -$a->strings["Posterous site ID"] = ""; -$a->strings["Posterous API token"] = ""; -$a->strings["Post to Posterous by default"] = ""; -$a->strings["Theme settings"] = ""; -$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; -$a->strings["Set font-size for posts and comments"] = ""; -$a->strings["Set theme width"] = ""; -$a->strings["Color scheme"] = ""; -$a->strings["Your posts and conversations"] = "Dine innlegg og samtaler"; -$a->strings["Your profile page"] = ""; -$a->strings["Your contacts"] = ""; -$a->strings["Your photos"] = ""; -$a->strings["Your events"] = ""; -$a->strings["Personal notes"] = ""; -$a->strings["Your personal photos"] = ""; -$a->strings["Community Pages"] = ""; -$a->strings["Community Profiles"] = ""; -$a->strings["Last users"] = ""; -$a->strings["Last likes"] = ""; -$a->strings["Last photos"] = ""; -$a->strings["Find Friends"] = ""; -$a->strings["Local Directory"] = ""; -$a->strings["Similar Interests"] = ""; -$a->strings["Invite Friends"] = "Inviterer venner"; -$a->strings["Earth Layers"] = ""; -$a->strings["Set zoomfactor for Earth Layers"] = ""; -$a->strings["Set longitude (X) for Earth Layers"] = ""; -$a->strings["Set latitude (Y) for Earth Layers"] = ""; -$a->strings["Help or @NewHere ?"] = ""; -$a->strings["Connect Services"] = ""; -$a->strings["Last Tweets"] = ""; -$a->strings["Set twitter search term"] = ""; -$a->strings["don't show"] = "ikke vis"; -$a->strings["show"] = "vis"; -$a->strings["Show/hide boxes at right-hand column:"] = ""; -$a->strings["Set line-height for posts and comments"] = ""; -$a->strings["Set resolution for middle column"] = ""; -$a->strings["Set color scheme"] = ""; -$a->strings["Set zoomfactor for Earth Layer"] = ""; -$a->strings["Last tweets"] = ""; -$a->strings["Alignment"] = ""; -$a->strings["Left"] = ""; -$a->strings["Center"] = ""; -$a->strings["Posts font size"] = ""; -$a->strings["Textareas font size"] = ""; -$a->strings["Set colour scheme"] = ""; $a->strings["j F, Y"] = "j F, Y"; $a->strings["j F"] = "j F"; $a->strings["Birthday:"] = "Fødselsdag:"; $a->strings["Age:"] = "Alder:"; +$a->strings["Status:"] = "Status:"; $a->strings["for %1\$d %2\$s"] = ""; +$a->strings["Sexual Preference:"] = "Seksuell orientering:"; +$a->strings["Homepage:"] = "Hjemmeside:"; +$a->strings["Hometown:"] = ""; $a->strings["Tags:"] = ""; +$a->strings["Political Views:"] = "Politisk ståsted:"; $a->strings["Religion:"] = "Religion:"; +$a->strings["About:"] = "Om:"; $a->strings["Hobbies/Interests:"] = "Hobbyer/Interesser:"; +$a->strings["Likes:"] = ""; +$a->strings["Dislikes:"] = ""; $a->strings["Contact information and Social Networks:"] = "Kontaktinformasjon og sosiale nettverk:"; $a->strings["Musical interests:"] = "Musikksmak:"; $a->strings["Books, literature:"] = "Bøker, litteratur:"; @@ -1667,22 +32,6 @@ $a->strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underholdni $a->strings["Love/Romance:"] = "Kjærlighet/romanse:"; $a->strings["Work/employment:"] = "Arbeid/ansatt hos:"; $a->strings["School/education:"] = "Skole/utdanning:"; -$a->strings["Unknown | Not categorised"] = "Ukjent | Ikke kategorisert"; -$a->strings["Block immediately"] = "Blokker umiddelbart"; -$a->strings["Shady, spammer, self-marketer"] = "Grumsete, poster søppel, fremhever bare seg selv"; -$a->strings["Known to me, but no opinion"] = "Bekjent av meg, men har ingen mening"; -$a->strings["OK, probably harmless"] = "OK, antakelig harmløs"; -$a->strings["Reputable, has my trust"] = "Respektert, har min tillit"; -$a->strings["Frequently"] = "Ofte"; -$a->strings["Hourly"] = "Hver time"; -$a->strings["Twice daily"] = "To ganger daglig"; -$a->strings["OStatus"] = ""; -$a->strings["RSS/Atom"] = ""; -$a->strings["Zot!"] = ""; -$a->strings["LinkedIn"] = ""; -$a->strings["XMPP/IM"] = ""; -$a->strings["MySpace"] = ""; -$a->strings["Google+"] = ""; $a->strings["Male"] = "Mann"; $a->strings["Female"] = "Kvinne"; $a->strings["Currently Male"] = "For øyeblikket mann"; @@ -1741,10 +90,191 @@ $a->strings["Uncertain"] = "Usikker"; $a->strings["It's complicated"] = ""; $a->strings["Don't care"] = "Uinteressert"; $a->strings["Ask me"] = "Spør meg"; +$a->strings["stopped following"] = "sluttet å følge"; +$a->strings["Poke"] = ""; +$a->strings["View Status"] = ""; +$a->strings["View Profile"] = ""; +$a->strings["View Photos"] = ""; +$a->strings["Network Posts"] = ""; +$a->strings["Edit Contact"] = ""; +$a->strings["Send PM"] = "Send privat melding"; +$a->strings["Image/photo"] = "Bilde/fotografi"; +$a->strings["%s wrote the following post"] = ""; +$a->strings["$1 wrote:"] = ""; +$a->strings["Encrypted content"] = ""; +$a->strings["Visible to everybody"] = "Synlig for alle"; +$a->strings["show"] = "vis"; +$a->strings["don't show"] = "ikke vis"; +$a->strings["Logged out."] = "Logget ut."; +$a->strings["Login failed."] = "Innlogging mislyktes."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; +$a->strings["The error message was:"] = ""; +$a->strings["l F d, Y \\@ g:i A"] = ""; $a->strings["Starts:"] = "Starter:"; $a->strings["Finishes:"] = "Slutter:"; -$a->strings["(no subject)"] = "(uten emne)"; +$a->strings["Location:"] = "Plassering:"; +$a->strings["Disallowed profile URL."] = "Underkjent profil-URL."; +$a->strings["Connect URL missing."] = ""; +$a->strings["This site is not configured to allow communications with other networks."] = "Dette nettverkets konfigurasjon tillater ikke kommunikasjon med andre nettverk."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Ingen passende kommunikasjonsprotokoller eller strømmer ble oppdaget."; +$a->strings["The profile address specified does not provide adequate information."] = "Den angitte profiladressen inneholder for lite information."; +$a->strings["An author or name was not found."] = "Fant ingen forfatter eller navn."; +$a->strings["No browser URL could be matched to this address."] = "Ingen nettleser-URL passet med denne adressen."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = ""; +$a->strings["Use mailto: in front of address to force email check."] = ""; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Den oppgitte profiladressen tilhører et nettverk som har blitt avskrudd på dette nettstedet."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Begrenset profil. Denne personen kan ikke motta direkte/personlige oppdateringer fra deg."; +$a->strings["Unable to retrieve contact information."] = "Ikke i stand til å hente kontaktinformasjon."; +$a->strings["following"] = "følger"; +$a->strings["An invitation is required."] = "En invitasjon er nødvendig."; +$a->strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes."; +$a->strings["Invalid OpenID url"] = "Ugyldig OpenID URL"; +$a->strings["Please enter the required information."] = "Vennligst skriv inn den nødvendige informasjonen."; +$a->strings["Please use a shorter name."] = "Vennligst bruk et kortere navn."; +$a->strings["Name too short."] = "Navnet er for kort."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Dette ser ikke ut til å være ditt full navn (Fornavn Etternavn)."; +$a->strings["Your email domain is not among those allowed on this site."] = "Ditt e-postdomene er ikke blant de som er tillat på dette stedet."; +$a->strings["Not a valid email address."] = "Ugyldig e-postadresse."; +$a->strings["Cannot use that email."] = "Kan ikke bruke den e-postadressen."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Ditt kallenavn kan bare inneholde \"a-z\", \"0-9\", \"-\", \"_\", og må også begynne med en bokstav."; +$a->strings["Nickname is already registered. Please choose another."] = "Kallenavnet er allerede registrert. Vennligst velg et annet."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = ""; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ALVORLIG FEIL: mislyktes med å lage sikkerhetsnøkler."; +$a->strings["An error occurred during registration. Please try again."] = "En feil oppstod under registreringen. Vennligst prøv igjen."; +$a->strings["default"] = ""; +$a->strings["An error occurred creating your default profile. Please try again."] = "En feil oppstod under opprettelsen av din standardprofil. Vennligst prøv igjen."; +$a->strings["Profile Photos"] = "Profilbilder"; +$a->strings["Unknown | Not categorised"] = "Ukjent | Ikke kategorisert"; +$a->strings["Block immediately"] = "Blokker umiddelbart"; +$a->strings["Shady, spammer, self-marketer"] = "Grumsete, poster søppel, fremhever bare seg selv"; +$a->strings["Known to me, but no opinion"] = "Bekjent av meg, men har ingen mening"; +$a->strings["OK, probably harmless"] = "OK, antakelig harmløs"; +$a->strings["Reputable, has my trust"] = "Respektert, har min tillit"; +$a->strings["Frequently"] = "Ofte"; +$a->strings["Hourly"] = "Hver time"; +$a->strings["Twice daily"] = "To ganger daglig"; +$a->strings["Daily"] = "Daglig"; +$a->strings["Weekly"] = "Ukentlig"; +$a->strings["Monthly"] = "Månedlig"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = ""; +$a->strings["RSS/Atom"] = ""; +$a->strings["Email"] = "E-post"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = ""; +$a->strings["LinkedIn"] = ""; +$a->strings["XMPP/IM"] = ""; +$a->strings["MySpace"] = ""; +$a->strings["Google+"] = ""; +$a->strings["Add New Contact"] = ""; +$a->strings["Enter address or web location"] = ""; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Eksempel: ole@eksempel.no, http://eksempel.no/kari"; +$a->strings["Connect"] = "Forbindelse"; +$a->strings["%d invitation available"] = array( + 0 => "%d invitasjon tilgjengelig", + 1 => "%d invitasjoner tilgjengelig", +); +$a->strings["Find People"] = ""; +$a->strings["Enter name or interest"] = ""; +$a->strings["Connect/Follow"] = "Koble/Følg"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = ""; +$a->strings["Find"] = "Finn"; +$a->strings["Friend Suggestions"] = "Venneforslag"; +$a->strings["Similar Interests"] = ""; +$a->strings["Random Profile"] = ""; +$a->strings["Invite Friends"] = "Inviterer venner"; +$a->strings["Networks"] = ""; +$a->strings["All Networks"] = ""; +$a->strings["Saved Folders"] = ""; +$a->strings["Everything"] = ""; +$a->strings["Categories"] = ""; +$a->strings["%d contact in common"] = array( + 0 => "%d felles kontakt", + 1 => "%d felles kontakter", +); +$a->strings["show more"] = "vis mer"; $a->strings[" on Last.fm"] = ""; +$a->strings["view full size"] = "Vis i full størrelse"; +$a->strings["Miscellaneous"] = "Diverse"; +$a->strings["year"] = "år"; +$a->strings["month"] = "måned"; +$a->strings["day"] = "dag"; +$a->strings["never"] = "aldri"; +$a->strings["less than a second ago"] = "for mindre enn ett sekund siden"; +$a->strings["years"] = "år"; +$a->strings["months"] = "måneder"; +$a->strings["week"] = "uke"; +$a->strings["weeks"] = "uker"; +$a->strings["days"] = "dager"; +$a->strings["hour"] = "time"; +$a->strings["hours"] = "timer"; +$a->strings["minute"] = "minutt"; +$a->strings["minutes"] = "minutter"; +$a->strings["second"] = "sekund"; +$a->strings["seconds"] = "sekunder"; +$a->strings["%1\$d %2\$s ago"] = ""; +$a->strings["%s's birthday"] = ""; +$a->strings["Happy Birthday %s"] = ""; +$a->strings["Click here to upgrade."] = ""; +$a->strings["This action exceeds the limits set by your subscription plan."] = ""; +$a->strings["This action is not available under your subscription plan."] = ""; +$a->strings["(no subject)"] = "(uten emne)"; +$a->strings["noreply"] = "ikke svar"; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s er nå venner med %2\$s"; +$a->strings["Sharing notification from Diaspora network"] = "Dele varslinger fra Diaspora nettverket"; +$a->strings["photo"] = "bilde"; +$a->strings["status"] = "status"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s liker %2\$s's %3\$s"; +$a->strings["Attachments:"] = ""; +$a->strings["[Name Withheld]"] = "[Navnet tilbakeholdt]"; +$a->strings["A new person is sharing with you at "] = ""; +$a->strings["You have a new follower at "] = "Du har en ny følgesvenn på "; +$a->strings["Item not found."] = "Enheten ble ikke funnet."; +$a->strings["Do you really want to delete this item?"] = ""; +$a->strings["Yes"] = "Ja"; +$a->strings["Cancel"] = "Avbryt"; +$a->strings["Permission denied."] = "Ingen tilgang."; +$a->strings["Archives"] = ""; +$a->strings["General Features"] = ""; +$a->strings["Multiple Profiles"] = ""; +$a->strings["Ability to create multiple profiles"] = ""; +$a->strings["Post Composition Features"] = ""; +$a->strings["Richtext Editor"] = ""; +$a->strings["Enable richtext editor"] = ""; +$a->strings["Post Preview"] = ""; +$a->strings["Allow previewing posts and comments before publishing them"] = ""; +$a->strings["Network Sidebar Widgets"] = ""; +$a->strings["Search by Date"] = ""; +$a->strings["Ability to select posts by date ranges"] = ""; +$a->strings["Group Filter"] = ""; +$a->strings["Enable widget to display Network posts only from selected group"] = ""; +$a->strings["Network Filter"] = ""; +$a->strings["Enable widget to display Network posts only from selected network"] = ""; +$a->strings["Saved Searches"] = "Lagrede søk"; +$a->strings["Save search terms for re-use"] = ""; +$a->strings["Network Tabs"] = ""; +$a->strings["Network Personal Tab"] = ""; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; +$a->strings["Network New Tab"] = ""; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; +$a->strings["Network Shared Links Tab"] = ""; +$a->strings["Enable tab to display only Network posts with links in them"] = ""; +$a->strings["Post/Comment Tools"] = ""; +$a->strings["Multiple Deletion"] = ""; +$a->strings["Select and delete multiple posts/comments at once"] = ""; +$a->strings["Edit Sent Posts"] = ""; +$a->strings["Edit and correct posts and comments after sending"] = ""; +$a->strings["Tagging"] = ""; +$a->strings["Ability to tag existing posts"] = ""; +$a->strings["Post Categories"] = ""; +$a->strings["Add categories to your posts"] = ""; +$a->strings["Ability to file posts under folders"] = ""; +$a->strings["Dislike Posts"] = ""; +$a->strings["Ability to dislike posts/comments"] = ""; +$a->strings["Star Posts"] = ""; +$a->strings["Ability to mark special posts with a star indicator"] = ""; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS informasjon for databasetjeneren '%s' "; $a->strings["prev"] = "forrige"; $a->strings["first"] = "første"; $a->strings["last"] = "siste"; @@ -1756,6 +286,9 @@ $a->strings["%d Contact"] = array( 0 => "%d kontakt", 1 => "%d kontakter", ); +$a->strings["View Contacts"] = "Vis kontakter"; +$a->strings["Search"] = "Søk"; +$a->strings["Save"] = "Lagre"; $a->strings["poke"] = ""; $a->strings["poked"] = ""; $a->strings["ping"] = ""; @@ -1788,6 +321,13 @@ $a->strings["frustrated"] = ""; $a->strings["motivated"] = ""; $a->strings["relaxed"] = ""; $a->strings["surprised"] = ""; +$a->strings["Monday"] = "mandag"; +$a->strings["Tuesday"] = "tirsdag"; +$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"] = "januar"; $a->strings["February"] = "februar"; $a->strings["March"] = "mars"; @@ -1800,146 +340,88 @@ $a->strings["September"] = "september"; $a->strings["October"] = "oktober"; $a->strings["November"] = "november"; $a->strings["December"] = "desember"; +$a->strings["View Video"] = ""; $a->strings["bytes"] = "bytes"; $a->strings["Click to open/close"] = ""; -$a->strings["default"] = ""; +$a->strings["link to source"] = "lenke til kilde"; $a->strings["Select an alternate language"] = "Velg et annet språk"; +$a->strings["event"] = "hendelse"; $a->strings["activity"] = ""; -$a->strings["post"] = ""; -$a->strings["Item filed"] = ""; -$a->strings["Sharing notification from Diaspora network"] = "Dele varslinger fra Diaspora nettverket"; -$a->strings["Attachments:"] = ""; -$a->strings["view full size"] = ""; -$a->strings["Embedded content"] = ""; -$a->strings["Embedding disabled"] = "Innebygging avskrudd"; -$a->strings["Error decoding account file"] = ""; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; -$a->strings["Error! I can't import this file: DB schema version is not compatible."] = ""; -$a->strings["Error! Cannot check nickname"] = ""; -$a->strings["User '%s' already exists on this server!"] = ""; -$a->strings["User creation error"] = ""; -$a->strings["User profile creation error"] = ""; -$a->strings["%d contact not imported"] = array( +$a->strings["comment"] = array( 0 => "", 1 => "", ); -$a->strings["Done. You can now login with your username and password"] = ""; +$a->strings["post"] = ""; +$a->strings["Item filed"] = ""; $a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = ""; $a->strings["Default privacy group for new contacts"] = ""; $a->strings["Everybody"] = "Alle"; $a->strings["edit"] = ""; +$a->strings["Groups"] = ""; $a->strings["Edit group"] = ""; $a->strings["Create a new group"] = "Lag en ny gruppe"; $a->strings["Contacts not in any group"] = ""; -$a->strings["Logout"] = "Logg ut"; -$a->strings["End this session"] = "Avslutt denne økten"; -$a->strings["Status"] = "Status"; -$a->strings["Sign in"] = "Logg inn"; -$a->strings["Home Page"] = "Hovedside"; -$a->strings["Create an account"] = "Lag konto"; -$a->strings["Help and documentation"] = "Hjelp og dokumentasjon"; -$a->strings["Apps"] = "Programmer"; -$a->strings["Addon applications, utilities, games"] = "Tilleggsprorammer, verktøy, spill"; -$a->strings["Search site content"] = "Søk i nettstedets innhold"; -$a->strings["Conversations on this site"] = "Samtaler på dette nettstedet"; -$a->strings["Directory"] = "Katalog"; -$a->strings["People directory"] = "Personkatalog"; -$a->strings["Conversations from your friends"] = "Samtaler fra dine venner"; -$a->strings["Network Reset"] = ""; -$a->strings["Load Network page with no filters"] = ""; -$a->strings["Friend Requests"] = ""; -$a->strings["See all notifications"] = ""; -$a->strings["Mark all system notifications seen"] = ""; -$a->strings["Private mail"] = "Privat post"; -$a->strings["Inbox"] = "Innboks"; -$a->strings["Outbox"] = "Utboks"; -$a->strings["Manage"] = "Behandle"; -$a->strings["Manage other pages"] = "Behandle andre sider"; -$a->strings["Profiles"] = "Profiler"; -$a->strings["Manage/Edit Profiles"] = ""; -$a->strings["Manage/edit friends and contacts"] = "Behandle/endre venner og kontakter"; -$a->strings["Site setup and configuration"] = "Nettstedsoppsett og konfigurasjon"; -$a->strings["Nothing new here"] = ""; -$a->strings["Add New Contact"] = ""; -$a->strings["Enter address or web location"] = ""; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Eksempel: ole@eksempel.no, http://eksempel.no/kari"; -$a->strings["%d invitation available"] = array( - 0 => "%d invitasjon tilgjengelig", - 1 => "%d invitasjoner tilgjengelig", -); -$a->strings["Find People"] = ""; -$a->strings["Enter name or interest"] = ""; -$a->strings["Connect/Follow"] = "Koble/Følg"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = ""; -$a->strings["Random Profile"] = ""; -$a->strings["Networks"] = ""; -$a->strings["All Networks"] = ""; -$a->strings["Saved Folders"] = ""; -$a->strings["Everything"] = ""; -$a->strings["Categories"] = ""; -$a->strings["Logged out."] = "Logget ut."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; -$a->strings["The error message was:"] = ""; -$a->strings["Miscellaneous"] = "Diverse"; -$a->strings["year"] = "år"; -$a->strings["month"] = "måned"; -$a->strings["day"] = "dag"; -$a->strings["never"] = "aldri"; -$a->strings["less than a second ago"] = "for mindre enn ett sekund siden"; -$a->strings["week"] = "uke"; -$a->strings["hour"] = "time"; -$a->strings["hours"] = "timer"; -$a->strings["minute"] = "minutt"; -$a->strings["minutes"] = "minutter"; -$a->strings["second"] = "sekund"; -$a->strings["seconds"] = "sekunder"; -$a->strings["%1\$d %2\$s ago"] = ""; -$a->strings["%s's birthday"] = ""; -$a->strings["Happy Birthday %s"] = ""; -$a->strings["From: "] = "Fra: "; -$a->strings["Image/photo"] = "Bilde/fotografi"; -$a->strings["$1 wrote:"] = ""; -$a->strings["Encrypted content"] = ""; -$a->strings["General Features"] = ""; -$a->strings["Multiple Profiles"] = ""; -$a->strings["Ability to create multiple profiles"] = ""; -$a->strings["Post Composition Features"] = ""; -$a->strings["Richtext Editor"] = ""; -$a->strings["Enable richtext editor"] = ""; -$a->strings["Post Preview"] = ""; -$a->strings["Allow previewing posts and comments before publishing them"] = ""; -$a->strings["Network Sidebar Widgets"] = ""; -$a->strings["Search by Date"] = ""; -$a->strings["Ability to select posts by date ranges"] = ""; -$a->strings["Group Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected group"] = ""; -$a->strings["Network Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected network"] = ""; -$a->strings["Save search terms for re-use"] = ""; -$a->strings["Network Tabs"] = ""; -$a->strings["Network Personal Tab"] = ""; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; -$a->strings["Network New Tab"] = ""; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; -$a->strings["Network Shared Links Tab"] = ""; -$a->strings["Enable tab to display only Network posts with links in them"] = ""; -$a->strings["Post/Comment Tools"] = ""; -$a->strings["Multiple Deletion"] = ""; -$a->strings["Select and delete multiple posts/comments at once"] = ""; -$a->strings["Edit Sent Posts"] = ""; -$a->strings["Edit and correct posts and comments after sending"] = ""; -$a->strings["Tagging"] = ""; -$a->strings["Ability to tag existing posts"] = ""; -$a->strings["Post Categories"] = ""; -$a->strings["Add categories to your posts"] = ""; -$a->strings["Ability to file posts under folders"] = ""; -$a->strings["Dislike Posts"] = ""; -$a->strings["Ability to dislike posts/comments"] = ""; -$a->strings["Star Posts"] = ""; -$a->strings["Ability to mark special posts with a star indicator"] = ""; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS informasjon for databasetjeneren '%s' "; -$a->strings["[no subject]"] = "[ikke noe emne]"; -$a->strings["Visible to everybody"] = "Synlig for alle"; +$a->strings["add"] = ""; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s's %3\$s"; +$a->strings["%1\$s poked %2\$s"] = ""; +$a->strings["%1\$s is currently %2\$s"] = ""; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %2\$s sitt %3\$s med %4\$s"; +$a->strings["post/item"] = ""; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = ""; +$a->strings["Select"] = "Velg"; +$a->strings["Delete"] = "Slett"; +$a->strings["View %s's profile @ %s"] = "Besøk %ss profil [%s]"; +$a->strings["Categories:"] = "Kategorier:"; +$a->strings["Filed under:"] = "Lagret i:"; +$a->strings["%s from %s"] = "%s fra %s"; +$a->strings["View in context"] = "Vis i sammenheng"; +$a->strings["Please wait"] = "Vennligst vent"; +$a->strings["remove"] = ""; +$a->strings["Delete Selected Items"] = "Slette valgte elementer"; +$a->strings["Follow Thread"] = ""; +$a->strings["%s likes this."] = "%s liker dette."; +$a->strings["%s doesn't like this."] = "%s liker ikke dette."; +$a->strings["%2\$d people like this"] = ""; +$a->strings["%2\$d people don't like this"] = ""; +$a->strings["and"] = "og"; +$a->strings[", and %d other people"] = ", og %d andre personer"; +$a->strings["%s like this."] = "%s liker dette."; +$a->strings["%s don't like this."] = "%s liker ikke dette."; +$a->strings["Visible to everybody"] = "Synlig for alle"; +$a->strings["Please enter a link URL:"] = "Vennligst skriv inn en lenke URL:"; +$a->strings["Please enter a video link/URL:"] = ""; +$a->strings["Please enter an audio link/URL:"] = ""; +$a->strings["Tag term:"] = ""; +$a->strings["Save to Folder:"] = ""; +$a->strings["Where are you right now?"] = "Hvor er du akkurat nå?"; +$a->strings["Delete item(s)?"] = ""; +$a->strings["Post to Email"] = "Innlegg til e-post"; +$a->strings["Share"] = "Del"; +$a->strings["Upload photo"] = "Last opp bilde"; +$a->strings["upload photo"] = ""; +$a->strings["Attach file"] = "Legg ved fil"; +$a->strings["attach file"] = ""; +$a->strings["Insert web link"] = "Sett inn web-adresse"; +$a->strings["web link"] = ""; +$a->strings["Insert video link"] = ""; +$a->strings["video link"] = ""; +$a->strings["Insert audio link"] = ""; +$a->strings["audio link"] = ""; +$a->strings["Set your location"] = "Angi din plassering"; +$a->strings["set location"] = ""; +$a->strings["Clear browser location"] = "Fjern nettleserplassering"; +$a->strings["clear location"] = ""; +$a->strings["Set title"] = "Lagre tittel"; +$a->strings["Categories (comma-separated list)"] = ""; +$a->strings["Permission settings"] = "Tillatelser"; +$a->strings["permissions"] = ""; +$a->strings["CC: email addresses"] = "Kopi: e-postadresser"; +$a->strings["Public post"] = "Offentlig innlegg"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Eksempel: ola@example.com, kari@example.com"; +$a->strings["Preview"] = "forhåndsvisning"; +$a->strings["Post to Groups"] = ""; +$a->strings["Post to Contacts"] = ""; +$a->strings["Private post"] = ""; $a->strings["Friendica Notification"] = ""; $a->strings["Thank You,"] = ""; $a->strings["%s Administrator"] = ""; @@ -1978,75 +460,1164 @@ $a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from $a->strings["Name:"] = ""; $a->strings["Photo:"] = ""; $a->strings["Please visit %s to approve or reject the suggestion."] = ""; -$a->strings["Connect URL missing."] = ""; -$a->strings["This site is not configured to allow communications with other networks."] = "Dette nettverkets konfigurasjon tillater ikke kommunikasjon med andre nettverk."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Ingen passende kommunikasjonsprotokoller eller strømmer ble oppdaget."; -$a->strings["The profile address specified does not provide adequate information."] = "Den angitte profiladressen inneholder for lite information."; -$a->strings["An author or name was not found."] = "Fant ingen forfatter eller navn."; -$a->strings["No browser URL could be matched to this address."] = "Ingen nettleser-URL passet med denne adressen."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = ""; -$a->strings["Use mailto: in front of address to force email check."] = ""; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Den oppgitte profiladressen tilhører et nettverk som har blitt avskrudd på dette nettstedet."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Begrenset profil. Denne personen kan ikke motta direkte/personlige oppdateringer fra deg."; -$a->strings["Unable to retrieve contact information."] = "Ikke i stand til å hente kontaktinformasjon."; -$a->strings["following"] = "følger"; -$a->strings["A new person is sharing with you at "] = ""; -$a->strings["You have a new follower at "] = "Du har en ny følgesvenn på "; -$a->strings["Archives"] = ""; -$a->strings["An invitation is required."] = "En invitasjon er nødvendig."; -$a->strings["Invitation could not be verified."] = "Invitasjon kunne ikke bekreftes."; -$a->strings["Invalid OpenID url"] = "Ugyldig OpenID URL"; -$a->strings["Please enter the required information."] = "Vennligst skriv inn den nødvendige informasjonen."; -$a->strings["Please use a shorter name."] = "Vennligst bruk et kortere navn."; -$a->strings["Name too short."] = "Navnet er for kort."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Dette ser ikke ut til å være ditt full navn (Fornavn Etternavn)."; -$a->strings["Your email domain is not among those allowed on this site."] = "Ditt e-postdomene er ikke blant de som er tillat på dette stedet."; -$a->strings["Not a valid email address."] = "Ugyldig e-postadresse."; -$a->strings["Cannot use that email."] = "Kan ikke bruke den e-postadressen."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Ditt kallenavn kan bare inneholde \"a-z\", \"0-9\", \"-\", \"_\", og må også begynne med en bokstav."; -$a->strings["Nickname is already registered. Please choose another."] = "Kallenavnet er allerede registrert. Vennligst velg et annet."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = ""; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ALVORLIG FEIL: mislyktes med å lage sikkerhetsnøkler."; -$a->strings["An error occurred during registration. Please try again."] = "En feil oppstod under registreringen. Vennligst prøv igjen."; -$a->strings["An error occurred creating your default profile. Please try again."] = "En feil oppstod under opprettelsen av din standardprofil. Vennligst prøv igjen."; +$a->strings["[no subject]"] = "[ikke noe emne]"; +$a->strings["Wall Photos"] = "Veggbilder"; +$a->strings["Nothing new here"] = ""; +$a->strings["Clear notifications"] = ""; +$a->strings["Logout"] = "Logg ut"; +$a->strings["End this session"] = "Avslutt denne økten"; +$a->strings["Status"] = "Status"; +$a->strings["Your posts and conversations"] = "Dine innlegg og samtaler"; +$a->strings["Your profile page"] = ""; +$a->strings["Photos"] = "Bilder"; +$a->strings["Your photos"] = ""; +$a->strings["Events"] = "Hendelser"; +$a->strings["Your events"] = ""; +$a->strings["Personal notes"] = ""; +$a->strings["Your personal photos"] = ""; +$a->strings["Login"] = "Logg inn"; +$a->strings["Sign in"] = "Logg inn"; +$a->strings["Home"] = "Hjem"; +$a->strings["Home Page"] = "Hovedside"; +$a->strings["Register"] = "Registrer"; +$a->strings["Create an account"] = "Lag konto"; +$a->strings["Help"] = "Hjelp"; +$a->strings["Help and documentation"] = "Hjelp og dokumentasjon"; +$a->strings["Apps"] = "Programmer"; +$a->strings["Addon applications, utilities, games"] = "Tilleggsprorammer, verktøy, spill"; +$a->strings["Search site content"] = "Søk i nettstedets innhold"; +$a->strings["Community"] = "Fellesskap"; +$a->strings["Conversations on this site"] = "Samtaler på dette nettstedet"; +$a->strings["Directory"] = "Katalog"; +$a->strings["People directory"] = "Personkatalog"; +$a->strings["Network"] = "Nettverk"; +$a->strings["Conversations from your friends"] = "Samtaler fra dine venner"; +$a->strings["Network Reset"] = ""; +$a->strings["Load Network page with no filters"] = ""; +$a->strings["Introductions"] = "Introduksjoner"; +$a->strings["Friend Requests"] = ""; +$a->strings["Notifications"] = "Varslinger"; +$a->strings["See all notifications"] = ""; +$a->strings["Mark all system notifications seen"] = ""; +$a->strings["Messages"] = "Meldinger"; +$a->strings["Private mail"] = "Privat post"; +$a->strings["Inbox"] = "Innboks"; +$a->strings["Outbox"] = "Utboks"; +$a->strings["New Message"] = "Ny melding"; +$a->strings["Manage"] = "Behandle"; +$a->strings["Manage other pages"] = "Behandle andre sider"; +$a->strings["Delegations"] = ""; +$a->strings["Delegate Page Management"] = "Deleger sidebehandling"; +$a->strings["Settings"] = "Innstillinger"; +$a->strings["Account settings"] = "Kontoinnstillinger"; +$a->strings["Profiles"] = "Profiler"; +$a->strings["Manage/Edit Profiles"] = ""; +$a->strings["Contacts"] = "Kontakter"; +$a->strings["Manage/edit friends and contacts"] = "Behandle/endre venner og kontakter"; +$a->strings["Admin"] = "Administrator"; +$a->strings["Site setup and configuration"] = "Nettstedsoppsett og konfigurasjon"; +$a->strings["Navigation"] = ""; +$a->strings["Site map"] = ""; +$a->strings["Embedded content"] = ""; +$a->strings["Embedding disabled"] = "Innebygging avskrudd"; +$a->strings["Error decoding account file"] = ""; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; +$a->strings["Error! Cannot check nickname"] = ""; +$a->strings["User '%s' already exists on this server!"] = ""; +$a->strings["User creation error"] = ""; +$a->strings["User profile creation error"] = ""; +$a->strings["%d contact not imported"] = array( + 0 => "", + 1 => "", +); +$a->strings["Done. You can now login with your username and password"] = ""; $a->strings["Welcome "] = "Velkommen"; $a->strings["Please upload a profile photo."] = "Vennligst last opp et profilbilde."; $a->strings["Welcome back "] = "Velkommen tilbake"; $a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = ""; -$a->strings["stopped following"] = "sluttet å følge"; -$a->strings["Poke"] = ""; -$a->strings["View Status"] = ""; -$a->strings["View Profile"] = ""; -$a->strings["View Photos"] = ""; -$a->strings["Network Posts"] = ""; -$a->strings["Edit Contact"] = ""; -$a->strings["Send PM"] = "Send privat melding"; -$a->strings["%1\$s poked %2\$s"] = ""; -$a->strings["post/item"] = ""; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = ""; -$a->strings["Categories:"] = ""; -$a->strings["Filed under:"] = ""; -$a->strings["remove"] = ""; -$a->strings["Delete Selected Items"] = "Slette valgte elementer"; -$a->strings["Follow Thread"] = ""; -$a->strings["%s likes this."] = "%s liker dette."; -$a->strings["%s doesn't like this."] = "%s liker ikke dette."; -$a->strings["%2\$d people like this."] = "%2\$d personer liker dette."; -$a->strings["%2\$d people don't like this."] = "%2\$d personer liker ikke dette."; -$a->strings["and"] = "og"; -$a->strings[", and %d other people"] = ", og %d andre personer"; -$a->strings["%s like this."] = "%s liker dette."; -$a->strings["%s don't like this."] = "%s liker ikke dette."; -$a->strings["Visible to everybody"] = "Synlig for alle"; -$a->strings["Please enter a video link/URL:"] = ""; -$a->strings["Please enter an audio link/URL:"] = ""; -$a->strings["Tag term:"] = ""; -$a->strings["Where are you right now?"] = "Hvor er du akkurat nå?"; -$a->strings["Delete item(s)?"] = ""; -$a->strings["permissions"] = ""; -$a->strings["Click here to upgrade."] = ""; -$a->strings["This action exceeds the limits set by your subscription plan."] = ""; -$a->strings["This action is not available under your subscription plan."] = ""; +$a->strings["Profile not found."] = "Fant ikke profilen."; +$a->strings["Profile deleted."] = "Profil slettet."; +$a->strings["Profile-"] = "Profil-"; +$a->strings["New profile created."] = "Ny profil opprettet."; +$a->strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for kloning."; +$a->strings["Profile Name is required."] = "Profilnavn er påkrevet."; +$a->strings["Marital Status"] = ""; +$a->strings["Romantic Partner"] = ""; +$a->strings["Likes"] = ""; +$a->strings["Dislikes"] = ""; +$a->strings["Work/Employment"] = ""; +$a->strings["Religion"] = ""; +$a->strings["Political Views"] = ""; +$a->strings["Gender"] = ""; +$a->strings["Sexual Preference"] = ""; +$a->strings["Homepage"] = ""; +$a->strings["Interests"] = ""; +$a->strings["Address"] = ""; +$a->strings["Location"] = ""; +$a->strings["Profile updated."] = "Profil oppdatert."; +$a->strings[" and "] = ""; +$a->strings["public profile"] = ""; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; +$a->strings[" - Visit %1\$s's %2\$s"] = ""; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Skjul kontakten/vennen din fra folk som kan se denne profilen?"; +$a->strings["No"] = "Nei"; +$a->strings["Edit Profile Details"] = "Endre profildetaljer"; +$a->strings["Submit"] = "Lagre"; +$a->strings["Change Profile Photo"] = ""; +$a->strings["View this profile"] = "Vis denne profilen"; +$a->strings["Create a new profile using these settings"] = "Opprett en ny profil med disse innstillingene"; +$a->strings["Clone this profile"] = "Klon denne profilen"; +$a->strings["Delete this profile"] = "Slette denne profilen"; +$a->strings["Profile Name:"] = "Profilnavn:"; +$a->strings["Your Full Name:"] = "Ditt fulle navn:"; +$a->strings["Title/Description:"] = "Tittel/Beskrivelse:"; +$a->strings["Your Gender:"] = "Ditt kjønn:"; +$a->strings["Birthday (%s):"] = "Fødselsdag (%s):"; +$a->strings["Street Address:"] = "Gateadresse:"; +$a->strings["Locality/City:"] = "Plassering/by:"; +$a->strings["Postal/Zip Code:"] = "Postnummer:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Region/State:"] = "Region/fylke:"; +$a->strings[" Marital Status:"] = " Sivilstand:"; +$a->strings["Who: (if applicable)"] = "Hvem: (hvis gjeldende)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Nordmann, kari@example.com"; +$a->strings["Since [date]:"] = ""; +$a->strings["Homepage URL:"] = "Hjemmeside URL:"; +$a->strings["Religious Views:"] = "Religiøst ståsted:"; +$a->strings["Public Keywords:"] = "Offentlige nøkkelord:"; +$a->strings["Private Keywords:"] = "Private nøkkelord:"; +$a->strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Brukes for å foreslå mulige venner, kan ses av andre)"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Brukes for å søke i profiler, vises aldri til andre)"; +$a->strings["Tell us about yourself..."] = "Fortell oss om deg selv..."; +$a->strings["Hobbies/Interests"] = "Hobbier/interesser"; +$a->strings["Contact information and Social Networks"] = "Kontaktinformasjon og sosiale nettverk"; +$a->strings["Musical interests"] = "Musikksmak"; +$a->strings["Books, literature"] = "Bøker, litteratur"; +$a->strings["Television"] = "TV"; +$a->strings["Film/dance/culture/entertainment"] = "Film/dans/kultur/underholdning"; +$a->strings["Love/romance"] = "Kjærlighet/romanse"; +$a->strings["Work/employment"] = "Arbeid/ansatt hos"; +$a->strings["School/education"] = "Skole/utdanning"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Dette er din offentlige profil.
Den kan ses av alle på Internet."; +$a->strings["Age: "] = "Alder:"; +$a->strings["Edit/Manage Profiles"] = "Rediger/Behandle profiler"; +$a->strings["Change profile photo"] = "Endre profilbilde"; +$a->strings["Create New Profile"] = "Lag ny profil"; +$a->strings["Profile Image"] = "Profilbilde"; +$a->strings["visible to everybody"] = "synlig for alle"; +$a->strings["Edit visibility"] = "Endre synlighet"; +$a->strings["Permission denied"] = "Tilgang nektet"; +$a->strings["Invalid profile identifier."] = "Ugyldig profilidentifikator."; +$a->strings["Profile Visibility Editor"] = "Behandle profilsynlighet"; +$a->strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne."; +$a->strings["Visible To"] = "Synlig for"; +$a->strings["All Contacts (with secure profile access)"] = "Alle kontakter (med sikret profiltilgang)"; +$a->strings["Personal Notes"] = "Personlige notater"; +$a->strings["Public access denied."] = "Offentlig tilgang ikke tillatt."; +$a->strings["Access to this profile has been restricted."] = "Tilgang til denne profilen er blitt begrenset."; +$a->strings["Item has been removed."] = "Elementet har blitt slettet."; +$a->strings["Visit %s's profile [%s]"] = "Besøk %ss profil [%s]"; +$a->strings["Edit contact"] = "Endre kontakt"; +$a->strings["Contacts who are not members of a group"] = ""; +$a->strings["{0} wants to be your friend"] = "{0} ønsker å bli din venn"; +$a->strings["{0} sent you a message"] = "{0} sendte deg en melding"; +$a->strings["{0} requested registration"] = "{0} forespurte om registrering"; +$a->strings["{0} commented %s's post"] = "{0} kommenterte %s sitt innlegg"; +$a->strings["{0} liked %s's post"] = "{0} likte %s sitt innlegg"; +$a->strings["{0} disliked %s's post"] = "{0} likte ikke %s sitt innlegg"; +$a->strings["{0} is now friends with %s"] = "{0} er nå venner med %s"; +$a->strings["{0} posted"] = "{0} postet et innlegg"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} merket %s sitt innlegg med #%s"; +$a->strings["{0} mentioned you in a post"] = ""; +$a->strings["Theme settings updated."] = "Temainnstillinger oppdatert."; +$a->strings["Site"] = "Nettsted"; +$a->strings["Users"] = "Brukere"; +$a->strings["Plugins"] = "Tillegg"; +$a->strings["Themes"] = "Tema"; +$a->strings["DB updates"] = "Databaseoppdateringer"; +$a->strings["Logs"] = "Logger"; +$a->strings["Plugin Features"] = "Utvidelse - egenskaper"; +$a->strings["User registrations waiting for confirmation"] = "Brukerregistreringer venter på bekreftelse"; +$a->strings["Normal Account"] = "Vanlig konto"; +$a->strings["Soapbox Account"] = "Talerstol-konto"; +$a->strings["Community/Celebrity Account"] = "Gruppe-/kjendiskonto"; +$a->strings["Automatic Friend Account"] = "Automatisk vennekonto"; +$a->strings["Blog Account"] = "Bloggkonto"; +$a->strings["Private Forum"] = "Privat forum"; +$a->strings["Message queues"] = "Meldingskøer"; +$a->strings["Administration"] = "Administrasjon"; +$a->strings["Summary"] = "Oppsummering"; +$a->strings["Registered users"] = "Registrerte brukere"; +$a->strings["Pending registrations"] = "Ventende registreringer"; +$a->strings["Version"] = "Versjon"; +$a->strings["Active plugins"] = "Aktive tillegg"; +$a->strings["Site settings updated."] = "Nettstedets innstillinger er oppdatert."; +$a->strings["No special theme for mobile devices"] = "Ikke eget tema for mobile enheter"; +$a->strings["Never"] = "Aldri"; +$a->strings["Multi user instance"] = "Flerbrukerinstans"; +$a->strings["Closed"] = "Stengt"; +$a->strings["Requires approval"] = "Krever godkjenning"; +$a->strings["Open"] = "Åpen"; +$a->strings["No SSL policy, links will track page SSL state"] = "Ingen SSL-retningslinjer, lenker vil spore sidens SSL-tilstand"; +$a->strings["Force all links to use SSL"] = "Tving alle lenker til å bruke SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selvsignert sertifikat, bruk SSL bare til lokale lenker (ikke anbefalt)"; +$a->strings["Registration"] = "Registrering"; +$a->strings["File upload"] = "Last opp fil"; +$a->strings["Policies"] = "Retningslinjer"; +$a->strings["Advanced"] = "Avansert"; +$a->strings["Performance"] = "Ytelse"; +$a->strings["Site name"] = "Nettstedets navn"; +$a->strings["Banner/Logo"] = "Banner/logo"; +$a->strings["System language"] = "Systemspråk"; +$a->strings["System theme"] = "Systemtema"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard tema for systemet - kan overstyres av brukerprofiler - endre temainnstillinger"; +$a->strings["Mobile system theme"] = "Mobilt tema til systemet"; +$a->strings["Theme for mobile devices"] = "Tema for mobile enheter"; +$a->strings["SSL link policy"] = "Retningslinjer for SSL og lenker"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Avgjør om genererte lenker skal tvinges til å bruke SSL"; +$a->strings["'Share' element"] = "'Dele' element"; +$a->strings["Activates the bbcode element 'share' for repeating items."] = "Aktiverer BBCode-elementet 'dele' for å gjenta elementer."; +$a->strings["Hide help entry from navigation menu"] = "Skjul punktet om hjelp fra navigasjonsmenyen"; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Skjuler menypunktet for Hjelp-sidene fra navigasjonsmenyen. Du kan fremdeles få tilgang ved å bruke /help direkte."; +$a->strings["Single user instance"] = "Enkeltbrukerinstans"; +$a->strings["Make this instance multi-user or single-user for the named user"] = "Gjør denne instansen til flerbruker eller enkeltbruker for den navngitte brukeren"; +$a->strings["Maximum image size"] = "Maksimum bildestørrelse"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maksimal størrelse i bytes for opplastede bilder. Standard er 0, som betyr ingen størrelsesgrense."; +$a->strings["Maximum image length"] = "Maksimal bildelenge"; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maksimal lengde i pixler for den lengste siden til opplastede bilder. Standard er -1, some betyr ingen grense."; +$a->strings["JPEG image quality"] = "JPEG-bildekvalitet"; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Opplastede JPEG-er vil bli lagret med disse kvalitetsinnstillingene [0-100]. Standard er 100, som er høyeste kvalitet."; +$a->strings["Register policy"] = "Registrer retningslinjer"; +$a->strings["Maximum Daily Registrations"] = "Maksimalt antall daglige registreringer"; +$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Hvis registrering er tillat ovenfor, så vil dette angi maksimalt antall nye brukerregistreringer som aksepteres per dag. Hvis registrering er satt til stengt, så vil ikke denne innstillingen ha noen effekt."; +$a->strings["Register text"] = "Registrer tekst"; +$a->strings["Will be displayed prominently on the registration page."] = "Vil bli vist på en fremtredende måte på registreringssiden."; +$a->strings["Accounts abandoned after x days"] = "Kontoer forlatt etter x dager"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder om forlatte kontoer. Skriv 0 for ingen tidsgrense."; +$a->strings["Allowed friend domains"] = "Tillate vennedomener"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Kommaseparert liste med domener som har lov til å etablere vennskap med dette nettstedet.\nJokertegn aksepteres. Tom for å tillate alle domener."; +$a->strings["Allowed email domains"] = "Tillate e-postdomener"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er tillatt. Tom for å tillate alle domener."; +$a->strings["Block public"] = "Utesteng publikum"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; +$a->strings["Force publish"] = "Tving publisering"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = ""; +$a->strings["Global directory update URL"] = "URL for oppdatering av Global-katalog"; +$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; +$a->strings["Allow threaded items"] = ""; +$a->strings["Allow infinite level threading for items on this site."] = ""; +$a->strings["Private posts by default for new users"] = ""; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; +$a->strings["Don't include post content in email notifications"] = ""; +$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = ""; +$a->strings["Disallow public access to addons listed in the apps menu."] = ""; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; +$a->strings["Don't embed private images in posts"] = ""; +$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = ""; +$a->strings["Block multiple registrations"] = "Blokker flere registreringer"; +$a->strings["Disallow users to register additional accounts for use as pages."] = ""; +$a->strings["OpenID support"] = "OpenID-støtte"; +$a->strings["OpenID support for registration and logins."] = ""; +$a->strings["Fullname check"] = "Sjekk fullt navn"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = ""; +$a->strings["UTF-8 Regular expressions"] = "UTF-8 regulære uttrykk"; +$a->strings["Use PHP UTF8 regular expressions"] = ""; +$a->strings["Show Community Page"] = "Vis Felleskap-side"; +$a->strings["Display a Community page showing all recent public postings on this site."] = ""; +$a->strings["Enable OStatus support"] = "Aktiver Ostatus-støtte"; +$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; +$a->strings["OStatus conversation completion interval"] = ""; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; +$a->strings["Enable Diaspora support"] = ""; +$a->strings["Provide built-in Diaspora network compatibility."] = ""; +$a->strings["Only allow Friendica contacts"] = ""; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = ""; +$a->strings["Verify SSL"] = "Bekreft SSL"; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = ""; +$a->strings["Proxy user"] = "Brukernavn til mellomtjener"; +$a->strings["Proxy URL"] = "Mellomtjener URL"; +$a->strings["Network timeout"] = "Tidsavbrudd for nettverk"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; +$a->strings["Delivery interval"] = ""; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = ""; +$a->strings["Poll interval"] = ""; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; +$a->strings["Maximum Load Average"] = ""; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; +$a->strings["Use MySQL full text engine"] = ""; +$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = ""; +$a->strings["Path to item cache"] = ""; +$a->strings["Cache duration in seconds"] = ""; +$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = ""; +$a->strings["Path for lock file"] = ""; +$a->strings["Temp path"] = ""; +$a->strings["Base path to installation"] = ""; +$a->strings["Update has been marked successful"] = ""; +$a->strings["Executing %s failed. Check system logs."] = "Utføring av %s mislyktes. Sjekk systemlogger."; +$a->strings["Update %s was successfully applied."] = ""; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = ""; +$a->strings["Update function %s could not be found."] = ""; +$a->strings["No failed updates."] = "Ingen mislykkede oppdateringer."; +$a->strings["Failed Updates"] = "Mislykkede oppdateringer"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = ""; +$a->strings["Mark success (if update was manually applied)"] = ""; +$a->strings["Attempt to execute this update step automatically"] = ""; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "", + 1 => "", +); +$a->strings["%s user deleted"] = array( + 0 => "%s bruker slettet", + 1 => "%s brukere slettet", +); +$a->strings["User '%s' deleted"] = "Brukeren '%s' er slettet"; +$a->strings["User '%s' unblocked"] = "Brukeren '%s' er ikke blokkert"; +$a->strings["User '%s' blocked"] = "Brukeren '%s' er blokkert"; +$a->strings["select all"] = "velg alle"; +$a->strings["User registrations waiting for confirm"] = "Brukerregistreringer venter på bekreftelse"; +$a->strings["Request date"] = "Forespørselsdato"; +$a->strings["Name"] = "Navn"; +$a->strings["No registrations."] = "Ingen registreringer."; +$a->strings["Approve"] = "Godkjenn"; +$a->strings["Deny"] = "Nekt"; +$a->strings["Block"] = "Blokker"; +$a->strings["Unblock"] = "Ikke blokker"; +$a->strings["Site admin"] = ""; +$a->strings["Account expired"] = ""; +$a->strings["Register date"] = "Registreringsdato"; +$a->strings["Last login"] = "Siste innlogging"; +$a->strings["Last item"] = "Siste element"; +$a->strings["Account"] = "Konto"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valgte brukere vil bli slettet!\\n\\nAlt disse brukerne har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse brukerne?"; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Brukeren {0} vil bli slettet!\\n\\nAlt denne brukeren har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne brukeren?"; +$a->strings["Plugin %s disabled."] = "Tillegget %s er avskrudd."; +$a->strings["Plugin %s enabled."] = "Tillegget %s er aktivert."; +$a->strings["Disable"] = "Skru av"; +$a->strings["Enable"] = "Aktiver"; +$a->strings["Toggle"] = "Veksle"; +$a->strings["Author: "] = ""; +$a->strings["Maintainer: "] = ""; +$a->strings["No themes found."] = ""; +$a->strings["Screenshot"] = ""; +$a->strings["[Experimental]"] = ""; +$a->strings["[Unsupported]"] = ""; +$a->strings["Log settings updated."] = "Logginnstillinger er oppdatert."; +$a->strings["Clear"] = "Tøm"; +$a->strings["Enable Debugging"] = ""; +$a->strings["Log file"] = "Loggfil"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = ""; +$a->strings["Log level"] = "Loggnivå"; +$a->strings["Update now"] = "Oppdater nå"; +$a->strings["Close"] = "Lukk"; +$a->strings["FTP Host"] = "FTP-tjener"; +$a->strings["FTP Path"] = "FTP-sti"; +$a->strings["FTP User"] = "FTP-bruker"; +$a->strings["FTP Password"] = "FTP-passord"; +$a->strings["Unable to locate original post."] = "Mislyktes med å lokalisere opprinnelig melding."; +$a->strings["Empty post discarded."] = "Tom melding forkastet."; +$a->strings["System error. Post not saved."] = "Systemfeil. Meldingen ble ikke lagret."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = ""; +$a->strings["You may visit them online at %s"] = "Du kan besøke dem online på %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Vennligst kontakt avsenderen ved å svare på denne meldingen hvis du ikke ønsker å motta disse meldingene."; +$a->strings["%s posted an update."] = "%s postet en oppdatering."; +$a->strings["Friends of %s"] = "Venner av %s"; +$a->strings["No friends to display."] = "Ingen venner å vise."; +$a->strings["Remove term"] = "Fjern uttrykk"; +$a->strings["No results."] = "Fant ikke noe."; +$a->strings["Authorize application connection"] = "Tillat forbindelse til program"; +$a->strings["Return to your app and insert this Securty Code:"] = "Gå tilbake til din app og legg inn denne sikkerhetskoden:"; +$a->strings["Please login to continue."] = "Vennligst logg inn for å fortsette."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate at dette programmet får tilgang til dine innlegg og kontakter, og/eller kan opprette nye innlegg for deg?"; +$a->strings["Registration details for %s"] = "Registeringsdetaljer for %s"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Vellykket registrering. Vennligst sjekk e-posten din for videre instruksjoner."; +$a->strings["Failed to send email message. Here is the message that failed."] = "Mislyktes med å sende e-postmelding. Her er meldingen som mislyktes."; +$a->strings["Your registration can not be processed."] = "Din registrering kan ikke behandles."; +$a->strings["Registration request at %s"] = "Henvendelse om registrering ved %s"; +$a->strings["Your registration is pending approval by the site owner."] = "Din registrering venter på godkjenning fra eier av stedet."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = ""; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kan (valgfritt) fylle ut dette skjemaet via OpenID ved å oppgi din OpenID og klikke \"Registrer\"."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Hvis du ikke er kjent med OpenID, vennligst la feltet stå tomt, og fyll ut de andre feltene."; +$a->strings["Your OpenID (optional): "] = "Din OpenID (valgfritt):"; +$a->strings["Include your profile in member directory?"] = "Legg til profilen din i medlemskatalogen?"; +$a->strings["Membership on this site is by invitation only."] = "Medlemskap ved dette nettstedet skjer bare på invitasjon."; +$a->strings["Your invitation ID: "] = "Din invitasjons-ID:"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Ditt fulle navn (f.eks. Ola Nordmann):"; +$a->strings["Your Email Address: "] = "Din e-postadresse:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Velg et kallenavn til profilen. Dette må begynne med en bokstav. Din profiladresse på dette stedet vil bli \"kallenavn@\$sitename\"."; +$a->strings["Choose a nickname: "] = "Velg et kallenavn:"; +$a->strings["Account approved."] = "Konto godkjent."; +$a->strings["Registration revoked for %s"] = "Registreringen til %s er trukket tilbake"; +$a->strings["Please login."] = "Vennligst logg inn."; +$a->strings["Item not available."] = "Elementet er ikke tilgjengelig."; +$a->strings["Item was not found."] = "Elementet ble ikke funnet."; +$a->strings["Remove My Account"] = "Slett min konto"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dette vil slette din konto fullstendig. Når dette er gjort kan den ikke gjenopprettes."; +$a->strings["Please enter your password for verification:"] = "Vennligst skriv inn ditt passord for å bekrefte:"; +$a->strings["Source (bbcode) text:"] = "BBcode kildetekst:"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Diaspora kildetekst å konvertere til BBcode:"; +$a->strings["Source input: "] = "Kilde-input:"; +$a->strings["bb2html (raw HTML): "] = "bb2html (rå HTML):"; +$a->strings["bb2html: "] = "bb2html:"; +$a->strings["bb2html2bb: "] = "bb2html2bb:"; +$a->strings["bb2md: "] = "bb2md:"; +$a->strings["bb2md2html: "] = "bb2md2html:"; +$a->strings["bb2dia2bb: "] = "bb2dia2bb:"; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb:"; +$a->strings["Source input (Diaspora format): "] = "Diaspora-formatert kilde-input:"; +$a->strings["diaspora2bb: "] = "diaspora2bb:"; +$a->strings["Common Friends"] = ""; +$a->strings["No contacts in common."] = ""; +$a->strings["You must be logged in to use addons. "] = ""; +$a->strings["Applications"] = "Programmer"; +$a->strings["No installed applications."] = "Ingen installerte programmer."; +$a->strings["Could not access contact record."] = "Fikk ikke tilgang til kontaktposten."; +$a->strings["Could not locate selected profile."] = "Kunne ikke lokalisere valgt profil."; +$a->strings["Contact updated."] = "Kontakt oppdatert."; +$a->strings["Failed to update contact record."] = "Mislyktes med å oppdatere kontaktposten."; +$a->strings["Contact has been blocked"] = "Kontakten er blokkert"; +$a->strings["Contact has been unblocked"] = "Kontakten er ikke blokkert lenger"; +$a->strings["Contact has been ignored"] = "Kontakten er ignorert"; +$a->strings["Contact has been unignored"] = "Kontakten er ikke ignorert lenger"; +$a->strings["Contact has been archived"] = ""; +$a->strings["Contact has been unarchived"] = ""; +$a->strings["Do you really want to delete this contact?"] = ""; +$a->strings["Contact has been removed."] = "Kontakten er fjernet."; +$a->strings["You are mutual friends with %s"] = "Du er gjensidig venn med %s"; +$a->strings["You are sharing with %s"] = "Du deler med %s"; +$a->strings["%s is sharing with you"] = "%s deler med deg"; +$a->strings["Private communications are not available for this contact."] = "Privat kommunikasjon er ikke tilgjengelig mot denne kontakten."; +$a->strings["(Update was successful)"] = "(Oppdatering vellykket)"; +$a->strings["(Update was not successful)"] = "(Oppdatering mislykket)"; +$a->strings["Suggest friends"] = "Foreslå venner"; +$a->strings["Network type: %s"] = "Nettverkstype: %s"; +$a->strings["View all contacts"] = "Vis alle kontakter"; +$a->strings["Toggle Blocked status"] = ""; +$a->strings["Unignore"] = "Fjern ignorering"; +$a->strings["Ignore"] = "Ignorer"; +$a->strings["Toggle Ignored status"] = ""; +$a->strings["Unarchive"] = ""; +$a->strings["Archive"] = ""; +$a->strings["Toggle Archive status"] = ""; +$a->strings["Repair"] = "Reparer"; +$a->strings["Advanced Contact Settings"] = ""; +$a->strings["Communications lost with this contact!"] = ""; +$a->strings["Contact Editor"] = "Endre kontakt"; +$a->strings["Profile Visibility"] = "Profilens synlighet"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vennligst velg profilen du ønsker å vise til %s når denne ser profilen på en sikret måte."; +$a->strings["Contact Information / Notes"] = "Kontaktinformasjon/-notater"; +$a->strings["Edit contact notes"] = "Endre kontaktnotater"; +$a->strings["Block/Unblock contact"] = "Blokker kontakt/fjern blokkering for kontakt"; +$a->strings["Ignore contact"] = "Ignorer kontakt"; +$a->strings["Repair URL settings"] = "Reparer URL-innstillinger"; +$a->strings["View conversations"] = "Vis samtaler"; +$a->strings["Delete contact"] = "Slett kontakt"; +$a->strings["Last update:"] = "Siste oppdatering:"; +$a->strings["Update public posts"] = "Oppdater offentlige innlegg"; +$a->strings["Currently blocked"] = "Blokkert nå"; +$a->strings["Currently ignored"] = "Ignorert nå"; +$a->strings["Currently archived"] = ""; +$a->strings["Hide this contact from others"] = "Skjul denne kontakten for andre"; +$a->strings["Replies/likes to your public posts may still be visible"] = ""; +$a->strings["Suggestions"] = ""; +$a->strings["Suggest potential friends"] = ""; +$a->strings["All Contacts"] = "Alle kontakter"; +$a->strings["Show all contacts"] = ""; +$a->strings["Unblocked"] = ""; +$a->strings["Only show unblocked contacts"] = ""; +$a->strings["Blocked"] = ""; +$a->strings["Only show blocked contacts"] = ""; +$a->strings["Ignored"] = ""; +$a->strings["Only show ignored contacts"] = ""; +$a->strings["Archived"] = ""; +$a->strings["Only show archived contacts"] = ""; +$a->strings["Hidden"] = ""; +$a->strings["Only show hidden contacts"] = ""; +$a->strings["Mutual Friendship"] = "Gjensidig vennskap"; +$a->strings["is a fan of yours"] = "er en tilhenger av deg"; +$a->strings["you are a fan of"] = "du er en tilhenger av"; +$a->strings["Search your contacts"] = "Søk i dine kontakter"; +$a->strings["Finding: "] = "Fant:"; +$a->strings["everybody"] = "alle"; +$a->strings["Additional features"] = ""; +$a->strings["Display settings"] = ""; +$a->strings["Connector settings"] = "Koblingsinnstillinger"; +$a->strings["Plugin settings"] = "Tilleggsinnstillinger"; +$a->strings["Connected apps"] = "Tilkoblede programmer"; +$a->strings["Export personal data"] = "Eksporter personlige data"; +$a->strings["Remove account"] = ""; +$a->strings["Missing some important data!"] = "Mangler noen viktige data!"; +$a->strings["Update"] = "Oppdater"; +$a->strings["Failed to connect with email account using the settings provided."] = "Mislyktes i å opprette forbindelse med e-postkontoen med de oppgitte innstillingene."; +$a->strings["Email settings updated."] = "E-postinnstillinger er oppdatert."; +$a->strings["Features updated"] = ""; +$a->strings["Passwords do not match. Password unchanged."] = "Passordene er ikke like. Passord uendret."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Tomme passord er ikke lov. Passord uendret."; +$a->strings["Wrong password."] = ""; +$a->strings["Password changed."] = "Passord endret."; +$a->strings["Password update failed. Please try again."] = "Passordoppdatering mislyktes. Vennligst prøv igjen."; +$a->strings[" Please use a shorter name."] = "Vennligst bruk et kortere navn."; +$a->strings[" Name too short."] = "Navnet er for kort."; +$a->strings["Wrong Password"] = ""; +$a->strings[" Not valid email."] = "Ugyldig e-postadresse."; +$a->strings[" Cannot change to that email."] = "Kan ikke endre til den e-postadressen."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = ""; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = ""; +$a->strings["Settings updated."] = "Innstillinger oppdatert."; +$a->strings["Add application"] = "Legg til program"; +$a->strings["Consumer Key"] = "Consumer Key"; +$a->strings["Consumer Secret"] = "Consumer Secret"; +$a->strings["Redirect"] = "Omdiriger"; +$a->strings["Icon url"] = "Ikon URL"; +$a->strings["You can't edit this application."] = "Du kan ikke redigere dette programmet."; +$a->strings["Connected Apps"] = "Tilkoblede programmer"; +$a->strings["Edit"] = "Endre"; +$a->strings["Client key starts with"] = "Klientnøkkelen starter med"; +$a->strings["No name"] = "Ingen navn"; +$a->strings["Remove authorization"] = "Fjern tillatelse"; +$a->strings["No Plugin settings configured"] = "Ingen tilleggsinnstillinger konfigurert"; +$a->strings["Plugin Settings"] = "Tilleggsinnstillinger"; +$a->strings["Off"] = ""; +$a->strings["On"] = ""; +$a->strings["Additional Features"] = ""; +$a->strings["Built-in support for %s connectivity is %s"] = "Innebygget støtte for %s forbindelse er %s"; +$a->strings["enabled"] = "aktivert"; +$a->strings["disabled"] = "avskrudd"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "E-posttilgang er avskrudd på dette stedet."; +$a->strings["Connector Settings"] = "Koblingsinnstillinger"; +$a->strings["Email/Mailbox Setup"] = "E-post-/postboksinnstillinger"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Hvis du ønsker å kommunisere med e-postkontakter via denne tjenesten (frivillig), vennligst oppgi hvordan din postboks kontaktes."; +$a->strings["Last successful email check:"] = "Siste vellykkede e-postsjekk:"; +$a->strings["IMAP server name:"] = "IMAP-tjeners navn:"; +$a->strings["IMAP port:"] = "IMAP port:"; +$a->strings["Security:"] = "Sikkerhet:"; +$a->strings["None"] = "Ingen"; +$a->strings["Email login name:"] = "E-post brukernavn:"; +$a->strings["Email password:"] = "E-post passord:"; +$a->strings["Reply-to address:"] = "Svar-til-adresse:"; +$a->strings["Send public posts to all email contacts:"] = "Send offentlige meldinger til alle e-postkontakter:"; +$a->strings["Action after import:"] = ""; +$a->strings["Mark as seen"] = ""; +$a->strings["Move to folder"] = ""; +$a->strings["Move to folder:"] = ""; +$a->strings["Display Settings"] = ""; +$a->strings["Display Theme:"] = "Vis tema:"; +$a->strings["Mobile Theme:"] = ""; +$a->strings["Update browser every xx seconds"] = ""; +$a->strings["Minimum of 10 seconds, no maximum"] = ""; +$a->strings["Number of items to display per page:"] = ""; +$a->strings["Maximum of 100 items"] = ""; +$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; +$a->strings["Don't show emoticons"] = ""; +$a->strings["Normal Account Page"] = ""; +$a->strings["This account is a normal personal profile"] = "Denne kontoen er en vanlig personlig profil"; +$a->strings["Soapbox Page"] = ""; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med kun leserettigheter"; +$a->strings["Community Forum/Celebrity Account"] = ""; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med lese- og skriverettigheter"; +$a->strings["Automatic Friend Page"] = ""; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Automatisk godkjenning av alle forespørsler om forbindelse/venner som venner"; +$a->strings["Private Forum [Experimental]"] = ""; +$a->strings["Private forum - approved members only"] = ""; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Valgfritt) Tillat denne OpenID-en å logge inn i denne kontoen."; +$a->strings["Publish your default profile in your local site directory?"] = "Skal standardprofilen din publiseres i katalogen til nettstedet ditt?"; +$a->strings["Publish your default profile in the global social directory?"] = "Skal standardprofilen din publiseres i den globale sosiale katalogen?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Skjul kontakt-/venne-listen din for besøkende til standardprofilen din?"; +$a->strings["Hide your profile details from unknown viewers?"] = ""; +$a->strings["Allow friends to post to your profile page?"] = "Tillat venner å poste innlegg på din profilside?"; +$a->strings["Allow friends to tag your posts?"] = "Tillat venner å merke dine innlegg?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = ""; +$a->strings["Permit unknown people to send you private mail?"] = ""; +$a->strings["Profile is not published."] = "Profilen er ikke publisert."; +$a->strings["or"] = "eller"; +$a->strings["Your Identity Address is"] = "Din identitetsadresse er"; +$a->strings["Automatically expire posts after this many days:"] = ""; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Tomme innlegg utgår ikke. Utgåtte innlegg slettes."; +$a->strings["Advanced expiration settings"] = ""; +$a->strings["Advanced Expiration"] = ""; +$a->strings["Expire posts:"] = ""; +$a->strings["Expire personal notes:"] = ""; +$a->strings["Expire starred posts:"] = ""; +$a->strings["Expire photos:"] = ""; +$a->strings["Only expire posts by others:"] = ""; +$a->strings["Account Settings"] = "Kontoinnstillinger"; +$a->strings["Password Settings"] = "Passordinnstillinger"; +$a->strings["New Password:"] = "Nytt passord:"; +$a->strings["Confirm:"] = "Bekreft:"; +$a->strings["Leave password fields blank unless changing"] = "La passordfeltene stå tomme hvis du ikke skal bytte"; +$a->strings["Current Password:"] = ""; +$a->strings["Your current password to confirm the changes"] = ""; +$a->strings["Password:"] = ""; +$a->strings["Basic Settings"] = "Grunninnstillinger"; +$a->strings["Email Address:"] = "E-postadresse:"; +$a->strings["Your Timezone:"] = "Din tidssone:"; +$a->strings["Default Post Location:"] = "Standard oppholdssted når du poster:"; +$a->strings["Use Browser Location:"] = "Bruk nettleserens oppholdssted:"; +$a->strings["Security and Privacy Settings"] = "Sikkerhet og privatlivsinnstillinger"; +$a->strings["Maximum Friend Requests/Day:"] = "Maksimum venneforespørsler/dag:"; +$a->strings["(to prevent spam abuse)"] = "(for å forhindre søppelpost)"; +$a->strings["Default Post Permissions"] = "Standardtillatelser ved posting"; +$a->strings["(click to open/close)"] = "(klikk for å åpne/lukke)"; +$a->strings["Show to Groups"] = ""; +$a->strings["Show to Contacts"] = ""; +$a->strings["Default Private Post"] = ""; +$a->strings["Default Public Post"] = ""; +$a->strings["Default Permissions for New Posts"] = ""; +$a->strings["Maximum private messages per day from unknown people:"] = ""; +$a->strings["Notification Settings"] = "Beskjedinnstillinger"; +$a->strings["By default post a status message when:"] = ""; +$a->strings["accepting a friend request"] = ""; +$a->strings["joining a forum/community"] = ""; +$a->strings["making an interesting profile change"] = ""; +$a->strings["Send a notification email when:"] = "Send en e-post med beskjed når:"; +$a->strings["You receive an introduction"] = "Du mottar en introduksjon"; +$a->strings["Your introductions are confirmed"] = "Dine introduksjoner er bekreftet"; +$a->strings["Someone writes on your profile wall"] = "Noen skriver på veggen til profilen din"; +$a->strings["Someone writes a followup comment"] = "Noen skriver en oppfølgingskommentar"; +$a->strings["You receive a private message"] = "Du mottar en privat melding"; +$a->strings["You receive a friend suggestion"] = ""; +$a->strings["You are tagged in a post"] = ""; +$a->strings["You are poked/prodded/etc. in a post"] = ""; +$a->strings["Advanced Account/Page Type Settings"] = ""; +$a->strings["Change the behaviour of this account for special situations"] = ""; +$a->strings["link"] = ""; +$a->strings["Contact settings applied."] = "Kontaktinnstillinger i bruk."; +$a->strings["Contact update failed."] = "Kontaktoppdatering mislyktes."; +$a->strings["Contact not found."] = "Kontakt ikke funnet."; +$a->strings["Repair Contact Settings"] = "Reparer kontaktinnstillinger"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ADVARSEL: Dette er meget avansert og hvis du skriver feil informasjon her, så kan kommunikasjonen med denne kontakten slutte å virke."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Vennligst bruk Tilbake-knappen i nettleseren din hvis du er usikker på hva du bør gjøre på denne siden."; +$a->strings["Return to contact editor"] = ""; +$a->strings["Account Nickname"] = "Konto Kallenavn"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Merkelappnavn - overstyrer Navn/Kallenavn"; +$a->strings["Account URL"] = "Konto URL"; +$a->strings["Friend Request URL"] = "Venneforespørsel URL"; +$a->strings["Friend Confirm URL"] = "Vennebekreftelse URL"; +$a->strings["Notification Endpoint URL"] = "Endepunkt URL for beskjed"; +$a->strings["Poll/Feed URL"] = "Poll/Feed URL"; +$a->strings["New photo from this URL"] = "Nytt bilde fra denne URL-en"; +$a->strings["No potential page delegates located."] = ""; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Delegater kan behandle alle sider ved denne kontoen/siden, bortsett fra grunnleggende kontoinnstillinger. Vennligst ikke deleger din personlige konto til noen som du ikke stoler fullt og fast på."; +$a->strings["Existing Page Managers"] = "Eksisterende sidebehandlere"; +$a->strings["Existing Page Delegates"] = ""; +$a->strings["Potential Delegates"] = ""; +$a->strings["Remove"] = "Slett"; +$a->strings["Add"] = ""; +$a->strings["No entries."] = ""; +$a->strings["Poke/Prod"] = ""; +$a->strings["poke, prod or do other things to somebody"] = ""; +$a->strings["Recipient"] = ""; +$a->strings["Choose what you wish to do to recipient"] = ""; +$a->strings["Make this post private"] = ""; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = ""; +$a->strings["Response from remote site was not understood."] = "Forstod ikke svaret fra det andre stedet."; +$a->strings["Unexpected response from remote site: "] = "Uventet svar fra det andre stedet:"; +$a->strings["Confirmation completed successfully."] = "Sending av bekreftelse var vellykket. "; +$a->strings["Remote site reported: "] = "Det andre stedet rapporterte:"; +$a->strings["Temporary failure. Please wait and try again."] = "Midlertidig feil. Vennligst vent og prøv igjen."; +$a->strings["Introduction failed or was revoked."] = "Introduksjon mislyktes eller ble trukket tilbake."; +$a->strings["Unable to set contact photo."] = "Fikk ikke satt kontaktbilde."; +$a->strings["No user record found for '%s' "] = "Ingen brukerregistrering funnet for '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "Krypteringsnøkkelen til nettstedet vårt ser ut til å være ødelagt."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "En tom nettsteds-URL ble oppgitt eller URL-en kunne ikke dekrypteres av oss."; +$a->strings["Contact record was not found for you on our site."] = "Kontaktinformasjon om deg ble ikke funnet på vårt nettsted."; +$a->strings["Site public key not available in contact record for URL %s."] = ""; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID-en som ble oppgitt av ditt system har en duplikat i vårt system. Det bør virke hvis du prøver igjen."; +$a->strings["Unable to set your contact credentials on our system."] = "Får ikke lagret din kontaktlegitamasjon på vårt system."; +$a->strings["Unable to update your contact profile details on our system"] = "Får ikke oppdatert kontaktdetaljene dine på vårt system."; +$a->strings["Connection accepted at %s"] = "Tilkobling godtatt på %s"; +$a->strings["%1\$s has joined %2\$s"] = ""; +$a->strings["%1\$s welcomes %2\$s"] = ""; +$a->strings["This introduction has already been accepted."] = "Denne introduksjonen har allerede blitt akseptert."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Profilstedet er ikke gyldig og inneholder ikke profilinformasjon."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Advarsel: profilstedet har ikke identifiserbart eiernavn."; +$a->strings["Warning: profile location has no profile photo."] = "Advarsel: profilstedet har ikke noe profilbilde."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "one: %d nødvendig parameter ble ikke funnet på angitt sted", + 1 => "other: %d nødvendige parametre ble ikke funnet på angitt sted", +); +$a->strings["Introduction complete."] = "Introduksjon ferdig."; +$a->strings["Unrecoverable protocol error."] = "Uopprettelig protokollfeil."; +$a->strings["Profile unavailable."] = "Profil utilgjengelig."; +$a->strings["%s has received too many connection requests today."] = "%s har mottatt for mange kontaktforespørsler idag."; +$a->strings["Spam protection measures have been invoked."] = "Tiltak mot søppelpost har blitt iverksatt."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Venner anbefales å prøve igjen om 24 timer."; +$a->strings["Invalid locator"] = "Ugyldig stedsangivelse"; +$a->strings["Invalid email address."] = "Ugyldig e-postadresse."; +$a->strings["This account has not been configured for email. Request failed."] = "Denne kontoen er ikke konfigurert for e-post. Forespørsel mislyktes."; +$a->strings["Unable to resolve your name at the provided location."] = "Ikke i stand til å avgjøre navnet ditt hos det oppgitte stedet."; +$a->strings["You have already introduced yourself here."] = "Du har allerede introdusert deg selv her."; +$a->strings["Apparently you are already friends with %s."] = "Du er visst allerede venn med %s."; +$a->strings["Invalid profile URL."] = "Ugyldig profil-URL."; +$a->strings["Your introduction has been sent."] = "Din introduksjon er sendt."; +$a->strings["Please login to confirm introduction."] = "Vennligst logg inn for å bekrefte introduksjonen."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Feil identitet er logget inn for øyeblikket. Vennligst logg inn i denne profilen."; +$a->strings["Hide this contact"] = "Skjul denne kontakten"; +$a->strings["Welcome home %s."] = "Velkommen hjem %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Vennligst bekreft din introduksjons-/forbindelses- forespørsel til %s."; +$a->strings["Confirm"] = "Bekreft"; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vennligst skriv inn din identitetsadresse fra en av følgende støttede sosiale nettverk:"; +$a->strings["Connect as an email follower (Coming soon)"] = "Koble til som en e-postfølgesvenn (Kommer snart)"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Hvis du ennå ikke er en del av den frie sosiale webben, følg denne lenken for å finne et offentlig Friendica-nettsted og bli med oss idag."; +$a->strings["Friend/Connection Request"] = "Venne-/Koblings-forespørsel"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Eksempler: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Vennligst svar på følgende:"; +$a->strings["Does %s know you?"] = "Kjenner %s deg?"; +$a->strings["Add a personal note:"] = "Legg til en personlig melding:"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federeated Social Web"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- vennligst ikke bruk dette skjemaet. I stedet skriver du %s inn søkelinjen i Diaspora."; +$a->strings["Your Identity Address:"] = "Din identitetsadresse:"; +$a->strings["Submit Request"] = "Send forespørsel"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; +$a->strings["Global Directory"] = "Global katalog"; +$a->strings["Find on this site"] = ""; +$a->strings["Site Directory"] = "Stedets katalog"; +$a->strings["Gender: "] = "Kjønn:"; +$a->strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjulte)."; +$a->strings["Do you really want to delete this suggestion?"] = ""; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; +$a->strings["Ignore/Hide"] = "Ignorér/Skjul"; +$a->strings["People Search"] = "Personsøk"; +$a->strings["No matches"] = "Ingen treff"; +$a->strings["No videos selected"] = ""; +$a->strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset."; +$a->strings["View Album"] = "Vis album"; +$a->strings["Recent Videos"] = ""; +$a->strings["Upload New Videos"] = ""; +$a->strings["Tag removed"] = "Fjernet tag"; +$a->strings["Remove Item Tag"] = "Fjern tag"; +$a->strings["Select a tag to remove: "] = "Velg en tag å fjerne:"; +$a->strings["Item not found"] = "Fant ikke elementet"; +$a->strings["Edit post"] = "Endre innlegg"; +$a->strings["Event title and start time are required."] = ""; +$a->strings["l, F j"] = ""; +$a->strings["Edit event"] = "Rediger hendelse"; +$a->strings["Create New Event"] = "Lag ny hendelse"; +$a->strings["Previous"] = "Forrige"; +$a->strings["Next"] = "Neste"; +$a->strings["hour:minute"] = "time:minutt"; +$a->strings["Event details"] = "Hendelsesdetaljer"; +$a->strings["Format is %s %s. Starting date and Title are required."] = ""; +$a->strings["Event Starts:"] = "Hendelsen starter:"; +$a->strings["Required"] = ""; +$a->strings["Finish date/time is not known or not relevant"] = "Avslutningsdato/-tid er ukjent eller ikke relevant"; +$a->strings["Event Finishes:"] = "Hendelsen slutter:"; +$a->strings["Adjust for viewer timezone"] = "Tilpass til iakttakerens tidssone"; +$a->strings["Description:"] = "Beskrivelse:"; +$a->strings["Title:"] = ""; +$a->strings["Share this event"] = "Del denne hendelsen"; +$a->strings["Files"] = ""; +$a->strings["Export account"] = ""; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = ""; +$a->strings["Export all"] = ""; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = ""; +$a->strings["- select -"] = ""; +$a->strings["Import"] = ""; +$a->strings["Move account"] = ""; +$a->strings["You can import an account from another Friendica server."] = ""; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = ""; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = ""; +$a->strings["Account file"] = ""; +$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = ""; +$a->strings["[Embedded content - reload page to view]"] = "[Innebygget innhold - hent siden på nytt for å se det]"; +$a->strings["Contact added"] = ""; +$a->strings["This is Friendica, version"] = ""; +$a->strings["running at web location"] = "kjører på web-plassering"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = ""; +$a->strings["Bug reports and issues: please visit"] = "Feilrapporter og problemer: vennligst besøk"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = ""; +$a->strings["Installed plugins/addons/apps:"] = ""; +$a->strings["No installed plugins/addons/apps"] = "Ingen installerte plugins/tillegg/apper"; +$a->strings["Friend suggestion sent."] = "Venneforslag sendt."; +$a->strings["Suggest Friends"] = "Foreslå venner"; +$a->strings["Suggest a friend for %s"] = "Foreslå en venn for %s"; +$a->strings["Group created."] = "Gruppen er laget."; +$a->strings["Could not create group."] = "Kunne ikke lage gruppen."; +$a->strings["Group not found."] = "Fant ikke gruppen."; +$a->strings["Group name changed."] = "Gruppenavnet er endret"; +$a->strings["Create a group of contacts/friends."] = "Lag en gruppe med kontakter/venner."; +$a->strings["Group Name: "] = "Gruppenavn:"; +$a->strings["Group removed."] = "Gruppe fjernet."; +$a->strings["Unable to remove group."] = "Mislyktes med å fjerne gruppe."; +$a->strings["Group Editor"] = "Gruppebehandler"; +$a->strings["Members"] = "Medlemmer"; +$a->strings["No profile"] = "Ingen profil"; +$a->strings["Help:"] = "Hjelp:"; +$a->strings["Not Found"] = "Ikke funnet"; +$a->strings["Page not found."] = "Fant ikke siden."; +$a->strings["No contacts."] = "Ingen kontakter."; +$a->strings["Welcome to %s"] = "Velkommen til %s"; +$a->strings["Access denied."] = ""; +$a->strings["File exceeds size limit of %d"] = "Filstørrelsen er større enn begrensning på %d"; +$a->strings["File upload failed."] = "Opplasting av filen mislyktes."; +$a->strings["Image exceeds size limit of %d"] = "Bildets størrelse overstiger størrelsesbegrensningen på %d"; +$a->strings["Unable to process image."] = "Ikke i stand til å behandle bildet."; +$a->strings["Image upload failed."] = "Mislyktes med å laste opp bilde."; +$a->strings["Total invitation limit exceeded."] = ""; +$a->strings["%s : Not a valid email address."] = "%s: Ugyldig e-postadresse."; +$a->strings["Please join us on Friendica"] = ""; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; +$a->strings["%s : Message delivery failed."] = "%s: Mislyktes med å levere meldingen."; +$a->strings["%d message sent."] = array( + 0 => "one: %d melding sendt.", + 1 => "other: %d meldinger sendt.", +); +$a->strings["You have no more invitations available"] = "Du har ingen flere tilgjengelige invitasjoner"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = ""; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = ""; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = ""; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Vi beklager. Dette systemet er for øyeblikket ikke konfigurert for forbindelser med andre offentlige nettsteder eller å invitere medlemmer."; +$a->strings["Send invitations"] = "Send invitasjoner"; +$a->strings["Enter email addresses, one per line:"] = "Skriv e-postadresser, en per linje:"; +$a->strings["Your message:"] = "Din melding:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = ""; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du må oppgi denne invitasjonskoden: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Når du har registrert, vennligst kontakt meg via min profilside på:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = ""; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Antall daglige veggmeldinger for %s er overskredet. Melding mislyktes."; +$a->strings["No recipient selected."] = "Ingen mottaker valgt."; +$a->strings["Unable to check your home location."] = ""; +$a->strings["Message could not be sent."] = "Meldingen kunne ikke sendes."; +$a->strings["Message collection failure."] = ""; +$a->strings["Message sent."] = "Melding sendt."; +$a->strings["No recipient."] = ""; +$a->strings["Send Private Message"] = "Send privat melding"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = ""; +$a->strings["To:"] = "Til:"; +$a->strings["Subject:"] = "Emne:"; +$a->strings["Time Conversion"] = "Tidskonvertering"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = ""; +$a->strings["UTC time: %s"] = "UTC tid: %s"; +$a->strings["Current timezone: %s"] = "Gjeldende tidssone: %s"; +$a->strings["Converted localtime: %s"] = "Konvertert lokaltid: %s"; +$a->strings["Please select your timezone:"] = "Vennligst velg din tidssone:"; +$a->strings["Remote privacy information not available."] = "Ekstern informasjon om privatlivsinnstillinger er ikke tilgjengelig."; +$a->strings["Visible to:"] = "Synlig for:"; +$a->strings["No valid account found."] = "Fant ingen gyldig konto."; +$a->strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er sendt. Sjekk e-posten din."; +$a->strings["Password reset requested at %s"] = "Forespørsel om tilbakestilling av passord ved %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørselen kunne ikke verifiseres. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord milslyktes."; +$a->strings["Password Reset"] = "Passord tilbakestilling"; +$a->strings["Your password has been reset as requested."] = "Ditt passord er tilbakestilt som forespurt."; +$a->strings["Your new password is"] = "Ditt nye passord er"; +$a->strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter"; +$a->strings["click here to login"] = "klikk her for å logge inn"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Passordet ditt kan endres fra siden Innstillinger etter vellykket logg inn."; +$a->strings["Your password has been changed at %s"] = ""; +$a->strings["Forgot your Password?"] = "Glemte du passordet?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv inn e-postadressen og send inn for å tilbakestille passordet ditt. Sjekk deretter e-posten din for nærmere forklaring."; +$a->strings["Nickname or Email: "] = "Kallenavn eller e-post:"; +$a->strings["Reset"] = "Tilbakestill"; +$a->strings["System down for maintenance"] = ""; +$a->strings["Manage Identities and/or Pages"] = "Behandle identiteter og/eller sider"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Veksle mellom ulike identiteter eller felleskaps-/gruppesider som deler dine kontodetaljer eller som du har blitt gitt \"behandle\" tillatelser"; +$a->strings["Select an identity to manage: "] = "Velg en identitet å behandle:"; +$a->strings["Profile Match"] = "Profiltreff"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord i din standardprofil."; +$a->strings["is interested in:"] = ""; +$a->strings["Unable to locate contact information."] = "Mislyktes med å finne kontaktinformasjon."; +$a->strings["Do you really want to delete this message?"] = ""; +$a->strings["Message deleted."] = "Melding slettet."; +$a->strings["Conversation removed."] = "Samtale slettet."; +$a->strings["No messages."] = "Ingen meldinger."; +$a->strings["Unknown sender - %s"] = ""; +$a->strings["You and %s"] = ""; +$a->strings["%s and You"] = ""; +$a->strings["Delete conversation"] = "Slett samtale"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "", + 1 => "", +); +$a->strings["Message not available."] = "Melding utilgjengelig."; +$a->strings["Delete message"] = "Slett melding"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; +$a->strings["Send Reply"] = "Send svar"; +$a->strings["Mood"] = ""; +$a->strings["Set your current mood and tell your friends"] = ""; +$a->strings["Search Results For:"] = ""; +$a->strings["Commented Order"] = "Etter kommentarer"; +$a->strings["Sort by Comment Date"] = ""; +$a->strings["Posted Order"] = "Etter innlegg"; +$a->strings["Sort by Post Date"] = ""; +$a->strings["Personal"] = "Personlig"; +$a->strings["Posts that mention or involve you"] = ""; +$a->strings["New"] = "Ny"; +$a->strings["Activity Stream - by date"] = ""; +$a->strings["Shared Links"] = ""; +$a->strings["Interesting Links"] = ""; +$a->strings["Starred"] = "Med stjerne"; +$a->strings["Favourite Posts"] = ""; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk.", + 1 => "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk.", +); +$a->strings["Private messages to this group are at risk of public disclosure."] = "Private meldinger til denne gruppen risikerer å bli offentliggjort."; +$a->strings["No such group"] = "Gruppen finnes ikke"; +$a->strings["Group is empty"] = "Gruppen er tom"; +$a->strings["Group: "] = "Gruppe:"; +$a->strings["Contact: "] = "Kontakt:"; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Private meldinger til denne personen risikerer å bli offentliggjort."; +$a->strings["Invalid contact."] = "Ugyldig kontakt."; +$a->strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator."; +$a->strings["Discard"] = "Forkast"; +$a->strings["System"] = "System"; +$a->strings["Show Ignored Requests"] = "Vis ignorerte forespørsler"; +$a->strings["Hide Ignored Requests"] = "Skjul ignorerte forespørsler"; +$a->strings["Notification type: "] = "Beskjedtype:"; +$a->strings["Friend Suggestion"] = "Venneforslag"; +$a->strings["suggested by %s"] = "foreslått av %s"; +$a->strings["Post a new friend activity"] = "Post om en ny venn"; +$a->strings["if applicable"] = "hvis gyldig"; +$a->strings["Claims to be known to you: "] = "Påstår å kjenne deg:"; +$a->strings["yes"] = "ja"; +$a->strings["no"] = "ei"; +$a->strings["Approve as: "] = "Godkjenn som:"; +$a->strings["Friend"] = "Venn"; +$a->strings["Sharer"] = "Deler"; +$a->strings["Fan/Admirer"] = "Fan/Beundrer"; +$a->strings["Friend/Connect Request"] = "Venn/kontakt-forespørsel"; +$a->strings["New Follower"] = "Ny følgesvenn"; +$a->strings["No introductions."] = "Ingen introduksjoner."; +$a->strings["%s liked %s's post"] = "%s likte %s sitt innlegg"; +$a->strings["%s disliked %s's post"] = "%s mislikte %s sitt innlegg"; +$a->strings["%s is now friends with %s"] = "%s er nå venner med %s"; +$a->strings["%s created a new post"] = "%s skrev et nytt innlegg"; +$a->strings["%s commented on %s's post"] = "%s kommenterte på %s sitt innlegg"; +$a->strings["No more network notifications."] = "Ingen flere nettverksvarslinger."; +$a->strings["Network Notifications"] = "Nettverksvarslinger"; +$a->strings["No more system notifications."] = ""; +$a->strings["System Notifications"] = "Systemvarsler"; +$a->strings["No more personal notifications."] = "Ingen flere personlige varsler."; +$a->strings["Personal Notifications"] = "Personlige varsler"; +$a->strings["No more home notifications."] = "Ingen flere hjemmevarsler."; +$a->strings["Home Notifications"] = "Hjemmevarsler"; +$a->strings["Photo Albums"] = "Fotoalbum"; +$a->strings["Contact Photos"] = "Kontaktbilder"; +$a->strings["Upload New Photos"] = "Last opp nye bilder"; +$a->strings["Contact information unavailable"] = "Kontaktinformasjon utilgjengelig"; +$a->strings["Album not found."] = "Album ble ikke funnet."; +$a->strings["Delete Album"] = "Slett album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = ""; +$a->strings["Delete Photo"] = "Slett bilde"; +$a->strings["Do you really want to delete this photo?"] = ""; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; +$a->strings["a photo"] = ""; +$a->strings["Image exceeds size limit of "] = "Bilde overstiger størrelsesbegrensningen på "; +$a->strings["Image file is empty."] = "Bildefilen er tom."; +$a->strings["No photos selected"] = "Ingen bilder er valgt"; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = ""; +$a->strings["Upload Photos"] = "Last opp bilder"; +$a->strings["New album name: "] = "Nytt albumnavn:"; +$a->strings["or existing album name: "] = "eller eksisterende albumnavn:"; +$a->strings["Do not show a status post for this upload"] = "Ikke vis statusoppdatering for denne opplastingen"; +$a->strings["Permissions"] = "Tillatelser"; +$a->strings["Private Photo"] = ""; +$a->strings["Public Photo"] = ""; +$a->strings["Edit Album"] = "Endre album"; +$a->strings["Show Newest First"] = ""; +$a->strings["Show Oldest First"] = ""; +$a->strings["View Photo"] = "Vis bilde"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Tilgang nektet. Tilgang til dette elementet kan være begrenset."; +$a->strings["Photo not available"] = "Bilde ikke tilgjengelig"; +$a->strings["View photo"] = "Vis foto"; +$a->strings["Edit photo"] = "Endre bilde"; +$a->strings["Use as profile photo"] = "Bruk som profilbilde"; +$a->strings["Private Message"] = "Privat melding"; +$a->strings["View Full Size"] = "Vis i full størrelse"; +$a->strings["Tags: "] = "Tagger:"; +$a->strings["[Remove any tag]"] = "[Fjern en tag]"; +$a->strings["Rotate CW (right)"] = ""; +$a->strings["Rotate CCW (left)"] = ""; +$a->strings["New album name"] = "Nytt albumnavn"; +$a->strings["Caption"] = "Overskrift"; +$a->strings["Add a Tag"] = "Legg til tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Private photo"] = ""; +$a->strings["Public photo"] = ""; +$a->strings["I like this (toggle)"] = "Jeg liker dette (skru på/av)"; +$a->strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru på/av)"; +$a->strings["This is you"] = "Dette er deg"; +$a->strings["Comment"] = "Kommentar"; +$a->strings["Recent Photos"] = "Nye bilder"; +$a->strings["Welcome to Friendica"] = ""; +$a->strings["New Member Checklist"] = "Sjekkliste for nye medlemmer"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = ""; +$a->strings["Getting Started"] = ""; +$a->strings["Friendica Walk-Through"] = ""; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = ""; +$a->strings["Go to Your Settings"] = ""; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = ""; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Se over de andre innstillingene, særlig personverninnstillingene. En katalogoppføring som ikke er publisert er som å ha skjult telefonnummer. Generelt, så bør du antakelig publisere oppføringen, med mindre dine venner eller potensielle venner vet nøyaktig hvordan de skal finne deg."; +$a->strings["Upload Profile Photo"] = "Last opp profilbilde"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Last opp et profilbilde hvis du ikke har gjort det allerede. Studier viser at folk som har ekte bilde av seg selv har ti ganger større sannsynlighet for å få venner enn folk som ikke gjør det."; +$a->strings["Edit Your Profile"] = ""; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Du kan endre standardprofilen din slik du ønsker. Se over innstillingene som lar deg skjule vennelisten og skjule profilen fra ukjente besøkende."; +$a->strings["Profile Keywords"] = ""; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Legg til noen offentlige nøkkelord til standardprofilen din som beskriver dine interesser. Det kan hende vi klarer å finne andre folk med liknende interesser og foreslå vennskap."; +$a->strings["Connecting"] = ""; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Tillat Facebook-koblingen hvis du har en Facebook-konto og vi vil (valgfritt) importere alle dine Facebook-venner og samtaler."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = ""; +$a->strings["Importing Emails"] = ""; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = ""; +$a->strings["Go to Your Contacts Page"] = ""; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = ""; +$a->strings["Go to Your Site's Directory"] = ""; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Katalog-siden lar deg finne andre folk i dette nettverket eller andre forente nettsteder. Se etter en Connect eller Follow lenke på profilsiden deres. Oppgi din egen identitetsadresse hvis du blir forespurt om det."; +$a->strings["Finding New People"] = ""; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = ""; +$a->strings["Group Your Contacts"] = ""; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Når du har fått noen venner, så kan du organisere dem i private samtalegrupper i sidefeltet på Kontakt-siden din, og deretter kan du samhandle med hver gruppe privat på din Nettverk-side."; +$a->strings["Why Aren't My Posts Public?"] = ""; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = ""; +$a->strings["Getting Help"] = ""; +$a->strings["Go to the Help Section"] = ""; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Våre hjelpesider kan leses for flere detaljer og ressurser om andre egenskaper ved programmet."; +$a->strings["Requested profile is not available."] = "Profil utilgjengelig."; +$a->strings["Tips for New Members"] = "Tips til nye medlemmer"; +$a->strings["Friendica Communications Server - Setup"] = ""; +$a->strings["Could not connect to database."] = ""; +$a->strings["Could not create table."] = ""; +$a->strings["Your Friendica site database has been installed."] = ""; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Du må kanskje importere filen \"database.sql\" manuelt ved hjelp av phpmyadmin eller mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Vennligst se filen \"INSTALL.txt\"."; +$a->strings["System check"] = ""; +$a->strings["Check again"] = ""; +$a->strings["Database connection"] = ""; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = ""; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vennligst kontakt din tilbyder eller administrator hvis du har spørsmål til disse innstillingene."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du oppgir nedenfor må finnes. Hvis ikke, vennligst opprett den før du fortsetter."; +$a->strings["Database Server Name"] = "Databasetjenerens navn"; +$a->strings["Database Login Name"] = "Database brukernavn"; +$a->strings["Database Login Password"] = "Database passord"; +$a->strings["Database Name"] = "Databasenavn"; +$a->strings["Site administrator email address"] = ""; +$a->strings["Your account email address must match this in order to use the web admin panel."] = ""; +$a->strings["Please select a default timezone for your website"] = "Vennligst velg en standard tidssone for ditt nettsted"; +$a->strings["Site settings"] = ""; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Fant ikke en kommandolinjeversjon av PHP i webtjenerens PATH."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = ""; +$a->strings["PHP executable path"] = ""; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; +$a->strings["Command line PHP"] = ""; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; +$a->strings["Found PHP version: "] = ""; +$a->strings["PHP cli binary"] = ""; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" aktivert."; +$a->strings["This is required for message delivery to work."] = "Dette er nødvendig for at meldingslevering skal virke."; +$a->strings["PHP register_argc_argv"] = ""; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "For kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = ""; +$a->strings["libCurl PHP module"] = ""; +$a->strings["GD graphics PHP module"] = ""; +$a->strings["OpenSSL PHP module"] = ""; +$a->strings["mysqli PHP module"] = ""; +$a->strings["mb_string PHP module"] = ""; +$a->strings["Apache mod_rewrite module"] = ""; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Feil: Modulen mod-rewrite for Apache-webtjeneren er påkrevet, men er ikke installert."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Feil: libCURL PHP-modulen er påkrevet, men er ikke installert."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Feil: GD graphics PHP-modulen med JPEG-støtte er påkrevet, men er ikke installert."; +$a->strings["Error: openssl PHP module required but not installed."] = "Feil: openssl PHP-modulen er påkrevet, men er ikke installert."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Feil: mysqli PHP-modulen er påkrevet, men er ikke installert."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Feil: mb_string PHP-modulen er påkrevet men ikke installert."; +$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."] = "Web-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette."; +$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."] = "Dette skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje ikke kan skrive filer i din mappe - selv om du kan."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = ""; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = ""; +$a->strings[".htconfig.php is writable"] = ""; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = ""; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = ""; +$a->strings["view/smarty3 is writable"] = ""; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; +$a->strings["Url rewrite is working"] = ""; +$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."] = "Filen \".htconfig.php\" med databasekonfigurasjonen kunne ikke bli skrevet. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i roten på din web-tjener."; +$a->strings["Errors encountered creating database tables."] = "Feil oppstod under opprettelsen av databasetabeller."; +$a->strings["

What next

"] = ""; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering."; +$a->strings["Post successful."] = "Innlegg vellykket."; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID kom i retur."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Kontoen ble ikke funnet og OpenID-registrering er ikke tillat på dette nettstedet."; +$a->strings["Image uploaded but image cropping failed."] = "Bildet ble lastet opp, men beskjæringen mislyktes."; +$a->strings["Image size reduction [%s] failed."] = "Reduksjon av bildestørrelse [%s] mislyktes."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-last-siden-på-nytt eller slett mellomlagret i nettleseren hvis det nye bildet ikke vises umiddelbart."; +$a->strings["Unable to process image"] = "Mislyktes med å behandle bilde"; +$a->strings["Upload File:"] = "Last opp fil:"; +$a->strings["Select a profile:"] = ""; +$a->strings["Upload"] = "Last opp"; +$a->strings["skip this step"] = "hopp over dette steget"; +$a->strings["select a photo from your photo albums"] = "velg et bilde fra dine fotoalbum"; +$a->strings["Crop Image"] = "Beskjær bilde"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Vennligst juster beskjæringen av bildet for optimal visning."; +$a->strings["Done Editing"] = "Behandling ferdig"; +$a->strings["Image uploaded successfully."] = "Bilde ble lastet opp."; +$a->strings["Not available."] = "Ikke tilgjengelig."; +$a->strings["%d comment"] = array( + 0 => "", + 1 => "", +); +$a->strings["like"] = "liker"; +$a->strings["dislike"] = "liker ikke"; +$a->strings["Share this"] = "Del denne"; +$a->strings["share"] = "Del"; +$a->strings["Bold"] = "uthevet"; +$a->strings["Italic"] = "kursiv"; +$a->strings["Underline"] = "understrek"; +$a->strings["Quote"] = "sitat"; +$a->strings["Code"] = "kode"; +$a->strings["Image"] = "Bilde/fotografi"; +$a->strings["Link"] = "lenke"; +$a->strings["Video"] = "video"; +$a->strings["add star"] = "legg til stjerne"; +$a->strings["remove star"] = "fjern stjerne"; +$a->strings["toggle star status"] = "veksle stjernestatus"; +$a->strings["starred"] = "Med stjerne"; +$a->strings["add tag"] = "Legg til merkelapp"; +$a->strings["save to folder"] = "lagre i mappe"; +$a->strings["to"] = "til"; +$a->strings["Wall-to-Wall"] = "vegg-til-vegg"; +$a->strings["via Wall-To-Wall:"] = "via vegg-til-vegg"; +$a->strings["This entry was edited"] = ""; +$a->strings["via"] = "via"; +$a->strings["Theme settings"] = ""; +$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; +$a->strings["Set font-size for posts and comments"] = ""; +$a->strings["Set theme width"] = ""; +$a->strings["Color scheme"] = ""; +$a->strings["Set line-height for posts and comments"] = ""; +$a->strings["Set resolution for middle column"] = ""; +$a->strings["Set color scheme"] = ""; +$a->strings["Set twitter search term"] = ""; +$a->strings["Set zoomfactor for Earth Layer"] = ""; +$a->strings["Set longitude (X) for Earth Layers"] = ""; +$a->strings["Set latitude (Y) for Earth Layers"] = ""; +$a->strings["Community Pages"] = ""; +$a->strings["Earth Layers"] = ""; +$a->strings["Community Profiles"] = ""; +$a->strings["Help or @NewHere ?"] = ""; +$a->strings["Connect Services"] = ""; +$a->strings["Find Friends"] = ""; +$a->strings["Last tweets"] = ""; +$a->strings["Last users"] = ""; +$a->strings["Last photos"] = ""; +$a->strings["Last likes"] = ""; +$a->strings["Your contacts"] = ""; +$a->strings["Local Directory"] = ""; +$a->strings["Set zoomfactor for Earth Layers"] = ""; +$a->strings["Last Tweets"] = ""; +$a->strings["Show/hide boxes at right-hand column:"] = ""; +$a->strings["Set colour scheme"] = ""; +$a->strings["Alignment"] = ""; +$a->strings["Left"] = ""; +$a->strings["Center"] = ""; +$a->strings["Posts font size"] = ""; +$a->strings["Textareas font size"] = ""; +$a->strings["toggle mobile"] = "Velg mobilvisning"; $a->strings["Delete this item?"] = "Slett dette elementet?"; $a->strings["show fewer"] = ""; $a->strings["Update %s failed. See error logs."] = "Oppdatering %s mislyktes. Se feilloggene."; @@ -2057,6 +1628,10 @@ $a->strings["Password: "] = "Passord: "; $a->strings["Remember me"] = ""; $a->strings["Or login using OpenID: "] = ""; $a->strings["Forgot your password?"] = "Glemt passordet?"; +$a->strings["Website Terms of Service"] = ""; +$a->strings["terms of service"] = ""; +$a->strings["Website Privacy Policy"] = ""; +$a->strings["privacy policy"] = ""; $a->strings["Requested account is not available."] = ""; $a->strings["Edit profile"] = "Rediger profil"; $a->strings["Message"] = ""; @@ -2071,21 +1646,6 @@ $a->strings["Event Reminders"] = "Påminnelser om hendelser"; $a->strings["Events this week:"] = "Hendelser denne uken:"; $a->strings["Status Messages and Posts"] = ""; $a->strings["Profile Details"] = ""; +$a->strings["Videos"] = ""; $a->strings["Events and Calendar"] = ""; $a->strings["Only You Can See This"] = ""; -$a->strings["via"] = ""; -$a->strings["toggle mobile"] = ""; -$a->strings["Bg settings updated."] = ""; -$a->strings["Bg Settings"] = ""; -$a->strings["Post to Drupal"] = ""; -$a->strings["Drupal Post Settings"] = ""; -$a->strings["Enable Drupal Post Plugin"] = ""; -$a->strings["Drupal username"] = ""; -$a->strings["Drupal password"] = ""; -$a->strings["Post Type - article,page,or blog"] = ""; -$a->strings["Drupal site URL"] = ""; -$a->strings["Drupal site uses clean URLS"] = ""; -$a->strings["Post to Drupal by default"] = ""; -$a->strings["OEmbed settings updated"] = "OEmbed-innstillingene er oppdatert"; -$a->strings["Use OEmbed for YouTube videos"] = "Bruk OEmbed til YouTube-videoer"; -$a->strings["URL to embed:"] = "URL som skal innebygges:"; diff --git a/view/nb-no/update_fail_eml.tpl b/view/nb-no/update_fail_eml.tpl index a4a3cf9508..ba526f2b9f 100644 --- a/view/nb-no/update_fail_eml.tpl +++ b/view/nb-no/update_fail_eml.tpl @@ -1,5 +1,5 @@ Hei, -jeg er $sitename. +Jeg er $sitename; Friendica-utviklerne slapp nylig oppdateringen $update, men da jeg prøvde å installere den, gikk noe forferdelig galt. Dette trenger å bli fikset raskt og jeg kan ikke gjøre det alene. Vennligst kontakt en From 176cb241c26922d9e303ff06b6371d3948c60992 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 16 Jun 2013 14:51:17 +0200 Subject: [PATCH 04/12] IT: update to the strings --- view/it/messages.po | 12795 +++++++++++++++++++++--------------------- view/it/strings.php | 2983 +++++----- 2 files changed, 7946 insertions(+), 7832 deletions(-) diff --git a/view/it/messages.po b/view/it/messages.po index 7e5a112350..abc2d34f9a 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -3,19 +3,19 @@ # This file is distributed under the same license as the Friendica package. # # Translators: -# fabrixxm , 2011. -# , 2013. -# , 2011-2012. -# Francesco Apruzzese , 2012. -# , 2012. -# Paolo Pa , 2012. +# fabrixxm , 2011 +# fabrixxm , 2013 +# fabrixxm , 2011-2012 +# Francesco Apruzzese , 2012-2013 +# ufic , 2012 +# Paolo Pa , 2012 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" -"POT-Creation-Date: 2013-02-28 10:13-0500\n" -"PO-Revision-Date: 2013-03-01 16:22+0000\n" -"Last-Translator: fabrixxm \n" +"POT-Creation-Date: 2013-06-12 00:01-0700\n" +"PO-Revision-Date: 2013-06-06 16:10+0000\n" +"Last-Translator: Francesco Apruzzese \n" "Language-Team: Italian (http://www.transifex.com/projects/p/friendica/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,5483 +23,22 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../object/Item.php:106 ../../mod/photos.php:1351 -#: ../../mod/content.php:643 -msgid "Private Message" -msgstr "Messaggio privato" - -#: ../../object/Item.php:110 ../../mod/editpost.php:109 -#: ../../mod/settings.php:622 ../../mod/content.php:751 -msgid "Edit" -msgstr "Modifica" - -#: ../../object/Item.php:119 ../../mod/content.php:461 -#: ../../mod/content.php:763 ../../include/conversation.php:587 -msgid "Select" -msgstr "Seleziona" - -#: ../../object/Item.php:120 ../../mod/admin.php:755 ../../mod/photos.php:1637 -#: ../../mod/settings.php:623 ../../mod/group.php:171 -#: ../../mod/content.php:462 ../../mod/content.php:764 -#: ../../include/conversation.php:588 -msgid "Delete" -msgstr "Rimuovi" - -#: ../../object/Item.php:123 ../../mod/content.php:786 -msgid "save to folder" -msgstr "salva nella cartella" - -#: ../../object/Item.php:202 ../../mod/content.php:776 -msgid "add star" -msgstr "aggiungi a speciali" - -#: ../../object/Item.php:203 ../../mod/content.php:777 -msgid "remove star" -msgstr "rimuovi da speciali" - -#: ../../object/Item.php:204 ../../mod/content.php:778 -msgid "toggle star status" -msgstr "Inverti stato preferito" - -#: ../../object/Item.php:207 ../../mod/content.php:781 -msgid "starred" -msgstr "preferito" - -#: ../../object/Item.php:212 ../../mod/content.php:782 -msgid "add tag" -msgstr "aggiungi tag" - -#: ../../object/Item.php:223 ../../mod/photos.php:1529 -#: ../../mod/content.php:707 -msgid "I like this (toggle)" -msgstr "Mi piace (clic per cambiare)" - -#: ../../object/Item.php:223 ../../mod/content.php:707 -msgid "like" -msgstr "mi piace" - -#: ../../object/Item.php:224 ../../mod/photos.php:1530 -#: ../../mod/content.php:708 -msgid "I don't like this (toggle)" -msgstr "Non mi piace (clic per cambiare)" - -#: ../../object/Item.php:224 ../../mod/content.php:708 -msgid "dislike" -msgstr "non mi piace" - -#: ../../object/Item.php:226 ../../mod/content.php:710 -msgid "Share this" -msgstr "Condividi questo" - -#: ../../object/Item.php:226 ../../mod/content.php:710 -msgid "share" -msgstr "condividi" - -#: ../../object/Item.php:288 ../../include/conversation.php:639 -msgid "Categories:" -msgstr "Categorie:" - -#: ../../object/Item.php:289 ../../include/conversation.php:640 -msgid "Filed under:" -msgstr "Archiviato in:" - -#: ../../object/Item.php:297 ../../object/Item.php:298 -#: ../../mod/content.php:495 ../../mod/content.php:875 -#: ../../mod/content.php:876 ../../include/conversation.php:627 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" - -#: ../../object/Item.php:299 ../../mod/content.php:877 -msgid "to" -msgstr "a" - -#: ../../object/Item.php:300 -msgid "via" -msgstr "via" - -#: ../../object/Item.php:301 ../../mod/content.php:878 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" - -#: ../../object/Item.php:302 ../../mod/content.php:879 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca" - -#: ../../object/Item.php:311 ../../mod/content.php:505 -#: ../../mod/content.php:887 ../../include/conversation.php:647 -#, php-format -msgid "%s from %s" -msgstr "%s da %s" - -#: ../../object/Item.php:329 ../../object/Item.php:642 -#: ../../mod/photos.php:1551 ../../mod/photos.php:1595 -#: ../../mod/photos.php:1678 ../../mod/content.php:732 ../../boot.php:651 -msgid "Comment" -msgstr "Commento" - -#: ../../object/Item.php:332 ../../mod/message.php:334 -#: ../../mod/message.php:565 ../../mod/editpost.php:124 -#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1532 -#: ../../mod/content.php:522 ../../mod/content.php:906 -#: ../../include/conversation.php:664 ../../include/conversation.php:1060 -msgid "Please wait" -msgstr "Attendi" - -#: ../../object/Item.php:352 ../../mod/content.php:626 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" - -#: ../../object/Item.php:354 ../../object/Item.php:367 -#: ../../mod/content.php:628 ../../include/text.php:1560 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "commento" - -#: ../../object/Item.php:355 ../../mod/content.php:629 ../../boot.php:652 -#: ../../include/contact_widgets.php:204 -msgid "show more" -msgstr "mostra di più" - -#: ../../object/Item.php:640 ../../mod/photos.php:1549 -#: ../../mod/photos.php:1593 ../../mod/photos.php:1676 -#: ../../mod/content.php:730 -msgid "This is you" -msgstr "Questo sei tu" - -#: ../../object/Item.php:643 ../../mod/fsuggest.php:107 -#: ../../mod/admin.php:478 ../../mod/admin.php:748 ../../mod/admin.php:887 -#: ../../mod/admin.php:1087 ../../mod/admin.php:1174 ../../mod/message.php:335 -#: ../../mod/message.php:564 ../../mod/events.php:478 -#: ../../mod/photos.php:1078 ../../mod/photos.php:1199 -#: ../../mod/photos.php:1501 ../../mod/photos.php:1552 -#: ../../mod/photos.php:1596 ../../mod/photos.php:1679 -#: ../../mod/contacts.php:386 ../../mod/invite.php:140 -#: ../../mod/settings.php:560 ../../mod/settings.php:670 -#: ../../mod/settings.php:739 ../../mod/settings.php:811 -#: ../../mod/settings.php:1037 ../../mod/profiles.php:626 -#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45 -#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/group.php:87 -#: ../../mod/content.php:733 ../../mod/mood.php:137 ../../mod/crepair.php:166 -#: ../../view/theme/diabook/theme.php:642 -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 -#: ../../view/theme/cleanzero/config.php:80 -msgid "Submit" -msgstr "Invia" - -#: ../../object/Item.php:644 ../../mod/content.php:734 -msgid "Bold" -msgstr "Grassetto" - -#: ../../object/Item.php:645 ../../mod/content.php:735 -msgid "Italic" -msgstr "Corsivo" - -#: ../../object/Item.php:646 ../../mod/content.php:736 -msgid "Underline" -msgstr "Sottolineato" - -#: ../../object/Item.php:647 ../../mod/content.php:737 -msgid "Quote" -msgstr "Citazione" - -#: ../../object/Item.php:648 ../../mod/content.php:738 -msgid "Code" -msgstr "Codice" - -#: ../../object/Item.php:649 ../../mod/content.php:739 -msgid "Image" -msgstr "Immagine" - -#: ../../object/Item.php:650 ../../mod/content.php:740 -msgid "Link" -msgstr "Link" - -#: ../../object/Item.php:651 ../../mod/content.php:741 -msgid "Video" -msgstr "Video" - -#: ../../object/Item.php:652 ../../mod/editpost.php:145 -#: ../../mod/photos.php:1553 ../../mod/photos.php:1597 -#: ../../mod/photos.php:1680 ../../mod/content.php:742 -#: ../../include/conversation.php:1077 -msgid "Preview" -msgstr "Anteprima" - -#: ../../index.php:227 ../../mod/help.php:90 -msgid "Not Found" -msgstr "Non trovato" - -#: ../../index.php:230 ../../mod/help.php:93 -msgid "Page not found." -msgstr "Pagina non trovata." - -#: ../../index.php:341 ../../mod/profperm.php:19 ../../mod/group.php:72 -msgid "Permission denied" -msgstr "Permesso negato" - -#: ../../index.php:342 ../../mod/fsuggest.php:78 -#: ../../mod/notifications.php:66 ../../mod/message.php:38 -#: ../../mod/message.php:174 ../../mod/editpost.php:10 -#: ../../mod/dfrn_confirm.php:53 ../../mod/events.php:140 -#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 -#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 -#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:1044 -#: ../../mod/register.php:40 ../../mod/attach.php:33 -#: ../../mod/contacts.php:147 ../../mod/follow.php:9 ../../mod/uimport.php:23 -#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101 -#: ../../mod/settings.php:91 ../../mod/settings.php:542 -#: ../../mod/settings.php:547 ../../mod/display.php:180 -#: ../../mod/profiles.php:146 ../../mod/profiles.php:567 -#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56 -#: ../../mod/manage.php:96 ../../mod/delegate.php:6 -#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 ../../mod/poke.php:135 -#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 -#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 -#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:118 -#: ../../mod/item.php:140 ../../mod/item.php:156 ../../mod/mood.php:114 -#: ../../mod/network.php:6 ../../mod/crepair.php:115 -#: ../../include/items.php:4090 -msgid "Permission denied." -msgstr "Permesso negato." - -#: ../../index.php:401 -msgid "toggle mobile" -msgstr "commuta tema mobile" - -#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41 -#: ../../mod/update_community.php:18 ../../mod/update_network.php:22 -#: ../../mod/update_display.php:22 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:129 -msgid "Contact not found." -msgstr "Contatto non trovato." - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggerimento di amicizia inviato." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggerisci amici" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerisci un amico a %s" - -#: ../../mod/dfrn_request.php:93 -msgid "This introduction has already been accepted." -msgstr "Questa presentazione è già stata accettata." - -#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 -msgid "Profile location is not valid or does not contain profile information." -msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." - -#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." - -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 -msgid "Warning: profile location has no profile photo." -msgstr "Attenzione: l'indirizzo del profilo non ha una foto." - -#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato" -msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" - -#: ../../mod/dfrn_request.php:170 -msgid "Introduction complete." -msgstr "Presentazione completa." - -#: ../../mod/dfrn_request.php:209 -msgid "Unrecoverable protocol error." -msgstr "Errore di comunicazione." - -#: ../../mod/dfrn_request.php:237 -msgid "Profile unavailable." -msgstr "Profilo non disponibile." - -#: ../../mod/dfrn_request.php:262 -#, 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:263 -msgid "Spam protection measures have been invoked." -msgstr "Sono state attivate le misure di protezione contro lo spam." - -#: ../../mod/dfrn_request.php:264 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Gli amici sono pregati di riprovare tra 24 ore." - -#: ../../mod/dfrn_request.php:326 -msgid "Invalid locator" -msgstr "Invalid locator" - -#: ../../mod/dfrn_request.php:335 -msgid "Invalid email address." -msgstr "Indirizzo email non valido." - -#: ../../mod/dfrn_request.php:362 -msgid "This account has not been configured for email. Request failed." -msgstr "Questo account non è stato configurato per l'email. Richiesta fallita." - -#: ../../mod/dfrn_request.php:458 -msgid "Unable to resolve your name at the provided location." -msgstr "Impossibile risolvere il tuo nome nella posizione indicata." - -#: ../../mod/dfrn_request.php:471 -msgid "You have already introduced yourself here." -msgstr "Ti sei già presentato qui." - -#: ../../mod/dfrn_request.php:475 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Pare che tu e %s siate già amici." - -#: ../../mod/dfrn_request.php:496 -msgid "Invalid profile URL." -msgstr "Indirizzo profilo non valido." - -#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Indirizzo profilo non permesso." - -#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124 -msgid "Failed to update contact record." -msgstr "Errore nell'aggiornamento del contatto." - -#: ../../mod/dfrn_request.php:592 -msgid "Your introduction has been sent." -msgstr "La tua presentazione è stata inviata." - -#: ../../mod/dfrn_request.php:645 -msgid "Please login to confirm introduction." -msgstr "Accedi per confermare la presentazione." - -#: ../../mod/dfrn_request.php:659 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." - -#: ../../mod/dfrn_request.php:670 -msgid "Hide this contact" -msgstr "Nascondi questo contatto" - -#: ../../mod/dfrn_request.php:673 -#, php-format -msgid "Welcome home %s." -msgstr "Bentornato a casa %s." - -#: ../../mod/dfrn_request.php:674 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Conferma la tua richiesta di connessione con %s." - -#: ../../mod/dfrn_request.php:675 -msgid "Confirm" -msgstr "Conferma" - -#: ../../mod/dfrn_request.php:716 ../../include/items.php:3439 -msgid "[Name Withheld]" -msgstr "[Nome Nascosto]" - -#: ../../mod/dfrn_request.php:761 ../../mod/photos.php:914 -#: ../../mod/search.php:89 ../../mod/display.php:19 ../../mod/community.php:18 -#: ../../mod/viewcontacts.php:17 ../../mod/directory.php:31 -msgid "Public access denied." -msgstr "Accesso negato." - -#: ../../mod/dfrn_request.php:811 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:" - -#: ../../mod/dfrn_request.php:827 -msgid "Connect as an email follower (Coming soon)" -msgstr "Connetti un email come follower (in arrivo)" - -#: ../../mod/dfrn_request.php:829 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi" - -#: ../../mod/dfrn_request.php:832 -msgid "Friend/Connection Request" -msgstr "Richieste di amicizia/connessione" - -#: ../../mod/dfrn_request.php:833 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: ../../mod/dfrn_request.php:834 -msgid "Please answer the following:" -msgstr "Rispondi:" - -#: ../../mod/dfrn_request.php:835 -#, php-format -msgid "Does %s know you?" -msgstr "%s ti conosce?" - -#: ../../mod/dfrn_request.php:836 ../../mod/message.php:209 -#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246 -#: ../../mod/settings.php:934 ../../mod/settings.php:940 -#: ../../mod/settings.php:948 ../../mod/settings.php:952 -#: ../../mod/settings.php:957 ../../mod/settings.php:963 -#: ../../mod/settings.php:969 ../../mod/settings.php:975 -#: ../../mod/settings.php:1005 ../../mod/settings.php:1006 -#: ../../mod/settings.php:1007 ../../mod/settings.php:1008 -#: ../../mod/settings.php:1009 ../../mod/profiles.php:606 -#: ../../mod/suggest.php:29 ../../include/items.php:3967 -msgid "Yes" -msgstr "Si" - -#: ../../mod/dfrn_request.php:837 ../../mod/api.php:106 -#: ../../mod/register.php:240 ../../mod/settings.php:934 -#: ../../mod/settings.php:940 ../../mod/settings.php:948 -#: ../../mod/settings.php:952 ../../mod/settings.php:957 -#: ../../mod/settings.php:963 ../../mod/settings.php:969 -#: ../../mod/settings.php:975 ../../mod/settings.php:1005 -#: ../../mod/settings.php:1006 ../../mod/settings.php:1007 -#: ../../mod/settings.php:1008 ../../mod/settings.php:1009 -#: ../../mod/profiles.php:607 -msgid "No" -msgstr "No" - -#: ../../mod/dfrn_request.php:838 -msgid "Add a personal note:" -msgstr "Aggiungi una nota personale:" - -#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../mod/dfrn_request.php:841 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:681 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../mod/dfrn_request.php:843 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora." - -#: ../../mod/dfrn_request.php:844 -msgid "Your Identity Address:" -msgstr "L'indirizzo della tua identità:" - -#: ../../mod/dfrn_request.php:847 -msgid "Submit Request" -msgstr "Invia richiesta" - -#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212 -#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../mod/photos.php:202 -#: ../../mod/photos.php:290 ../../mod/contacts.php:249 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 ../../mod/settings.php:561 -#: ../../mod/settings.php:587 ../../mod/suggest.php:32 -#: ../../include/items.php:3970 ../../include/conversation.php:1080 -msgid "Cancel" -msgstr "Annulla" - -#: ../../mod/profile.php:21 ../../boot.php:1246 -msgid "Requested profile is not available." -msgstr "Profilo richiesto non disponibile." - -#: ../../mod/profile.php:155 ../../mod/display.php:99 -msgid "Access to this profile has been restricted." -msgstr "L'accesso a questo profilo è stato limitato." - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Consigli per i Nuovi Utenti" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "Scarta" - -#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:210 ../../mod/contacts.php:359 -#: ../../mod/contacts.php:413 -msgid "Ignore" -msgstr "Ignora" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "Sistema" - -#: ../../mod/notifications.php:83 ../../include/nav.php:140 -msgid "Network" -msgstr "Rete" - -#: ../../mod/notifications.php:88 ../../mod/network.php:444 -msgid "Personal" -msgstr "Personale" - -#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87 -#: ../../include/nav.php:104 ../../include/nav.php:143 -msgid "Home" -msgstr "Home" - -#: ../../mod/notifications.php:98 ../../include/nav.php:149 -msgid "Introductions" -msgstr "Presentazioni" - -#: ../../mod/notifications.php:103 ../../mod/message.php:182 -#: ../../include/nav.php:156 -msgid "Messages" -msgstr "Messaggi" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Mostra richieste ignorate" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Nascondi richieste ignorate" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "Tipo di notifica: " - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Amico suggerito" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "sugerito da %s" - -#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 -#: ../../mod/contacts.php:419 -msgid "Hide this contact from others" -msgstr "Nascondi questo contatto agli altri" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "Invia una attività \"è ora amico con\"" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "se applicabile" - -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 -#: ../../mod/admin.php:753 -msgid "Approve" -msgstr "Approva" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Dice di conoscerti: " - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "si" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "no" - -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Approva come: " - -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "Amico" - -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "Condivisore" - -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "Fan/Ammiratore" - -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "Richiesta amicizia/connessione" - -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "Qualcuno inizia a seguirti" - -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "Nessuna presentazione." - -#: ../../mod/notifications.php:220 ../../include/nav.php:150 -msgid "Notifications" -msgstr "Notifiche" - -#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 -#: ../../mod/notifications.php:469 -#, php-format -msgid "%s liked %s's post" -msgstr "a %s è piaciuto il messaggio di %s" - -#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 -#: ../../mod/notifications.php:478 -#, php-format -msgid "%s disliked %s's post" -msgstr "a %s non è piaciuto il messaggio di %s" - -#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 -#: ../../mod/notifications.php:492 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s è ora amico di %s" - -#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 -#, php-format -msgid "%s created a new post" -msgstr "%s a creato un nuovo messaggio" - -#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 -#: ../../mod/notifications.php:501 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s ha commentato il messaggio di %s" - -#: ../../mod/notifications.php:302 -msgid "No more network notifications." -msgstr "Nessuna nuova." - -#: ../../mod/notifications.php:306 -msgid "Network Notifications" -msgstr "Notifiche dalla rete" - -#: ../../mod/notifications.php:332 ../../mod/notify.php:61 -msgid "No more system notifications." -msgstr "Nessuna nuova notifica di sistema." - -#: ../../mod/notifications.php:336 ../../mod/notify.php:65 -msgid "System Notifications" -msgstr "Notifiche di sistema" - -#: ../../mod/notifications.php:427 -msgid "No more personal notifications." -msgstr "Nessuna nuova." - -#: ../../mod/notifications.php:431 -msgid "Personal Notifications" -msgstr "Notifiche personali" - -#: ../../mod/notifications.php:508 -msgid "No more home notifications." -msgstr "Nessuna nuova." - -#: ../../mod/notifications.php:512 -msgid "Home Notifications" -msgstr "Notifiche bacheca" - -#: ../../mod/like.php:151 ../../mod/tagger.php:62 ../../mod/subthread.php:87 -#: ../../view/theme/diabook/theme.php:464 ../../include/text.php:1556 -#: ../../include/diaspora.php:1874 ../../include/conversation.php:126 -#: ../../include/conversation.php:254 -msgid "photo" -msgstr "foto" - -#: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/tagger.php:62 -#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:459 -#: ../../view/theme/diabook/theme.php:468 ../../include/diaspora.php:1874 -#: ../../include/conversation.php:121 ../../include/conversation.php:130 -#: ../../include/conversation.php:249 ../../include/conversation.php:258 -msgid "status" -msgstr "stato" - -#: ../../mod/like.php:168 ../../view/theme/diabook/theme.php:473 -#: ../../include/diaspora.php:1890 ../../include/conversation.php:137 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" - -#: ../../mod/like.php:170 ../../include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Errore protocollo OpenID. Nessun ID ricevuto." - -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito." - -#: ../../mod/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 -msgid "Login failed." -msgstr "Accesso fallito." - -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Testo sorgente (bbcode):" - -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:" - -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Sorgente:" - -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (HTML grezzo):" - -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html:" - -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Sorgente (formato Diaspora):" - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: ../../mod/admin.php:55 -msgid "Theme settings updated." -msgstr "Impostazioni del tema aggiornate." - -#: ../../mod/admin.php:96 ../../mod/admin.php:477 -msgid "Site" -msgstr "Sito" - -#: ../../mod/admin.php:97 ../../mod/admin.php:747 ../../mod/admin.php:761 -msgid "Users" -msgstr "Utenti" - -#: ../../mod/admin.php:98 ../../mod/admin.php:844 ../../mod/admin.php:886 -msgid "Plugins" -msgstr "Plugin" - -#: ../../mod/admin.php:99 ../../mod/admin.php:1052 ../../mod/admin.php:1086 -msgid "Themes" -msgstr "Temi" - -#: ../../mod/admin.php:100 -msgid "DB updates" -msgstr "Aggiornamenti Database" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1173 -msgid "Logs" -msgstr "Log" - -#: ../../mod/admin.php:120 ../../include/nav.php:178 -msgid "Admin" -msgstr "Amministrazione" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "Impostazioni Plugins" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "Utenti registrati in attesa di conferma" - -#: ../../mod/admin.php:158 ../../mod/admin.php:794 ../../mod/admin.php:994 -#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:184 -#: ../../mod/viewsrc.php:15 ../../include/items.php:3926 -msgid "Item not found." -msgstr "Elemento non trovato." - -#: ../../mod/admin.php:182 ../../mod/admin.php:718 -msgid "Normal Account" -msgstr "Account normale" - -#: ../../mod/admin.php:183 ../../mod/admin.php:719 -msgid "Soapbox Account" -msgstr "Account per comunicati e annunci" - -#: ../../mod/admin.php:184 ../../mod/admin.php:720 -msgid "Community/Celebrity Account" -msgstr "Account per celebrità o per comunità" - -#: ../../mod/admin.php:185 ../../mod/admin.php:721 -msgid "Automatic Friend Account" -msgstr "Account per amicizia automatizzato" - -#: ../../mod/admin.php:186 -msgid "Blog Account" -msgstr "Account Blog" - -#: ../../mod/admin.php:187 -msgid "Private Forum" -msgstr "Forum Privato" - -#: ../../mod/admin.php:206 -msgid "Message queues" -msgstr "Code messaggi" - -#: ../../mod/admin.php:211 ../../mod/admin.php:476 ../../mod/admin.php:746 -#: ../../mod/admin.php:843 ../../mod/admin.php:885 ../../mod/admin.php:1051 -#: ../../mod/admin.php:1085 ../../mod/admin.php:1172 -msgid "Administration" -msgstr "Amministrazione" - -#: ../../mod/admin.php:212 -msgid "Summary" -msgstr "Sommario" - -#: ../../mod/admin.php:214 -msgid "Registered users" -msgstr "Utenti registrati" - -#: ../../mod/admin.php:216 -msgid "Pending registrations" -msgstr "Registrazioni in attesa" - -#: ../../mod/admin.php:217 -msgid "Version" -msgstr "Versione" - -#: ../../mod/admin.php:219 -msgid "Active plugins" -msgstr "Plugin attivi" - -#: ../../mod/admin.php:401 -msgid "Site settings updated." -msgstr "Impostazioni del sito aggiornate." - -#: ../../mod/admin.php:430 ../../mod/settings.php:769 -msgid "No special theme for mobile devices" -msgstr "Nessun tema speciale per i dispositivi mobili" - -#: ../../mod/admin.php:447 -msgid "Multi user instance" -msgstr "Istanza multi utente" - -#: ../../mod/admin.php:463 -msgid "Closed" -msgstr "Chiusa" - -#: ../../mod/admin.php:464 -msgid "Requires approval" -msgstr "Richiede l'approvazione" - -#: ../../mod/admin.php:465 -msgid "Open" -msgstr "Aperta" - -#: ../../mod/admin.php:469 -msgid "No SSL policy, links will track page SSL state" -msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina" - -#: ../../mod/admin.php:470 -msgid "Force all links to use SSL" -msgstr "Forza tutti i linki ad usare SSL" - -#: ../../mod/admin.php:471 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)" - -#: ../../mod/admin.php:479 ../../mod/register.php:261 -msgid "Registration" -msgstr "Registrazione" - -#: ../../mod/admin.php:480 -msgid "File upload" -msgstr "Caricamento file" - -#: ../../mod/admin.php:481 -msgid "Policies" -msgstr "Politiche" - -#: ../../mod/admin.php:482 -msgid "Advanced" -msgstr "Avanzate" - -#: ../../mod/admin.php:483 -msgid "Performance" -msgstr "Performance" - -#: ../../mod/admin.php:487 -msgid "Site name" -msgstr "Nome del sito" - -#: ../../mod/admin.php:488 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: ../../mod/admin.php:489 -msgid "System language" -msgstr "Lingua di sistema" - -#: ../../mod/admin.php:490 -msgid "System theme" -msgstr "Tema di sistema" - -#: ../../mod/admin.php:490 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema" - -#: ../../mod/admin.php:491 -msgid "Mobile system theme" -msgstr "Tema mobile di sistema" - -#: ../../mod/admin.php:491 -msgid "Theme for mobile devices" -msgstr "Tema per dispositivi mobili" - -#: ../../mod/admin.php:492 -msgid "SSL link policy" -msgstr "Gestione link SSL" - -#: ../../mod/admin.php:492 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determina se i link generati devono essere forzati a usare SSL" - -#: ../../mod/admin.php:493 -msgid "'Share' element" -msgstr "Elemento 'Share'" - -#: ../../mod/admin.php:493 -msgid "Activates the bbcode element 'share' for repeating items." -msgstr "Attiva l'elemento bbcode 'share' per i post condivisi." - -#: ../../mod/admin.php:494 -msgid "Hide help entry from navigation menu" -msgstr "Nascondi la voce 'Guida' dal menu di navigazione" - -#: ../../mod/admin.php:494 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente." - -#: ../../mod/admin.php:495 -msgid "Single user instance" -msgstr "Instanza a singolo utente" - -#: ../../mod/admin.php:495 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato" - -#: ../../mod/admin.php:496 -msgid "Maximum image size" -msgstr "Massima dimensione immagini" - -#: ../../mod/admin.php:496 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." - -#: ../../mod/admin.php:497 -msgid "Maximum image length" -msgstr "Massima lunghezza immagine" - -#: ../../mod/admin.php:497 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite." - -#: ../../mod/admin.php:498 -msgid "JPEG image quality" -msgstr "Qualità immagini JPEG" - -#: ../../mod/admin.php:498 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena." - -#: ../../mod/admin.php:500 -msgid "Register policy" -msgstr "Politica di registrazione" - -#: ../../mod/admin.php:501 -msgid "Maximum Daily Registrations" -msgstr "Massime registrazioni giornaliere" - -#: ../../mod/admin.php:501 -msgid "" -"If registration is permitted above, this sets the maximum number of new user" -" registrations to accept per day. If register is set to closed, this " -"setting has no effect." -msgstr "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto." - -#: ../../mod/admin.php:502 -msgid "Register text" -msgstr "Testo registrazione" - -#: ../../mod/admin.php:502 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." - -#: ../../mod/admin.php:503 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo x giorni" - -#: ../../mod/admin.php:503 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo." - -#: ../../mod/admin.php:504 -msgid "Allowed friend domains" -msgstr "Domini amici consentiti" - -#: ../../mod/admin.php:504 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." - -#: ../../mod/admin.php:505 -msgid "Allowed email domains" -msgstr "Domini email consentiti" - -#: ../../mod/admin.php:505 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." - -#: ../../mod/admin.php:506 -msgid "Block public" -msgstr "Blocca pagine pubbliche" - -#: ../../mod/admin.php:506 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato." - -#: ../../mod/admin.php:507 -msgid "Force publish" -msgstr "Forza publicazione" - -#: ../../mod/admin.php:507 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito." - -#: ../../mod/admin.php:508 -msgid "Global directory update URL" -msgstr "URL aggiornamento Elenco Globale" - -#: ../../mod/admin.php:508 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato." - -#: ../../mod/admin.php:509 -msgid "Allow threaded items" -msgstr "Permetti commenti nidificati" - -#: ../../mod/admin.php:509 -msgid "Allow infinite level threading for items on this site." -msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito." - -#: ../../mod/admin.php:510 -msgid "Private posts by default for new users" -msgstr "Post privati di default per i nuovi utenti" - -#: ../../mod/admin.php:510 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici." - -#: ../../mod/admin.php:511 -msgid "Don't include post content in email notifications" -msgstr "Non includere il contenuto dei post nelle notifiche via email" - -#: ../../mod/admin.php:511 -msgid "" -"Don't include the content of a post/comment/private message/etc. in the " -"email notifications that are sent out from this site, as a privacy measure." -msgstr "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy" - -#: ../../mod/admin.php:513 -msgid "Block multiple registrations" -msgstr "Blocca registrazioni multiple" - -#: ../../mod/admin.php:513 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Non permette all'utente di registrare account extra da usare come pagine." - -#: ../../mod/admin.php:514 -msgid "OpenID support" -msgstr "Supporto OpenID" - -#: ../../mod/admin.php:514 -msgid "OpenID support for registration and logins." -msgstr "Supporta OpenID per la registrazione e il login" - -#: ../../mod/admin.php:515 -msgid "Fullname check" -msgstr "Controllo nome completo" - -#: ../../mod/admin.php:515 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam" - -#: ../../mod/admin.php:516 -msgid "UTF-8 Regular expressions" -msgstr "Espressioni regolari UTF-8" - -#: ../../mod/admin.php:516 -msgid "Use PHP UTF8 regular expressions" -msgstr "Usa le espressioni regolari PHP in UTF8" - -#: ../../mod/admin.php:517 -msgid "Show Community Page" -msgstr "Mostra pagina Comunità" - -#: ../../mod/admin.php:517 -msgid "" -"Display a Community page showing all recent public postings on this site." -msgstr "Mostra una pagina Comunità con tutti i recenti messaggi pubblici su questo sito." - -#: ../../mod/admin.php:518 -msgid "Enable OStatus support" -msgstr "Abilita supporto OStatus" - -#: ../../mod/admin.php:518 -msgid "" -"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Fornisce compatibiltà OStatuts (identi.ca, status.net, etc.). Tutte le comunicazioni in OStatus sono pubbliche, per cui avvisi di provacy verranno occasionalmente mostrati." - -#: ../../mod/admin.php:519 -msgid "Enable Diaspora support" -msgstr "Abilita il supporto a Diaspora" - -#: ../../mod/admin.php:519 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Fornisce compatibilità con il network Diaspora." - -#: ../../mod/admin.php:520 -msgid "Only allow Friendica contacts" -msgstr "Permetti solo contatti Friendica" - -#: ../../mod/admin.php:520 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati." - -#: ../../mod/admin.php:521 -msgid "Verify SSL" -msgstr "Verifica SSL" - -#: ../../mod/admin.php:521 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you" -" cannot connect (at all) to self-signed SSL sites." -msgstr "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati." - -#: ../../mod/admin.php:522 -msgid "Proxy user" -msgstr "Utente Proxy" - -#: ../../mod/admin.php:523 -msgid "Proxy URL" -msgstr "URL Proxy" - -#: ../../mod/admin.php:524 -msgid "Network timeout" -msgstr "Timeout rete" - -#: ../../mod/admin.php:524 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)." - -#: ../../mod/admin.php:525 -msgid "Delivery interval" -msgstr "Intervallo di invio" - -#: ../../mod/admin.php:525 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Ritarda il processo di invio in background di n secondi per ridurre il carico di sistema. Raccomandato: 4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati." - -#: ../../mod/admin.php:526 -msgid "Poll interval" -msgstr "Intervallo di poll" - -#: ../../mod/admin.php:526 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio." - -#: ../../mod/admin.php:527 -msgid "Maximum Load Average" -msgstr "Massimo carico medio" - -#: ../../mod/admin.php:527 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50." - -#: ../../mod/admin.php:529 -msgid "Use MySQL full text engine" -msgstr "Usa il motore MySQL full text" - -#: ../../mod/admin.php:529 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri." - -#: ../../mod/admin.php:530 -msgid "Path to item cache" -msgstr "Percorso cache elementi" - -#: ../../mod/admin.php:531 -msgid "Cache duration in seconds" -msgstr "Durata della cache in secondi" - -#: ../../mod/admin.php:531 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day)." -msgstr "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno)." - -#: ../../mod/admin.php:532 -msgid "Path for lock file" -msgstr "Percorso al file di lock" - -#: ../../mod/admin.php:533 -msgid "Temp path" -msgstr "Percorso file temporanei" - -#: ../../mod/admin.php:534 -msgid "Base path to installation" -msgstr "Percorso base all'installazione" - -#: ../../mod/admin.php:552 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato segnato come di successo" - -#: ../../mod/admin.php:562 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Fallita l'esecuzione di %s. Controlla i log di sistema." - -#: ../../mod/admin.php:565 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è stato applicato con successo" - -#: ../../mod/admin.php:569 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine." - -#: ../../mod/admin.php:572 -#, php-format -msgid "Update function %s could not be found." -msgstr "La funzione di aggiornamento %s non puo' essere trovata." - -#: ../../mod/admin.php:587 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." - -#: ../../mod/admin.php:591 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti" - -#: ../../mod/admin.php:592 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato." - -#: ../../mod/admin.php:593 -msgid "Mark success (if update was manually applied)" -msgstr "Segna completato (se l'update è stato applicato manualmente)" - -#: ../../mod/admin.php:594 -msgid "Attempt to execute this update step automatically" -msgstr "Cerco di eseguire questo aggiornamento in automatico" - -#: ../../mod/admin.php:619 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s utente bloccato/sbloccato" -msgstr[1] "%s utenti bloccati/sbloccati" - -#: ../../mod/admin.php:626 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s utente cancellato" -msgstr[1] "%s utenti cancellati" - -#: ../../mod/admin.php:665 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' cancellato" - -#: ../../mod/admin.php:673 -#, php-format -msgid "User '%s' unblocked" -msgstr "Utente '%s' sbloccato" - -#: ../../mod/admin.php:673 -#, php-format -msgid "User '%s' blocked" -msgstr "Utente '%s' bloccato" - -#: ../../mod/admin.php:749 -msgid "select all" -msgstr "seleziona tutti" - -#: ../../mod/admin.php:750 -msgid "User registrations waiting for confirm" -msgstr "Richieste di registrazione in attesa di conferma" - -#: ../../mod/admin.php:751 -msgid "Request date" -msgstr "Data richiesta" - -#: ../../mod/admin.php:751 ../../mod/admin.php:762 ../../mod/settings.php:562 -#: ../../mod/settings.php:588 ../../mod/crepair.php:148 -msgid "Name" -msgstr "Nome" - -#: ../../mod/admin.php:751 ../../mod/admin.php:762 -#: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 -msgid "Email" -msgstr "Email" - -#: ../../mod/admin.php:752 -msgid "No registrations." -msgstr "Nessuna registrazione." - -#: ../../mod/admin.php:754 -msgid "Deny" -msgstr "Nega" - -#: ../../mod/admin.php:756 ../../mod/contacts.php:353 -#: ../../mod/contacts.php:412 -msgid "Block" -msgstr "Blocca" - -#: ../../mod/admin.php:757 ../../mod/contacts.php:353 -#: ../../mod/contacts.php:412 -msgid "Unblock" -msgstr "Sblocca" - -#: ../../mod/admin.php:758 -msgid "Site admin" -msgstr "Amministrazione sito" - -#: ../../mod/admin.php:759 -msgid "Account expired" -msgstr "Account scaduto" - -#: ../../mod/admin.php:762 -msgid "Register date" -msgstr "Data registrazione" - -#: ../../mod/admin.php:762 -msgid "Last login" -msgstr "Ultimo accesso" - -#: ../../mod/admin.php:762 -msgid "Last item" -msgstr "Ultimo elemento" - -#: ../../mod/admin.php:762 -msgid "Account" -msgstr "Account" - -#: ../../mod/admin.php:764 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" - -#: ../../mod/admin.php:765 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?" - -#: ../../mod/admin.php:806 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s disabilitato." - -#: ../../mod/admin.php:810 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s abilitato." - -#: ../../mod/admin.php:820 ../../mod/admin.php:1023 -msgid "Disable" -msgstr "Disabilita" - -#: ../../mod/admin.php:822 ../../mod/admin.php:1025 -msgid "Enable" -msgstr "Abilita" - -#: ../../mod/admin.php:845 ../../mod/admin.php:1053 -msgid "Toggle" -msgstr "Inverti" - -#: ../../mod/admin.php:846 ../../mod/admin.php:1054 ../../mod/newmember.php:22 -#: ../../mod/settings.php:74 ../../mod/uexport.php:48 -#: ../../view/theme/diabook/theme.php:537 -#: ../../view/theme/diabook/theme.php:658 ../../include/nav.php:167 -msgid "Settings" -msgstr "Impostazioni" - -#: ../../mod/admin.php:853 ../../mod/admin.php:1063 -msgid "Author: " -msgstr "Autore: " - -#: ../../mod/admin.php:854 ../../mod/admin.php:1064 -msgid "Maintainer: " -msgstr "Manutentore: " - -#: ../../mod/admin.php:983 -msgid "No themes found." -msgstr "Nessun tema trovato." - -#: ../../mod/admin.php:1045 -msgid "Screenshot" -msgstr "Anteprima" - -#: ../../mod/admin.php:1091 -msgid "[Experimental]" -msgstr "[Sperimentale]" - -#: ../../mod/admin.php:1092 -msgid "[Unsupported]" -msgstr "[Non supportato]" - -#: ../../mod/admin.php:1119 -msgid "Log settings updated." -msgstr "Impostazioni Log aggiornate." - -#: ../../mod/admin.php:1175 -msgid "Clear" -msgstr "Pulisci" - -#: ../../mod/admin.php:1181 -msgid "Debugging" -msgstr "Debugging" - -#: ../../mod/admin.php:1182 -msgid "Log file" -msgstr "File di Log" - -#: ../../mod/admin.php:1182 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica." - -#: ../../mod/admin.php:1183 -msgid "Log level" -msgstr "Livello di Log" - -#: ../../mod/admin.php:1232 ../../mod/contacts.php:409 -msgid "Update now" -msgstr "Aggiorna adesso" - -#: ../../mod/admin.php:1233 -msgid "Close" -msgstr "Chiudi" - -#: ../../mod/admin.php:1239 -msgid "FTP Host" -msgstr "Indirizzo FTP" - -#: ../../mod/admin.php:1240 -msgid "FTP Path" -msgstr "Percorso FTP" - -#: ../../mod/admin.php:1241 -msgid "FTP User" -msgstr "Utente FTP" - -#: ../../mod/admin.php:1242 -msgid "FTP Password" -msgstr "Pasword FTP" - -#: ../../mod/message.php:9 ../../include/nav.php:159 -msgid "New Message" -msgstr "Nuovo messaggio" - -#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Nessun destinatario selezionato." - -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Impossibile trovare le informazioni del contatto." - -#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Il messaggio non puo' essere inviato." - -#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Errore recuperando il messaggio." - -#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Messaggio inviato." - -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Vuoi veramente cancellare questo messaggio?" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Messaggio eliminato." - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Conversazione rimossa." - -#: ../../mod/message.php:283 ../../mod/message.php:291 -#: ../../mod/message.php:466 ../../mod/message.php:474 -#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 -#: ../../include/conversation.php:958 ../../include/conversation.php:976 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" - -#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" - -#: ../../mod/message.php:320 ../../mod/message.php:553 -#: ../../mod/wallmessage.php:144 -msgid "To:" -msgstr "A:" - -#: ../../mod/message.php:325 ../../mod/message.php:555 -#: ../../mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Oggetto:" - -#: ../../mod/message.php:329 ../../mod/message.php:558 -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -msgid "Your message:" -msgstr "Il tuo messaggio:" - -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154 -#: ../../include/conversation.php:1042 -msgid "Upload photo" -msgstr "Carica foto" - -#: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155 -#: ../../include/conversation.php:1046 -msgid "Insert web link" -msgstr "Inserisci link" - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Nessun messaggio." - -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "Mittente sconosciuto - %s" - -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Tu e %s" - -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s e Tu" - -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Elimina la conversazione" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D d M Y - G:i" - -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d messaggio" -msgstr[1] "%d messaggi" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Messaggio non disponibile." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Elimina il messaggio" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente." - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Invia la risposta" - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Oggetto non trovato" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Modifica messaggio" - -#: ../../mod/editpost.php:111 ../../include/conversation.php:1043 -msgid "upload photo" -msgstr "carica foto" - -#: ../../mod/editpost.php:112 ../../include/conversation.php:1044 -msgid "Attach file" -msgstr "Allega file" - -#: ../../mod/editpost.php:113 ../../include/conversation.php:1045 -msgid "attach file" -msgstr "allega file" - -#: ../../mod/editpost.php:115 ../../include/conversation.php:1047 -msgid "web link" -msgstr "link web" - -#: ../../mod/editpost.php:116 ../../include/conversation.php:1048 -msgid "Insert video link" -msgstr "Inserire collegamento video" - -#: ../../mod/editpost.php:117 ../../include/conversation.php:1049 -msgid "video link" -msgstr "link video" - -#: ../../mod/editpost.php:118 ../../include/conversation.php:1050 -msgid "Insert audio link" -msgstr "Inserisci collegamento audio" - -#: ../../mod/editpost.php:119 ../../include/conversation.php:1051 -msgid "audio link" -msgstr "link audio" - -#: ../../mod/editpost.php:120 ../../include/conversation.php:1052 -msgid "Set your location" -msgstr "La tua posizione" - -#: ../../mod/editpost.php:121 ../../include/conversation.php:1053 -msgid "set location" -msgstr "posizione" - -#: ../../mod/editpost.php:122 ../../include/conversation.php:1054 -msgid "Clear browser location" -msgstr "Rimuovi la localizzazione data dal browser" - -#: ../../mod/editpost.php:123 ../../include/conversation.php:1055 -msgid "clear location" -msgstr "canc. pos." - -#: ../../mod/editpost.php:125 ../../include/conversation.php:1061 -msgid "Permission settings" -msgstr "Impostazioni permessi" - -#: ../../mod/editpost.php:133 ../../include/conversation.php:1070 -msgid "CC: email addresses" -msgstr "CC: indirizzi email" - -#: ../../mod/editpost.php:134 ../../include/conversation.php:1071 -msgid "Public post" -msgstr "Messaggio pubblico" - -#: ../../mod/editpost.php:137 ../../include/conversation.php:1057 -msgid "Set title" -msgstr "Scegli un titolo" - -#: ../../mod/editpost.php:139 ../../include/conversation.php:1059 -msgid "Categories (comma-separated list)" -msgstr "Categorie (lista separata da virgola)" - -#: ../../mod/editpost.php:140 ../../include/conversation.php:1073 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Esempio: bob@example.com, mary@example.com" - -#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 -#: ../../mod/profiles.php:133 ../../mod/profiles.php:160 -#: ../../mod/profiles.php:579 -msgid "Profile not found." -msgstr "Profilo non trovato." - -#: ../../mod/dfrn_confirm.php:119 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata." - -#: ../../mod/dfrn_confirm.php:237 -msgid "Response from remote site was not understood." -msgstr "Errore di comunicazione con l'altro sito." - -#: ../../mod/dfrn_confirm.php:246 -msgid "Unexpected response from remote site: " -msgstr "La risposta dell'altro sito non può essere gestita: " - -#: ../../mod/dfrn_confirm.php:254 -msgid "Confirmation completed successfully." -msgstr "Conferma completata con successo." - -#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 -#: ../../mod/dfrn_confirm.php:277 -msgid "Remote site reported: " -msgstr "Il sito remoto riporta: " - -#: ../../mod/dfrn_confirm.php:268 -msgid "Temporary failure. Please wait and try again." -msgstr "Problema temporaneo. Attendi e riprova." - -#: ../../mod/dfrn_confirm.php:275 -msgid "Introduction failed or was revoked." -msgstr "La presentazione ha generato un errore o è stata revocata." - -#: ../../mod/dfrn_confirm.php:420 -msgid "Unable to set contact photo." -msgstr "Impossibile impostare la foto del contatto." - -#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:621 -#: ../../include/conversation.php:172 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s e %2$s adesso sono amici" - -#: ../../mod/dfrn_confirm.php:562 -#, php-format -msgid "No user record found for '%s' " -msgstr "Nessun utente trovato '%s'" - -#: ../../mod/dfrn_confirm.php:572 -msgid "Our site encryption key is apparently messed up." -msgstr "La nostra chiave di criptazione del sito sembra essere corrotta." - -#: ../../mod/dfrn_confirm.php:583 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo." - -#: ../../mod/dfrn_confirm.php:604 -msgid "Contact record was not found for you on our site." -msgstr "Il contatto non è stato trovato sul nostro sito." - -#: ../../mod/dfrn_confirm.php:618 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "La chiave pubblica del sito non è disponibile per l'URL %s" - -#: ../../mod/dfrn_confirm.php:638 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare." - -#: ../../mod/dfrn_confirm.php:649 -msgid "Unable to set your contact credentials on our system." -msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema." - -#: ../../mod/dfrn_confirm.php:716 -msgid "Unable to update your contact profile details on our system" -msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema" - -#: ../../mod/dfrn_confirm.php:751 -#, php-format -msgid "Connection accepted at %s" -msgstr "Connession accettata su %s" - -#: ../../mod/dfrn_confirm.php:800 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s si è unito a %2$s" - -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "Titolo e ora di inizio dell'evento sono richiesti." - -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "l j F" - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Modifca l'evento" - -#: ../../mod/events.php:335 ../../include/text.php:1304 -msgid "link to source" -msgstr "Collegamento all'originale" - -#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:91 -#: ../../boot.php:1885 ../../include/nav.php:79 -msgid "Events" -msgstr "Eventi" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Crea un nuovo evento" - -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Precendente" - -#: ../../mod/events.php:373 ../../mod/install.php:207 -msgid "Next" -msgstr "Successivo" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "ora:minuti" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Dettagli dell'evento" - -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "Il formato è %s %s. Data di inizio e Titolo sono richiesti." - -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "L'evento inizia:" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Richiesto" - -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/ora di fine non è definita" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "L'evento finisce:" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Visualizza con il fuso orario di chi legge" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Descrizione:" - -#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1406 -#: ../../include/event.php:40 ../../include/bb2diaspora.php:415 -msgid "Location:" -msgstr "Posizione:" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Titolo:" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Condividi questo evento" - -#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90 -#: ../../boot.php:1875 ../../include/nav.php:78 -msgid "Photos" -msgstr "Foto" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "File" - -#: ../../mod/home.php:34 -#, php-format -msgid "Welcome to %s" -msgstr "Benvenuto su %s" - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informazioni remote sulla privacy non disponibili." - -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Visibile a:" - -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito." - -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Impossibile controllare la tua posizione di origine." - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Nessun destinatario." - -#: ../../mod/wallmessage.php:143 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti." - -#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395 -#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" - -#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586 -msgid "Edit contact" -msgstr "Modifca contatto" - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Contatti che non sono membri di un gruppo" - -#: ../../mod/friendica.php:55 -msgid "This is Friendica, version" -msgstr "Questo è Friendica, versione" - -#: ../../mod/friendica.php:56 -msgid "running at web location" -msgstr "in esecuzione all'indirizzo web" - -#: ../../mod/friendica.php:58 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." - -#: ../../mod/friendica.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Segnalazioni di bug e problemi: visita" - -#: ../../mod/friendica.php:61 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com" - -#: ../../mod/friendica.php:75 -msgid "Installed plugins/addons/apps:" -msgstr "Plugin/addon/applicazioni instalate" - -#: ../../mod/friendica.php:88 -msgid "No installed plugins/addons/apps" -msgstr "Nessun plugin/addons/applicazione installata" - -#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 -msgid "Remove My Account" -msgstr "Rimuovi il mio account" - -#: ../../mod/removeme.php:46 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." - -#: ../../mod/removeme.php:47 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" - -#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "La dimensione dell'immagine supera il limite di %d" - -#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801 -#: ../../mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Impossibile caricare l'immagine." - -#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 -#: ../../mod/wall_upload.php:151 ../../mod/item.php:443 -#: ../../include/message.php:144 -msgid "Wall Photos" -msgstr "Foto della bacheca" - -#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Caricamento immagine fallito." - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizza la connessione dell'applicazione" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Effettua il login per continuare." - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?" - -#: ../../mod/tagger.php:95 ../../include/conversation.php:266 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha taggato %3$s di %2$s con %4$s" - -#: ../../mod/photos.php:51 ../../boot.php:1878 -msgid "Photo Albums" -msgstr "Album foto" - -#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1058 -#: ../../mod/photos.php:1183 ../../mod/photos.php:1206 -#: ../../mod/photos.php:1736 ../../mod/photos.php:1748 -#: ../../view/theme/diabook/theme.php:492 -msgid "Contact Photos" -msgstr "Foto dei contatti" - -#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795 -msgid "Upload New Photos" -msgstr "Carica nuove foto" - -#: ../../mod/photos.php:79 ../../mod/settings.php:23 -msgid "everybody" -msgstr "tutti" - -#: ../../mod/photos.php:143 -msgid "Contact information unavailable" -msgstr "I dati di questo contatto non sono disponibili" - -#: ../../mod/photos.php:154 ../../mod/photos.php:725 ../../mod/photos.php:1183 -#: ../../mod/photos.php:1206 ../../mod/profile_photo.php:74 -#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 -#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 -#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:493 -#: ../../include/user.php:325 ../../include/user.php:332 -#: ../../include/user.php:339 -msgid "Profile Photos" -msgstr "Foto del profilo" - -#: ../../mod/photos.php:164 -msgid "Album not found." -msgstr "Album non trovato." - -#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200 -msgid "Delete Album" -msgstr "Rimuovi album" - -#: ../../mod/photos.php:197 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?" - -#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502 -msgid "Delete Photo" -msgstr "Rimuovi foto" - -#: ../../mod/photos.php:285 -msgid "Do you really want to delete this photo?" -msgstr "Vuoi veramente cancellare questa foto?" - -#: ../../mod/photos.php:656 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s è stato taggato in %2$s da %3$s" - -#: ../../mod/photos.php:656 -msgid "a photo" -msgstr "una foto" - -#: ../../mod/photos.php:761 -msgid "Image exceeds size limit of " -msgstr "L'immagine supera il limite di" - -#: ../../mod/photos.php:769 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." - -#: ../../mod/photos.php:924 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" - -#: ../../mod/photos.php:1025 -msgid "Access to this item is restricted." -msgstr "Questo oggetto non è visibile a tutti." - -#: ../../mod/photos.php:1088 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili." - -#: ../../mod/photos.php:1123 -msgid "Upload Photos" -msgstr "Carica foto" - -#: ../../mod/photos.php:1127 ../../mod/photos.php:1195 -msgid "New album name: " -msgstr "Nome nuovo album: " - -#: ../../mod/photos.php:1128 -msgid "or existing album name: " -msgstr "o nome di un album esistente: " - -#: ../../mod/photos.php:1129 -msgid "Do not show a status post for this upload" -msgstr "Non creare un post per questo upload" - -#: ../../mod/photos.php:1131 ../../mod/photos.php:1497 -msgid "Permissions" -msgstr "Permessi" - -#: ../../mod/photos.php:1140 ../../mod/photos.php:1506 -#: ../../mod/settings.php:1070 -msgid "Show to Groups" -msgstr "Mostra ai gruppi" - -#: ../../mod/photos.php:1141 ../../mod/photos.php:1507 -#: ../../mod/settings.php:1071 -msgid "Show to Contacts" -msgstr "Mostra ai contatti" - -#: ../../mod/photos.php:1142 -msgid "Private Photo" -msgstr "Foto privata" - -#: ../../mod/photos.php:1143 -msgid "Public Photo" -msgstr "Foto pubblica" - -#: ../../mod/photos.php:1210 -msgid "Edit Album" -msgstr "Modifica album" - -#: ../../mod/photos.php:1216 -msgid "Show Newest First" -msgstr "Mostra nuove foto per prime" - -#: ../../mod/photos.php:1218 -msgid "Show Oldest First" -msgstr "Mostra vecchie foto per prime" - -#: ../../mod/photos.php:1251 ../../mod/photos.php:1778 -msgid "View Photo" -msgstr "Vedi foto" - -#: ../../mod/photos.php:1286 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." - -#: ../../mod/photos.php:1288 -msgid "Photo not available" -msgstr "Foto non disponibile" - -#: ../../mod/photos.php:1344 -msgid "View photo" -msgstr "Vedi foto" - -#: ../../mod/photos.php:1344 -msgid "Edit photo" -msgstr "Modifica foto" - -#: ../../mod/photos.php:1345 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" - -#: ../../mod/photos.php:1370 -msgid "View Full Size" -msgstr "Vedi dimensione intera" - -#: ../../mod/photos.php:1444 -msgid "Tags: " -msgstr "Tag: " - -#: ../../mod/photos.php:1447 -msgid "[Remove any tag]" -msgstr "[Rimuovi tutti i tag]" - -#: ../../mod/photos.php:1487 -msgid "Rotate CW (right)" -msgstr "Ruota a destra" - -#: ../../mod/photos.php:1488 -msgid "Rotate CCW (left)" -msgstr "Ruota a sinistra" - -#: ../../mod/photos.php:1490 -msgid "New album name" -msgstr "Nuovo nome dell'album" - -#: ../../mod/photos.php:1493 -msgid "Caption" -msgstr "Titolo" - -#: ../../mod/photos.php:1495 -msgid "Add a Tag" -msgstr "Aggiungi tag" - -#: ../../mod/photos.php:1499 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: ../../mod/photos.php:1508 -msgid "Private photo" -msgstr "Foto privata" - -#: ../../mod/photos.php:1509 -msgid "Public photo" -msgstr "Foto pubblica" - -#: ../../mod/photos.php:1531 ../../include/conversation.php:1041 -msgid "Share" -msgstr "Condividi" - -#: ../../mod/photos.php:1784 -msgid "View Album" -msgstr "Sfoglia l'album" - -#: ../../mod/photos.php:1793 -msgid "Recent Photos" -msgstr "Foto recenti" - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Nessun profilo" - -#: ../../mod/register.php:91 ../../mod/regmod.php:54 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" - -#: ../../mod/register.php:99 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni." - -#: ../../mod/register.php:103 -msgid "Failed to send email message. Here is the message that failed." -msgstr "Errore nell'invio del messaggio email. Questo è il messaggio non inviato." - -#: ../../mod/register.php:108 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere elaborata." - -#: ../../mod/register.php:145 -#, php-format -msgid "Registration request at %s" -msgstr "Richiesta di registrazione su %s" - -#: ../../mod/register.php:154 -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:192 ../../mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." - -#: ../../mod/register.php:220 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'." - -#: ../../mod/register.php:221 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera." - -#: ../../mod/register.php:222 -msgid "Your OpenID (optional): " -msgstr "Il tuo OpenID (opzionale): " - -#: ../../mod/register.php:236 -msgid "Include your profile in member directory?" -msgstr "Includi il tuo profilo nell'elenco pubblico?" - -#: ../../mod/register.php:257 -msgid "Membership on this site is by invitation only." -msgstr "La registrazione su questo sito è solo su invito." - -#: ../../mod/register.php:258 -msgid "Your invitation ID: " -msgstr "L'ID del tuo invito:" - -#: ../../mod/register.php:269 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Il tuo nome completo (es. Mario Rossi): " - -#: ../../mod/register.php:270 -msgid "Your Email Address: " -msgstr "Il tuo indirizzo email: " - -#: ../../mod/register.php:271 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@$sitename'." - -#: ../../mod/register.php:272 -msgid "Choose a nickname: " -msgstr "Scegli un nome utente: " - -#: ../../mod/register.php:275 ../../boot.php:1033 ../../include/nav.php:108 -msgid "Register" -msgstr "Registrati" - -#: ../../mod/lostpass.php:17 -msgid "No valid account found." -msgstr "Nessun account valido trovato." - -#: ../../mod/lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." - -#: ../../mod/lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Richiesta reimpostazione password su %s" - -#: ../../mod/lostpass.php:66 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita." - -#: ../../mod/lostpass.php:84 ../../boot.php:1072 -msgid "Password Reset" -msgstr "Reimpostazione password" - -#: ../../mod/lostpass.php:85 -msgid "Your password has been reset as requested." -msgstr "La tua password è stata reimpostata come richiesto." - -#: ../../mod/lostpass.php:86 -msgid "Your new password is" -msgstr "La tua nuova password è" - -#: ../../mod/lostpass.php:87 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" - -#: ../../mod/lostpass.php:88 -msgid "click here to login" -msgstr "clicca qui per entrare" - -#: ../../mod/lostpass.php:89 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso." - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has been changed at %s" -msgstr "La tua password presso %s è stata cambiata" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Inserisci il tuo indirizzo email per reimpostare la password." - -#: ../../mod/lostpass.php:124 -msgid "Nickname or Email: " -msgstr "Nome utente o email: " - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Reimposta" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Sistema in manutenzione" - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Oggetto non disponibile." - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Oggetto non trovato." - -#: ../../mod/apps.php:4 -msgid "Applications" -msgstr "Applicazioni" - -#: ../../mod/apps.php:7 -msgid "No installed applications." -msgstr "Nessuna applicazione installata." - -#: ../../mod/help.php:79 -msgid "Help:" -msgstr "Guida:" - -#: ../../mod/help.php:84 ../../include/nav.php:113 -msgid "Help" -msgstr "Guida" - -#: ../../mod/contacts.php:85 ../../mod/contacts.php:165 -msgid "Could not access contact record." -msgstr "Non è possibile accedere al contatto." - -#: ../../mod/contacts.php:99 -msgid "Could not locate selected profile." -msgstr "Non riesco a trovare il profilo selezionato." - -#: ../../mod/contacts.php:122 -msgid "Contact updated." -msgstr "Contatto aggiornato." - -#: ../../mod/contacts.php:187 -msgid "Contact has been blocked" -msgstr "Il contatto è stato bloccato" - -#: ../../mod/contacts.php:187 -msgid "Contact has been unblocked" -msgstr "Il contatto è stato sbloccato" - -#: ../../mod/contacts.php:201 -msgid "Contact has been ignored" -msgstr "Il contatto è ignorato" - -#: ../../mod/contacts.php:201 -msgid "Contact has been unignored" -msgstr "Il contatto non è più ignorato" - -#: ../../mod/contacts.php:220 -msgid "Contact has been archived" -msgstr "Il contatto è stato archiviato" - -#: ../../mod/contacts.php:220 -msgid "Contact has been unarchived" -msgstr "Il contatto è stato dearchiviato" - -#: ../../mod/contacts.php:244 -msgid "Do you really want to delete this contact?" -msgstr "Vuoi veramente cancellare questo contatto?" - -#: ../../mod/contacts.php:263 -msgid "Contact has been removed." -msgstr "Il contatto è stato rimosso." - -#: ../../mod/contacts.php:301 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Sei amico reciproco con %s" - -#: ../../mod/contacts.php:305 -#, php-format -msgid "You are sharing with %s" -msgstr "Stai condividendo con %s" - -#: ../../mod/contacts.php:310 -#, php-format -msgid "%s is sharing with you" -msgstr "%s sta condividendo con te" - -#: ../../mod/contacts.php:327 -msgid "Private communications are not available for this contact." -msgstr "Le comunicazioni private non sono disponibili per questo contatto." - -#: ../../mod/contacts.php:330 -msgid "Never" -msgstr "Mai" - -#: ../../mod/contacts.php:334 -msgid "(Update was successful)" -msgstr "(L'aggiornamento è stato completato)" - -#: ../../mod/contacts.php:334 -msgid "(Update was not successful)" -msgstr "(L'aggiornamento non è stato completato)" - -#: ../../mod/contacts.php:336 -msgid "Suggest friends" -msgstr "Suggerisci amici" - -#: ../../mod/contacts.php:340 -#, php-format -msgid "Network type: %s" -msgstr "Tipo di rete: %s" - -#: ../../mod/contacts.php:343 ../../include/contact_widgets.php:199 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contatto in comune" -msgstr[1] "%d contatti in comune" - -#: ../../mod/contacts.php:348 -msgid "View all contacts" -msgstr "Vedi tutti i contatti" - -#: ../../mod/contacts.php:356 -msgid "Toggle Blocked status" -msgstr "Inverti stato \"Blocca\"" - -#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 -msgid "Unignore" -msgstr "Non ignorare" - -#: ../../mod/contacts.php:362 -msgid "Toggle Ignored status" -msgstr "Inverti stato \"Ignora\"" - -#: ../../mod/contacts.php:366 -msgid "Unarchive" -msgstr "Dearchivia" - -#: ../../mod/contacts.php:366 -msgid "Archive" -msgstr "Archivia" - -#: ../../mod/contacts.php:369 -msgid "Toggle Archive status" -msgstr "Inverti stato \"Archiviato\"" - -#: ../../mod/contacts.php:372 -msgid "Repair" -msgstr "Ripara" - -#: ../../mod/contacts.php:375 -msgid "Advanced Contact Settings" -msgstr "Impostazioni avanzate Contatto" - -#: ../../mod/contacts.php:381 -msgid "Communications lost with this contact!" -msgstr "Comunicazione con questo contatto persa!" - -#: ../../mod/contacts.php:384 -msgid "Contact Editor" -msgstr "Editor dei Contatti" - -#: ../../mod/contacts.php:387 -msgid "Profile Visibility" -msgstr "Visibilità del profilo" - -#: ../../mod/contacts.php:388 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro." - -#: ../../mod/contacts.php:389 -msgid "Contact Information / Notes" -msgstr "Informazioni / Note sul contatto" - -#: ../../mod/contacts.php:390 -msgid "Edit contact notes" -msgstr "Modifica note contatto" - -#: ../../mod/contacts.php:396 -msgid "Block/Unblock contact" -msgstr "Blocca/Sblocca contatto" - -#: ../../mod/contacts.php:397 -msgid "Ignore contact" -msgstr "Ignora il contatto" - -#: ../../mod/contacts.php:398 -msgid "Repair URL settings" -msgstr "Impostazioni riparazione URL" - -#: ../../mod/contacts.php:399 -msgid "View conversations" -msgstr "Vedi conversazioni" - -#: ../../mod/contacts.php:401 -msgid "Delete contact" -msgstr "Rimuovi contatto" - -#: ../../mod/contacts.php:405 -msgid "Last update:" -msgstr "Ultimo aggiornamento:" - -#: ../../mod/contacts.php:407 -msgid "Update public posts" -msgstr "Aggiorna messaggi pubblici" - -#: ../../mod/contacts.php:416 -msgid "Currently blocked" -msgstr "Bloccato" - -#: ../../mod/contacts.php:417 -msgid "Currently ignored" -msgstr "Ignorato" - -#: ../../mod/contacts.php:418 -msgid "Currently archived" -msgstr "Al momento archiviato" - -#: ../../mod/contacts.php:419 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Risposte ai tuoi post pubblici possono essere comunque visibili" - -#: ../../mod/contacts.php:470 -msgid "Suggestions" -msgstr "Suggerimenti" - -#: ../../mod/contacts.php:473 -msgid "Suggest potential friends" -msgstr "Suggerisci potenziali amici" - -#: ../../mod/contacts.php:476 ../../mod/group.php:194 -msgid "All Contacts" -msgstr "Tutti i contatti" - -#: ../../mod/contacts.php:479 -msgid "Show all contacts" -msgstr "Mostra tutti i contatti" - -#: ../../mod/contacts.php:482 -msgid "Unblocked" -msgstr "Sbloccato" - -#: ../../mod/contacts.php:485 -msgid "Only show unblocked contacts" -msgstr "Mostra solo contatti non bloccati" - -#: ../../mod/contacts.php:489 -msgid "Blocked" -msgstr "Bloccato" - -#: ../../mod/contacts.php:492 -msgid "Only show blocked contacts" -msgstr "Mostra solo contatti bloccati" - -#: ../../mod/contacts.php:496 -msgid "Ignored" -msgstr "Ignorato" - -#: ../../mod/contacts.php:499 -msgid "Only show ignored contacts" -msgstr "Mostra solo contatti ignorati" - -#: ../../mod/contacts.php:503 -msgid "Archived" -msgstr "Achiviato" - -#: ../../mod/contacts.php:506 -msgid "Only show archived contacts" -msgstr "Mostra solo contatti archiviati" - -#: ../../mod/contacts.php:510 -msgid "Hidden" -msgstr "Nascosto" - -#: ../../mod/contacts.php:513 -msgid "Only show hidden contacts" -msgstr "Mostra solo contatti nascosti" - -#: ../../mod/contacts.php:561 -msgid "Mutual Friendship" -msgstr "Amicizia reciproca" - -#: ../../mod/contacts.php:565 -msgid "is a fan of yours" -msgstr "è un tuo fan" - -#: ../../mod/contacts.php:569 -msgid "you are a fan of" -msgstr "sei un fan di" - -#: ../../mod/contacts.php:607 ../../view/theme/diabook/theme.php:89 -#: ../../include/nav.php:171 -msgid "Contacts" -msgstr "Contatti" - -#: ../../mod/contacts.php:611 -msgid "Search your contacts" -msgstr "Cerca nei tuoi contatti" - -#: ../../mod/contacts.php:612 ../../mod/directory.php:59 -msgid "Finding: " -msgstr "Ricerca: " - -#: ../../mod/contacts.php:613 ../../mod/directory.php:61 -#: ../../include/contact_widgets.php:33 -msgid "Find" -msgstr "Trova" - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Amici in comune" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Nessun contatto in comune." - -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Contatto aggiunto" - -#: ../../mod/uimport.php:64 -msgid "Import" -msgstr "Importa" - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Muovi account" - -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Puoi importare un account da un altro server Friendica." - -#: ../../mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui." - -#: ../../mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora" - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "File account" - -#: ../../mod/uimport.php:70 -msgid "" -"To export your accont, go to \"Settings->Export your porsonal data\" and " -"select \"Export account\"" -msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" - -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Amici di %s" - -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Nessun amico da visualizzare." - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag rimosso" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " - -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 -msgid "Remove" -msgstr "Rimuovi" - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Benvenuto su Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Cose da fare per i Nuovi Utenti" - -#: ../../mod/newmember.php:12 -msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page. A link to this page " -"will be visible from your home page for two weeks after your initial " -"registration and then will quietly disappear." -msgstr "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione." - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Come Iniziare" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Friendica Passo-Passo" - -#: ../../mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti." - -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Vai alle tue Impostazioni" - -#: ../../mod/newmember.php:26 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero." - -#: ../../mod/newmember.php:28 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished" -" directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti." - -#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 -#: ../../view/theme/diabook/theme.php:88 ../../boot.php:1868 #: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84 -#: ../../include/nav.php:77 +#: ../../include/nav.php:77 ../../mod/profperm.php:103 +#: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88 +#: ../../boot.php:1947 msgid "Profile" msgstr "Profilo" -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "Carica la foto del profilo" - -#: ../../mod/newmember.php:36 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make" -" friends than people who do not." -msgstr "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno." - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Modifica il tuo Profilo" - -#: ../../mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti." - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Parole chiave del profilo" - -#: ../../mod/newmember.php:40 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie." - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Collegarsi" - -#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: ../../mod/newmember.php:49 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook." - -#: ../../mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "SeAdd New Contact dialog." -msgstr "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto" - -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Vai all'Elenco del tuo sito" - -#: ../../mod/newmember.php:60 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto." - -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Trova nuove persone" - -#: ../../mod/newmember.php:62 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand" -" new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore." - -#: ../../mod/newmember.php:66 ../../include/group.php:270 -msgid "Groups" -msgstr "Gruppi" - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Raggruppa i tuoi contatti" - -#: ../../mod/newmember.php:70 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with" -" each group privately on your Network page." -msgstr "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete" - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Perchè i miei post non sono pubblici?" - -#: ../../mod/newmember.php:73 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "Friendica rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra." - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "Ottenere Aiuto" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Vai alla sezione Guida" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse." - -#: ../../mod/search.php:21 ../../mod/network.php:224 -msgid "Remove term" -msgstr "Rimuovi termine" - -#: ../../mod/search.php:30 ../../mod/network.php:233 -#: ../../include/features.php:41 -msgid "Saved Searches" -msgstr "Ricerche salvate" - -#: ../../mod/search.php:99 ../../include/text.php:778 -#: ../../include/text.php:779 ../../include/nav.php:118 -msgid "Search" -msgstr "Cerca" - -#: ../../mod/search.php:180 ../../mod/search.php:206 -#: ../../mod/community.php:61 ../../mod/community.php:88 -msgid "No results." -msgstr "Nessun risultato." - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limite totale degli inviti superato." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Unisiciti a noi su Friendica" - -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito." - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio fallita." - -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d messaggio inviato." -msgstr[1] "%d messaggi inviati." - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" - -#: ../../mod/invite.php:120 -#, php-format -msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network." - -#: ../../mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico." - -#: ../../mod/invite.php:123 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti." - -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri." - -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Invia inviti" - -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" - -#: ../../mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore." - -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Sarà necessario fornire questo codice invito: $invite_code" - -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Una volta registrato, connettiti con me dal mio profilo:" - -#: ../../mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com" - -#: ../../mod/settings.php:30 ../../mod/uexport.php:9 ../../include/nav.php:167 -msgid "Account settings" -msgstr "Parametri account" - -#: ../../mod/settings.php:35 -msgid "Additional features" -msgstr "Funzionalità aggiuntive" - -#: ../../mod/settings.php:40 ../../mod/uexport.php:14 -msgid "Display settings" -msgstr "Impostazioni grafiche" - -#: ../../mod/settings.php:46 ../../mod/uexport.php:20 -msgid "Connector settings" -msgstr "Impostazioni connettori" - -#: ../../mod/settings.php:51 ../../mod/uexport.php:25 -msgid "Plugin settings" -msgstr "Impostazioni plugin" - -#: ../../mod/settings.php:56 ../../mod/uexport.php:30 -msgid "Connected apps" -msgstr "Applicazioni collegate" - -#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80 -msgid "Export personal data" -msgstr "Esporta dati personali" - -#: ../../mod/settings.php:66 ../../mod/uexport.php:40 -msgid "Remove account" -msgstr "Rimuovi account" - -#: ../../mod/settings.php:118 -msgid "Missing some important data!" -msgstr "Mancano alcuni dati importanti!" - -#: ../../mod/settings.php:121 ../../mod/settings.php:586 -msgid "Update" -msgstr "Aggiorna" - -#: ../../mod/settings.php:227 -msgid "Failed to connect with email account using the settings provided." -msgstr "Impossibile collegarsi all'account email con i parametri forniti." - -#: ../../mod/settings.php:232 -msgid "Email settings updated." -msgstr "Impostazioni e-mail aggiornate." - -#: ../../mod/settings.php:247 -msgid "Features updated" -msgstr "Funzionalità aggiornate" - -#: ../../mod/settings.php:307 -msgid "Passwords do not match. Password unchanged." -msgstr "Le password non corrispondono. Password non cambiata." - -#: ../../mod/settings.php:312 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Le password non possono essere vuote. Password non cambiata." - -#: ../../mod/settings.php:323 -msgid "Password changed." -msgstr "Password cambiata." - -#: ../../mod/settings.php:325 -msgid "Password update failed. Please try again." -msgstr "Aggiornamento password fallito. Prova ancora." - -#: ../../mod/settings.php:390 -msgid " Please use a shorter name." -msgstr " Usa un nome più corto." - -#: ../../mod/settings.php:392 -msgid " Name too short." -msgstr " Nome troppo corto." - -#: ../../mod/settings.php:398 -msgid " Not valid email." -msgstr " Email non valida." - -#: ../../mod/settings.php:400 -msgid " Cannot change to that email." -msgstr "Non puoi usare quella email." - -#: ../../mod/settings.php:454 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito." - -#: ../../mod/settings.php:458 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito." - -#: ../../mod/settings.php:488 -msgid "Settings updated." -msgstr "Impostazioni aggiornate." - -#: ../../mod/settings.php:559 ../../mod/settings.php:585 -#: ../../mod/settings.php:621 -msgid "Add application" -msgstr "Aggiungi applicazione" - -#: ../../mod/settings.php:563 ../../mod/settings.php:589 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../mod/settings.php:564 ../../mod/settings.php:590 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../mod/settings.php:565 ../../mod/settings.php:591 -msgid "Redirect" -msgstr "Redirect" - -#: ../../mod/settings.php:566 ../../mod/settings.php:592 -msgid "Icon url" -msgstr "Url icona" - -#: ../../mod/settings.php:577 -msgid "You can't edit this application." -msgstr "Non puoi modificare questa applicazione." - -#: ../../mod/settings.php:620 -msgid "Connected Apps" -msgstr "Applicazioni Collegate" - -#: ../../mod/settings.php:624 -msgid "Client key starts with" -msgstr "Chiave del client inizia con" - -#: ../../mod/settings.php:625 -msgid "No name" -msgstr "Nessun nome" - -#: ../../mod/settings.php:626 -msgid "Remove authorization" -msgstr "Rimuovi l'autorizzazione" - -#: ../../mod/settings.php:638 -msgid "No Plugin settings configured" -msgstr "Nessun plugin ha impostazioni modificabili" - -#: ../../mod/settings.php:646 -msgid "Plugin Settings" -msgstr "Impostazioni plugin" - -#: ../../mod/settings.php:660 -msgid "Off" -msgstr "Spento" - -#: ../../mod/settings.php:660 -msgid "On" -msgstr "Acceso" - -#: ../../mod/settings.php:668 -msgid "Additional Features" -msgstr "Funzionalità aggiuntive" - -#: ../../mod/settings.php:681 ../../mod/settings.php:682 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Il supporto integrato per la connettività con %s è %s" - -#: ../../mod/settings.php:681 ../../mod/settings.php:682 -msgid "enabled" -msgstr "abilitato" - -#: ../../mod/settings.php:681 ../../mod/settings.php:682 -msgid "disabled" -msgstr "disabilitato" - -#: ../../mod/settings.php:682 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:714 -msgid "Email access is disabled on this site." -msgstr "L'accesso email è disabilitato su questo sito." - -#: ../../mod/settings.php:721 -msgid "Connector Settings" -msgstr "Impostazioni Connettore" - -#: ../../mod/settings.php:726 -msgid "Email/Mailbox Setup" -msgstr "Impostazioni email" - -#: ../../mod/settings.php:727 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)" - -#: ../../mod/settings.php:728 -msgid "Last successful email check:" -msgstr "Ultimo controllo email eseguito con successo:" - -#: ../../mod/settings.php:730 -msgid "IMAP server name:" -msgstr "Nome server IMAP:" - -#: ../../mod/settings.php:731 -msgid "IMAP port:" -msgstr "Porta IMAP:" - -#: ../../mod/settings.php:732 -msgid "Security:" -msgstr "Sicurezza:" - -#: ../../mod/settings.php:732 ../../mod/settings.php:737 -msgid "None" -msgstr "Nessuna" - -#: ../../mod/settings.php:733 -msgid "Email login name:" -msgstr "Nome utente email:" - -#: ../../mod/settings.php:734 -msgid "Email password:" -msgstr "Password email:" - -#: ../../mod/settings.php:735 -msgid "Reply-to address:" -msgstr "Indirizzo di risposta:" - -#: ../../mod/settings.php:736 -msgid "Send public posts to all email contacts:" -msgstr "Invia i messaggi pubblici ai contatti email:" - -#: ../../mod/settings.php:737 -msgid "Action after import:" -msgstr "Azione post importazione:" - -#: ../../mod/settings.php:737 -msgid "Mark as seen" -msgstr "Segna come letto" - -#: ../../mod/settings.php:737 -msgid "Move to folder" -msgstr "Sposta nella cartella" - -#: ../../mod/settings.php:738 -msgid "Move to folder:" -msgstr "Sposta nella cartella:" - -#: ../../mod/settings.php:809 -msgid "Display Settings" -msgstr "Impostazioni Grafiche" - -#: ../../mod/settings.php:815 ../../mod/settings.php:826 -msgid "Display Theme:" -msgstr "Tema:" - -#: ../../mod/settings.php:816 -msgid "Mobile Theme:" -msgstr "Tema mobile:" - -#: ../../mod/settings.php:817 -msgid "Update browser every xx seconds" -msgstr "Aggiorna il browser ogni x secondi" - -#: ../../mod/settings.php:817 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimo 10 secondi, nessun limite massimo" - -#: ../../mod/settings.php:818 -msgid "Number of items to display per page:" -msgstr "Numero di elementi da mostrare per pagina:" - -#: ../../mod/settings.php:818 -msgid "Maximum of 100 items" -msgstr "Massimo 100 voci" - -#: ../../mod/settings.php:819 -msgid "Don't show emoticons" -msgstr "Non mostrare le emoticons" - -#: ../../mod/settings.php:895 -msgid "Normal Account Page" -msgstr "Pagina Account Normale" - -#: ../../mod/settings.php:896 -msgid "This account is a normal personal profile" -msgstr "Questo account è un normale profilo personale" - -#: ../../mod/settings.php:899 -msgid "Soapbox Page" -msgstr "Pagina Sandbox" - -#: ../../mod/settings.php:900 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca" - -#: ../../mod/settings.php:903 -msgid "Community Forum/Celebrity Account" -msgstr "Account Celebrità/Forum comunitario" - -#: ../../mod/settings.php:904 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca" - -#: ../../mod/settings.php:907 -msgid "Automatic Friend Page" -msgstr "Pagina con amicizia automatica" - -#: ../../mod/settings.php:908 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" - -#: ../../mod/settings.php:911 -msgid "Private Forum [Experimental]" -msgstr "Forum privato [sperimentale]" - -#: ../../mod/settings.php:912 -msgid "Private forum - approved members only" -msgstr "Forum privato - solo membri approvati" - -#: ../../mod/settings.php:924 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:924 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" - -#: ../../mod/settings.php:934 -msgid "Publish your default profile in your local site directory?" -msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" - -#: ../../mod/settings.php:940 -msgid "Publish your default profile in the global social directory?" -msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" - -#: ../../mod/settings.php:948 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito" - -#: ../../mod/settings.php:952 -msgid "Hide your profile details from unknown viewers?" -msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" - -#: ../../mod/settings.php:957 -msgid "Allow friends to post to your profile page?" -msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" - -#: ../../mod/settings.php:963 -msgid "Allow friends to tag your posts?" -msgstr "Permetti agli amici di taggare i tuoi messaggi?" - -#: ../../mod/settings.php:969 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Ci permetti di suggerirti come potenziale amico ai nuovi membri?" - -#: ../../mod/settings.php:975 -msgid "Permit unknown people to send you private mail?" -msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" - -#: ../../mod/settings.php:983 -msgid "Profile is not published." -msgstr "Il profilo non è pubblicato." - -#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248 -msgid "or" -msgstr "o" - -#: ../../mod/settings.php:991 -msgid "Your Identity Address is" -msgstr "L'indirizzo della tua identità è" - -#: ../../mod/settings.php:1002 -msgid "Automatically expire posts after this many days:" -msgstr "Fai scadere i post automaticamente dopo x giorni:" - -#: ../../mod/settings.php:1002 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." - -#: ../../mod/settings.php:1003 -msgid "Advanced expiration settings" -msgstr "Impostazioni avanzate di scandenza" - -#: ../../mod/settings.php:1004 -msgid "Advanced Expiration" -msgstr "Scadenza avanzata" - -#: ../../mod/settings.php:1005 -msgid "Expire posts:" -msgstr "Fai scadere i post:" - -#: ../../mod/settings.php:1006 -msgid "Expire personal notes:" -msgstr "Fai scadere le Note personali:" - -#: ../../mod/settings.php:1007 -msgid "Expire starred posts:" -msgstr "Fai scadere i post Speciali:" - -#: ../../mod/settings.php:1008 -msgid "Expire photos:" -msgstr "Fai scadere le foto:" - -#: ../../mod/settings.php:1009 -msgid "Only expire posts by others:" -msgstr "Fai scadere solo i post degli altri:" - -#: ../../mod/settings.php:1035 -msgid "Account Settings" -msgstr "Impostazioni account" - -#: ../../mod/settings.php:1043 -msgid "Password Settings" -msgstr "Impostazioni password" - -#: ../../mod/settings.php:1044 -msgid "New Password:" -msgstr "Nuova password:" - -#: ../../mod/settings.php:1045 -msgid "Confirm:" -msgstr "Conferma:" - -#: ../../mod/settings.php:1045 -msgid "Leave password fields blank unless changing" -msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" - -#: ../../mod/settings.php:1049 -msgid "Basic Settings" -msgstr "Impostazioni base" - -#: ../../mod/settings.php:1050 ../../include/profile_advanced.php:15 +#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1079 msgid "Full Name:" msgstr "Nome completo:" -#: ../../mod/settings.php:1051 -msgid "Email Address:" -msgstr "Indirizzo Email:" - -#: ../../mod/settings.php:1052 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" - -#: ../../mod/settings.php:1053 -msgid "Default Post Location:" -msgstr "Località predefinita:" - -#: ../../mod/settings.php:1054 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" - -#: ../../mod/settings.php:1057 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di sicurezza e privacy" - -#: ../../mod/settings.php:1059 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo di richieste di amicizia al giorno:" - -#: ../../mod/settings.php:1059 ../../mod/settings.php:1089 -msgid "(to prevent spam abuse)" -msgstr "(per prevenire lo spam)" - -#: ../../mod/settings.php:1060 -msgid "Default Post Permissions" -msgstr "Permessi predefiniti per i messaggi" - -#: ../../mod/settings.php:1061 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" - -#: ../../mod/settings.php:1072 -msgid "Default Private Post" -msgstr "" - -#: ../../mod/settings.php:1073 -msgid "Default Public Post" -msgstr "" - -#: ../../mod/settings.php:1077 -msgid "Default Permissions for New Posts" -msgstr "Permessi predefiniti per i nuovi post" - -#: ../../mod/settings.php:1089 -msgid "Maximum private messages per day from unknown people:" -msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" - -#: ../../mod/settings.php:1092 -msgid "Notification Settings" -msgstr "Impostazioni notifiche" - -#: ../../mod/settings.php:1093 -msgid "By default post a status message when:" -msgstr "Invia un messaggio di stato quando:" - -#: ../../mod/settings.php:1094 -msgid "accepting a friend request" -msgstr "accetti una richiesta di amicizia" - -#: ../../mod/settings.php:1095 -msgid "joining a forum/community" -msgstr "ti unisci a un forum/comunità" - -#: ../../mod/settings.php:1096 -msgid "making an interesting profile change" -msgstr "fai un interessante modifica al profilo" - -#: ../../mod/settings.php:1097 -msgid "Send a notification email when:" -msgstr "Invia una mail di notifica quando:" - -#: ../../mod/settings.php:1098 -msgid "You receive an introduction" -msgstr "Ricevi una presentazione" - -#: ../../mod/settings.php:1099 -msgid "Your introductions are confirmed" -msgstr "Le tue presentazioni sono confermate" - -#: ../../mod/settings.php:1100 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla bacheca del tuo profilo" - -#: ../../mod/settings.php:1101 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento a un tuo messaggio" - -#: ../../mod/settings.php:1102 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" - -#: ../../mod/settings.php:1103 -msgid "You receive a friend suggestion" -msgstr "Hai ricevuto un suggerimento di amicizia" - -#: ../../mod/settings.php:1104 -msgid "You are tagged in a post" -msgstr "Sei stato taggato in un post" - -#: ../../mod/settings.php:1105 -msgid "You are poked/prodded/etc. in a post" -msgstr "Sei 'toccato'/'spronato'/ecc. in un post" - -#: ../../mod/settings.php:1108 -msgid "Advanced Account/Page Type Settings" -msgstr "Impostazioni avanzate Account/Tipo di pagina" - -#: ../../mod/settings.php:1109 -msgid "Change the behaviour of this account for special situations" -msgstr "Modifica il comportamento di questo account in situazioni speciali" - -#: ../../mod/display.php:177 -msgid "Item has been removed." -msgstr "L'oggetto è stato rimosso." - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Cerca persone" - -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Nessun risultato" - -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profilo elminato." - -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Profilo-" - -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Il nuovo profilo è stato creato." - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il profilo." - -#: ../../mod/profiles.php:170 -msgid "Profile Name is required." -msgstr "Il nome profilo è obbligatorio ." - -#: ../../mod/profiles.php:317 -msgid "Marital Status" -msgstr "Stato civile" - -#: ../../mod/profiles.php:321 -msgid "Romantic Partner" -msgstr "Partner romantico" - -#: ../../mod/profiles.php:325 -msgid "Likes" -msgstr "Mi piace" - -#: ../../mod/profiles.php:329 -msgid "Dislikes" -msgstr "Non mi piace" - -#: ../../mod/profiles.php:333 -msgid "Work/Employment" -msgstr "Lavoro/Impiego" - -#: ../../mod/profiles.php:336 -msgid "Religion" -msgstr "Religione" - -#: ../../mod/profiles.php:340 -msgid "Political Views" -msgstr "Orientamento Politico" - -#: ../../mod/profiles.php:344 -msgid "Gender" -msgstr "Sesso" - -#: ../../mod/profiles.php:348 -msgid "Sexual Preference" -msgstr "Preferenza sessuale" - -#: ../../mod/profiles.php:352 -msgid "Homepage" -msgstr "Homepage" - -#: ../../mod/profiles.php:356 -msgid "Interests" -msgstr "Interessi" - -#: ../../mod/profiles.php:360 -msgid "Address" -msgstr "Indirizzo" - -#: ../../mod/profiles.php:367 -msgid "Location" -msgstr "Posizione" - -#: ../../mod/profiles.php:450 -msgid "Profile updated." -msgstr "Profilo aggiornato." - -#: ../../mod/profiles.php:517 -msgid " and " -msgstr "e " - -#: ../../mod/profiles.php:525 -msgid "public profile" -msgstr "profilo pubblico" - -#: ../../mod/profiles.php:528 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiato %2$s in “%3$s”" - -#: ../../mod/profiles.php:529 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "- Visita %2$s di %1$s" - -#: ../../mod/profiles.php:532 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha un %2$s aggiornato. Ha cambiato %3$s" - -#: ../../mod/profiles.php:605 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?" - -#: ../../mod/profiles.php:625 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" - -#: ../../mod/profiles.php:627 -msgid "Change Profile Photo" -msgstr "Cambia la foto del profilo" - -#: ../../mod/profiles.php:628 -msgid "View this profile" -msgstr "Visualizza questo profilo" - -#: ../../mod/profiles.php:629 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" - -#: ../../mod/profiles.php:630 -msgid "Clone this profile" -msgstr "Clona questo profilo" - -#: ../../mod/profiles.php:631 -msgid "Delete this profile" -msgstr "Elimina questo profilo" - -#: ../../mod/profiles.php:632 -msgid "Profile Name:" -msgstr "Nome del profilo:" - -#: ../../mod/profiles.php:633 -msgid "Your Full Name:" -msgstr "Il tuo nome completo:" - -#: ../../mod/profiles.php:634 -msgid "Title/Description:" -msgstr "Breve descrizione (es. titolo, posizione, altro):" - -#: ../../mod/profiles.php:635 -msgid "Your Gender:" -msgstr "Il tuo sesso:" - -#: ../../mod/profiles.php:636 -#, php-format -msgid "Birthday (%s):" -msgstr "Compleanno (%s)" - -#: ../../mod/profiles.php:637 -msgid "Street Address:" -msgstr "Indirizzo (via/piazza):" - -#: ../../mod/profiles.php:638 -msgid "Locality/City:" -msgstr "Località:" - -#: ../../mod/profiles.php:639 -msgid "Postal/Zip Code:" -msgstr "CAP:" - -#: ../../mod/profiles.php:640 -msgid "Country:" -msgstr "Nazione:" - -#: ../../mod/profiles.php:641 -msgid "Region/State:" -msgstr "Regione/Stato:" - -#: ../../mod/profiles.php:642 -msgid " Marital Status:" -msgstr " Stato sentimentale:" - -#: ../../mod/profiles.php:643 -msgid "Who: (if applicable)" -msgstr "Con chi: (se possibile)" - -#: ../../mod/profiles.php:644 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:645 -msgid "Since [date]:" -msgstr "Dal [data]:" - -#: ../../mod/profiles.php:646 ../../include/profile_advanced.php:46 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" - -#: ../../mod/profiles.php:647 -msgid "Homepage URL:" -msgstr "Homepage:" - -#: ../../mod/profiles.php:648 ../../include/profile_advanced.php:50 -msgid "Hometown:" -msgstr "Paese natale:" - -#: ../../mod/profiles.php:649 ../../include/profile_advanced.php:54 -msgid "Political Views:" -msgstr "Orientamento politico:" - -#: ../../mod/profiles.php:650 -msgid "Religious Views:" -msgstr "Orientamento religioso:" - -#: ../../mod/profiles.php:651 -msgid "Public Keywords:" -msgstr "Parole chiave visibili a tutti:" - -#: ../../mod/profiles.php:652 -msgid "Private Keywords:" -msgstr "Parole chiave private:" - -#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:62 -msgid "Likes:" -msgstr "Mi piace:" - -#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:64 -msgid "Dislikes:" -msgstr "Non mi piace:" - -#: ../../mod/profiles.php:655 -msgid "Example: fishing photography software" -msgstr "Esempio: pesca fotografia programmazione" - -#: ../../mod/profiles.php:656 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)" - -#: ../../mod/profiles.php:657 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" - -#: ../../mod/profiles.php:658 -msgid "Tell us about yourself..." -msgstr "Raccontaci di te..." - -#: ../../mod/profiles.php:659 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" - -#: ../../mod/profiles.php:660 -msgid "Contact information and Social Networks" -msgstr "Informazioni su contatti e social network" - -#: ../../mod/profiles.php:661 -msgid "Musical interests" -msgstr "Interessi musicali" - -#: ../../mod/profiles.php:662 -msgid "Books, literature" -msgstr "Libri, letteratura" - -#: ../../mod/profiles.php:663 -msgid "Television" -msgstr "Televisione" - -#: ../../mod/profiles.php:664 -msgid "Film/dance/culture/entertainment" -msgstr "Film/danza/cultura/intrattenimento" - -#: ../../mod/profiles.php:665 -msgid "Love/romance" -msgstr "Amore" - -#: ../../mod/profiles.php:666 -msgid "Work/employment" -msgstr "Lavoro/impiego" - -#: ../../mod/profiles.php:667 -msgid "School/education" -msgstr "Scuola/educazione" - -#: ../../mod/profiles.php:672 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet." - -#: ../../mod/profiles.php:682 ../../mod/directory.php:111 -msgid "Age: " -msgstr "Età : " - -#: ../../mod/profiles.php:721 -msgid "Edit/Manage Profiles" -msgstr "Modifica / Gestisci profili" - -#: ../../mod/profiles.php:722 ../../boot.php:1366 ../../boot.php:1392 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" - -#: ../../mod/profiles.php:723 ../../boot.php:1367 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" - -#: ../../mod/profiles.php:734 ../../boot.php:1377 -msgid "Profile Image" -msgstr "Immagine del Profilo" - -#: ../../mod/profiles.php:736 ../../boot.php:1380 -msgid "visible to everybody" -msgstr "visibile a tutti" - -#: ../../mod/profiles.php:737 ../../boot.php:1381 -msgid "Edit visibility" -msgstr "Modifica visibilità" - -#: ../../mod/share.php:44 -msgid "link" -msgstr "collegamento" - -#: ../../mod/uexport.php:72 -msgid "Export account" -msgstr "Esporta account" - -#: ../../mod/uexport.php:72 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server." - -#: ../../mod/uexport.php:73 -msgid "Export all" -msgstr "Esporta tutto" - -#: ../../mod/uexport.php:73 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" - -#: ../../mod/ping.php:238 -msgid "{0} wants to be your friend" -msgstr "{0} vuole essere tuo amico" - -#: ../../mod/ping.php:243 -msgid "{0} sent you a message" -msgstr "{0} ti ha inviato un messaggio" - -#: ../../mod/ping.php:248 -msgid "{0} requested registration" -msgstr "{0} chiede la registrazione" - -#: ../../mod/ping.php:254 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} ha commentato il post di %s" - -#: ../../mod/ping.php:259 -#, php-format -msgid "{0} liked %s's post" -msgstr "a {0} piace il post di %s" - -#: ../../mod/ping.php:264 -#, php-format -msgid "{0} disliked %s's post" -msgstr "a {0} non piace il post di %s" - -#: ../../mod/ping.php:269 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} ora è amico di %s" - -#: ../../mod/ping.php:274 -msgid "{0} posted" -msgstr "{0} ha inviato un nuovo messaggio" - -#: ../../mod/ping.php:279 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} ha taggato il post di %s con #%s" - -#: ../../mod/ping.php:285 -msgid "{0} mentioned you in a post" -msgstr "{0} ti ha citato in un post" - -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" -msgstr "Niente di nuovo qui" - -#: ../../mod/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" -msgstr "Pulisci le notifiche" - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Non disponibile." - -#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93 -#: ../../include/nav.php:128 -msgid "Community" -msgstr "Comunità" - -#: ../../mod/filer.php:30 ../../include/conversation.php:962 -#: ../../include/conversation.php:980 -msgid "Save to Folder:" -msgstr "Salva nella Cartella:" - -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- seleziona -" - -#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:781 -msgid "Save" -msgstr "Salva" - -#: ../../mod/wall_attach.php:69 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Il file supera la dimensione massima di %d" - -#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 -msgid "File upload failed." -msgstr "Caricamento del file non riuscito." - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Modifica visibilità del profilo" - -#: ../../mod/profperm.php:105 ../../mod/group.php:224 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Visibile a" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Tutti i contatti (con profilo ad accesso sicuro)" - -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Vuoi veramente cancellare questo suggerimento?" - -#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:520 -#: ../../include/contact_widgets.php:34 -msgid "Friend Suggestions" -msgstr "Contatti suggeriti" - -#: ../../mod/suggest.php:72 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." - -#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1338 -#: ../../include/contact_widgets.php:9 -msgid "Connect" -msgstr "Connetti" - -#: ../../mod/suggest.php:90 -msgid "Ignore/Hide" -msgstr "Ignora / Nascondi" - -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Accesso negato." - -#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%s dà il benvenuto a %s" - -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Gestisci indentità e/o pagine" - -#: ../../mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" - -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Seleziona un'identità da gestire:" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Nessun potenziale delegato per la pagina è stato trovato." - -#: ../../mod/delegate.php:121 ../../include/nav.php:165 -msgid "Delegate Page Management" -msgstr "Gestione delegati per la pagina" - -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Gestori Pagina Esistenti" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Delegati Pagina Esistenti" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Delegati Potenziali" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Aggiungi" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Nessun articolo." - -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." -msgstr "Nessun contatto." - -#: ../../mod/viewcontacts.php:76 ../../include/text.php:718 -msgid "View Contacts" -msgstr "Visualizza i contatti" - -#: ../../mod/notes.php:44 ../../boot.php:1892 -msgid "Personal Notes" -msgstr "Note personali" - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Tocca/Pungola" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "tocca, pungola o fai altre cose a qualcuno" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Destinatario" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi fare al destinatario" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Rendi questo post privato" - -#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518 -msgid "Global Directory" -msgstr "Elenco globale" - -#: ../../mod/directory.php:57 -msgid "Find on this site" -msgstr "Cerca nel sito" - -#: ../../mod/directory.php:60 -msgid "Site Directory" -msgstr "Elenco del sito" - -#: ../../mod/directory.php:114 -msgid "Gender: " -msgstr "Genere:" - -#: ../../mod/directory.php:136 ../../boot.php:1408 -#: ../../include/profile_advanced.php:17 +#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136 +#: ../../boot.php:1487 msgid "Gender:" msgstr "Genere:" -#: ../../mod/directory.php:138 ../../boot.php:1411 -#: ../../include/profile_advanced.php:37 -msgid "Status:" -msgstr "Stato:" - -#: ../../mod/directory.php:140 ../../boot.php:1413 -#: ../../include/profile_advanced.php:48 -msgid "Homepage:" -msgstr "Homepage:" - -#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "Informazioni:" - -#: ../../mod/directory.php:187 -msgid "No entries (some entries may be hidden)." -msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." - -#: ../../mod/localtime.php:12 ../../include/event.php:11 -#: ../../include/bb2diaspora.php:393 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Conversione Ora" - -#: ../../mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti." - -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "Ora UTC: %s" - -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Fuso orario corrente: %s" - -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Ora locale convertita: %s" - -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Selezionare il tuo fuso orario:" - -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Inviato!" - -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." - -#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 -#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Il ridimensionamento del'immagine [%s] è fallito." - -#: ../../mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." - -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" - -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Carica un file:" - -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Seleziona un profilo:" - -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Carica" - -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "salta questo passaggio" - -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "seleziona una foto dai tuoi album" - -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Ritaglia immagine" - -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ritaglia l'imagine per una visualizzazione migliore." - -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Finito" - -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Immagine caricata con successo." - -#: ../../mod/install.php:117 -msgid "Friendica Social Communications Server - Setup" -msgstr "Friendica Social Communications Server - Setup" - -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr " Impossibile collegarsi con il database." - -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." - -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "Il tuo Friendica è stato installato." - -#: ../../mod/install.php:138 -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:139 ../../mod/install.php:206 -#: ../../mod/install.php:506 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Leggi il file \"INSTALL.txt\"." - -#: ../../mod/install.php:203 -msgid "System check" -msgstr "Controllo sistema" - -#: ../../mod/install.php:208 -msgid "Check again" -msgstr "Controlla ancora" - -#: ../../mod/install.php:227 -msgid "Database connection" -msgstr "Connessione al database" - -#: ../../mod/install.php:228 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database." - -#: ../../mod/install.php:229 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." - -#: ../../mod/install.php:230 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare." - -#: ../../mod/install.php:234 -msgid "Database Server Name" -msgstr "Nome del database server" - -#: ../../mod/install.php:235 -msgid "Database Login Name" -msgstr "Nome utente database" - -#: ../../mod/install.php:236 -msgid "Database Login Password" -msgstr "Password utente database" - -#: ../../mod/install.php:237 -msgid "Database Name" -msgstr "Nome database" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del sito" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web." - -#: ../../mod/install.php:242 ../../mod/install.php:280 -msgid "Please select a default timezone for your website" -msgstr "Seleziona il fuso orario predefinito per il tuo sito web" - -#: ../../mod/install.php:267 -msgid "Site settings" -msgstr "Impostazioni sito" - -#: ../../mod/install.php:320 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web" - -#: ../../mod/install.php:321 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Activating scheduled tasks'" - -#: ../../mod/install.php:325 -msgid "PHP executable path" -msgstr "Percorso eseguibile PHP" - -#: ../../mod/install.php:325 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione." - -#: ../../mod/install.php:330 -msgid "Command line PHP" -msgstr "PHP da riga di comando" - -#: ../../mod/install.php:339 -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:340 -msgid "This is required for message delivery to work." -msgstr "E' obbligatorio per far funzionare la consegna dei messaggi." - -#: ../../mod/install.php:342 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/install.php:363 -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:364 -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:366 -msgid "Generate encryption keys" -msgstr "Genera chiavi di criptazione" - -#: ../../mod/install.php:373 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" - -#: ../../mod/install.php:374 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" - -#: ../../mod/install.php:375 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" - -#: ../../mod/install.php:376 -msgid "mysqli PHP module" -msgstr "modulo PHP mysqli" - -#: ../../mod/install.php:377 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" - -#: ../../mod/install.php:382 ../../mod/install.php:384 -msgid "Apache mod_rewrite module" -msgstr "Modulo mod_rewrite di Apache" - -#: ../../mod/install.php:382 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato" - -#: ../../mod/install.php:390 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato." - -#: ../../mod/install.php:394 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato." - -#: ../../mod/install.php:398 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato." - -#: ../../mod/install.php:402 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato" - -#: ../../mod/install.php:406 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato." - -#: ../../mod/install.php:423 -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:424 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi." - -#: ../../mod/install.php:425 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica" - -#: ../../mod/install.php:426 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni." - -#: ../../mod/install.php:429 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" - -#: ../../mod/install.php:439 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering." - -#: ../../mod/install.php:440 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica." - -#: ../../mod/install.php:441 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella." - -#: ../../mod/install.php:442 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene." - -#: ../../mod/install.php:445 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 è scrivibile" - -#: ../../mod/install.php:457 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server." - -#: ../../mod/install.php:459 -msgid "Url rewrite is working" -msgstr "La riscrittura degli url funziona" - -#: ../../mod/install.php:469 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito." - -#: ../../mod/install.php:493 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." - -#: ../../mod/install.php:504 -msgid "

What next

" -msgstr "

Cosa fare ora

" - -#: ../../mod/install.php:505 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller." - -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Gruppo creato." - -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Impossibile creare il gruppo." - -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Gruppo non trovato." - -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Il nome del gruppo è cambiato." - -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Crea un gruppo di amici/contatti." - -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Nome del gruppo:" - -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Gruppo rimosso." - -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Impossibile rimuovere il gruppo." - -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Modifica gruppo" - -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Membri" - -#: ../../mod/content.php:119 ../../mod/network.php:596 -msgid "No such group" -msgstr "Nessun gruppo" - -#: ../../mod/content.php:130 ../../mod/network.php:607 -msgid "Group is empty" -msgstr "Il gruppo è vuoto" - -#: ../../mod/content.php:134 ../../mod/network.php:611 -msgid "Group: " -msgstr "Gruppo: " - -#: ../../mod/content.php:520 ../../include/conversation.php:662 -msgid "View in context" -msgstr "Vedi nel contesto" - -#: ../../mod/regmod.php:63 -msgid "Account approved." -msgstr "Account approvato." - -#: ../../mod/regmod.php:100 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" - -#: ../../mod/regmod.php:112 -msgid "Please login." -msgstr "Accedi." - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Profili corrispondenti" - -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito." - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "è interessato a:" - -#: ../../mod/item.php:105 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." - -#: ../../mod/item.php:307 -msgid "Empty post discarded." -msgstr "Messaggio vuoto scartato." - -#: ../../mod/item.php:869 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Messaggio non salvato." - -#: ../../mod/item.php:894 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica." - -#: ../../mod/item.php:896 -#, php-format -msgid "You may visit them online at %s" -msgstr "Puoi visitarli online su %s" - -#: ../../mod/item.php:897 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi." - -#: ../../mod/item.php:901 -#, php-format -msgid "%s posted an update." -msgstr "%s ha inviato un aggiornamento." - -#: ../../mod/mood.php:62 ../../include/conversation.php:227 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s al momento è %2$s" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Umore" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Condividi il tuo umore con i tuoi amici" - -#: ../../mod/network.php:181 -msgid "Search Results For:" -msgstr "Cerca risultati per:" - -#: ../../mod/network.php:234 ../../include/group.php:275 -msgid "add" -msgstr "aggiungi" - -#: ../../mod/network.php:397 -msgid "Commented Order" -msgstr "Ordina per commento" - -#: ../../mod/network.php:400 -msgid "Sort by Comment Date" -msgstr "Ordina per data commento" - -#: ../../mod/network.php:403 -msgid "Posted Order" -msgstr "Ordina per invio" - -#: ../../mod/network.php:406 -msgid "Sort by Post Date" -msgstr "Ordina per data messaggio" - -#: ../../mod/network.php:447 -msgid "Posts that mention or involve you" -msgstr "Messaggi che ti citano o coinvolgono" - -#: ../../mod/network.php:453 -msgid "New" -msgstr "Nuovo" - -#: ../../mod/network.php:456 -msgid "Activity Stream - by date" -msgstr "Activity Stream - per data" - -#: ../../mod/network.php:462 -msgid "Shared Links" -msgstr "Links condivisi" - -#: ../../mod/network.php:465 -msgid "Interesting Links" -msgstr "Link Interessanti" - -#: ../../mod/network.php:471 -msgid "Starred" -msgstr "Preferiti" - -#: ../../mod/network.php:474 -msgid "Favourite Posts" -msgstr "Messaggi preferiti" - -#: ../../mod/network.php:546 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Attenzione: questo gruppo contiene %s membro da un network insicuro." -msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro." - -#: ../../mod/network.php:549 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente." - -#: ../../mod/network.php:621 -msgid "Contact: " -msgstr "Contatto:" - -#: ../../mod/network.php:623 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente." - -#: ../../mod/network.php:628 -msgid "Invalid contact." -msgstr "Contatto non valido." - -#: ../../mod/crepair.php:102 -msgid "Contact settings applied." -msgstr "Contatto modificato." - -#: ../../mod/crepair.php:104 -msgid "Contact update failed." -msgstr "Le modifiche al contatto non sono state salvate." - -#: ../../mod/crepair.php:135 -msgid "Repair Contact Settings" -msgstr "Ripara il contatto" - -#: ../../mod/crepair.php:137 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più" - -#: ../../mod/crepair.php:138 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina." - -#: ../../mod/crepair.php:144 -msgid "Return to contact editor" -msgstr "Ritorna alla modifica contatto" - -#: ../../mod/crepair.php:149 -msgid "Account Nickname" -msgstr "Nome utente" - -#: ../../mod/crepair.php:150 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@TagName - al posto del nome utente" - -#: ../../mod/crepair.php:151 -msgid "Account URL" -msgstr "URL dell'utente" - -#: ../../mod/crepair.php:152 -msgid "Friend Request URL" -msgstr "URL Richiesta Amicizia" - -#: ../../mod/crepair.php:153 -msgid "Friend Confirm URL" -msgstr "URL Conferma Amicizia" - -#: ../../mod/crepair.php:154 -msgid "Notification Endpoint URL" -msgstr "URL Notifiche" - -#: ../../mod/crepair.php:155 -msgid "Poll/Feed URL" -msgstr "URL Feed" - -#: ../../mod/crepair.php:156 -msgid "New photo from this URL" -msgstr "Nuova foto da questo URL" - -#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:76 -#: ../../include/nav.php:143 -msgid "Your posts and conversations" -msgstr "I tuoi messaggi e le tue conversazioni" - -#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:77 -msgid "Your profile page" -msgstr "Pagina del tuo profilo" - -#: ../../view/theme/diabook/theme.php:89 -msgid "Your contacts" -msgstr "I tuoi contatti" - -#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:78 -msgid "Your photos" -msgstr "Le tue foto" - -#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:79 -msgid "Your events" -msgstr "I tuoi eventi" - -#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80 -msgid "Personal notes" -msgstr "Note personali" - -#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80 -msgid "Your personal photos" -msgstr "Le tue foto personali" - -#: ../../view/theme/diabook/theme.php:94 -#: ../../view/theme/diabook/theme.php:537 -#: ../../view/theme/diabook/theme.php:632 -#: ../../view/theme/diabook/config.php:163 -msgid "Community Pages" -msgstr "Pagine Comunitarie" - -#: ../../view/theme/diabook/theme.php:384 -#: ../../view/theme/diabook/theme.php:634 -#: ../../view/theme/diabook/config.php:165 -msgid "Community Profiles" -msgstr "Profili Comunità" - -#: ../../view/theme/diabook/theme.php:405 -#: ../../view/theme/diabook/theme.php:639 -#: ../../view/theme/diabook/config.php:170 -msgid "Last users" -msgstr "Ultimi utenti" - -#: ../../view/theme/diabook/theme.php:434 -#: ../../view/theme/diabook/theme.php:641 -#: ../../view/theme/diabook/config.php:172 -msgid "Last likes" -msgstr "Ultimi \"mi piace\"" - -#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1554 -#: ../../include/conversation.php:118 ../../include/conversation.php:246 -msgid "event" -msgstr "l'evento" - -#: ../../view/theme/diabook/theme.php:479 -#: ../../view/theme/diabook/theme.php:640 -#: ../../view/theme/diabook/config.php:171 -msgid "Last photos" -msgstr "Ultime foto" - -#: ../../view/theme/diabook/theme.php:516 -#: ../../view/theme/diabook/theme.php:637 -#: ../../view/theme/diabook/config.php:168 -msgid "Find Friends" -msgstr "Trova Amici" - -#: ../../view/theme/diabook/theme.php:517 -msgid "Local Directory" -msgstr "Elenco Locale" - -#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35 -msgid "Similar Interests" -msgstr "Interessi simili" - -#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37 -msgid "Invite Friends" -msgstr "Invita amici" - -#: ../../view/theme/diabook/theme.php:572 -#: ../../view/theme/diabook/theme.php:633 -#: ../../view/theme/diabook/config.php:164 -msgid "Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:577 -msgid "Set zoomfactor for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:578 -#: ../../view/theme/diabook/config.php:161 -msgid "Set longitude (X) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/config.php:162 -msgid "Set latitude (Y) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:592 -#: ../../view/theme/diabook/theme.php:635 -#: ../../view/theme/diabook/config.php:166 -msgid "Help or @NewHere ?" -msgstr "Serve aiuto? Sei nuovo?" - -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:636 -#: ../../view/theme/diabook/config.php:167 -msgid "Connect Services" -msgstr "Servizi di conessione" - -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:638 -msgid "Last Tweets" -msgstr "" - -#: ../../view/theme/diabook/theme.php:609 -#: ../../view/theme/diabook/config.php:159 -msgid "Set twitter search term" -msgstr "" - -#: ../../view/theme/diabook/theme.php:629 -#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:327 -msgid "don't show" -msgstr "non mostrare" - -#: ../../view/theme/diabook/theme.php:629 -#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:326 -msgid "show" -msgstr "mostra" - -#: ../../view/theme/diabook/theme.php:630 -msgid "Show/hide boxes at right-hand column:" -msgstr "" - -#: ../../view/theme/diabook/config.php:154 -#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 -#: ../../view/theme/cleanzero/config.php:82 -msgid "Theme settings" -msgstr "Impostazioni tema" - -#: ../../view/theme/diabook/config.php:155 -#: ../../view/theme/dispy/config.php:73 -#: ../../view/theme/cleanzero/config.php:84 -msgid "Set font-size for posts and comments" -msgstr "Dimensione del carattere di messaggi e commenti" - -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Altezza della linea di testo di messaggi e commenti" - -#: ../../view/theme/diabook/config.php:157 -msgid "Set resolution for middle column" -msgstr "" - -#: ../../view/theme/diabook/config.php:158 -msgid "Set color scheme" -msgstr "" - -#: ../../view/theme/diabook/config.php:160 -msgid "Set zoomfactor for Earth Layer" -msgstr "" - -#: ../../view/theme/diabook/config.php:169 -msgid "Last tweets" -msgstr "" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Imposta schema colori" - -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Allineamento" - -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Sinistra" - -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Centrato" - -#: ../../view/theme/quattro/config.php:68 -#: ../../view/theme/cleanzero/config.php:86 -msgid "Color scheme" -msgstr "Schema colori" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Dimensione caratteri post" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Dimensione caratteri nelle aree di testo" - -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)" - -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Imposta la larghezza del tema" - -#: ../../boot.php:650 -msgid "Delete this item?" -msgstr "Cancellare questo elemento?" - -#: ../../boot.php:653 -msgid "show fewer" -msgstr "mostra di meno" - -#: ../../boot.php:920 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "aggiornamento %s fallito. Guarda i log di errore." - -#: ../../boot.php:922 -#, php-format -msgid "Update Error at %s" -msgstr "Errore aggiornamento a %s" - -#: ../../boot.php:1032 -msgid "Create a New Account" -msgstr "Crea un nuovo account" - -#: ../../boot.php:1057 ../../include/nav.php:73 -msgid "Logout" -msgstr "Esci" - -#: ../../boot.php:1058 ../../include/nav.php:91 -msgid "Login" -msgstr "Accedi" - -#: ../../boot.php:1060 -msgid "Nickname or Email address: " -msgstr "Nome utente o indirizzo email: " - -#: ../../boot.php:1061 -msgid "Password: " -msgstr "Password: " - -#: ../../boot.php:1062 -msgid "Remember me" -msgstr "Ricordati di me" - -#: ../../boot.php:1065 -msgid "Or login using OpenID: " -msgstr "O entra con OpenID:" - -#: ../../boot.php:1071 -msgid "Forgot your password?" -msgstr "Hai dimenticato la password?" - -#: ../../boot.php:1074 -msgid "Website Terms of Service" -msgstr "Condizioni di servizio del sito web " - -#: ../../boot.php:1075 -msgid "terms of service" -msgstr "condizioni del servizio" - -#: ../../boot.php:1077 -msgid "Website Privacy Policy" -msgstr "Politiche di privacy del sito" - -#: ../../boot.php:1078 -msgid "privacy policy" -msgstr "politiche di privacy" - -#: ../../boot.php:1207 -msgid "Requested account is not available." -msgstr "L'account richiesto non è disponibile." - -#: ../../boot.php:1286 ../../boot.php:1390 -msgid "Edit profile" -msgstr "Modifica il profilo" - -#: ../../boot.php:1352 -msgid "Message" -msgstr "Messaggio" - -#: ../../boot.php:1360 ../../include/nav.php:169 -msgid "Profiles" -msgstr "Profili" - -#: ../../boot.php:1360 -msgid "Manage/edit profiles" -msgstr "Gestisci/modifica i profili" - -#: ../../boot.php:1489 ../../boot.php:1575 -msgid "g A l F d" -msgstr "g A l d F" - -#: ../../boot.php:1490 ../../boot.php:1576 -msgid "F d" -msgstr "d F" - -#: ../../boot.php:1535 ../../boot.php:1616 -msgid "[today]" -msgstr "[oggi]" - -#: ../../boot.php:1547 -msgid "Birthday Reminders" -msgstr "Promemoria compleanni" - -#: ../../boot.php:1548 -msgid "Birthdays this week:" -msgstr "Compleanni questa settimana:" - -#: ../../boot.php:1609 -msgid "[No description]" -msgstr "[Nessuna descrizione]" - -#: ../../boot.php:1627 -msgid "Event Reminders" -msgstr "Promemoria" - -#: ../../boot.php:1628 -msgid "Events this week:" -msgstr "Eventi di questa settimana:" - -#: ../../boot.php:1861 ../../include/nav.php:76 -msgid "Status" -msgstr "Stato" - -#: ../../boot.php:1864 -msgid "Status Messages and Posts" -msgstr "Messaggi di stato e post" - -#: ../../boot.php:1871 -msgid "Profile Details" -msgstr "Dettagli del profilo" - -#: ../../boot.php:1888 -msgid "Events and Calendar" -msgstr "Eventi e calendario" - -#: ../../boot.php:1895 -msgid "Only You Can See This" -msgstr "Solo tu puoi vedere questo" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Funzionalità generali" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Profili multipli" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Possibilità di creare profili multipli" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Funzionalità di composizione dei post" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Editor visuale" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Abilita l'editor visuale" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Anteprima dei post" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli" - -#: ../../include/features.php:37 -msgid "Network Sidebar Widgets" -msgstr "Widget della barra laterale nella pagina Rete" - -#: ../../include/features.php:38 -msgid "Search by Date" -msgstr "Cerca per data" - -#: ../../include/features.php:38 -msgid "Ability to select posts by date ranges" -msgstr "Permette di filtrare i post per data" - -#: ../../include/features.php:39 -msgid "Group Filter" -msgstr "Filtra gruppi" - -#: ../../include/features.php:39 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Abilita il widget per filtrare i post solo per il gruppo selezionato" - -#: ../../include/features.php:40 -msgid "Network Filter" -msgstr "Filtro reti" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Abilita il widget per mostare i post solo per la rete selezionata" - -#: ../../include/features.php:41 -msgid "Save search terms for re-use" -msgstr "Salva i termini cercati per riutilizzarli" - -#: ../../include/features.php:46 -msgid "Network Tabs" -msgstr "Schede pagina Rete" - -#: ../../include/features.php:47 -msgid "Network Personal Tab" -msgstr "Scheda Personali" - -#: ../../include/features.php:47 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Abilita la scheda per mostrare solo i post a cui hai partecipato" - -#: ../../include/features.php:48 -msgid "Network New Tab" -msgstr "Scheda Nuovi" - -#: ../../include/features.php:48 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)" - -#: ../../include/features.php:49 -msgid "Network Shared Links Tab" -msgstr "Scheda Link Condivisi" - -#: ../../include/features.php:49 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Abilita la scheda per mostrare solo i post che contengono link" - -#: ../../include/features.php:54 -msgid "Post/Comment Tools" -msgstr "Strumenti per mesasggi/commenti" - -#: ../../include/features.php:55 -msgid "Multiple Deletion" -msgstr "Eliminazione multipla" - -#: ../../include/features.php:55 -msgid "Select and delete multiple posts/comments at once" -msgstr "Seleziona ed elimina vari messagi e commenti in una volta sola" - -#: ../../include/features.php:56 -msgid "Edit Sent Posts" -msgstr "Modifica i post inviati" - -#: ../../include/features.php:56 -msgid "Edit and correct posts and comments after sending" -msgstr "Modifica e correggi messaggi e commenti dopo averli inviati" - -#: ../../include/features.php:57 -msgid "Tagging" -msgstr "Aggiunta tag" - -#: ../../include/features.php:57 -msgid "Ability to tag existing posts" -msgstr "Permette di aggiungere tag ai post già esistenti" - -#: ../../include/features.php:58 -msgid "Post Categories" -msgstr "Cateorie post" - -#: ../../include/features.php:58 -msgid "Add categories to your posts" -msgstr "Aggiungi categorie ai tuoi post" - -#: ../../include/features.php:59 ../../include/contact_widgets.php:103 -msgid "Saved Folders" -msgstr "Cartelle Salvate" - -#: ../../include/features.php:59 -msgid "Ability to file posts under folders" -msgstr "Permette di archiviare i post in cartelle" - -#: ../../include/features.php:60 -msgid "Dislike Posts" -msgstr "Non mi piace" - -#: ../../include/features.php:60 -msgid "Ability to dislike posts/comments" -msgstr "Permetti di inviare \"non mi piace\" ai messaggi" - -#: ../../include/features.php:61 -msgid "Star Posts" -msgstr "Post preferiti" - -#: ../../include/features.php:61 -msgid "Ability to mark special posts with a star indicator" -msgstr "Permette di segnare i post preferiti con una stella" - -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Uscita effettuata." - -#: ../../include/auth.php:128 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto." - -#: ../../include/auth.php:128 -msgid "The error message was:" -msgstr "Il messaggio riportato era:" - -#: ../../include/event.php:20 ../../include/bb2diaspora.php:399 -msgid "Starts:" -msgstr "Inizia:" - -#: ../../include/event.php:30 ../../include/bb2diaspora.php:407 -msgid "Finishes:" -msgstr "Finisce:" - #: ../../include/profile_advanced.php:22 msgid "j F, Y" msgstr "j F Y" @@ -5516,23 +55,57 @@ msgstr "Compleanno:" msgid "Age:" msgstr "Età:" +#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138 +#: ../../boot.php:1490 +msgid "Status:" +msgstr "Stato:" + #: ../../include/profile_advanced.php:43 #, php-format msgid "for %1$d %2$s" msgstr "per %1$d %2$s" +#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:650 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" + +#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140 +#: ../../boot.php:1492 +msgid "Homepage:" +msgstr "Homepage:" + +#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:652 +msgid "Hometown:" +msgstr "Paese natale:" + #: ../../include/profile_advanced.php:52 msgid "Tags:" msgstr "Tag:" +#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:653 +msgid "Political Views:" +msgstr "Orientamento politico:" + #: ../../include/profile_advanced.php:56 msgid "Religion:" msgstr "Religione:" +#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142 +msgid "About:" +msgstr "Informazioni:" + #: ../../include/profile_advanced.php:60 msgid "Hobbies/Interests:" msgstr "Hobby/Interessi:" +#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:657 +msgid "Likes:" +msgstr "Mi piace:" + +#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:658 +msgid "Dislikes:" +msgstr "Non mi piace:" + #: ../../include/profile_advanced.php:67 msgid "Contact information and Social Networks:" msgstr "Informazioni su contatti e social network:" @@ -5565,402 +138,6 @@ msgstr "Lavoro:" msgid "School/education:" msgstr "Scuola:" -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[nessun oggetto]" - -#: ../../include/Scrape.php:583 -msgid " on Last.fm" -msgstr "su Last.fm" - -#: ../../include/text.php:276 -msgid "prev" -msgstr "prec" - -#: ../../include/text.php:278 -msgid "first" -msgstr "primo" - -#: ../../include/text.php:307 -msgid "last" -msgstr "ultimo" - -#: ../../include/text.php:310 -msgid "next" -msgstr "succ" - -#: ../../include/text.php:328 -msgid "newer" -msgstr "nuovi" - -#: ../../include/text.php:332 -msgid "older" -msgstr "vecchi" - -#: ../../include/text.php:697 -msgid "No contacts" -msgstr "Nessun contatto" - -#: ../../include/text.php:706 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contatto" -msgstr[1] "%d contatti" - -#: ../../include/text.php:819 -msgid "poke" -msgstr "stuzzica" - -#: ../../include/text.php:819 ../../include/conversation.php:211 -msgid "poked" -msgstr "toccato" - -#: ../../include/text.php:820 -msgid "ping" -msgstr "invia un ping" - -#: ../../include/text.php:820 -msgid "pinged" -msgstr "inviato un ping" - -#: ../../include/text.php:821 -msgid "prod" -msgstr "pungola" - -#: ../../include/text.php:821 -msgid "prodded" -msgstr "pungolato" - -#: ../../include/text.php:822 -msgid "slap" -msgstr "schiaffeggia" - -#: ../../include/text.php:822 -msgid "slapped" -msgstr "schiaffeggiato" - -#: ../../include/text.php:823 -msgid "finger" -msgstr "tocca" - -#: ../../include/text.php:823 -msgid "fingered" -msgstr "toccato" - -#: ../../include/text.php:824 -msgid "rebuff" -msgstr "respingi" - -#: ../../include/text.php:824 -msgid "rebuffed" -msgstr "respinto" - -#: ../../include/text.php:836 -msgid "happy" -msgstr "felice" - -#: ../../include/text.php:837 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:838 -msgid "mellow" -msgstr "rilassato" - -#: ../../include/text.php:839 -msgid "tired" -msgstr "stanco" - -#: ../../include/text.php:840 -msgid "perky" -msgstr "vivace" - -#: ../../include/text.php:841 -msgid "angry" -msgstr "arrabbiato" - -#: ../../include/text.php:842 -msgid "stupified" -msgstr "stupefatto" - -#: ../../include/text.php:843 -msgid "puzzled" -msgstr "confuso" - -#: ../../include/text.php:844 -msgid "interested" -msgstr "interessato" - -#: ../../include/text.php:845 -msgid "bitter" -msgstr "risentito" - -#: ../../include/text.php:846 -msgid "cheerful" -msgstr "giocoso" - -#: ../../include/text.php:847 -msgid "alive" -msgstr "vivo" - -#: ../../include/text.php:848 -msgid "annoyed" -msgstr "annoiato" - -#: ../../include/text.php:849 -msgid "anxious" -msgstr "ansioso" - -#: ../../include/text.php:850 -msgid "cranky" -msgstr "irritabile" - -#: ../../include/text.php:851 -msgid "disturbed" -msgstr "disturbato" - -#: ../../include/text.php:852 -msgid "frustrated" -msgstr "frustato" - -#: ../../include/text.php:853 -msgid "motivated" -msgstr "motivato" - -#: ../../include/text.php:854 -msgid "relaxed" -msgstr "rilassato" - -#: ../../include/text.php:855 -msgid "surprised" -msgstr "sorpreso" - -#: ../../include/text.php:1015 -msgid "Monday" -msgstr "Lunedì" - -#: ../../include/text.php:1015 -msgid "Tuesday" -msgstr "Martedì" - -#: ../../include/text.php:1015 -msgid "Wednesday" -msgstr "Mercoledì" - -#: ../../include/text.php:1015 -msgid "Thursday" -msgstr "Giovedì" - -#: ../../include/text.php:1015 -msgid "Friday" -msgstr "Venerdì" - -#: ../../include/text.php:1015 -msgid "Saturday" -msgstr "Sabato" - -#: ../../include/text.php:1015 -msgid "Sunday" -msgstr "Domenica" - -#: ../../include/text.php:1019 -msgid "January" -msgstr "Gennaio" - -#: ../../include/text.php:1019 -msgid "February" -msgstr "Febbraio" - -#: ../../include/text.php:1019 -msgid "March" -msgstr "Marzo" - -#: ../../include/text.php:1019 -msgid "April" -msgstr "Aprile" - -#: ../../include/text.php:1019 -msgid "May" -msgstr "Maggio" - -#: ../../include/text.php:1019 -msgid "June" -msgstr "Giugno" - -#: ../../include/text.php:1019 -msgid "July" -msgstr "Luglio" - -#: ../../include/text.php:1019 -msgid "August" -msgstr "Agosto" - -#: ../../include/text.php:1019 -msgid "September" -msgstr "Settembre" - -#: ../../include/text.php:1019 -msgid "October" -msgstr "Ottobre" - -#: ../../include/text.php:1019 -msgid "November" -msgstr "Novembre" - -#: ../../include/text.php:1019 -msgid "December" -msgstr "Dicembre" - -#: ../../include/text.php:1124 -msgid "bytes" -msgstr "bytes" - -#: ../../include/text.php:1151 ../../include/text.php:1163 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" - -#: ../../include/text.php:1336 ../../include/user.php:237 -msgid "default" -msgstr "default" - -#: ../../include/text.php:1348 -msgid "Select an alternate language" -msgstr "Seleziona una diversa lingua" - -#: ../../include/text.php:1558 -msgid "activity" -msgstr "attività" - -#: ../../include/text.php:1561 -msgid "post" -msgstr "messaggio" - -#: ../../include/text.php:1716 -msgid "Item filed" -msgstr "Messaggio salvato" - -#: ../../include/dba.php:44 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" - -#: ../../include/items.php:1764 ../../include/datetime.php:472 -#, php-format -msgid "%s's birthday" -msgstr "Compleanno di %s" - -#: ../../include/items.php:1765 ../../include/datetime.php:473 -#, php-format -msgid "Happy Birthday %s" -msgstr "Buon compleanno %s" - -#: ../../include/items.php:3446 -msgid "A new person is sharing with you at " -msgstr "Una nuova persona sta condividendo con te da " - -#: ../../include/items.php:3446 -msgid "You have a new follower at " -msgstr "Una nuova persona ti segue su " - -#: ../../include/items.php:3965 -msgid "Do you really want to delete this item?" -msgstr "Vuoi veramente cancellare questo elemento?" - -#: ../../include/items.php:4160 -msgid "Archives" -msgstr "Archivi" - -#: ../../include/delivery.php:457 ../../include/notifier.php:775 -msgid "(no subject)" -msgstr "(nessun oggetto)" - -#: ../../include/delivery.php:468 ../../include/notifier.php:785 -#: ../../include/enotify.php:28 -msgid "noreply" -msgstr "nessuna risposta" - -#: ../../include/diaspora.php:704 -msgid "Sharing notification from Diaspora network" -msgstr "Notifica di condivisione dal network Diaspora*" - -#: ../../include/diaspora.php:2262 -msgid "Attachments:" -msgstr "Allegati:" - -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "URL di connessione mancante." - -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Questo sito non è configurato per permettere la comunicazione con altri network." - -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." - -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Non è stato trovato un nome o un autore" - -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Nessun URL puo' essere associato a questo indirizzo." - -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email." - -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email." - -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito." - -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te." - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Impossibile recuperare informazioni sul contatto." - -#: ../../include/follow.php:259 -msgid "following" -msgstr "segue" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Ciao" - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Carica una foto per il profilo." - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Ciao " - -#: ../../include/security.php:366 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla." - #: ../../include/profile_selectors.php:6 msgid "Male" msgstr "Maschio" @@ -6194,364 +371,252 @@ msgstr "Non interessa" msgid "Ask me" msgstr "Chiedimelo" -#: ../../include/uimport.php:61 -msgid "Error decoding account file" -msgstr "Errore decodificando il file account" +#: ../../include/Contact.php:115 +msgid "stopped following" +msgstr "tolto dai seguiti" -#: ../../include/uimport.php:67 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?" - -#: ../../include/uimport.php:72 -msgid "Error! I can't import this file: DB schema version is not compatible." -msgstr "Errore! Non posso importare questo file: la versione dello schema del database non è compatibile." - -#: ../../include/uimport.php:81 -msgid "Error! Cannot check nickname" -msgstr "Errore! Non posso controllare il nickname" - -#: ../../include/uimport.php:85 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "L'utente '%s' esiste già su questo server!" - -#: ../../include/uimport.php:104 -msgid "User creation error" -msgstr "Errore creando l'utente" - -#: ../../include/uimport.php:122 -msgid "User profile creation error" -msgstr "Errore creando il profile dell'utente" - -#: ../../include/uimport.php:167 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contatto non importato" -msgstr[1] "%d contatti non importati" - -#: ../../include/uimport.php:245 -msgid "Done. You can now login with your username and password" -msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password" - -#: ../../include/plugin.php:439 ../../include/plugin.php:441 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." - -#: ../../include/plugin.php:447 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione." - -#: ../../include/plugin.php:452 -msgid "This action is not available under your subscription plan." -msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." - -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha stuzzicato %2$s" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "post/elemento" - -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito" - -#: ../../include/conversation.php:728 -msgid "remove" -msgstr "rimuovi" - -#: ../../include/conversation.php:732 -msgid "Delete Selected Items" -msgstr "Cancella elementi selezionati" - -#: ../../include/conversation.php:831 -msgid "Follow Thread" -msgstr "Segui la discussione" - -#: ../../include/conversation.php:832 ../../include/Contact.php:226 -msgid "View Status" -msgstr "Visualizza stato" - -#: ../../include/conversation.php:833 ../../include/Contact.php:227 -msgid "View Profile" -msgstr "Visualizza profilo" - -#: ../../include/conversation.php:834 ../../include/Contact.php:228 -msgid "View Photos" -msgstr "Visualizza foto" - -#: ../../include/conversation.php:835 ../../include/Contact.php:229 -#: ../../include/Contact.php:251 -msgid "Network Posts" -msgstr "Post della Rete" - -#: ../../include/conversation.php:836 ../../include/Contact.php:230 -#: ../../include/Contact.php:251 -msgid "Edit Contact" -msgstr "Modifica contatti" - -#: ../../include/conversation.php:837 ../../include/Contact.php:231 -#: ../../include/Contact.php:251 -msgid "Send PM" -msgstr "Invia messaggio privato" - -#: ../../include/conversation.php:838 ../../include/Contact.php:225 +#: ../../include/Contact.php:225 ../../include/conversation.php:878 msgid "Poke" msgstr "Stuzzica" -#: ../../include/conversation.php:900 +#: ../../include/Contact.php:226 ../../include/conversation.php:872 +msgid "View Status" +msgstr "Visualizza stato" + +#: ../../include/Contact.php:227 ../../include/conversation.php:873 +msgid "View Profile" +msgstr "Visualizza profilo" + +#: ../../include/Contact.php:228 ../../include/conversation.php:874 +msgid "View Photos" +msgstr "Visualizza foto" + +#: ../../include/Contact.php:229 ../../include/Contact.php:251 +#: ../../include/conversation.php:875 +msgid "Network Posts" +msgstr "Post della Rete" + +#: ../../include/Contact.php:230 ../../include/Contact.php:251 +#: ../../include/conversation.php:876 +msgid "Edit Contact" +msgstr "Modifica contatti" + +#: ../../include/Contact.php:231 ../../include/Contact.php:251 +#: ../../include/conversation.php:877 +msgid "Send PM" +msgstr "Invia messaggio privato" + +#: ../../include/bbcode.php:210 ../../include/bbcode.php:550 +#: ../../include/bbcode.php:551 +msgid "Image/photo" +msgstr "Immagine/foto" + +#: ../../include/bbcode.php:272 #, php-format -msgid "%s likes this." -msgstr "Piace a %s." +msgid "" +"%s wrote the following post" +msgstr "%s ha scritto il seguente post" -#: ../../include/conversation.php:900 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." +#: ../../include/bbcode.php:514 ../../include/bbcode.php:534 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" -#: ../../include/conversation.php:905 -#, php-format -msgid "%2$d people like this" -msgstr "Piace a %2$d persone." +#: ../../include/bbcode.php:559 ../../include/bbcode.php:560 +msgid "Encrypted content" +msgstr "Contenuto criptato" -#: ../../include/conversation.php:908 -#, php-format -msgid "%2$d people don't like this" -msgstr "Non piace a %2$d persone." +#: ../../include/acl_selectors.php:325 +msgid "Visible to everybody" +msgstr "Visibile a tutti" -#: ../../include/conversation.php:922 -msgid "and" -msgstr "e" +#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146 +#: ../../view/theme/diabook/theme.php:629 +msgid "show" +msgstr "mostra" -#: ../../include/conversation.php:928 -#, php-format -msgid ", and %d other people" -msgstr "e altre %d persone" +#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146 +#: ../../view/theme/diabook/theme.php:629 +msgid "don't show" +msgstr "non mostrare" -#: ../../include/conversation.php:930 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Uscita effettuata." -#: ../../include/conversation.php:930 -#, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." +#: ../../include/auth.php:112 ../../include/auth.php:175 +#: ../../mod/openid.php:93 +msgid "Login failed." +msgstr "Accesso fallito." -#: ../../include/conversation.php:957 ../../include/conversation.php:975 -msgid "Visible to everybody" -msgstr "Visibile a tutti" +#: ../../include/auth.php:128 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto." -#: ../../include/conversation.php:959 ../../include/conversation.php:977 -msgid "Please enter a video link/URL:" -msgstr "Inserisci un collegamento video / URL:" +#: ../../include/auth.php:128 +msgid "The error message was:" +msgstr "Il messaggio riportato era:" -#: ../../include/conversation.php:960 ../../include/conversation.php:978 -msgid "Please enter an audio link/URL:" -msgstr "Inserisci un collegamento audio / URL:" +#: ../../include/bb2diaspora.php:393 ../../include/event.php:11 +#: ../../mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: ../../include/conversation.php:961 ../../include/conversation.php:979 -msgid "Tag term:" -msgstr "Tag:" +#: ../../include/bb2diaspora.php:399 ../../include/event.php:20 +msgid "Starts:" +msgstr "Inizia:" -#: ../../include/conversation.php:963 ../../include/conversation.php:981 -msgid "Where are you right now?" -msgstr "Dove sei ora?" +#: ../../include/bb2diaspora.php:407 ../../include/event.php:30 +msgid "Finishes:" +msgstr "Finisce:" -#: ../../include/conversation.php:964 -msgid "Delete item(s)?" -msgstr "Cancellare questo elemento/i?" +#: ../../include/bb2diaspora.php:415 ../../include/event.php:40 +#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1485 +msgid "Location:" +msgstr "Posizione:" -#: ../../include/conversation.php:1006 -msgid "Post to Email" -msgstr "Invia a email" +#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502 +msgid "Disallowed profile URL." +msgstr "Indirizzo profilo non permesso." -#: ../../include/conversation.php:1062 -msgid "permissions" -msgstr "permessi" +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "URL di connessione mancante." -#: ../../include/conversation.php:1086 -msgid "Post to Groups" -msgstr "Invia ai Gruppi" +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Questo sito non è configurato per permettere la comunicazione con altri network." -#: ../../include/conversation.php:1087 -msgid "Post to Contacts" -msgstr "Invia ai Contatti" +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." -#: ../../include/conversation.php:1088 -msgid "Private post" -msgstr "Post privato" +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Aggiungi nuovo contatto" +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Non è stato trovato un nome o un autore" -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Inserisci posizione o indirizzo web" +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Nessun URL puo' essere associato a questo indirizzo." -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Esempio: bob@example.com, http://example.com/barbara" +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email." -#: ../../include/contact_widgets.php:23 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email." -#: ../../include/contact_widgets.php:29 -msgid "Find People" -msgstr "Trova persone" +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito." -#: ../../include/contact_widgets.php:30 -msgid "Enter name or interest" -msgstr "Inserisci un nome o un interesse" +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te." -#: ../../include/contact_widgets.php:31 -msgid "Connect/Follow" -msgstr "Connetti/segui" +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Impossibile recuperare informazioni sul contatto." -#: ../../include/contact_widgets.php:32 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Esempi: Mario Rossi, Pesca" +#: ../../include/follow.php:259 +msgid "following" +msgstr "segue" -#: ../../include/contact_widgets.php:36 -msgid "Random Profile" -msgstr "Profilo causale" +#: ../../include/user.php:39 +msgid "An invitation is required." +msgstr "E' richiesto un invito." -#: ../../include/contact_widgets.php:70 -msgid "Networks" -msgstr "Reti" +#: ../../include/user.php:44 +msgid "Invitation could not be verified." +msgstr "L'invito non puo' essere verificato." -#: ../../include/contact_widgets.php:73 -msgid "All Networks" -msgstr "Tutte le Reti" +#: ../../include/user.php:52 +msgid "Invalid OpenID url" +msgstr "Url OpenID non valido" -#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 -msgid "Everything" -msgstr "Tutto" +#: ../../include/user.php:67 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." -#: ../../include/contact_widgets.php:135 -msgid "Categories" -msgstr "Categorie" +#: ../../include/user.php:81 +msgid "Please use a shorter name." +msgstr "Usa un nome più corto." -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Finisci questa sessione" +#: ../../include/user.php:83 +msgid "Name too short." +msgstr "Il nome è troppo corto." -#: ../../include/nav.php:91 -msgid "Sign in" -msgstr "Entra" +#: ../../include/user.php:98 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." -#: ../../include/nav.php:104 -msgid "Home Page" -msgstr "Home Page" +#: ../../include/user.php:103 +msgid "Your email domain is not among those allowed on this site." +msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito." -#: ../../include/nav.php:108 -msgid "Create an account" -msgstr "Crea un account" +#: ../../include/user.php:106 +msgid "Not a valid email address." +msgstr "L'indirizzo email non è valido." -#: ../../include/nav.php:113 -msgid "Help and documentation" -msgstr "Guida e documentazione" +#: ../../include/user.php:116 +msgid "Cannot use that email." +msgstr "Non puoi usare quell'email." -#: ../../include/nav.php:116 -msgid "Apps" -msgstr "Applicazioni" +#: ../../include/user.php:122 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera." -#: ../../include/nav.php:116 -msgid "Addon applications, utilities, games" -msgstr "Applicazioni, utilità e giochi aggiuntivi" +#: ../../include/user.php:128 ../../include/user.php:226 +msgid "Nickname is already registered. Please choose another." +msgstr "Nome utente già registrato. Scegline un altro." -#: ../../include/nav.php:118 -msgid "Search site content" -msgstr "Cerca nel contenuto del sito" +#: ../../include/user.php:138 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo." -#: ../../include/nav.php:128 -msgid "Conversations on this site" -msgstr "Conversazioni su questo sito" +#: ../../include/user.php:154 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." -#: ../../include/nav.php:130 -msgid "Directory" -msgstr "Elenco" +#: ../../include/user.php:212 +msgid "An error occurred during registration. Please try again." +msgstr "C'è stato un errore durante la registrazione. Prova ancora." -#: ../../include/nav.php:130 -msgid "People directory" -msgstr "Elenco delle persone" +#: ../../include/user.php:237 ../../include/text.php:1596 +msgid "default" +msgstr "default" -#: ../../include/nav.php:140 -msgid "Conversations from your friends" -msgstr "Conversazioni dai tuoi amici" +#: ../../include/user.php:247 +msgid "An error occurred creating your default profile. Please try again." +msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora." -#: ../../include/nav.php:141 -msgid "Network Reset" -msgstr "Reset pagina Rete" - -#: ../../include/nav.php:141 -msgid "Load Network page with no filters" -msgstr "Carica la pagina Rete senza nessun filtro" - -#: ../../include/nav.php:149 -msgid "Friend Requests" -msgstr "Richieste di amicizia" - -#: ../../include/nav.php:151 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" - -#: ../../include/nav.php:152 -msgid "Mark all system notifications seen" -msgstr "Segna tutte le notifiche come viste" - -#: ../../include/nav.php:156 -msgid "Private mail" -msgstr "Posta privata" - -#: ../../include/nav.php:157 -msgid "Inbox" -msgstr "In arrivo" - -#: ../../include/nav.php:158 -msgid "Outbox" -msgstr "Inviati" - -#: ../../include/nav.php:162 -msgid "Manage" -msgstr "Gestisci" - -#: ../../include/nav.php:162 -msgid "Manage other pages" -msgstr "Gestisci altre pagine" - -#: ../../include/nav.php:165 -msgid "Delegations" -msgstr "Delegazioni" - -#: ../../include/nav.php:169 -msgid "Manage/Edit Profiles" -msgstr "Gestisci/Modifica i profili" - -#: ../../include/nav.php:171 -msgid "Manage/edit friends and contacts" -msgstr "Gestisci/modifica amici e contatti" - -#: ../../include/nav.php:178 -msgid "Site setup and configuration" -msgstr "Configurazione del sito" - -#: ../../include/nav.php:182 -msgid "Navigation" -msgstr "Navigazione" - -#: ../../include/nav.php:182 -msgid "Site map" -msgstr "Mappa del sito" +#: ../../include/user.php:325 ../../include/user.php:332 +#: ../../include/user.php:339 ../../mod/photos.php:154 +#: ../../mod/photos.php:725 ../../mod/photos.php:1183 +#: ../../mod/photos.php:1206 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:493 +msgid "Profile Photos" +msgstr "Foto del profilo" #: ../../include/contact_selectors.php:32 msgid "Unknown | Not categorised" @@ -6577,19 +642,19 @@ msgstr "E' ok, probabilmente innocuo" msgid "Reputable, has my trust" msgstr "Rispettabile, ha la mia fiducia" -#: ../../include/contact_selectors.php:56 +#: ../../include/contact_selectors.php:56 ../../mod/admin.php:452 msgid "Frequently" msgstr "Frequentemente" -#: ../../include/contact_selectors.php:57 +#: ../../include/contact_selectors.php:57 ../../mod/admin.php:453 msgid "Hourly" msgstr "Ogni ora" -#: ../../include/contact_selectors.php:58 +#: ../../include/contact_selectors.php:58 ../../mod/admin.php:454 msgid "Twice daily" msgstr "Due volte al dì" -#: ../../include/contact_selectors.php:59 +#: ../../include/contact_selectors.php:59 ../../mod/admin.php:455 msgid "Daily" msgstr "Giornalmente" @@ -6601,6 +666,10 @@ msgstr "Settimanalmente" msgid "Monthly" msgstr "Mensilmente" +#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840 +msgid "Friendica" +msgstr "Friendica" + #: ../../include/contact_selectors.php:77 msgid "OStatus" msgstr "Ostatus" @@ -6609,6 +678,22 @@ msgstr "Ostatus" msgid "RSS/Atom" msgstr "RSS / Atom" +#: ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 ../../mod/admin.php:766 +#: ../../mod/admin.php:777 +msgid "Email" +msgstr "Email" + +#: ../../include/contact_selectors.php:80 ../../mod/settings.php:705 +#: ../../mod/dfrn_request.php:842 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49 +#: ../../mod/newmember.php:51 +msgid "Facebook" +msgstr "Facebook" + #: ../../include/contact_selectors.php:82 msgid "Zot!" msgstr "Zot!" @@ -6629,6 +714,1091 @@ msgstr "MySpace" msgid "Google+" msgstr "Google+" +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Aggiungi nuovo contatto" + +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Inserisci posizione o indirizzo web" + +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Esempio: bob@example.com, http://example.com/barbara" + +#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88 +#: ../../mod/match.php:58 ../../boot.php:1417 +msgid "Connect" +msgstr "Connetti" + +#: ../../include/contact_widgets.php:23 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invito disponibile" +msgstr[1] "%d inviti disponibili" + +#: ../../include/contact_widgets.php:29 +msgid "Find People" +msgstr "Trova persone" + +#: ../../include/contact_widgets.php:30 +msgid "Enter name or interest" +msgstr "Inserisci un nome o un interesse" + +#: ../../include/contact_widgets.php:31 +msgid "Connect/Follow" +msgstr "Connetti/segui" + +#: ../../include/contact_widgets.php:32 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Esempi: Mario Rossi, Pesca" + +#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613 +#: ../../mod/directory.php:61 +msgid "Find" +msgstr "Trova" + +#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66 +#: ../../view/theme/diabook/theme.php:520 +msgid "Friend Suggestions" +msgstr "Contatti suggeriti" + +#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519 +msgid "Similar Interests" +msgstr "Interessi simili" + +#: ../../include/contact_widgets.php:36 +msgid "Random Profile" +msgstr "Profilo causale" + +#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521 +msgid "Invite Friends" +msgstr "Invita amici" + +#: ../../include/contact_widgets.php:70 +msgid "Networks" +msgstr "Reti" + +#: ../../include/contact_widgets.php:73 +msgid "All Networks" +msgstr "Tutte le Reti" + +#: ../../include/contact_widgets.php:103 ../../include/features.php:59 +msgid "Saved Folders" +msgstr "Cartelle Salvate" + +#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 +msgid "Everything" +msgstr "Tutto" + +#: ../../include/contact_widgets.php:135 +msgid "Categories" +msgstr "Categorie" + +#: ../../include/contact_widgets.php:199 ../../mod/contacts.php:343 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contatto in comune" +msgstr[1] "%d contatti in comune" + +#: ../../include/contact_widgets.php:204 ../../mod/content.php:629 +#: ../../object/Item.php:365 ../../boot.php:671 +msgid "show more" +msgstr "mostra di più" + +#: ../../include/Scrape.php:583 +msgid " on Last.fm" +msgstr "su Last.fm" + +#: ../../include/network.php:877 +msgid "view full size" +msgstr "vedi a schermo intero" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Varie" + +#: ../../include/datetime.php:153 ../../include/datetime.php:285 +msgid "year" +msgstr "anno" + +#: ../../include/datetime.php:158 ../../include/datetime.php:286 +msgid "month" +msgstr "mese" + +#: ../../include/datetime.php:163 ../../include/datetime.php:288 +msgid "day" +msgstr "giorno" + +#: ../../include/datetime.php:276 +msgid "never" +msgstr "mai" + +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "meno di un secondo fa" + +#: ../../include/datetime.php:285 +msgid "years" +msgstr "anni" + +#: ../../include/datetime.php:286 +msgid "months" +msgstr "mesi" + +#: ../../include/datetime.php:287 +msgid "week" +msgstr "settimana" + +#: ../../include/datetime.php:287 +msgid "weeks" +msgstr "settimane" + +#: ../../include/datetime.php:288 +msgid "days" +msgstr "giorni" + +#: ../../include/datetime.php:289 +msgid "hour" +msgstr "ora" + +#: ../../include/datetime.php:289 +msgid "hours" +msgstr "ore" + +#: ../../include/datetime.php:290 +msgid "minute" +msgstr "minuto" + +#: ../../include/datetime.php:290 +msgid "minutes" +msgstr "minuti" + +#: ../../include/datetime.php:291 +msgid "second" +msgstr "secondo" + +#: ../../include/datetime.php:291 +msgid "seconds" +msgstr "secondi" + +#: ../../include/datetime.php:300 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s fa" + +#: ../../include/datetime.php:472 ../../include/items.php:1813 +#, php-format +msgid "%s's birthday" +msgstr "Compleanno di %s" + +#: ../../include/datetime.php:473 ../../include/items.php:1814 +#, php-format +msgid "Happy Birthday %s" +msgstr "Buon compleanno %s" + +#: ../../include/plugin.php:439 ../../include/plugin.php:441 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." + +#: ../../include/plugin.php:447 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione." + +#: ../../include/plugin.php:452 +msgid "This action is not available under your subscription plan." +msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." + +#: ../../include/delivery.php:457 ../../include/notifier.php:775 +msgid "(no subject)" +msgstr "(nessun oggetto)" + +#: ../../include/delivery.php:468 ../../include/enotify.php:28 +#: ../../include/notifier.php:785 +msgid "noreply" +msgstr "nessuna risposta" + +#: ../../include/diaspora.php:621 ../../include/conversation.php:172 +#: ../../mod/dfrn_confirm.php:477 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s e %2$s adesso sono amici" + +#: ../../include/diaspora.php:704 +msgid "Sharing notification from Diaspora network" +msgstr "Notifica di condivisione dal network Diaspora*" + +#: ../../include/diaspora.php:1874 ../../include/text.php:1862 +#: ../../include/conversation.php:126 ../../include/conversation.php:254 +#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151 +#: ../../view/theme/diabook/theme.php:464 +msgid "photo" +msgstr "foto" + +#: ../../include/diaspora.php:1874 ../../include/conversation.php:121 +#: ../../include/conversation.php:130 ../../include/conversation.php:249 +#: ../../include/conversation.php:258 ../../mod/subthread.php:87 +#: ../../mod/tagger.php:62 ../../mod/like.php:151 ../../mod/like.php:322 +#: ../../view/theme/diabook/theme.php:459 +#: ../../view/theme/diabook/theme.php:468 +msgid "status" +msgstr "stato" + +#: ../../include/diaspora.php:1890 ../../include/conversation.php:137 +#: ../../mod/like.php:168 ../../view/theme/diabook/theme.php:473 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" + +#: ../../include/diaspora.php:2262 +msgid "Attachments:" +msgstr "Allegati:" + +#: ../../include/items.php:3488 ../../mod/dfrn_request.php:716 +msgid "[Name Withheld]" +msgstr "[Nome Nascosto]" + +#: ../../include/items.php:3495 +msgid "A new person is sharing with you at " +msgstr "Una nuova persona sta condividendo con te da " + +#: ../../include/items.php:3495 +msgid "You have a new follower at " +msgstr "Una nuova persona ti segue su " + +#: ../../include/items.php:3979 ../../mod/display.php:51 +#: ../../mod/display.php:246 ../../mod/admin.php:158 ../../mod/admin.php:809 +#: ../../mod/admin.php:1009 ../../mod/viewsrc.php:15 ../../mod/notice.php:15 +msgid "Item not found." +msgstr "Elemento non trovato." + +#: ../../include/items.php:4018 +msgid "Do you really want to delete this item?" +msgstr "Vuoi veramente cancellare questo elemento?" + +#: ../../include/items.php:4020 ../../mod/profiles.php:610 +#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246 +#: ../../mod/settings.php:961 ../../mod/settings.php:967 +#: ../../mod/settings.php:975 ../../mod/settings.php:979 +#: ../../mod/settings.php:984 ../../mod/settings.php:990 +#: ../../mod/settings.php:996 ../../mod/settings.php:1002 +#: ../../mod/settings.php:1032 ../../mod/settings.php:1033 +#: ../../mod/settings.php:1034 ../../mod/settings.php:1035 +#: ../../mod/settings.php:1036 ../../mod/dfrn_request.php:836 +#: ../../mod/suggest.php:29 ../../mod/message.php:209 +msgid "Yes" +msgstr "Si" + +#: ../../include/items.php:4023 ../../include/conversation.php:1120 +#: ../../mod/contacts.php:249 ../../mod/settings.php:585 +#: ../../mod/settings.php:611 ../../mod/dfrn_request.php:848 +#: ../../mod/suggest.php:32 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 +#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/message.php:212 +#: ../../mod/photos.php:202 ../../mod/photos.php:290 +msgid "Cancel" +msgstr "Annulla" + +#: ../../include/items.php:4143 ../../mod/profiles.php:146 +#: ../../mod/profiles.php:571 ../../mod/notes.php:20 ../../mod/display.php:242 +#: ../../mod/nogroup.php:25 ../../mod/item.php:143 ../../mod/item.php:159 +#: ../../mod/allfriends.php:9 ../../mod/api.php:26 ../../mod/api.php:31 +#: ../../mod/register.php:40 ../../mod/regmod.php:118 ../../mod/attach.php:33 +#: ../../mod/contacts.php:147 ../../mod/settings.php:91 +#: ../../mod/settings.php:566 ../../mod/settings.php:571 +#: ../../mod/crepair.php:115 ../../mod/delegate.php:6 ../../mod/poke.php:135 +#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56 +#: ../../mod/editpost.php:10 ../../mod/events.php:140 ../../mod/uimport.php:23 +#: ../../mod/follow.php:9 ../../mod/fsuggest.php:78 ../../mod/group.php:19 +#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55 +#: ../../mod/wall_upload.php:66 ../../mod/invite.php:15 +#: ../../mod/invite.php:101 ../../mod/wallmessage.php:9 +#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 +#: ../../mod/wallmessage.php:103 ../../mod/manage.php:96 +#: ../../mod/message.php:38 ../../mod/message.php:174 ../../mod/mood.php:114 +#: ../../mod/network.php:6 ../../mod/notifications.php:66 +#: ../../mod/photos.php:133 ../../mod/photos.php:1044 +#: ../../mod/install.php:151 ../../mod/profile_photo.php:19 +#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180 +#: ../../mod/profile_photo.php:193 ../../index.php:346 +msgid "Permission denied." +msgstr "Permesso negato." + +#: ../../include/items.php:4213 +msgid "Archives" +msgstr "Archivi" + +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Funzionalità generali" + +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "Profili multipli" + +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Possibilità di creare profili multipli" + +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "Funzionalità di composizione dei post" + +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "Editor visuale" + +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "Abilita l'editor visuale" + +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Anteprima dei post" + +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli" + +#: ../../include/features.php:37 +msgid "Network Sidebar Widgets" +msgstr "Widget della barra laterale nella pagina Rete" + +#: ../../include/features.php:38 +msgid "Search by Date" +msgstr "Cerca per data" + +#: ../../include/features.php:38 +msgid "Ability to select posts by date ranges" +msgstr "Permette di filtrare i post per data" + +#: ../../include/features.php:39 +msgid "Group Filter" +msgstr "Filtra gruppi" + +#: ../../include/features.php:39 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Abilita il widget per filtrare i post solo per il gruppo selezionato" + +#: ../../include/features.php:40 +msgid "Network Filter" +msgstr "Filtro reti" + +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Abilita il widget per mostare i post solo per la rete selezionata" + +#: ../../include/features.php:41 ../../mod/search.php:30 +#: ../../mod/network.php:233 +msgid "Saved Searches" +msgstr "Ricerche salvate" + +#: ../../include/features.php:41 +msgid "Save search terms for re-use" +msgstr "Salva i termini cercati per riutilizzarli" + +#: ../../include/features.php:46 +msgid "Network Tabs" +msgstr "Schede pagina Rete" + +#: ../../include/features.php:47 +msgid "Network Personal Tab" +msgstr "Scheda Personali" + +#: ../../include/features.php:47 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Abilita la scheda per mostrare solo i post a cui hai partecipato" + +#: ../../include/features.php:48 +msgid "Network New Tab" +msgstr "Scheda Nuovi" + +#: ../../include/features.php:48 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)" + +#: ../../include/features.php:49 +msgid "Network Shared Links Tab" +msgstr "Scheda Link Condivisi" + +#: ../../include/features.php:49 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Abilita la scheda per mostrare solo i post che contengono link" + +#: ../../include/features.php:54 +msgid "Post/Comment Tools" +msgstr "Strumenti per mesasggi/commenti" + +#: ../../include/features.php:55 +msgid "Multiple Deletion" +msgstr "Eliminazione multipla" + +#: ../../include/features.php:55 +msgid "Select and delete multiple posts/comments at once" +msgstr "Seleziona ed elimina vari messagi e commenti in una volta sola" + +#: ../../include/features.php:56 +msgid "Edit Sent Posts" +msgstr "Modifica i post inviati" + +#: ../../include/features.php:56 +msgid "Edit and correct posts and comments after sending" +msgstr "Modifica e correggi messaggi e commenti dopo averli inviati" + +#: ../../include/features.php:57 +msgid "Tagging" +msgstr "Aggiunta tag" + +#: ../../include/features.php:57 +msgid "Ability to tag existing posts" +msgstr "Permette di aggiungere tag ai post già esistenti" + +#: ../../include/features.php:58 +msgid "Post Categories" +msgstr "Cateorie post" + +#: ../../include/features.php:58 +msgid "Add categories to your posts" +msgstr "Aggiungi categorie ai tuoi post" + +#: ../../include/features.php:59 +msgid "Ability to file posts under folders" +msgstr "Permette di archiviare i post in cartelle" + +#: ../../include/features.php:60 +msgid "Dislike Posts" +msgstr "Non mi piace" + +#: ../../include/features.php:60 +msgid "Ability to dislike posts/comments" +msgstr "Permetti di inviare \"non mi piace\" ai messaggi" + +#: ../../include/features.php:61 +msgid "Star Posts" +msgstr "Post preferiti" + +#: ../../include/features.php:61 +msgid "Ability to mark special posts with a star indicator" +msgstr "Permette di segnare i post preferiti con una stella" + +#: ../../include/dba.php:44 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" + +#: ../../include/text.php:294 +msgid "prev" +msgstr "prec" + +#: ../../include/text.php:296 +msgid "first" +msgstr "primo" + +#: ../../include/text.php:325 +msgid "last" +msgstr "ultimo" + +#: ../../include/text.php:328 +msgid "next" +msgstr "succ" + +#: ../../include/text.php:352 +msgid "newer" +msgstr "nuovi" + +#: ../../include/text.php:356 +msgid "older" +msgstr "vecchi" + +#: ../../include/text.php:807 +msgid "No contacts" +msgstr "Nessun contatto" + +#: ../../include/text.php:816 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contatto" +msgstr[1] "%d contatti" + +#: ../../include/text.php:828 ../../mod/viewcontacts.php:76 +msgid "View Contacts" +msgstr "Visualizza i contatti" + +#: ../../include/text.php:905 ../../include/text.php:906 +#: ../../include/nav.php:118 ../../mod/search.php:99 +msgid "Search" +msgstr "Cerca" + +#: ../../include/text.php:908 ../../mod/notes.php:63 ../../mod/filer.php:31 +msgid "Save" +msgstr "Salva" + +#: ../../include/text.php:957 +msgid "poke" +msgstr "stuzzica" + +#: ../../include/text.php:957 ../../include/conversation.php:211 +msgid "poked" +msgstr "toccato" + +#: ../../include/text.php:958 +msgid "ping" +msgstr "invia un ping" + +#: ../../include/text.php:958 +msgid "pinged" +msgstr "inviato un ping" + +#: ../../include/text.php:959 +msgid "prod" +msgstr "pungola" + +#: ../../include/text.php:959 +msgid "prodded" +msgstr "pungolato" + +#: ../../include/text.php:960 +msgid "slap" +msgstr "schiaffeggia" + +#: ../../include/text.php:960 +msgid "slapped" +msgstr "schiaffeggiato" + +#: ../../include/text.php:961 +msgid "finger" +msgstr "tocca" + +#: ../../include/text.php:961 +msgid "fingered" +msgstr "toccato" + +#: ../../include/text.php:962 +msgid "rebuff" +msgstr "respingi" + +#: ../../include/text.php:962 +msgid "rebuffed" +msgstr "respinto" + +#: ../../include/text.php:976 +msgid "happy" +msgstr "felice" + +#: ../../include/text.php:977 +msgid "sad" +msgstr "triste" + +#: ../../include/text.php:978 +msgid "mellow" +msgstr "rilassato" + +#: ../../include/text.php:979 +msgid "tired" +msgstr "stanco" + +#: ../../include/text.php:980 +msgid "perky" +msgstr "vivace" + +#: ../../include/text.php:981 +msgid "angry" +msgstr "arrabbiato" + +#: ../../include/text.php:982 +msgid "stupified" +msgstr "stupefatto" + +#: ../../include/text.php:983 +msgid "puzzled" +msgstr "confuso" + +#: ../../include/text.php:984 +msgid "interested" +msgstr "interessato" + +#: ../../include/text.php:985 +msgid "bitter" +msgstr "risentito" + +#: ../../include/text.php:986 +msgid "cheerful" +msgstr "giocoso" + +#: ../../include/text.php:987 +msgid "alive" +msgstr "vivo" + +#: ../../include/text.php:988 +msgid "annoyed" +msgstr "annoiato" + +#: ../../include/text.php:989 +msgid "anxious" +msgstr "ansioso" + +#: ../../include/text.php:990 +msgid "cranky" +msgstr "irritabile" + +#: ../../include/text.php:991 +msgid "disturbed" +msgstr "disturbato" + +#: ../../include/text.php:992 +msgid "frustrated" +msgstr "frustato" + +#: ../../include/text.php:993 +msgid "motivated" +msgstr "motivato" + +#: ../../include/text.php:994 +msgid "relaxed" +msgstr "rilassato" + +#: ../../include/text.php:995 +msgid "surprised" +msgstr "sorpreso" + +#: ../../include/text.php:1163 +msgid "Monday" +msgstr "Lunedì" + +#: ../../include/text.php:1163 +msgid "Tuesday" +msgstr "Martedì" + +#: ../../include/text.php:1163 +msgid "Wednesday" +msgstr "Mercoledì" + +#: ../../include/text.php:1163 +msgid "Thursday" +msgstr "Giovedì" + +#: ../../include/text.php:1163 +msgid "Friday" +msgstr "Venerdì" + +#: ../../include/text.php:1163 +msgid "Saturday" +msgstr "Sabato" + +#: ../../include/text.php:1163 +msgid "Sunday" +msgstr "Domenica" + +#: ../../include/text.php:1167 +msgid "January" +msgstr "Gennaio" + +#: ../../include/text.php:1167 +msgid "February" +msgstr "Febbraio" + +#: ../../include/text.php:1167 +msgid "March" +msgstr "Marzo" + +#: ../../include/text.php:1167 +msgid "April" +msgstr "Aprile" + +#: ../../include/text.php:1167 +msgid "May" +msgstr "Maggio" + +#: ../../include/text.php:1167 +msgid "June" +msgstr "Giugno" + +#: ../../include/text.php:1167 +msgid "July" +msgstr "Luglio" + +#: ../../include/text.php:1167 +msgid "August" +msgstr "Agosto" + +#: ../../include/text.php:1167 +msgid "September" +msgstr "Settembre" + +#: ../../include/text.php:1167 +msgid "October" +msgstr "Ottobre" + +#: ../../include/text.php:1167 +msgid "November" +msgstr "Novembre" + +#: ../../include/text.php:1167 +msgid "December" +msgstr "Dicembre" + +#: ../../include/text.php:1323 ../../mod/videos.php:301 +msgid "View Video" +msgstr "Guarda Video" + +#: ../../include/text.php:1355 +msgid "bytes" +msgstr "bytes" + +#: ../../include/text.php:1379 ../../include/text.php:1391 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" + +#: ../../include/text.php:1553 ../../mod/events.php:335 +msgid "link to source" +msgstr "Collegamento all'originale" + +#: ../../include/text.php:1608 +msgid "Select an alternate language" +msgstr "Seleziona una diversa lingua" + +#: ../../include/text.php:1860 ../../include/conversation.php:118 +#: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456 +msgid "event" +msgstr "l'evento" + +#: ../../include/text.php:1864 +msgid "activity" +msgstr "attività" + +#: ../../include/text.php:1866 ../../mod/content.php:628 +#: ../../object/Item.php:364 ../../object/Item.php:377 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "commento" + +#: ../../include/text.php:1867 +msgid "post" +msgstr "messaggio" + +#: ../../include/text.php:2022 +msgid "Item filed" +msgstr "Messaggio salvato" + +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso." + +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Gruppo predefinito per i nuovi contatti" + +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "Tutti" + +#: ../../include/group.php:249 +msgid "edit" +msgstr "modifica" + +#: ../../include/group.php:270 ../../mod/newmember.php:66 +msgid "Groups" +msgstr "Gruppi" + +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "Modifica gruppo" + +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Crea un nuovo gruppo" + +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "Contatti in nessun gruppo." + +#: ../../include/group.php:275 ../../mod/network.php:234 +msgid "add" +msgstr "aggiungi" + +#: ../../include/conversation.php:140 ../../mod/like.php:170 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" + +#: ../../include/conversation.php:207 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha stuzzicato %2$s" + +#: ../../include/conversation.php:227 ../../mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s al momento è %2$s" + +#: ../../include/conversation.php:266 ../../mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha taggato %3$s di %2$s con %4$s" + +#: ../../include/conversation.php:291 +msgid "post/item" +msgstr "post/elemento" + +#: ../../include/conversation.php:292 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito" + +#: ../../include/conversation.php:612 ../../mod/content.php:461 +#: ../../mod/content.php:763 ../../object/Item.php:126 +msgid "Select" +msgstr "Seleziona" + +#: ../../include/conversation.php:613 ../../mod/admin.php:770 +#: ../../mod/settings.php:647 ../../mod/group.php:171 +#: ../../mod/photos.php:1637 ../../mod/content.php:462 +#: ../../mod/content.php:764 ../../object/Item.php:127 +msgid "Delete" +msgstr "Rimuovi" + +#: ../../include/conversation.php:652 ../../mod/content.php:495 +#: ../../mod/content.php:875 ../../mod/content.php:876 +#: ../../object/Item.php:306 ../../object/Item.php:307 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" + +#: ../../include/conversation.php:664 ../../object/Item.php:297 +msgid "Categories:" +msgstr "Categorie:" + +#: ../../include/conversation.php:665 ../../object/Item.php:298 +msgid "Filed under:" +msgstr "Archiviato in:" + +#: ../../include/conversation.php:672 ../../mod/content.php:505 +#: ../../mod/content.php:887 ../../object/Item.php:320 +#, php-format +msgid "%s from %s" +msgstr "%s da %s" + +#: ../../include/conversation.php:687 ../../mod/content.php:520 +msgid "View in context" +msgstr "Vedi nel contesto" + +#: ../../include/conversation.php:689 ../../include/conversation.php:1100 +#: ../../mod/editpost.php:124 ../../mod/wallmessage.php:156 +#: ../../mod/message.php:334 ../../mod/message.php:565 +#: ../../mod/photos.php:1532 ../../mod/content.php:522 +#: ../../mod/content.php:906 ../../object/Item.php:341 +msgid "Please wait" +msgstr "Attendi" + +#: ../../include/conversation.php:768 +msgid "remove" +msgstr "rimuovi" + +#: ../../include/conversation.php:772 +msgid "Delete Selected Items" +msgstr "Cancella elementi selezionati" + +#: ../../include/conversation.php:871 +msgid "Follow Thread" +msgstr "Segui la discussione" + +#: ../../include/conversation.php:940 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:940 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:945 +#, php-format +msgid "%2$d people like this" +msgstr "Piace a %2$d persone." + +#: ../../include/conversation.php:948 +#, php-format +msgid "%2$d people don't like this" +msgstr "Non piace a %2$d persone." + +#: ../../include/conversation.php:962 +msgid "and" +msgstr "e" + +#: ../../include/conversation.php:968 +#, php-format +msgid ", and %d other people" +msgstr "e altre %d persone" + +#: ../../include/conversation.php:970 +#, php-format +msgid "%s like this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:970 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:997 ../../include/conversation.php:1015 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: ../../include/conversation.php:998 ../../include/conversation.php:1016 +#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 +#: ../../mod/message.php:283 ../../mod/message.php:291 +#: ../../mod/message.php:466 ../../mod/message.php:474 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" + +#: ../../include/conversation.php:999 ../../include/conversation.php:1017 +msgid "Please enter a video link/URL:" +msgstr "Inserisci un collegamento video / URL:" + +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +msgid "Please enter an audio link/URL:" +msgstr "Inserisci un collegamento audio / URL:" + +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +msgid "Tag term:" +msgstr "Tag:" + +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +#: ../../mod/filer.php:30 +msgid "Save to Folder:" +msgstr "Salva nella Cartella:" + +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Where are you right now?" +msgstr "Dove sei ora?" + +#: ../../include/conversation.php:1004 +msgid "Delete item(s)?" +msgstr "Cancellare questo elemento/i?" + +#: ../../include/conversation.php:1046 +msgid "Post to Email" +msgstr "Invia a email" + +#: ../../include/conversation.php:1081 ../../mod/photos.php:1531 +msgid "Share" +msgstr "Condividi" + +#: ../../include/conversation.php:1082 ../../mod/editpost.php:110 +#: ../../mod/wallmessage.php:154 ../../mod/message.php:332 +#: ../../mod/message.php:562 +msgid "Upload photo" +msgstr "Carica foto" + +#: ../../include/conversation.php:1083 ../../mod/editpost.php:111 +msgid "upload photo" +msgstr "carica foto" + +#: ../../include/conversation.php:1084 ../../mod/editpost.php:112 +msgid "Attach file" +msgstr "Allega file" + +#: ../../include/conversation.php:1085 ../../mod/editpost.php:113 +msgid "attach file" +msgstr "allega file" + +#: ../../include/conversation.php:1086 ../../mod/editpost.php:114 +#: ../../mod/wallmessage.php:155 ../../mod/message.php:333 +#: ../../mod/message.php:563 +msgid "Insert web link" +msgstr "Inserisci link" + +#: ../../include/conversation.php:1087 ../../mod/editpost.php:115 +msgid "web link" +msgstr "link web" + +#: ../../include/conversation.php:1088 ../../mod/editpost.php:116 +msgid "Insert video link" +msgstr "Inserire collegamento video" + +#: ../../include/conversation.php:1089 ../../mod/editpost.php:117 +msgid "video link" +msgstr "link video" + +#: ../../include/conversation.php:1090 ../../mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Inserisci collegamento audio" + +#: ../../include/conversation.php:1091 ../../mod/editpost.php:119 +msgid "audio link" +msgstr "link audio" + +#: ../../include/conversation.php:1092 ../../mod/editpost.php:120 +msgid "Set your location" +msgstr "La tua posizione" + +#: ../../include/conversation.php:1093 ../../mod/editpost.php:121 +msgid "set location" +msgstr "posizione" + +#: ../../include/conversation.php:1094 ../../mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Rimuovi la localizzazione data dal browser" + +#: ../../include/conversation.php:1095 ../../mod/editpost.php:123 +msgid "clear location" +msgstr "canc. pos." + +#: ../../include/conversation.php:1097 ../../mod/editpost.php:137 +msgid "Set title" +msgstr "Scegli un titolo" + +#: ../../include/conversation.php:1099 ../../mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "Categorie (lista separata da virgola)" + +#: ../../include/conversation.php:1101 ../../mod/editpost.php:125 +msgid "Permission settings" +msgstr "Impostazioni permessi" + +#: ../../include/conversation.php:1102 +msgid "permissions" +msgstr "permessi" + +#: ../../include/conversation.php:1110 ../../mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "CC: indirizzi email" + +#: ../../include/conversation.php:1111 ../../mod/editpost.php:134 +msgid "Public post" +msgstr "Messaggio pubblico" + +#: ../../include/conversation.php:1113 ../../mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Esempio: bob@example.com, mary@example.com" + +#: ../../include/conversation.php:1117 ../../mod/editpost.php:145 +#: ../../mod/photos.php:1553 ../../mod/photos.php:1597 +#: ../../mod/photos.php:1680 ../../mod/content.php:742 +#: ../../object/Item.php:662 +msgid "Preview" +msgstr "Anteprima" + +#: ../../include/conversation.php:1126 +msgid "Post to Groups" +msgstr "Invia ai Gruppi" + +#: ../../include/conversation.php:1127 +msgid "Post to Contacts" +msgstr "Invia ai Contatti" + +#: ../../include/conversation.php:1128 +msgid "Private post" +msgstr "Post privato" + #: ../../include/enotify.php:16 msgid "Friendica Notification" msgstr "Notifica Friendica" @@ -6815,96 +1985,249 @@ msgstr "Foto:" msgid "Please visit %s to approve or reject the suggestion." msgstr "Visita %s per approvare o rifiutare il suggerimento." -#: ../../include/user.php:39 -msgid "An invitation is required." -msgstr "E' richiesto un invito." +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[nessun oggetto]" -#: ../../include/user.php:44 -msgid "Invitation could not be verified." -msgstr "L'invito non puo' essere verificato." +#: ../../include/message.php:144 ../../mod/item.php:446 +#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 +#: ../../mod/wall_upload.php:151 +msgid "Wall Photos" +msgstr "Foto della bacheca" -#: ../../include/user.php:52 -msgid "Invalid OpenID url" -msgstr "Url OpenID non valido" +#: ../../include/nav.php:34 ../../mod/navigation.php:20 +msgid "Nothing new here" +msgstr "Niente di nuovo qui" -#: ../../include/user.php:67 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." +#: ../../include/nav.php:38 ../../mod/navigation.php:24 +msgid "Clear notifications" +msgstr "Pulisci le notifiche" -#: ../../include/user.php:81 -msgid "Please use a shorter name." -msgstr "Usa un nome più corto." +#: ../../include/nav.php:73 ../../boot.php:1136 +msgid "Logout" +msgstr "Esci" -#: ../../include/user.php:83 -msgid "Name too short." -msgstr "Il nome è troppo corto." +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Finisci questa sessione" -#: ../../include/user.php:98 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." +#: ../../include/nav.php:76 ../../boot.php:1940 +msgid "Status" +msgstr "Stato" -#: ../../include/user.php:103 -msgid "Your email domain is not among those allowed on this site." -msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito." +#: ../../include/nav.php:76 ../../include/nav.php:143 +#: ../../view/theme/diabook/theme.php:87 +msgid "Your posts and conversations" +msgstr "I tuoi messaggi e le tue conversazioni" -#: ../../include/user.php:106 -msgid "Not a valid email address." -msgstr "L'indirizzo email non è valido." +#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88 +msgid "Your profile page" +msgstr "Pagina del tuo profilo" -#: ../../include/user.php:116 -msgid "Cannot use that email." -msgstr "Non puoi usare quell'email." +#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 +#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1954 +msgid "Photos" +msgstr "Foto" -#: ../../include/user.php:122 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera." +#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90 +msgid "Your photos" +msgstr "Le tue foto" -#: ../../include/user.php:128 ../../include/user.php:226 -msgid "Nickname is already registered. Please choose another." -msgstr "Nome utente già registrato. Scegline un altro." +#: ../../include/nav.php:79 ../../mod/events.php:370 +#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1971 +msgid "Events" +msgstr "Eventi" -#: ../../include/user.php:138 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo." +#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91 +msgid "Your events" +msgstr "I tuoi eventi" -#: ../../include/user.php:154 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." +#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92 +msgid "Personal notes" +msgstr "Note personali" -#: ../../include/user.php:212 -msgid "An error occurred during registration. Please try again." -msgstr "C'è stato un errore durante la registrazione. Prova ancora." +#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92 +msgid "Your personal photos" +msgstr "Le tue foto personali" -#: ../../include/user.php:247 -msgid "An error occurred creating your default profile. Please try again." -msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora." +#: ../../include/nav.php:91 ../../boot.php:1137 +msgid "Login" +msgstr "Accedi" -#: ../../include/acl_selectors.php:325 -msgid "Visible to everybody" -msgstr "Visibile a tutti" +#: ../../include/nav.php:91 +msgid "Sign in" +msgstr "Entra" -#: ../../include/bbcode.php:210 ../../include/bbcode.php:545 -msgid "Image/photo" -msgstr "Immagine/foto" +#: ../../include/nav.php:104 ../../include/nav.php:143 +#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87 +msgid "Home" +msgstr "Home" -#: ../../include/bbcode.php:272 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s ha scritto il seguente post" +#: ../../include/nav.php:104 +msgid "Home Page" +msgstr "Home Page" -#: ../../include/bbcode.php:510 ../../include/bbcode.php:530 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" +#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1112 +msgid "Register" +msgstr "Registrati" -#: ../../include/bbcode.php:553 ../../include/bbcode.php:554 -msgid "Encrypted content" -msgstr "Contenuto criptato" +#: ../../include/nav.php:108 +msgid "Create an account" +msgstr "Crea un account" + +#: ../../include/nav.php:113 ../../mod/help.php:84 +msgid "Help" +msgstr "Guida" + +#: ../../include/nav.php:113 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: ../../include/nav.php:116 +msgid "Apps" +msgstr "Applicazioni" + +#: ../../include/nav.php:116 +msgid "Addon applications, utilities, games" +msgstr "Applicazioni, utilità e giochi aggiuntivi" + +#: ../../include/nav.php:118 +msgid "Search site content" +msgstr "Cerca nel contenuto del sito" + +#: ../../include/nav.php:128 ../../mod/community.php:32 +#: ../../view/theme/diabook/theme.php:93 +msgid "Community" +msgstr "Comunità" + +#: ../../include/nav.php:128 +msgid "Conversations on this site" +msgstr "Conversazioni su questo sito" + +#: ../../include/nav.php:130 +msgid "Directory" +msgstr "Elenco" + +#: ../../include/nav.php:130 +msgid "People directory" +msgstr "Elenco delle persone" + +#: ../../include/nav.php:140 ../../mod/notifications.php:83 +msgid "Network" +msgstr "Rete" + +#: ../../include/nav.php:140 +msgid "Conversations from your friends" +msgstr "Conversazioni dai tuoi amici" + +#: ../../include/nav.php:141 +msgid "Network Reset" +msgstr "Reset pagina Rete" + +#: ../../include/nav.php:141 +msgid "Load Network page with no filters" +msgstr "Carica la pagina Rete senza nessun filtro" + +#: ../../include/nav.php:149 ../../mod/notifications.php:98 +msgid "Introductions" +msgstr "Presentazioni" + +#: ../../include/nav.php:149 +msgid "Friend Requests" +msgstr "Richieste di amicizia" + +#: ../../include/nav.php:150 ../../mod/notifications.php:220 +msgid "Notifications" +msgstr "Notifiche" + +#: ../../include/nav.php:151 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" + +#: ../../include/nav.php:152 +msgid "Mark all system notifications seen" +msgstr "Segna tutte le notifiche come viste" + +#: ../../include/nav.php:156 ../../mod/message.php:182 +#: ../../mod/notifications.php:103 +msgid "Messages" +msgstr "Messaggi" + +#: ../../include/nav.php:156 +msgid "Private mail" +msgstr "Posta privata" + +#: ../../include/nav.php:157 +msgid "Inbox" +msgstr "In arrivo" + +#: ../../include/nav.php:158 +msgid "Outbox" +msgstr "Inviati" + +#: ../../include/nav.php:159 ../../mod/message.php:9 +msgid "New Message" +msgstr "Nuovo messaggio" + +#: ../../include/nav.php:162 +msgid "Manage" +msgstr "Gestisci" + +#: ../../include/nav.php:162 +msgid "Manage other pages" +msgstr "Gestisci altre pagine" + +#: ../../include/nav.php:165 +msgid "Delegations" +msgstr "Delegazioni" + +#: ../../include/nav.php:165 ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Gestione delegati per la pagina" + +#: ../../include/nav.php:167 ../../mod/admin.php:861 ../../mod/admin.php:1069 +#: ../../mod/settings.php:74 ../../mod/uexport.php:48 +#: ../../mod/newmember.php:22 ../../view/theme/diabook/theme.php:537 +#: ../../view/theme/diabook/theme.php:658 +msgid "Settings" +msgstr "Impostazioni" + +#: ../../include/nav.php:167 ../../mod/settings.php:30 ../../mod/uexport.php:9 +msgid "Account settings" +msgstr "Parametri account" + +#: ../../include/nav.php:169 ../../boot.php:1439 +msgid "Profiles" +msgstr "Profili" + +#: ../../include/nav.php:169 +msgid "Manage/Edit Profiles" +msgstr "Gestisci/Modifica i profili" + +#: ../../include/nav.php:171 ../../mod/contacts.php:607 +#: ../../view/theme/diabook/theme.php:89 +msgid "Contacts" +msgstr "Contatti" + +#: ../../include/nav.php:171 +msgid "Manage/edit friends and contacts" +msgstr "Gestisci/modifica amici e contatti" + +#: ../../include/nav.php:178 ../../mod/admin.php:120 +msgid "Admin" +msgstr "Amministrazione" + +#: ../../include/nav.php:178 +msgid "Site setup and configuration" +msgstr "Configurazione del sito" + +#: ../../include/nav.php:182 +msgid "Navigation" +msgstr "Navigazione" + +#: ../../include/nav.php:182 +msgid "Site map" +msgstr "Mappa del sito" #: ../../include/oembed.php:138 msgid "Embedded content" @@ -6914,114 +2237,4884 @@ msgstr "Contenuto incorporato" msgid "Embedding disabled" msgstr "Embed disabilitato" -#: ../../include/group.php:25 +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Errore decodificando il file account" + +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?" + +#: ../../include/uimport.php:116 +msgid "Error! Cannot check nickname" +msgstr "Errore! Non posso controllare il nickname" + +#: ../../include/uimport.php:120 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "L'utente '%s' esiste già su questo server!" + +#: ../../include/uimport.php:139 +msgid "User creation error" +msgstr "Errore creando l'utente" + +#: ../../include/uimport.php:157 +msgid "User profile creation error" +msgstr "Errore creando il profile dell'utente" + +#: ../../include/uimport.php:202 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contatto non importato" +msgstr[1] "%d contatti non importati" + +#: ../../include/uimport.php:272 +msgid "Done. You can now login with your username and password" +msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password" + +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "Ciao" + +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Carica una foto per il profilo." + +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "Ciao " + +#: ../../include/security.php:366 msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso." +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla." -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Gruppo predefinito per i nuovi contatti" +#: ../../mod/profiles.php:18 ../../mod/profiles.php:133 +#: ../../mod/profiles.php:160 ../../mod/profiles.php:583 +#: ../../mod/dfrn_confirm.php:62 +msgid "Profile not found." +msgstr "Profilo non trovato." -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Tutti" +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profilo elminato." -#: ../../include/group.php:249 -msgid "edit" -msgstr "modifica" +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" +msgstr "Profilo-" -#: ../../include/group.php:271 -msgid "Edit group" +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." +msgstr "Il nuovo profilo è stato creato." + +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il profilo." + +#: ../../mod/profiles.php:170 +msgid "Profile Name is required." +msgstr "Il nome profilo è obbligatorio ." + +#: ../../mod/profiles.php:317 +msgid "Marital Status" +msgstr "Stato civile" + +#: ../../mod/profiles.php:321 +msgid "Romantic Partner" +msgstr "Partner romantico" + +#: ../../mod/profiles.php:325 +msgid "Likes" +msgstr "Mi piace" + +#: ../../mod/profiles.php:329 +msgid "Dislikes" +msgstr "Non mi piace" + +#: ../../mod/profiles.php:333 +msgid "Work/Employment" +msgstr "Lavoro/Impiego" + +#: ../../mod/profiles.php:336 +msgid "Religion" +msgstr "Religione" + +#: ../../mod/profiles.php:340 +msgid "Political Views" +msgstr "Orientamento Politico" + +#: ../../mod/profiles.php:344 +msgid "Gender" +msgstr "Sesso" + +#: ../../mod/profiles.php:348 +msgid "Sexual Preference" +msgstr "Preferenza sessuale" + +#: ../../mod/profiles.php:352 +msgid "Homepage" +msgstr "Homepage" + +#: ../../mod/profiles.php:356 +msgid "Interests" +msgstr "Interessi" + +#: ../../mod/profiles.php:360 +msgid "Address" +msgstr "Indirizzo" + +#: ../../mod/profiles.php:367 +msgid "Location" +msgstr "Posizione" + +#: ../../mod/profiles.php:450 +msgid "Profile updated." +msgstr "Profilo aggiornato." + +#: ../../mod/profiles.php:521 +msgid " and " +msgstr "e " + +#: ../../mod/profiles.php:529 +msgid "public profile" +msgstr "profilo pubblico" + +#: ../../mod/profiles.php:532 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiato %2$s in “%3$s”" + +#: ../../mod/profiles.php:533 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "- Visita %2$s di %1$s" + +#: ../../mod/profiles.php:536 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha un %2$s aggiornato. Ha cambiato %3$s" + +#: ../../mod/profiles.php:609 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?" + +#: ../../mod/profiles.php:611 ../../mod/api.php:106 ../../mod/register.php:240 +#: ../../mod/settings.php:961 ../../mod/settings.php:967 +#: ../../mod/settings.php:975 ../../mod/settings.php:979 +#: ../../mod/settings.php:984 ../../mod/settings.php:990 +#: ../../mod/settings.php:996 ../../mod/settings.php:1002 +#: ../../mod/settings.php:1032 ../../mod/settings.php:1033 +#: ../../mod/settings.php:1034 ../../mod/settings.php:1035 +#: ../../mod/settings.php:1036 ../../mod/dfrn_request.php:837 +msgid "No" +msgstr "No" + +#: ../../mod/profiles.php:629 +msgid "Edit Profile Details" +msgstr "Modifica i dettagli del profilo" + +#: ../../mod/profiles.php:630 ../../mod/admin.php:491 ../../mod/admin.php:763 +#: ../../mod/admin.php:902 ../../mod/admin.php:1102 ../../mod/admin.php:1189 +#: ../../mod/contacts.php:386 ../../mod/settings.php:584 +#: ../../mod/settings.php:694 ../../mod/settings.php:763 +#: ../../mod/settings.php:837 ../../mod/settings.php:1064 +#: ../../mod/crepair.php:166 ../../mod/poke.php:199 ../../mod/events.php:478 +#: ../../mod/fsuggest.php:107 ../../mod/group.php:87 ../../mod/invite.php:140 +#: ../../mod/localtime.php:45 ../../mod/manage.php:110 +#: ../../mod/message.php:335 ../../mod/message.php:564 ../../mod/mood.php:137 +#: ../../mod/photos.php:1078 ../../mod/photos.php:1199 +#: ../../mod/photos.php:1501 ../../mod/photos.php:1552 +#: ../../mod/photos.php:1596 ../../mod/photos.php:1679 +#: ../../mod/install.php:248 ../../mod/install.php:286 +#: ../../mod/content.php:733 ../../object/Item.php:653 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/diabook/config.php:152 +#: ../../view/theme/diabook/theme.php:642 ../../view/theme/dispy/config.php:70 +#: ../../view/theme/quattro/config.php:64 +msgid "Submit" +msgstr "Invia" + +#: ../../mod/profiles.php:631 +msgid "Change Profile Photo" +msgstr "Cambia la foto del profilo" + +#: ../../mod/profiles.php:632 +msgid "View this profile" +msgstr "Visualizza questo profilo" + +#: ../../mod/profiles.php:633 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" + +#: ../../mod/profiles.php:634 +msgid "Clone this profile" +msgstr "Clona questo profilo" + +#: ../../mod/profiles.php:635 +msgid "Delete this profile" +msgstr "Elimina questo profilo" + +#: ../../mod/profiles.php:636 +msgid "Profile Name:" +msgstr "Nome del profilo:" + +#: ../../mod/profiles.php:637 +msgid "Your Full Name:" +msgstr "Il tuo nome completo:" + +#: ../../mod/profiles.php:638 +msgid "Title/Description:" +msgstr "Breve descrizione (es. titolo, posizione, altro):" + +#: ../../mod/profiles.php:639 +msgid "Your Gender:" +msgstr "Il tuo sesso:" + +#: ../../mod/profiles.php:640 +#, php-format +msgid "Birthday (%s):" +msgstr "Compleanno (%s)" + +#: ../../mod/profiles.php:641 +msgid "Street Address:" +msgstr "Indirizzo (via/piazza):" + +#: ../../mod/profiles.php:642 +msgid "Locality/City:" +msgstr "Località:" + +#: ../../mod/profiles.php:643 +msgid "Postal/Zip Code:" +msgstr "CAP:" + +#: ../../mod/profiles.php:644 +msgid "Country:" +msgstr "Nazione:" + +#: ../../mod/profiles.php:645 +msgid "Region/State:" +msgstr "Regione/Stato:" + +#: ../../mod/profiles.php:646 +msgid " Marital Status:" +msgstr " Stato sentimentale:" + +#: ../../mod/profiles.php:647 +msgid "Who: (if applicable)" +msgstr "Con chi: (se possibile)" + +#: ../../mod/profiles.php:648 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" + +#: ../../mod/profiles.php:649 +msgid "Since [date]:" +msgstr "Dal [data]:" + +#: ../../mod/profiles.php:651 +msgid "Homepage URL:" +msgstr "Homepage:" + +#: ../../mod/profiles.php:654 +msgid "Religious Views:" +msgstr "Orientamento religioso:" + +#: ../../mod/profiles.php:655 +msgid "Public Keywords:" +msgstr "Parole chiave visibili a tutti:" + +#: ../../mod/profiles.php:656 +msgid "Private Keywords:" +msgstr "Parole chiave private:" + +#: ../../mod/profiles.php:659 +msgid "Example: fishing photography software" +msgstr "Esempio: pesca fotografia programmazione" + +#: ../../mod/profiles.php:660 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)" + +#: ../../mod/profiles.php:661 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" + +#: ../../mod/profiles.php:662 +msgid "Tell us about yourself..." +msgstr "Raccontaci di te..." + +#: ../../mod/profiles.php:663 +msgid "Hobbies/Interests" +msgstr "Hobby/interessi" + +#: ../../mod/profiles.php:664 +msgid "Contact information and Social Networks" +msgstr "Informazioni su contatti e social network" + +#: ../../mod/profiles.php:665 +msgid "Musical interests" +msgstr "Interessi musicali" + +#: ../../mod/profiles.php:666 +msgid "Books, literature" +msgstr "Libri, letteratura" + +#: ../../mod/profiles.php:667 +msgid "Television" +msgstr "Televisione" + +#: ../../mod/profiles.php:668 +msgid "Film/dance/culture/entertainment" +msgstr "Film/danza/cultura/intrattenimento" + +#: ../../mod/profiles.php:669 +msgid "Love/romance" +msgstr "Amore" + +#: ../../mod/profiles.php:670 +msgid "Work/employment" +msgstr "Lavoro/impiego" + +#: ../../mod/profiles.php:671 +msgid "School/education" +msgstr "Scuola/educazione" + +#: ../../mod/profiles.php:676 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet." + +#: ../../mod/profiles.php:686 ../../mod/directory.php:111 +msgid "Age: " +msgstr "Età : " + +#: ../../mod/profiles.php:725 +msgid "Edit/Manage Profiles" +msgstr "Modifica / Gestisci profili" + +#: ../../mod/profiles.php:726 ../../boot.php:1445 ../../boot.php:1471 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" + +#: ../../mod/profiles.php:727 ../../boot.php:1446 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" + +#: ../../mod/profiles.php:738 ../../boot.php:1456 +msgid "Profile Image" +msgstr "Immagine del Profilo" + +#: ../../mod/profiles.php:740 ../../boot.php:1459 +msgid "visible to everybody" +msgstr "visibile a tutti" + +#: ../../mod/profiles.php:741 ../../boot.php:1460 +msgid "Edit visibility" +msgstr "Modifica visibilità" + +#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:345 +msgid "Permission denied" +msgstr "Permesso negato" + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Modifica visibilità del profilo" + +#: ../../mod/profperm.php:105 ../../mod/group.php:224 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Visibile a" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Tutti i contatti (con profilo ad accesso sicuro)" + +#: ../../mod/notes.php:44 ../../boot.php:1978 +msgid "Personal Notes" +msgstr "Note personali" + +#: ../../mod/display.php:19 ../../mod/search.php:89 +#: ../../mod/dfrn_request.php:761 ../../mod/directory.php:31 +#: ../../mod/videos.php:115 ../../mod/viewcontacts.php:17 +#: ../../mod/photos.php:914 ../../mod/community.php:18 +msgid "Public access denied." +msgstr "Accesso negato." + +#: ../../mod/display.php:99 ../../mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "L'accesso a questo profilo è stato limitato." + +#: ../../mod/display.php:239 +msgid "Item has been removed." +msgstr "L'oggetto è stato rimosso." + +#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395 +#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" + +#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586 +msgid "Edit contact" +msgstr "Modifca contatto" + +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Contatti che non sono membri di un gruppo" + +#: ../../mod/ping.php:238 +msgid "{0} wants to be your friend" +msgstr "{0} vuole essere tuo amico" + +#: ../../mod/ping.php:243 +msgid "{0} sent you a message" +msgstr "{0} ti ha inviato un messaggio" + +#: ../../mod/ping.php:248 +msgid "{0} requested registration" +msgstr "{0} chiede la registrazione" + +#: ../../mod/ping.php:254 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} ha commentato il post di %s" + +#: ../../mod/ping.php:259 +#, php-format +msgid "{0} liked %s's post" +msgstr "a {0} piace il post di %s" + +#: ../../mod/ping.php:264 +#, php-format +msgid "{0} disliked %s's post" +msgstr "a {0} non piace il post di %s" + +#: ../../mod/ping.php:269 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} ora è amico di %s" + +#: ../../mod/ping.php:274 +msgid "{0} posted" +msgstr "{0} ha inviato un nuovo messaggio" + +#: ../../mod/ping.php:279 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} ha taggato il post di %s con #%s" + +#: ../../mod/ping.php:285 +msgid "{0} mentioned you in a post" +msgstr "{0} ti ha citato in un post" + +#: ../../mod/admin.php:55 +msgid "Theme settings updated." +msgstr "Impostazioni del tema aggiornate." + +#: ../../mod/admin.php:96 ../../mod/admin.php:490 +msgid "Site" +msgstr "Sito" + +#: ../../mod/admin.php:97 ../../mod/admin.php:762 ../../mod/admin.php:776 +msgid "Users" +msgstr "Utenti" + +#: ../../mod/admin.php:98 ../../mod/admin.php:859 ../../mod/admin.php:901 +msgid "Plugins" +msgstr "Plugin" + +#: ../../mod/admin.php:99 ../../mod/admin.php:1067 ../../mod/admin.php:1101 +msgid "Themes" +msgstr "Temi" + +#: ../../mod/admin.php:100 +msgid "DB updates" +msgstr "Aggiornamenti Database" + +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1188 +msgid "Logs" +msgstr "Log" + +#: ../../mod/admin.php:121 +msgid "Plugin Features" +msgstr "Impostazioni Plugins" + +#: ../../mod/admin.php:123 +msgid "User registrations waiting for confirmation" +msgstr "Utenti registrati in attesa di conferma" + +#: ../../mod/admin.php:182 ../../mod/admin.php:733 +msgid "Normal Account" +msgstr "Account normale" + +#: ../../mod/admin.php:183 ../../mod/admin.php:734 +msgid "Soapbox Account" +msgstr "Account per comunicati e annunci" + +#: ../../mod/admin.php:184 ../../mod/admin.php:735 +msgid "Community/Celebrity Account" +msgstr "Account per celebrità o per comunità" + +#: ../../mod/admin.php:185 ../../mod/admin.php:736 +msgid "Automatic Friend Account" +msgstr "Account per amicizia automatizzato" + +#: ../../mod/admin.php:186 +msgid "Blog Account" +msgstr "Account Blog" + +#: ../../mod/admin.php:187 +msgid "Private Forum" +msgstr "Forum Privato" + +#: ../../mod/admin.php:206 +msgid "Message queues" +msgstr "Code messaggi" + +#: ../../mod/admin.php:211 ../../mod/admin.php:489 ../../mod/admin.php:761 +#: ../../mod/admin.php:858 ../../mod/admin.php:900 ../../mod/admin.php:1066 +#: ../../mod/admin.php:1100 ../../mod/admin.php:1187 +msgid "Administration" +msgstr "Amministrazione" + +#: ../../mod/admin.php:212 +msgid "Summary" +msgstr "Sommario" + +#: ../../mod/admin.php:214 +msgid "Registered users" +msgstr "Utenti registrati" + +#: ../../mod/admin.php:216 +msgid "Pending registrations" +msgstr "Registrazioni in attesa" + +#: ../../mod/admin.php:217 +msgid "Version" +msgstr "Versione" + +#: ../../mod/admin.php:219 +msgid "Active plugins" +msgstr "Plugin attivi" + +#: ../../mod/admin.php:405 +msgid "Site settings updated." +msgstr "Impostazioni del sito aggiornate." + +#: ../../mod/admin.php:434 ../../mod/settings.php:793 +msgid "No special theme for mobile devices" +msgstr "Nessun tema speciale per i dispositivi mobili" + +#: ../../mod/admin.php:451 ../../mod/contacts.php:330 +msgid "Never" +msgstr "Mai" + +#: ../../mod/admin.php:460 +msgid "Multi user instance" +msgstr "Istanza multi utente" + +#: ../../mod/admin.php:476 +msgid "Closed" +msgstr "Chiusa" + +#: ../../mod/admin.php:477 +msgid "Requires approval" +msgstr "Richiede l'approvazione" + +#: ../../mod/admin.php:478 +msgid "Open" +msgstr "Aperta" + +#: ../../mod/admin.php:482 +msgid "No SSL policy, links will track page SSL state" +msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina" + +#: ../../mod/admin.php:483 +msgid "Force all links to use SSL" +msgstr "Forza tutti i linki ad usare SSL" + +#: ../../mod/admin.php:484 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)" + +#: ../../mod/admin.php:492 ../../mod/register.php:261 +msgid "Registration" +msgstr "Registrazione" + +#: ../../mod/admin.php:493 +msgid "File upload" +msgstr "Caricamento file" + +#: ../../mod/admin.php:494 +msgid "Policies" +msgstr "Politiche" + +#: ../../mod/admin.php:495 +msgid "Advanced" +msgstr "Avanzate" + +#: ../../mod/admin.php:496 +msgid "Performance" +msgstr "Performance" + +#: ../../mod/admin.php:500 +msgid "Site name" +msgstr "Nome del sito" + +#: ../../mod/admin.php:501 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: ../../mod/admin.php:502 +msgid "System language" +msgstr "Lingua di sistema" + +#: ../../mod/admin.php:503 +msgid "System theme" +msgstr "Tema di sistema" + +#: ../../mod/admin.php:503 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema" + +#: ../../mod/admin.php:504 +msgid "Mobile system theme" +msgstr "Tema mobile di sistema" + +#: ../../mod/admin.php:504 +msgid "Theme for mobile devices" +msgstr "Tema per dispositivi mobili" + +#: ../../mod/admin.php:505 +msgid "SSL link policy" +msgstr "Gestione link SSL" + +#: ../../mod/admin.php:505 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Determina se i link generati devono essere forzati a usare SSL" + +#: ../../mod/admin.php:506 +msgid "'Share' element" +msgstr "Elemento 'Share'" + +#: ../../mod/admin.php:506 +msgid "Activates the bbcode element 'share' for repeating items." +msgstr "Attiva l'elemento bbcode 'share' per i post condivisi." + +#: ../../mod/admin.php:507 +msgid "Hide help entry from navigation menu" +msgstr "Nascondi la voce 'Guida' dal menu di navigazione" + +#: ../../mod/admin.php:507 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente." + +#: ../../mod/admin.php:508 +msgid "Single user instance" +msgstr "Instanza a singolo utente" + +#: ../../mod/admin.php:508 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato" + +#: ../../mod/admin.php:509 +msgid "Maximum image size" +msgstr "Massima dimensione immagini" + +#: ../../mod/admin.php:509 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." + +#: ../../mod/admin.php:510 +msgid "Maximum image length" +msgstr "Massima lunghezza immagine" + +#: ../../mod/admin.php:510 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite." + +#: ../../mod/admin.php:511 +msgid "JPEG image quality" +msgstr "Qualità immagini JPEG" + +#: ../../mod/admin.php:511 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena." + +#: ../../mod/admin.php:513 +msgid "Register policy" +msgstr "Politica di registrazione" + +#: ../../mod/admin.php:514 +msgid "Maximum Daily Registrations" +msgstr "Massime registrazioni giornaliere" + +#: ../../mod/admin.php:514 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto." + +#: ../../mod/admin.php:515 +msgid "Register text" +msgstr "Testo registrazione" + +#: ../../mod/admin.php:515 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." + +#: ../../mod/admin.php:516 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo x giorni" + +#: ../../mod/admin.php:516 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo." + +#: ../../mod/admin.php:517 +msgid "Allowed friend domains" +msgstr "Domini amici consentiti" + +#: ../../mod/admin.php:517 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." + +#: ../../mod/admin.php:518 +msgid "Allowed email domains" +msgstr "Domini email consentiti" + +#: ../../mod/admin.php:518 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." + +#: ../../mod/admin.php:519 +msgid "Block public" +msgstr "Blocca pagine pubbliche" + +#: ../../mod/admin.php:519 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato." + +#: ../../mod/admin.php:520 +msgid "Force publish" +msgstr "Forza publicazione" + +#: ../../mod/admin.php:520 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito." + +#: ../../mod/admin.php:521 +msgid "Global directory update URL" +msgstr "URL aggiornamento Elenco Globale" + +#: ../../mod/admin.php:521 +msgid "" +"URL to update the global directory. If this is not set, the global directory" +" is completely unavailable to the application." +msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato." + +#: ../../mod/admin.php:522 +msgid "Allow threaded items" +msgstr "Permetti commenti nidificati" + +#: ../../mod/admin.php:522 +msgid "Allow infinite level threading for items on this site." +msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito." + +#: ../../mod/admin.php:523 +msgid "Private posts by default for new users" +msgstr "Post privati di default per i nuovi utenti" + +#: ../../mod/admin.php:523 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici." + +#: ../../mod/admin.php:524 +msgid "Don't include post content in email notifications" +msgstr "Non includere il contenuto dei post nelle notifiche via email" + +#: ../../mod/admin.php:524 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy" + +#: ../../mod/admin.php:525 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps." + +#: ../../mod/admin.php:525 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "" + +#: ../../mod/admin.php:526 +msgid "Don't embed private images in posts" +msgstr "" + +#: ../../mod/admin.php:526 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "" + +#: ../../mod/admin.php:528 +msgid "Block multiple registrations" +msgstr "Blocca registrazioni multiple" + +#: ../../mod/admin.php:528 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Non permette all'utente di registrare account extra da usare come pagine." + +#: ../../mod/admin.php:529 +msgid "OpenID support" +msgstr "Supporto OpenID" + +#: ../../mod/admin.php:529 +msgid "OpenID support for registration and logins." +msgstr "Supporta OpenID per la registrazione e il login" + +#: ../../mod/admin.php:530 +msgid "Fullname check" +msgstr "Controllo nome completo" + +#: ../../mod/admin.php:530 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam" + +#: ../../mod/admin.php:531 +msgid "UTF-8 Regular expressions" +msgstr "Espressioni regolari UTF-8" + +#: ../../mod/admin.php:531 +msgid "Use PHP UTF8 regular expressions" +msgstr "Usa le espressioni regolari PHP in UTF8" + +#: ../../mod/admin.php:532 +msgid "Show Community Page" +msgstr "Mostra pagina Comunità" + +#: ../../mod/admin.php:532 +msgid "" +"Display a Community page showing all recent public postings on this site." +msgstr "Mostra una pagina Comunità con tutti i recenti messaggi pubblici su questo sito." + +#: ../../mod/admin.php:533 +msgid "Enable OStatus support" +msgstr "Abilita supporto OStatus" + +#: ../../mod/admin.php:533 +msgid "" +"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Fornisce compatibiltà OStatuts (identi.ca, status.net, etc.). Tutte le comunicazioni in OStatus sono pubbliche, per cui avvisi di provacy verranno occasionalmente mostrati." + +#: ../../mod/admin.php:534 +msgid "OStatus conversation completion interval" +msgstr "" + +#: ../../mod/admin.php:534 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "" + +#: ../../mod/admin.php:535 +msgid "Enable Diaspora support" +msgstr "Abilita il supporto a Diaspora" + +#: ../../mod/admin.php:535 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Fornisce compatibilità con il network Diaspora." + +#: ../../mod/admin.php:536 +msgid "Only allow Friendica contacts" +msgstr "Permetti solo contatti Friendica" + +#: ../../mod/admin.php:536 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati." + +#: ../../mod/admin.php:537 +msgid "Verify SSL" +msgstr "Verifica SSL" + +#: ../../mod/admin.php:537 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati." + +#: ../../mod/admin.php:538 +msgid "Proxy user" +msgstr "Utente Proxy" + +#: ../../mod/admin.php:539 +msgid "Proxy URL" +msgstr "URL Proxy" + +#: ../../mod/admin.php:540 +msgid "Network timeout" +msgstr "Timeout rete" + +#: ../../mod/admin.php:540 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)." + +#: ../../mod/admin.php:541 +msgid "Delivery interval" +msgstr "Intervallo di invio" + +#: ../../mod/admin.php:541 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Ritarda il processo di invio in background di n secondi per ridurre il carico di sistema. Raccomandato: 4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati." + +#: ../../mod/admin.php:542 +msgid "Poll interval" +msgstr "Intervallo di poll" + +#: ../../mod/admin.php:542 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio." + +#: ../../mod/admin.php:543 +msgid "Maximum Load Average" +msgstr "Massimo carico medio" + +#: ../../mod/admin.php:543 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50." + +#: ../../mod/admin.php:545 +msgid "Use MySQL full text engine" +msgstr "Usa il motore MySQL full text" + +#: ../../mod/admin.php:545 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri." + +#: ../../mod/admin.php:546 +msgid "Path to item cache" +msgstr "Percorso cache elementi" + +#: ../../mod/admin.php:547 +msgid "Cache duration in seconds" +msgstr "Durata della cache in secondi" + +#: ../../mod/admin.php:547 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day)." +msgstr "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno)." + +#: ../../mod/admin.php:548 +msgid "Path for lock file" +msgstr "Percorso al file di lock" + +#: ../../mod/admin.php:549 +msgid "Temp path" +msgstr "Percorso file temporanei" + +#: ../../mod/admin.php:550 +msgid "Base path to installation" +msgstr "Percorso base all'installazione" + +#: ../../mod/admin.php:567 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato segnato come di successo" + +#: ../../mod/admin.php:577 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Fallita l'esecuzione di %s. Controlla i log di sistema." + +#: ../../mod/admin.php:580 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è stato applicato con successo" + +#: ../../mod/admin.php:584 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine." + +#: ../../mod/admin.php:587 +#, php-format +msgid "Update function %s could not be found." +msgstr "La funzione di aggiornamento %s non puo' essere trovata." + +#: ../../mod/admin.php:602 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." + +#: ../../mod/admin.php:606 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti" + +#: ../../mod/admin.php:607 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato." + +#: ../../mod/admin.php:608 +msgid "Mark success (if update was manually applied)" +msgstr "Segna completato (se l'update è stato applicato manualmente)" + +#: ../../mod/admin.php:609 +msgid "Attempt to execute this update step automatically" +msgstr "Cerco di eseguire questo aggiornamento in automatico" + +#: ../../mod/admin.php:634 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s utente bloccato/sbloccato" +msgstr[1] "%s utenti bloccati/sbloccati" + +#: ../../mod/admin.php:641 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utente cancellato" +msgstr[1] "%s utenti cancellati" + +#: ../../mod/admin.php:680 +#, php-format +msgid "User '%s' deleted" +msgstr "Utente '%s' cancellato" + +#: ../../mod/admin.php:688 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utente '%s' sbloccato" + +#: ../../mod/admin.php:688 +#, php-format +msgid "User '%s' blocked" +msgstr "Utente '%s' bloccato" + +#: ../../mod/admin.php:764 +msgid "select all" +msgstr "seleziona tutti" + +#: ../../mod/admin.php:765 +msgid "User registrations waiting for confirm" +msgstr "Richieste di registrazione in attesa di conferma" + +#: ../../mod/admin.php:766 +msgid "Request date" +msgstr "Data richiesta" + +#: ../../mod/admin.php:766 ../../mod/admin.php:777 ../../mod/settings.php:586 +#: ../../mod/settings.php:612 ../../mod/crepair.php:148 +msgid "Name" +msgstr "Nome" + +#: ../../mod/admin.php:767 +msgid "No registrations." +msgstr "Nessuna registrazione." + +#: ../../mod/admin.php:768 ../../mod/notifications.php:161 +#: ../../mod/notifications.php:208 +msgid "Approve" +msgstr "Approva" + +#: ../../mod/admin.php:769 +msgid "Deny" +msgstr "Nega" + +#: ../../mod/admin.php:771 ../../mod/contacts.php:353 +#: ../../mod/contacts.php:412 +msgid "Block" +msgstr "Blocca" + +#: ../../mod/admin.php:772 ../../mod/contacts.php:353 +#: ../../mod/contacts.php:412 +msgid "Unblock" +msgstr "Sblocca" + +#: ../../mod/admin.php:773 +msgid "Site admin" +msgstr "Amministrazione sito" + +#: ../../mod/admin.php:774 +msgid "Account expired" +msgstr "Account scaduto" + +#: ../../mod/admin.php:777 +msgid "Register date" +msgstr "Data registrazione" + +#: ../../mod/admin.php:777 +msgid "Last login" +msgstr "Ultimo accesso" + +#: ../../mod/admin.php:777 +msgid "Last item" +msgstr "Ultimo elemento" + +#: ../../mod/admin.php:777 +msgid "Account" +msgstr "Account" + +#: ../../mod/admin.php:779 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" + +#: ../../mod/admin.php:780 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?" + +#: ../../mod/admin.php:821 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s disabilitato." + +#: ../../mod/admin.php:825 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s abilitato." + +#: ../../mod/admin.php:835 ../../mod/admin.php:1038 +msgid "Disable" +msgstr "Disabilita" + +#: ../../mod/admin.php:837 ../../mod/admin.php:1040 +msgid "Enable" +msgstr "Abilita" + +#: ../../mod/admin.php:860 ../../mod/admin.php:1068 +msgid "Toggle" +msgstr "Inverti" + +#: ../../mod/admin.php:868 ../../mod/admin.php:1078 +msgid "Author: " +msgstr "Autore: " + +#: ../../mod/admin.php:869 ../../mod/admin.php:1079 +msgid "Maintainer: " +msgstr "Manutentore: " + +#: ../../mod/admin.php:998 +msgid "No themes found." +msgstr "Nessun tema trovato." + +#: ../../mod/admin.php:1060 +msgid "Screenshot" +msgstr "Anteprima" + +#: ../../mod/admin.php:1106 +msgid "[Experimental]" +msgstr "[Sperimentale]" + +#: ../../mod/admin.php:1107 +msgid "[Unsupported]" +msgstr "[Non supportato]" + +#: ../../mod/admin.php:1134 +msgid "Log settings updated." +msgstr "Impostazioni Log aggiornate." + +#: ../../mod/admin.php:1190 +msgid "Clear" +msgstr "Pulisci" + +#: ../../mod/admin.php:1196 +msgid "Enable Debugging" +msgstr "Abilita Debugging" + +#: ../../mod/admin.php:1197 +msgid "Log file" +msgstr "File di Log" + +#: ../../mod/admin.php:1197 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica." + +#: ../../mod/admin.php:1198 +msgid "Log level" +msgstr "Livello di Log" + +#: ../../mod/admin.php:1247 ../../mod/contacts.php:409 +msgid "Update now" +msgstr "Aggiorna adesso" + +#: ../../mod/admin.php:1248 +msgid "Close" +msgstr "Chiudi" + +#: ../../mod/admin.php:1254 +msgid "FTP Host" +msgstr "Indirizzo FTP" + +#: ../../mod/admin.php:1255 +msgid "FTP Path" +msgstr "Percorso FTP" + +#: ../../mod/admin.php:1256 +msgid "FTP User" +msgstr "Utente FTP" + +#: ../../mod/admin.php:1257 +msgid "FTP Password" +msgstr "Pasword FTP" + +#: ../../mod/item.php:108 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." + +#: ../../mod/item.php:310 +msgid "Empty post discarded." +msgstr "Messaggio vuoto scartato." + +#: ../../mod/item.php:872 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Messaggio non salvato." + +#: ../../mod/item.php:897 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica." + +#: ../../mod/item.php:899 +#, php-format +msgid "You may visit them online at %s" +msgstr "Puoi visitarli online su %s" + +#: ../../mod/item.php:900 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi." + +#: ../../mod/item.php:904 +#, php-format +msgid "%s posted an update." +msgstr "%s ha inviato un aggiornamento." + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Amici di %s" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Nessun amico da visualizzare." + +#: ../../mod/search.php:21 ../../mod/network.php:224 +msgid "Remove term" +msgstr "Rimuovi termine" + +#: ../../mod/search.php:180 ../../mod/search.php:206 +#: ../../mod/community.php:61 ../../mod/community.php:89 +msgid "No results." +msgstr "Nessun risultato." + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizza la connessione dell'applicazione" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Effettua il login per continuare." + +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?" + +#: ../../mod/register.php:91 ../../mod/regmod.php:54 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" + +#: ../../mod/register.php:99 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni." + +#: ../../mod/register.php:103 +msgid "Failed to send email message. Here is the message that failed." +msgstr "Errore nell'invio del messaggio email. Questo è il messaggio non inviato." + +#: ../../mod/register.php:108 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere elaborata." + +#: ../../mod/register.php:145 +#, php-format +msgid "Registration request at %s" +msgstr "Richiesta di registrazione su %s" + +#: ../../mod/register.php:154 +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:192 ../../mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." + +#: ../../mod/register.php:220 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'." + +#: ../../mod/register.php:221 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera." + +#: ../../mod/register.php:222 +msgid "Your OpenID (optional): " +msgstr "Il tuo OpenID (opzionale): " + +#: ../../mod/register.php:236 +msgid "Include your profile in member directory?" +msgstr "Includi il tuo profilo nell'elenco pubblico?" + +#: ../../mod/register.php:257 +msgid "Membership on this site is by invitation only." +msgstr "La registrazione su questo sito è solo su invito." + +#: ../../mod/register.php:258 +msgid "Your invitation ID: " +msgstr "L'ID del tuo invito:" + +#: ../../mod/register.php:269 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Il tuo nome completo (es. Mario Rossi): " + +#: ../../mod/register.php:270 +msgid "Your Email Address: " +msgstr "Il tuo indirizzo email: " + +#: ../../mod/register.php:271 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@$sitename'." + +#: ../../mod/register.php:272 +msgid "Choose a nickname: " +msgstr "Scegli un nome utente: " + +#: ../../mod/regmod.php:63 +msgid "Account approved." +msgstr "Account approvato." + +#: ../../mod/regmod.php:100 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" + +#: ../../mod/regmod.php:112 +msgid "Please login." +msgstr "Accedi." + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Oggetto non disponibile." + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Oggetto non trovato." + +#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 +msgid "Remove My Account" +msgstr "Rimuovi il mio account" + +#: ../../mod/removeme.php:46 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." + +#: ../../mod/removeme.php:47 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" + +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Testo sorgente (bbcode):" + +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:" + +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Sorgente:" + +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (HTML grezzo):" + +#: ../../mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html:" + +#: ../../mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: ../../mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " + +#: ../../mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Sorgente (formato Diaspora):" + +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Amici in comune" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Nessun contatto in comune." + +#: ../../mod/apps.php:7 +msgid "You must be logged in to use addons. " +msgstr "Devi aver effettuato il login per usare gli addons." + +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Applicazioni" + +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Nessuna applicazione installata." + +#: ../../mod/contacts.php:85 ../../mod/contacts.php:165 +msgid "Could not access contact record." +msgstr "Non è possibile accedere al contatto." + +#: ../../mod/contacts.php:99 +msgid "Could not locate selected profile." +msgstr "Non riesco a trovare il profilo selezionato." + +#: ../../mod/contacts.php:122 +msgid "Contact updated." +msgstr "Contatto aggiornato." + +#: ../../mod/contacts.php:124 ../../mod/dfrn_request.php:571 +msgid "Failed to update contact record." +msgstr "Errore nell'aggiornamento del contatto." + +#: ../../mod/contacts.php:187 +msgid "Contact has been blocked" +msgstr "Il contatto è stato bloccato" + +#: ../../mod/contacts.php:187 +msgid "Contact has been unblocked" +msgstr "Il contatto è stato sbloccato" + +#: ../../mod/contacts.php:201 +msgid "Contact has been ignored" +msgstr "Il contatto è ignorato" + +#: ../../mod/contacts.php:201 +msgid "Contact has been unignored" +msgstr "Il contatto non è più ignorato" + +#: ../../mod/contacts.php:220 +msgid "Contact has been archived" +msgstr "Il contatto è stato archiviato" + +#: ../../mod/contacts.php:220 +msgid "Contact has been unarchived" +msgstr "Il contatto è stato dearchiviato" + +#: ../../mod/contacts.php:244 +msgid "Do you really want to delete this contact?" +msgstr "Vuoi veramente cancellare questo contatto?" + +#: ../../mod/contacts.php:263 +msgid "Contact has been removed." +msgstr "Il contatto è stato rimosso." + +#: ../../mod/contacts.php:301 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Sei amico reciproco con %s" + +#: ../../mod/contacts.php:305 +#, php-format +msgid "You are sharing with %s" +msgstr "Stai condividendo con %s" + +#: ../../mod/contacts.php:310 +#, php-format +msgid "%s is sharing with you" +msgstr "%s sta condividendo con te" + +#: ../../mod/contacts.php:327 +msgid "Private communications are not available for this contact." +msgstr "Le comunicazioni private non sono disponibili per questo contatto." + +#: ../../mod/contacts.php:334 +msgid "(Update was successful)" +msgstr "(L'aggiornamento è stato completato)" + +#: ../../mod/contacts.php:334 +msgid "(Update was not successful)" +msgstr "(L'aggiornamento non è stato completato)" + +#: ../../mod/contacts.php:336 +msgid "Suggest friends" +msgstr "Suggerisci amici" + +#: ../../mod/contacts.php:340 +#, php-format +msgid "Network type: %s" +msgstr "Tipo di rete: %s" + +#: ../../mod/contacts.php:348 +msgid "View all contacts" +msgstr "Vedi tutti i contatti" + +#: ../../mod/contacts.php:356 +msgid "Toggle Blocked status" +msgstr "Inverti stato \"Blocca\"" + +#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 +msgid "Unignore" +msgstr "Non ignorare" + +#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:210 +msgid "Ignore" +msgstr "Ignora" + +#: ../../mod/contacts.php:362 +msgid "Toggle Ignored status" +msgstr "Inverti stato \"Ignora\"" + +#: ../../mod/contacts.php:366 +msgid "Unarchive" +msgstr "Dearchivia" + +#: ../../mod/contacts.php:366 +msgid "Archive" +msgstr "Archivia" + +#: ../../mod/contacts.php:369 +msgid "Toggle Archive status" +msgstr "Inverti stato \"Archiviato\"" + +#: ../../mod/contacts.php:372 +msgid "Repair" +msgstr "Ripara" + +#: ../../mod/contacts.php:375 +msgid "Advanced Contact Settings" +msgstr "Impostazioni avanzate Contatto" + +#: ../../mod/contacts.php:381 +msgid "Communications lost with this contact!" +msgstr "Comunicazione con questo contatto persa!" + +#: ../../mod/contacts.php:384 +msgid "Contact Editor" +msgstr "Editor dei Contatti" + +#: ../../mod/contacts.php:387 +msgid "Profile Visibility" +msgstr "Visibilità del profilo" + +#: ../../mod/contacts.php:388 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro." + +#: ../../mod/contacts.php:389 +msgid "Contact Information / Notes" +msgstr "Informazioni / Note sul contatto" + +#: ../../mod/contacts.php:390 +msgid "Edit contact notes" +msgstr "Modifica note contatto" + +#: ../../mod/contacts.php:396 +msgid "Block/Unblock contact" +msgstr "Blocca/Sblocca contatto" + +#: ../../mod/contacts.php:397 +msgid "Ignore contact" +msgstr "Ignora il contatto" + +#: ../../mod/contacts.php:398 +msgid "Repair URL settings" +msgstr "Impostazioni riparazione URL" + +#: ../../mod/contacts.php:399 +msgid "View conversations" +msgstr "Vedi conversazioni" + +#: ../../mod/contacts.php:401 +msgid "Delete contact" +msgstr "Rimuovi contatto" + +#: ../../mod/contacts.php:405 +msgid "Last update:" +msgstr "Ultimo aggiornamento:" + +#: ../../mod/contacts.php:407 +msgid "Update public posts" +msgstr "Aggiorna messaggi pubblici" + +#: ../../mod/contacts.php:416 +msgid "Currently blocked" +msgstr "Bloccato" + +#: ../../mod/contacts.php:417 +msgid "Currently ignored" +msgstr "Ignorato" + +#: ../../mod/contacts.php:418 +msgid "Currently archived" +msgstr "Al momento archiviato" + +#: ../../mod/contacts.php:419 ../../mod/notifications.php:157 +#: ../../mod/notifications.php:204 +msgid "Hide this contact from others" +msgstr "Nascondi questo contatto agli altri" + +#: ../../mod/contacts.php:419 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Risposte ai tuoi post pubblici possono essere comunque visibili" + +#: ../../mod/contacts.php:470 +msgid "Suggestions" +msgstr "Suggerimenti" + +#: ../../mod/contacts.php:473 +msgid "Suggest potential friends" +msgstr "Suggerisci potenziali amici" + +#: ../../mod/contacts.php:476 ../../mod/group.php:194 +msgid "All Contacts" +msgstr "Tutti i contatti" + +#: ../../mod/contacts.php:479 +msgid "Show all contacts" +msgstr "Mostra tutti i contatti" + +#: ../../mod/contacts.php:482 +msgid "Unblocked" +msgstr "Sbloccato" + +#: ../../mod/contacts.php:485 +msgid "Only show unblocked contacts" +msgstr "Mostra solo contatti non bloccati" + +#: ../../mod/contacts.php:489 +msgid "Blocked" +msgstr "Bloccato" + +#: ../../mod/contacts.php:492 +msgid "Only show blocked contacts" +msgstr "Mostra solo contatti bloccati" + +#: ../../mod/contacts.php:496 +msgid "Ignored" +msgstr "Ignorato" + +#: ../../mod/contacts.php:499 +msgid "Only show ignored contacts" +msgstr "Mostra solo contatti ignorati" + +#: ../../mod/contacts.php:503 +msgid "Archived" +msgstr "Achiviato" + +#: ../../mod/contacts.php:506 +msgid "Only show archived contacts" +msgstr "Mostra solo contatti archiviati" + +#: ../../mod/contacts.php:510 +msgid "Hidden" +msgstr "Nascosto" + +#: ../../mod/contacts.php:513 +msgid "Only show hidden contacts" +msgstr "Mostra solo contatti nascosti" + +#: ../../mod/contacts.php:561 +msgid "Mutual Friendship" +msgstr "Amicizia reciproca" + +#: ../../mod/contacts.php:565 +msgid "is a fan of yours" +msgstr "è un tuo fan" + +#: ../../mod/contacts.php:569 +msgid "you are a fan of" +msgstr "sei un fan di" + +#: ../../mod/contacts.php:611 +msgid "Search your contacts" +msgstr "Cerca nei tuoi contatti" + +#: ../../mod/contacts.php:612 ../../mod/directory.php:59 +msgid "Finding: " +msgstr "Ricerca: " + +#: ../../mod/settings.php:23 ../../mod/photos.php:79 +msgid "everybody" +msgstr "tutti" + +#: ../../mod/settings.php:35 +msgid "Additional features" +msgstr "Funzionalità aggiuntive" + +#: ../../mod/settings.php:40 ../../mod/uexport.php:14 +msgid "Display settings" +msgstr "Impostazioni grafiche" + +#: ../../mod/settings.php:46 ../../mod/uexport.php:20 +msgid "Connector settings" +msgstr "Impostazioni connettori" + +#: ../../mod/settings.php:51 ../../mod/uexport.php:25 +msgid "Plugin settings" +msgstr "Impostazioni plugin" + +#: ../../mod/settings.php:56 ../../mod/uexport.php:30 +msgid "Connected apps" +msgstr "Applicazioni collegate" + +#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80 +msgid "Export personal data" +msgstr "Esporta dati personali" + +#: ../../mod/settings.php:66 ../../mod/uexport.php:40 +msgid "Remove account" +msgstr "Rimuovi account" + +#: ../../mod/settings.php:118 +msgid "Missing some important data!" +msgstr "Mancano alcuni dati importanti!" + +#: ../../mod/settings.php:121 ../../mod/settings.php:610 +msgid "Update" +msgstr "Aggiorna" + +#: ../../mod/settings.php:227 +msgid "Failed to connect with email account using the settings provided." +msgstr "Impossibile collegarsi all'account email con i parametri forniti." + +#: ../../mod/settings.php:232 +msgid "Email settings updated." +msgstr "Impostazioni e-mail aggiornate." + +#: ../../mod/settings.php:247 +msgid "Features updated" +msgstr "Funzionalità aggiornate" + +#: ../../mod/settings.php:312 +msgid "Passwords do not match. Password unchanged." +msgstr "Le password non corrispondono. Password non cambiata." + +#: ../../mod/settings.php:317 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Le password non possono essere vuote. Password non cambiata." + +#: ../../mod/settings.php:325 +msgid "Wrong password." +msgstr "Password sbagliata." + +#: ../../mod/settings.php:336 +msgid "Password changed." +msgstr "Password cambiata." + +#: ../../mod/settings.php:338 +msgid "Password update failed. Please try again." +msgstr "Aggiornamento password fallito. Prova ancora." + +#: ../../mod/settings.php:403 +msgid " Please use a shorter name." +msgstr " Usa un nome più corto." + +#: ../../mod/settings.php:405 +msgid " Name too short." +msgstr " Nome troppo corto." + +#: ../../mod/settings.php:414 +msgid "Wrong Password" +msgstr "Password Sbagliata" + +#: ../../mod/settings.php:419 +msgid " Not valid email." +msgstr " Email non valida." + +#: ../../mod/settings.php:422 +msgid " Cannot change to that email." +msgstr "Non puoi usare quella email." + +#: ../../mod/settings.php:476 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito." + +#: ../../mod/settings.php:480 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito." + +#: ../../mod/settings.php:510 +msgid "Settings updated." +msgstr "Impostazioni aggiornate." + +#: ../../mod/settings.php:583 ../../mod/settings.php:609 +#: ../../mod/settings.php:645 +msgid "Add application" +msgstr "Aggiungi applicazione" + +#: ../../mod/settings.php:587 ../../mod/settings.php:613 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../mod/settings.php:588 ../../mod/settings.php:614 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: ../../mod/settings.php:589 ../../mod/settings.php:615 +msgid "Redirect" +msgstr "Redirect" + +#: ../../mod/settings.php:590 ../../mod/settings.php:616 +msgid "Icon url" +msgstr "Url icona" + +#: ../../mod/settings.php:601 +msgid "You can't edit this application." +msgstr "Non puoi modificare questa applicazione." + +#: ../../mod/settings.php:644 +msgid "Connected Apps" +msgstr "Applicazioni Collegate" + +#: ../../mod/settings.php:646 ../../mod/editpost.php:109 +#: ../../mod/content.php:751 ../../object/Item.php:117 +msgid "Edit" +msgstr "Modifica" + +#: ../../mod/settings.php:648 +msgid "Client key starts with" +msgstr "Chiave del client inizia con" + +#: ../../mod/settings.php:649 +msgid "No name" +msgstr "Nessun nome" + +#: ../../mod/settings.php:650 +msgid "Remove authorization" +msgstr "Rimuovi l'autorizzazione" + +#: ../../mod/settings.php:662 +msgid "No Plugin settings configured" +msgstr "Nessun plugin ha impostazioni modificabili" + +#: ../../mod/settings.php:670 +msgid "Plugin Settings" +msgstr "Impostazioni plugin" + +#: ../../mod/settings.php:684 +msgid "Off" +msgstr "Spento" + +#: ../../mod/settings.php:684 +msgid "On" +msgstr "Acceso" + +#: ../../mod/settings.php:692 +msgid "Additional Features" +msgstr "Funzionalità aggiuntive" + +#: ../../mod/settings.php:705 ../../mod/settings.php:706 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Il supporto integrato per la connettività con %s è %s" + +#: ../../mod/settings.php:705 ../../mod/settings.php:706 +msgid "enabled" +msgstr "abilitato" + +#: ../../mod/settings.php:705 ../../mod/settings.php:706 +msgid "disabled" +msgstr "disabilitato" + +#: ../../mod/settings.php:706 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../mod/settings.php:738 +msgid "Email access is disabled on this site." +msgstr "L'accesso email è disabilitato su questo sito." + +#: ../../mod/settings.php:745 +msgid "Connector Settings" +msgstr "Impostazioni Connettore" + +#: ../../mod/settings.php:750 +msgid "Email/Mailbox Setup" +msgstr "Impostazioni email" + +#: ../../mod/settings.php:751 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)" + +#: ../../mod/settings.php:752 +msgid "Last successful email check:" +msgstr "Ultimo controllo email eseguito con successo:" + +#: ../../mod/settings.php:754 +msgid "IMAP server name:" +msgstr "Nome server IMAP:" + +#: ../../mod/settings.php:755 +msgid "IMAP port:" +msgstr "Porta IMAP:" + +#: ../../mod/settings.php:756 +msgid "Security:" +msgstr "Sicurezza:" + +#: ../../mod/settings.php:756 ../../mod/settings.php:761 +msgid "None" +msgstr "Nessuna" + +#: ../../mod/settings.php:757 +msgid "Email login name:" +msgstr "Nome utente email:" + +#: ../../mod/settings.php:758 +msgid "Email password:" +msgstr "Password email:" + +#: ../../mod/settings.php:759 +msgid "Reply-to address:" +msgstr "Indirizzo di risposta:" + +#: ../../mod/settings.php:760 +msgid "Send public posts to all email contacts:" +msgstr "Invia i messaggi pubblici ai contatti email:" + +#: ../../mod/settings.php:761 +msgid "Action after import:" +msgstr "Azione post importazione:" + +#: ../../mod/settings.php:761 +msgid "Mark as seen" +msgstr "Segna come letto" + +#: ../../mod/settings.php:761 +msgid "Move to folder" +msgstr "Sposta nella cartella" + +#: ../../mod/settings.php:762 +msgid "Move to folder:" +msgstr "Sposta nella cartella:" + +#: ../../mod/settings.php:835 +msgid "Display Settings" +msgstr "Impostazioni Grafiche" + +#: ../../mod/settings.php:841 ../../mod/settings.php:853 +msgid "Display Theme:" +msgstr "Tema:" + +#: ../../mod/settings.php:842 +msgid "Mobile Theme:" +msgstr "Tema mobile:" + +#: ../../mod/settings.php:843 +msgid "Update browser every xx seconds" +msgstr "Aggiorna il browser ogni x secondi" + +#: ../../mod/settings.php:843 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimo 10 secondi, nessun limite massimo" + +#: ../../mod/settings.php:844 +msgid "Number of items to display per page:" +msgstr "Numero di elementi da mostrare per pagina:" + +#: ../../mod/settings.php:844 ../../mod/settings.php:845 +msgid "Maximum of 100 items" +msgstr "Massimo 100 voci" + +#: ../../mod/settings.php:845 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: ../../mod/settings.php:846 +msgid "Don't show emoticons" +msgstr "Non mostrare le emoticons" + +#: ../../mod/settings.php:922 +msgid "Normal Account Page" +msgstr "Pagina Account Normale" + +#: ../../mod/settings.php:923 +msgid "This account is a normal personal profile" +msgstr "Questo account è un normale profilo personale" + +#: ../../mod/settings.php:926 +msgid "Soapbox Page" +msgstr "Pagina Sandbox" + +#: ../../mod/settings.php:927 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca" + +#: ../../mod/settings.php:930 +msgid "Community Forum/Celebrity Account" +msgstr "Account Celebrità/Forum comunitario" + +#: ../../mod/settings.php:931 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca" + +#: ../../mod/settings.php:934 +msgid "Automatic Friend Page" +msgstr "Pagina con amicizia automatica" + +#: ../../mod/settings.php:935 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" + +#: ../../mod/settings.php:938 +msgid "Private Forum [Experimental]" +msgstr "Forum privato [sperimentale]" + +#: ../../mod/settings.php:939 +msgid "Private forum - approved members only" +msgstr "Forum privato - solo membri approvati" + +#: ../../mod/settings.php:951 +msgid "OpenID:" +msgstr "OpenID:" + +#: ../../mod/settings.php:951 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" + +#: ../../mod/settings.php:961 +msgid "Publish your default profile in your local site directory?" +msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" + +#: ../../mod/settings.php:967 +msgid "Publish your default profile in the global social directory?" +msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" + +#: ../../mod/settings.php:975 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito" + +#: ../../mod/settings.php:979 +msgid "Hide your profile details from unknown viewers?" +msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" + +#: ../../mod/settings.php:984 +msgid "Allow friends to post to your profile page?" +msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" + +#: ../../mod/settings.php:990 +msgid "Allow friends to tag your posts?" +msgstr "Permetti agli amici di taggare i tuoi messaggi?" + +#: ../../mod/settings.php:996 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Ci permetti di suggerirti come potenziale amico ai nuovi membri?" + +#: ../../mod/settings.php:1002 +msgid "Permit unknown people to send you private mail?" +msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" + +#: ../../mod/settings.php:1010 +msgid "Profile is not published." +msgstr "Il profilo non è pubblicato." + +#: ../../mod/settings.php:1013 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "o" + +#: ../../mod/settings.php:1018 +msgid "Your Identity Address is" +msgstr "L'indirizzo della tua identità è" + +#: ../../mod/settings.php:1029 +msgid "Automatically expire posts after this many days:" +msgstr "Fai scadere i post automaticamente dopo x giorni:" + +#: ../../mod/settings.php:1029 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." + +#: ../../mod/settings.php:1030 +msgid "Advanced expiration settings" +msgstr "Impostazioni avanzate di scandenza" + +#: ../../mod/settings.php:1031 +msgid "Advanced Expiration" +msgstr "Scadenza avanzata" + +#: ../../mod/settings.php:1032 +msgid "Expire posts:" +msgstr "Fai scadere i post:" + +#: ../../mod/settings.php:1033 +msgid "Expire personal notes:" +msgstr "Fai scadere le Note personali:" + +#: ../../mod/settings.php:1034 +msgid "Expire starred posts:" +msgstr "Fai scadere i post Speciali:" + +#: ../../mod/settings.php:1035 +msgid "Expire photos:" +msgstr "Fai scadere le foto:" + +#: ../../mod/settings.php:1036 +msgid "Only expire posts by others:" +msgstr "Fai scadere solo i post degli altri:" + +#: ../../mod/settings.php:1062 +msgid "Account Settings" +msgstr "Impostazioni account" + +#: ../../mod/settings.php:1070 +msgid "Password Settings" +msgstr "Impostazioni password" + +#: ../../mod/settings.php:1071 +msgid "New Password:" +msgstr "Nuova password:" + +#: ../../mod/settings.php:1072 +msgid "Confirm:" +msgstr "Conferma:" + +#: ../../mod/settings.php:1072 +msgid "Leave password fields blank unless changing" +msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" + +#: ../../mod/settings.php:1073 +msgid "Current Password:" +msgstr "Password Attuale:" + +#: ../../mod/settings.php:1073 ../../mod/settings.php:1074 +msgid "Your current password to confirm the changes" +msgstr "" + +#: ../../mod/settings.php:1074 +msgid "Password:" +msgstr "Password:" + +#: ../../mod/settings.php:1078 +msgid "Basic Settings" +msgstr "Impostazioni base" + +#: ../../mod/settings.php:1080 +msgid "Email Address:" +msgstr "Indirizzo Email:" + +#: ../../mod/settings.php:1081 +msgid "Your Timezone:" +msgstr "Il tuo fuso orario:" + +#: ../../mod/settings.php:1082 +msgid "Default Post Location:" +msgstr "Località predefinita:" + +#: ../../mod/settings.php:1083 +msgid "Use Browser Location:" +msgstr "Usa la località rilevata dal browser:" + +#: ../../mod/settings.php:1086 +msgid "Security and Privacy Settings" +msgstr "Impostazioni di sicurezza e privacy" + +#: ../../mod/settings.php:1088 +msgid "Maximum Friend Requests/Day:" +msgstr "Numero massimo di richieste di amicizia al giorno:" + +#: ../../mod/settings.php:1088 ../../mod/settings.php:1118 +msgid "(to prevent spam abuse)" +msgstr "(per prevenire lo spam)" + +#: ../../mod/settings.php:1089 +msgid "Default Post Permissions" +msgstr "Permessi predefiniti per i messaggi" + +#: ../../mod/settings.php:1090 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" + +#: ../../mod/settings.php:1099 ../../mod/photos.php:1140 +#: ../../mod/photos.php:1506 +msgid "Show to Groups" +msgstr "Mostra ai gruppi" + +#: ../../mod/settings.php:1100 ../../mod/photos.php:1141 +#: ../../mod/photos.php:1507 +msgid "Show to Contacts" +msgstr "Mostra ai contatti" + +#: ../../mod/settings.php:1101 +msgid "Default Private Post" +msgstr "Default Post Privato" + +#: ../../mod/settings.php:1102 +msgid "Default Public Post" +msgstr "Default Post Pubblico" + +#: ../../mod/settings.php:1106 +msgid "Default Permissions for New Posts" +msgstr "Permessi predefiniti per i nuovi post" + +#: ../../mod/settings.php:1118 +msgid "Maximum private messages per day from unknown people:" +msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" + +#: ../../mod/settings.php:1121 +msgid "Notification Settings" +msgstr "Impostazioni notifiche" + +#: ../../mod/settings.php:1122 +msgid "By default post a status message when:" +msgstr "Invia un messaggio di stato quando:" + +#: ../../mod/settings.php:1123 +msgid "accepting a friend request" +msgstr "accetti una richiesta di amicizia" + +#: ../../mod/settings.php:1124 +msgid "joining a forum/community" +msgstr "ti unisci a un forum/comunità" + +#: ../../mod/settings.php:1125 +msgid "making an interesting profile change" +msgstr "fai un interessante modifica al profilo" + +#: ../../mod/settings.php:1126 +msgid "Send a notification email when:" +msgstr "Invia una mail di notifica quando:" + +#: ../../mod/settings.php:1127 +msgid "You receive an introduction" +msgstr "Ricevi una presentazione" + +#: ../../mod/settings.php:1128 +msgid "Your introductions are confirmed" +msgstr "Le tue presentazioni sono confermate" + +#: ../../mod/settings.php:1129 +msgid "Someone writes on your profile wall" +msgstr "Qualcuno scrive sulla bacheca del tuo profilo" + +#: ../../mod/settings.php:1130 +msgid "Someone writes a followup comment" +msgstr "Qualcuno scrive un commento a un tuo messaggio" + +#: ../../mod/settings.php:1131 +msgid "You receive a private message" +msgstr "Ricevi un messaggio privato" + +#: ../../mod/settings.php:1132 +msgid "You receive a friend suggestion" +msgstr "Hai ricevuto un suggerimento di amicizia" + +#: ../../mod/settings.php:1133 +msgid "You are tagged in a post" +msgstr "Sei stato taggato in un post" + +#: ../../mod/settings.php:1134 +msgid "You are poked/prodded/etc. in a post" +msgstr "Sei 'toccato'/'spronato'/ecc. in un post" + +#: ../../mod/settings.php:1137 +msgid "Advanced Account/Page Type Settings" +msgstr "Impostazioni avanzate Account/Tipo di pagina" + +#: ../../mod/settings.php:1138 +msgid "Change the behaviour of this account for special situations" +msgstr "Modifica il comportamento di questo account in situazioni speciali" + +#: ../../mod/share.php:44 +msgid "link" +msgstr "collegamento" + +#: ../../mod/crepair.php:102 +msgid "Contact settings applied." +msgstr "Contatto modificato." + +#: ../../mod/crepair.php:104 +msgid "Contact update failed." +msgstr "Le modifiche al contatto non sono state salvate." + +#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118 +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Contatto non trovato." + +#: ../../mod/crepair.php:135 +msgid "Repair Contact Settings" +msgstr "Ripara il contatto" + +#: ../../mod/crepair.php:137 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più" + +#: ../../mod/crepair.php:138 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina." + +#: ../../mod/crepair.php:144 +msgid "Return to contact editor" +msgstr "Ritorna alla modifica contatto" + +#: ../../mod/crepair.php:149 +msgid "Account Nickname" +msgstr "Nome utente" + +#: ../../mod/crepair.php:150 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@TagName - al posto del nome utente" + +#: ../../mod/crepair.php:151 +msgid "Account URL" +msgstr "URL dell'utente" + +#: ../../mod/crepair.php:152 +msgid "Friend Request URL" +msgstr "URL Richiesta Amicizia" + +#: ../../mod/crepair.php:153 +msgid "Friend Confirm URL" +msgstr "URL Conferma Amicizia" + +#: ../../mod/crepair.php:154 +msgid "Notification Endpoint URL" +msgstr "URL Notifiche" + +#: ../../mod/crepair.php:155 +msgid "Poll/Feed URL" +msgstr "URL Feed" + +#: ../../mod/crepair.php:156 +msgid "New photo from this URL" +msgstr "Nuova foto da questo URL" + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Nessun potenziale delegato per la pagina è stato trovato." + +#: ../../mod/delegate.php:123 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." + +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Gestori Pagina Esistenti" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Delegati Pagina Esistenti" + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Delegati Potenziali" + +#: ../../mod/delegate.php:130 ../../mod/tagrm.php:93 +msgid "Remove" +msgstr "Rimuovi" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Aggiungi" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Nessun articolo." + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Tocca/Pungola" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "tocca, pungola o fai altre cose a qualcuno" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Destinatario" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi fare al destinatario" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Rendi questo post privato" + +#: ../../mod/dfrn_confirm.php:119 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata." + +#: ../../mod/dfrn_confirm.php:237 +msgid "Response from remote site was not understood." +msgstr "Errore di comunicazione con l'altro sito." + +#: ../../mod/dfrn_confirm.php:246 +msgid "Unexpected response from remote site: " +msgstr "La risposta dell'altro sito non può essere gestita: " + +#: ../../mod/dfrn_confirm.php:254 +msgid "Confirmation completed successfully." +msgstr "Conferma completata con successo." + +#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 +#: ../../mod/dfrn_confirm.php:277 +msgid "Remote site reported: " +msgstr "Il sito remoto riporta: " + +#: ../../mod/dfrn_confirm.php:268 +msgid "Temporary failure. Please wait and try again." +msgstr "Problema temporaneo. Attendi e riprova." + +#: ../../mod/dfrn_confirm.php:275 +msgid "Introduction failed or was revoked." +msgstr "La presentazione ha generato un errore o è stata revocata." + +#: ../../mod/dfrn_confirm.php:420 +msgid "Unable to set contact photo." +msgstr "Impossibile impostare la foto del contatto." + +#: ../../mod/dfrn_confirm.php:562 +#, php-format +msgid "No user record found for '%s' " +msgstr "Nessun utente trovato '%s'" + +#: ../../mod/dfrn_confirm.php:572 +msgid "Our site encryption key is apparently messed up." +msgstr "La nostra chiave di criptazione del sito sembra essere corrotta." + +#: ../../mod/dfrn_confirm.php:583 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo." + +#: ../../mod/dfrn_confirm.php:604 +msgid "Contact record was not found for you on our site." +msgstr "Il contatto non è stato trovato sul nostro sito." + +#: ../../mod/dfrn_confirm.php:618 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "La chiave pubblica del sito non è disponibile per l'URL %s" + +#: ../../mod/dfrn_confirm.php:638 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare." + +#: ../../mod/dfrn_confirm.php:649 +msgid "Unable to set your contact credentials on our system." +msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema." + +#: ../../mod/dfrn_confirm.php:716 +msgid "Unable to update your contact profile details on our system" +msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema" + +#: ../../mod/dfrn_confirm.php:751 +#, php-format +msgid "Connection accepted at %s" +msgstr "Connession accettata su %s" + +#: ../../mod/dfrn_confirm.php:800 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s si è unito a %2$s" + +#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%s dà il benvenuto a %s" + +#: ../../mod/dfrn_request.php:93 +msgid "This introduction has already been accepted." +msgstr "Questa presentazione è già stata accettata." + +#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 +msgid "Profile location is not valid or does not contain profile information." +msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." + +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." + +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 +msgid "Warning: profile location has no profile photo." +msgstr "Attenzione: l'indirizzo del profilo non ha una foto." + +#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato" +msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" + +#: ../../mod/dfrn_request.php:170 +msgid "Introduction complete." +msgstr "Presentazione completa." + +#: ../../mod/dfrn_request.php:209 +msgid "Unrecoverable protocol error." +msgstr "Errore di comunicazione." + +#: ../../mod/dfrn_request.php:237 +msgid "Profile unavailable." +msgstr "Profilo non disponibile." + +#: ../../mod/dfrn_request.php:262 +#, 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:263 +msgid "Spam protection measures have been invoked." +msgstr "Sono state attivate le misure di protezione contro lo spam." + +#: ../../mod/dfrn_request.php:264 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Gli amici sono pregati di riprovare tra 24 ore." + +#: ../../mod/dfrn_request.php:326 +msgid "Invalid locator" +msgstr "Invalid locator" + +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." +msgstr "Indirizzo email non valido." + +#: ../../mod/dfrn_request.php:362 +msgid "This account has not been configured for email. Request failed." +msgstr "Questo account non è stato configurato per l'email. Richiesta fallita." + +#: ../../mod/dfrn_request.php:458 +msgid "Unable to resolve your name at the provided location." +msgstr "Impossibile risolvere il tuo nome nella posizione indicata." + +#: ../../mod/dfrn_request.php:471 +msgid "You have already introduced yourself here." +msgstr "Ti sei già presentato qui." + +#: ../../mod/dfrn_request.php:475 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Pare che tu e %s siate già amici." + +#: ../../mod/dfrn_request.php:496 +msgid "Invalid profile URL." +msgstr "Indirizzo profilo non valido." + +#: ../../mod/dfrn_request.php:592 +msgid "Your introduction has been sent." +msgstr "La tua presentazione è stata inviata." + +#: ../../mod/dfrn_request.php:645 +msgid "Please login to confirm introduction." +msgstr "Accedi per confermare la presentazione." + +#: ../../mod/dfrn_request.php:659 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." + +#: ../../mod/dfrn_request.php:670 +msgid "Hide this contact" +msgstr "Nascondi questo contatto" + +#: ../../mod/dfrn_request.php:673 +#, php-format +msgid "Welcome home %s." +msgstr "Bentornato a casa %s." + +#: ../../mod/dfrn_request.php:674 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Conferma la tua richiesta di connessione con %s." + +#: ../../mod/dfrn_request.php:675 +msgid "Confirm" +msgstr "Conferma" + +#: ../../mod/dfrn_request.php:811 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:" + +#: ../../mod/dfrn_request.php:827 +msgid "Connect as an email follower (Coming soon)" +msgstr "Connetti un email come follower (in arrivo)" + +#: ../../mod/dfrn_request.php:829 +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public" +" Friendica site and join us today." +msgstr "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi" + +#: ../../mod/dfrn_request.php:832 +msgid "Friend/Connection Request" +msgstr "Richieste di amicizia/connessione" + +#: ../../mod/dfrn_request.php:833 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: ../../mod/dfrn_request.php:834 +msgid "Please answer the following:" +msgstr "Rispondi:" + +#: ../../mod/dfrn_request.php:835 +#, php-format +msgid "Does %s know you?" +msgstr "%s ti conosce?" + +#: ../../mod/dfrn_request.php:838 +msgid "Add a personal note:" +msgstr "Aggiungi una nota personale:" + +#: ../../mod/dfrn_request.php:841 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: ../../mod/dfrn_request.php:843 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora." + +#: ../../mod/dfrn_request.php:844 +msgid "Your Identity Address:" +msgstr "L'indirizzo della tua identità:" + +#: ../../mod/dfrn_request.php:847 +msgid "Submit Request" +msgstr "Invia richiesta" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" + +#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518 +msgid "Global Directory" +msgstr "Elenco globale" + +#: ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "Cerca nel sito" + +#: ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "Elenco del sito" + +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "Genere:" + +#: ../../mod/directory.php:187 +msgid "No entries (some entries may be hidden)." +msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." + +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Vuoi veramente cancellare questo suggerimento?" + +#: ../../mod/suggest.php:72 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." + +#: ../../mod/suggest.php:90 +msgid "Ignore/Hide" +msgstr "Ignora / Nascondi" + +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Cerca persone" + +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "Nessun risultato" + +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "Nessun video selezionato" + +#: ../../mod/videos.php:226 ../../mod/photos.php:1025 +msgid "Access to this item is restricted." +msgstr "Questo oggetto non è visibile a tutti." + +#: ../../mod/videos.php:308 ../../mod/photos.php:1784 +msgid "View Album" +msgstr "Sfoglia l'album" + +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "Video Recenti" + +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "Carica Nuovo Video" + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag rimosso" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " + +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Oggetto non trovato" + +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Modifica messaggio" + +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "Titolo e ora di inizio dell'evento sono richiesti." + +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "l j F" + +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "Modifca l'evento" + +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "Crea un nuovo evento" + +#: ../../mod/events.php:372 +msgid "Previous" +msgstr "Precendente" + +#: ../../mod/events.php:373 ../../mod/install.php:207 +msgid "Next" +msgstr "Successivo" + +#: ../../mod/events.php:446 +msgid "hour:minute" +msgstr "ora:minuti" + +#: ../../mod/events.php:456 +msgid "Event details" +msgstr "Dettagli dell'evento" + +#: ../../mod/events.php:457 +#, php-format +msgid "Format is %s %s. Starting date and Title are required." +msgstr "Il formato è %s %s. Data di inizio e Titolo sono richiesti." + +#: ../../mod/events.php:459 +msgid "Event Starts:" +msgstr "L'evento inizia:" + +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" +msgstr "Richiesto" + +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" +msgstr "La data/ora di fine non è definita" + +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "L'evento finisce:" + +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "Visualizza con il fuso orario di chi legge" + +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "Descrizione:" + +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "Titolo:" + +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "Condividi questo evento" + +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "File" + +#: ../../mod/uexport.php:72 +msgid "Export account" +msgstr "Esporta account" + +#: ../../mod/uexport.php:72 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server." + +#: ../../mod/uexport.php:73 +msgid "Export all" +msgstr "Esporta tutto" + +#: ../../mod/uexport.php:73 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" + +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- seleziona -" + +#: ../../mod/uimport.php:64 +msgid "Import" +msgstr "Importa" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Muovi account" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Puoi importare un account da un altro server Friendica." + +#: ../../mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui." + +#: ../../mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora" + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "File account" + +#: ../../mod/uimport.php:70 +msgid "" +"To export your accont, go to \"Settings->Export your porsonal data\" and " +"select \"Export account\"" +msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"" + +#: ../../mod/update_community.php:18 ../../mod/update_display.php:22 +#: ../../mod/update_network.php:22 ../../mod/update_notes.php:41 +#: ../../mod/update_profile.php:41 +msgid "[Embedded content - reload page to view]" +msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Contatto aggiunto" + +#: ../../mod/friendica.php:55 +msgid "This is Friendica, version" +msgstr "Questo è Friendica, versione" + +#: ../../mod/friendica.php:56 +msgid "running at web location" +msgstr "in esecuzione all'indirizzo web" + +#: ../../mod/friendica.php:58 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." + +#: ../../mod/friendica.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Segnalazioni di bug e problemi: visita" + +#: ../../mod/friendica.php:61 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com" + +#: ../../mod/friendica.php:75 +msgid "Installed plugins/addons/apps:" +msgstr "Plugin/addon/applicazioni instalate" + +#: ../../mod/friendica.php:88 +msgid "No installed plugins/addons/apps" +msgstr "Nessun plugin/addons/applicazione installata" + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Suggerimento di amicizia inviato." + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Suggerisci amici" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Suggerisci un amico a %s" + +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Gruppo creato." + +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Impossibile creare il gruppo." + +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." +msgstr "Gruppo non trovato." + +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "Il nome del gruppo è cambiato." + +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Crea un gruppo di amici/contatti." + +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "Nome del gruppo:" + +#: ../../mod/group.php:113 +msgid "Group removed." +msgstr "Gruppo rimosso." + +#: ../../mod/group.php:115 +msgid "Unable to remove group." +msgstr "Impossibile rimuovere il gruppo." + +#: ../../mod/group.php:179 +msgid "Group Editor" msgstr "Modifica gruppo" -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Crea un nuovo gruppo" +#: ../../mod/group.php:192 +msgid "Members" +msgstr "Membri" -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Contatti in nessun gruppo." +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Nessun profilo" -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "tolto dai seguiti" +#: ../../mod/help.php:79 +msgid "Help:" +msgstr "Guida:" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Varie" +#: ../../mod/help.php:90 ../../index.php:231 +msgid "Not Found" +msgstr "Non trovato" -#: ../../include/datetime.php:153 ../../include/datetime.php:285 -msgid "year" -msgstr "anno" +#: ../../mod/help.php:93 ../../index.php:234 +msgid "Page not found." +msgstr "Pagina non trovata." -#: ../../include/datetime.php:158 ../../include/datetime.php:286 -msgid "month" -msgstr "mese" +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "Nessun contatto." -#: ../../include/datetime.php:163 ../../include/datetime.php:288 -msgid "day" -msgstr "giorno" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "mai" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "meno di un secondo fa" - -#: ../../include/datetime.php:285 -msgid "years" -msgstr "anni" - -#: ../../include/datetime.php:286 -msgid "months" -msgstr "mesi" - -#: ../../include/datetime.php:287 -msgid "week" -msgstr "settimana" - -#: ../../include/datetime.php:287 -msgid "weeks" -msgstr "settimane" - -#: ../../include/datetime.php:288 -msgid "days" -msgstr "giorni" - -#: ../../include/datetime.php:289 -msgid "hour" -msgstr "ora" - -#: ../../include/datetime.php:289 -msgid "hours" -msgstr "ore" - -#: ../../include/datetime.php:290 -msgid "minute" -msgstr "minuto" - -#: ../../include/datetime.php:290 -msgid "minutes" -msgstr "minuti" - -#: ../../include/datetime.php:291 -msgid "second" -msgstr "secondo" - -#: ../../include/datetime.php:291 -msgid "seconds" -msgstr "secondi" - -#: ../../include/datetime.php:300 +#: ../../mod/home.php:34 #, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" +msgid "Welcome to %s" +msgstr "Benvenuto su %s" -#: ../../include/network.php:875 -msgid "view full size" -msgstr "vedi a schermo intero" +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accesso negato." + +#: ../../mod/wall_attach.php:69 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Il file supera la dimensione massima di %d" + +#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 +msgid "File upload failed." +msgstr "Caricamento del file non riuscito." + +#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "La dimensione dell'immagine supera il limite di %d" + +#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801 +#: ../../mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Impossibile caricare l'immagine." + +#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828 +#: ../../mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Caricamento immagine fallito." + +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limite totale degli inviti superato." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." + +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Unisiciti a noi su Friendica" + +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito." + +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio fallita." + +#: ../../mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." + +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" + +#: ../../mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network." + +#: ../../mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico." + +#: ../../mod/invite.php:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti." + +#: ../../mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri." + +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "Invia inviti" + +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" + +#: ../../mod/invite.php:134 ../../mod/wallmessage.php:151 +#: ../../mod/message.php:329 ../../mod/message.php:558 +msgid "Your message:" +msgstr "Il tuo messaggio:" + +#: ../../mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore." + +#: ../../mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Sarà necessario fornire questo codice invito: $invite_code" + +#: ../../mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Una volta registrato, connettiti con me dal mio profilo:" + +#: ../../mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com" + +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito." + +#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 +msgid "No recipient selected." +msgstr "Nessun destinatario selezionato." + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Impossibile controllare la tua posizione di origine." + +#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 +msgid "Message could not be sent." +msgstr "Il messaggio non puo' essere inviato." + +#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 +msgid "Message collection failure." +msgstr "Errore recuperando il messaggio." + +#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 +msgid "Message sent." +msgstr "Messaggio inviato." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Nessun destinatario." + +#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" + +#: ../../mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti." + +#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 +#: ../../mod/message.php:553 +msgid "To:" +msgstr "A:" + +#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 +#: ../../mod/message.php:555 +msgid "Subject:" +msgstr "Oggetto:" + +#: ../../mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Conversione Ora" + +#: ../../mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti." + +#: ../../mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "Ora UTC: %s" + +#: ../../mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Fuso orario corrente: %s" + +#: ../../mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Ora locale convertita: %s" + +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Selezionare il tuo fuso orario:" + +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informazioni remote sulla privacy non disponibili." + +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Visibile a:" + +#: ../../mod/lostpass.php:17 +msgid "No valid account found." +msgstr "Nessun account valido trovato." + +#: ../../mod/lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." + +#: ../../mod/lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Richiesta reimpostazione password su %s" + +#: ../../mod/lostpass.php:66 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita." + +#: ../../mod/lostpass.php:84 ../../boot.php:1151 +msgid "Password Reset" +msgstr "Reimpostazione password" + +#: ../../mod/lostpass.php:85 +msgid "Your password has been reset as requested." +msgstr "La tua password è stata reimpostata come richiesto." + +#: ../../mod/lostpass.php:86 +msgid "Your new password is" +msgstr "La tua nuova password è" + +#: ../../mod/lostpass.php:87 +msgid "Save or copy your new password - and then" +msgstr "Salva o copia la tua nuova password, quindi" + +#: ../../mod/lostpass.php:88 +msgid "click here to login" +msgstr "clicca qui per entrare" + +#: ../../mod/lostpass.php:89 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso." + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has been changed at %s" +msgstr "La tua password presso %s è stata cambiata" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" + +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Inserisci il tuo indirizzo email per reimpostare la password." + +#: ../../mod/lostpass.php:124 +msgid "Nickname or Email: " +msgstr "Nome utente o email: " + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Reimposta" + +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Sistema in manutenzione" + +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Gestisci indentità e/o pagine" + +#: ../../mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" + +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Seleziona un'identità da gestire:" + +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Profili corrispondenti" + +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito." + +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "è interessato a:" + +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Impossibile trovare le informazioni del contatto." + +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Vuoi veramente cancellare questo messaggio?" + +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Messaggio eliminato." + +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Conversazione rimossa." + +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Nessun messaggio." + +#: ../../mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "Mittente sconosciuto - %s" + +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Tu e %s" + +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "%s e Tu" + +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Elimina la conversazione" + +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D d M Y - G:i" + +#: ../../mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d messaggio" +msgstr[1] "%d messaggi" + +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Messaggio non disponibile." + +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Elimina il messaggio" + +#: ../../mod/message.php:548 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente." + +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Invia la risposta" + +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Umore" + +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Condividi il tuo umore con i tuoi amici" + +#: ../../mod/network.php:181 +msgid "Search Results For:" +msgstr "Cerca risultati per:" + +#: ../../mod/network.php:397 +msgid "Commented Order" +msgstr "Ordina per commento" + +#: ../../mod/network.php:400 +msgid "Sort by Comment Date" +msgstr "Ordina per data commento" + +#: ../../mod/network.php:403 +msgid "Posted Order" +msgstr "Ordina per invio" + +#: ../../mod/network.php:406 +msgid "Sort by Post Date" +msgstr "Ordina per data messaggio" + +#: ../../mod/network.php:444 ../../mod/notifications.php:88 +msgid "Personal" +msgstr "Personale" + +#: ../../mod/network.php:447 +msgid "Posts that mention or involve you" +msgstr "Messaggi che ti citano o coinvolgono" + +#: ../../mod/network.php:453 +msgid "New" +msgstr "Nuovo" + +#: ../../mod/network.php:456 +msgid "Activity Stream - by date" +msgstr "Activity Stream - per data" + +#: ../../mod/network.php:462 +msgid "Shared Links" +msgstr "Links condivisi" + +#: ../../mod/network.php:465 +msgid "Interesting Links" +msgstr "Link Interessanti" + +#: ../../mod/network.php:471 +msgid "Starred" +msgstr "Preferiti" + +#: ../../mod/network.php:474 +msgid "Favourite Posts" +msgstr "Messaggi preferiti" + +#: ../../mod/network.php:546 +#, php-format +msgid "Warning: This group contains %s member from an insecure network." +msgid_plural "" +"Warning: This group contains %s members from an insecure network." +msgstr[0] "Attenzione: questo gruppo contiene %s membro da un network insicuro." +msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro." + +#: ../../mod/network.php:549 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente." + +#: ../../mod/network.php:596 ../../mod/content.php:119 +msgid "No such group" +msgstr "Nessun gruppo" + +#: ../../mod/network.php:607 ../../mod/content.php:130 +msgid "Group is empty" +msgstr "Il gruppo è vuoto" + +#: ../../mod/network.php:611 ../../mod/content.php:134 +msgid "Group: " +msgstr "Gruppo: " + +#: ../../mod/network.php:621 +msgid "Contact: " +msgstr "Contatto:" + +#: ../../mod/network.php:623 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente." + +#: ../../mod/network.php:628 +msgid "Invalid contact." +msgstr "Contatto non valido." + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." + +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "Scarta" + +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "Sistema" + +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "Mostra richieste ignorate" + +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "Nascondi richieste ignorate" + +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " +msgstr "Tipo di notifica: " + +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "Amico suggerito" + +#: ../../mod/notifications.php:152 +#, php-format +msgid "suggested by %s" +msgstr "sugerito da %s" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" +msgstr "Invia una attività \"è ora amico con\"" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" +msgstr "se applicabile" + +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "Dice di conoscerti: " + +#: ../../mod/notifications.php:181 +msgid "yes" +msgstr "si" + +#: ../../mod/notifications.php:181 +msgid "no" +msgstr "no" + +#: ../../mod/notifications.php:188 +msgid "Approve as: " +msgstr "Approva come: " + +#: ../../mod/notifications.php:189 +msgid "Friend" +msgstr "Amico" + +#: ../../mod/notifications.php:190 +msgid "Sharer" +msgstr "Condivisore" + +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "Fan/Ammiratore" + +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "Richiesta amicizia/connessione" + +#: ../../mod/notifications.php:196 +msgid "New Follower" +msgstr "Qualcuno inizia a seguirti" + +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "Nessuna presentazione." + +#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 +#: ../../mod/notifications.php:469 +#, php-format +msgid "%s liked %s's post" +msgstr "a %s è piaciuto il messaggio di %s" + +#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 +#: ../../mod/notifications.php:478 +#, php-format +msgid "%s disliked %s's post" +msgstr "a %s non è piaciuto il messaggio di %s" + +#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 +#: ../../mod/notifications.php:492 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s è ora amico di %s" + +#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 +#, php-format +msgid "%s created a new post" +msgstr "%s a creato un nuovo messaggio" + +#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 +#: ../../mod/notifications.php:501 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s ha commentato il messaggio di %s" + +#: ../../mod/notifications.php:302 +msgid "No more network notifications." +msgstr "Nessuna nuova." + +#: ../../mod/notifications.php:306 +msgid "Network Notifications" +msgstr "Notifiche dalla rete" + +#: ../../mod/notifications.php:332 ../../mod/notify.php:61 +msgid "No more system notifications." +msgstr "Nessuna nuova notifica di sistema." + +#: ../../mod/notifications.php:336 ../../mod/notify.php:65 +msgid "System Notifications" +msgstr "Notifiche di sistema" + +#: ../../mod/notifications.php:427 +msgid "No more personal notifications." +msgstr "Nessuna nuova." + +#: ../../mod/notifications.php:431 +msgid "Personal Notifications" +msgstr "Notifiche personali" + +#: ../../mod/notifications.php:508 +msgid "No more home notifications." +msgstr "Nessuna nuova." + +#: ../../mod/notifications.php:512 +msgid "Home Notifications" +msgstr "Notifiche bacheca" + +#: ../../mod/photos.php:51 ../../boot.php:1957 +msgid "Photo Albums" +msgstr "Album foto" + +#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1058 +#: ../../mod/photos.php:1183 ../../mod/photos.php:1206 +#: ../../mod/photos.php:1736 ../../mod/photos.php:1748 +#: ../../view/theme/diabook/theme.php:492 +msgid "Contact Photos" +msgstr "Foto dei contatti" + +#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795 +msgid "Upload New Photos" +msgstr "Carica nuove foto" + +#: ../../mod/photos.php:143 +msgid "Contact information unavailable" +msgstr "I dati di questo contatto non sono disponibili" + +#: ../../mod/photos.php:164 +msgid "Album not found." +msgstr "Album non trovato." + +#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200 +msgid "Delete Album" +msgstr "Rimuovi album" + +#: ../../mod/photos.php:197 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?" + +#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502 +msgid "Delete Photo" +msgstr "Rimuovi foto" + +#: ../../mod/photos.php:285 +msgid "Do you really want to delete this photo?" +msgstr "Vuoi veramente cancellare questa foto?" + +#: ../../mod/photos.php:656 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s è stato taggato in %2$s da %3$s" + +#: ../../mod/photos.php:656 +msgid "a photo" +msgstr "una foto" + +#: ../../mod/photos.php:761 +msgid "Image exceeds size limit of " +msgstr "L'immagine supera il limite di" + +#: ../../mod/photos.php:769 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." + +#: ../../mod/photos.php:924 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" + +#: ../../mod/photos.php:1088 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili." + +#: ../../mod/photos.php:1123 +msgid "Upload Photos" +msgstr "Carica foto" + +#: ../../mod/photos.php:1127 ../../mod/photos.php:1195 +msgid "New album name: " +msgstr "Nome nuovo album: " + +#: ../../mod/photos.php:1128 +msgid "or existing album name: " +msgstr "o nome di un album esistente: " + +#: ../../mod/photos.php:1129 +msgid "Do not show a status post for this upload" +msgstr "Non creare un post per questo upload" + +#: ../../mod/photos.php:1131 ../../mod/photos.php:1497 +msgid "Permissions" +msgstr "Permessi" + +#: ../../mod/photos.php:1142 +msgid "Private Photo" +msgstr "Foto privata" + +#: ../../mod/photos.php:1143 +msgid "Public Photo" +msgstr "Foto pubblica" + +#: ../../mod/photos.php:1210 +msgid "Edit Album" +msgstr "Modifica album" + +#: ../../mod/photos.php:1216 +msgid "Show Newest First" +msgstr "Mostra nuove foto per prime" + +#: ../../mod/photos.php:1218 +msgid "Show Oldest First" +msgstr "Mostra vecchie foto per prime" + +#: ../../mod/photos.php:1251 ../../mod/photos.php:1778 +msgid "View Photo" +msgstr "Vedi foto" + +#: ../../mod/photos.php:1286 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." + +#: ../../mod/photos.php:1288 +msgid "Photo not available" +msgstr "Foto non disponibile" + +#: ../../mod/photos.php:1344 +msgid "View photo" +msgstr "Vedi foto" + +#: ../../mod/photos.php:1344 +msgid "Edit photo" +msgstr "Modifica foto" + +#: ../../mod/photos.php:1345 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" + +#: ../../mod/photos.php:1351 ../../mod/content.php:643 +#: ../../object/Item.php:113 +msgid "Private Message" +msgstr "Messaggio privato" + +#: ../../mod/photos.php:1370 +msgid "View Full Size" +msgstr "Vedi dimensione intera" + +#: ../../mod/photos.php:1444 +msgid "Tags: " +msgstr "Tag: " + +#: ../../mod/photos.php:1447 +msgid "[Remove any tag]" +msgstr "[Rimuovi tutti i tag]" + +#: ../../mod/photos.php:1487 +msgid "Rotate CW (right)" +msgstr "Ruota a destra" + +#: ../../mod/photos.php:1488 +msgid "Rotate CCW (left)" +msgstr "Ruota a sinistra" + +#: ../../mod/photos.php:1490 +msgid "New album name" +msgstr "Nuovo nome dell'album" + +#: ../../mod/photos.php:1493 +msgid "Caption" +msgstr "Titolo" + +#: ../../mod/photos.php:1495 +msgid "Add a Tag" +msgstr "Aggiungi tag" + +#: ../../mod/photos.php:1499 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: ../../mod/photos.php:1508 +msgid "Private photo" +msgstr "Foto privata" + +#: ../../mod/photos.php:1509 +msgid "Public photo" +msgstr "Foto pubblica" + +#: ../../mod/photos.php:1529 ../../mod/content.php:707 +#: ../../object/Item.php:232 +msgid "I like this (toggle)" +msgstr "Mi piace (clic per cambiare)" + +#: ../../mod/photos.php:1530 ../../mod/content.php:708 +#: ../../object/Item.php:233 +msgid "I don't like this (toggle)" +msgstr "Non mi piace (clic per cambiare)" + +#: ../../mod/photos.php:1549 ../../mod/photos.php:1593 +#: ../../mod/photos.php:1676 ../../mod/content.php:730 +#: ../../object/Item.php:650 +msgid "This is you" +msgstr "Questo sei tu" + +#: ../../mod/photos.php:1551 ../../mod/photos.php:1595 +#: ../../mod/photos.php:1678 ../../mod/content.php:732 +#: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:670 +msgid "Comment" +msgstr "Commento" + +#: ../../mod/photos.php:1793 +msgid "Recent Photos" +msgstr "Foto recenti" + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Benvenuto su Friendica" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Cose da fare per i Nuovi Utenti" + +#: ../../mod/newmember.php:12 +msgid "" +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." +msgstr "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione." + +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "Come Iniziare" + +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Friendica Passo-Passo" + +#: ../../mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti." + +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Vai alle tue Impostazioni" + +#: ../../mod/newmember.php:26 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero." + +#: ../../mod/newmember.php:28 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti." + +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "Carica la foto del profilo" + +#: ../../mod/newmember.php:36 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno." + +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Modifica il tuo Profilo" + +#: ../../mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti." + +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Parole chiave del profilo" + +#: ../../mod/newmember.php:40 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie." + +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "Collegarsi" + +#: ../../mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook." + +#: ../../mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "SeAdd New Contact dialog." +msgstr "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto" + +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Vai all'Elenco del tuo sito" + +#: ../../mod/newmember.php:60 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto." + +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "Trova nuove persone" + +#: ../../mod/newmember.php:62 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore." + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Raggruppa i tuoi contatti" + +#: ../../mod/newmember.php:70 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete" + +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Perchè i miei post non sono pubblici?" + +#: ../../mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "Friendica rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra." + +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "Ottenere Aiuto" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Vai alla sezione Guida" + +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse." + +#: ../../mod/profile.php:21 ../../boot.php:1325 +msgid "Requested profile is not available." +msgstr "Profilo richiesto non disponibile." + +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Consigli per i Nuovi Utenti" + +#: ../../mod/install.php:117 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica Comunicazione Server - Impostazioni" + +#: ../../mod/install.php:123 +msgid "Could not connect to database." +msgstr " Impossibile collegarsi con il database." + +#: ../../mod/install.php:127 +msgid "Could not create table." +msgstr "Impossibile creare le tabelle." + +#: ../../mod/install.php:133 +msgid "Your Friendica site database has been installed." +msgstr "Il tuo Friendica è stato installato." + +#: ../../mod/install.php:138 +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:139 ../../mod/install.php:206 +#: ../../mod/install.php:521 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Leggi il file \"INSTALL.txt\"." + +#: ../../mod/install.php:203 +msgid "System check" +msgstr "Controllo sistema" + +#: ../../mod/install.php:208 +msgid "Check again" +msgstr "Controlla ancora" + +#: ../../mod/install.php:227 +msgid "Database connection" +msgstr "Connessione al database" + +#: ../../mod/install.php:228 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database." + +#: ../../mod/install.php:229 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." + +#: ../../mod/install.php:230 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare." + +#: ../../mod/install.php:234 +msgid "Database Server Name" +msgstr "Nome del database server" + +#: ../../mod/install.php:235 +msgid "Database Login Name" +msgstr "Nome utente database" + +#: ../../mod/install.php:236 +msgid "Database Login Password" +msgstr "Password utente database" + +#: ../../mod/install.php:237 +msgid "Database Name" +msgstr "Nome database" + +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "Site administrator email address" +msgstr "Indirizzo email dell'amministratore del sito" + +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web." + +#: ../../mod/install.php:242 ../../mod/install.php:280 +msgid "Please select a default timezone for your website" +msgstr "Seleziona il fuso orario predefinito per il tuo sito web" + +#: ../../mod/install.php:267 +msgid "Site settings" +msgstr "Impostazioni sito" + +#: ../../mod/install.php:321 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web" + +#: ../../mod/install.php:322 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +msgstr "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Activating scheduled tasks'" + +#: ../../mod/install.php:326 +msgid "PHP executable path" +msgstr "Percorso eseguibile PHP" + +#: ../../mod/install.php:326 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione." + +#: ../../mod/install.php:331 +msgid "Command line PHP" +msgstr "PHP da riga di comando" + +#: ../../mod/install.php:340 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" + +#: ../../mod/install.php:341 +msgid "Found PHP version: " +msgstr "Versione PHP:" + +#: ../../mod/install.php:343 +msgid "PHP cli binary" +msgstr "" + +#: ../../mod/install.php:354 +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:355 +msgid "This is required for message delivery to work." +msgstr "E' obbligatorio per far funzionare la consegna dei messaggi." + +#: ../../mod/install.php:357 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../mod/install.php:378 +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:379 +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:381 +msgid "Generate encryption keys" +msgstr "Genera chiavi di criptazione" + +#: ../../mod/install.php:388 +msgid "libCurl PHP module" +msgstr "modulo PHP libCurl" + +#: ../../mod/install.php:389 +msgid "GD graphics PHP module" +msgstr "modulo PHP GD graphics" + +#: ../../mod/install.php:390 +msgid "OpenSSL PHP module" +msgstr "modulo PHP OpenSSL" + +#: ../../mod/install.php:391 +msgid "mysqli PHP module" +msgstr "modulo PHP mysqli" + +#: ../../mod/install.php:392 +msgid "mb_string PHP module" +msgstr "modulo PHP mb_string" + +#: ../../mod/install.php:397 ../../mod/install.php:399 +msgid "Apache mod_rewrite module" +msgstr "Modulo mod_rewrite di Apache" + +#: ../../mod/install.php:397 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato" + +#: ../../mod/install.php:405 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato." + +#: ../../mod/install.php:409 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato." + +#: ../../mod/install.php:413 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato." + +#: ../../mod/install.php:417 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato" + +#: ../../mod/install.php:421 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato." + +#: ../../mod/install.php:438 +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:439 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi." + +#: ../../mod/install.php:440 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica" + +#: ../../mod/install.php:441 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni." + +#: ../../mod/install.php:444 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php è scrivibile" + +#: ../../mod/install.php:454 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering." + +#: ../../mod/install.php:455 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica." + +#: ../../mod/install.php:456 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella." + +#: ../../mod/install.php:457 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene." + +#: ../../mod/install.php:460 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 è scrivibile" + +#: ../../mod/install.php:472 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server." + +#: ../../mod/install.php:474 +msgid "Url rewrite is working" +msgstr "La riscrittura degli url funziona" + +#: ../../mod/install.php:484 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito." + +#: ../../mod/install.php:508 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." + +#: ../../mod/install.php:519 +msgid "

What next

" +msgstr "

Cosa fare ora

" + +#: ../../mod/install.php:520 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller." + +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Inviato!" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Errore protocollo OpenID. Nessun ID ricevuto." + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito." + +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." + +#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 +#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Il ridimensionamento del'immagine [%s] è fallito." + +#: ../../mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." + +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" + +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Carica un file:" + +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Seleziona un profilo:" + +#: ../../mod/profile_photo.php:245 +msgid "Upload" +msgstr "Carica" + +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "salta questo passaggio" + +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "seleziona una foto dai tuoi album" + +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Ritaglia immagine" + +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ritaglia l'imagine per una visualizzazione migliore." + +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Finito" + +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Immagine caricata con successo." + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Non disponibile." + +#: ../../mod/content.php:626 ../../object/Item.php:362 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" + +#: ../../mod/content.php:707 ../../object/Item.php:232 +msgid "like" +msgstr "mi piace" + +#: ../../mod/content.php:708 ../../object/Item.php:233 +msgid "dislike" +msgstr "non mi piace" + +#: ../../mod/content.php:710 ../../object/Item.php:235 +msgid "Share this" +msgstr "Condividi questo" + +#: ../../mod/content.php:710 ../../object/Item.php:235 +msgid "share" +msgstr "condividi" + +#: ../../mod/content.php:734 ../../object/Item.php:654 +msgid "Bold" +msgstr "Grassetto" + +#: ../../mod/content.php:735 ../../object/Item.php:655 +msgid "Italic" +msgstr "Corsivo" + +#: ../../mod/content.php:736 ../../object/Item.php:656 +msgid "Underline" +msgstr "Sottolineato" + +#: ../../mod/content.php:737 ../../object/Item.php:657 +msgid "Quote" +msgstr "Citazione" + +#: ../../mod/content.php:738 ../../object/Item.php:658 +msgid "Code" +msgstr "Codice" + +#: ../../mod/content.php:739 ../../object/Item.php:659 +msgid "Image" +msgstr "Immagine" + +#: ../../mod/content.php:740 ../../object/Item.php:660 +msgid "Link" +msgstr "Link" + +#: ../../mod/content.php:741 ../../object/Item.php:661 +msgid "Video" +msgstr "Video" + +#: ../../mod/content.php:776 ../../object/Item.php:211 +msgid "add star" +msgstr "aggiungi a speciali" + +#: ../../mod/content.php:777 ../../object/Item.php:212 +msgid "remove star" +msgstr "rimuovi da speciali" + +#: ../../mod/content.php:778 ../../object/Item.php:213 +msgid "toggle star status" +msgstr "Inverti stato preferito" + +#: ../../mod/content.php:781 ../../object/Item.php:216 +msgid "starred" +msgstr "preferito" + +#: ../../mod/content.php:782 ../../object/Item.php:221 +msgid "add tag" +msgstr "aggiungi tag" + +#: ../../mod/content.php:786 ../../object/Item.php:130 +msgid "save to folder" +msgstr "salva nella cartella" + +#: ../../mod/content.php:877 ../../object/Item.php:308 +msgid "to" +msgstr "a" + +#: ../../mod/content.php:878 ../../object/Item.php:310 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" + +#: ../../mod/content.php:879 ../../object/Item.php:311 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca" + +#: ../../object/Item.php:92 +msgid "This entry was edited" +msgstr "" + +#: ../../object/Item.php:309 +msgid "via" +msgstr "via" + +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/diabook/config.php:154 +#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 +msgid "Theme settings" +msgstr "Impostazioni tema" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)" + +#: ../../view/theme/cleanzero/config.php:84 +#: ../../view/theme/diabook/config.php:155 +#: ../../view/theme/dispy/config.php:73 +msgid "Set font-size for posts and comments" +msgstr "Dimensione del carattere di messaggi e commenti" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Imposta la larghezza del tema" + +#: ../../view/theme/cleanzero/config.php:86 +#: ../../view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Schema colori" + +#: ../../view/theme/diabook/config.php:156 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Altezza della linea di testo di messaggi e commenti" + +#: ../../view/theme/diabook/config.php:157 +msgid "Set resolution for middle column" +msgstr "Imposta la dimensione della colonna centrale" + +#: ../../view/theme/diabook/config.php:158 +msgid "Set color scheme" +msgstr "Imposta lo schema dei colori" + +#: ../../view/theme/diabook/config.php:159 +#: ../../view/theme/diabook/theme.php:609 +msgid "Set twitter search term" +msgstr "Imposta il termine di ricerca per twitter" + +#: ../../view/theme/diabook/config.php:160 +msgid "Set zoomfactor for Earth Layer" +msgstr "" + +#: ../../view/theme/diabook/config.php:161 +#: ../../view/theme/diabook/theme.php:578 +msgid "Set longitude (X) for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/config.php:162 +#: ../../view/theme/diabook/theme.php:579 +msgid "Set latitude (Y) for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/config.php:163 +#: ../../view/theme/diabook/theme.php:94 +#: ../../view/theme/diabook/theme.php:537 +#: ../../view/theme/diabook/theme.php:632 +msgid "Community Pages" +msgstr "Pagine Comunitarie" + +#: ../../view/theme/diabook/config.php:164 +#: ../../view/theme/diabook/theme.php:572 +#: ../../view/theme/diabook/theme.php:633 +msgid "Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/config.php:165 +#: ../../view/theme/diabook/theme.php:384 +#: ../../view/theme/diabook/theme.php:634 +msgid "Community Profiles" +msgstr "Profili Comunità" + +#: ../../view/theme/diabook/config.php:166 +#: ../../view/theme/diabook/theme.php:592 +#: ../../view/theme/diabook/theme.php:635 +msgid "Help or @NewHere ?" +msgstr "Serve aiuto? Sei nuovo?" + +#: ../../view/theme/diabook/config.php:167 +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:636 +msgid "Connect Services" +msgstr "Servizi di conessione" + +#: ../../view/theme/diabook/config.php:168 +#: ../../view/theme/diabook/theme.php:516 +#: ../../view/theme/diabook/theme.php:637 +msgid "Find Friends" +msgstr "Trova Amici" + +#: ../../view/theme/diabook/config.php:169 +msgid "Last tweets" +msgstr "Ultimi tweets" + +#: ../../view/theme/diabook/config.php:170 +#: ../../view/theme/diabook/theme.php:405 +#: ../../view/theme/diabook/theme.php:639 +msgid "Last users" +msgstr "Ultimi utenti" + +#: ../../view/theme/diabook/config.php:171 +#: ../../view/theme/diabook/theme.php:479 +#: ../../view/theme/diabook/theme.php:640 +msgid "Last photos" +msgstr "Ultime foto" + +#: ../../view/theme/diabook/config.php:172 +#: ../../view/theme/diabook/theme.php:434 +#: ../../view/theme/diabook/theme.php:641 +msgid "Last likes" +msgstr "Ultimi \"mi piace\"" + +#: ../../view/theme/diabook/theme.php:89 +msgid "Your contacts" +msgstr "I tuoi contatti" + +#: ../../view/theme/diabook/theme.php:517 +msgid "Local Directory" +msgstr "Elenco Locale" + +#: ../../view/theme/diabook/theme.php:577 +msgid "Set zoomfactor for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:638 +msgid "Last Tweets" +msgstr "Ultimi Tweets" + +#: ../../view/theme/diabook/theme.php:630 +msgid "Show/hide boxes at right-hand column:" +msgstr "Mostra/Nascondi riquadri nella colonna destra" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Imposta schema colori" + +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Allineamento" + +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Sinistra" + +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Centrato" + +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Dimensione caratteri post" + +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Dimensione caratteri nelle aree di testo" + +#: ../../index.php:405 +msgid "toggle mobile" +msgstr "commuta tema mobile" + +#: ../../boot.php:669 +msgid "Delete this item?" +msgstr "Cancellare questo elemento?" + +#: ../../boot.php:672 +msgid "show fewer" +msgstr "mostra di meno" + +#: ../../boot.php:999 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "aggiornamento %s fallito. Guarda i log di errore." + +#: ../../boot.php:1001 +#, php-format +msgid "Update Error at %s" +msgstr "Errore aggiornamento a %s" + +#: ../../boot.php:1111 +msgid "Create a New Account" +msgstr "Crea un nuovo account" + +#: ../../boot.php:1139 +msgid "Nickname or Email address: " +msgstr "Nome utente o indirizzo email: " + +#: ../../boot.php:1140 +msgid "Password: " +msgstr "Password: " + +#: ../../boot.php:1141 +msgid "Remember me" +msgstr "Ricordati di me" + +#: ../../boot.php:1144 +msgid "Or login using OpenID: " +msgstr "O entra con OpenID:" + +#: ../../boot.php:1150 +msgid "Forgot your password?" +msgstr "Hai dimenticato la password?" + +#: ../../boot.php:1153 +msgid "Website Terms of Service" +msgstr "Condizioni di servizio del sito web " + +#: ../../boot.php:1154 +msgid "terms of service" +msgstr "condizioni del servizio" + +#: ../../boot.php:1156 +msgid "Website Privacy Policy" +msgstr "Politiche di privacy del sito" + +#: ../../boot.php:1157 +msgid "privacy policy" +msgstr "politiche di privacy" + +#: ../../boot.php:1286 +msgid "Requested account is not available." +msgstr "L'account richiesto non è disponibile." + +#: ../../boot.php:1365 ../../boot.php:1469 +msgid "Edit profile" +msgstr "Modifica il profilo" + +#: ../../boot.php:1431 +msgid "Message" +msgstr "Messaggio" + +#: ../../boot.php:1439 +msgid "Manage/edit profiles" +msgstr "Gestisci/modifica i profili" + +#: ../../boot.php:1568 ../../boot.php:1654 +msgid "g A l F d" +msgstr "g A l d F" + +#: ../../boot.php:1569 ../../boot.php:1655 +msgid "F d" +msgstr "d F" + +#: ../../boot.php:1614 ../../boot.php:1695 +msgid "[today]" +msgstr "[oggi]" + +#: ../../boot.php:1626 +msgid "Birthday Reminders" +msgstr "Promemoria compleanni" + +#: ../../boot.php:1627 +msgid "Birthdays this week:" +msgstr "Compleanni questa settimana:" + +#: ../../boot.php:1688 +msgid "[No description]" +msgstr "[Nessuna descrizione]" + +#: ../../boot.php:1706 +msgid "Event Reminders" +msgstr "Promemoria" + +#: ../../boot.php:1707 +msgid "Events this week:" +msgstr "Eventi di questa settimana:" + +#: ../../boot.php:1943 +msgid "Status Messages and Posts" +msgstr "Messaggi di stato e post" + +#: ../../boot.php:1950 +msgid "Profile Details" +msgstr "Dettagli del profilo" + +#: ../../boot.php:1961 ../../boot.php:1964 +msgid "Videos" +msgstr "Video" + +#: ../../boot.php:1974 +msgid "Events and Calendar" +msgstr "Eventi e calendario" + +#: ../../boot.php:1981 +msgid "Only You Can See This" +msgstr "Solo tu puoi vedere questo" diff --git a/view/it/strings.php b/view/it/strings.php index 79d7c19b3f..7f98ac09f5 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -5,1267 +5,25 @@ function string_plural_select_it($n){ return ($n != 1);; }} ; -$a->strings["Private Message"] = "Messaggio privato"; -$a->strings["Edit"] = "Modifica"; -$a->strings["Select"] = "Seleziona"; -$a->strings["Delete"] = "Rimuovi"; -$a->strings["save to folder"] = "salva nella cartella"; -$a->strings["add star"] = "aggiungi a speciali"; -$a->strings["remove star"] = "rimuovi da speciali"; -$a->strings["toggle star status"] = "Inverti stato preferito"; -$a->strings["starred"] = "preferito"; -$a->strings["add tag"] = "aggiungi tag"; -$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)"; -$a->strings["like"] = "mi piace"; -$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)"; -$a->strings["dislike"] = "non mi piace"; -$a->strings["Share this"] = "Condividi questo"; -$a->strings["share"] = "condividi"; -$a->strings["Categories:"] = "Categorie:"; -$a->strings["Filed under:"] = "Archiviato in:"; -$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; -$a->strings["to"] = "a"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; -$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca"; -$a->strings["%s from %s"] = "%s da %s"; -$a->strings["Comment"] = "Commento"; -$a->strings["Please wait"] = "Attendi"; -$a->strings["%d comment"] = array( - 0 => "%d commento", - 1 => "%d commenti", -); -$a->strings["comment"] = array( - 0 => "", - 1 => "commento", -); -$a->strings["show more"] = "mostra di più"; -$a->strings["This is you"] = "Questo sei tu"; -$a->strings["Submit"] = "Invia"; -$a->strings["Bold"] = "Grassetto"; -$a->strings["Italic"] = "Corsivo"; -$a->strings["Underline"] = "Sottolineato"; -$a->strings["Quote"] = "Citazione"; -$a->strings["Code"] = "Codice"; -$a->strings["Image"] = "Immagine"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Preview"] = "Anteprima"; -$a->strings["Not Found"] = "Non trovato"; -$a->strings["Page not found."] = "Pagina non trovata."; -$a->strings["Permission denied"] = "Permesso negato"; -$a->strings["Permission denied."] = "Permesso negato."; -$a->strings["toggle mobile"] = "commuta tema mobile"; -$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; -$a->strings["Contact not found."] = "Contatto non trovato."; -$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato."; -$a->strings["Suggest Friends"] = "Suggerisci amici"; -$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s"; -$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; -$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; -$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", - 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", -); -$a->strings["Introduction complete."] = "Presentazione completa."; -$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; -$a->strings["Profile unavailable."] = "Profilo non disponibile."; -$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; -$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; -$a->strings["Invalid locator"] = "Invalid locator"; -$a->strings["Invalid email address."] = "Indirizzo email non valido."; -$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita."; -$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata."; -$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; -$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; -$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; -$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; -$a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto."; -$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; -$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; -$a->strings["Hide this contact"] = "Nascondi questo contatto"; -$a->strings["Welcome home %s."] = "Bentornato a casa %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s."; -$a->strings["Confirm"] = "Conferma"; -$a->strings["[Name Withheld]"] = "[Nome Nascosto]"; -$a->strings["Public access denied."] = "Accesso negato."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"; -$a->strings["Connect as an email follower (Coming soon)"] = "Connetti un email come follower (in arrivo)"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi"; -$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Rispondi:"; -$a->strings["Does %s know you?"] = "%s ti conosce?"; -$a->strings["Yes"] = "Si"; -$a->strings["No"] = "No"; -$a->strings["Add a personal note:"] = "Aggiungi una nota personale:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."; -$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:"; -$a->strings["Submit Request"] = "Invia richiesta"; -$a->strings["Cancel"] = "Annulla"; -$a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile."; -$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; -$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti"; -$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; -$a->strings["Discard"] = "Scarta"; -$a->strings["Ignore"] = "Ignora"; -$a->strings["System"] = "Sistema"; -$a->strings["Network"] = "Rete"; -$a->strings["Personal"] = "Personale"; -$a->strings["Home"] = "Home"; -$a->strings["Introductions"] = "Presentazioni"; -$a->strings["Messages"] = "Messaggi"; -$a->strings["Show Ignored Requests"] = "Mostra richieste ignorate"; -$a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate"; -$a->strings["Notification type: "] = "Tipo di notifica: "; -$a->strings["Friend Suggestion"] = "Amico suggerito"; -$a->strings["suggested by %s"] = "sugerito da %s"; -$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; -$a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\""; -$a->strings["if applicable"] = "se applicabile"; -$a->strings["Approve"] = "Approva"; -$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["Sharer"] = "Condivisore"; -$a->strings["Fan/Admirer"] = "Fan/Ammiratore"; -$a->strings["Friend/Connect Request"] = "Richiesta amicizia/connessione"; -$a->strings["New Follower"] = "Qualcuno inizia a seguirti"; -$a->strings["No introductions."] = "Nessuna presentazione."; -$a->strings["Notifications"] = "Notifiche"; -$a->strings["%s liked %s's post"] = "a %s è piaciuto il messaggio di %s"; -$a->strings["%s disliked %s's post"] = "a %s non è piaciuto il messaggio di %s"; -$a->strings["%s is now friends with %s"] = "%s è ora amico di %s"; -$a->strings["%s created a new post"] = "%s a creato un nuovo messaggio"; -$a->strings["%s commented on %s's post"] = "%s ha commentato il messaggio di %s"; -$a->strings["No more network notifications."] = "Nessuna nuova."; -$a->strings["Network Notifications"] = "Notifiche dalla rete"; -$a->strings["No more system notifications."] = "Nessuna nuova notifica di sistema."; -$a->strings["System Notifications"] = "Notifiche di sistema"; -$a->strings["No more personal notifications."] = "Nessuna nuova."; -$a->strings["Personal Notifications"] = "Notifiche personali"; -$a->strings["No more home notifications."] = "Nessuna nuova."; -$a->strings["Home Notifications"] = "Notifiche bacheca"; -$a->strings["photo"] = "foto"; -$a->strings["status"] = "stato"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; -$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."; -$a->strings["Login failed."] = "Accesso fallito."; -$a->strings["Source (bbcode) text:"] = "Testo sorgente (bbcode):"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Testo sorgente (da Diaspora) da convertire in BBcode:"; -$a->strings["Source input: "] = "Sorgente:"; -$a->strings["bb2html (raw HTML): "] = "bb2html (HTML grezzo):"; -$a->strings["bb2html: "] = "bb2html:"; -$a->strings["bb2html2bb: "] = "bb2html2bb: "; -$a->strings["bb2md: "] = "bb2md: "; -$a->strings["bb2md2html: "] = "bb2md2html: "; -$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; -$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; -$a->strings["Source input (Diaspora format): "] = "Sorgente (formato Diaspora):"; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Theme settings updated."] = "Impostazioni del tema aggiornate."; -$a->strings["Site"] = "Sito"; -$a->strings["Users"] = "Utenti"; -$a->strings["Plugins"] = "Plugin"; -$a->strings["Themes"] = "Temi"; -$a->strings["DB updates"] = "Aggiornamenti Database"; -$a->strings["Logs"] = "Log"; -$a->strings["Admin"] = "Amministrazione"; -$a->strings["Plugin Features"] = "Impostazioni Plugins"; -$a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma"; -$a->strings["Item not found."] = "Elemento non trovato."; -$a->strings["Normal Account"] = "Account normale"; -$a->strings["Soapbox Account"] = "Account per comunicati e annunci"; -$a->strings["Community/Celebrity Account"] = "Account per celebrità o per comunità"; -$a->strings["Automatic Friend Account"] = "Account per amicizia automatizzato"; -$a->strings["Blog Account"] = "Account Blog"; -$a->strings["Private Forum"] = "Forum Privato"; -$a->strings["Message queues"] = "Code messaggi"; -$a->strings["Administration"] = "Amministrazione"; -$a->strings["Summary"] = "Sommario"; -$a->strings["Registered users"] = "Utenti registrati"; -$a->strings["Pending registrations"] = "Registrazioni in attesa"; -$a->strings["Version"] = "Versione"; -$a->strings["Active plugins"] = "Plugin attivi"; -$a->strings["Site settings updated."] = "Impostazioni del sito aggiornate."; -$a->strings["No special theme for mobile devices"] = "Nessun tema speciale per i dispositivi mobili"; -$a->strings["Multi user instance"] = "Istanza multi utente"; -$a->strings["Closed"] = "Chiusa"; -$a->strings["Requires approval"] = "Richiede l'approvazione"; -$a->strings["Open"] = "Aperta"; -$a->strings["No SSL policy, links will track page SSL state"] = "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina"; -$a->strings["Force all links to use SSL"] = "Forza tutti i linki ad usare SSL"; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)"; -$a->strings["Registration"] = "Registrazione"; -$a->strings["File upload"] = "Caricamento file"; -$a->strings["Policies"] = "Politiche"; -$a->strings["Advanced"] = "Avanzate"; -$a->strings["Performance"] = "Performance"; -$a->strings["Site name"] = "Nome del sito"; -$a->strings["Banner/Logo"] = "Banner/Logo"; -$a->strings["System language"] = "Lingua di sistema"; -$a->strings["System theme"] = "Tema di sistema"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema"; -$a->strings["Mobile system theme"] = "Tema mobile di sistema"; -$a->strings["Theme for mobile devices"] = "Tema per dispositivi mobili"; -$a->strings["SSL link policy"] = "Gestione link SSL"; -$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina se i link generati devono essere forzati a usare SSL"; -$a->strings["'Share' element"] = "Elemento 'Share'"; -$a->strings["Activates the bbcode element 'share' for repeating items."] = "Attiva l'elemento bbcode 'share' per i post condivisi."; -$a->strings["Hide help entry from navigation menu"] = "Nascondi la voce 'Guida' dal menu di navigazione"; -$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente."; -$a->strings["Single user instance"] = "Instanza a singolo utente"; -$a->strings["Make this instance multi-user or single-user for the named user"] = "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato"; -$a->strings["Maximum image size"] = "Massima dimensione immagini"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."; -$a->strings["Maximum image length"] = "Massima lunghezza immagine"; -$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite."; -$a->strings["JPEG image quality"] = "Qualità immagini JPEG"; -$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena."; -$a->strings["Register policy"] = "Politica di registrazione"; -$a->strings["Maximum Daily Registrations"] = "Massime registrazioni giornaliere"; -$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto."; -$a->strings["Register text"] = "Testo registrazione"; -$a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione."; -$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo x giorni"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo."; -$a->strings["Allowed friend domains"] = "Domini amici consentiti"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; -$a->strings["Allowed email domains"] = "Domini email consentiti"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; -$a->strings["Block public"] = "Blocca pagine pubbliche"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato."; -$a->strings["Force publish"] = "Forza publicazione"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito."; -$a->strings["Global directory update URL"] = "URL aggiornamento Elenco Globale"; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato."; -$a->strings["Allow threaded items"] = "Permetti commenti nidificati"; -$a->strings["Allow infinite level threading for items on this site."] = "Permette un infinito livello di nidificazione dei commenti su questo sito."; -$a->strings["Private posts by default for new users"] = "Post privati di default per i nuovi utenti"; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici."; -$a->strings["Don't include post content in email notifications"] = "Non includere il contenuto dei post nelle notifiche via email"; -$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy"; -$a->strings["Block multiple registrations"] = "Blocca registrazioni multiple"; -$a->strings["Disallow users to register additional accounts for use as pages."] = "Non permette all'utente di registrare account extra da usare come pagine."; -$a->strings["OpenID support"] = "Supporto OpenID"; -$a->strings["OpenID support for registration and logins."] = "Supporta OpenID per la registrazione e il login"; -$a->strings["Fullname check"] = "Controllo nome completo"; -$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam"; -$a->strings["UTF-8 Regular expressions"] = "Espressioni regolari UTF-8"; -$a->strings["Use PHP UTF8 regular expressions"] = "Usa le espressioni regolari PHP in UTF8"; -$a->strings["Show Community Page"] = "Mostra pagina Comunità"; -$a->strings["Display a Community page showing all recent public postings on this site."] = "Mostra una pagina Comunità con tutti i recenti messaggi pubblici su questo sito."; -$a->strings["Enable OStatus support"] = "Abilita supporto OStatus"; -$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fornisce compatibiltà OStatuts (identi.ca, status.net, etc.). Tutte le comunicazioni in OStatus sono pubbliche, per cui avvisi di provacy verranno occasionalmente mostrati."; -$a->strings["Enable Diaspora support"] = "Abilita il supporto a Diaspora"; -$a->strings["Provide built-in Diaspora network compatibility."] = "Fornisce compatibilità con il network Diaspora."; -$a->strings["Only allow Friendica contacts"] = "Permetti solo contatti Friendica"; -$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati."; -$a->strings["Verify SSL"] = "Verifica SSL"; -$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati."; -$a->strings["Proxy user"] = "Utente Proxy"; -$a->strings["Proxy URL"] = "URL Proxy"; -$a->strings["Network timeout"] = "Timeout rete"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)."; -$a->strings["Delivery interval"] = "Intervallo di invio"; -$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Ritarda il processo di invio in background di n secondi per ridurre il carico di sistema. Raccomandato: 4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati."; -$a->strings["Poll interval"] = "Intervallo di poll"; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio."; -$a->strings["Maximum Load Average"] = "Massimo carico medio"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50."; -$a->strings["Use MySQL full text engine"] = "Usa il motore MySQL full text"; -$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri."; -$a->strings["Path to item cache"] = "Percorso cache elementi"; -$a->strings["Cache duration in seconds"] = "Durata della cache in secondi"; -$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno)."; -$a->strings["Path for lock file"] = "Percorso al file di lock"; -$a->strings["Temp path"] = "Percorso file temporanei"; -$a->strings["Base path to installation"] = "Percorso base all'installazione"; -$a->strings["Update has been marked successful"] = "L'aggiornamento è stato segnato come di successo"; -$a->strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Controlla i log di sistema."; -$a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è stato applicato con successo"; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine."; -$a->strings["Update function %s could not be found."] = "La funzione di aggiornamento %s non puo' essere trovata."; -$a->strings["No failed updates."] = "Nessun aggiornamento fallito."; -$a->strings["Failed Updates"] = "Aggiornamenti falliti"; -$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato."; -$a->strings["Mark success (if update was manually applied)"] = "Segna completato (se l'update è stato applicato manualmente)"; -$a->strings["Attempt to execute this update step automatically"] = "Cerco di eseguire questo aggiornamento in automatico"; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "%s utente bloccato/sbloccato", - 1 => "%s utenti bloccati/sbloccati", -); -$a->strings["%s user deleted"] = array( - 0 => "%s utente cancellato", - 1 => "%s utenti cancellati", -); -$a->strings["User '%s' deleted"] = "Utente '%s' cancellato"; -$a->strings["User '%s' unblocked"] = "Utente '%s' sbloccato"; -$a->strings["User '%s' blocked"] = "Utente '%s' bloccato"; -$a->strings["select all"] = "seleziona tutti"; -$a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma"; -$a->strings["Request date"] = "Data richiesta"; -$a->strings["Name"] = "Nome"; -$a->strings["Email"] = "Email"; -$a->strings["No registrations."] = "Nessuna registrazione."; -$a->strings["Deny"] = "Nega"; -$a->strings["Block"] = "Blocca"; -$a->strings["Unblock"] = "Sblocca"; -$a->strings["Site admin"] = "Amministrazione sito"; -$a->strings["Account expired"] = "Account scaduto"; -$a->strings["Register date"] = "Data registrazione"; -$a->strings["Last login"] = "Ultimo accesso"; -$a->strings["Last item"] = "Ultimo elemento"; -$a->strings["Account"] = "Account"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?"; -$a->strings["Plugin %s disabled."] = "Plugin %s disabilitato."; -$a->strings["Plugin %s enabled."] = "Plugin %s abilitato."; -$a->strings["Disable"] = "Disabilita"; -$a->strings["Enable"] = "Abilita"; -$a->strings["Toggle"] = "Inverti"; -$a->strings["Settings"] = "Impostazioni"; -$a->strings["Author: "] = "Autore: "; -$a->strings["Maintainer: "] = "Manutentore: "; -$a->strings["No themes found."] = "Nessun tema trovato."; -$a->strings["Screenshot"] = "Anteprima"; -$a->strings["[Experimental]"] = "[Sperimentale]"; -$a->strings["[Unsupported]"] = "[Non supportato]"; -$a->strings["Log settings updated."] = "Impostazioni Log aggiornate."; -$a->strings["Clear"] = "Pulisci"; -$a->strings["Debugging"] = "Debugging"; -$a->strings["Log file"] = "File di Log"; -$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica."; -$a->strings["Log level"] = "Livello di Log"; -$a->strings["Update now"] = "Aggiorna adesso"; -$a->strings["Close"] = "Chiudi"; -$a->strings["FTP Host"] = "Indirizzo FTP"; -$a->strings["FTP Path"] = "Percorso FTP"; -$a->strings["FTP User"] = "Utente FTP"; -$a->strings["FTP Password"] = "Pasword FTP"; -$a->strings["New Message"] = "Nuovo messaggio"; -$a->strings["No recipient selected."] = "Nessun destinatario selezionato."; -$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto."; -$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato."; -$a->strings["Message collection failure."] = "Errore recuperando il messaggio."; -$a->strings["Message sent."] = "Messaggio inviato."; -$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?"; -$a->strings["Message deleted."] = "Messaggio eliminato."; -$a->strings["Conversation removed."] = "Conversazione rimossa."; -$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; -$a->strings["Send Private Message"] = "Invia un messaggio privato"; -$a->strings["To:"] = "A:"; -$a->strings["Subject:"] = "Oggetto:"; -$a->strings["Your message:"] = "Il tuo messaggio:"; -$a->strings["Upload photo"] = "Carica foto"; -$a->strings["Insert web link"] = "Inserisci link"; -$a->strings["No messages."] = "Nessun messaggio."; -$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s"; -$a->strings["You and %s"] = "Tu e %s"; -$a->strings["%s and You"] = "%s e Tu"; -$a->strings["Delete conversation"] = "Elimina la conversazione"; -$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; -$a->strings["%d message"] = array( - 0 => "%d messaggio", - 1 => "%d messaggi", -); -$a->strings["Message not available."] = "Messaggio non disponibile."; -$a->strings["Delete message"] = "Elimina il messaggio"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente."; -$a->strings["Send Reply"] = "Invia la risposta"; -$a->strings["Item not found"] = "Oggetto non trovato"; -$a->strings["Edit post"] = "Modifica messaggio"; -$a->strings["upload photo"] = "carica foto"; -$a->strings["Attach file"] = "Allega file"; -$a->strings["attach file"] = "allega file"; -$a->strings["web link"] = "link web"; -$a->strings["Insert video link"] = "Inserire collegamento video"; -$a->strings["video link"] = "link video"; -$a->strings["Insert audio link"] = "Inserisci collegamento audio"; -$a->strings["audio link"] = "link audio"; -$a->strings["Set your location"] = "La tua posizione"; -$a->strings["set location"] = "posizione"; -$a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser"; -$a->strings["clear location"] = "canc. pos."; -$a->strings["Permission settings"] = "Impostazioni permessi"; -$a->strings["CC: email addresses"] = "CC: indirizzi email"; -$a->strings["Public post"] = "Messaggio pubblico"; -$a->strings["Set title"] = "Scegli un titolo"; -$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com"; -$a->strings["Profile not found."] = "Profilo non trovato."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata."; -$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito."; -$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: "; -$a->strings["Confirmation completed successfully."] = "Conferma completata con successo."; -$a->strings["Remote site reported: "] = "Il sito remoto riporta: "; -$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova."; -$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata."; -$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici"; -$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."; -$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito."; -$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s"; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."; -$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."; -$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"; -$a->strings["Connection accepted at %s"] = "Connession accettata su %s"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s"; -$a->strings["Event title and start time are required."] = "Titolo e ora di inizio dell'evento sono richiesti."; -$a->strings["l, F j"] = "l j F"; -$a->strings["Edit event"] = "Modifca l'evento"; -$a->strings["link to source"] = "Collegamento all'originale"; -$a->strings["Events"] = "Eventi"; -$a->strings["Create New Event"] = "Crea un nuovo evento"; -$a->strings["Previous"] = "Precendente"; -$a->strings["Next"] = "Successivo"; -$a->strings["hour:minute"] = "ora:minuti"; -$a->strings["Event details"] = "Dettagli dell'evento"; -$a->strings["Format is %s %s. Starting date and Title are required."] = "Il formato è %s %s. Data di inizio e Titolo sono richiesti."; -$a->strings["Event Starts:"] = "L'evento inizia:"; -$a->strings["Required"] = "Richiesto"; -$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è definita"; -$a->strings["Event Finishes:"] = "L'evento finisce:"; -$a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di chi legge"; -$a->strings["Description:"] = "Descrizione:"; -$a->strings["Location:"] = "Posizione:"; -$a->strings["Title:"] = "Titolo:"; -$a->strings["Share this event"] = "Condividi questo evento"; -$a->strings["Photos"] = "Foto"; -$a->strings["Files"] = "File"; -$a->strings["Welcome to %s"] = "Benvenuto su %s"; -$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; -$a->strings["Visible to:"] = "Visibile a:"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numero giornaliero di messaggi per %s superato. Invio fallito."; -$a->strings["Unable to check your home location."] = "Impossibile controllare la tua posizione di origine."; -$a->strings["No recipient."] = "Nessun destinatario."; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti."; -$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; -$a->strings["Edit contact"] = "Modifca contatto"; -$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo"; -$a->strings["This is Friendica, version"] = "Questo è Friendica, versione"; -$a->strings["running at web location"] = "in esecuzione all'indirizzo web"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Visita Friendica.com per saperne di più sul progetto Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com"; -$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate"; -$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata"; -$a->strings["Remove My Account"] = "Rimuovi il mio account"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."; -$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; -$a->strings["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d"; -$a->strings["Unable to process image."] = "Impossibile caricare l'immagine."; -$a->strings["Wall Photos"] = "Foto della bacheca"; -$a->strings["Image upload failed."] = "Caricamento immagine fallito."; -$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione"; -$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:"; -$a->strings["Please login to continue."] = "Effettua il login per continuare."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; -$a->strings["Photo Albums"] = "Album foto"; -$a->strings["Contact Photos"] = "Foto dei contatti"; -$a->strings["Upload New Photos"] = "Carica nuove foto"; -$a->strings["everybody"] = "tutti"; -$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili"; -$a->strings["Profile Photos"] = "Foto del profilo"; -$a->strings["Album not found."] = "Album non trovato."; -$a->strings["Delete Album"] = "Rimuovi album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Vuoi davvero cancellare questo album e tutte le sue foto?"; -$a->strings["Delete Photo"] = "Rimuovi foto"; -$a->strings["Do you really want to delete this photo?"] = "Vuoi veramente cancellare questa foto?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s è stato taggato in %2\$s da %3\$s"; -$a->strings["a photo"] = "una foto"; -$a->strings["Image exceeds size limit of "] = "L'immagine supera il limite di"; -$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; -$a->strings["No photos selected"] = "Nessuna foto selezionata"; -$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti."; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Hai usato %1$.2f MBytes su %2$.2f disponibili."; -$a->strings["Upload Photos"] = "Carica foto"; -$a->strings["New album name: "] = "Nome nuovo album: "; -$a->strings["or existing album name: "] = "o nome di un album esistente: "; -$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload"; -$a->strings["Permissions"] = "Permessi"; -$a->strings["Show to Groups"] = "Mostra ai gruppi"; -$a->strings["Show to Contacts"] = "Mostra ai contatti"; -$a->strings["Private Photo"] = "Foto privata"; -$a->strings["Public Photo"] = "Foto pubblica"; -$a->strings["Edit Album"] = "Modifica album"; -$a->strings["Show Newest First"] = "Mostra nuove foto per prime"; -$a->strings["Show Oldest First"] = "Mostra vecchie foto per prime"; -$a->strings["View Photo"] = "Vedi foto"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato."; -$a->strings["Photo not available"] = "Foto non disponibile"; -$a->strings["View photo"] = "Vedi foto"; -$a->strings["Edit photo"] = "Modifica foto"; -$a->strings["Use as profile photo"] = "Usa come foto del profilo"; -$a->strings["View Full Size"] = "Vedi dimensione intera"; -$a->strings["Tags: "] = "Tag: "; -$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]"; -$a->strings["Rotate CW (right)"] = "Ruota a destra"; -$a->strings["Rotate CCW (left)"] = "Ruota a sinistra"; -$a->strings["New album name"] = "Nuovo nome dell'album"; -$a->strings["Caption"] = "Titolo"; -$a->strings["Add a Tag"] = "Aggiungi tag"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Private photo"] = "Foto privata"; -$a->strings["Public photo"] = "Foto pubblica"; -$a->strings["Share"] = "Condividi"; -$a->strings["View Album"] = "Sfoglia l'album"; -$a->strings["Recent Photos"] = "Foto recenti"; -$a->strings["No profile"] = "Nessun profilo"; -$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s"; -$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 nell'invio del 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."] = "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."; -$a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): "; -$a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco pubblico?"; -$a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito."; -$a->strings["Your invitation ID: "] = "L'ID del tuo invito:"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo nome completo (es. Mario Rossi): "; -$a->strings["Your Email Address: "] = "Il tuo indirizzo email: "; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@\$sitename'."; -$a->strings["Choose a nickname: "] = "Scegli un nome utente: "; -$a->strings["Register"] = "Registrati"; -$a->strings["No valid account found."] = "Nessun account valido trovato."; -$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; -$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."; -$a->strings["Password Reset"] = "Reimpostazione password"; -$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto."; -$a->strings["Your new password is"] = "La tua nuova password è"; -$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; -$a->strings["click here to login"] = "clicca qui per entrare"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso."; -$a->strings["Your password has been changed at %s"] = "La tua password presso %s è stata cambiata"; -$a->strings["Forgot your Password?"] = "Hai dimenticato la password?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password."; -$a->strings["Nickname or Email: "] = "Nome utente o email: "; -$a->strings["Reset"] = "Reimposta"; -$a->strings["System down for maintenance"] = "Sistema in manutenzione"; -$a->strings["Item not available."] = "Oggetto non disponibile."; -$a->strings["Item was not found."] = "Oggetto non trovato."; -$a->strings["Applications"] = "Applicazioni"; -$a->strings["No installed applications."] = "Nessuna applicazione installata."; -$a->strings["Help:"] = "Guida:"; -$a->strings["Help"] = "Guida"; -$a->strings["Could not access contact record."] = "Non è possibile accedere al contatto."; -$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; -$a->strings["Contact updated."] = "Contatto aggiornato."; -$a->strings["Contact has been blocked"] = "Il contatto è stato bloccato"; -$a->strings["Contact has been unblocked"] = "Il contatto è stato sbloccato"; -$a->strings["Contact has been ignored"] = "Il contatto è ignorato"; -$a->strings["Contact has been unignored"] = "Il contatto non è più ignorato"; -$a->strings["Contact has been archived"] = "Il contatto è stato archiviato"; -$a->strings["Contact has been unarchived"] = "Il contatto è stato dearchiviato"; -$a->strings["Do you really want to delete this contact?"] = "Vuoi veramente cancellare questo contatto?"; -$a->strings["Contact has been removed."] = "Il contatto è stato rimosso."; -$a->strings["You are mutual friends with %s"] = "Sei amico reciproco con %s"; -$a->strings["You are sharing with %s"] = "Stai condividendo con %s"; -$a->strings["%s is sharing with you"] = "%s sta condividendo con te"; -$a->strings["Private communications are not available for this contact."] = "Le comunicazioni private non sono disponibili per questo contatto."; -$a->strings["Never"] = "Mai"; -$a->strings["(Update was successful)"] = "(L'aggiornamento è stato completato)"; -$a->strings["(Update was not successful)"] = "(L'aggiornamento non è stato completato)"; -$a->strings["Suggest friends"] = "Suggerisci amici"; -$a->strings["Network type: %s"] = "Tipo di rete: %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d contatto in comune", - 1 => "%d contatti in comune", -); -$a->strings["View all contacts"] = "Vedi tutti i contatti"; -$a->strings["Toggle Blocked status"] = "Inverti stato \"Blocca\""; -$a->strings["Unignore"] = "Non ignorare"; -$a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\""; -$a->strings["Unarchive"] = "Dearchivia"; -$a->strings["Archive"] = "Archivia"; -$a->strings["Toggle Archive status"] = "Inverti stato \"Archiviato\""; -$a->strings["Repair"] = "Ripara"; -$a->strings["Advanced Contact Settings"] = "Impostazioni avanzate Contatto"; -$a->strings["Communications lost with this contact!"] = "Comunicazione con questo contatto persa!"; -$a->strings["Contact Editor"] = "Editor dei Contatti"; -$a->strings["Profile Visibility"] = "Visibilità del profilo"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."; -$a->strings["Contact Information / Notes"] = "Informazioni / Note sul contatto"; -$a->strings["Edit contact notes"] = "Modifica note contatto"; -$a->strings["Block/Unblock contact"] = "Blocca/Sblocca contatto"; -$a->strings["Ignore contact"] = "Ignora il contatto"; -$a->strings["Repair URL settings"] = "Impostazioni riparazione URL"; -$a->strings["View conversations"] = "Vedi conversazioni"; -$a->strings["Delete contact"] = "Rimuovi contatto"; -$a->strings["Last update:"] = "Ultimo aggiornamento:"; -$a->strings["Update public posts"] = "Aggiorna messaggi pubblici"; -$a->strings["Currently blocked"] = "Bloccato"; -$a->strings["Currently ignored"] = "Ignorato"; -$a->strings["Currently archived"] = "Al momento archiviato"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Risposte ai tuoi post pubblici possono essere comunque visibili"; -$a->strings["Suggestions"] = "Suggerimenti"; -$a->strings["Suggest potential friends"] = "Suggerisci potenziali amici"; -$a->strings["All Contacts"] = "Tutti i contatti"; -$a->strings["Show all contacts"] = "Mostra tutti i contatti"; -$a->strings["Unblocked"] = "Sbloccato"; -$a->strings["Only show unblocked contacts"] = "Mostra solo contatti non bloccati"; -$a->strings["Blocked"] = "Bloccato"; -$a->strings["Only show blocked contacts"] = "Mostra solo contatti bloccati"; -$a->strings["Ignored"] = "Ignorato"; -$a->strings["Only show ignored contacts"] = "Mostra solo contatti ignorati"; -$a->strings["Archived"] = "Achiviato"; -$a->strings["Only show archived contacts"] = "Mostra solo contatti archiviati"; -$a->strings["Hidden"] = "Nascosto"; -$a->strings["Only show hidden contacts"] = "Mostra solo contatti nascosti"; -$a->strings["Mutual Friendship"] = "Amicizia reciproca"; -$a->strings["is a fan of yours"] = "è un tuo fan"; -$a->strings["you are a fan of"] = "sei un fan di"; -$a->strings["Contacts"] = "Contatti"; -$a->strings["Search your contacts"] = "Cerca nei tuoi contatti"; -$a->strings["Finding: "] = "Ricerca: "; -$a->strings["Find"] = "Trova"; -$a->strings["Common Friends"] = "Amici in comune"; -$a->strings["No contacts in common."] = "Nessun contatto in comune."; -$a->strings["Contact added"] = "Contatto aggiunto"; -$a->strings["Import"] = "Importa"; -$a->strings["Move account"] = "Muovi account"; -$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"; -$a->strings["Account file"] = "File account"; -$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; -$a->strings["Friends of %s"] = "Amici di %s"; -$a->strings["No friends to display."] = "Nessun amico da visualizzare."; -$a->strings["Tag removed"] = "Tag rimosso"; -$a->strings["Remove Item Tag"] = "Rimuovi il tag"; -$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; -$a->strings["Remove"] = "Rimuovi"; -$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica"; -$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."; -$a->strings["Getting Started"] = "Come Iniziare"; -$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."; -$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."; $a->strings["Profile"] = "Profilo"; -$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; -$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; -$a->strings["Profile Keywords"] = "Parole chiave del profilo"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; -$a->strings["Connecting"] = "Collegarsi"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["Importing Emails"] = "Importare le Email"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; -$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; -$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; -$a->strings["Finding New People"] = "Trova nuove persone"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; -$a->strings["Groups"] = "Gruppi"; -$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; -$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."; -$a->strings["Getting Help"] = "Ottenere Aiuto"; -$a->strings["Go to the Help Section"] = "Vai alla sezione Guida"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; -$a->strings["Remove term"] = "Rimuovi termine"; -$a->strings["Saved Searches"] = "Ricerche salvate"; -$a->strings["Search"] = "Cerca"; -$a->strings["No results."] = "Nessun risultato."; -$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato."; -$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; -$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito."; -$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita."; -$a->strings["%d message sent."] = array( - 0 => "%d messaggio inviato.", - 1 => "%d messaggi inviati.", -); -$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."; -$a->strings["Send invitations"] = "Invia inviti"; -$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"; -$a->strings["Account settings"] = "Parametri account"; -$a->strings["Additional features"] = "Funzionalità aggiuntive"; -$a->strings["Display settings"] = "Impostazioni grafiche"; -$a->strings["Connector settings"] = "Impostazioni connettori"; -$a->strings["Plugin settings"] = "Impostazioni plugin"; -$a->strings["Connected apps"] = "Applicazioni collegate"; -$a->strings["Export personal data"] = "Esporta dati personali"; -$a->strings["Remove account"] = "Rimuovi account"; -$a->strings["Missing some important data!"] = "Mancano alcuni dati importanti!"; -$a->strings["Update"] = "Aggiorna"; -$a->strings["Failed to connect with email account using the settings provided."] = "Impossibile collegarsi all'account email con i parametri forniti."; -$a->strings["Email settings updated."] = "Impostazioni e-mail aggiornate."; -$a->strings["Features updated"] = "Funzionalità aggiornate"; -$a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. 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["Private forum has no privacy permissions. Using default privacy group."] = "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito."; -$a->strings["Settings updated."] = "Impostazioni aggiornate."; -$a->strings["Add application"] = "Aggiungi applicazione"; -$a->strings["Consumer Key"] = "Consumer Key"; -$a->strings["Consumer Secret"] = "Consumer Secret"; -$a->strings["Redirect"] = "Redirect"; -$a->strings["Icon url"] = "Url icona"; -$a->strings["You can't edit this application."] = "Non puoi modificare questa applicazione."; -$a->strings["Connected Apps"] = "Applicazioni Collegate"; -$a->strings["Client key starts with"] = "Chiave del client inizia con"; -$a->strings["No name"] = "Nessun nome"; -$a->strings["Remove authorization"] = "Rimuovi l'autorizzazione"; -$a->strings["No Plugin settings configured"] = "Nessun plugin ha impostazioni modificabili"; -$a->strings["Plugin Settings"] = "Impostazioni plugin"; -$a->strings["Off"] = "Spento"; -$a->strings["On"] = "Acceso"; -$a->strings["Additional Features"] = "Funzionalità aggiuntive"; -$a->strings["Built-in support for %s connectivity is %s"] = "Il supporto integrato per la connettività con %s è %s"; -$a->strings["enabled"] = "abilitato"; -$a->strings["disabled"] = "disabilitato"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "L'accesso email è disabilitato su questo sito."; -$a->strings["Connector Settings"] = "Impostazioni Connettore"; -$a->strings["Email/Mailbox Setup"] = "Impostazioni email"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)"; -$a->strings["Last successful email check:"] = "Ultimo controllo email eseguito con successo:"; -$a->strings["IMAP server name:"] = "Nome server IMAP:"; -$a->strings["IMAP port:"] = "Porta IMAP:"; -$a->strings["Security:"] = "Sicurezza:"; -$a->strings["None"] = "Nessuna"; -$a->strings["Email login name:"] = "Nome utente email:"; -$a->strings["Email password:"] = "Password email:"; -$a->strings["Reply-to address:"] = "Indirizzo di risposta:"; -$a->strings["Send public posts to all email contacts:"] = "Invia i messaggi pubblici ai contatti email:"; -$a->strings["Action after import:"] = "Azione post importazione:"; -$a->strings["Mark as seen"] = "Segna come letto"; -$a->strings["Move to folder"] = "Sposta nella cartella"; -$a->strings["Move to folder:"] = "Sposta nella cartella:"; -$a->strings["Display Settings"] = "Impostazioni Grafiche"; -$a->strings["Display Theme:"] = "Tema:"; -$a->strings["Mobile Theme:"] = "Tema mobile:"; -$a->strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo"; -$a->strings["Number of items to display per page:"] = "Numero di elementi da mostrare per pagina:"; -$a->strings["Maximum of 100 items"] = "Massimo 100 voci"; -$a->strings["Don't show emoticons"] = "Non mostrare le emoticons"; -$a->strings["Normal Account Page"] = "Pagina Account Normale"; -$a->strings["This account is a normal personal profile"] = "Questo account è un normale profilo personale"; -$a->strings["Soapbox Page"] = "Pagina Sandbox"; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca"; -$a->strings["Community Forum/Celebrity Account"] = "Account Celebrità/Forum comunitario"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca"; -$a->strings["Automatic Friend Page"] = "Pagina con amicizia automatica"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico"; -$a->strings["Private Forum [Experimental]"] = "Forum privato [sperimentale]"; -$a->strings["Private forum - approved members only"] = "Forum privato - solo membri approvati"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opzionale) Consente di loggarti in questo account con questo OpenID"; -$a->strings["Publish your default profile in your local site directory?"] = "Pubblica il tuo profilo predefinito nell'elenco locale del sito"; -$a->strings["Publish your default profile in the global social directory?"] = "Pubblica il tuo profilo predefinito nell'elenco sociale globale"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito"; -$a->strings["Hide your profile details from unknown viewers?"] = "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?"; -$a->strings["Allow friends to post to your profile page?"] = "Permetti agli amici di scrivere sulla tua pagina profilo?"; -$a->strings["Allow friends to tag your posts?"] = "Permetti agli amici di taggare i tuoi messaggi?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Ci permetti di suggerirti come potenziale amico ai nuovi membri?"; -$a->strings["Permit unknown people to send you private mail?"] = "Permetti a utenti sconosciuti di inviarti messaggi privati?"; -$a->strings["Profile is not published."] = "Il profilo non è pubblicato."; -$a->strings["or"] = "o"; -$a->strings["Your Identity Address is"] = "L'indirizzo della tua identità è"; -$a->strings["Automatically expire posts after this many days:"] = "Fai scadere i post automaticamente dopo x giorni:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se lasciato vuoto, i messaggi non verranno cancellati."; -$a->strings["Advanced expiration settings"] = "Impostazioni avanzate di scandenza"; -$a->strings["Advanced Expiration"] = "Scadenza avanzata"; -$a->strings["Expire posts:"] = "Fai scadere i post:"; -$a->strings["Expire personal notes:"] = "Fai scadere le Note personali:"; -$a->strings["Expire starred posts:"] = "Fai scadere i post Speciali:"; -$a->strings["Expire photos:"] = "Fai scadere le foto:"; -$a->strings["Only expire posts by others:"] = "Fai scadere solo i post degli altri:"; -$a->strings["Account Settings"] = "Impostazioni account"; -$a->strings["Password Settings"] = "Impostazioni password"; -$a->strings["New Password:"] = "Nuova password:"; -$a->strings["Confirm:"] = "Conferma:"; -$a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non effettuare variazioni alla password"; -$a->strings["Basic Settings"] = "Impostazioni base"; $a->strings["Full Name:"] = "Nome completo:"; -$a->strings["Email Address:"] = "Indirizzo Email:"; -$a->strings["Your Timezone:"] = "Il tuo fuso orario:"; -$a->strings["Default Post Location:"] = "Località predefinita:"; -$a->strings["Use Browser Location:"] = "Usa la località rilevata dal browser:"; -$a->strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy"; -$a->strings["Maximum Friend Requests/Day:"] = "Numero massimo di richieste di amicizia al giorno:"; -$a->strings["(to prevent spam abuse)"] = "(per prevenire lo spam)"; -$a->strings["Default Post Permissions"] = "Permessi predefiniti per i messaggi"; -$a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; -$a->strings["Default Private Post"] = ""; -$a->strings["Default Public Post"] = ""; -$a->strings["Default Permissions for New Posts"] = "Permessi predefiniti per i nuovi post"; -$a->strings["Maximum private messages per day from unknown people:"] = "Numero massimo di messaggi privati da utenti sconosciuti per giorno:"; -$a->strings["Notification Settings"] = "Impostazioni notifiche"; -$a->strings["By default post a status message when:"] = "Invia un messaggio di stato quando:"; -$a->strings["accepting a friend request"] = "accetti una richiesta di amicizia"; -$a->strings["joining a forum/community"] = "ti unisci a un forum/comunità"; -$a->strings["making an interesting profile change"] = "fai un interessante modifica al profilo"; -$a->strings["Send a notification email when:"] = "Invia una mail di notifica quando:"; -$a->strings["You receive an introduction"] = "Ricevi una presentazione"; -$a->strings["Your introductions are confirmed"] = "Le tue presentazioni sono confermate"; -$a->strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla bacheca del tuo profilo"; -$a->strings["Someone writes a followup comment"] = "Qualcuno scrive un commento a un tuo messaggio"; -$a->strings["You receive a private message"] = "Ricevi un messaggio privato"; -$a->strings["You receive a friend suggestion"] = "Hai ricevuto un suggerimento di amicizia"; -$a->strings["You are tagged in a post"] = "Sei stato taggato in un post"; -$a->strings["You are poked/prodded/etc. in a post"] = "Sei 'toccato'/'spronato'/ecc. in un post"; -$a->strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate Account/Tipo di pagina"; -$a->strings["Change the behaviour of this account for special situations"] = "Modifica il comportamento di questo account in situazioni speciali"; -$a->strings["Item has been removed."] = "L'oggetto è stato rimosso."; -$a->strings["People Search"] = "Cerca persone"; -$a->strings["No matches"] = "Nessun risultato"; -$a->strings["Profile deleted."] = "Profilo elminato."; -$a->strings["Profile-"] = "Profilo-"; -$a->strings["New profile created."] = "Il nuovo profilo è stato creato."; -$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; -$a->strings["Profile Name is required."] = "Il nome profilo è obbligatorio ."; -$a->strings["Marital Status"] = "Stato civile"; -$a->strings["Romantic Partner"] = "Partner romantico"; -$a->strings["Likes"] = "Mi piace"; -$a->strings["Dislikes"] = "Non mi piace"; -$a->strings["Work/Employment"] = "Lavoro/Impiego"; -$a->strings["Religion"] = "Religione"; -$a->strings["Political Views"] = "Orientamento Politico"; -$a->strings["Gender"] = "Sesso"; -$a->strings["Sexual Preference"] = "Preferenza sessuale"; -$a->strings["Homepage"] = "Homepage"; -$a->strings["Interests"] = "Interessi"; -$a->strings["Address"] = "Indirizzo"; -$a->strings["Location"] = "Posizione"; -$a->strings["Profile updated."] = "Profilo aggiornato."; -$a->strings[" and "] = "e "; -$a->strings["public profile"] = "profilo pubblico"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = "- Visita %2\$s di %1\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha un %2\$s aggiornato. Ha cambiato %3\$s"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"; -$a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; -$a->strings["Change Profile Photo"] = "Cambia la foto del profilo"; -$a->strings["View this profile"] = "Visualizza questo profilo"; -$a->strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni"; -$a->strings["Clone this profile"] = "Clona questo profilo"; -$a->strings["Delete this profile"] = "Elimina questo profilo"; -$a->strings["Profile Name:"] = "Nome del profilo:"; -$a->strings["Your Full Name:"] = "Il tuo nome completo:"; -$a->strings["Title/Description:"] = "Breve descrizione (es. titolo, posizione, altro):"; -$a->strings["Your Gender:"] = "Il tuo sesso:"; -$a->strings["Birthday (%s):"] = "Compleanno (%s)"; -$a->strings["Street Address:"] = "Indirizzo (via/piazza):"; -$a->strings["Locality/City:"] = "Località:"; -$a->strings["Postal/Zip Code:"] = "CAP:"; -$a->strings["Country:"] = "Nazione:"; -$a->strings["Region/State:"] = "Regione/Stato:"; -$a->strings[" Marital Status:"] = " Stato sentimentale:"; -$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esempio: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Dal [data]:"; -$a->strings["Sexual Preference:"] = "Preferenze sessuali:"; -$a->strings["Homepage URL:"] = "Homepage:"; -$a->strings["Hometown:"] = "Paese natale:"; -$a->strings["Political Views:"] = "Orientamento politico:"; -$a->strings["Religious Views:"] = "Orientamento religioso:"; -$a->strings["Public Keywords:"] = "Parole chiave visibili a tutti:"; -$a->strings["Private Keywords:"] = "Parole chiave private:"; -$a->strings["Likes:"] = "Mi piace:"; -$a->strings["Dislikes:"] = "Non mi piace:"; -$a->strings["Example: fishing photography software"] = "Esempio: pesca fotografia programmazione"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Usato per cercare tra i profili, non è mai visibile agli altri)"; -$a->strings["Tell us about yourself..."] = "Raccontaci di te..."; -$a->strings["Hobbies/Interests"] = "Hobby/interessi"; -$a->strings["Contact information and Social Networks"] = "Informazioni su contatti e social network"; -$a->strings["Musical interests"] = "Interessi musicali"; -$a->strings["Books, literature"] = "Libri, letteratura"; -$a->strings["Television"] = "Televisione"; -$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento"; -$a->strings["Love/romance"] = "Amore"; -$a->strings["Work/employment"] = "Lavoro/impiego"; -$a->strings["School/education"] = "Scuola/educazione"; -$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["Edit/Manage Profiles"] = "Modifica / Gestisci profili"; -$a->strings["Change profile photo"] = "Cambia la foto del profilo"; -$a->strings["Create New Profile"] = "Crea un nuovo profilo"; -$a->strings["Profile Image"] = "Immagine del Profilo"; -$a->strings["visible to everybody"] = "visibile a tutti"; -$a->strings["Edit visibility"] = "Modifica visibilità"; -$a->strings["link"] = "collegamento"; -$a->strings["Export account"] = "Esporta account"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."; -$a->strings["Export all"] = "Esporta tutto"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"; -$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico"; -$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio"; -$a->strings["{0} requested registration"] = "{0} chiede la registrazione"; -$a->strings["{0} commented %s's post"] = "{0} ha commentato il post di %s"; -$a->strings["{0} liked %s's post"] = "a {0} piace il post di %s"; -$a->strings["{0} disliked %s's post"] = "a {0} non piace il post di %s"; -$a->strings["{0} is now friends with %s"] = "{0} ora è amico di %s"; -$a->strings["{0} posted"] = "{0} ha inviato un nuovo messaggio"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} ha taggato il post di %s con #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} ti ha citato in un post"; -$a->strings["Nothing new here"] = "Niente di nuovo qui"; -$a->strings["Clear notifications"] = "Pulisci le notifiche"; -$a->strings["Not available."] = "Non disponibile."; -$a->strings["Community"] = "Comunità"; -$a->strings["Save to Folder:"] = "Salva nella Cartella:"; -$a->strings["- select -"] = "- seleziona -"; -$a->strings["Save"] = "Salva"; -$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; -$a->strings["File upload failed."] = "Caricamento del file non riuscito."; -$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; -$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo"; -$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; -$a->strings["Visible To"] = "Visibile a"; -$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)"; -$a->strings["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?"; -$a->strings["Friend Suggestions"] = "Contatti suggeriti"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; -$a->strings["Connect"] = "Connetti"; -$a->strings["Ignore/Hide"] = "Ignora / Nascondi"; -$a->strings["Access denied."] = "Accesso negato."; -$a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s"; -$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"; -$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:"; -$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato."; -$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina"; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."; -$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti"; -$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti"; -$a->strings["Potential Delegates"] = "Delegati Potenziali"; -$a->strings["Add"] = "Aggiungi"; -$a->strings["No entries."] = "Nessun articolo."; -$a->strings["No contacts."] = "Nessun contatto."; -$a->strings["View Contacts"] = "Visualizza i contatti"; -$a->strings["Personal Notes"] = "Note personali"; -$a->strings["Poke/Prod"] = "Tocca/Pungola"; -$a->strings["poke, prod or do other things to somebody"] = "tocca, pungola o fai altre cose a qualcuno"; -$a->strings["Recipient"] = "Destinatario"; -$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi fare al destinatario"; -$a->strings["Make this post private"] = "Rendi questo post privato"; -$a->strings["Global Directory"] = "Elenco globale"; -$a->strings["Find on this site"] = "Cerca nel sito"; -$a->strings["Site Directory"] = "Elenco del sito"; -$a->strings["Gender: "] = "Genere:"; $a->strings["Gender:"] = "Genere:"; -$a->strings["Status:"] = "Stato:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["About:"] = "Informazioni:"; -$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta)."; -$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -$a->strings["Time Conversion"] = "Conversione Ora"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti."; -$a->strings["UTC time: %s"] = "Ora UTC: %s"; -$a->strings["Current timezone: %s"] = "Fuso orario corrente: %s"; -$a->strings["Converted localtime: %s"] = "Ora locale convertita: %s"; -$a->strings["Please select your timezone:"] = "Selezionare il tuo fuso orario:"; -$a->strings["Post successful."] = "Inviato!"; -$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; -$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; -$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; -$a->strings["Upload File:"] = "Carica un file:"; -$a->strings["Select a profile:"] = "Seleziona un profilo:"; -$a->strings["Upload"] = "Carica"; -$a->strings["skip this step"] = "salta questo passaggio"; -$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; -$a->strings["Crop Image"] = "Ritaglia immagine"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore."; -$a->strings["Done Editing"] = "Finito"; -$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; -$a->strings["Friendica Social Communications Server - Setup"] = "Friendica Social Communications Server - Setup"; -$a->strings["Could not connect to database."] = " Impossibile collegarsi con il database."; -$a->strings["Could not create table."] = "Impossibile creare le tabelle."; -$a->strings["Your Friendica site database has been installed."] = "Il tuo Friendica è stato installato."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Leggi il file \"INSTALL.txt\"."; -$a->strings["System check"] = "Controllo sistema"; -$a->strings["Check again"] = "Controlla ancora"; -$a->strings["Database connection"] = "Connessione al database"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per installare Friendica dobbiamo sapere come collegarci al tuo database."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."; -$a->strings["Database Server Name"] = "Nome del database server"; -$a->strings["Database Login Name"] = "Nome utente database"; -$a->strings["Database Login Password"] = "Password utente database"; -$a->strings["Database Name"] = "Nome database"; -$a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."; -$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web"; -$a->strings["Site settings"] = "Impostazioni sito"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Activating scheduled tasks'"; -$a->strings["PHP executable path"] = "Percorso eseguibile PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione."; -$a->strings["Command line PHP"] = "PHP da riga di comando"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; -$a->strings["This is required for message delivery to work."] = "E' obbligatorio per far funzionare la consegna dei messaggi."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Genera chiavi di criptazione"; -$a->strings["libCurl PHP module"] = "modulo PHP libCurl"; -$a->strings["GD graphics PHP module"] = "modulo PHP GD graphics"; -$a->strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; -$a->strings["mysqli PHP module"] = "modulo PHP mysqli"; -$a->strings["mb_string PHP module"] = "modulo PHP mb_string"; -$a->strings["Apache mod_rewrite module"] = "Modulo mod_rewrite di Apache"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato."; -$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato"; -$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato."; -$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica"; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 è scrivibile"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server."; -$a->strings["Url rewrite is working"] = "La riscrittura degli url funziona"; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito."; -$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; -$a->strings["

What next

"] = "

Cosa fare ora

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."; -$a->strings["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["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti."; -$a->strings["Group Name: "] = "Nome del gruppo:"; -$a->strings["Group removed."] = "Gruppo rimosso."; -$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; -$a->strings["Group Editor"] = "Modifica gruppo"; -$a->strings["Members"] = "Membri"; -$a->strings["No such group"] = "Nessun gruppo"; -$a->strings["Group is empty"] = "Il gruppo è vuoto"; -$a->strings["Group: "] = "Gruppo: "; -$a->strings["View in context"] = "Vedi nel contesto"; -$a->strings["Account approved."] = "Account approvato."; -$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; -$a->strings["Please login."] = "Accedi."; -$a->strings["Profile Match"] = "Profili corrispondenti"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."; -$a->strings["is interested in:"] = "è interessato a:"; -$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; -$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."; -$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."; -$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento."; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s"; -$a->strings["Mood"] = "Umore"; -$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici"; -$a->strings["Search Results For:"] = "Cerca risultati per:"; -$a->strings["add"] = "aggiungi"; -$a->strings["Commented Order"] = "Ordina per commento"; -$a->strings["Sort by Comment Date"] = "Ordina per data commento"; -$a->strings["Posted Order"] = "Ordina per invio"; -$a->strings["Sort by Post Date"] = "Ordina per data messaggio"; -$a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono"; -$a->strings["New"] = "Nuovo"; -$a->strings["Activity Stream - by date"] = "Activity Stream - per data"; -$a->strings["Shared Links"] = "Links condivisi"; -$a->strings["Interesting Links"] = "Link Interessanti"; -$a->strings["Starred"] = "Preferiti"; -$a->strings["Favourite Posts"] = "Messaggi preferiti"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Attenzione: questo gruppo contiene %s membro da un network insicuro.", - 1 => "Attenzione: questo gruppo contiene %s membri da un network insicuro.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente."; -$a->strings["Contact: "] = "Contatto:"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."; -$a->strings["Invalid contact."] = "Contatto non valido."; -$a->strings["Contact settings applied."] = "Contatto modificato."; -$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; -$a->strings["Repair Contact Settings"] = "Ripara il contatto"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; -$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; -$a->strings["Account Nickname"] = "Nome utente"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; -$a->strings["Account URL"] = "URL dell'utente"; -$a->strings["Friend Request URL"] = "URL Richiesta Amicizia"; -$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia"; -$a->strings["Notification Endpoint URL"] = "URL Notifiche"; -$a->strings["Poll/Feed URL"] = "URL Feed"; -$a->strings["New photo from this URL"] = "Nuova foto da questo URL"; -$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni"; -$a->strings["Your profile page"] = "Pagina del tuo profilo"; -$a->strings["Your contacts"] = "I tuoi contatti"; -$a->strings["Your photos"] = "Le tue foto"; -$a->strings["Your events"] = "I tuoi eventi"; -$a->strings["Personal notes"] = "Note personali"; -$a->strings["Your personal photos"] = "Le tue foto personali"; -$a->strings["Community Pages"] = "Pagine Comunitarie"; -$a->strings["Community Profiles"] = "Profili Comunità"; -$a->strings["Last users"] = "Ultimi utenti"; -$a->strings["Last likes"] = "Ultimi \"mi piace\""; -$a->strings["event"] = "l'evento"; -$a->strings["Last photos"] = "Ultime foto"; -$a->strings["Find Friends"] = "Trova Amici"; -$a->strings["Local Directory"] = "Elenco Locale"; -$a->strings["Similar Interests"] = "Interessi simili"; -$a->strings["Invite Friends"] = "Invita amici"; -$a->strings["Earth Layers"] = ""; -$a->strings["Set zoomfactor for Earth Layers"] = ""; -$a->strings["Set longitude (X) for Earth Layers"] = ""; -$a->strings["Set latitude (Y) for Earth Layers"] = ""; -$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; -$a->strings["Connect Services"] = "Servizi di conessione"; -$a->strings["Last Tweets"] = ""; -$a->strings["Set twitter search term"] = ""; -$a->strings["don't show"] = "non mostrare"; -$a->strings["show"] = "mostra"; -$a->strings["Show/hide boxes at right-hand column:"] = ""; -$a->strings["Theme settings"] = "Impostazioni tema"; -$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti"; -$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti"; -$a->strings["Set resolution for middle column"] = ""; -$a->strings["Set color scheme"] = ""; -$a->strings["Set zoomfactor for Earth Layer"] = ""; -$a->strings["Last tweets"] = ""; -$a->strings["Set colour scheme"] = "Imposta schema colori"; -$a->strings["Alignment"] = "Allineamento"; -$a->strings["Left"] = "Sinistra"; -$a->strings["Center"] = "Centrato"; -$a->strings["Color scheme"] = "Schema colori"; -$a->strings["Posts font size"] = "Dimensione caratteri post"; -$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)"; -$a->strings["Set theme width"] = "Imposta la larghezza del tema"; -$a->strings["Delete this item?"] = "Cancellare questo elemento?"; -$a->strings["show fewer"] = "mostra di meno"; -$a->strings["Update %s failed. See error logs."] = "aggiornamento %s fallito. Guarda i log di errore."; -$a->strings["Update Error at %s"] = "Errore aggiornamento a %s"; -$a->strings["Create a New Account"] = "Crea un nuovo account"; -$a->strings["Logout"] = "Esci"; -$a->strings["Login"] = "Accedi"; -$a->strings["Nickname or Email address: "] = "Nome utente o indirizzo email: "; -$a->strings["Password: "] = "Password: "; -$a->strings["Remember me"] = "Ricordati di me"; -$a->strings["Or login using OpenID: "] = "O entra con OpenID:"; -$a->strings["Forgot your password?"] = "Hai dimenticato la password?"; -$a->strings["Website Terms of Service"] = "Condizioni di servizio del sito web "; -$a->strings["terms of service"] = "condizioni del servizio"; -$a->strings["Website Privacy Policy"] = "Politiche di privacy del sito"; -$a->strings["privacy policy"] = "politiche di privacy"; -$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile."; -$a->strings["Edit profile"] = "Modifica il profilo"; -$a->strings["Message"] = "Messaggio"; -$a->strings["Profiles"] = "Profili"; -$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; -$a->strings["g A l F d"] = "g A l d F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[oggi]"; -$a->strings["Birthday Reminders"] = "Promemoria compleanni"; -$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; -$a->strings["[No description]"] = "[Nessuna descrizione]"; -$a->strings["Event Reminders"] = "Promemoria"; -$a->strings["Events this week:"] = "Eventi di questa settimana:"; -$a->strings["Status"] = "Stato"; -$a->strings["Status Messages and Posts"] = "Messaggi di stato e post"; -$a->strings["Profile Details"] = "Dettagli del profilo"; -$a->strings["Events and Calendar"] = "Eventi e calendario"; -$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo"; -$a->strings["General Features"] = "Funzionalità generali"; -$a->strings["Multiple Profiles"] = "Profili multipli"; -$a->strings["Ability to create multiple profiles"] = "Possibilità di creare profili multipli"; -$a->strings["Post Composition Features"] = "Funzionalità di composizione dei post"; -$a->strings["Richtext Editor"] = "Editor visuale"; -$a->strings["Enable richtext editor"] = "Abilita l'editor visuale"; -$a->strings["Post Preview"] = "Anteprima dei post"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli"; -$a->strings["Network Sidebar Widgets"] = "Widget della barra laterale nella pagina Rete"; -$a->strings["Search by Date"] = "Cerca per data"; -$a->strings["Ability to select posts by date ranges"] = "Permette di filtrare i post per data"; -$a->strings["Group Filter"] = "Filtra gruppi"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Abilita il widget per filtrare i post solo per il gruppo selezionato"; -$a->strings["Network Filter"] = "Filtro reti"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Abilita il widget per mostare i post solo per la rete selezionata"; -$a->strings["Save search terms for re-use"] = "Salva i termini cercati per riutilizzarli"; -$a->strings["Network Tabs"] = "Schede pagina Rete"; -$a->strings["Network Personal Tab"] = "Scheda Personali"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita la scheda per mostrare solo i post a cui hai partecipato"; -$a->strings["Network New Tab"] = "Scheda Nuovi"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)"; -$a->strings["Network Shared Links Tab"] = "Scheda Link Condivisi"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Abilita la scheda per mostrare solo i post che contengono link"; -$a->strings["Post/Comment Tools"] = "Strumenti per mesasggi/commenti"; -$a->strings["Multiple Deletion"] = "Eliminazione multipla"; -$a->strings["Select and delete multiple posts/comments at once"] = "Seleziona ed elimina vari messagi e commenti in una volta sola"; -$a->strings["Edit Sent Posts"] = "Modifica i post inviati"; -$a->strings["Edit and correct posts and comments after sending"] = "Modifica e correggi messaggi e commenti dopo averli inviati"; -$a->strings["Tagging"] = "Aggiunta tag"; -$a->strings["Ability to tag existing posts"] = "Permette di aggiungere tag ai post già esistenti"; -$a->strings["Post Categories"] = "Cateorie post"; -$a->strings["Add categories to your posts"] = "Aggiungi categorie ai tuoi post"; -$a->strings["Saved Folders"] = "Cartelle Salvate"; -$a->strings["Ability to file posts under folders"] = "Permette di archiviare i post in cartelle"; -$a->strings["Dislike Posts"] = "Non mi piace"; -$a->strings["Ability to dislike posts/comments"] = "Permetti di inviare \"non mi piace\" ai messaggi"; -$a->strings["Star Posts"] = "Post preferiti"; -$a->strings["Ability to mark special posts with a star indicator"] = "Permette di segnare i post preferiti con una stella"; -$a->strings["Logged out."] = "Uscita effettuata."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."; -$a->strings["The error message was:"] = "Il messaggio riportato era:"; -$a->strings["Starts:"] = "Inizia:"; -$a->strings["Finishes:"] = "Finisce:"; $a->strings["j F, Y"] = "j F Y"; $a->strings["j F"] = "j F"; $a->strings["Birthday:"] = "Compleanno:"; $a->strings["Age:"] = "Età:"; +$a->strings["Status:"] = "Stato:"; $a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Preferenze sessuali:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["Hometown:"] = "Paese natale:"; $a->strings["Tags:"] = "Tag:"; +$a->strings["Political Views:"] = "Orientamento politico:"; $a->strings["Religion:"] = "Religione:"; +$a->strings["About:"] = "Informazioni:"; $a->strings["Hobbies/Interests:"] = "Hobby/Interessi:"; +$a->strings["Likes:"] = "Mi piace:"; +$a->strings["Dislikes:"] = "Non mi piace:"; $a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:"; $a->strings["Musical interests:"] = "Interessi musicali:"; $a->strings["Books, literature:"] = "Libri, letteratura:"; @@ -1274,104 +32,6 @@ $a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intratten $a->strings["Love/Romance:"] = "Amore:"; $a->strings["Work/employment:"] = "Lavoro:"; $a->strings["School/education:"] = "Scuola:"; -$a->strings["[no subject]"] = "[nessun oggetto]"; -$a->strings[" on Last.fm"] = "su Last.fm"; -$a->strings["prev"] = "prec"; -$a->strings["first"] = "primo"; -$a->strings["last"] = "ultimo"; -$a->strings["next"] = "succ"; -$a->strings["newer"] = "nuovi"; -$a->strings["older"] = "vecchi"; -$a->strings["No contacts"] = "Nessun contatto"; -$a->strings["%d Contact"] = array( - 0 => "%d contatto", - 1 => "%d contatti", -); -$a->strings["poke"] = "stuzzica"; -$a->strings["poked"] = "toccato"; -$a->strings["ping"] = "invia un ping"; -$a->strings["pinged"] = "inviato un ping"; -$a->strings["prod"] = "pungola"; -$a->strings["prodded"] = "pungolato"; -$a->strings["slap"] = "schiaffeggia"; -$a->strings["slapped"] = "schiaffeggiato"; -$a->strings["finger"] = "tocca"; -$a->strings["fingered"] = "toccato"; -$a->strings["rebuff"] = "respingi"; -$a->strings["rebuffed"] = "respinto"; -$a->strings["happy"] = "felice"; -$a->strings["sad"] = "triste"; -$a->strings["mellow"] = "rilassato"; -$a->strings["tired"] = "stanco"; -$a->strings["perky"] = "vivace"; -$a->strings["angry"] = "arrabbiato"; -$a->strings["stupified"] = "stupefatto"; -$a->strings["puzzled"] = "confuso"; -$a->strings["interested"] = "interessato"; -$a->strings["bitter"] = "risentito"; -$a->strings["cheerful"] = "giocoso"; -$a->strings["alive"] = "vivo"; -$a->strings["annoyed"] = "annoiato"; -$a->strings["anxious"] = "ansioso"; -$a->strings["cranky"] = "irritabile"; -$a->strings["disturbed"] = "disturbato"; -$a->strings["frustrated"] = "frustato"; -$a->strings["motivated"] = "motivato"; -$a->strings["relaxed"] = "rilassato"; -$a->strings["surprised"] = "sorpreso"; -$a->strings["Monday"] = "Lunedì"; -$a->strings["Tuesday"] = "Martedì"; -$a->strings["Wednesday"] = "Mercoledì"; -$a->strings["Thursday"] = "Giovedì"; -$a->strings["Friday"] = "Venerdì"; -$a->strings["Saturday"] = "Sabato"; -$a->strings["Sunday"] = "Domenica"; -$a->strings["January"] = "Gennaio"; -$a->strings["February"] = "Febbraio"; -$a->strings["March"] = "Marzo"; -$a->strings["April"] = "Aprile"; -$a->strings["May"] = "Maggio"; -$a->strings["June"] = "Giugno"; -$a->strings["July"] = "Luglio"; -$a->strings["August"] = "Agosto"; -$a->strings["September"] = "Settembre"; -$a->strings["October"] = "Ottobre"; -$a->strings["November"] = "Novembre"; -$a->strings["December"] = "Dicembre"; -$a->strings["bytes"] = "bytes"; -$a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; -$a->strings["default"] = "default"; -$a->strings["Select an alternate language"] = "Seleziona una diversa lingua"; -$a->strings["activity"] = "attività"; -$a->strings["post"] = "messaggio"; -$a->strings["Item filed"] = "Messaggio salvato"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -$a->strings["%s's birthday"] = "Compleanno di %s"; -$a->strings["Happy Birthday %s"] = "Buon compleanno %s"; -$a->strings["A new person is sharing with you at "] = "Una nuova persona sta condividendo con te da "; -$a->strings["You have a new follower at "] = "Una nuova persona ti segue su "; -$a->strings["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?"; -$a->strings["Archives"] = "Archivi"; -$a->strings["(no subject)"] = "(nessun oggetto)"; -$a->strings["noreply"] = "nessuna risposta"; -$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; -$a->strings["Attachments:"] = "Allegati:"; -$a->strings["Connect URL missing."] = "URL di connessione mancante."; -$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili."; -$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni."; -$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore"; -$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."; -$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."; -$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto."; -$a->strings["following"] = "segue"; -$a->strings["Welcome "] = "Ciao"; -$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo."; -$a->strings["Welcome back "] = "Ciao "; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla."; $a->strings["Male"] = "Maschio"; $a->strings["Female"] = "Femmina"; $a->strings["Currently Male"] = "Al momento maschio"; @@ -1430,97 +90,60 @@ $a->strings["Uncertain"] = "Incerto"; $a->strings["It's complicated"] = "E' complicato"; $a->strings["Don't care"] = "Non interessa"; $a->strings["Ask me"] = "Chiedimelo"; -$a->strings["Error decoding account file"] = "Errore decodificando il file account"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; -$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "Errore! Non posso importare questo file: la versione dello schema del database non è compatibile."; -$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; -$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; -$a->strings["User creation error"] = "Errore creando l'utente"; -$a->strings["User profile creation error"] = "Errore creando il profile dell'utente"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contatto non importato", - 1 => "%d contatti non importati", -); -$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; -$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa azione eccede i limiti del tuo piano di sottoscrizione."; -$a->strings["This action is not available under your subscription plan."] = "Questa azione non è disponibile nel tuo piano di sottoscrizione."; -$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$s"; -$a->strings["post/item"] = "post/elemento"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito"; -$a->strings["remove"] = "rimuovi"; -$a->strings["Delete Selected Items"] = "Cancella elementi selezionati"; -$a->strings["Follow Thread"] = "Segui la discussione"; +$a->strings["stopped following"] = "tolto dai seguiti"; +$a->strings["Poke"] = "Stuzzica"; $a->strings["View Status"] = "Visualizza stato"; $a->strings["View Profile"] = "Visualizza profilo"; $a->strings["View Photos"] = "Visualizza foto"; $a->strings["Network Posts"] = "Post della Rete"; $a->strings["Edit Contact"] = "Modifica contatti"; $a->strings["Send PM"] = "Invia messaggio privato"; -$a->strings["Poke"] = "Stuzzica"; -$a->strings["%s likes this."] = "Piace a %s."; -$a->strings["%s doesn't like this."] = "Non piace a %s."; -$a->strings["%2\$d people like this"] = "Piace a %2\$d persone."; -$a->strings["%2\$d people don't like this"] = "Non piace a %2\$d persone."; -$a->strings["and"] = "e"; -$a->strings[", and %d other people"] = "e altre %d persone"; -$a->strings["%s like this."] = "Piace a %s."; -$a->strings["%s don't like this."] = "Non piace a %s."; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:"; -$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Where are you right now?"] = "Dove sei ora?"; -$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?"; -$a->strings["Post to Email"] = "Invia a email"; -$a->strings["permissions"] = "permessi"; -$a->strings["Post to Groups"] = "Invia ai Gruppi"; -$a->strings["Post to Contacts"] = "Invia ai Contatti"; -$a->strings["Private post"] = "Post privato"; -$a->strings["Add New Contact"] = "Aggiungi nuovo contatto"; -$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", -); -$a->strings["Find People"] = "Trova persone"; -$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse"; -$a->strings["Connect/Follow"] = "Connetti/segui"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; -$a->strings["Random Profile"] = "Profilo causale"; -$a->strings["Networks"] = "Reti"; -$a->strings["All Networks"] = "Tutte le Reti"; -$a->strings["Everything"] = "Tutto"; -$a->strings["Categories"] = "Categorie"; -$a->strings["End this session"] = "Finisci questa sessione"; -$a->strings["Sign in"] = "Entra"; -$a->strings["Home Page"] = "Home Page"; -$a->strings["Create an account"] = "Crea un account"; -$a->strings["Help and documentation"] = "Guida e documentazione"; -$a->strings["Apps"] = "Applicazioni"; -$a->strings["Addon applications, utilities, games"] = "Applicazioni, utilità e giochi aggiuntivi"; -$a->strings["Search site content"] = "Cerca nel contenuto del sito"; -$a->strings["Conversations on this site"] = "Conversazioni su questo sito"; -$a->strings["Directory"] = "Elenco"; -$a->strings["People directory"] = "Elenco delle persone"; -$a->strings["Conversations from your friends"] = "Conversazioni dai tuoi amici"; -$a->strings["Network Reset"] = "Reset pagina Rete"; -$a->strings["Load Network page with no filters"] = "Carica la pagina Rete senza nessun filtro"; -$a->strings["Friend Requests"] = "Richieste di amicizia"; -$a->strings["See all notifications"] = "Vedi tutte le notifiche"; -$a->strings["Mark all system notifications seen"] = "Segna tutte le notifiche come viste"; -$a->strings["Private mail"] = "Posta privata"; -$a->strings["Inbox"] = "In arrivo"; -$a->strings["Outbox"] = "Inviati"; -$a->strings["Manage"] = "Gestisci"; -$a->strings["Manage other pages"] = "Gestisci altre pagine"; -$a->strings["Delegations"] = "Delegazioni"; -$a->strings["Manage/Edit Profiles"] = "Gestisci/Modifica i profili"; -$a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e contatti"; -$a->strings["Site setup and configuration"] = "Configurazione del sito"; -$a->strings["Navigation"] = "Navigazione"; -$a->strings["Site map"] = "Mappa del sito"; +$a->strings["Image/photo"] = "Immagine/foto"; +$a->strings["%s wrote the following post"] = "%s ha scritto il seguente post"; +$a->strings["$1 wrote:"] = "$1 ha scritto:"; +$a->strings["Encrypted content"] = "Contenuto criptato"; +$a->strings["Visible to everybody"] = "Visibile a tutti"; +$a->strings["show"] = "mostra"; +$a->strings["don't show"] = "non mostrare"; +$a->strings["Logged out."] = "Uscita effettuata."; +$a->strings["Login failed."] = "Accesso fallito."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."; +$a->strings["The error message was:"] = "Il messaggio riportato era:"; +$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +$a->strings["Starts:"] = "Inizia:"; +$a->strings["Finishes:"] = "Finisce:"; +$a->strings["Location:"] = "Posizione:"; +$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; +$a->strings["Connect URL missing."] = "URL di connessione mancante."; +$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili."; +$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni."; +$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore"; +$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."; +$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."; +$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto."; +$a->strings["following"] = "segue"; +$a->strings["An invitation is required."] = "E' richiesto un invito."; +$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato."; +$a->strings["Invalid OpenID url"] = "Url OpenID non valido"; +$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; +$a->strings["Please use a shorter name."] = "Usa un nome più corto."; +$a->strings["Name too short."] = "Il nome è troppo corto."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome)."; +$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito."; +$a->strings["Not a valid email address."] = "L'indirizzo email non è valido."; +$a->strings["Cannot use that email."] = "Non puoi usare quell'email."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera."; +$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."; +$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora."; +$a->strings["default"] = "default"; +$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora."; +$a->strings["Profile Photos"] = "Foto del profilo"; $a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; $a->strings["Block immediately"] = "Blocca immediatamente"; $a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; @@ -1533,13 +156,272 @@ $a->strings["Twice daily"] = "Due volte al dì"; $a->strings["Daily"] = "Giornalmente"; $a->strings["Weekly"] = "Settimanalmente"; $a->strings["Monthly"] = "Mensilmente"; +$a->strings["Friendica"] = "Friendica"; $a->strings["OStatus"] = "Ostatus"; $a->strings["RSS/Atom"] = "RSS / Atom"; +$a->strings["Email"] = "Email"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; $a->strings["Zot!"] = "Zot!"; $a->strings["LinkedIn"] = "LinkedIn"; $a->strings["XMPP/IM"] = "XMPP/IM"; $a->strings["MySpace"] = "MySpace"; $a->strings["Google+"] = "Google+"; +$a->strings["Add New Contact"] = "Aggiungi nuovo contatto"; +$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; +$a->strings["Connect"] = "Connetti"; +$a->strings["%d invitation available"] = array( + 0 => "%d invito disponibile", + 1 => "%d inviti disponibili", +); +$a->strings["Find People"] = "Trova persone"; +$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse"; +$a->strings["Connect/Follow"] = "Connetti/segui"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; +$a->strings["Find"] = "Trova"; +$a->strings["Friend Suggestions"] = "Contatti suggeriti"; +$a->strings["Similar Interests"] = "Interessi simili"; +$a->strings["Random Profile"] = "Profilo causale"; +$a->strings["Invite Friends"] = "Invita amici"; +$a->strings["Networks"] = "Reti"; +$a->strings["All Networks"] = "Tutte le Reti"; +$a->strings["Saved Folders"] = "Cartelle Salvate"; +$a->strings["Everything"] = "Tutto"; +$a->strings["Categories"] = "Categorie"; +$a->strings["%d contact in common"] = array( + 0 => "%d contatto in comune", + 1 => "%d contatti in comune", +); +$a->strings["show more"] = "mostra di più"; +$a->strings[" on Last.fm"] = "su Last.fm"; +$a->strings["view full size"] = "vedi a schermo intero"; +$a->strings["Miscellaneous"] = "Varie"; +$a->strings["year"] = "anno"; +$a->strings["month"] = "mese"; +$a->strings["day"] = "giorno"; +$a->strings["never"] = "mai"; +$a->strings["less than a second ago"] = "meno di un secondo fa"; +$a->strings["years"] = "anni"; +$a->strings["months"] = "mesi"; +$a->strings["week"] = "settimana"; +$a->strings["weeks"] = "settimane"; +$a->strings["days"] = "giorni"; +$a->strings["hour"] = "ora"; +$a->strings["hours"] = "ore"; +$a->strings["minute"] = "minuto"; +$a->strings["minutes"] = "minuti"; +$a->strings["second"] = "secondo"; +$a->strings["seconds"] = "secondi"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; +$a->strings["%s's birthday"] = "Compleanno di %s"; +$a->strings["Happy Birthday %s"] = "Buon compleanno %s"; +$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa azione eccede i limiti del tuo piano di sottoscrizione."; +$a->strings["This action is not available under your subscription plan."] = "Questa azione non è disponibile nel tuo piano di sottoscrizione."; +$a->strings["(no subject)"] = "(nessun oggetto)"; +$a->strings["noreply"] = "nessuna risposta"; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici"; +$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; +$a->strings["photo"] = "foto"; +$a->strings["status"] = "stato"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; +$a->strings["Attachments:"] = "Allegati:"; +$a->strings["[Name Withheld]"] = "[Nome Nascosto]"; +$a->strings["A new person is sharing with you at "] = "Una nuova persona sta condividendo con te da "; +$a->strings["You have a new follower at "] = "Una nuova persona ti segue su "; +$a->strings["Item not found."] = "Elemento non trovato."; +$a->strings["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?"; +$a->strings["Yes"] = "Si"; +$a->strings["Cancel"] = "Annulla"; +$a->strings["Permission denied."] = "Permesso negato."; +$a->strings["Archives"] = "Archivi"; +$a->strings["General Features"] = "Funzionalità generali"; +$a->strings["Multiple Profiles"] = "Profili multipli"; +$a->strings["Ability to create multiple profiles"] = "Possibilità di creare profili multipli"; +$a->strings["Post Composition Features"] = "Funzionalità di composizione dei post"; +$a->strings["Richtext Editor"] = "Editor visuale"; +$a->strings["Enable richtext editor"] = "Abilita l'editor visuale"; +$a->strings["Post Preview"] = "Anteprima dei post"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli"; +$a->strings["Network Sidebar Widgets"] = "Widget della barra laterale nella pagina Rete"; +$a->strings["Search by Date"] = "Cerca per data"; +$a->strings["Ability to select posts by date ranges"] = "Permette di filtrare i post per data"; +$a->strings["Group Filter"] = "Filtra gruppi"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Abilita il widget per filtrare i post solo per il gruppo selezionato"; +$a->strings["Network Filter"] = "Filtro reti"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Abilita il widget per mostare i post solo per la rete selezionata"; +$a->strings["Saved Searches"] = "Ricerche salvate"; +$a->strings["Save search terms for re-use"] = "Salva i termini cercati per riutilizzarli"; +$a->strings["Network Tabs"] = "Schede pagina Rete"; +$a->strings["Network Personal Tab"] = "Scheda Personali"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita la scheda per mostrare solo i post a cui hai partecipato"; +$a->strings["Network New Tab"] = "Scheda Nuovi"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)"; +$a->strings["Network Shared Links Tab"] = "Scheda Link Condivisi"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Abilita la scheda per mostrare solo i post che contengono link"; +$a->strings["Post/Comment Tools"] = "Strumenti per mesasggi/commenti"; +$a->strings["Multiple Deletion"] = "Eliminazione multipla"; +$a->strings["Select and delete multiple posts/comments at once"] = "Seleziona ed elimina vari messagi e commenti in una volta sola"; +$a->strings["Edit Sent Posts"] = "Modifica i post inviati"; +$a->strings["Edit and correct posts and comments after sending"] = "Modifica e correggi messaggi e commenti dopo averli inviati"; +$a->strings["Tagging"] = "Aggiunta tag"; +$a->strings["Ability to tag existing posts"] = "Permette di aggiungere tag ai post già esistenti"; +$a->strings["Post Categories"] = "Cateorie post"; +$a->strings["Add categories to your posts"] = "Aggiungi categorie ai tuoi post"; +$a->strings["Ability to file posts under folders"] = "Permette di archiviare i post in cartelle"; +$a->strings["Dislike Posts"] = "Non mi piace"; +$a->strings["Ability to dislike posts/comments"] = "Permetti di inviare \"non mi piace\" ai messaggi"; +$a->strings["Star Posts"] = "Post preferiti"; +$a->strings["Ability to mark special posts with a star indicator"] = "Permette di segnare i post preferiti con una stella"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +$a->strings["prev"] = "prec"; +$a->strings["first"] = "primo"; +$a->strings["last"] = "ultimo"; +$a->strings["next"] = "succ"; +$a->strings["newer"] = "nuovi"; +$a->strings["older"] = "vecchi"; +$a->strings["No contacts"] = "Nessun contatto"; +$a->strings["%d Contact"] = array( + 0 => "%d contatto", + 1 => "%d contatti", +); +$a->strings["View Contacts"] = "Visualizza i contatti"; +$a->strings["Search"] = "Cerca"; +$a->strings["Save"] = "Salva"; +$a->strings["poke"] = "stuzzica"; +$a->strings["poked"] = "toccato"; +$a->strings["ping"] = "invia un ping"; +$a->strings["pinged"] = "inviato un ping"; +$a->strings["prod"] = "pungola"; +$a->strings["prodded"] = "pungolato"; +$a->strings["slap"] = "schiaffeggia"; +$a->strings["slapped"] = "schiaffeggiato"; +$a->strings["finger"] = "tocca"; +$a->strings["fingered"] = "toccato"; +$a->strings["rebuff"] = "respingi"; +$a->strings["rebuffed"] = "respinto"; +$a->strings["happy"] = "felice"; +$a->strings["sad"] = "triste"; +$a->strings["mellow"] = "rilassato"; +$a->strings["tired"] = "stanco"; +$a->strings["perky"] = "vivace"; +$a->strings["angry"] = "arrabbiato"; +$a->strings["stupified"] = "stupefatto"; +$a->strings["puzzled"] = "confuso"; +$a->strings["interested"] = "interessato"; +$a->strings["bitter"] = "risentito"; +$a->strings["cheerful"] = "giocoso"; +$a->strings["alive"] = "vivo"; +$a->strings["annoyed"] = "annoiato"; +$a->strings["anxious"] = "ansioso"; +$a->strings["cranky"] = "irritabile"; +$a->strings["disturbed"] = "disturbato"; +$a->strings["frustrated"] = "frustato"; +$a->strings["motivated"] = "motivato"; +$a->strings["relaxed"] = "rilassato"; +$a->strings["surprised"] = "sorpreso"; +$a->strings["Monday"] = "Lunedì"; +$a->strings["Tuesday"] = "Martedì"; +$a->strings["Wednesday"] = "Mercoledì"; +$a->strings["Thursday"] = "Giovedì"; +$a->strings["Friday"] = "Venerdì"; +$a->strings["Saturday"] = "Sabato"; +$a->strings["Sunday"] = "Domenica"; +$a->strings["January"] = "Gennaio"; +$a->strings["February"] = "Febbraio"; +$a->strings["March"] = "Marzo"; +$a->strings["April"] = "Aprile"; +$a->strings["May"] = "Maggio"; +$a->strings["June"] = "Giugno"; +$a->strings["July"] = "Luglio"; +$a->strings["August"] = "Agosto"; +$a->strings["September"] = "Settembre"; +$a->strings["October"] = "Ottobre"; +$a->strings["November"] = "Novembre"; +$a->strings["December"] = "Dicembre"; +$a->strings["View Video"] = "Guarda Video"; +$a->strings["bytes"] = "bytes"; +$a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; +$a->strings["link to source"] = "Collegamento all'originale"; +$a->strings["Select an alternate language"] = "Seleziona una diversa lingua"; +$a->strings["event"] = "l'evento"; +$a->strings["activity"] = "attività"; +$a->strings["comment"] = array( + 0 => "", + 1 => "commento", +); +$a->strings["post"] = "messaggio"; +$a->strings["Item filed"] = "Messaggio salvato"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."; +$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti"; +$a->strings["Everybody"] = "Tutti"; +$a->strings["edit"] = "modifica"; +$a->strings["Groups"] = "Gruppi"; +$a->strings["Edit group"] = "Modifica gruppo"; +$a->strings["Create a new group"] = "Crea un nuovo gruppo"; +$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; +$a->strings["add"] = "aggiungi"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$s"; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; +$a->strings["post/item"] = "post/elemento"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito"; +$a->strings["Select"] = "Seleziona"; +$a->strings["Delete"] = "Rimuovi"; +$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; +$a->strings["Categories:"] = "Categorie:"; +$a->strings["Filed under:"] = "Archiviato in:"; +$a->strings["%s from %s"] = "%s da %s"; +$a->strings["View in context"] = "Vedi nel contesto"; +$a->strings["Please wait"] = "Attendi"; +$a->strings["remove"] = "rimuovi"; +$a->strings["Delete Selected Items"] = "Cancella elementi selezionati"; +$a->strings["Follow Thread"] = "Segui la discussione"; +$a->strings["%s likes this."] = "Piace a %s."; +$a->strings["%s doesn't like this."] = "Non piace a %s."; +$a->strings["%2\$d people like this"] = "Piace a %2\$d persone."; +$a->strings["%2\$d people don't like this"] = "Non piace a %2\$d persone."; +$a->strings["and"] = "e"; +$a->strings[", and %d other people"] = "e altre %d persone"; +$a->strings["%s like this."] = "Piace a %s."; +$a->strings["%s don't like this."] = "Non piace a %s."; +$a->strings["Visible to everybody"] = "Visibile a tutti"; +$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; +$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:"; +$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Save to Folder:"] = "Salva nella Cartella:"; +$a->strings["Where are you right now?"] = "Dove sei ora?"; +$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?"; +$a->strings["Post to Email"] = "Invia a email"; +$a->strings["Share"] = "Condividi"; +$a->strings["Upload photo"] = "Carica foto"; +$a->strings["upload photo"] = "carica foto"; +$a->strings["Attach file"] = "Allega file"; +$a->strings["attach file"] = "allega file"; +$a->strings["Insert web link"] = "Inserisci link"; +$a->strings["web link"] = "link web"; +$a->strings["Insert video link"] = "Inserire collegamento video"; +$a->strings["video link"] = "link video"; +$a->strings["Insert audio link"] = "Inserisci collegamento audio"; +$a->strings["audio link"] = "link audio"; +$a->strings["Set your location"] = "La tua posizione"; +$a->strings["set location"] = "posizione"; +$a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser"; +$a->strings["clear location"] = "canc. pos."; +$a->strings["Set title"] = "Scegli un titolo"; +$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)"; +$a->strings["Permission settings"] = "Impostazioni permessi"; +$a->strings["permissions"] = "permessi"; +$a->strings["CC: email addresses"] = "CC: indirizzi email"; +$a->strings["Public post"] = "Messaggio pubblico"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com"; +$a->strings["Preview"] = "Anteprima"; +$a->strings["Post to Groups"] = "Invia ai Gruppi"; +$a->strings["Post to Contacts"] = "Invia ai Contatti"; +$a->strings["Private post"] = "Post privato"; $a->strings["Friendica Notification"] = "Notifica Friendica"; $a->strings["Thank You,"] = "Grazie,"; $a->strings["%s Administrator"] = "Amministratore %s"; @@ -1578,53 +460,1192 @@ $a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from $a->strings["Name:"] = "Nome:"; $a->strings["Photo:"] = "Foto:"; $a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento."; -$a->strings["An invitation is required."] = "E' richiesto un invito."; -$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato."; -$a->strings["Invalid OpenID url"] = "Url OpenID non valido"; -$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste."; -$a->strings["Please use a shorter name."] = "Usa un nome più corto."; -$a->strings["Name too short."] = "Il nome è troppo corto."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome)."; -$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito."; -$a->strings["Not a valid email address."] = "L'indirizzo email non è valido."; -$a->strings["Cannot use that email."] = "Non puoi usare quell'email."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera."; -$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."; -$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora."; -$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora."; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["Image/photo"] = "Immagine/foto"; -$a->strings["%s wrote the following post"] = "%s ha scritto il seguente post"; -$a->strings["$1 wrote:"] = "$1 ha scritto:"; -$a->strings["Encrypted content"] = "Contenuto criptato"; +$a->strings["[no subject]"] = "[nessun oggetto]"; +$a->strings["Wall Photos"] = "Foto della bacheca"; +$a->strings["Nothing new here"] = "Niente di nuovo qui"; +$a->strings["Clear notifications"] = "Pulisci le notifiche"; +$a->strings["Logout"] = "Esci"; +$a->strings["End this session"] = "Finisci questa sessione"; +$a->strings["Status"] = "Stato"; +$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni"; +$a->strings["Your profile page"] = "Pagina del tuo profilo"; +$a->strings["Photos"] = "Foto"; +$a->strings["Your photos"] = "Le tue foto"; +$a->strings["Events"] = "Eventi"; +$a->strings["Your events"] = "I tuoi eventi"; +$a->strings["Personal notes"] = "Note personali"; +$a->strings["Your personal photos"] = "Le tue foto personali"; +$a->strings["Login"] = "Accedi"; +$a->strings["Sign in"] = "Entra"; +$a->strings["Home"] = "Home"; +$a->strings["Home Page"] = "Home Page"; +$a->strings["Register"] = "Registrati"; +$a->strings["Create an account"] = "Crea un account"; +$a->strings["Help"] = "Guida"; +$a->strings["Help and documentation"] = "Guida e documentazione"; +$a->strings["Apps"] = "Applicazioni"; +$a->strings["Addon applications, utilities, games"] = "Applicazioni, utilità e giochi aggiuntivi"; +$a->strings["Search site content"] = "Cerca nel contenuto del sito"; +$a->strings["Community"] = "Comunità"; +$a->strings["Conversations on this site"] = "Conversazioni su questo sito"; +$a->strings["Directory"] = "Elenco"; +$a->strings["People directory"] = "Elenco delle persone"; +$a->strings["Network"] = "Rete"; +$a->strings["Conversations from your friends"] = "Conversazioni dai tuoi amici"; +$a->strings["Network Reset"] = "Reset pagina Rete"; +$a->strings["Load Network page with no filters"] = "Carica la pagina Rete senza nessun filtro"; +$a->strings["Introductions"] = "Presentazioni"; +$a->strings["Friend Requests"] = "Richieste di amicizia"; +$a->strings["Notifications"] = "Notifiche"; +$a->strings["See all notifications"] = "Vedi tutte le notifiche"; +$a->strings["Mark all system notifications seen"] = "Segna tutte le notifiche come viste"; +$a->strings["Messages"] = "Messaggi"; +$a->strings["Private mail"] = "Posta privata"; +$a->strings["Inbox"] = "In arrivo"; +$a->strings["Outbox"] = "Inviati"; +$a->strings["New Message"] = "Nuovo messaggio"; +$a->strings["Manage"] = "Gestisci"; +$a->strings["Manage other pages"] = "Gestisci altre pagine"; +$a->strings["Delegations"] = "Delegazioni"; +$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina"; +$a->strings["Settings"] = "Impostazioni"; +$a->strings["Account settings"] = "Parametri account"; +$a->strings["Profiles"] = "Profili"; +$a->strings["Manage/Edit Profiles"] = "Gestisci/Modifica i profili"; +$a->strings["Contacts"] = "Contatti"; +$a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e contatti"; +$a->strings["Admin"] = "Amministrazione"; +$a->strings["Site setup and configuration"] = "Configurazione del sito"; +$a->strings["Navigation"] = "Navigazione"; +$a->strings["Site map"] = "Mappa del sito"; $a->strings["Embedded content"] = "Contenuto incorporato"; $a->strings["Embedding disabled"] = "Embed disabilitato"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."; -$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti"; -$a->strings["Everybody"] = "Tutti"; -$a->strings["edit"] = "modifica"; -$a->strings["Edit group"] = "Modifica gruppo"; -$a->strings["Create a new group"] = "Crea un nuovo gruppo"; -$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; -$a->strings["stopped following"] = "tolto dai seguiti"; -$a->strings["Miscellaneous"] = "Varie"; -$a->strings["year"] = "anno"; -$a->strings["month"] = "mese"; -$a->strings["day"] = "giorno"; -$a->strings["never"] = "mai"; -$a->strings["less than a second ago"] = "meno di un secondo fa"; -$a->strings["years"] = "anni"; -$a->strings["months"] = "mesi"; -$a->strings["week"] = "settimana"; -$a->strings["weeks"] = "settimane"; -$a->strings["days"] = "giorni"; -$a->strings["hour"] = "ora"; -$a->strings["hours"] = "ore"; -$a->strings["minute"] = "minuto"; -$a->strings["minutes"] = "minuti"; -$a->strings["second"] = "secondo"; -$a->strings["seconds"] = "secondi"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa"; -$a->strings["view full size"] = "vedi a schermo intero"; +$a->strings["Error decoding account file"] = "Errore decodificando il file account"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; +$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; +$a->strings["User creation error"] = "Errore creando l'utente"; +$a->strings["User profile creation error"] = "Errore creando il profile dell'utente"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contatto non importato", + 1 => "%d contatti non importati", +); +$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; +$a->strings["Welcome "] = "Ciao"; +$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo."; +$a->strings["Welcome back "] = "Ciao "; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla."; +$a->strings["Profile not found."] = "Profilo non trovato."; +$a->strings["Profile deleted."] = "Profilo elminato."; +$a->strings["Profile-"] = "Profilo-"; +$a->strings["New profile created."] = "Il nuovo profilo è stato creato."; +$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; +$a->strings["Profile Name is required."] = "Il nome profilo è obbligatorio ."; +$a->strings["Marital Status"] = "Stato civile"; +$a->strings["Romantic Partner"] = "Partner romantico"; +$a->strings["Likes"] = "Mi piace"; +$a->strings["Dislikes"] = "Non mi piace"; +$a->strings["Work/Employment"] = "Lavoro/Impiego"; +$a->strings["Religion"] = "Religione"; +$a->strings["Political Views"] = "Orientamento Politico"; +$a->strings["Gender"] = "Sesso"; +$a->strings["Sexual Preference"] = "Preferenza sessuale"; +$a->strings["Homepage"] = "Homepage"; +$a->strings["Interests"] = "Interessi"; +$a->strings["Address"] = "Indirizzo"; +$a->strings["Location"] = "Posizione"; +$a->strings["Profile updated."] = "Profilo aggiornato."; +$a->strings[" and "] = "e "; +$a->strings["public profile"] = "profilo pubblico"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = "- Visita %2\$s di %1\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha un %2\$s aggiornato. Ha cambiato %3\$s"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"; +$a->strings["No"] = "No"; +$a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; +$a->strings["Submit"] = "Invia"; +$a->strings["Change Profile Photo"] = "Cambia la foto del profilo"; +$a->strings["View this profile"] = "Visualizza questo profilo"; +$a->strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni"; +$a->strings["Clone this profile"] = "Clona questo profilo"; +$a->strings["Delete this profile"] = "Elimina questo profilo"; +$a->strings["Profile Name:"] = "Nome del profilo:"; +$a->strings["Your Full Name:"] = "Il tuo nome completo:"; +$a->strings["Title/Description:"] = "Breve descrizione (es. titolo, posizione, altro):"; +$a->strings["Your Gender:"] = "Il tuo sesso:"; +$a->strings["Birthday (%s):"] = "Compleanno (%s)"; +$a->strings["Street Address:"] = "Indirizzo (via/piazza):"; +$a->strings["Locality/City:"] = "Località:"; +$a->strings["Postal/Zip Code:"] = "CAP:"; +$a->strings["Country:"] = "Nazione:"; +$a->strings["Region/State:"] = "Regione/Stato:"; +$a->strings[" Marital Status:"] = " Stato sentimentale:"; +$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esempio: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Dal [data]:"; +$a->strings["Homepage URL:"] = "Homepage:"; +$a->strings["Religious Views:"] = "Orientamento religioso:"; +$a->strings["Public Keywords:"] = "Parole chiave visibili a tutti:"; +$a->strings["Private Keywords:"] = "Parole chiave private:"; +$a->strings["Example: fishing photography software"] = "Esempio: pesca fotografia programmazione"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Usato per cercare tra i profili, non è mai visibile agli altri)"; +$a->strings["Tell us about yourself..."] = "Raccontaci di te..."; +$a->strings["Hobbies/Interests"] = "Hobby/interessi"; +$a->strings["Contact information and Social Networks"] = "Informazioni su contatti e social network"; +$a->strings["Musical interests"] = "Interessi musicali"; +$a->strings["Books, literature"] = "Libri, letteratura"; +$a->strings["Television"] = "Televisione"; +$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento"; +$a->strings["Love/romance"] = "Amore"; +$a->strings["Work/employment"] = "Lavoro/impiego"; +$a->strings["School/education"] = "Scuola/educazione"; +$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["Edit/Manage Profiles"] = "Modifica / Gestisci profili"; +$a->strings["Change profile photo"] = "Cambia la foto del profilo"; +$a->strings["Create New Profile"] = "Crea un nuovo profilo"; +$a->strings["Profile Image"] = "Immagine del Profilo"; +$a->strings["visible to everybody"] = "visibile a tutti"; +$a->strings["Edit visibility"] = "Modifica visibilità"; +$a->strings["Permission denied"] = "Permesso negato"; +$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; +$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo"; +$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; +$a->strings["Visible To"] = "Visibile a"; +$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)"; +$a->strings["Personal Notes"] = "Note personali"; +$a->strings["Public access denied."] = "Accesso negato."; +$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; +$a->strings["Item has been removed."] = "L'oggetto è stato rimosso."; +$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; +$a->strings["Edit contact"] = "Modifca contatto"; +$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo"; +$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico"; +$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio"; +$a->strings["{0} requested registration"] = "{0} chiede la registrazione"; +$a->strings["{0} commented %s's post"] = "{0} ha commentato il post di %s"; +$a->strings["{0} liked %s's post"] = "a {0} piace il post di %s"; +$a->strings["{0} disliked %s's post"] = "a {0} non piace il post di %s"; +$a->strings["{0} is now friends with %s"] = "{0} ora è amico di %s"; +$a->strings["{0} posted"] = "{0} ha inviato un nuovo messaggio"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} ha taggato il post di %s con #%s"; +$a->strings["{0} mentioned you in a post"] = "{0} ti ha citato in un post"; +$a->strings["Theme settings updated."] = "Impostazioni del tema aggiornate."; +$a->strings["Site"] = "Sito"; +$a->strings["Users"] = "Utenti"; +$a->strings["Plugins"] = "Plugin"; +$a->strings["Themes"] = "Temi"; +$a->strings["DB updates"] = "Aggiornamenti Database"; +$a->strings["Logs"] = "Log"; +$a->strings["Plugin Features"] = "Impostazioni Plugins"; +$a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma"; +$a->strings["Normal Account"] = "Account normale"; +$a->strings["Soapbox Account"] = "Account per comunicati e annunci"; +$a->strings["Community/Celebrity Account"] = "Account per celebrità o per comunità"; +$a->strings["Automatic Friend Account"] = "Account per amicizia automatizzato"; +$a->strings["Blog Account"] = "Account Blog"; +$a->strings["Private Forum"] = "Forum Privato"; +$a->strings["Message queues"] = "Code messaggi"; +$a->strings["Administration"] = "Amministrazione"; +$a->strings["Summary"] = "Sommario"; +$a->strings["Registered users"] = "Utenti registrati"; +$a->strings["Pending registrations"] = "Registrazioni in attesa"; +$a->strings["Version"] = "Versione"; +$a->strings["Active plugins"] = "Plugin attivi"; +$a->strings["Site settings updated."] = "Impostazioni del sito aggiornate."; +$a->strings["No special theme for mobile devices"] = "Nessun tema speciale per i dispositivi mobili"; +$a->strings["Never"] = "Mai"; +$a->strings["Multi user instance"] = "Istanza multi utente"; +$a->strings["Closed"] = "Chiusa"; +$a->strings["Requires approval"] = "Richiede l'approvazione"; +$a->strings["Open"] = "Aperta"; +$a->strings["No SSL policy, links will track page SSL state"] = "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina"; +$a->strings["Force all links to use SSL"] = "Forza tutti i linki ad usare SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)"; +$a->strings["Registration"] = "Registrazione"; +$a->strings["File upload"] = "Caricamento file"; +$a->strings["Policies"] = "Politiche"; +$a->strings["Advanced"] = "Avanzate"; +$a->strings["Performance"] = "Performance"; +$a->strings["Site name"] = "Nome del sito"; +$a->strings["Banner/Logo"] = "Banner/Logo"; +$a->strings["System language"] = "Lingua di sistema"; +$a->strings["System theme"] = "Tema di sistema"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema"; +$a->strings["Mobile system theme"] = "Tema mobile di sistema"; +$a->strings["Theme for mobile devices"] = "Tema per dispositivi mobili"; +$a->strings["SSL link policy"] = "Gestione link SSL"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina se i link generati devono essere forzati a usare SSL"; +$a->strings["'Share' element"] = "Elemento 'Share'"; +$a->strings["Activates the bbcode element 'share' for repeating items."] = "Attiva l'elemento bbcode 'share' per i post condivisi."; +$a->strings["Hide help entry from navigation menu"] = "Nascondi la voce 'Guida' dal menu di navigazione"; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente."; +$a->strings["Single user instance"] = "Instanza a singolo utente"; +$a->strings["Make this instance multi-user or single-user for the named user"] = "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato"; +$a->strings["Maximum image size"] = "Massima dimensione immagini"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."; +$a->strings["Maximum image length"] = "Massima lunghezza immagine"; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite."; +$a->strings["JPEG image quality"] = "Qualità immagini JPEG"; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena."; +$a->strings["Register policy"] = "Politica di registrazione"; +$a->strings["Maximum Daily Registrations"] = "Massime registrazioni giornaliere"; +$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto."; +$a->strings["Register text"] = "Testo registrazione"; +$a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione."; +$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo x giorni"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo."; +$a->strings["Allowed friend domains"] = "Domini amici consentiti"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; +$a->strings["Allowed email domains"] = "Domini email consentiti"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; +$a->strings["Block public"] = "Blocca pagine pubbliche"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato."; +$a->strings["Force publish"] = "Forza publicazione"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito."; +$a->strings["Global directory update URL"] = "URL aggiornamento Elenco Globale"; +$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato."; +$a->strings["Allow threaded items"] = "Permetti commenti nidificati"; +$a->strings["Allow infinite level threading for items on this site."] = "Permette un infinito livello di nidificazione dei commenti su questo sito."; +$a->strings["Private posts by default for new users"] = "Post privati di default per i nuovi utenti"; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici."; +$a->strings["Don't include post content in email notifications"] = "Non includere il contenuto dei post nelle notifiche via email"; +$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy"; +$a->strings["Disallow public access to addons listed in the apps menu."] = "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps."; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; +$a->strings["Don't embed private images in posts"] = ""; +$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = ""; +$a->strings["Block multiple registrations"] = "Blocca registrazioni multiple"; +$a->strings["Disallow users to register additional accounts for use as pages."] = "Non permette all'utente di registrare account extra da usare come pagine."; +$a->strings["OpenID support"] = "Supporto OpenID"; +$a->strings["OpenID support for registration and logins."] = "Supporta OpenID per la registrazione e il login"; +$a->strings["Fullname check"] = "Controllo nome completo"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam"; +$a->strings["UTF-8 Regular expressions"] = "Espressioni regolari UTF-8"; +$a->strings["Use PHP UTF8 regular expressions"] = "Usa le espressioni regolari PHP in UTF8"; +$a->strings["Show Community Page"] = "Mostra pagina Comunità"; +$a->strings["Display a Community page showing all recent public postings on this site."] = "Mostra una pagina Comunità con tutti i recenti messaggi pubblici su questo sito."; +$a->strings["Enable OStatus support"] = "Abilita supporto OStatus"; +$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fornisce compatibiltà OStatuts (identi.ca, status.net, etc.). Tutte le comunicazioni in OStatus sono pubbliche, per cui avvisi di provacy verranno occasionalmente mostrati."; +$a->strings["OStatus conversation completion interval"] = ""; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; +$a->strings["Enable Diaspora support"] = "Abilita il supporto a Diaspora"; +$a->strings["Provide built-in Diaspora network compatibility."] = "Fornisce compatibilità con il network Diaspora."; +$a->strings["Only allow Friendica contacts"] = "Permetti solo contatti Friendica"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati."; +$a->strings["Verify SSL"] = "Verifica SSL"; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati."; +$a->strings["Proxy user"] = "Utente Proxy"; +$a->strings["Proxy URL"] = "URL Proxy"; +$a->strings["Network timeout"] = "Timeout rete"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)."; +$a->strings["Delivery interval"] = "Intervallo di invio"; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Ritarda il processo di invio in background di n secondi per ridurre il carico di sistema. Raccomandato: 4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati."; +$a->strings["Poll interval"] = "Intervallo di poll"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio."; +$a->strings["Maximum Load Average"] = "Massimo carico medio"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50."; +$a->strings["Use MySQL full text engine"] = "Usa il motore MySQL full text"; +$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri."; +$a->strings["Path to item cache"] = "Percorso cache elementi"; +$a->strings["Cache duration in seconds"] = "Durata della cache in secondi"; +$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno)."; +$a->strings["Path for lock file"] = "Percorso al file di lock"; +$a->strings["Temp path"] = "Percorso file temporanei"; +$a->strings["Base path to installation"] = "Percorso base all'installazione"; +$a->strings["Update has been marked successful"] = "L'aggiornamento è stato segnato come di successo"; +$a->strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Controlla i log di sistema."; +$a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è stato applicato con successo"; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine."; +$a->strings["Update function %s could not be found."] = "La funzione di aggiornamento %s non puo' essere trovata."; +$a->strings["No failed updates."] = "Nessun aggiornamento fallito."; +$a->strings["Failed Updates"] = "Aggiornamenti falliti"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato."; +$a->strings["Mark success (if update was manually applied)"] = "Segna completato (se l'update è stato applicato manualmente)"; +$a->strings["Attempt to execute this update step automatically"] = "Cerco di eseguire questo aggiornamento in automatico"; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "%s utente bloccato/sbloccato", + 1 => "%s utenti bloccati/sbloccati", +); +$a->strings["%s user deleted"] = array( + 0 => "%s utente cancellato", + 1 => "%s utenti cancellati", +); +$a->strings["User '%s' deleted"] = "Utente '%s' cancellato"; +$a->strings["User '%s' unblocked"] = "Utente '%s' sbloccato"; +$a->strings["User '%s' blocked"] = "Utente '%s' bloccato"; +$a->strings["select all"] = "seleziona tutti"; +$a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma"; +$a->strings["Request date"] = "Data richiesta"; +$a->strings["Name"] = "Nome"; +$a->strings["No registrations."] = "Nessuna registrazione."; +$a->strings["Approve"] = "Approva"; +$a->strings["Deny"] = "Nega"; +$a->strings["Block"] = "Blocca"; +$a->strings["Unblock"] = "Sblocca"; +$a->strings["Site admin"] = "Amministrazione sito"; +$a->strings["Account expired"] = "Account scaduto"; +$a->strings["Register date"] = "Data registrazione"; +$a->strings["Last login"] = "Ultimo accesso"; +$a->strings["Last item"] = "Ultimo elemento"; +$a->strings["Account"] = "Account"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?"; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?"; +$a->strings["Plugin %s disabled."] = "Plugin %s disabilitato."; +$a->strings["Plugin %s enabled."] = "Plugin %s abilitato."; +$a->strings["Disable"] = "Disabilita"; +$a->strings["Enable"] = "Abilita"; +$a->strings["Toggle"] = "Inverti"; +$a->strings["Author: "] = "Autore: "; +$a->strings["Maintainer: "] = "Manutentore: "; +$a->strings["No themes found."] = "Nessun tema trovato."; +$a->strings["Screenshot"] = "Anteprima"; +$a->strings["[Experimental]"] = "[Sperimentale]"; +$a->strings["[Unsupported]"] = "[Non supportato]"; +$a->strings["Log settings updated."] = "Impostazioni Log aggiornate."; +$a->strings["Clear"] = "Pulisci"; +$a->strings["Enable Debugging"] = "Abilita Debugging"; +$a->strings["Log file"] = "File di Log"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica."; +$a->strings["Log level"] = "Livello di Log"; +$a->strings["Update now"] = "Aggiorna adesso"; +$a->strings["Close"] = "Chiudi"; +$a->strings["FTP Host"] = "Indirizzo FTP"; +$a->strings["FTP Path"] = "Percorso FTP"; +$a->strings["FTP User"] = "Utente FTP"; +$a->strings["FTP Password"] = "Pasword FTP"; +$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; +$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."; +$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."; +$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento."; +$a->strings["Friends of %s"] = "Amici di %s"; +$a->strings["No friends to display."] = "Nessun amico da visualizzare."; +$a->strings["Remove term"] = "Rimuovi termine"; +$a->strings["No results."] = "Nessun risultato."; +$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione"; +$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:"; +$a->strings["Please login to continue."] = "Effettua il login per continuare."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"; +$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s"; +$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 nell'invio del 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."] = "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."; +$a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): "; +$a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco pubblico?"; +$a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito."; +$a->strings["Your invitation ID: "] = "L'ID del tuo invito:"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo nome completo (es. Mario Rossi): "; +$a->strings["Your Email Address: "] = "Il tuo indirizzo email: "; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@\$sitename'."; +$a->strings["Choose a nickname: "] = "Scegli un nome utente: "; +$a->strings["Account approved."] = "Account approvato."; +$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; +$a->strings["Please login."] = "Accedi."; +$a->strings["Item not available."] = "Oggetto non disponibile."; +$a->strings["Item was not found."] = "Oggetto non trovato."; +$a->strings["Remove My Account"] = "Rimuovi il mio account"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."; +$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; +$a->strings["Source (bbcode) text:"] = "Testo sorgente (bbcode):"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Testo sorgente (da Diaspora) da convertire in BBcode:"; +$a->strings["Source input: "] = "Sorgente:"; +$a->strings["bb2html (raw HTML): "] = "bb2html (HTML grezzo):"; +$a->strings["bb2html: "] = "bb2html:"; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Sorgente (formato Diaspora):"; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Common Friends"] = "Amici in comune"; +$a->strings["No contacts in common."] = "Nessun contatto in comune."; +$a->strings["You must be logged in to use addons. "] = "Devi aver effettuato il login per usare gli addons."; +$a->strings["Applications"] = "Applicazioni"; +$a->strings["No installed applications."] = "Nessuna applicazione installata."; +$a->strings["Could not access contact record."] = "Non è possibile accedere al contatto."; +$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; +$a->strings["Contact updated."] = "Contatto aggiornato."; +$a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto."; +$a->strings["Contact has been blocked"] = "Il contatto è stato bloccato"; +$a->strings["Contact has been unblocked"] = "Il contatto è stato sbloccato"; +$a->strings["Contact has been ignored"] = "Il contatto è ignorato"; +$a->strings["Contact has been unignored"] = "Il contatto non è più ignorato"; +$a->strings["Contact has been archived"] = "Il contatto è stato archiviato"; +$a->strings["Contact has been unarchived"] = "Il contatto è stato dearchiviato"; +$a->strings["Do you really want to delete this contact?"] = "Vuoi veramente cancellare questo contatto?"; +$a->strings["Contact has been removed."] = "Il contatto è stato rimosso."; +$a->strings["You are mutual friends with %s"] = "Sei amico reciproco con %s"; +$a->strings["You are sharing with %s"] = "Stai condividendo con %s"; +$a->strings["%s is sharing with you"] = "%s sta condividendo con te"; +$a->strings["Private communications are not available for this contact."] = "Le comunicazioni private non sono disponibili per questo contatto."; +$a->strings["(Update was successful)"] = "(L'aggiornamento è stato completato)"; +$a->strings["(Update was not successful)"] = "(L'aggiornamento non è stato completato)"; +$a->strings["Suggest friends"] = "Suggerisci amici"; +$a->strings["Network type: %s"] = "Tipo di rete: %s"; +$a->strings["View all contacts"] = "Vedi tutti i contatti"; +$a->strings["Toggle Blocked status"] = "Inverti stato \"Blocca\""; +$a->strings["Unignore"] = "Non ignorare"; +$a->strings["Ignore"] = "Ignora"; +$a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\""; +$a->strings["Unarchive"] = "Dearchivia"; +$a->strings["Archive"] = "Archivia"; +$a->strings["Toggle Archive status"] = "Inverti stato \"Archiviato\""; +$a->strings["Repair"] = "Ripara"; +$a->strings["Advanced Contact Settings"] = "Impostazioni avanzate Contatto"; +$a->strings["Communications lost with this contact!"] = "Comunicazione con questo contatto persa!"; +$a->strings["Contact Editor"] = "Editor dei Contatti"; +$a->strings["Profile Visibility"] = "Visibilità del profilo"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."; +$a->strings["Contact Information / Notes"] = "Informazioni / Note sul contatto"; +$a->strings["Edit contact notes"] = "Modifica note contatto"; +$a->strings["Block/Unblock contact"] = "Blocca/Sblocca contatto"; +$a->strings["Ignore contact"] = "Ignora il contatto"; +$a->strings["Repair URL settings"] = "Impostazioni riparazione URL"; +$a->strings["View conversations"] = "Vedi conversazioni"; +$a->strings["Delete contact"] = "Rimuovi contatto"; +$a->strings["Last update:"] = "Ultimo aggiornamento:"; +$a->strings["Update public posts"] = "Aggiorna messaggi pubblici"; +$a->strings["Currently blocked"] = "Bloccato"; +$a->strings["Currently ignored"] = "Ignorato"; +$a->strings["Currently archived"] = "Al momento archiviato"; +$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Risposte ai tuoi post pubblici possono essere comunque visibili"; +$a->strings["Suggestions"] = "Suggerimenti"; +$a->strings["Suggest potential friends"] = "Suggerisci potenziali amici"; +$a->strings["All Contacts"] = "Tutti i contatti"; +$a->strings["Show all contacts"] = "Mostra tutti i contatti"; +$a->strings["Unblocked"] = "Sbloccato"; +$a->strings["Only show unblocked contacts"] = "Mostra solo contatti non bloccati"; +$a->strings["Blocked"] = "Bloccato"; +$a->strings["Only show blocked contacts"] = "Mostra solo contatti bloccati"; +$a->strings["Ignored"] = "Ignorato"; +$a->strings["Only show ignored contacts"] = "Mostra solo contatti ignorati"; +$a->strings["Archived"] = "Achiviato"; +$a->strings["Only show archived contacts"] = "Mostra solo contatti archiviati"; +$a->strings["Hidden"] = "Nascosto"; +$a->strings["Only show hidden contacts"] = "Mostra solo contatti nascosti"; +$a->strings["Mutual Friendship"] = "Amicizia reciproca"; +$a->strings["is a fan of yours"] = "è un tuo fan"; +$a->strings["you are a fan of"] = "sei un fan di"; +$a->strings["Search your contacts"] = "Cerca nei tuoi contatti"; +$a->strings["Finding: "] = "Ricerca: "; +$a->strings["everybody"] = "tutti"; +$a->strings["Additional features"] = "Funzionalità aggiuntive"; +$a->strings["Display settings"] = "Impostazioni grafiche"; +$a->strings["Connector settings"] = "Impostazioni connettori"; +$a->strings["Plugin settings"] = "Impostazioni plugin"; +$a->strings["Connected apps"] = "Applicazioni collegate"; +$a->strings["Export personal data"] = "Esporta dati personali"; +$a->strings["Remove account"] = "Rimuovi account"; +$a->strings["Missing some important data!"] = "Mancano alcuni dati importanti!"; +$a->strings["Update"] = "Aggiorna"; +$a->strings["Failed to connect with email account using the settings provided."] = "Impossibile collegarsi all'account email con i parametri forniti."; +$a->strings["Email settings updated."] = "Impostazioni e-mail aggiornate."; +$a->strings["Features updated"] = "Funzionalità aggiornate"; +$a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; +$a->strings["Wrong password."] = "Password sbagliata."; +$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["Wrong Password"] = "Password Sbagliata"; +$a->strings[" Not valid email."] = " Email non valida."; +$a->strings[" Cannot change to that email."] = "Non puoi usare quella email."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito."; +$a->strings["Settings updated."] = "Impostazioni aggiornate."; +$a->strings["Add application"] = "Aggiungi applicazione"; +$a->strings["Consumer Key"] = "Consumer Key"; +$a->strings["Consumer Secret"] = "Consumer Secret"; +$a->strings["Redirect"] = "Redirect"; +$a->strings["Icon url"] = "Url icona"; +$a->strings["You can't edit this application."] = "Non puoi modificare questa applicazione."; +$a->strings["Connected Apps"] = "Applicazioni Collegate"; +$a->strings["Edit"] = "Modifica"; +$a->strings["Client key starts with"] = "Chiave del client inizia con"; +$a->strings["No name"] = "Nessun nome"; +$a->strings["Remove authorization"] = "Rimuovi l'autorizzazione"; +$a->strings["No Plugin settings configured"] = "Nessun plugin ha impostazioni modificabili"; +$a->strings["Plugin Settings"] = "Impostazioni plugin"; +$a->strings["Off"] = "Spento"; +$a->strings["On"] = "Acceso"; +$a->strings["Additional Features"] = "Funzionalità aggiuntive"; +$a->strings["Built-in support for %s connectivity is %s"] = "Il supporto integrato per la connettività con %s è %s"; +$a->strings["enabled"] = "abilitato"; +$a->strings["disabled"] = "disabilitato"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "L'accesso email è disabilitato su questo sito."; +$a->strings["Connector Settings"] = "Impostazioni Connettore"; +$a->strings["Email/Mailbox Setup"] = "Impostazioni email"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)"; +$a->strings["Last successful email check:"] = "Ultimo controllo email eseguito con successo:"; +$a->strings["IMAP server name:"] = "Nome server IMAP:"; +$a->strings["IMAP port:"] = "Porta IMAP:"; +$a->strings["Security:"] = "Sicurezza:"; +$a->strings["None"] = "Nessuna"; +$a->strings["Email login name:"] = "Nome utente email:"; +$a->strings["Email password:"] = "Password email:"; +$a->strings["Reply-to address:"] = "Indirizzo di risposta:"; +$a->strings["Send public posts to all email contacts:"] = "Invia i messaggi pubblici ai contatti email:"; +$a->strings["Action after import:"] = "Azione post importazione:"; +$a->strings["Mark as seen"] = "Segna come letto"; +$a->strings["Move to folder"] = "Sposta nella cartella"; +$a->strings["Move to folder:"] = "Sposta nella cartella:"; +$a->strings["Display Settings"] = "Impostazioni Grafiche"; +$a->strings["Display Theme:"] = "Tema:"; +$a->strings["Mobile Theme:"] = "Tema mobile:"; +$a->strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo"; +$a->strings["Number of items to display per page:"] = "Numero di elementi da mostrare per pagina:"; +$a->strings["Maximum of 100 items"] = "Massimo 100 voci"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; +$a->strings["Don't show emoticons"] = "Non mostrare le emoticons"; +$a->strings["Normal Account Page"] = "Pagina Account Normale"; +$a->strings["This account is a normal personal profile"] = "Questo account è un normale profilo personale"; +$a->strings["Soapbox Page"] = "Pagina Sandbox"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca"; +$a->strings["Community Forum/Celebrity Account"] = "Account Celebrità/Forum comunitario"; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca"; +$a->strings["Automatic Friend Page"] = "Pagina con amicizia automatica"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico"; +$a->strings["Private Forum [Experimental]"] = "Forum privato [sperimentale]"; +$a->strings["Private forum - approved members only"] = "Forum privato - solo membri approvati"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opzionale) Consente di loggarti in questo account con questo OpenID"; +$a->strings["Publish your default profile in your local site directory?"] = "Pubblica il tuo profilo predefinito nell'elenco locale del sito"; +$a->strings["Publish your default profile in the global social directory?"] = "Pubblica il tuo profilo predefinito nell'elenco sociale globale"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito"; +$a->strings["Hide your profile details from unknown viewers?"] = "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?"; +$a->strings["Allow friends to post to your profile page?"] = "Permetti agli amici di scrivere sulla tua pagina profilo?"; +$a->strings["Allow friends to tag your posts?"] = "Permetti agli amici di taggare i tuoi messaggi?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Ci permetti di suggerirti come potenziale amico ai nuovi membri?"; +$a->strings["Permit unknown people to send you private mail?"] = "Permetti a utenti sconosciuti di inviarti messaggi privati?"; +$a->strings["Profile is not published."] = "Il profilo non è pubblicato."; +$a->strings["or"] = "o"; +$a->strings["Your Identity Address is"] = "L'indirizzo della tua identità è"; +$a->strings["Automatically expire posts after this many days:"] = "Fai scadere i post automaticamente dopo x giorni:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se lasciato vuoto, i messaggi non verranno cancellati."; +$a->strings["Advanced expiration settings"] = "Impostazioni avanzate di scandenza"; +$a->strings["Advanced Expiration"] = "Scadenza avanzata"; +$a->strings["Expire posts:"] = "Fai scadere i post:"; +$a->strings["Expire personal notes:"] = "Fai scadere le Note personali:"; +$a->strings["Expire starred posts:"] = "Fai scadere i post Speciali:"; +$a->strings["Expire photos:"] = "Fai scadere le foto:"; +$a->strings["Only expire posts by others:"] = "Fai scadere solo i post degli altri:"; +$a->strings["Account Settings"] = "Impostazioni account"; +$a->strings["Password Settings"] = "Impostazioni password"; +$a->strings["New Password:"] = "Nuova password:"; +$a->strings["Confirm:"] = "Conferma:"; +$a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non effettuare variazioni alla password"; +$a->strings["Current Password:"] = "Password Attuale:"; +$a->strings["Your current password to confirm the changes"] = ""; +$a->strings["Password:"] = "Password:"; +$a->strings["Basic Settings"] = "Impostazioni base"; +$a->strings["Email Address:"] = "Indirizzo Email:"; +$a->strings["Your Timezone:"] = "Il tuo fuso orario:"; +$a->strings["Default Post Location:"] = "Località predefinita:"; +$a->strings["Use Browser Location:"] = "Usa la località rilevata dal browser:"; +$a->strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy"; +$a->strings["Maximum Friend Requests/Day:"] = "Numero massimo di richieste di amicizia al giorno:"; +$a->strings["(to prevent spam abuse)"] = "(per prevenire lo spam)"; +$a->strings["Default Post Permissions"] = "Permessi predefiniti per i messaggi"; +$a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; +$a->strings["Show to Groups"] = "Mostra ai gruppi"; +$a->strings["Show to Contacts"] = "Mostra ai contatti"; +$a->strings["Default Private Post"] = "Default Post Privato"; +$a->strings["Default Public Post"] = "Default Post Pubblico"; +$a->strings["Default Permissions for New Posts"] = "Permessi predefiniti per i nuovi post"; +$a->strings["Maximum private messages per day from unknown people:"] = "Numero massimo di messaggi privati da utenti sconosciuti per giorno:"; +$a->strings["Notification Settings"] = "Impostazioni notifiche"; +$a->strings["By default post a status message when:"] = "Invia un messaggio di stato quando:"; +$a->strings["accepting a friend request"] = "accetti una richiesta di amicizia"; +$a->strings["joining a forum/community"] = "ti unisci a un forum/comunità"; +$a->strings["making an interesting profile change"] = "fai un interessante modifica al profilo"; +$a->strings["Send a notification email when:"] = "Invia una mail di notifica quando:"; +$a->strings["You receive an introduction"] = "Ricevi una presentazione"; +$a->strings["Your introductions are confirmed"] = "Le tue presentazioni sono confermate"; +$a->strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla bacheca del tuo profilo"; +$a->strings["Someone writes a followup comment"] = "Qualcuno scrive un commento a un tuo messaggio"; +$a->strings["You receive a private message"] = "Ricevi un messaggio privato"; +$a->strings["You receive a friend suggestion"] = "Hai ricevuto un suggerimento di amicizia"; +$a->strings["You are tagged in a post"] = "Sei stato taggato in un post"; +$a->strings["You are poked/prodded/etc. in a post"] = "Sei 'toccato'/'spronato'/ecc. in un post"; +$a->strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate Account/Tipo di pagina"; +$a->strings["Change the behaviour of this account for special situations"] = "Modifica il comportamento di questo account in situazioni speciali"; +$a->strings["link"] = "collegamento"; +$a->strings["Contact settings applied."] = "Contatto modificato."; +$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; +$a->strings["Contact not found."] = "Contatto non trovato."; +$a->strings["Repair Contact Settings"] = "Ripara il contatto"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; +$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; +$a->strings["Account Nickname"] = "Nome utente"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; +$a->strings["Account URL"] = "URL dell'utente"; +$a->strings["Friend Request URL"] = "URL Richiesta Amicizia"; +$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia"; +$a->strings["Notification Endpoint URL"] = "URL Notifiche"; +$a->strings["Poll/Feed URL"] = "URL Feed"; +$a->strings["New photo from this URL"] = "Nuova foto da questo URL"; +$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato."; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."; +$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti"; +$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti"; +$a->strings["Potential Delegates"] = "Delegati Potenziali"; +$a->strings["Remove"] = "Rimuovi"; +$a->strings["Add"] = "Aggiungi"; +$a->strings["No entries."] = "Nessun articolo."; +$a->strings["Poke/Prod"] = "Tocca/Pungola"; +$a->strings["poke, prod or do other things to somebody"] = "tocca, pungola o fai altre cose a qualcuno"; +$a->strings["Recipient"] = "Destinatario"; +$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi fare al destinatario"; +$a->strings["Make this post private"] = "Rendi questo post privato"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata."; +$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito."; +$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: "; +$a->strings["Confirmation completed successfully."] = "Conferma completata con successo."; +$a->strings["Remote site reported: "] = "Il sito remoto riporta: "; +$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova."; +$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata."; +$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto."; +$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."; +$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito."; +$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s"; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."; +$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."; +$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"; +$a->strings["Connection accepted at %s"] = "Connession accettata su %s"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s"; +$a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s"; +$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; +$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; +$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", + 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", +); +$a->strings["Introduction complete."] = "Presentazione completa."; +$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; +$a->strings["Profile unavailable."] = "Profilo non disponibile."; +$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; +$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; +$a->strings["Invalid locator"] = "Invalid locator"; +$a->strings["Invalid email address."] = "Indirizzo email non valido."; +$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita."; +$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata."; +$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; +$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; +$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; +$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; +$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; +$a->strings["Hide this contact"] = "Nascondi questo contatto"; +$a->strings["Welcome home %s."] = "Bentornato a casa %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s."; +$a->strings["Confirm"] = "Conferma"; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"; +$a->strings["Connect as an email follower (Coming soon)"] = "Connetti un email come follower (in arrivo)"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi"; +$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Rispondi:"; +$a->strings["Does %s know you?"] = "%s ti conosce?"; +$a->strings["Add a personal note:"] = "Aggiungi una nota personale:"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."; +$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:"; +$a->strings["Submit Request"] = "Invia richiesta"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; +$a->strings["Global Directory"] = "Elenco globale"; +$a->strings["Find on this site"] = "Cerca nel sito"; +$a->strings["Site Directory"] = "Elenco del sito"; +$a->strings["Gender: "] = "Genere:"; +$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta)."; +$a->strings["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; +$a->strings["Ignore/Hide"] = "Ignora / Nascondi"; +$a->strings["People Search"] = "Cerca persone"; +$a->strings["No matches"] = "Nessun risultato"; +$a->strings["No videos selected"] = "Nessun video selezionato"; +$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti."; +$a->strings["View Album"] = "Sfoglia l'album"; +$a->strings["Recent Videos"] = "Video Recenti"; +$a->strings["Upload New Videos"] = "Carica Nuovo Video"; +$a->strings["Tag removed"] = "Tag rimosso"; +$a->strings["Remove Item Tag"] = "Rimuovi il tag"; +$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; +$a->strings["Item not found"] = "Oggetto non trovato"; +$a->strings["Edit post"] = "Modifica messaggio"; +$a->strings["Event title and start time are required."] = "Titolo e ora di inizio dell'evento sono richiesti."; +$a->strings["l, F j"] = "l j F"; +$a->strings["Edit event"] = "Modifca l'evento"; +$a->strings["Create New Event"] = "Crea un nuovo evento"; +$a->strings["Previous"] = "Precendente"; +$a->strings["Next"] = "Successivo"; +$a->strings["hour:minute"] = "ora:minuti"; +$a->strings["Event details"] = "Dettagli dell'evento"; +$a->strings["Format is %s %s. Starting date and Title are required."] = "Il formato è %s %s. Data di inizio e Titolo sono richiesti."; +$a->strings["Event Starts:"] = "L'evento inizia:"; +$a->strings["Required"] = "Richiesto"; +$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è definita"; +$a->strings["Event Finishes:"] = "L'evento finisce:"; +$a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di chi legge"; +$a->strings["Description:"] = "Descrizione:"; +$a->strings["Title:"] = "Titolo:"; +$a->strings["Share this event"] = "Condividi questo evento"; +$a->strings["Files"] = "File"; +$a->strings["Export account"] = "Esporta account"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."; +$a->strings["Export all"] = "Esporta tutto"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"; +$a->strings["- select -"] = "- seleziona -"; +$a->strings["Import"] = "Importa"; +$a->strings["Move account"] = "Muovi account"; +$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"; +$a->strings["Account file"] = "File account"; +$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""; +$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; +$a->strings["Contact added"] = "Contatto aggiunto"; +$a->strings["This is Friendica, version"] = "Questo è Friendica, versione"; +$a->strings["running at web location"] = "in esecuzione all'indirizzo web"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Visita Friendica.com per saperne di più sul progetto Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com"; +$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate"; +$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata"; +$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato."; +$a->strings["Suggest Friends"] = "Suggerisci amici"; +$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s"; +$a->strings["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["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti."; +$a->strings["Group Name: "] = "Nome del gruppo:"; +$a->strings["Group removed."] = "Gruppo rimosso."; +$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; +$a->strings["Group Editor"] = "Modifica gruppo"; +$a->strings["Members"] = "Membri"; +$a->strings["No profile"] = "Nessun profilo"; +$a->strings["Help:"] = "Guida:"; +$a->strings["Not Found"] = "Non trovato"; +$a->strings["Page not found."] = "Pagina non trovata."; +$a->strings["No contacts."] = "Nessun contatto."; +$a->strings["Welcome to %s"] = "Benvenuto su %s"; +$a->strings["Access denied."] = "Accesso negato."; +$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; +$a->strings["File upload failed."] = "Caricamento del file non riuscito."; +$a->strings["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d"; +$a->strings["Unable to process image."] = "Impossibile caricare l'immagine."; +$a->strings["Image upload failed."] = "Caricamento immagine fallito."; +$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato."; +$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; +$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito."; +$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita."; +$a->strings["%d message sent."] = array( + 0 => "%d messaggio inviato.", + 1 => "%d messaggi inviati.", +); +$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."; +$a->strings["Send invitations"] = "Invia inviti"; +$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; +$a->strings["Your message:"] = "Il tuo messaggio:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numero giornaliero di messaggi per %s superato. Invio fallito."; +$a->strings["No recipient selected."] = "Nessun destinatario selezionato."; +$a->strings["Unable to check your home location."] = "Impossibile controllare la tua posizione di origine."; +$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato."; +$a->strings["Message collection failure."] = "Errore recuperando il messaggio."; +$a->strings["Message sent."] = "Messaggio inviato."; +$a->strings["No recipient."] = "Nessun destinatario."; +$a->strings["Send Private Message"] = "Invia un messaggio privato"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti."; +$a->strings["To:"] = "A:"; +$a->strings["Subject:"] = "Oggetto:"; +$a->strings["Time Conversion"] = "Conversione Ora"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti."; +$a->strings["UTC time: %s"] = "Ora UTC: %s"; +$a->strings["Current timezone: %s"] = "Fuso orario corrente: %s"; +$a->strings["Converted localtime: %s"] = "Ora locale convertita: %s"; +$a->strings["Please select your timezone:"] = "Selezionare il tuo fuso orario:"; +$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; +$a->strings["Visible to:"] = "Visibile a:"; +$a->strings["No valid account found."] = "Nessun account valido trovato."; +$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; +$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."; +$a->strings["Password Reset"] = "Reimpostazione password"; +$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto."; +$a->strings["Your new password is"] = "La tua nuova password è"; +$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; +$a->strings["click here to login"] = "clicca qui per entrare"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso."; +$a->strings["Your password has been changed at %s"] = "La tua password presso %s è stata cambiata"; +$a->strings["Forgot your Password?"] = "Hai dimenticato la password?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password."; +$a->strings["Nickname or Email: "] = "Nome utente o email: "; +$a->strings["Reset"] = "Reimposta"; +$a->strings["System down for maintenance"] = "Sistema in manutenzione"; +$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"; +$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:"; +$a->strings["Profile Match"] = "Profili corrispondenti"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."; +$a->strings["is interested in:"] = "è interessato a:"; +$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto."; +$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?"; +$a->strings["Message deleted."] = "Messaggio eliminato."; +$a->strings["Conversation removed."] = "Conversazione rimossa."; +$a->strings["No messages."] = "Nessun messaggio."; +$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s"; +$a->strings["You and %s"] = "Tu e %s"; +$a->strings["%s and You"] = "%s e Tu"; +$a->strings["Delete conversation"] = "Elimina la conversazione"; +$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; +$a->strings["%d message"] = array( + 0 => "%d messaggio", + 1 => "%d messaggi", +); +$a->strings["Message not available."] = "Messaggio non disponibile."; +$a->strings["Delete message"] = "Elimina il messaggio"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente."; +$a->strings["Send Reply"] = "Invia la risposta"; +$a->strings["Mood"] = "Umore"; +$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici"; +$a->strings["Search Results For:"] = "Cerca risultati per:"; +$a->strings["Commented Order"] = "Ordina per commento"; +$a->strings["Sort by Comment Date"] = "Ordina per data commento"; +$a->strings["Posted Order"] = "Ordina per invio"; +$a->strings["Sort by Post Date"] = "Ordina per data messaggio"; +$a->strings["Personal"] = "Personale"; +$a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono"; +$a->strings["New"] = "Nuovo"; +$a->strings["Activity Stream - by date"] = "Activity Stream - per data"; +$a->strings["Shared Links"] = "Links condivisi"; +$a->strings["Interesting Links"] = "Link Interessanti"; +$a->strings["Starred"] = "Preferiti"; +$a->strings["Favourite Posts"] = "Messaggi preferiti"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Attenzione: questo gruppo contiene %s membro da un network insicuro.", + 1 => "Attenzione: questo gruppo contiene %s membri da un network insicuro.", +); +$a->strings["Private messages to this group are at risk of public disclosure."] = "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente."; +$a->strings["No such group"] = "Nessun gruppo"; +$a->strings["Group is empty"] = "Il gruppo è vuoto"; +$a->strings["Group: "] = "Gruppo: "; +$a->strings["Contact: "] = "Contatto:"; +$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."; +$a->strings["Invalid contact."] = "Contatto non valido."; +$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; +$a->strings["Discard"] = "Scarta"; +$a->strings["System"] = "Sistema"; +$a->strings["Show Ignored Requests"] = "Mostra richieste ignorate"; +$a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate"; +$a->strings["Notification type: "] = "Tipo di notifica: "; +$a->strings["Friend Suggestion"] = "Amico suggerito"; +$a->strings["suggested by %s"] = "sugerito da %s"; +$a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\""; +$a->strings["if applicable"] = "se applicabile"; +$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["Sharer"] = "Condivisore"; +$a->strings["Fan/Admirer"] = "Fan/Ammiratore"; +$a->strings["Friend/Connect Request"] = "Richiesta amicizia/connessione"; +$a->strings["New Follower"] = "Qualcuno inizia a seguirti"; +$a->strings["No introductions."] = "Nessuna presentazione."; +$a->strings["%s liked %s's post"] = "a %s è piaciuto il messaggio di %s"; +$a->strings["%s disliked %s's post"] = "a %s non è piaciuto il messaggio di %s"; +$a->strings["%s is now friends with %s"] = "%s è ora amico di %s"; +$a->strings["%s created a new post"] = "%s a creato un nuovo messaggio"; +$a->strings["%s commented on %s's post"] = "%s ha commentato il messaggio di %s"; +$a->strings["No more network notifications."] = "Nessuna nuova."; +$a->strings["Network Notifications"] = "Notifiche dalla rete"; +$a->strings["No more system notifications."] = "Nessuna nuova notifica di sistema."; +$a->strings["System Notifications"] = "Notifiche di sistema"; +$a->strings["No more personal notifications."] = "Nessuna nuova."; +$a->strings["Personal Notifications"] = "Notifiche personali"; +$a->strings["No more home notifications."] = "Nessuna nuova."; +$a->strings["Home Notifications"] = "Notifiche bacheca"; +$a->strings["Photo Albums"] = "Album foto"; +$a->strings["Contact Photos"] = "Foto dei contatti"; +$a->strings["Upload New Photos"] = "Carica nuove foto"; +$a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili"; +$a->strings["Album not found."] = "Album non trovato."; +$a->strings["Delete Album"] = "Rimuovi album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Vuoi davvero cancellare questo album e tutte le sue foto?"; +$a->strings["Delete Photo"] = "Rimuovi foto"; +$a->strings["Do you really want to delete this photo?"] = "Vuoi veramente cancellare questa foto?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s è stato taggato in %2\$s da %3\$s"; +$a->strings["a photo"] = "una foto"; +$a->strings["Image exceeds size limit of "] = "L'immagine supera il limite di"; +$a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; +$a->strings["No photos selected"] = "Nessuna foto selezionata"; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Hai usato %1$.2f MBytes su %2$.2f disponibili."; +$a->strings["Upload Photos"] = "Carica foto"; +$a->strings["New album name: "] = "Nome nuovo album: "; +$a->strings["or existing album name: "] = "o nome di un album esistente: "; +$a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload"; +$a->strings["Permissions"] = "Permessi"; +$a->strings["Private Photo"] = "Foto privata"; +$a->strings["Public Photo"] = "Foto pubblica"; +$a->strings["Edit Album"] = "Modifica album"; +$a->strings["Show Newest First"] = "Mostra nuove foto per prime"; +$a->strings["Show Oldest First"] = "Mostra vecchie foto per prime"; +$a->strings["View Photo"] = "Vedi foto"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato."; +$a->strings["Photo not available"] = "Foto non disponibile"; +$a->strings["View photo"] = "Vedi foto"; +$a->strings["Edit photo"] = "Modifica foto"; +$a->strings["Use as profile photo"] = "Usa come foto del profilo"; +$a->strings["Private Message"] = "Messaggio privato"; +$a->strings["View Full Size"] = "Vedi dimensione intera"; +$a->strings["Tags: "] = "Tag: "; +$a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]"; +$a->strings["Rotate CW (right)"] = "Ruota a destra"; +$a->strings["Rotate CCW (left)"] = "Ruota a sinistra"; +$a->strings["New album name"] = "Nuovo nome dell'album"; +$a->strings["Caption"] = "Titolo"; +$a->strings["Add a Tag"] = "Aggiungi tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Private photo"] = "Foto privata"; +$a->strings["Public photo"] = "Foto pubblica"; +$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)"; +$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)"; +$a->strings["This is you"] = "Questo sei tu"; +$a->strings["Comment"] = "Commento"; +$a->strings["Recent Photos"] = "Foto recenti"; +$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica"; +$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."; +$a->strings["Getting Started"] = "Come Iniziare"; +$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."; +$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."; +$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; +$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; +$a->strings["Profile Keywords"] = "Parole chiave del profilo"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; +$a->strings["Connecting"] = "Collegarsi"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["Importing Emails"] = "Importare le Email"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; +$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; +$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; +$a->strings["Finding New People"] = "Trova nuove persone"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; +$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; +$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."; +$a->strings["Getting Help"] = "Ottenere Aiuto"; +$a->strings["Go to the Help Section"] = "Vai alla sezione Guida"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; +$a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile."; +$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica Comunicazione Server - Impostazioni"; +$a->strings["Could not connect to database."] = " Impossibile collegarsi con il database."; +$a->strings["Could not create table."] = "Impossibile creare le tabelle."; +$a->strings["Your Friendica site database has been installed."] = "Il tuo Friendica è stato installato."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Leggi il file \"INSTALL.txt\"."; +$a->strings["System check"] = "Controllo sistema"; +$a->strings["Check again"] = "Controlla ancora"; +$a->strings["Database connection"] = "Connessione al database"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per installare Friendica dobbiamo sapere come collegarci al tuo database."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."; +$a->strings["Database Server Name"] = "Nome del database server"; +$a->strings["Database Login Name"] = "Nome utente database"; +$a->strings["Database Login Password"] = "Password utente database"; +$a->strings["Database Name"] = "Nome database"; +$a->strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."; +$a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web"; +$a->strings["Site settings"] = "Impostazioni sito"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi 'Activating scheduled tasks'"; +$a->strings["PHP executable path"] = "Percorso eseguibile PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione."; +$a->strings["Command line PHP"] = "PHP da riga di comando"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; +$a->strings["Found PHP version: "] = "Versione PHP:"; +$a->strings["PHP cli binary"] = ""; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; +$a->strings["This is required for message delivery to work."] = "E' obbligatorio per far funzionare la consegna dei messaggi."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Genera chiavi di criptazione"; +$a->strings["libCurl PHP module"] = "modulo PHP libCurl"; +$a->strings["GD graphics PHP module"] = "modulo PHP GD graphics"; +$a->strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; +$a->strings["mysqli PHP module"] = "modulo PHP mysqli"; +$a->strings["mb_string PHP module"] = "modulo PHP mb_string"; +$a->strings["Apache mod_rewrite module"] = "Modulo mod_rewrite di Apache"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato."; +$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato"; +$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato."; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica"; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 è scrivibile"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server."; +$a->strings["Url rewrite is working"] = "La riscrittura degli url funziona"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito."; +$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; +$a->strings["

What next

"] = "

Cosa fare ora

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."; +$a->strings["Post successful."] = "Inviato!"; +$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."; +$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; +$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; +$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; +$a->strings["Upload File:"] = "Carica un file:"; +$a->strings["Select a profile:"] = "Seleziona un profilo:"; +$a->strings["Upload"] = "Carica"; +$a->strings["skip this step"] = "salta questo passaggio"; +$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; +$a->strings["Crop Image"] = "Ritaglia immagine"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore."; +$a->strings["Done Editing"] = "Finito"; +$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; +$a->strings["Not available."] = "Non disponibile."; +$a->strings["%d comment"] = array( + 0 => "%d commento", + 1 => "%d commenti", +); +$a->strings["like"] = "mi piace"; +$a->strings["dislike"] = "non mi piace"; +$a->strings["Share this"] = "Condividi questo"; +$a->strings["share"] = "condividi"; +$a->strings["Bold"] = "Grassetto"; +$a->strings["Italic"] = "Corsivo"; +$a->strings["Underline"] = "Sottolineato"; +$a->strings["Quote"] = "Citazione"; +$a->strings["Code"] = "Codice"; +$a->strings["Image"] = "Immagine"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["add star"] = "aggiungi a speciali"; +$a->strings["remove star"] = "rimuovi da speciali"; +$a->strings["toggle star status"] = "Inverti stato preferito"; +$a->strings["starred"] = "preferito"; +$a->strings["add tag"] = "aggiungi tag"; +$a->strings["save to folder"] = "salva nella cartella"; +$a->strings["to"] = "a"; +$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; +$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca"; +$a->strings["This entry was edited"] = ""; +$a->strings["via"] = "via"; +$a->strings["Theme settings"] = "Impostazioni tema"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)"; +$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti"; +$a->strings["Set theme width"] = "Imposta la larghezza del tema"; +$a->strings["Color scheme"] = "Schema colori"; +$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti"; +$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale"; +$a->strings["Set color scheme"] = "Imposta lo schema dei colori"; +$a->strings["Set twitter search term"] = "Imposta il termine di ricerca per twitter"; +$a->strings["Set zoomfactor for Earth Layer"] = ""; +$a->strings["Set longitude (X) for Earth Layers"] = ""; +$a->strings["Set latitude (Y) for Earth Layers"] = ""; +$a->strings["Community Pages"] = "Pagine Comunitarie"; +$a->strings["Earth Layers"] = ""; +$a->strings["Community Profiles"] = "Profili Comunità"; +$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; +$a->strings["Connect Services"] = "Servizi di conessione"; +$a->strings["Find Friends"] = "Trova Amici"; +$a->strings["Last tweets"] = "Ultimi tweets"; +$a->strings["Last users"] = "Ultimi utenti"; +$a->strings["Last photos"] = "Ultime foto"; +$a->strings["Last likes"] = "Ultimi \"mi piace\""; +$a->strings["Your contacts"] = "I tuoi contatti"; +$a->strings["Local Directory"] = "Elenco Locale"; +$a->strings["Set zoomfactor for Earth Layers"] = ""; +$a->strings["Last Tweets"] = "Ultimi Tweets"; +$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra"; +$a->strings["Set colour scheme"] = "Imposta schema colori"; +$a->strings["Alignment"] = "Allineamento"; +$a->strings["Left"] = "Sinistra"; +$a->strings["Center"] = "Centrato"; +$a->strings["Posts font size"] = "Dimensione caratteri post"; +$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo"; +$a->strings["toggle mobile"] = "commuta tema mobile"; +$a->strings["Delete this item?"] = "Cancellare questo elemento?"; +$a->strings["show fewer"] = "mostra di meno"; +$a->strings["Update %s failed. See error logs."] = "aggiornamento %s fallito. Guarda i log di errore."; +$a->strings["Update Error at %s"] = "Errore aggiornamento a %s"; +$a->strings["Create a New Account"] = "Crea un nuovo account"; +$a->strings["Nickname or Email address: "] = "Nome utente o indirizzo email: "; +$a->strings["Password: "] = "Password: "; +$a->strings["Remember me"] = "Ricordati di me"; +$a->strings["Or login using OpenID: "] = "O entra con OpenID:"; +$a->strings["Forgot your password?"] = "Hai dimenticato la password?"; +$a->strings["Website Terms of Service"] = "Condizioni di servizio del sito web "; +$a->strings["terms of service"] = "condizioni del servizio"; +$a->strings["Website Privacy Policy"] = "Politiche di privacy del sito"; +$a->strings["privacy policy"] = "politiche di privacy"; +$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile."; +$a->strings["Edit profile"] = "Modifica il profilo"; +$a->strings["Message"] = "Messaggio"; +$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; +$a->strings["g A l F d"] = "g A l d F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[oggi]"; +$a->strings["Birthday Reminders"] = "Promemoria compleanni"; +$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; +$a->strings["[No description]"] = "[Nessuna descrizione]"; +$a->strings["Event Reminders"] = "Promemoria"; +$a->strings["Events this week:"] = "Eventi di questa settimana:"; +$a->strings["Status Messages and Posts"] = "Messaggi di stato e post"; +$a->strings["Profile Details"] = "Dettagli del profilo"; +$a->strings["Videos"] = "Video"; +$a->strings["Events and Calendar"] = "Eventi e calendario"; +$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo"; From f80567ce5305fa36360bd1a4b656fed466cb89b2 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 16 Jun 2013 14:51:59 +0200 Subject: [PATCH 05/12] ZH-CN: update to the strings --- view/zh-cn/messages.po | 937 +++++++++++++++++---------------- view/zh-cn/strings.php | 361 ++++++------- view/zh-cn/update_fail_eml.tpl | 18 +- 3 files changed, 671 insertions(+), 645 deletions(-) diff --git a/view/zh-cn/messages.po b/view/zh-cn/messages.po index be5909293f..387d4f8dcd 100644 --- a/view/zh-cn/messages.po +++ b/view/zh-cn/messages.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" -"POT-Creation-Date: 2013-04-25 00:02-0700\n" -"PO-Revision-Date: 2013-04-28 09:36+0000\n" -"Last-Translator: fabrixxm \n" +"POT-Creation-Date: 2013-06-12 00:01-0700\n" +"PO-Revision-Date: 2013-06-07 13:45+0000\n" +"Last-Translator: matthew_exon \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/friendica/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,7 +23,7 @@ msgstr "" #: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84 #: ../../include/nav.php:77 ../../mod/profperm.php:103 #: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88 -#: ../../boot.php:1945 +#: ../../boot.php:1947 msgid "Profile" msgstr "简介" @@ -32,7 +32,7 @@ msgid "Full Name:" msgstr "全名:" #: ../../include/profile_advanced.php:17 ../../mod/directory.php:136 -#: ../../boot.php:1485 +#: ../../boot.php:1487 msgid "Gender:" msgstr "性别:" @@ -53,7 +53,7 @@ msgid "Age:" msgstr "年纪:" #: ../../include/profile_advanced.php:37 ../../mod/directory.php:138 -#: ../../boot.php:1488 +#: ../../boot.php:1490 msgid "Status:" msgstr "现状:" @@ -67,7 +67,7 @@ msgid "Sexual Preference:" msgstr "性取向" #: ../../include/profile_advanced.php:48 ../../mod/directory.php:140 -#: ../../boot.php:1490 +#: ../../boot.php:1492 msgid "Homepage:" msgstr "主页:" @@ -372,337 +372,56 @@ msgstr "问我" msgid "stopped following" msgstr "结束关注了" -#: ../../include/Contact.php:225 ../../include/conversation.php:838 +#: ../../include/Contact.php:225 ../../include/conversation.php:878 msgid "Poke" msgstr "戳" -#: ../../include/Contact.php:226 ../../include/conversation.php:832 +#: ../../include/Contact.php:226 ../../include/conversation.php:872 msgid "View Status" msgstr "看现状" -#: ../../include/Contact.php:227 ../../include/conversation.php:833 +#: ../../include/Contact.php:227 ../../include/conversation.php:873 msgid "View Profile" msgstr "看简介" -#: ../../include/Contact.php:228 ../../include/conversation.php:834 +#: ../../include/Contact.php:228 ../../include/conversation.php:874 msgid "View Photos" msgstr "看照片" #: ../../include/Contact.php:229 ../../include/Contact.php:251 -#: ../../include/conversation.php:835 +#: ../../include/conversation.php:875 msgid "Network Posts" msgstr "网络文章" #: ../../include/Contact.php:230 ../../include/Contact.php:251 -#: ../../include/conversation.php:836 +#: ../../include/conversation.php:876 msgid "Edit Contact" msgstr "编辑熟人" #: ../../include/Contact.php:231 ../../include/Contact.php:251 -#: ../../include/conversation.php:837 +#: ../../include/conversation.php:877 msgid "Send PM" msgstr "法私人的新闻" -#: ../../include/text.php:294 -msgid "prev" -msgstr "上个" +#: ../../include/bbcode.php:210 ../../include/bbcode.php:550 +#: ../../include/bbcode.php:551 +msgid "Image/photo" +msgstr "图像/照片" -#: ../../include/text.php:296 -msgid "first" -msgstr "首先" - -#: ../../include/text.php:325 -msgid "last" -msgstr "最后" - -#: ../../include/text.php:328 -msgid "next" -msgstr "下个" - -#: ../../include/text.php:352 -msgid "newer" -msgstr "更新" - -#: ../../include/text.php:356 -msgid "older" -msgstr "更旧" - -#: ../../include/text.php:807 -msgid "No contacts" -msgstr "没有熟人" - -#: ../../include/text.php:816 +#: ../../include/bbcode.php:272 #, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d熟人" - -#: ../../include/text.php:828 ../../mod/viewcontacts.php:76 -msgid "View Contacts" -msgstr "看熟人" - -#: ../../include/text.php:905 ../../include/text.php:906 -#: ../../include/nav.php:118 ../../mod/search.php:99 -msgid "Search" -msgstr "搜索" - -#: ../../include/text.php:908 ../../mod/notes.php:63 ../../mod/filer.php:31 -msgid "Save" -msgstr "保存" - -#: ../../include/text.php:957 -msgid "poke" -msgstr "戳" - -#: ../../include/text.php:957 ../../include/conversation.php:211 -msgid "poked" -msgstr "戳了" - -#: ../../include/text.php:958 -msgid "ping" -msgstr "砰" - -#: ../../include/text.php:958 -msgid "pinged" -msgstr "砰了" - -#: ../../include/text.php:959 -msgid "prod" -msgstr "柔戳" - -#: ../../include/text.php:959 -msgid "prodded" -msgstr "柔戳了" - -#: ../../include/text.php:960 -msgid "slap" -msgstr "掌击" - -#: ../../include/text.php:960 -msgid "slapped" -msgstr "掌击了" - -#: ../../include/text.php:961 -msgid "finger" -msgstr "指" - -#: ../../include/text.php:961 -msgid "fingered" -msgstr "指了" - -#: ../../include/text.php:962 -msgid "rebuff" -msgstr "窝脖儿" - -#: ../../include/text.php:962 -msgid "rebuffed" -msgstr "窝脖儿了" - -#: ../../include/text.php:976 -msgid "happy" -msgstr "开心" - -#: ../../include/text.php:977 -msgid "sad" -msgstr "伤心" - -#: ../../include/text.php:978 -msgid "mellow" -msgstr "轻松" - -#: ../../include/text.php:979 -msgid "tired" -msgstr "累" - -#: ../../include/text.php:980 -msgid "perky" -msgstr "机敏" - -#: ../../include/text.php:981 -msgid "angry" -msgstr "生气" - -#: ../../include/text.php:982 -msgid "stupified" -msgstr "麻醉" - -#: ../../include/text.php:983 -msgid "puzzled" -msgstr "纳闷" - -#: ../../include/text.php:984 -msgid "interested" -msgstr "有兴趣" - -#: ../../include/text.php:985 -msgid "bitter" -msgstr "苦" - -#: ../../include/text.php:986 -msgid "cheerful" -msgstr "快乐" - -#: ../../include/text.php:987 -msgid "alive" -msgstr "活着" - -#: ../../include/text.php:988 -msgid "annoyed" -msgstr "被烦恼" - -#: ../../include/text.php:989 -msgid "anxious" -msgstr "心焦" - -#: ../../include/text.php:990 -msgid "cranky" -msgstr "不稳" - -#: ../../include/text.php:991 -msgid "disturbed" -msgstr "不安" - -#: ../../include/text.php:992 -msgid "frustrated" -msgstr "被作梗" - -#: ../../include/text.php:993 -msgid "motivated" -msgstr "士气高涨" - -#: ../../include/text.php:994 -msgid "relaxed" -msgstr "轻松" - -#: ../../include/text.php:995 -msgid "surprised" -msgstr "诧异" - -#: ../../include/text.php:1161 -msgid "Monday" -msgstr "星期一" - -#: ../../include/text.php:1161 -msgid "Tuesday" -msgstr "星期二" - -#: ../../include/text.php:1161 -msgid "Wednesday" -msgstr "星期三" - -#: ../../include/text.php:1161 -msgid "Thursday" -msgstr "星期四" - -#: ../../include/text.php:1161 -msgid "Friday" -msgstr "星期五" - -#: ../../include/text.php:1161 -msgid "Saturday" -msgstr "星期六" - -#: ../../include/text.php:1161 -msgid "Sunday" -msgstr "星期天" - -#: ../../include/text.php:1165 -msgid "January" -msgstr "一月" - -#: ../../include/text.php:1165 -msgid "February" -msgstr "二月" - -#: ../../include/text.php:1165 -msgid "March" -msgstr "三月" - -#: ../../include/text.php:1165 -msgid "April" -msgstr "四月" - -#: ../../include/text.php:1165 -msgid "May" -msgstr "五月" - -#: ../../include/text.php:1165 -msgid "June" -msgstr "六月" - -#: ../../include/text.php:1165 -msgid "July" -msgstr "七月" - -#: ../../include/text.php:1165 -msgid "August" -msgstr "八月" - -#: ../../include/text.php:1165 -msgid "September" -msgstr "九月" - -#: ../../include/text.php:1165 -msgid "October" -msgstr "十月" - -#: ../../include/text.php:1165 -msgid "November" -msgstr "十一月" - -#: ../../include/text.php:1165 -msgid "December" -msgstr "十二月" - -#: ../../include/text.php:1322 -msgid "bytes" -msgstr "字节" - -#: ../../include/text.php:1349 ../../include/text.php:1361 -msgid "Click to open/close" -msgstr "点击为开关" - -#: ../../include/text.php:1523 ../../mod/events.php:335 -msgid "link to source" -msgstr "链接到来源" - -#: ../../include/text.php:1566 ../../include/user.php:237 -msgid "default" -msgstr "默认" - -#: ../../include/text.php:1578 -msgid "Select an alternate language" -msgstr "选择别的语言" - -#: ../../include/text.php:1830 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456 -msgid "event" -msgstr "项目" - -#: ../../include/text.php:1832 ../../include/diaspora.php:1874 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151 -#: ../../view/theme/diabook/theme.php:464 -msgid "photo" -msgstr "照片" - -#: ../../include/text.php:1834 -msgid "activity" -msgstr "活动" - -#: ../../include/text.php:1836 ../../mod/content.php:628 -#: ../../object/Item.php:364 ../../object/Item.php:377 -msgid "comment" -msgid_plural "comments" -msgstr[0] "评论" - -#: ../../include/text.php:1837 -msgid "post" -msgstr "文章" - -#: ../../include/text.php:1992 -msgid "Item filed" -msgstr "把项目归档了" +msgid "" +"%s wrote the following post" +msgstr "%s写了下面的文章" + +#: ../../include/bbcode.php:514 ../../include/bbcode.php:534 +msgid "$1 wrote:" +msgstr "$1写:" + +#: ../../include/bbcode.php:559 ../../include/bbcode.php:560 +msgid "Encrypted content" +msgstr "加密的内容" #: ../../include/acl_selectors.php:325 msgid "Visible to everybody" @@ -751,7 +470,7 @@ msgid "Finishes:" msgstr "结束:" #: ../../include/bb2diaspora.php:415 ../../include/event.php:40 -#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1483 +#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1485 msgid "Location:" msgstr "位置:" @@ -878,6 +597,10 @@ msgstr "要紧错误:产生安全钥匙失败了。" msgid "An error occurred during registration. Please try again." msgstr "报到出了问题。请再试。" +#: ../../include/user.php:237 ../../include/text.php:1596 +msgid "default" +msgstr "默认" + #: ../../include/user.php:247 msgid "An error occurred creating your default profile. Please try again." msgstr "造成默认简介出了问题。请再试。" @@ -1001,7 +724,7 @@ msgid "Example: bob@example.com, http://example.com/barbara" msgstr "比如:li@example.com, http://example.com/li" #: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88 -#: ../../mod/match.php:58 ../../boot.php:1415 +#: ../../mod/match.php:58 ../../boot.php:1417 msgid "Connect" msgstr "连接" @@ -1076,7 +799,7 @@ msgid_plural "%d contacts in common" msgstr[0] "%d共同熟人" #: ../../include/contact_widgets.php:204 ../../mod/content.php:629 -#: ../../object/Item.php:365 ../../boot.php:669 +#: ../../object/Item.php:365 ../../boot.php:671 msgid "show more" msgstr "看多" @@ -1084,26 +807,7 @@ msgstr "看多" msgid " on Last.fm" msgstr "在Last.fm" -#: ../../include/bbcode.php:210 ../../include/bbcode.php:545 -msgid "Image/photo" -msgstr "图像/照片" - -#: ../../include/bbcode.php:272 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s写了下面的文章" - -#: ../../include/bbcode.php:510 ../../include/bbcode.php:530 -msgid "$1 wrote:" -msgstr "$1写:" - -#: ../../include/bbcode.php:553 ../../include/bbcode.php:554 -msgid "Encrypted content" -msgstr "加密的内容" - -#: ../../include/network.php:875 +#: ../../include/network.php:877 msgid "view full size" msgstr "看全尺寸" @@ -1221,6 +925,13 @@ msgstr "%1$s是成为%2$s的朋友" msgid "Sharing notification from Diaspora network" msgstr "分享通知从Diaspora网络" +#: ../../include/diaspora.php:1874 ../../include/text.php:1862 +#: ../../include/conversation.php:126 ../../include/conversation.php:254 +#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151 +#: ../../view/theme/diabook/theme.php:464 +msgid "photo" +msgstr "照片" + #: ../../include/diaspora.php:1874 ../../include/conversation.php:121 #: ../../include/conversation.php:130 ../../include/conversation.php:249 #: ../../include/conversation.php:258 ../../mod/subthread.php:87 @@ -1275,7 +986,7 @@ msgstr "您真的想删除这个项目吗?" msgid "Yes" msgstr "是" -#: ../../include/items.php:4023 ../../include/conversation.php:1080 +#: ../../include/items.php:4023 ../../include/conversation.php:1120 #: ../../mod/contacts.php:249 ../../mod/settings.php:585 #: ../../mod/settings.php:611 ../../mod/dfrn_request.php:848 #: ../../mod/suggest.php:32 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 @@ -1287,7 +998,7 @@ msgstr "退消" #: ../../include/items.php:4143 ../../mod/profiles.php:146 #: ../../mod/profiles.php:571 ../../mod/notes.php:20 ../../mod/display.php:242 -#: ../../mod/nogroup.php:25 ../../mod/item.php:140 ../../mod/item.php:156 +#: ../../mod/nogroup.php:25 ../../mod/item.php:143 ../../mod/item.php:159 #: ../../mod/allfriends.php:9 ../../mod/api.php:26 ../../mod/api.php:31 #: ../../mod/register.php:40 ../../mod/regmod.php:118 ../../mod/attach.php:33 #: ../../mod/contacts.php:147 ../../mod/settings.php:91 @@ -1472,6 +1183,300 @@ msgstr "能把优秀文章跟星标注" msgid "Cannot locate DNS info for database server '%s'" msgstr "找不到DNS信息为数据库服务器「%s」" +#: ../../include/text.php:294 +msgid "prev" +msgstr "上个" + +#: ../../include/text.php:296 +msgid "first" +msgstr "首先" + +#: ../../include/text.php:325 +msgid "last" +msgstr "最后" + +#: ../../include/text.php:328 +msgid "next" +msgstr "下个" + +#: ../../include/text.php:352 +msgid "newer" +msgstr "更新" + +#: ../../include/text.php:356 +msgid "older" +msgstr "更旧" + +#: ../../include/text.php:807 +msgid "No contacts" +msgstr "没有熟人" + +#: ../../include/text.php:816 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d熟人" + +#: ../../include/text.php:828 ../../mod/viewcontacts.php:76 +msgid "View Contacts" +msgstr "看熟人" + +#: ../../include/text.php:905 ../../include/text.php:906 +#: ../../include/nav.php:118 ../../mod/search.php:99 +msgid "Search" +msgstr "搜索" + +#: ../../include/text.php:908 ../../mod/notes.php:63 ../../mod/filer.php:31 +msgid "Save" +msgstr "保存" + +#: ../../include/text.php:957 +msgid "poke" +msgstr "戳" + +#: ../../include/text.php:957 ../../include/conversation.php:211 +msgid "poked" +msgstr "戳了" + +#: ../../include/text.php:958 +msgid "ping" +msgstr "砰" + +#: ../../include/text.php:958 +msgid "pinged" +msgstr "砰了" + +#: ../../include/text.php:959 +msgid "prod" +msgstr "柔戳" + +#: ../../include/text.php:959 +msgid "prodded" +msgstr "柔戳了" + +#: ../../include/text.php:960 +msgid "slap" +msgstr "掌击" + +#: ../../include/text.php:960 +msgid "slapped" +msgstr "掌击了" + +#: ../../include/text.php:961 +msgid "finger" +msgstr "指" + +#: ../../include/text.php:961 +msgid "fingered" +msgstr "指了" + +#: ../../include/text.php:962 +msgid "rebuff" +msgstr "窝脖儿" + +#: ../../include/text.php:962 +msgid "rebuffed" +msgstr "窝脖儿了" + +#: ../../include/text.php:976 +msgid "happy" +msgstr "开心" + +#: ../../include/text.php:977 +msgid "sad" +msgstr "伤心" + +#: ../../include/text.php:978 +msgid "mellow" +msgstr "轻松" + +#: ../../include/text.php:979 +msgid "tired" +msgstr "累" + +#: ../../include/text.php:980 +msgid "perky" +msgstr "机敏" + +#: ../../include/text.php:981 +msgid "angry" +msgstr "生气" + +#: ../../include/text.php:982 +msgid "stupified" +msgstr "麻醉" + +#: ../../include/text.php:983 +msgid "puzzled" +msgstr "纳闷" + +#: ../../include/text.php:984 +msgid "interested" +msgstr "有兴趣" + +#: ../../include/text.php:985 +msgid "bitter" +msgstr "苦" + +#: ../../include/text.php:986 +msgid "cheerful" +msgstr "快乐" + +#: ../../include/text.php:987 +msgid "alive" +msgstr "活着" + +#: ../../include/text.php:988 +msgid "annoyed" +msgstr "被烦恼" + +#: ../../include/text.php:989 +msgid "anxious" +msgstr "心焦" + +#: ../../include/text.php:990 +msgid "cranky" +msgstr "不稳" + +#: ../../include/text.php:991 +msgid "disturbed" +msgstr "不安" + +#: ../../include/text.php:992 +msgid "frustrated" +msgstr "被作梗" + +#: ../../include/text.php:993 +msgid "motivated" +msgstr "士气高涨" + +#: ../../include/text.php:994 +msgid "relaxed" +msgstr "轻松" + +#: ../../include/text.php:995 +msgid "surprised" +msgstr "诧异" + +#: ../../include/text.php:1163 +msgid "Monday" +msgstr "星期一" + +#: ../../include/text.php:1163 +msgid "Tuesday" +msgstr "星期二" + +#: ../../include/text.php:1163 +msgid "Wednesday" +msgstr "星期三" + +#: ../../include/text.php:1163 +msgid "Thursday" +msgstr "星期四" + +#: ../../include/text.php:1163 +msgid "Friday" +msgstr "星期五" + +#: ../../include/text.php:1163 +msgid "Saturday" +msgstr "星期六" + +#: ../../include/text.php:1163 +msgid "Sunday" +msgstr "星期天" + +#: ../../include/text.php:1167 +msgid "January" +msgstr "一月" + +#: ../../include/text.php:1167 +msgid "February" +msgstr "二月" + +#: ../../include/text.php:1167 +msgid "March" +msgstr "三月" + +#: ../../include/text.php:1167 +msgid "April" +msgstr "四月" + +#: ../../include/text.php:1167 +msgid "May" +msgstr "五月" + +#: ../../include/text.php:1167 +msgid "June" +msgstr "六月" + +#: ../../include/text.php:1167 +msgid "July" +msgstr "七月" + +#: ../../include/text.php:1167 +msgid "August" +msgstr "八月" + +#: ../../include/text.php:1167 +msgid "September" +msgstr "九月" + +#: ../../include/text.php:1167 +msgid "October" +msgstr "十月" + +#: ../../include/text.php:1167 +msgid "November" +msgstr "十一月" + +#: ../../include/text.php:1167 +msgid "December" +msgstr "十二月" + +#: ../../include/text.php:1323 ../../mod/videos.php:301 +msgid "View Video" +msgstr "看视频" + +#: ../../include/text.php:1355 +msgid "bytes" +msgstr "字节" + +#: ../../include/text.php:1379 ../../include/text.php:1391 +msgid "Click to open/close" +msgstr "点击为开关" + +#: ../../include/text.php:1553 ../../mod/events.php:335 +msgid "link to source" +msgstr "链接到来源" + +#: ../../include/text.php:1608 +msgid "Select an alternate language" +msgstr "选择别的语言" + +#: ../../include/text.php:1860 ../../include/conversation.php:118 +#: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456 +msgid "event" +msgstr "项目" + +#: ../../include/text.php:1864 +msgid "activity" +msgstr "活动" + +#: ../../include/text.php:1866 ../../mod/content.php:628 +#: ../../object/Item.php:364 ../../object/Item.php:377 +msgid "comment" +msgid_plural "comments" +msgstr[0] "评论" + +#: ../../include/text.php:1867 +msgid "post" +msgstr "文章" + +#: ../../include/text.php:2022 +msgid "Item filed" +msgstr "把项目归档了" + #: ../../include/group.php:25 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -1540,44 +1545,44 @@ msgstr "文章/项目" msgid "%1$s marked %2$s's %3$s as favorite" msgstr "%1$s标注%2$s的%3$s为偏爱" -#: ../../include/conversation.php:587 ../../mod/content.php:461 +#: ../../include/conversation.php:612 ../../mod/content.php:461 #: ../../mod/content.php:763 ../../object/Item.php:126 msgid "Select" msgstr "选择" -#: ../../include/conversation.php:588 ../../mod/admin.php:770 +#: ../../include/conversation.php:613 ../../mod/admin.php:770 #: ../../mod/settings.php:647 ../../mod/group.php:171 #: ../../mod/photos.php:1637 ../../mod/content.php:462 #: ../../mod/content.php:764 ../../object/Item.php:127 msgid "Delete" msgstr "删除" -#: ../../include/conversation.php:627 ../../mod/content.php:495 +#: ../../include/conversation.php:652 ../../mod/content.php:495 #: ../../mod/content.php:875 ../../mod/content.php:876 #: ../../object/Item.php:306 ../../object/Item.php:307 #, php-format msgid "View %s's profile @ %s" msgstr "看%s的简介@ %s" -#: ../../include/conversation.php:639 ../../object/Item.php:297 +#: ../../include/conversation.php:664 ../../object/Item.php:297 msgid "Categories:" msgstr "种类:" -#: ../../include/conversation.php:640 ../../object/Item.php:298 +#: ../../include/conversation.php:665 ../../object/Item.php:298 msgid "Filed under:" msgstr "归档在:" -#: ../../include/conversation.php:647 ../../mod/content.php:505 +#: ../../include/conversation.php:672 ../../mod/content.php:505 #: ../../mod/content.php:887 ../../object/Item.php:320 #, php-format msgid "%s from %s" msgstr "%s从%s" -#: ../../include/conversation.php:662 ../../mod/content.php:520 +#: ../../include/conversation.php:687 ../../mod/content.php:520 msgid "View in context" msgstr "看在上下文" -#: ../../include/conversation.php:664 ../../include/conversation.php:1060 +#: ../../include/conversation.php:689 ../../include/conversation.php:1100 #: ../../mod/editpost.php:124 ../../mod/wallmessage.php:156 #: ../../mod/message.php:334 ../../mod/message.php:565 #: ../../mod/photos.php:1532 ../../mod/content.php:522 @@ -1585,205 +1590,205 @@ msgstr "看在上下文" msgid "Please wait" msgstr "请等一下" -#: ../../include/conversation.php:728 +#: ../../include/conversation.php:768 msgid "remove" msgstr "删除" -#: ../../include/conversation.php:732 +#: ../../include/conversation.php:772 msgid "Delete Selected Items" msgstr "删除选的项目" -#: ../../include/conversation.php:831 +#: ../../include/conversation.php:871 msgid "Follow Thread" msgstr "关注线绳" -#: ../../include/conversation.php:900 +#: ../../include/conversation.php:940 #, php-format msgid "%s likes this." msgstr "%s喜欢这个." -#: ../../include/conversation.php:900 +#: ../../include/conversation.php:940 #, php-format msgid "%s doesn't like this." msgstr "%s没有喜欢这个." -#: ../../include/conversation.php:905 +#: ../../include/conversation.php:945 #, php-format msgid "%2$d people like this" msgstr "%2$d人们喜欢这个" -#: ../../include/conversation.php:908 +#: ../../include/conversation.php:948 #, php-format msgid "%2$d people don't like this" msgstr "%2$d人们不喜欢这个" -#: ../../include/conversation.php:922 +#: ../../include/conversation.php:962 msgid "and" msgstr "和" -#: ../../include/conversation.php:928 +#: ../../include/conversation.php:968 #, php-format msgid ", and %d other people" msgstr ",和%d别人" -#: ../../include/conversation.php:930 +#: ../../include/conversation.php:970 #, php-format msgid "%s like this." msgstr "%s喜欢这个" -#: ../../include/conversation.php:930 +#: ../../include/conversation.php:970 #, php-format msgid "%s don't like this." msgstr "%s不喜欢这个" -#: ../../include/conversation.php:957 ../../include/conversation.php:975 +#: ../../include/conversation.php:997 ../../include/conversation.php:1015 msgid "Visible to everybody" msgstr "大家可见的" -#: ../../include/conversation.php:958 ../../include/conversation.php:976 +#: ../../include/conversation.php:998 ../../include/conversation.php:1016 #: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 #: ../../mod/message.php:283 ../../mod/message.php:291 #: ../../mod/message.php:466 ../../mod/message.php:474 msgid "Please enter a link URL:" msgstr "请输入环节URL:" -#: ../../include/conversation.php:959 ../../include/conversation.php:977 +#: ../../include/conversation.php:999 ../../include/conversation.php:1017 msgid "Please enter a video link/URL:" msgstr "请输入视频连接/URL:" -#: ../../include/conversation.php:960 ../../include/conversation.php:978 +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 msgid "Please enter an audio link/URL:" msgstr "请输入音响连接/URL:" -#: ../../include/conversation.php:961 ../../include/conversation.php:979 +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 msgid "Tag term:" msgstr "标签:" -#: ../../include/conversation.php:962 ../../include/conversation.php:980 +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 #: ../../mod/filer.php:30 msgid "Save to Folder:" msgstr "保存再文件夹:" -#: ../../include/conversation.php:963 ../../include/conversation.php:981 +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 msgid "Where are you right now?" msgstr "你在哪里?" -#: ../../include/conversation.php:964 +#: ../../include/conversation.php:1004 msgid "Delete item(s)?" msgstr "把项目删除吗?" -#: ../../include/conversation.php:1006 +#: ../../include/conversation.php:1046 msgid "Post to Email" msgstr "电邮发布" -#: ../../include/conversation.php:1041 ../../mod/photos.php:1531 +#: ../../include/conversation.php:1081 ../../mod/photos.php:1531 msgid "Share" msgstr "分享" -#: ../../include/conversation.php:1042 ../../mod/editpost.php:110 +#: ../../include/conversation.php:1082 ../../mod/editpost.php:110 #: ../../mod/wallmessage.php:154 ../../mod/message.php:332 #: ../../mod/message.php:562 msgid "Upload photo" msgstr "上传照片" -#: ../../include/conversation.php:1043 ../../mod/editpost.php:111 +#: ../../include/conversation.php:1083 ../../mod/editpost.php:111 msgid "upload photo" msgstr "上传照片" -#: ../../include/conversation.php:1044 ../../mod/editpost.php:112 +#: ../../include/conversation.php:1084 ../../mod/editpost.php:112 msgid "Attach file" msgstr "附上文件" -#: ../../include/conversation.php:1045 ../../mod/editpost.php:113 +#: ../../include/conversation.php:1085 ../../mod/editpost.php:113 msgid "attach file" msgstr "附上文件" -#: ../../include/conversation.php:1046 ../../mod/editpost.php:114 +#: ../../include/conversation.php:1086 ../../mod/editpost.php:114 #: ../../mod/wallmessage.php:155 ../../mod/message.php:333 #: ../../mod/message.php:563 msgid "Insert web link" msgstr "插入网页环节" -#: ../../include/conversation.php:1047 ../../mod/editpost.php:115 +#: ../../include/conversation.php:1087 ../../mod/editpost.php:115 msgid "web link" msgstr "网页环节" -#: ../../include/conversation.php:1048 ../../mod/editpost.php:116 +#: ../../include/conversation.php:1088 ../../mod/editpost.php:116 msgid "Insert video link" msgstr "插入视频环节" -#: ../../include/conversation.php:1049 ../../mod/editpost.php:117 +#: ../../include/conversation.php:1089 ../../mod/editpost.php:117 msgid "video link" msgstr "视频环节" -#: ../../include/conversation.php:1050 ../../mod/editpost.php:118 +#: ../../include/conversation.php:1090 ../../mod/editpost.php:118 msgid "Insert audio link" msgstr "插入录音环节" -#: ../../include/conversation.php:1051 ../../mod/editpost.php:119 +#: ../../include/conversation.php:1091 ../../mod/editpost.php:119 msgid "audio link" msgstr "录音环节" -#: ../../include/conversation.php:1052 ../../mod/editpost.php:120 +#: ../../include/conversation.php:1092 ../../mod/editpost.php:120 msgid "Set your location" msgstr "设定您的位置" -#: ../../include/conversation.php:1053 ../../mod/editpost.php:121 +#: ../../include/conversation.php:1093 ../../mod/editpost.php:121 msgid "set location" msgstr "指定位置" -#: ../../include/conversation.php:1054 ../../mod/editpost.php:122 +#: ../../include/conversation.php:1094 ../../mod/editpost.php:122 msgid "Clear browser location" msgstr "清空浏览器位置" -#: ../../include/conversation.php:1055 ../../mod/editpost.php:123 +#: ../../include/conversation.php:1095 ../../mod/editpost.php:123 msgid "clear location" msgstr "清理出位置" -#: ../../include/conversation.php:1057 ../../mod/editpost.php:137 +#: ../../include/conversation.php:1097 ../../mod/editpost.php:137 msgid "Set title" msgstr "指定标题" -#: ../../include/conversation.php:1059 ../../mod/editpost.php:139 +#: ../../include/conversation.php:1099 ../../mod/editpost.php:139 msgid "Categories (comma-separated list)" msgstr "种类(逗号分隔单)" -#: ../../include/conversation.php:1061 ../../mod/editpost.php:125 +#: ../../include/conversation.php:1101 ../../mod/editpost.php:125 msgid "Permission settings" msgstr "权设置" -#: ../../include/conversation.php:1062 +#: ../../include/conversation.php:1102 msgid "permissions" msgstr "权利" -#: ../../include/conversation.php:1070 ../../mod/editpost.php:133 +#: ../../include/conversation.php:1110 ../../mod/editpost.php:133 msgid "CC: email addresses" msgstr "抄送: 电子邮件地址" -#: ../../include/conversation.php:1071 ../../mod/editpost.php:134 +#: ../../include/conversation.php:1111 ../../mod/editpost.php:134 msgid "Public post" msgstr "公开的消息" -#: ../../include/conversation.php:1073 ../../mod/editpost.php:140 +#: ../../include/conversation.php:1113 ../../mod/editpost.php:140 msgid "Example: bob@example.com, mary@example.com" msgstr "比如: li@example.com, wang@example.com" -#: ../../include/conversation.php:1077 ../../mod/editpost.php:145 +#: ../../include/conversation.php:1117 ../../mod/editpost.php:145 #: ../../mod/photos.php:1553 ../../mod/photos.php:1597 #: ../../mod/photos.php:1680 ../../mod/content.php:742 #: ../../object/Item.php:662 msgid "Preview" msgstr "预演" -#: ../../include/conversation.php:1086 +#: ../../include/conversation.php:1126 msgid "Post to Groups" msgstr "发到组" -#: ../../include/conversation.php:1087 +#: ../../include/conversation.php:1127 msgid "Post to Contacts" msgstr "发到熟人" -#: ../../include/conversation.php:1088 +#: ../../include/conversation.php:1128 msgid "Private post" msgstr "私人文章" @@ -1977,7 +1982,7 @@ msgstr "请批准或拒绝建议在%s" msgid "[no subject]" msgstr "[无题目]" -#: ../../include/message.php:144 ../../mod/item.php:443 +#: ../../include/message.php:144 ../../mod/item.php:446 #: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 #: ../../mod/wall_upload.php:151 msgid "Wall Photos" @@ -1991,7 +1996,7 @@ msgstr "这里没有什么新的" msgid "Clear notifications" msgstr "清理出通知" -#: ../../include/nav.php:73 ../../boot.php:1134 +#: ../../include/nav.php:73 ../../boot.php:1136 msgid "Logout" msgstr "注销" @@ -1999,7 +2004,7 @@ msgstr "注销" msgid "End this session" msgstr "结束这段时间" -#: ../../include/nav.php:76 ../../boot.php:1938 +#: ../../include/nav.php:76 ../../boot.php:1940 msgid "Status" msgstr "现状" @@ -2013,7 +2018,7 @@ msgid "Your profile page" msgstr "你的简介页" #: ../../include/nav.php:78 ../../mod/fbrowser.php:25 -#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1952 +#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1954 msgid "Photos" msgstr "照片" @@ -2022,7 +2027,7 @@ msgid "Your photos" msgstr "你的照片" #: ../../include/nav.php:79 ../../mod/events.php:370 -#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1962 +#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1971 msgid "Events" msgstr "事件" @@ -2038,7 +2043,7 @@ msgstr "私人的便条" msgid "Your personal photos" msgstr "你私人的照片" -#: ../../include/nav.php:91 ../../boot.php:1135 +#: ../../include/nav.php:91 ../../boot.php:1137 msgid "Login" msgstr "登录" @@ -2055,7 +2060,7 @@ msgstr "主页" msgid "Home Page" msgstr "主页" -#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1110 +#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1112 msgid "Register" msgstr "注册" @@ -2184,7 +2189,7 @@ msgstr "配置" msgid "Account settings" msgstr "帐户配置" -#: ../../include/nav.php:169 ../../boot.php:1437 +#: ../../include/nav.php:169 ../../boot.php:1439 msgid "Profiles" msgstr "简介" @@ -2582,23 +2587,23 @@ msgstr "年纪:" msgid "Edit/Manage Profiles" msgstr "编辑/管理简介" -#: ../../mod/profiles.php:726 ../../boot.php:1443 ../../boot.php:1469 +#: ../../mod/profiles.php:726 ../../boot.php:1445 ../../boot.php:1471 msgid "Change profile photo" msgstr "换简介照片" -#: ../../mod/profiles.php:727 ../../boot.php:1444 +#: ../../mod/profiles.php:727 ../../boot.php:1446 msgid "Create New Profile" msgstr "创造新的简介" -#: ../../mod/profiles.php:738 ../../boot.php:1454 +#: ../../mod/profiles.php:738 ../../boot.php:1456 msgid "Profile Image" msgstr "简介图像" -#: ../../mod/profiles.php:740 ../../boot.php:1457 +#: ../../mod/profiles.php:740 ../../boot.php:1459 msgid "visible to everybody" msgstr "给打假可见的" -#: ../../mod/profiles.php:741 ../../boot.php:1458 +#: ../../mod/profiles.php:741 ../../boot.php:1460 msgid "Edit visibility" msgstr "修改能见度" @@ -2626,14 +2631,14 @@ msgstr "能见被" msgid "All Contacts (with secure profile access)" msgstr "所有熟人(跟安全地简介使用权)" -#: ../../mod/notes.php:44 ../../boot.php:1969 +#: ../../mod/notes.php:44 ../../boot.php:1978 msgid "Personal Notes" msgstr "私人便条" #: ../../mod/display.php:19 ../../mod/search.php:89 #: ../../mod/dfrn_request.php:761 ../../mod/directory.php:31 -#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:914 -#: ../../mod/community.php:18 +#: ../../mod/videos.php:115 ../../mod/viewcontacts.php:17 +#: ../../mod/photos.php:914 ../../mod/community.php:18 msgid "Public access denied." msgstr "公众看拒绝" @@ -3500,37 +3505,37 @@ msgstr "FTP用户" msgid "FTP Password" msgstr "FTP密码" -#: ../../mod/item.php:105 +#: ../../mod/item.php:108 msgid "Unable to locate original post." msgstr "找不到当初的新闻" -#: ../../mod/item.php:307 +#: ../../mod/item.php:310 msgid "Empty post discarded." msgstr "空心的新闻丢弃了" -#: ../../mod/item.php:869 +#: ../../mod/item.php:872 msgid "System error. Post not saved." msgstr "系统错误。x" -#: ../../mod/item.php:894 +#: ../../mod/item.php:897 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "这个新闻是由%s,Friendica社会化网络成员之一,发给你。" -#: ../../mod/item.php:896 +#: ../../mod/item.php:899 #, php-format msgid "You may visit them online at %s" msgstr "你可以网上拜访他在%s" -#: ../../mod/item.php:897 +#: ../../mod/item.php:900 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "你不想受到这些新闻的话,请回答这个新闻给发者联系。" -#: ../../mod/item.php:901 +#: ../../mod/item.php:904 #, php-format msgid "%s posted an update." msgstr "%s贴上一个新闻。" @@ -5041,6 +5046,26 @@ msgstr "搜索人物" msgid "No matches" msgstr "没有结果" +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "没选择的视频" + +#: ../../mod/videos.php:226 ../../mod/photos.php:1025 +msgid "Access to this item is restricted." +msgstr "这个项目使用权限的。" + +#: ../../mod/videos.php:308 ../../mod/photos.php:1784 +msgid "View Album" +msgstr "看照片册" + +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "最近视频" + +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "上传新视频" + #: ../../mod/tagrm.php:41 msgid "Tag removed" msgstr "标签去除了" @@ -5544,7 +5569,7 @@ msgid "" "Password reset failed." msgstr "要求确认不了。(您可能已经提交它。)重设密码失败了。" -#: ../../mod/lostpass.php:84 ../../boot.php:1149 +#: ../../mod/lostpass.php:84 ../../boot.php:1151 msgid "Password Reset" msgstr "复位密码" @@ -5928,7 +5953,7 @@ msgstr "没有别的家通信。" msgid "Home Notifications" msgstr "主页通知" -#: ../../mod/photos.php:51 ../../boot.php:1955 +#: ../../mod/photos.php:51 ../../boot.php:1957 msgid "Photo Albums" msgstr "相册" @@ -5988,10 +6013,6 @@ msgstr "图片文件空的。" msgid "No photos selected" msgstr "没有照片挑选了" -#: ../../mod/photos.php:1025 -msgid "Access to this item is restricted." -msgstr "这个项目使用权限的。" - #: ../../mod/photos.php:1088 #, php-format msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." @@ -6129,14 +6150,10 @@ msgstr "这是你" #: ../../mod/photos.php:1551 ../../mod/photos.php:1595 #: ../../mod/photos.php:1678 ../../mod/content.php:732 -#: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:668 +#: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:670 msgid "Comment" msgstr "评论" -#: ../../mod/photos.php:1784 -msgid "View Album" -msgstr "看照片册" - #: ../../mod/photos.php:1793 msgid "Recent Photos" msgstr "最近的照片" @@ -6322,7 +6339,7 @@ msgid "" " features and resources." msgstr "我们帮助页可查阅到详情关于别的编程特点和资源。" -#: ../../mod/profile.php:21 ../../boot.php:1323 +#: ../../mod/profile.php:21 ../../boot.php:1325 msgid "Requested profile is not available." msgstr "要求的简介联系不上的。" @@ -6331,8 +6348,8 @@ msgid "Tips for New Members" msgstr "提示对新成员" #: ../../mod/install.php:117 -msgid "Friendica Social Communications Server - Setup" -msgstr "Friendica社会交通服务器-安装" +msgid "Friendica Communications Server - Setup" +msgstr "Friendica沟通服务器-安装" #: ../../mod/install.php:123 msgid "Could not connect to database." @@ -6961,124 +6978,128 @@ msgstr "文本区字体大小" msgid "toggle mobile" msgstr "交替手机" -#: ../../boot.php:667 +#: ../../boot.php:669 msgid "Delete this item?" msgstr "删除这个项目?" -#: ../../boot.php:670 +#: ../../boot.php:672 msgid "show fewer" msgstr "显示更小" -#: ../../boot.php:997 +#: ../../boot.php:999 #, php-format msgid "Update %s failed. See error logs." msgstr "更新%s美通过。看错误记录。" -#: ../../boot.php:999 +#: ../../boot.php:1001 #, php-format msgid "Update Error at %s" msgstr "更新错误在%s" -#: ../../boot.php:1109 +#: ../../boot.php:1111 msgid "Create a New Account" msgstr "创造新的账户" -#: ../../boot.php:1137 +#: ../../boot.php:1139 msgid "Nickname or Email address: " msgstr "绰号或电子邮件地址: " -#: ../../boot.php:1138 +#: ../../boot.php:1140 msgid "Password: " msgstr "密码: " -#: ../../boot.php:1139 +#: ../../boot.php:1141 msgid "Remember me" msgstr "记住我" -#: ../../boot.php:1142 +#: ../../boot.php:1144 msgid "Or login using OpenID: " msgstr "或者用OpenID登记:" -#: ../../boot.php:1148 +#: ../../boot.php:1150 msgid "Forgot your password?" msgstr "忘记你的密码吗?" -#: ../../boot.php:1151 +#: ../../boot.php:1153 msgid "Website Terms of Service" msgstr "网站的各项规定" -#: ../../boot.php:1152 +#: ../../boot.php:1154 msgid "terms of service" msgstr "各项规定" -#: ../../boot.php:1154 +#: ../../boot.php:1156 msgid "Website Privacy Policy" msgstr "网站隐私政策" -#: ../../boot.php:1155 +#: ../../boot.php:1157 msgid "privacy policy" msgstr "隐私政策" -#: ../../boot.php:1284 +#: ../../boot.php:1286 msgid "Requested account is not available." msgstr "要求的账户不可用。" -#: ../../boot.php:1363 ../../boot.php:1467 +#: ../../boot.php:1365 ../../boot.php:1469 msgid "Edit profile" msgstr "修改简介" -#: ../../boot.php:1429 +#: ../../boot.php:1431 msgid "Message" msgstr "通知" -#: ../../boot.php:1437 +#: ../../boot.php:1439 msgid "Manage/edit profiles" msgstr "管理/修改简介" -#: ../../boot.php:1566 ../../boot.php:1652 +#: ../../boot.php:1568 ../../boot.php:1654 msgid "g A l F d" msgstr "g A l d F" -#: ../../boot.php:1567 ../../boot.php:1653 +#: ../../boot.php:1569 ../../boot.php:1655 msgid "F d" msgstr "F d" -#: ../../boot.php:1612 ../../boot.php:1693 +#: ../../boot.php:1614 ../../boot.php:1695 msgid "[today]" msgstr "[今天]" -#: ../../boot.php:1624 +#: ../../boot.php:1626 msgid "Birthday Reminders" msgstr "提醒生日" -#: ../../boot.php:1625 +#: ../../boot.php:1627 msgid "Birthdays this week:" msgstr "这周的生日:" -#: ../../boot.php:1686 +#: ../../boot.php:1688 msgid "[No description]" msgstr "[无描述]" -#: ../../boot.php:1704 +#: ../../boot.php:1706 msgid "Event Reminders" msgstr "事件提醒" -#: ../../boot.php:1705 +#: ../../boot.php:1707 msgid "Events this week:" msgstr "这周的事件:" -#: ../../boot.php:1941 +#: ../../boot.php:1943 msgid "Status Messages and Posts" msgstr "现状通知和文章" -#: ../../boot.php:1948 +#: ../../boot.php:1950 msgid "Profile Details" msgstr "简介内容" -#: ../../boot.php:1965 +#: ../../boot.php:1961 ../../boot.php:1964 +msgid "Videos" +msgstr "视频" + +#: ../../boot.php:1974 msgid "Events and Calendar" msgstr "项目和日历" -#: ../../boot.php:1972 +#: ../../boot.php:1981 msgid "Only You Can See This" msgstr "只您许看这个" diff --git a/view/zh-cn/strings.php b/view/zh-cn/strings.php index da920f55dd..335b7511b2 100644 --- a/view/zh-cn/strings.php +++ b/view/zh-cn/strings.php @@ -98,6 +98,181 @@ $a->strings["View Photos"] = "看照片"; $a->strings["Network Posts"] = "网络文章"; $a->strings["Edit Contact"] = "编辑熟人"; $a->strings["Send PM"] = "法私人的新闻"; +$a->strings["Image/photo"] = "图像/照片"; +$a->strings["%s wrote the following post"] = "%s写了下面的文章"; +$a->strings["$1 wrote:"] = "$1写:"; +$a->strings["Encrypted content"] = "加密的内容"; +$a->strings["Visible to everybody"] = "任何人可见的"; +$a->strings["show"] = "著"; +$a->strings["don't show"] = "别著"; +$a->strings["Logged out."] = "注销了"; +$a->strings["Login failed."] = "登记失败了。"; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "我们用您输入的OpenID登录的时候碰到问题。请核实拼法是对的。"; +$a->strings["The error message was:"] = "错误通知是:"; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Starts:"] = "开始:"; +$a->strings["Finishes:"] = "结束:"; +$a->strings["Location:"] = "位置:"; +$a->strings["Disallowed profile URL."] = "不允许的简介地址."; +$a->strings["Connect URL missing."] = "连接URL失踪的。"; +$a->strings["This site is not configured to allow communications with other networks."] = "这网站没配置允许跟别的网络交流."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "没有兼容协议或者摘要找到了."; +$a->strings["The profile address specified does not provide adequate information."] = "输入的简介地址没有够消息。"; +$a->strings["An author or name was not found."] = "找不到作者或名。"; +$a->strings["No browser URL could be matched to this address."] = "这个地址没有符合什么游览器URL。"; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "使不了知道的相配或邮件熟人相配 "; +$a->strings["Use mailto: in front of address to force email check."] = "输入mailto:地址前为要求电子邮件检查。"; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "输入的简介地址属在这个网站使不可用的网络。"; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "有限的简介。这人不会接受直达/私人通信从您。"; +$a->strings["Unable to retrieve contact information."] = "不能取回熟人消息。"; +$a->strings["following"] = "关注"; +$a->strings["An invitation is required."] = "邀请必要的。"; +$a->strings["Invitation could not be verified."] = "不能证实邀请。"; +$a->strings["Invalid OpenID url"] = "无效的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["Not a valid email address."] = "无效的邮件地址。"; +$a->strings["Cannot use that email."] = "不能用这个邮件地址。"; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "您的昵称只能包含\"a-z\",\"0-9\",\"-\"和\"_\",还有头一字必须是拉丁字。"; +$a->strings["Nickname is already registered. Please choose another."] = "昵称已经报到。请选择新的。"; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "昵称曾经这里注册于是不能再用。请选择别的。"; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "要紧错误:产生安全钥匙失败了。"; +$a->strings["An error occurred during registration. Please try again."] = "报到出了问题。请再试。"; +$a->strings["default"] = "默认"; +$a->strings["An error occurred creating your default profile. Please try again."] = "造成默认简介出了问题。请再试。"; +$a->strings["Profile Photos"] = "简介照片"; +$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["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "电子邮件"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["Add New Contact"] = "增添新的熟人"; +$a->strings["Enter address or web location"] = "输入地址或网位置"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "比如:li@example.com, http://example.com/li"; +$a->strings["Connect"] = "连接"; +$a->strings["%d invitation available"] = array( + 0 => "%d邀请可用的", +); +$a->strings["Find People"] = "找人物"; +$a->strings["Enter name or interest"] = "输入名字或兴趣"; +$a->strings["Connect/Follow"] = "连接/关注"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "比如:李某,打鱼"; +$a->strings["Find"] = "搜索"; +$a->strings["Friend Suggestions"] = "友谊建议"; +$a->strings["Similar Interests"] = "相似兴趣"; +$a->strings["Random Profile"] = "随机简介"; +$a->strings["Invite Friends"] = "邀请朋友们"; +$a->strings["Networks"] = "网络"; +$a->strings["All Networks"] = "所有网络"; +$a->strings["Saved Folders"] = "保存的文件夹"; +$a->strings["Everything"] = "一切"; +$a->strings["Categories"] = "种类"; +$a->strings["%d contact in common"] = array( + 0 => "%d共同熟人", +); +$a->strings["show more"] = "看多"; +$a->strings[" on Last.fm"] = "在Last.fm"; +$a->strings["view full size"] = "看全尺寸"; +$a->strings["Miscellaneous"] = "形形色色"; +$a->strings["year"] = "年"; +$a->strings["month"] = "月"; +$a->strings["day"] = "日"; +$a->strings["never"] = "从未"; +$a->strings["less than a second ago"] = "一秒以内"; +$a->strings["years"] = "年"; +$a->strings["months"] = "月"; +$a->strings["week"] = "星期"; +$a->strings["weeks"] = "星期"; +$a->strings["days"] = "天"; +$a->strings["hour"] = "小时"; +$a->strings["hours"] = "小时"; +$a->strings["minute"] = "分钟"; +$a->strings["minutes"] = "分钟"; +$a->strings["second"] = "秒"; +$a->strings["seconds"] = "秒"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s以前"; +$a->strings["%s's birthday"] = "%s的生日"; +$a->strings["Happy Birthday %s"] = "生日快乐%s"; +$a->strings["Click here to upgrade."] = "这里点击为更新。"; +$a->strings["This action exceeds the limits set by your subscription plan."] = "这个行动超过您订阅的限制。"; +$a->strings["This action is not available under your subscription plan."] = "这个行动在您的订阅不可用的。"; +$a->strings["(no subject)"] = "沒有题目"; +$a->strings["noreply"] = "noreply"; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s是成为%2\$s的朋友"; +$a->strings["Sharing notification from Diaspora network"] = "分享通知从Diaspora网络"; +$a->strings["photo"] = "照片"; +$a->strings["status"] = "现状"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s喜欢%2\$s的%3\$s"; +$a->strings["Attachments:"] = "附件:"; +$a->strings["[Name Withheld]"] = "[名字拒给]"; +$a->strings["A new person is sharing with you at "] = "一位新人给你分享在"; +$a->strings["You have a new follower at "] = "你有新的关注者在"; +$a->strings["Item not found."] = "项目找不到。"; +$a->strings["Do you really want to delete this item?"] = "您真的想删除这个项目吗?"; +$a->strings["Yes"] = "是"; +$a->strings["Cancel"] = "退消"; +$a->strings["Permission denied."] = "权限不够。"; +$a->strings["Archives"] = "档案"; +$a->strings["General Features"] = "总的特点"; +$a->strings["Multiple Profiles"] = "多简介"; +$a->strings["Ability to create multiple profiles"] = "能穿凿多简介"; +$a->strings["Post Composition Features"] = "写文章特点"; +$a->strings["Richtext Editor"] = "富文本格式编辑"; +$a->strings["Enable richtext editor"] = "使富文本格式编辑可用"; +$a->strings["Post Preview"] = "文章预演"; +$a->strings["Allow previewing posts and comments before publishing them"] = "允许文章和评论出版前预演"; +$a->strings["Network Sidebar Widgets"] = "网络工具栏小窗口"; +$a->strings["Search by Date"] = "按日期搜索"; +$a->strings["Ability to select posts by date ranges"] = "能按时期范围选择文章"; +$a->strings["Group Filter"] = "组滤器"; +$a->strings["Enable widget to display Network posts only from selected group"] = "使光表示网络文章从选择的组小窗口"; +$a->strings["Network Filter"] = "网络滤器"; +$a->strings["Enable widget to display Network posts only from selected network"] = "使光表示网络文章从选择的网络小窗口"; +$a->strings["Saved Searches"] = "保存的搜索"; +$a->strings["Save search terms for re-use"] = "保存搜索关键为再用"; +$a->strings["Network Tabs"] = "网络分页"; +$a->strings["Network Personal Tab"] = "网络私人分页"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "使表示光网络文章您参加了分页可用"; +$a->strings["Network New Tab"] = "网络新分页"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "使表示光网络文章在12小时内分页可用"; +$a->strings["Network Shared Links Tab"] = "网络分享链接分页"; +$a->strings["Enable tab to display only Network posts with links in them"] = "使表示光网络文章包括链接分页可用"; +$a->strings["Post/Comment Tools"] = "文章/评论工具"; +$a->strings["Multiple Deletion"] = "多删除"; +$a->strings["Select and delete multiple posts/comments at once"] = "选择和删除多文章/评论一次"; +$a->strings["Edit Sent Posts"] = "编辑发送的文章"; +$a->strings["Edit and correct posts and comments after sending"] = "编辑或修改文章和评论发送后"; +$a->strings["Tagging"] = "标签"; +$a->strings["Ability to tag existing posts"] = "能把目前的文章标签"; +$a->strings["Post Categories"] = "文章种类"; +$a->strings["Add categories to your posts"] = "加入种类给您的文章"; +$a->strings["Ability to file posts under folders"] = "能把文章归档在文件夹 "; +$a->strings["Dislike Posts"] = "不喜欢文章"; +$a->strings["Ability to dislike posts/comments"] = "能不喜欢文章/评论"; +$a->strings["Star Posts"] = "文章星"; +$a->strings["Ability to mark special posts with a star indicator"] = "能把优秀文章跟星标注"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "找不到DNS信息为数据库服务器「%s」"; $a->strings["prev"] = "上个"; $a->strings["first"] = "首先"; $a->strings["last"] = "最后"; @@ -162,192 +337,18 @@ $a->strings["September"] = "九月"; $a->strings["October"] = "十月"; $a->strings["November"] = "十一月"; $a->strings["December"] = "十二月"; +$a->strings["View Video"] = "看视频"; $a->strings["bytes"] = "字节"; $a->strings["Click to open/close"] = "点击为开关"; $a->strings["link to source"] = "链接到来源"; -$a->strings["default"] = "默认"; $a->strings["Select an alternate language"] = "选择别的语言"; $a->strings["event"] = "项目"; -$a->strings["photo"] = "照片"; $a->strings["activity"] = "活动"; $a->strings["comment"] = array( 0 => "评论", ); $a->strings["post"] = "文章"; $a->strings["Item filed"] = "把项目归档了"; -$a->strings["Visible to everybody"] = "任何人可见的"; -$a->strings["show"] = "著"; -$a->strings["don't show"] = "别著"; -$a->strings["Logged out."] = "注销了"; -$a->strings["Login failed."] = "登记失败了。"; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "我们用您输入的OpenID登录的时候碰到问题。请核实拼法是对的。"; -$a->strings["The error message was:"] = "错误通知是:"; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Starts:"] = "开始:"; -$a->strings["Finishes:"] = "结束:"; -$a->strings["Location:"] = "位置:"; -$a->strings["Disallowed profile URL."] = "不允许的简介地址."; -$a->strings["Connect URL missing."] = "连接URL失踪的。"; -$a->strings["This site is not configured to allow communications with other networks."] = "这网站没配置允许跟别的网络交流."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "没有兼容协议或者摘要找到了."; -$a->strings["The profile address specified does not provide adequate information."] = "输入的简介地址没有够消息。"; -$a->strings["An author or name was not found."] = "找不到作者或名。"; -$a->strings["No browser URL could be matched to this address."] = "这个地址没有符合什么游览器URL。"; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "使不了知道的相配或邮件熟人相配 "; -$a->strings["Use mailto: in front of address to force email check."] = "输入mailto:地址前为要求电子邮件检查。"; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "输入的简介地址属在这个网站使不可用的网络。"; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "有限的简介。这人不会接受直达/私人通信从您。"; -$a->strings["Unable to retrieve contact information."] = "不能取回熟人消息。"; -$a->strings["following"] = "关注"; -$a->strings["An invitation is required."] = "邀请必要的。"; -$a->strings["Invitation could not be verified."] = "不能证实邀请。"; -$a->strings["Invalid OpenID url"] = "无效的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["Not a valid email address."] = "无效的邮件地址。"; -$a->strings["Cannot use that email."] = "不能用这个邮件地址。"; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "您的昵称只能包含\"a-z\",\"0-9\",\"-\"和\"_\",还有头一字必须是拉丁字。"; -$a->strings["Nickname is already registered. Please choose another."] = "昵称已经报到。请选择新的。"; -$a->strings["Nickname was once registered here and may not be re-used. 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["Profile Photos"] = "简介照片"; -$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["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "电子邮件"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["Add New Contact"] = "增添新的熟人"; -$a->strings["Enter address or web location"] = "输入地址或网位置"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "比如:li@example.com, http://example.com/li"; -$a->strings["Connect"] = "连接"; -$a->strings["%d invitation available"] = array( - 0 => "%d邀请可用的", -); -$a->strings["Find People"] = "找人物"; -$a->strings["Enter name or interest"] = "输入名字或兴趣"; -$a->strings["Connect/Follow"] = "连接/关注"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "比如:李某,打鱼"; -$a->strings["Find"] = "搜索"; -$a->strings["Friend Suggestions"] = "友谊建议"; -$a->strings["Similar Interests"] = "相似兴趣"; -$a->strings["Random Profile"] = "随机简介"; -$a->strings["Invite Friends"] = "邀请朋友们"; -$a->strings["Networks"] = "网络"; -$a->strings["All Networks"] = "所有网络"; -$a->strings["Saved Folders"] = "保存的文件夹"; -$a->strings["Everything"] = "一切"; -$a->strings["Categories"] = "种类"; -$a->strings["%d contact in common"] = array( - 0 => "%d共同熟人", -); -$a->strings["show more"] = "看多"; -$a->strings[" on Last.fm"] = "在Last.fm"; -$a->strings["Image/photo"] = "图像/照片"; -$a->strings["%s wrote the following post"] = "%s写了下面的文章"; -$a->strings["$1 wrote:"] = "$1写:"; -$a->strings["Encrypted content"] = "加密的内容"; -$a->strings["view full size"] = "看全尺寸"; -$a->strings["Miscellaneous"] = "形形色色"; -$a->strings["year"] = "年"; -$a->strings["month"] = "月"; -$a->strings["day"] = "日"; -$a->strings["never"] = "从未"; -$a->strings["less than a second ago"] = "一秒以内"; -$a->strings["years"] = "年"; -$a->strings["months"] = "月"; -$a->strings["week"] = "星期"; -$a->strings["weeks"] = "星期"; -$a->strings["days"] = "天"; -$a->strings["hour"] = "小时"; -$a->strings["hours"] = "小时"; -$a->strings["minute"] = "分钟"; -$a->strings["minutes"] = "分钟"; -$a->strings["second"] = "秒"; -$a->strings["seconds"] = "秒"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s以前"; -$a->strings["%s's birthday"] = "%s的生日"; -$a->strings["Happy Birthday %s"] = "生日快乐%s"; -$a->strings["Click here to upgrade."] = "这里点击为更新。"; -$a->strings["This action exceeds the limits set by your subscription plan."] = "这个行动超过您订阅的限制。"; -$a->strings["This action is not available under your subscription plan."] = "这个行动在您的订阅不可用的。"; -$a->strings["(no subject)"] = "沒有题目"; -$a->strings["noreply"] = "noreply"; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s是成为%2\$s的朋友"; -$a->strings["Sharing notification from Diaspora network"] = "分享通知从Diaspora网络"; -$a->strings["status"] = "现状"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s喜欢%2\$s的%3\$s"; -$a->strings["Attachments:"] = "附件:"; -$a->strings["[Name Withheld]"] = "[名字拒给]"; -$a->strings["A new person is sharing with you at "] = "一位新人给你分享在"; -$a->strings["You have a new follower at "] = "你有新的关注者在"; -$a->strings["Item not found."] = "项目找不到。"; -$a->strings["Do you really want to delete this item?"] = "您真的想删除这个项目吗?"; -$a->strings["Yes"] = "是"; -$a->strings["Cancel"] = "退消"; -$a->strings["Permission denied."] = "权限不够。"; -$a->strings["Archives"] = "档案"; -$a->strings["General Features"] = "总的特点"; -$a->strings["Multiple Profiles"] = "多简介"; -$a->strings["Ability to create multiple profiles"] = "能穿凿多简介"; -$a->strings["Post Composition Features"] = "写文章特点"; -$a->strings["Richtext Editor"] = "富文本格式编辑"; -$a->strings["Enable richtext editor"] = "使富文本格式编辑可用"; -$a->strings["Post Preview"] = "文章预演"; -$a->strings["Allow previewing posts and comments before publishing them"] = "允许文章和评论出版前预演"; -$a->strings["Network Sidebar Widgets"] = "网络工具栏小窗口"; -$a->strings["Search by Date"] = "按日期搜索"; -$a->strings["Ability to select posts by date ranges"] = "能按时期范围选择文章"; -$a->strings["Group Filter"] = "组滤器"; -$a->strings["Enable widget to display Network posts only from selected group"] = "使光表示网络文章从选择的组小窗口"; -$a->strings["Network Filter"] = "网络滤器"; -$a->strings["Enable widget to display Network posts only from selected network"] = "使光表示网络文章从选择的网络小窗口"; -$a->strings["Saved Searches"] = "保存的搜索"; -$a->strings["Save search terms for re-use"] = "保存搜索关键为再用"; -$a->strings["Network Tabs"] = "网络分页"; -$a->strings["Network Personal Tab"] = "网络私人分页"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "使表示光网络文章您参加了分页可用"; -$a->strings["Network New Tab"] = "网络新分页"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "使表示光网络文章在12小时内分页可用"; -$a->strings["Network Shared Links Tab"] = "网络分享链接分页"; -$a->strings["Enable tab to display only Network posts with links in them"] = "使表示光网络文章包括链接分页可用"; -$a->strings["Post/Comment Tools"] = "文章/评论工具"; -$a->strings["Multiple Deletion"] = "多删除"; -$a->strings["Select and delete multiple posts/comments at once"] = "选择和删除多文章/评论一次"; -$a->strings["Edit Sent Posts"] = "编辑发送的文章"; -$a->strings["Edit and correct posts and comments after sending"] = "编辑或修改文章和评论发送后"; -$a->strings["Tagging"] = "标签"; -$a->strings["Ability to tag existing posts"] = "能把目前的文章标签"; -$a->strings["Post Categories"] = "文章种类"; -$a->strings["Add categories to your posts"] = "加入种类给您的文章"; -$a->strings["Ability to file posts under folders"] = "能把文章归档在文件夹 "; -$a->strings["Dislike Posts"] = "不喜欢文章"; -$a->strings["Ability to dislike posts/comments"] = "能不喜欢文章/评论"; -$a->strings["Star Posts"] = "文章星"; -$a->strings["Ability to mark special posts with a star indicator"] = "能把优秀文章跟星标注"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "找不到DNS信息为数据库服务器「%s」"; $a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "一个删除的组用这名被复兴。现有的项目权利可能还效为这个组和未来的成员。如果这不是您想的,请造成新组给起别的名。"; $a->strings["Default privacy group for new contacts"] = "默认隐私组为新熟人"; $a->strings["Everybody"] = "每人"; @@ -1173,6 +1174,11 @@ $a->strings["No suggestions available. If this is a new site, please try again i $a->strings["Ignore/Hide"] = "不理/隐藏"; $a->strings["People Search"] = "搜索人物"; $a->strings["No matches"] = "没有结果"; +$a->strings["No videos selected"] = "没选择的视频"; +$a->strings["Access to this item is restricted."] = "这个项目使用权限的。"; +$a->strings["View Album"] = "看照片册"; +$a->strings["Recent Videos"] = "最近视频"; +$a->strings["Upload New Videos"] = "上传新视频"; $a->strings["Tag removed"] = "标签去除了"; $a->strings["Remove Item Tag"] = "去除项目标签"; $a->strings["Select a tag to remove: "] = "选择标签去除"; @@ -1392,7 +1398,6 @@ $a->strings["a photo"] = "一张照片"; $a->strings["Image exceeds size limit of "] = "图片超出最大尺寸"; $a->strings["Image file is empty."] = "图片文件空的。"; $a->strings["No photos selected"] = "没有照片挑选了"; -$a->strings["Access to this item is restricted."] = "这个项目使用权限的。"; $a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "您用%2$.2f兆字节的%1$.2f兆字节照片存储。"; $a->strings["Upload Photos"] = "上传照片"; $a->strings["New album name: "] = "新册名:"; @@ -1426,7 +1431,6 @@ $a->strings["I like this (toggle)"] = "我喜欢这(交替)"; $a->strings["I don't like this (toggle)"] = "我不喜欢这(交替)"; $a->strings["This is you"] = "这是你"; $a->strings["Comment"] = "评论"; -$a->strings["View Album"] = "看照片册"; $a->strings["Recent Photos"] = "最近的照片"; $a->strings["Welcome to Friendica"] = "Friendica欢迎你"; $a->strings["New Member Checklist"] = "新的成员一览表"; @@ -1463,7 +1467,7 @@ $a->strings["Go to the Help Section"] = "看帮助部分"; $a->strings["Our help pages may be consulted for detail on other program features and resources."] = "我们帮助页可查阅到详情关于别的编程特点和资源。"; $a->strings["Requested profile is not available."] = "要求的简介联系不上的。"; $a->strings["Tips for New Members"] = "提示对新成员"; -$a->strings["Friendica Social Communications Server - Setup"] = "Friendica社会交通服务器-安装"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica沟通服务器-安装"; $a->strings["Could not connect to database."] = "解不了数据库。"; $a->strings["Could not create table."] = "造成不了表格。"; $a->strings["Your Friendica site database has been installed."] = "您Friendica网站数据库被安装了。"; @@ -1630,5 +1634,6 @@ $a->strings["Event Reminders"] = "事件提醒"; $a->strings["Events this week:"] = "这周的事件:"; $a->strings["Status Messages and Posts"] = "现状通知和文章"; $a->strings["Profile Details"] = "简介内容"; +$a->strings["Videos"] = "视频"; $a->strings["Events and Calendar"] = "项目和日历"; $a->strings["Only You Can See This"] = "只您许看这个"; diff --git a/view/zh-cn/update_fail_eml.tpl b/view/zh-cn/update_fail_eml.tpl index f68a3dece1..d52c175830 100644 --- a/view/zh-cn/update_fail_eml.tpl +++ b/view/zh-cn/update_fail_eml.tpl @@ -1,11 +1,11 @@ -Hey, -I'm $sitename. -The friendica developers released update $update recently, -but when I tried to install it, something went terribly wrong. -This needs to be fixed soon and I can't do it alone. Please contact a -friendica developer if you can not help me on your own. My database might be invalid. +你好, +我是$sitename; +Friendica开发者最近出版更新$update, +可我安装的时候,遇到什么灾害, +这要紧急地维修,可我不会自己做。请联系 +一个Friendica开发者如果你不会自己帮我。我的数据库会不效。 -The error message is '$error'. +错误通信是「$error」 -I'm sorry, -your friendica server at $siteurl \ No newline at end of file +不好意思, +你Friendica服务器在$siteurl \ No newline at end of file From c82e5fde0a6ff153a4f72f2c51c3e144093ef31b Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Mon, 17 Jun 2013 04:28:34 -0400 Subject: [PATCH 06/12] pagination: fix template --- view/templates/paginate.tpl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/view/templates/paginate.tpl b/view/templates/paginate.tpl index 68dafc4e9e..21d56509aa 100644 --- a/view/templates/paginate.tpl +++ b/view/templates/paginate.tpl @@ -1,13 +1,13 @@
{{if $pager}} - {{ if $pager.prev }}{{ $pager.prev.text }}{{ /if }} + {{if $pager.prev}}{{$pager.prev.text}}{{/if}} - {{ if $pager.first }}{{ $pager.first.text }}{{ /if }} + {{if $pager.first}}{{$pager.first.text}}{{/if}} - {{ foreach $pager.pages as $p }}{{ $p.text }}{{ /foreach }} + {{foreach $pager.pages as $p}}{{$p.text}}{{/foreach}} - {{ if $pager.last }}{{ $pager.last.text }}{{ /if }} + {{if $pager.last}} {{$pager.last.text}}{{/if}} - {{ if $pager.next }}{{ $pager.next.text }}{{ /if }} + {{if $pager.next}}{{$pager.next.text}}{{/if}} {{/if}} -
\ No newline at end of file + From ecf3c2c9ced6c52f6dc8a4a20d40fe1542b39f77 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 19 Jun 2013 10:57:59 +0200 Subject: [PATCH 07/12] NB_NO: update to the strings --- view/nb-no/messages.po | 516 ++++++++++++++++++++--------------------- view/nb-no/strings.php | 514 ++++++++++++++++++++-------------------- 2 files changed, 515 insertions(+), 515 deletions(-) diff --git a/view/nb-no/messages.po b/view/nb-no/messages.po index 630bbb9fb0..29aae8fe4b 100644 --- a/view/nb-no/messages.po +++ b/view/nb-no/messages.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" "POT-Creation-Date: 2013-06-12 00:01-0700\n" -"PO-Revision-Date: 2013-06-11 17:12+0000\n" +"PO-Revision-Date: 2013-06-19 05:03+0000\n" "Last-Translator: Haakon Meland Eriksen \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/friendica/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "Hjemmeside:" #: ../../include/profile_advanced.php:50 ../../mod/profiles.php:652 msgid "Hometown:" -msgstr "" +msgstr "Hjemsted:" #: ../../include/profile_advanced.php:52 msgid "Tags:" @@ -95,11 +95,11 @@ msgstr "Hobbyer/Interesser:" #: ../../include/profile_advanced.php:62 ../../mod/profiles.php:657 msgid "Likes:" -msgstr "" +msgstr "Liker:" #: ../../include/profile_advanced.php:64 ../../mod/profiles.php:658 msgid "Dislikes:" -msgstr "" +msgstr "Liker ikke:" #: ../../include/profile_advanced.php:67 msgid "Contact information and Social Networks:" @@ -1500,7 +1500,7 @@ msgstr "" #: ../../include/group.php:270 ../../mod/newmember.php:66 msgid "Groups" -msgstr "" +msgstr "Grupper" #: ../../include/group.php:271 msgid "Edit group" @@ -1669,7 +1669,7 @@ msgstr "" #: ../../include/conversation.php:1002 ../../include/conversation.php:1020 #: ../../mod/filer.php:30 msgid "Save to Folder:" -msgstr "" +msgstr "Lagre til mappe:" #: ../../include/conversation.php:1003 ../../include/conversation.php:1021 msgid "Where are you right now?" @@ -1695,7 +1695,7 @@ msgstr "Last opp bilde" #: ../../include/conversation.php:1083 ../../mod/editpost.php:111 msgid "upload photo" -msgstr "" +msgstr "last opp bilde" #: ../../include/conversation.php:1084 ../../mod/editpost.php:112 msgid "Attach file" @@ -1703,7 +1703,7 @@ msgstr "Legg ved fil" #: ../../include/conversation.php:1085 ../../mod/editpost.php:113 msgid "attach file" -msgstr "" +msgstr "legg ved fil" #: ../../include/conversation.php:1086 ../../mod/editpost.php:114 #: ../../mod/wallmessage.php:155 ../../mod/message.php:333 @@ -1713,23 +1713,23 @@ msgstr "Sett inn web-adresse" #: ../../include/conversation.php:1087 ../../mod/editpost.php:115 msgid "web link" -msgstr "" +msgstr "web-adresse" #: ../../include/conversation.php:1088 ../../mod/editpost.php:116 msgid "Insert video link" -msgstr "" +msgstr "Sett inn video-link" #: ../../include/conversation.php:1089 ../../mod/editpost.php:117 msgid "video link" -msgstr "" +msgstr "videolink" #: ../../include/conversation.php:1090 ../../mod/editpost.php:118 msgid "Insert audio link" -msgstr "" +msgstr "Sett inn lydlink" #: ../../include/conversation.php:1091 ../../mod/editpost.php:119 msgid "audio link" -msgstr "" +msgstr "lydlink" #: ../../include/conversation.php:1092 ../../mod/editpost.php:120 msgid "Set your location" @@ -1737,7 +1737,7 @@ msgstr "Angi din plassering" #: ../../include/conversation.php:1093 ../../mod/editpost.php:121 msgid "set location" -msgstr "" +msgstr "angi plassering" #: ../../include/conversation.php:1094 ../../mod/editpost.php:122 msgid "Clear browser location" @@ -1745,7 +1745,7 @@ msgstr "Fjern nettleserplassering" #: ../../include/conversation.php:1095 ../../mod/editpost.php:123 msgid "clear location" -msgstr "" +msgstr "fjern plassering" #: ../../include/conversation.php:1097 ../../mod/editpost.php:137 msgid "Set title" @@ -1753,7 +1753,7 @@ msgstr "Lagre tittel" #: ../../include/conversation.php:1099 ../../mod/editpost.php:139 msgid "Categories (comma-separated list)" -msgstr "" +msgstr "Kategorier (kommaseparert liste)" #: ../../include/conversation.php:1101 ../../mod/editpost.php:125 msgid "Permission settings" @@ -1992,11 +1992,11 @@ msgstr "Veggbilder" #: ../../include/nav.php:34 ../../mod/navigation.php:20 msgid "Nothing new here" -msgstr "" +msgstr "Ikke noe nytt her" #: ../../include/nav.php:38 ../../mod/navigation.php:24 msgid "Clear notifications" -msgstr "" +msgstr "Fjern varslinger" #: ../../include/nav.php:73 ../../boot.php:1136 msgid "Logout" @@ -2314,55 +2314,55 @@ msgstr "Profilnavn er påkrevet." #: ../../mod/profiles.php:317 msgid "Marital Status" -msgstr "" +msgstr "Ekteskapelig status" #: ../../mod/profiles.php:321 msgid "Romantic Partner" -msgstr "" +msgstr "Romantisk partner" #: ../../mod/profiles.php:325 msgid "Likes" -msgstr "" +msgstr "Liker" #: ../../mod/profiles.php:329 msgid "Dislikes" -msgstr "" +msgstr "Liker ikke" #: ../../mod/profiles.php:333 msgid "Work/Employment" -msgstr "" +msgstr "Arbeid/ansatt hos" #: ../../mod/profiles.php:336 msgid "Religion" -msgstr "" +msgstr "Religion" #: ../../mod/profiles.php:340 msgid "Political Views" -msgstr "" +msgstr "Politisk ståsted" #: ../../mod/profiles.php:344 msgid "Gender" -msgstr "" +msgstr "Kjønn" #: ../../mod/profiles.php:348 msgid "Sexual Preference" -msgstr "" +msgstr "Seksuell orientering" #: ../../mod/profiles.php:352 msgid "Homepage" -msgstr "" +msgstr "Hjemmeside" #: ../../mod/profiles.php:356 msgid "Interests" -msgstr "" +msgstr "Interesser" #: ../../mod/profiles.php:360 msgid "Address" -msgstr "" +msgstr "Adresse" #: ../../mod/profiles.php:367 msgid "Location" -msgstr "" +msgstr "Plassering" #: ../../mod/profiles.php:450 msgid "Profile updated." @@ -2370,26 +2370,26 @@ msgstr "Profil oppdatert." #: ../../mod/profiles.php:521 msgid " and " -msgstr "" +msgstr "og" #: ../../mod/profiles.php:529 msgid "public profile" -msgstr "" +msgstr "offentlig profil" #: ../../mod/profiles.php:532 #, php-format msgid "%1$s changed %2$s to “%3$s”" -msgstr "" +msgstr "%1$s endret %2$s til “%3$s”" #: ../../mod/profiles.php:533 #, php-format msgid " - Visit %1$s's %2$s" -msgstr "" +msgstr "- Besøk %1$s sin %2$s" #: ../../mod/profiles.php:536 #, php-format msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" +msgstr "%1$s har oppdatert %2$s, endret %3$s." #: ../../mod/profiles.php:609 msgid "Hide your contact/friend list from viewers of this profile?" @@ -2433,7 +2433,7 @@ msgstr "Lagre" #: ../../mod/profiles.php:631 msgid "Change Profile Photo" -msgstr "" +msgstr "Endre profilbilde" #: ../../mod/profiles.php:632 msgid "View this profile" @@ -2506,7 +2506,7 @@ msgstr "Eksempler: kari123, Kari Nordmann, kari@example.com" #: ../../mod/profiles.php:649 msgid "Since [date]:" -msgstr "" +msgstr "Fra [dato]:" #: ../../mod/profiles.php:651 msgid "Homepage URL:" @@ -2665,7 +2665,7 @@ msgstr "Endre kontakt" #: ../../mod/nogroup.php:59 msgid "Contacts who are not members of a group" -msgstr "" +msgstr "Kontakter som ikke er medlemmer av en gruppe" #: ../../mod/ping.php:238 msgid "{0} wants to be your friend" @@ -2710,7 +2710,7 @@ msgstr "{0} merket %s sitt innlegg med #%s" #: ../../mod/ping.php:285 msgid "{0} mentioned you in a post" -msgstr "" +msgstr "{0} nevnte deg i et innlegg" #: ../../mod/admin.php:55 msgid "Theme settings updated." @@ -3018,7 +3018,7 @@ msgstr "Utesteng publikum" msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." -msgstr "" +msgstr "Kryss av for å blokkere offentlig tilgang til sider som ellers ville vært offentlige personlige sider med mindre du er logget inn." #: ../../mod/admin.php:520 msgid "Force publish" @@ -3027,7 +3027,7 @@ msgstr "Tving publisering" #: ../../mod/admin.php:520 msgid "" "Check to force all profiles on this site to be listed in the site directory." -msgstr "" +msgstr "Sett hake for å tvinge alle profiler på dette nettstedet til å vises i nettstedskatalogen." #: ../../mod/admin.php:521 msgid "Global directory update URL" @@ -3037,35 +3037,35 @@ msgstr "URL for oppdatering av Global-katalog" msgid "" "URL to update the global directory. If this is not set, the global directory" " is completely unavailable to the application." -msgstr "" +msgstr "URL for å oppdatere den globale katalogen. Hvis denne ikke er angitt, så vil den globale katalogen være helt utilgjengelige for programmet." #: ../../mod/admin.php:522 msgid "Allow threaded items" -msgstr "" +msgstr "Tillat en tråd av elementer " #: ../../mod/admin.php:522 msgid "Allow infinite level threading for items on this site." -msgstr "" +msgstr "Tillat ubegrenset antall nivåer i en tråd for elementer på dette nettstedet." #: ../../mod/admin.php:523 msgid "Private posts by default for new users" -msgstr "" +msgstr "Private meldinger som standard for nye brukere" #: ../../mod/admin.php:523 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." -msgstr "" +msgstr "Sett standard postetillatelser for alle nye medlemmer til standard personverngruppe i stedet for offentlig." #: ../../mod/admin.php:524 msgid "Don't include post content in email notifications" -msgstr "" +msgstr "Ikke inkluder innholdet i en melding i epostvarsler" #: ../../mod/admin.php:524 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." -msgstr "" +msgstr "Ikke inkluder innholdet i en melding/kommentar/privat melding/osv. i epostvarsler som sendes ut fra dette nettstedet, som et personverntiltak." #: ../../mod/admin.php:525 msgid "Disallow public access to addons listed in the apps menu." @@ -3095,7 +3095,7 @@ msgstr "Blokker flere registreringer" #: ../../mod/admin.php:528 msgid "Disallow users to register additional accounts for use as pages." -msgstr "" +msgstr "Ikke tillat brukere å registrere ytterligere kontoer til bruk som sider." #: ../../mod/admin.php:529 msgid "OpenID support" @@ -3103,7 +3103,7 @@ msgstr "OpenID-støtte" #: ../../mod/admin.php:529 msgid "OpenID support for registration and logins." -msgstr "" +msgstr "OpenID-støtte for registrering og innlogging." #: ../../mod/admin.php:530 msgid "Fullname check" @@ -3113,7 +3113,7 @@ msgstr "Sjekk fullt navn" msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" -msgstr "" +msgstr "Tving brukere til å registrere med et mellomrom mellom fornavn og etternavn i Fullt navn, som et tiltak mot søppelpost (antispam)." #: ../../mod/admin.php:531 msgid "UTF-8 Regular expressions" @@ -3121,7 +3121,7 @@ msgstr "UTF-8 regulære uttrykk" #: ../../mod/admin.php:531 msgid "Use PHP UTF8 regular expressions" -msgstr "" +msgstr "Bruk PHP UTF8 regulære uttrykk" #: ../../mod/admin.php:532 msgid "Show Community Page" @@ -3130,7 +3130,7 @@ msgstr "Vis Felleskap-side" #: ../../mod/admin.php:532 msgid "" "Display a Community page showing all recent public postings on this site." -msgstr "" +msgstr "Vis en Fellesskapsside som viser de siste offentlige meldinger på dette nettstedet." #: ../../mod/admin.php:533 msgid "Enable OStatus support" @@ -3141,7 +3141,7 @@ msgid "" "Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." -msgstr "" +msgstr "Tilby innebygget OStatus-kompatibilitet (identi.ca, status.net, etc.). All kommunikasjon via OStatus er offentlig, så personvernadvarsler vil bli vist av og til." #: ../../mod/admin.php:534 msgid "OStatus conversation completion interval" @@ -3155,21 +3155,21 @@ msgstr "" #: ../../mod/admin.php:535 msgid "Enable Diaspora support" -msgstr "" +msgstr "Aktiver Diaspora-støtte" #: ../../mod/admin.php:535 msgid "Provide built-in Diaspora network compatibility." -msgstr "" +msgstr "Tilby innebygget kompatibilitet med Diaspora-nettverket." #: ../../mod/admin.php:536 msgid "Only allow Friendica contacts" -msgstr "" +msgstr "Bare tillat Friendica-kontakter" #: ../../mod/admin.php:536 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." -msgstr "" +msgstr "Alle kontakter må bruke Friendica-protokoller. Alle andre innebyggede kommunikasjonsprotokoller blir deaktivert." #: ../../mod/admin.php:537 msgid "Verify SSL" @@ -3179,7 +3179,7 @@ msgstr "Bekreft SSL" msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." -msgstr "" +msgstr "Hvis du vil, så kan du skru på streng sertifikatkontroll. Dette betyr at du ikke kan opprette forbindelse (i det hele tatt) med nettsteder som bruker selvsignerte SSL-sertifikater." #: ../../mod/admin.php:538 msgid "Proxy user" @@ -3195,78 +3195,78 @@ msgstr "Tidsavbrudd for nettverk" #: ../../mod/admin.php:540 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" +msgstr "Verdien er i sekunder. Sett til 0 for ubegrenset (ikke anbefalt)." #: ../../mod/admin.php:541 msgid "Delivery interval" -msgstr "" +msgstr "Leveringsintervall" #: ../../mod/admin.php:541 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." -msgstr "" +msgstr "Forsink bakgrunnsprosesser for levering med så mange sekunder for å redusere belastningen på systemet. Anbefalinger: 4-5 for delt tjener, 2-3 for virtuelle private tjenere. 0-1 for store, dedikerte tjenere." #: ../../mod/admin.php:542 msgid "Poll interval" -msgstr "" +msgstr "Spørreintervall" #: ../../mod/admin.php:542 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." -msgstr "" +msgstr "Reduser spørreprosesser i bakgrunnen med så mange sekunder for å redusere belastningen på systemet. Hvis 0, bruk leveringsintervall." #: ../../mod/admin.php:543 msgid "Maximum Load Average" -msgstr "" +msgstr "Maksimal snittlast" #: ../../mod/admin.php:543 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." -msgstr "" +msgstr "Maksimal systemlast før leverings- og spørreprosesser utsettes - standard er 50." #: ../../mod/admin.php:545 msgid "Use MySQL full text engine" -msgstr "" +msgstr "Bruk MySQL fulltekstmotor" #: ../../mod/admin.php:545 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." -msgstr "" +msgstr "Aktiverer fulltekstmotoren. Øker hastigheten til søk, men kan bare søke etter minimum fire eller flere tegn." #: ../../mod/admin.php:546 msgid "Path to item cache" -msgstr "" +msgstr "Sti til mellomlager for elementer" #: ../../mod/admin.php:547 msgid "Cache duration in seconds" -msgstr "" +msgstr "Mellomlagringens varighet i sekunder" #: ../../mod/admin.php:547 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One" " day)." -msgstr "" +msgstr "Hvor lenge skal filene i mellomlagret beholdes? Standardveri er 86400 sekunder (Et døgn)." #: ../../mod/admin.php:548 msgid "Path for lock file" -msgstr "" +msgstr "Sti til fillås" #: ../../mod/admin.php:549 msgid "Temp path" -msgstr "" +msgstr "Temp-sti" #: ../../mod/admin.php:550 msgid "Base path to installation" -msgstr "" +msgstr "Sti til installasjonsbasen" #: ../../mod/admin.php:567 msgid "Update has been marked successful" -msgstr "" +msgstr "Oppdatering har blitt markert som vellykket" #: ../../mod/admin.php:577 #, php-format @@ -3276,17 +3276,17 @@ msgstr "Utføring av %s mislyktes. Sjekk systemlogger." #: ../../mod/admin.php:580 #, php-format msgid "Update %s was successfully applied." -msgstr "" +msgstr "Oppdatering %s ble iverksatt på en vellykket måte." #: ../../mod/admin.php:584 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" +msgstr "Oppdatering %s returnerte ikke en status. Ukjent om oppdateringen er vellykket." #: ../../mod/admin.php:587 #, php-format msgid "Update function %s could not be found." -msgstr "" +msgstr "Oppdateringsfunksjon %s ble ikke funnet." #: ../../mod/admin.php:602 msgid "No failed updates." @@ -3299,15 +3299,15 @@ msgstr "Mislykkede oppdateringer" #: ../../mod/admin.php:607 msgid "" "This does not include updates prior to 1139, which did not return a status." -msgstr "" +msgstr "Dette inkluderer ikke oppdateringer som kom før 1139, som ikke returnerer en status." #: ../../mod/admin.php:608 msgid "Mark success (if update was manually applied)" -msgstr "" +msgstr "Marker vellykket (hvis oppdatering ble iverksatt manuelt)" #: ../../mod/admin.php:609 msgid "Attempt to execute this update step automatically" -msgstr "" +msgstr "Forsøk å utføre dette oppdateringspunktet automatisk" #: ../../mod/admin.php:634 #, php-format @@ -3380,11 +3380,11 @@ msgstr "Ikke blokker" #: ../../mod/admin.php:773 msgid "Site admin" -msgstr "" +msgstr "Nettstedets administrator" #: ../../mod/admin.php:774 msgid "Account expired" -msgstr "" +msgstr "Konto utgått" #: ../../mod/admin.php:777 msgid "Register date" @@ -3438,27 +3438,27 @@ msgstr "Veksle" #: ../../mod/admin.php:868 ../../mod/admin.php:1078 msgid "Author: " -msgstr "" +msgstr "Forfatter:" #: ../../mod/admin.php:869 ../../mod/admin.php:1079 msgid "Maintainer: " -msgstr "" +msgstr "Vedlikeholder:" #: ../../mod/admin.php:998 msgid "No themes found." -msgstr "" +msgstr "Ingen temaer funnet." #: ../../mod/admin.php:1060 msgid "Screenshot" -msgstr "" +msgstr "Skjermbilde" #: ../../mod/admin.php:1106 msgid "[Experimental]" -msgstr "" +msgstr "[Eksperimentell]" #: ../../mod/admin.php:1107 msgid "[Unsupported]" -msgstr "" +msgstr "[Ikke støttet]" #: ../../mod/admin.php:1134 msgid "Log settings updated." @@ -3480,7 +3480,7 @@ msgstr "Loggfil" msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." -msgstr "" +msgstr "Web-serveren må ha skriverettigheter. Relativt til toppnivåkatalogen til din Friendicas." #: ../../mod/admin.php:1198 msgid "Log level" @@ -3612,7 +3612,7 @@ msgstr "Din registrering venter på godkjenning fra eier av stedet." msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." -msgstr "" +msgstr "Dette nettstedet har overskredet antallet tillate daglige kontoregistreringer. Vennligst prøv igjen imorgen." #: ../../mod/register.php:220 msgid "" @@ -3746,11 +3746,11 @@ msgstr "diaspora2bb:" #: ../../mod/common.php:42 msgid "Common Friends" -msgstr "" +msgstr "Felles venner" #: ../../mod/common.php:78 msgid "No contacts in common." -msgstr "" +msgstr "Ingen kontakter felles." #: ../../mod/apps.php:7 msgid "You must be logged in to use addons. " @@ -3798,15 +3798,15 @@ msgstr "Kontakten er ikke ignorert lenger" #: ../../mod/contacts.php:220 msgid "Contact has been archived" -msgstr "" +msgstr "Kontakt har blitt arkivert" #: ../../mod/contacts.php:220 msgid "Contact has been unarchived" -msgstr "" +msgstr "Kontakt har blitt hentet tilbake fra arkivet" #: ../../mod/contacts.php:244 msgid "Do you really want to delete this contact?" -msgstr "" +msgstr "Ønsker du virkelig å slette denne kontakten?" #: ../../mod/contacts.php:263 msgid "Contact has been removed." @@ -3854,7 +3854,7 @@ msgstr "Vis alle kontakter" #: ../../mod/contacts.php:356 msgid "Toggle Blocked status" -msgstr "" +msgstr "Veksle blokkeringsstatus" #: ../../mod/contacts.php:359 ../../mod/contacts.php:413 msgid "Unignore" @@ -3868,19 +3868,19 @@ msgstr "Ignorer" #: ../../mod/contacts.php:362 msgid "Toggle Ignored status" -msgstr "" +msgstr "Veksle ingnorertstatus" #: ../../mod/contacts.php:366 msgid "Unarchive" -msgstr "" +msgstr "Hent ut av arkivet" #: ../../mod/contacts.php:366 msgid "Archive" -msgstr "" +msgstr "Arkiver" #: ../../mod/contacts.php:369 msgid "Toggle Archive status" -msgstr "" +msgstr "Veksle arkivertstatus" #: ../../mod/contacts.php:372 msgid "Repair" @@ -3888,11 +3888,11 @@ msgstr "Reparer" #: ../../mod/contacts.php:375 msgid "Advanced Contact Settings" -msgstr "" +msgstr "Avanserte kontaktinnstillinger" #: ../../mod/contacts.php:381 msgid "Communications lost with this contact!" -msgstr "" +msgstr "Kommunikasjon tapt med denne kontakten!" #: ../../mod/contacts.php:384 msgid "Contact Editor" @@ -3955,7 +3955,7 @@ msgstr "Ignorert nå" #: ../../mod/contacts.php:418 msgid "Currently archived" -msgstr "" +msgstr "For øyeblikket arkivert" #: ../../mod/contacts.php:419 ../../mod/notifications.php:157 #: ../../mod/notifications.php:204 @@ -3965,15 +3965,15 @@ msgstr "Skjul denne kontakten for andre" #: ../../mod/contacts.php:419 msgid "" "Replies/likes to your public posts may still be visible" -msgstr "" +msgstr "Svar/liker til dine offentlige innlegg kan fortsatt være synlige" #: ../../mod/contacts.php:470 msgid "Suggestions" -msgstr "" +msgstr "Forslag" #: ../../mod/contacts.php:473 msgid "Suggest potential friends" -msgstr "" +msgstr "Foreslå mulige venner" #: ../../mod/contacts.php:476 ../../mod/group.php:194 msgid "All Contacts" @@ -3981,47 +3981,47 @@ msgstr "Alle kontakter" #: ../../mod/contacts.php:479 msgid "Show all contacts" -msgstr "" +msgstr "Vis alle kontakter" #: ../../mod/contacts.php:482 msgid "Unblocked" -msgstr "" +msgstr "Ikke blokkert" #: ../../mod/contacts.php:485 msgid "Only show unblocked contacts" -msgstr "" +msgstr "Bare vis ikke blokkerte kontakter" #: ../../mod/contacts.php:489 msgid "Blocked" -msgstr "" +msgstr "Blokkert" #: ../../mod/contacts.php:492 msgid "Only show blocked contacts" -msgstr "" +msgstr "Bare vis blokkerte kontakter" #: ../../mod/contacts.php:496 msgid "Ignored" -msgstr "" +msgstr "Ignorert" #: ../../mod/contacts.php:499 msgid "Only show ignored contacts" -msgstr "" +msgstr "Bare vis ignorerte kontakter" #: ../../mod/contacts.php:503 msgid "Archived" -msgstr "" +msgstr "Arkivert" #: ../../mod/contacts.php:506 msgid "Only show archived contacts" -msgstr "" +msgstr "Bare vis arkiverte kontakter" #: ../../mod/contacts.php:510 msgid "Hidden" -msgstr "" +msgstr "Skjult" #: ../../mod/contacts.php:513 msgid "Only show hidden contacts" -msgstr "" +msgstr "Bare vis skjulte kontakter" #: ../../mod/contacts.php:561 msgid "Mutual Friendship" @@ -4049,11 +4049,11 @@ msgstr "alle" #: ../../mod/settings.php:35 msgid "Additional features" -msgstr "" +msgstr "Tilleggsfunksjoner" #: ../../mod/settings.php:40 ../../mod/uexport.php:14 msgid "Display settings" -msgstr "" +msgstr "Visningsinnstillinger" #: ../../mod/settings.php:46 ../../mod/uexport.php:20 msgid "Connector settings" @@ -4073,7 +4073,7 @@ msgstr "Eksporter personlige data" #: ../../mod/settings.php:66 ../../mod/uexport.php:40 msgid "Remove account" -msgstr "" +msgstr "Fjern konto" #: ../../mod/settings.php:118 msgid "Missing some important data!" @@ -4093,7 +4093,7 @@ msgstr "E-postinnstillinger er oppdatert." #: ../../mod/settings.php:247 msgid "Features updated" -msgstr "" +msgstr "Funksjoner oppdatert" #: ../../mod/settings.php:312 msgid "Passwords do not match. Password unchanged." @@ -4137,11 +4137,11 @@ msgstr "Kan ikke endre til den e-postadressen." #: ../../mod/settings.php:476 msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "" +msgstr "Privat forum har ingen personverntillatelser. Bruker standard personverngruppe." #: ../../mod/settings.php:480 msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "" +msgstr "Privat forum har ingen personverntillatelser og ingen standard personverngruppe." #: ../../mod/settings.php:510 msgid "Settings updated." @@ -4203,15 +4203,15 @@ msgstr "Tilleggsinnstillinger" #: ../../mod/settings.php:684 msgid "Off" -msgstr "" +msgstr "Av" #: ../../mod/settings.php:684 msgid "On" -msgstr "" +msgstr "På" #: ../../mod/settings.php:692 msgid "Additional Features" -msgstr "" +msgstr "Tilleggsfunksjoner" #: ../../mod/settings.php:705 ../../mod/settings.php:706 #, php-format @@ -4286,23 +4286,23 @@ msgstr "Send offentlige meldinger til alle e-postkontakter:" #: ../../mod/settings.php:761 msgid "Action after import:" -msgstr "" +msgstr "Handling etter import:" #: ../../mod/settings.php:761 msgid "Mark as seen" -msgstr "" +msgstr "Marker som sett" #: ../../mod/settings.php:761 msgid "Move to folder" -msgstr "" +msgstr "Flytt til mappe" #: ../../mod/settings.php:762 msgid "Move to folder:" -msgstr "" +msgstr "Flytt til mappe:" #: ../../mod/settings.php:835 msgid "Display Settings" -msgstr "" +msgstr "Visningsinnstillinger" #: ../../mod/settings.php:841 ../../mod/settings.php:853 msgid "Display Theme:" @@ -4310,23 +4310,23 @@ msgstr "Vis tema:" #: ../../mod/settings.php:842 msgid "Mobile Theme:" -msgstr "" +msgstr "Mobilt tema:" #: ../../mod/settings.php:843 msgid "Update browser every xx seconds" -msgstr "" +msgstr "Oppdater nettleser hvert xx sekund" #: ../../mod/settings.php:843 msgid "Minimum of 10 seconds, no maximum" -msgstr "" +msgstr "Minimum 10 sekunder, ikke noe maksimum" #: ../../mod/settings.php:844 msgid "Number of items to display per page:" -msgstr "" +msgstr "Antall elementer som vises per side:" #: ../../mod/settings.php:844 ../../mod/settings.php:845 msgid "Maximum of 100 items" -msgstr "" +msgstr "Maksimum 100 elementer" #: ../../mod/settings.php:845 msgid "Number of items to display per page when viewed from mobile device:" @@ -4334,11 +4334,11 @@ msgstr "" #: ../../mod/settings.php:846 msgid "Don't show emoticons" -msgstr "" +msgstr "Ikke vis uttrykksikoner" #: ../../mod/settings.php:922 msgid "Normal Account Page" -msgstr "" +msgstr "Vanlig konto-side" #: ../../mod/settings.php:923 msgid "This account is a normal personal profile" @@ -4346,7 +4346,7 @@ msgstr "Denne kontoen er en vanlig personlig profil" #: ../../mod/settings.php:926 msgid "Soapbox Page" -msgstr "" +msgstr "Talerstol-side" #: ../../mod/settings.php:927 msgid "Automatically approve all connection/friend requests as read-only fans" @@ -4354,7 +4354,7 @@ msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som f #: ../../mod/settings.php:930 msgid "Community Forum/Celebrity Account" -msgstr "" +msgstr "Fellesskapsforum/Kjendis-side" #: ../../mod/settings.php:931 msgid "" @@ -4363,7 +4363,7 @@ msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som f #: ../../mod/settings.php:934 msgid "Automatic Friend Page" -msgstr "" +msgstr "Automatisk venn-side" #: ../../mod/settings.php:935 msgid "Automatically approve all connection/friend requests as friends" @@ -4371,11 +4371,11 @@ msgstr "Automatisk godkjenning av alle forespørsler om forbindelse/venner som v #: ../../mod/settings.php:938 msgid "Private Forum [Experimental]" -msgstr "" +msgstr "Privat forum [Eksperimentell]" #: ../../mod/settings.php:939 msgid "Private forum - approved members only" -msgstr "" +msgstr "Privat forum - kun godkjente medlemmer" #: ../../mod/settings.php:951 msgid "OpenID:" @@ -4399,7 +4399,7 @@ msgstr "Skjul kontakt-/venne-listen din for besøkende til standardprofilen din? #: ../../mod/settings.php:979 msgid "Hide your profile details from unknown viewers?" -msgstr "" +msgstr "Skjul dine profildetaljer fra ukjente besøkende?" #: ../../mod/settings.php:984 msgid "Allow friends to post to your profile page?" @@ -4411,11 +4411,11 @@ msgstr "Tillat venner å merke dine innlegg?" #: ../../mod/settings.php:996 msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" +msgstr "Tillat oss å foreslå deg som en mulig venn til nye medlemmer?" #: ../../mod/settings.php:1002 msgid "Permit unknown people to send you private mail?" -msgstr "" +msgstr "Tillat ukjente personer å sende deg privat post?" #: ../../mod/settings.php:1010 msgid "Profile is not published." @@ -4431,7 +4431,7 @@ msgstr "Din identitetsadresse er" #: ../../mod/settings.php:1029 msgid "Automatically expire posts after this many days:" -msgstr "" +msgstr "Innlegg utgår automatisk etter så mange dager:" #: ../../mod/settings.php:1029 msgid "If empty, posts will not expire. Expired posts will be deleted" @@ -4439,31 +4439,31 @@ msgstr "Tomme innlegg utgår ikke. Utgåtte innlegg slettes." #: ../../mod/settings.php:1030 msgid "Advanced expiration settings" -msgstr "" +msgstr "Avanserte innstillinger for å utgå" #: ../../mod/settings.php:1031 msgid "Advanced Expiration" -msgstr "" +msgstr "Avansert utgå" #: ../../mod/settings.php:1032 msgid "Expire posts:" -msgstr "" +msgstr "Innlegg utgår:" #: ../../mod/settings.php:1033 msgid "Expire personal notes:" -msgstr "" +msgstr "Personlige notater utgår:" #: ../../mod/settings.php:1034 msgid "Expire starred posts:" -msgstr "" +msgstr "Innlegg med stjerne utgår:" #: ../../mod/settings.php:1035 msgid "Expire photos:" -msgstr "" +msgstr "Bilder utgår:" #: ../../mod/settings.php:1036 msgid "Only expire posts by others:" -msgstr "" +msgstr "Kun innlegg fra andre utgår:" #: ../../mod/settings.php:1062 msgid "Account Settings" @@ -4540,28 +4540,28 @@ msgstr "(klikk for å åpne/lukke)" #: ../../mod/settings.php:1099 ../../mod/photos.php:1140 #: ../../mod/photos.php:1506 msgid "Show to Groups" -msgstr "" +msgstr "Vis til grupper" #: ../../mod/settings.php:1100 ../../mod/photos.php:1141 #: ../../mod/photos.php:1507 msgid "Show to Contacts" -msgstr "" +msgstr "Vis til kontakter" #: ../../mod/settings.php:1101 msgid "Default Private Post" -msgstr "" +msgstr "Standard privat innlegg" #: ../../mod/settings.php:1102 msgid "Default Public Post" -msgstr "" +msgstr "Standard offentlig innlegg" #: ../../mod/settings.php:1106 msgid "Default Permissions for New Posts" -msgstr "" +msgstr "Standard tillatelser for nye innlegg" #: ../../mod/settings.php:1118 msgid "Maximum private messages per day from unknown people:" -msgstr "" +msgstr "Maksimalt antall private meldinger per dag fra ukjente personer:" #: ../../mod/settings.php:1121 msgid "Notification Settings" @@ -4569,19 +4569,19 @@ msgstr "Beskjedinnstillinger" #: ../../mod/settings.php:1122 msgid "By default post a status message when:" -msgstr "" +msgstr "Standard å legge inn en statusmelding når:" #: ../../mod/settings.php:1123 msgid "accepting a friend request" -msgstr "" +msgstr "aksepterer en venneforespørsel" #: ../../mod/settings.php:1124 msgid "joining a forum/community" -msgstr "" +msgstr "blir med i et forum/fellesskap" #: ../../mod/settings.php:1125 msgid "making an interesting profile change" -msgstr "" +msgstr "gjør en interessant profilendring" #: ../../mod/settings.php:1126 msgid "Send a notification email when:" @@ -4609,27 +4609,27 @@ msgstr "Du mottar en privat melding" #: ../../mod/settings.php:1132 msgid "You receive a friend suggestion" -msgstr "" +msgstr "Du mottar et venneforslag" #: ../../mod/settings.php:1133 msgid "You are tagged in a post" -msgstr "" +msgstr "Du er merket i et innlegg" #: ../../mod/settings.php:1134 msgid "You are poked/prodded/etc. in a post" -msgstr "" +msgstr "Du er dyttet/dultet/etc i et innlegg" #: ../../mod/settings.php:1137 msgid "Advanced Account/Page Type Settings" -msgstr "" +msgstr "Avanserte konto-/sidetype-innstillinger" #: ../../mod/settings.php:1138 msgid "Change the behaviour of this account for special situations" -msgstr "" +msgstr "Endre oppførselen til denne kontoen i spesielle situasjoner" #: ../../mod/share.php:44 msgid "link" -msgstr "" +msgstr "lenke" #: ../../mod/crepair.php:102 msgid "Contact settings applied." @@ -4755,7 +4755,7 @@ msgstr "" msgid "" "This may occasionally happen if contact was requested by both persons and it" " has already been approved." -msgstr "" +msgstr "Denne kan skje innimellom hvis kontakt ble forespurt av begge personer og den allerede er godkjent." #: ../../mod/dfrn_confirm.php:237 msgid "Response from remote site was not understood." @@ -4806,7 +4806,7 @@ msgstr "Kontaktinformasjon om deg ble ikke funnet på vårt nettsted." #: ../../mod/dfrn_confirm.php:618 #, php-format msgid "Site public key not available in contact record for URL %s." -msgstr "" +msgstr "Nettstedets offentlige nøkkel er ikke tilgjengelig i kontaktregisteret for URL %s." #: ../../mod/dfrn_confirm.php:638 msgid "" @@ -4830,12 +4830,12 @@ msgstr "Tilkobling godtatt på %s" #: ../../mod/dfrn_confirm.php:800 #, php-format msgid "%1$s has joined %2$s" -msgstr "" +msgstr "%1$s har blitt med %2$s" #: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #, php-format msgid "%1$s welcomes %2$s" -msgstr "" +msgstr "%1$s hilser %2$s" #: ../../mod/dfrn_request.php:93 msgid "This introduction has already been accepted." @@ -5008,7 +5008,7 @@ msgstr "Send forespørsel" #: ../../mod/subthread.php:103 #, php-format msgid "%1$s is following %2$s's %3$s" -msgstr "" +msgstr "%1$s følger %2$s sin %3$s" #: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518 msgid "Global Directory" @@ -5032,13 +5032,13 @@ msgstr "Ingen oppføringer (noen oppføringer kan være skjulte)." #: ../../mod/suggest.php:27 msgid "Do you really want to delete this suggestion?" -msgstr "" +msgstr "Vil du virkelig slette dette forslaget?" #: ../../mod/suggest.php:72 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." -msgstr "" +msgstr "Ingen forslag tilgjengelig. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer." #: ../../mod/suggest.php:90 msgid "Ignore/Hide" @@ -5094,7 +5094,7 @@ msgstr "Endre innlegg" #: ../../mod/events.php:66 msgid "Event title and start time are required." -msgstr "" +msgstr "Hendelsens tittel og starttidspunkt er påkrevet." #: ../../mod/events.php:291 msgid "l, F j" @@ -5127,7 +5127,7 @@ msgstr "Hendelsesdetaljer" #: ../../mod/events.php:457 #, php-format msgid "Format is %s %s. Starting date and Title are required." -msgstr "" +msgstr "Formatet er %s %s. Startdato og tittel er påkrevet." #: ../../mod/events.php:459 msgid "Event Starts:" @@ -5135,7 +5135,7 @@ msgstr "Hendelsen starter:" #: ../../mod/events.php:459 ../../mod/events.php:473 msgid "Required" -msgstr "" +msgstr "Påkrevet" #: ../../mod/events.php:462 msgid "Finish date/time is not known or not relevant" @@ -5155,7 +5155,7 @@ msgstr "Beskrivelse:" #: ../../mod/events.php:473 msgid "Title:" -msgstr "" +msgstr "Tittel:" #: ../../mod/events.php:475 msgid "Share this event" @@ -5163,67 +5163,67 @@ msgstr "Del denne hendelsen" #: ../../mod/fbrowser.php:113 msgid "Files" -msgstr "" +msgstr "Filer" #: ../../mod/uexport.php:72 msgid "Export account" -msgstr "" +msgstr "Eksporter konto" #: ../../mod/uexport.php:72 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." -msgstr "" +msgstr "Eksporter din kontos informasjon og kontakter. Bruk denne til å ta en sikkerhetskopi av kontoen din og/eller for å flytte til en annen tjener." #: ../../mod/uexport.php:73 msgid "Export all" -msgstr "" +msgstr "Eksporter alt" #: ../../mod/uexport.php:73 msgid "" "Export your accout info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" -msgstr "" +msgstr "Eksporter din kontoinformasjon, kontakter og alle dine elementer som JSON. Det kan bli en svært stor fil, og kan ta lang tid. Bruk denne til å gjøre en full sikkerhetskopi av kontoen din (bilder blir ikke eksportert)" #: ../../mod/filer.php:30 msgid "- select -" -msgstr "" +msgstr "- velg -" #: ../../mod/uimport.php:64 msgid "Import" -msgstr "" +msgstr "Importer" #: ../../mod/uimport.php:66 msgid "Move account" -msgstr "" +msgstr "Flytt konto" #: ../../mod/uimport.php:67 msgid "You can import an account from another Friendica server." -msgstr "" +msgstr "Du kan importere en konto fra en annen Friendica-tjener." #: ../../mod/uimport.php:68 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." -msgstr "" +msgstr "Du må eksportere din konto fra den gamle tjeneren og laste den opp hit. Vi vil gjenskape din gamle konto her med alle dine kontakter. Vi vil også forsøke å informere dine venner at du har flyttet hit." #: ../../mod/uimport.php:69 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (statusnet/identi.ca) or from Diaspora" -msgstr "" +msgstr "Denne egenskapen er eksperimentell. Vi kan ikke importere kontakter fra OStatus-nettverk (statusnet/identi.ca) eller fra Diaspora" #: ../../mod/uimport.php:70 msgid "Account file" -msgstr "" +msgstr "Kontofil" #: ../../mod/uimport.php:70 msgid "" "To export your accont, go to \"Settings->Export your porsonal data\" and " "select \"Export account\"" -msgstr "" +msgstr "For å eksportere din konto, gå til \"Innstillnger -> Eksporter dine personlige data\" og velg \"Eksporter konto\"" #: ../../mod/update_community.php:18 ../../mod/update_display.php:22 #: ../../mod/update_network.php:22 ../../mod/update_notes.php:41 @@ -5233,11 +5233,11 @@ msgstr "[Innebygget innhold - hent siden på nytt for å se det]" #: ../../mod/follow.php:27 msgid "Contact added" -msgstr "" +msgstr "Kontakt lagt til " #: ../../mod/friendica.php:55 msgid "This is Friendica, version" -msgstr "" +msgstr "Dette er Friendica, versjon" #: ../../mod/friendica.php:56 msgid "running at web location" @@ -5247,7 +5247,7 @@ msgstr "kjører på web-plassering" msgid "" "Please visit Friendica.com to learn " "more about the Friendica project." -msgstr "" +msgstr "Vennligst besøk Friendica.com for å lære mer om Friendica-prosjektet." #: ../../mod/friendica.php:60 msgid "Bug reports and issues: please visit" @@ -5257,11 +5257,11 @@ msgstr "Feilrapporter og problemer: vennligst besøk" msgid "" "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " "dot com" -msgstr "" +msgstr "Forslag, ros, donasjoner, og så videre - vennligst send e-post til \"Info\" alfakrøll Friendica punktum com" #: ../../mod/friendica.php:75 msgid "Installed plugins/addons/apps:" -msgstr "" +msgstr "Installerte plugins/tillegg/apper:" #: ../../mod/friendica.php:88 msgid "No installed plugins/addons/apps" @@ -5347,7 +5347,7 @@ msgstr "Velkommen til %s" #: ../../mod/viewsrc.php:7 msgid "Access denied." -msgstr "" +msgstr "Tilgang avslått." #: ../../mod/wall_attach.php:69 #, php-format @@ -5375,7 +5375,7 @@ msgstr "Mislyktes med å laste opp bilde." #: ../../mod/invite.php:27 msgid "Total invitation limit exceeded." -msgstr "" +msgstr "Grensen for totalt antall invitasjoner er overskredet." #: ../../mod/invite.php:49 #, php-format @@ -5384,11 +5384,11 @@ msgstr "%s: Ugyldig e-postadresse." #: ../../mod/invite.php:73 msgid "Please join us on Friendica" -msgstr "" +msgstr "Vær med oss på Friendica" #: ../../mod/invite.php:84 msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" +msgstr "Invitasjonsgrense overskredet. Vennligst kontakt administrator på ditt nettsted." #: ../../mod/invite.php:89 #, php-format @@ -5412,14 +5412,14 @@ msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " "other sites can all connect with each other, as well as with members of many" " other social networks." -msgstr "" +msgstr "Besøk %s for en liste med offentlige nettsteder du kan bli med i. Friendica-medlemmer ved andre nettsteder kan alle opprette forbindelse til hverandre, og i tillegg til medlemmer av mange andre sosiale nettverk." #: ../../mod/invite.php:122 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." -msgstr "" +msgstr "For å akseptere denne invitasjonen, vær så snill å besøk og registrer deg hos %s eller et hvilket som helst annet offentlig Friendica-nettsted." #: ../../mod/invite.php:123 #, php-format @@ -5428,7 +5428,7 @@ msgid "" "web that is owned and controlled by its members. They can also connect with " "many traditional social networks. See %s for a list of alternate Friendica " "sites you can join." -msgstr "" +msgstr "Friendica-nettsteder er alle forbundet med hverandre for å lage et personvern-forbedret sosialt nettverk som eies og kontrolleres av medlemmene selv. De kan også forbindes med mange tradisjonelle sosiale nettverk. Se %s for en liste over alternative Friendica-nettsteder du kan bli med i." #: ../../mod/invite.php:126 msgid "" @@ -5453,7 +5453,7 @@ msgstr "Din melding:" msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." -msgstr "" +msgstr "Du er herved hjertelig invitert til å bli med meg og andre nære venner på Friendica - hjelp oss å skape en bedre sosial web." #: ../../mod/invite.php:137 msgid "You will need to supply this invitation code: $invite_code" @@ -5468,7 +5468,7 @@ msgstr "Når du har registrert, vennligst kontakt meg via min profilside på:" msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendica.com" -msgstr "" +msgstr "For mer informasjon om Friendica-prosjektet og hvorfor vi mener det er viktig, vennligst besøk http://friendica.com" #: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 #, php-format @@ -5481,7 +5481,7 @@ msgstr "Ingen mottaker valgt." #: ../../mod/wallmessage.php:59 msgid "Unable to check your home location." -msgstr "" +msgstr "Ikke i stand til avgjøre plasseringen til ditt hjemsted." #: ../../mod/wallmessage.php:62 ../../mod/message.php:70 msgid "Message could not be sent." @@ -5489,7 +5489,7 @@ msgstr "Meldingen kunne ikke sendes." #: ../../mod/wallmessage.php:65 ../../mod/message.php:73 msgid "Message collection failure." -msgstr "" +msgstr "Meldingsinnsamling mislyktes." #: ../../mod/wallmessage.php:68 ../../mod/message.php:76 msgid "Message sent." @@ -5497,7 +5497,7 @@ msgstr "Melding sendt." #: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 msgid "No recipient." -msgstr "" +msgstr "Ingen mottaker." #: ../../mod/wallmessage.php:142 ../../mod/message.php:319 msgid "Send Private Message" @@ -5508,7 +5508,7 @@ msgstr "Send privat melding" msgid "" "If you wish for %s to respond, please check that the privacy settings on " "your site allow private mail from unknown senders." -msgstr "" +msgstr "Hvis du ønsker å la %s få svare, vennligst sjekk om personverninnstillingene på ditt nettsted tillater private post fra ukjente avsendere." #: ../../mod/wallmessage.php:144 ../../mod/message.php:320 #: ../../mod/message.php:553 @@ -5605,7 +5605,7 @@ msgstr "Passordet ditt kan endres fra siden Innstillinger etter vellykk #: ../../mod/lostpass.php:107 #, php-format msgid "Your password has been changed at %s" -msgstr "" +msgstr "Ditt passord har blitt endret %s" #: ../../mod/lostpass.php:122 msgid "Forgot your Password?" @@ -5627,7 +5627,7 @@ msgstr "Tilbakestill" #: ../../mod/maintenance.php:5 msgid "System down for maintenance" -msgstr "" +msgstr "Systemet er nede for vedlikehold" #: ../../mod/manage.php:106 msgid "Manage Identities and/or Pages" @@ -5661,7 +5661,7 @@ msgstr "Mislyktes med å finne kontaktinformasjon." #: ../../mod/message.php:207 msgid "Do you really want to delete this message?" -msgstr "" +msgstr "Ønsker du virkelig å slette denne meldingen?" #: ../../mod/message.php:227 msgid "Message deleted." @@ -5678,17 +5678,17 @@ msgstr "Ingen meldinger." #: ../../mod/message.php:378 #, php-format msgid "Unknown sender - %s" -msgstr "" +msgstr "Ukjent avsender - %s" #: ../../mod/message.php:381 #, php-format msgid "You and %s" -msgstr "" +msgstr "Du og %s" #: ../../mod/message.php:384 #, php-format msgid "%s and You" -msgstr "" +msgstr "%s og du" #: ../../mod/message.php:405 ../../mod/message.php:546 msgid "Delete conversation" @@ -5717,7 +5717,7 @@ msgstr "Slett melding" msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." -msgstr "" +msgstr "Ingen sikker kommunikasjon tilgjengelig. Du kan kanskje svare fra senderens profilside." #: ../../mod/message.php:552 msgid "Send Reply" @@ -5940,7 +5940,7 @@ msgstr "Nettverksvarslinger" #: ../../mod/notifications.php:332 ../../mod/notify.php:61 msgid "No more system notifications." -msgstr "" +msgstr "Ingen flere systemvarsler." #: ../../mod/notifications.php:336 ../../mod/notify.php:65 msgid "System Notifications" @@ -5991,7 +5991,7 @@ msgstr "Slett album" #: ../../mod/photos.php:197 msgid "Do you really want to delete this photo album and all its photos?" -msgstr "" +msgstr "Ønsker du virkelig å slette dette fotoalbumet og alle bildene i det?" #: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502 msgid "Delete Photo" @@ -5999,16 +5999,16 @@ msgstr "Slett bilde" #: ../../mod/photos.php:285 msgid "Do you really want to delete this photo?" -msgstr "" +msgstr "Ønsker du virkelig å slette dette bildet?" #: ../../mod/photos.php:656 #, php-format msgid "%1$s was tagged in %2$s by %3$s" -msgstr "" +msgstr "%1$s ble merket i %2$s av %3$s" #: ../../mod/photos.php:656 msgid "a photo" -msgstr "" +msgstr "et bilde" #: ../../mod/photos.php:761 msgid "Image exceeds size limit of " @@ -6025,7 +6025,7 @@ msgstr "Ingen bilder er valgt" #: ../../mod/photos.php:1088 #, php-format msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "" +msgstr "Du har brukt %1$.2f Mbytes av %2$.2f Mbytes bildelagring." #: ../../mod/photos.php:1123 msgid "Upload Photos" @@ -6049,11 +6049,11 @@ msgstr "Tillatelser" #: ../../mod/photos.php:1142 msgid "Private Photo" -msgstr "" +msgstr "Privat bilde" #: ../../mod/photos.php:1143 msgid "Public Photo" -msgstr "" +msgstr "Offentlig bilde" #: ../../mod/photos.php:1210 msgid "Edit Album" @@ -6061,11 +6061,11 @@ msgstr "Endre album" #: ../../mod/photos.php:1216 msgid "Show Newest First" -msgstr "" +msgstr "Vis nyeste først" #: ../../mod/photos.php:1218 msgid "Show Oldest First" -msgstr "" +msgstr "Vis eldste først" #: ../../mod/photos.php:1251 ../../mod/photos.php:1778 msgid "View Photo" @@ -6110,11 +6110,11 @@ msgstr "[Fjern en tag]" #: ../../mod/photos.php:1487 msgid "Rotate CW (right)" -msgstr "" +msgstr "Roter med klokka (høyre)" #: ../../mod/photos.php:1488 msgid "Rotate CCW (left)" -msgstr "" +msgstr "Roter mot klokka (venstre)" #: ../../mod/photos.php:1490 msgid "New album name" @@ -6135,11 +6135,11 @@ msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping #: ../../mod/photos.php:1508 msgid "Private photo" -msgstr "" +msgstr "Privat bilde" #: ../../mod/photos.php:1509 msgid "Public photo" -msgstr "" +msgstr "Offentlig bilde" #: ../../mod/photos.php:1529 ../../mod/content.php:707 #: ../../object/Item.php:232 @@ -6169,7 +6169,7 @@ msgstr "Nye bilder" #: ../../mod/newmember.php:6 msgid "Welcome to Friendica" -msgstr "" +msgstr "Velkommen til Friendica" #: ../../mod/newmember.php:8 msgid "New Member Checklist" @@ -6181,33 +6181,33 @@ msgid "" "enjoyable. Click any item to visit the relevant page. A link to this page " "will be visible from your home page for two weeks after your initial " "registration and then will quietly disappear." -msgstr "" +msgstr "Vi vil gjerne gi noe noen tips og lenker for å hjelpe deg til en hyggelig opplevelse. Klikk på et element for å besøke den relevante siden. En lenke til denne siden vil være synlig på din hovedside i to uker etter at du registrerte deg og så vil den bli borte av seg selv." #: ../../mod/newmember.php:14 msgid "Getting Started" -msgstr "" +msgstr "Komme igang" #: ../../mod/newmember.php:18 msgid "Friendica Walk-Through" -msgstr "" +msgstr "Friendica gjennomgang" #: ../../mod/newmember.php:18 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." -msgstr "" +msgstr "På Hurtigstart-siden din, så finner du en kort introduksjon til profilen din og nettverksfanen, hvordan du oppretter nye forbindelser, og hvordan du finner grupper å bli med i." #: ../../mod/newmember.php:26 msgid "Go to Your Settings" -msgstr "" +msgstr "Gå til Dine innstillinger" #: ../../mod/newmember.php:26 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." -msgstr "" +msgstr "På siden Innstillinger - bytt passordet du fikk. Merk deg også Din identitetsadresse. Denne ser ut som en vanlig e-postadresse, og er nyttig for å bli venner i den frie sosiale web'en." #: ../../mod/newmember.php:28 msgid "" @@ -6230,7 +6230,7 @@ msgstr "Last opp et profilbilde hvis du ikke har gjort det allerede. Studier vis #: ../../mod/newmember.php:38 msgid "Edit Your Profile" -msgstr "" +msgstr "Endre profilen din" #: ../../mod/newmember.php:38 msgid "" @@ -6241,7 +6241,7 @@ msgstr "Du kan endre standardprofilen din slik du ønsker. Se o #: ../../mod/newmember.php:40 msgid "Profile Keywords" -msgstr "" +msgstr "Profilnøkkelord" #: ../../mod/newmember.php:40 msgid "" @@ -6252,7 +6252,7 @@ msgstr "Legg til noen offentlige nøkkelord til standardprofilen din som beskriv #: ../../mod/newmember.php:44 msgid "Connecting" -msgstr "" +msgstr "Kobling" #: ../../mod/newmember.php:49 msgid "" @@ -6264,33 +6264,33 @@ msgstr "Tillat Facebook-koblingen hvis du har en Facebook-konto og vi vil (valgf msgid "" "If this is your own personal server, installing the Facebook addon " "may ease your transition to the free social web." -msgstr "" +msgstr "Hvis dette er din egen personlige tjener, så kan installasjon av Facebook-tillegget gjøre overgangen til den frie sosiale web'en lettere." #: ../../mod/newmember.php:56 msgid "Importing Emails" -msgstr "" +msgstr "Importere e-post" #: ../../mod/newmember.php:56 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" -msgstr "" +msgstr "Skriv inn tilgangsinformasjon til e-posten din på siden for Koblingsinnstillinger, hvis du ønsker å importere og samhandle med venner eller e-postlister fra din e-post INNBOKS" #: ../../mod/newmember.php:58 msgid "Go to Your Contacts Page" -msgstr "" +msgstr "Gå til Dine kontakter-siden" #: ../../mod/newmember.php:58 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." -msgstr "" +msgstr "Dine kontakter-siden er der du håndterer vennskap og skaper forbindelser med venner på andre nettverk. Vanligvis skriver du deres adresse eller nettsteds-URL i dialogboksen Legg til ny kontakt" #: ../../mod/newmember.php:60 msgid "Go to Your Site's Directory" -msgstr "" +msgstr "Gå til Din lokale katalog" #: ../../mod/newmember.php:60 msgid "" @@ -6301,7 +6301,7 @@ msgstr "Katalog-siden lar deg finne andre folk i dette nettverket eller andre fo #: ../../mod/newmember.php:62 msgid "Finding New People" -msgstr "" +msgstr "Finn nye personer" #: ../../mod/newmember.php:62 msgid "" @@ -6310,11 +6310,11 @@ msgid "" "interest, and provide suggestions based on network relationships. On a brand" " new site, friend suggestions will usually begin to be populated within 24 " "hours." -msgstr "" +msgstr "I sidepanelet på Kontakter-siden er flere verktøy for å finne nye venner. Vi kan matche personer utfra interesse, slå opp personer på navn eller interesse, og gi forslag basert på nettverksforbindelser. På et helt nytt nettsted, så vil venneforslag vanligvis dukke opp innen 24 timer." #: ../../mod/newmember.php:70 msgid "Group Your Contacts" -msgstr "" +msgstr "Kontaktgrupper" #: ../../mod/newmember.php:70 msgid "" @@ -6325,22 +6325,22 @@ msgstr "Når du har fått noen venner, så kan du organisere dem i private samta #: ../../mod/newmember.php:73 msgid "Why Aren't My Posts Public?" -msgstr "" +msgstr "Hvorfor er ikke mine innlegg offentlige?" #: ../../mod/newmember.php:73 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." -msgstr "" +msgstr "Friendica respekterer ditt privatliv. Som standard, så vil dine innlegg bare vises til personer du har lagt til som venner. For mer informasjon, se Hjelp-siden fra lenken ovenfor." #: ../../mod/newmember.php:78 msgid "Getting Help" -msgstr "" +msgstr "Få hjelp" #: ../../mod/newmember.php:82 msgid "Go to the Help Section" -msgstr "" +msgstr "Gå til Hjelp-siden" #: ../../mod/newmember.php:82 msgid "" diff --git a/view/nb-no/strings.php b/view/nb-no/strings.php index 694d3fa133..f0920f9c9a 100644 --- a/view/nb-no/strings.php +++ b/view/nb-no/strings.php @@ -16,14 +16,14 @@ $a->strings["Status:"] = "Status:"; $a->strings["for %1\$d %2\$s"] = ""; $a->strings["Sexual Preference:"] = "Seksuell orientering:"; $a->strings["Homepage:"] = "Hjemmeside:"; -$a->strings["Hometown:"] = ""; +$a->strings["Hometown:"] = "Hjemsted:"; $a->strings["Tags:"] = ""; $a->strings["Political Views:"] = "Politisk ståsted:"; $a->strings["Religion:"] = "Religion:"; $a->strings["About:"] = "Om:"; $a->strings["Hobbies/Interests:"] = "Hobbyer/Interesser:"; -$a->strings["Likes:"] = ""; -$a->strings["Dislikes:"] = ""; +$a->strings["Likes:"] = "Liker:"; +$a->strings["Dislikes:"] = "Liker ikke:"; $a->strings["Contact information and Social Networks:"] = "Kontaktinformasjon og sosiale nettverk:"; $a->strings["Musical interests:"] = "Musikksmak:"; $a->strings["Books, literature:"] = "Bøker, litteratur:"; @@ -357,7 +357,7 @@ $a->strings["A deleted group with this name was revived. Existing item permissio $a->strings["Default privacy group for new contacts"] = ""; $a->strings["Everybody"] = "Alle"; $a->strings["edit"] = ""; -$a->strings["Groups"] = ""; +$a->strings["Groups"] = "Grupper"; $a->strings["Edit group"] = ""; $a->strings["Create a new group"] = "Lag en ny gruppe"; $a->strings["Contacts not in any group"] = ""; @@ -392,27 +392,27 @@ $a->strings["Please enter a link URL:"] = "Vennligst skriv inn en lenke URL:"; $a->strings["Please enter a video link/URL:"] = ""; $a->strings["Please enter an audio link/URL:"] = ""; $a->strings["Tag term:"] = ""; -$a->strings["Save to Folder:"] = ""; +$a->strings["Save to Folder:"] = "Lagre til mappe:"; $a->strings["Where are you right now?"] = "Hvor er du akkurat nå?"; $a->strings["Delete item(s)?"] = ""; $a->strings["Post to Email"] = "Innlegg til e-post"; $a->strings["Share"] = "Del"; $a->strings["Upload photo"] = "Last opp bilde"; -$a->strings["upload photo"] = ""; +$a->strings["upload photo"] = "last opp bilde"; $a->strings["Attach file"] = "Legg ved fil"; -$a->strings["attach file"] = ""; +$a->strings["attach file"] = "legg ved fil"; $a->strings["Insert web link"] = "Sett inn web-adresse"; -$a->strings["web link"] = ""; -$a->strings["Insert video link"] = ""; -$a->strings["video link"] = ""; -$a->strings["Insert audio link"] = ""; -$a->strings["audio link"] = ""; +$a->strings["web link"] = "web-adresse"; +$a->strings["Insert video link"] = "Sett inn video-link"; +$a->strings["video link"] = "videolink"; +$a->strings["Insert audio link"] = "Sett inn lydlink"; +$a->strings["audio link"] = "lydlink"; $a->strings["Set your location"] = "Angi din plassering"; -$a->strings["set location"] = ""; +$a->strings["set location"] = "angi plassering"; $a->strings["Clear browser location"] = "Fjern nettleserplassering"; -$a->strings["clear location"] = ""; +$a->strings["clear location"] = "fjern plassering"; $a->strings["Set title"] = "Lagre tittel"; -$a->strings["Categories (comma-separated list)"] = ""; +$a->strings["Categories (comma-separated list)"] = "Kategorier (kommaseparert liste)"; $a->strings["Permission settings"] = "Tillatelser"; $a->strings["permissions"] = ""; $a->strings["CC: email addresses"] = "Kopi: e-postadresser"; @@ -462,8 +462,8 @@ $a->strings["Photo:"] = ""; $a->strings["Please visit %s to approve or reject the suggestion."] = ""; $a->strings["[no subject]"] = "[ikke noe emne]"; $a->strings["Wall Photos"] = "Veggbilder"; -$a->strings["Nothing new here"] = ""; -$a->strings["Clear notifications"] = ""; +$a->strings["Nothing new here"] = "Ikke noe nytt her"; +$a->strings["Clear notifications"] = "Fjern varslinger"; $a->strings["Logout"] = "Logg ut"; $a->strings["End this session"] = "Avslutt denne økten"; $a->strings["Status"] = "Status"; @@ -541,30 +541,30 @@ $a->strings["Profile-"] = "Profil-"; $a->strings["New profile created."] = "Ny profil opprettet."; $a->strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for kloning."; $a->strings["Profile Name is required."] = "Profilnavn er påkrevet."; -$a->strings["Marital Status"] = ""; -$a->strings["Romantic Partner"] = ""; -$a->strings["Likes"] = ""; -$a->strings["Dislikes"] = ""; -$a->strings["Work/Employment"] = ""; -$a->strings["Religion"] = ""; -$a->strings["Political Views"] = ""; -$a->strings["Gender"] = ""; -$a->strings["Sexual Preference"] = ""; -$a->strings["Homepage"] = ""; -$a->strings["Interests"] = ""; -$a->strings["Address"] = ""; -$a->strings["Location"] = ""; +$a->strings["Marital Status"] = "Ekteskapelig status"; +$a->strings["Romantic Partner"] = "Romantisk partner"; +$a->strings["Likes"] = "Liker"; +$a->strings["Dislikes"] = "Liker ikke"; +$a->strings["Work/Employment"] = "Arbeid/ansatt hos"; +$a->strings["Religion"] = "Religion"; +$a->strings["Political Views"] = "Politisk ståsted"; +$a->strings["Gender"] = "Kjønn"; +$a->strings["Sexual Preference"] = "Seksuell orientering"; +$a->strings["Homepage"] = "Hjemmeside"; +$a->strings["Interests"] = "Interesser"; +$a->strings["Address"] = "Adresse"; +$a->strings["Location"] = "Plassering"; $a->strings["Profile updated."] = "Profil oppdatert."; -$a->strings[" and "] = ""; -$a->strings["public profile"] = ""; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; -$a->strings[" - Visit %1\$s's %2\$s"] = ""; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; +$a->strings[" and "] = "og"; +$a->strings["public profile"] = "offentlig profil"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s endret %2\$s til “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = "- Besøk %1\$s sin %2\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har oppdatert %2\$s, endret %3\$s."; $a->strings["Hide your contact/friend list from viewers of this profile?"] = "Skjul kontakten/vennen din fra folk som kan se denne profilen?"; $a->strings["No"] = "Nei"; $a->strings["Edit Profile Details"] = "Endre profildetaljer"; $a->strings["Submit"] = "Lagre"; -$a->strings["Change Profile Photo"] = ""; +$a->strings["Change Profile Photo"] = "Endre profilbilde"; $a->strings["View this profile"] = "Vis denne profilen"; $a->strings["Create a new profile using these settings"] = "Opprett en ny profil med disse innstillingene"; $a->strings["Clone this profile"] = "Klon denne profilen"; @@ -582,7 +582,7 @@ $a->strings["Region/State:"] = "Region/fylke:"; $a->strings[" Marital Status:"] = " Sivilstand:"; $a->strings["Who: (if applicable)"] = "Hvem: (hvis gjeldende)"; $a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Nordmann, kari@example.com"; -$a->strings["Since [date]:"] = ""; +$a->strings["Since [date]:"] = "Fra [dato]:"; $a->strings["Homepage URL:"] = "Hjemmeside URL:"; $a->strings["Religious Views:"] = "Religiøst ståsted:"; $a->strings["Public Keywords:"] = "Offentlige nøkkelord:"; @@ -620,7 +620,7 @@ $a->strings["Access to this profile has been restricted."] = "Tilgang til denne $a->strings["Item has been removed."] = "Elementet har blitt slettet."; $a->strings["Visit %s's profile [%s]"] = "Besøk %ss profil [%s]"; $a->strings["Edit contact"] = "Endre kontakt"; -$a->strings["Contacts who are not members of a group"] = ""; +$a->strings["Contacts who are not members of a group"] = "Kontakter som ikke er medlemmer av en gruppe"; $a->strings["{0} wants to be your friend"] = "{0} ønsker å bli din venn"; $a->strings["{0} sent you a message"] = "{0} sendte deg en melding"; $a->strings["{0} requested registration"] = "{0} forespurte om registrering"; @@ -630,7 +630,7 @@ $a->strings["{0} disliked %s's post"] = "{0} likte ikke %s sitt innlegg"; $a->strings["{0} is now friends with %s"] = "{0} er nå venner med %s"; $a->strings["{0} posted"] = "{0} postet et innlegg"; $a->strings["{0} tagged %s's post with #%s"] = "{0} merket %s sitt innlegg med #%s"; -$a->strings["{0} mentioned you in a post"] = ""; +$a->strings["{0} mentioned you in a post"] = "{0} nevnte deg i et innlegg"; $a->strings["Theme settings updated."] = "Temainnstillinger oppdatert."; $a->strings["Site"] = "Nettsted"; $a->strings["Users"] = "Brukere"; @@ -701,69 +701,69 @@ $a->strings["Comma separated list of domains which are allowed to establish frie $a->strings["Allowed email domains"] = "Tillate e-postdomener"; $a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er tillatt. Tom for å tillate alle domener."; $a->strings["Block public"] = "Utesteng publikum"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Kryss av for å blokkere offentlig tilgang til sider som ellers ville vært offentlige personlige sider med mindre du er logget inn."; $a->strings["Force publish"] = "Tving publisering"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = ""; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Sett hake for å tvinge alle profiler på dette nettstedet til å vises i nettstedskatalogen."; $a->strings["Global directory update URL"] = "URL for oppdatering av Global-katalog"; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; -$a->strings["Allow threaded items"] = ""; -$a->strings["Allow infinite level threading for items on this site."] = ""; -$a->strings["Private posts by default for new users"] = ""; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; -$a->strings["Don't include post content in email notifications"] = ""; -$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = ""; +$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL for å oppdatere den globale katalogen. Hvis denne ikke er angitt, så vil den globale katalogen være helt utilgjengelige for programmet."; +$a->strings["Allow threaded items"] = "Tillat en tråd av elementer "; +$a->strings["Allow infinite level threading for items on this site."] = "Tillat ubegrenset antall nivåer i en tråd for elementer på dette nettstedet."; +$a->strings["Private posts by default for new users"] = "Private meldinger som standard for nye brukere"; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Sett standard postetillatelser for alle nye medlemmer til standard personverngruppe i stedet for offentlig."; +$a->strings["Don't include post content in email notifications"] = "Ikke inkluder innholdet i en melding i epostvarsler"; +$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Ikke inkluder innholdet i en melding/kommentar/privat melding/osv. i epostvarsler som sendes ut fra dette nettstedet, som et personverntiltak."; $a->strings["Disallow public access to addons listed in the apps menu."] = ""; $a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; $a->strings["Don't embed private images in posts"] = ""; $a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = ""; $a->strings["Block multiple registrations"] = "Blokker flere registreringer"; -$a->strings["Disallow users to register additional accounts for use as pages."] = ""; +$a->strings["Disallow users to register additional accounts for use as pages."] = "Ikke tillat brukere å registrere ytterligere kontoer til bruk som sider."; $a->strings["OpenID support"] = "OpenID-støtte"; -$a->strings["OpenID support for registration and logins."] = ""; +$a->strings["OpenID support for registration and logins."] = "OpenID-støtte for registrering og innlogging."; $a->strings["Fullname check"] = "Sjekk fullt navn"; -$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = ""; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Tving brukere til å registrere med et mellomrom mellom fornavn og etternavn i Fullt navn, som et tiltak mot søppelpost (antispam)."; $a->strings["UTF-8 Regular expressions"] = "UTF-8 regulære uttrykk"; -$a->strings["Use PHP UTF8 regular expressions"] = ""; +$a->strings["Use PHP UTF8 regular expressions"] = "Bruk PHP UTF8 regulære uttrykk"; $a->strings["Show Community Page"] = "Vis Felleskap-side"; -$a->strings["Display a Community page showing all recent public postings on this site."] = ""; +$a->strings["Display a Community page showing all recent public postings on this site."] = "Vis en Fellesskapsside som viser de siste offentlige meldinger på dette nettstedet."; $a->strings["Enable OStatus support"] = "Aktiver Ostatus-støtte"; -$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; +$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Tilby innebygget OStatus-kompatibilitet (identi.ca, status.net, etc.). All kommunikasjon via OStatus er offentlig, så personvernadvarsler vil bli vist av og til."; $a->strings["OStatus conversation completion interval"] = ""; $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; -$a->strings["Enable Diaspora support"] = ""; -$a->strings["Provide built-in Diaspora network compatibility."] = ""; -$a->strings["Only allow Friendica contacts"] = ""; -$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = ""; +$a->strings["Enable Diaspora support"] = "Aktiver Diaspora-støtte"; +$a->strings["Provide built-in Diaspora network compatibility."] = "Tilby innebygget kompatibilitet med Diaspora-nettverket."; +$a->strings["Only allow Friendica contacts"] = "Bare tillat Friendica-kontakter"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Alle kontakter må bruke Friendica-protokoller. Alle andre innebyggede kommunikasjonsprotokoller blir deaktivert."; $a->strings["Verify SSL"] = "Bekreft SSL"; -$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = ""; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Hvis du vil, så kan du skru på streng sertifikatkontroll. Dette betyr at du ikke kan opprette forbindelse (i det hele tatt) med nettsteder som bruker selvsignerte SSL-sertifikater."; $a->strings["Proxy user"] = "Brukernavn til mellomtjener"; $a->strings["Proxy URL"] = "Mellomtjener URL"; $a->strings["Network timeout"] = "Tidsavbrudd for nettverk"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; -$a->strings["Delivery interval"] = ""; -$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = ""; -$a->strings["Poll interval"] = ""; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; -$a->strings["Maximum Load Average"] = ""; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; -$a->strings["Use MySQL full text engine"] = ""; -$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = ""; -$a->strings["Path to item cache"] = ""; -$a->strings["Cache duration in seconds"] = ""; -$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = ""; -$a->strings["Path for lock file"] = ""; -$a->strings["Temp path"] = ""; -$a->strings["Base path to installation"] = ""; -$a->strings["Update has been marked successful"] = ""; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Verdien er i sekunder. Sett til 0 for ubegrenset (ikke anbefalt)."; +$a->strings["Delivery interval"] = "Leveringsintervall"; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Forsink bakgrunnsprosesser for levering med så mange sekunder for å redusere belastningen på systemet. Anbefalinger: 4-5 for delt tjener, 2-3 for virtuelle private tjenere. 0-1 for store, dedikerte tjenere."; +$a->strings["Poll interval"] = "Spørreintervall"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Reduser spørreprosesser i bakgrunnen med så mange sekunder for å redusere belastningen på systemet. Hvis 0, bruk leveringsintervall."; +$a->strings["Maximum Load Average"] = "Maksimal snittlast"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maksimal systemlast før leverings- og spørreprosesser utsettes - standard er 50."; +$a->strings["Use MySQL full text engine"] = "Bruk MySQL fulltekstmotor"; +$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Aktiverer fulltekstmotoren. Øker hastigheten til søk, men kan bare søke etter minimum fire eller flere tegn."; +$a->strings["Path to item cache"] = "Sti til mellomlager for elementer"; +$a->strings["Cache duration in seconds"] = "Mellomlagringens varighet i sekunder"; +$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "Hvor lenge skal filene i mellomlagret beholdes? Standardveri er 86400 sekunder (Et døgn)."; +$a->strings["Path for lock file"] = "Sti til fillås"; +$a->strings["Temp path"] = "Temp-sti"; +$a->strings["Base path to installation"] = "Sti til installasjonsbasen"; +$a->strings["Update has been marked successful"] = "Oppdatering har blitt markert som vellykket"; $a->strings["Executing %s failed. Check system logs."] = "Utføring av %s mislyktes. Sjekk systemlogger."; -$a->strings["Update %s was successfully applied."] = ""; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = ""; -$a->strings["Update function %s could not be found."] = ""; +$a->strings["Update %s was successfully applied."] = "Oppdatering %s ble iverksatt på en vellykket måte."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Oppdatering %s returnerte ikke en status. Ukjent om oppdateringen er vellykket."; +$a->strings["Update function %s could not be found."] = "Oppdateringsfunksjon %s ble ikke funnet."; $a->strings["No failed updates."] = "Ingen mislykkede oppdateringer."; $a->strings["Failed Updates"] = "Mislykkede oppdateringer"; -$a->strings["This does not include updates prior to 1139, which did not return a status."] = ""; -$a->strings["Mark success (if update was manually applied)"] = ""; -$a->strings["Attempt to execute this update step automatically"] = ""; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Dette inkluderer ikke oppdateringer som kom før 1139, som ikke returnerer en status."; +$a->strings["Mark success (if update was manually applied)"] = "Marker vellykket (hvis oppdatering ble iverksatt manuelt)"; +$a->strings["Attempt to execute this update step automatically"] = "Forsøk å utføre dette oppdateringspunktet automatisk"; $a->strings["%s user blocked/unblocked"] = array( 0 => "", 1 => "", @@ -784,8 +784,8 @@ $a->strings["Approve"] = "Godkjenn"; $a->strings["Deny"] = "Nekt"; $a->strings["Block"] = "Blokker"; $a->strings["Unblock"] = "Ikke blokker"; -$a->strings["Site admin"] = ""; -$a->strings["Account expired"] = ""; +$a->strings["Site admin"] = "Nettstedets administrator"; +$a->strings["Account expired"] = "Konto utgått"; $a->strings["Register date"] = "Registreringsdato"; $a->strings["Last login"] = "Siste innlogging"; $a->strings["Last item"] = "Siste element"; @@ -797,17 +797,17 @@ $a->strings["Plugin %s enabled."] = "Tillegget %s er aktivert."; $a->strings["Disable"] = "Skru av"; $a->strings["Enable"] = "Aktiver"; $a->strings["Toggle"] = "Veksle"; -$a->strings["Author: "] = ""; -$a->strings["Maintainer: "] = ""; -$a->strings["No themes found."] = ""; -$a->strings["Screenshot"] = ""; -$a->strings["[Experimental]"] = ""; -$a->strings["[Unsupported]"] = ""; +$a->strings["Author: "] = "Forfatter:"; +$a->strings["Maintainer: "] = "Vedlikeholder:"; +$a->strings["No themes found."] = "Ingen temaer funnet."; +$a->strings["Screenshot"] = "Skjermbilde"; +$a->strings["[Experimental]"] = "[Eksperimentell]"; +$a->strings["[Unsupported]"] = "[Ikke støttet]"; $a->strings["Log settings updated."] = "Logginnstillinger er oppdatert."; $a->strings["Clear"] = "Tøm"; $a->strings["Enable Debugging"] = ""; $a->strings["Log file"] = "Loggfil"; -$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = ""; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Web-serveren må ha skriverettigheter. Relativt til toppnivåkatalogen til din Friendicas."; $a->strings["Log level"] = "Loggnivå"; $a->strings["Update now"] = "Oppdater nå"; $a->strings["Close"] = "Lukk"; @@ -836,7 +836,7 @@ $a->strings["Failed to send email message. Here is the message that failed."] = $a->strings["Your registration can not be processed."] = "Din registrering kan ikke behandles."; $a->strings["Registration request at %s"] = "Henvendelse om registrering ved %s"; $a->strings["Your registration is pending approval by the site owner."] = "Din registrering venter på godkjenning fra eier av stedet."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = ""; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Dette nettstedet har overskredet antallet tillate daglige kontoregistreringer. Vennligst prøv igjen imorgen."; $a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kan (valgfritt) fylle ut dette skjemaet via OpenID ved å oppgi din OpenID og klikke \"Registrer\"."; $a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Hvis du ikke er kjent med OpenID, vennligst la feltet stå tomt, og fyll ut de andre feltene."; $a->strings["Your OpenID (optional): "] = "Din OpenID (valgfritt):"; @@ -867,8 +867,8 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb:"; $a->strings["bb2md2html2bb: "] = "bb2md2html2bb:"; $a->strings["Source input (Diaspora format): "] = "Diaspora-formatert kilde-input:"; $a->strings["diaspora2bb: "] = "diaspora2bb:"; -$a->strings["Common Friends"] = ""; -$a->strings["No contacts in common."] = ""; +$a->strings["Common Friends"] = "Felles venner"; +$a->strings["No contacts in common."] = "Ingen kontakter felles."; $a->strings["You must be logged in to use addons. "] = ""; $a->strings["Applications"] = "Programmer"; $a->strings["No installed applications."] = "Ingen installerte programmer."; @@ -880,9 +880,9 @@ $a->strings["Contact has been blocked"] = "Kontakten er blokkert"; $a->strings["Contact has been unblocked"] = "Kontakten er ikke blokkert lenger"; $a->strings["Contact has been ignored"] = "Kontakten er ignorert"; $a->strings["Contact has been unignored"] = "Kontakten er ikke ignorert lenger"; -$a->strings["Contact has been archived"] = ""; -$a->strings["Contact has been unarchived"] = ""; -$a->strings["Do you really want to delete this contact?"] = ""; +$a->strings["Contact has been archived"] = "Kontakt har blitt arkivert"; +$a->strings["Contact has been unarchived"] = "Kontakt har blitt hentet tilbake fra arkivet"; +$a->strings["Do you really want to delete this contact?"] = "Ønsker du virkelig å slette denne kontakten?"; $a->strings["Contact has been removed."] = "Kontakten er fjernet."; $a->strings["You are mutual friends with %s"] = "Du er gjensidig venn med %s"; $a->strings["You are sharing with %s"] = "Du deler med %s"; @@ -893,16 +893,16 @@ $a->strings["(Update was not successful)"] = "(Oppdatering mislykket)"; $a->strings["Suggest friends"] = "Foreslå venner"; $a->strings["Network type: %s"] = "Nettverkstype: %s"; $a->strings["View all contacts"] = "Vis alle kontakter"; -$a->strings["Toggle Blocked status"] = ""; +$a->strings["Toggle Blocked status"] = "Veksle blokkeringsstatus"; $a->strings["Unignore"] = "Fjern ignorering"; $a->strings["Ignore"] = "Ignorer"; -$a->strings["Toggle Ignored status"] = ""; -$a->strings["Unarchive"] = ""; -$a->strings["Archive"] = ""; -$a->strings["Toggle Archive status"] = ""; +$a->strings["Toggle Ignored status"] = "Veksle ingnorertstatus"; +$a->strings["Unarchive"] = "Hent ut av arkivet"; +$a->strings["Archive"] = "Arkiver"; +$a->strings["Toggle Archive status"] = "Veksle arkivertstatus"; $a->strings["Repair"] = "Reparer"; -$a->strings["Advanced Contact Settings"] = ""; -$a->strings["Communications lost with this contact!"] = ""; +$a->strings["Advanced Contact Settings"] = "Avanserte kontaktinnstillinger"; +$a->strings["Communications lost with this contact!"] = "Kommunikasjon tapt med denne kontakten!"; $a->strings["Contact Editor"] = "Endre kontakt"; $a->strings["Profile Visibility"] = "Profilens synlighet"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vennligst velg profilen du ønsker å vise til %s når denne ser profilen på en sikret måte."; @@ -917,41 +917,41 @@ $a->strings["Last update:"] = "Siste oppdatering:"; $a->strings["Update public posts"] = "Oppdater offentlige innlegg"; $a->strings["Currently blocked"] = "Blokkert nå"; $a->strings["Currently ignored"] = "Ignorert nå"; -$a->strings["Currently archived"] = ""; +$a->strings["Currently archived"] = "For øyeblikket arkivert"; $a->strings["Hide this contact from others"] = "Skjul denne kontakten for andre"; -$a->strings["Replies/likes to your public posts may still be visible"] = ""; -$a->strings["Suggestions"] = ""; -$a->strings["Suggest potential friends"] = ""; +$a->strings["Replies/likes to your public posts may still be visible"] = "Svar/liker til dine offentlige innlegg kan fortsatt være synlige"; +$a->strings["Suggestions"] = "Forslag"; +$a->strings["Suggest potential friends"] = "Foreslå mulige venner"; $a->strings["All Contacts"] = "Alle kontakter"; -$a->strings["Show all contacts"] = ""; -$a->strings["Unblocked"] = ""; -$a->strings["Only show unblocked contacts"] = ""; -$a->strings["Blocked"] = ""; -$a->strings["Only show blocked contacts"] = ""; -$a->strings["Ignored"] = ""; -$a->strings["Only show ignored contacts"] = ""; -$a->strings["Archived"] = ""; -$a->strings["Only show archived contacts"] = ""; -$a->strings["Hidden"] = ""; -$a->strings["Only show hidden contacts"] = ""; +$a->strings["Show all contacts"] = "Vis alle kontakter"; +$a->strings["Unblocked"] = "Ikke blokkert"; +$a->strings["Only show unblocked contacts"] = "Bare vis ikke blokkerte kontakter"; +$a->strings["Blocked"] = "Blokkert"; +$a->strings["Only show blocked contacts"] = "Bare vis blokkerte kontakter"; +$a->strings["Ignored"] = "Ignorert"; +$a->strings["Only show ignored contacts"] = "Bare vis ignorerte kontakter"; +$a->strings["Archived"] = "Arkivert"; +$a->strings["Only show archived contacts"] = "Bare vis arkiverte kontakter"; +$a->strings["Hidden"] = "Skjult"; +$a->strings["Only show hidden contacts"] = "Bare vis skjulte kontakter"; $a->strings["Mutual Friendship"] = "Gjensidig vennskap"; $a->strings["is a fan of yours"] = "er en tilhenger av deg"; $a->strings["you are a fan of"] = "du er en tilhenger av"; $a->strings["Search your contacts"] = "Søk i dine kontakter"; $a->strings["Finding: "] = "Fant:"; $a->strings["everybody"] = "alle"; -$a->strings["Additional features"] = ""; -$a->strings["Display settings"] = ""; +$a->strings["Additional features"] = "Tilleggsfunksjoner"; +$a->strings["Display settings"] = "Visningsinnstillinger"; $a->strings["Connector settings"] = "Koblingsinnstillinger"; $a->strings["Plugin settings"] = "Tilleggsinnstillinger"; $a->strings["Connected apps"] = "Tilkoblede programmer"; $a->strings["Export personal data"] = "Eksporter personlige data"; -$a->strings["Remove account"] = ""; +$a->strings["Remove account"] = "Fjern konto"; $a->strings["Missing some important data!"] = "Mangler noen viktige data!"; $a->strings["Update"] = "Oppdater"; $a->strings["Failed to connect with email account using the settings provided."] = "Mislyktes i å opprette forbindelse med e-postkontoen med de oppgitte innstillingene."; $a->strings["Email settings updated."] = "E-postinnstillinger er oppdatert."; -$a->strings["Features updated"] = ""; +$a->strings["Features updated"] = "Funksjoner oppdatert"; $a->strings["Passwords do not match. Password unchanged."] = "Passordene er ikke like. Passord uendret."; $a->strings["Empty passwords are not allowed. Password unchanged."] = "Tomme passord er ikke lov. Passord uendret."; $a->strings["Wrong password."] = ""; @@ -962,8 +962,8 @@ $a->strings[" Name too short."] = "Navnet er for kort."; $a->strings["Wrong Password"] = ""; $a->strings[" Not valid email."] = "Ugyldig e-postadresse."; $a->strings[" Cannot change to that email."] = "Kan ikke endre til den e-postadressen."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = ""; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = ""; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Privat forum har ingen personverntillatelser. Bruker standard personverngruppe."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Privat forum har ingen personverntillatelser og ingen standard personverngruppe."; $a->strings["Settings updated."] = "Innstillinger oppdatert."; $a->strings["Add application"] = "Legg til program"; $a->strings["Consumer Key"] = "Consumer Key"; @@ -978,9 +978,9 @@ $a->strings["No name"] = "Ingen navn"; $a->strings["Remove authorization"] = "Fjern tillatelse"; $a->strings["No Plugin settings configured"] = "Ingen tilleggsinnstillinger konfigurert"; $a->strings["Plugin Settings"] = "Tilleggsinnstillinger"; -$a->strings["Off"] = ""; -$a->strings["On"] = ""; -$a->strings["Additional Features"] = ""; +$a->strings["Off"] = "Av"; +$a->strings["On"] = "På"; +$a->strings["Additional Features"] = "Tilleggsfunksjoner"; $a->strings["Built-in support for %s connectivity is %s"] = "Innebygget støtte for %s forbindelse er %s"; $a->strings["enabled"] = "aktivert"; $a->strings["disabled"] = "avskrudd"; @@ -998,51 +998,51 @@ $a->strings["Email login name:"] = "E-post brukernavn:"; $a->strings["Email password:"] = "E-post passord:"; $a->strings["Reply-to address:"] = "Svar-til-adresse:"; $a->strings["Send public posts to all email contacts:"] = "Send offentlige meldinger til alle e-postkontakter:"; -$a->strings["Action after import:"] = ""; -$a->strings["Mark as seen"] = ""; -$a->strings["Move to folder"] = ""; -$a->strings["Move to folder:"] = ""; -$a->strings["Display Settings"] = ""; +$a->strings["Action after import:"] = "Handling etter import:"; +$a->strings["Mark as seen"] = "Marker som sett"; +$a->strings["Move to folder"] = "Flytt til mappe"; +$a->strings["Move to folder:"] = "Flytt til mappe:"; +$a->strings["Display Settings"] = "Visningsinnstillinger"; $a->strings["Display Theme:"] = "Vis tema:"; -$a->strings["Mobile Theme:"] = ""; -$a->strings["Update browser every xx seconds"] = ""; -$a->strings["Minimum of 10 seconds, no maximum"] = ""; -$a->strings["Number of items to display per page:"] = ""; -$a->strings["Maximum of 100 items"] = ""; +$a->strings["Mobile Theme:"] = "Mobilt tema:"; +$a->strings["Update browser every xx seconds"] = "Oppdater nettleser hvert xx sekund"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekunder, ikke noe maksimum"; +$a->strings["Number of items to display per page:"] = "Antall elementer som vises per side:"; +$a->strings["Maximum of 100 items"] = "Maksimum 100 elementer"; $a->strings["Number of items to display per page when viewed from mobile device:"] = ""; -$a->strings["Don't show emoticons"] = ""; -$a->strings["Normal Account Page"] = ""; +$a->strings["Don't show emoticons"] = "Ikke vis uttrykksikoner"; +$a->strings["Normal Account Page"] = "Vanlig konto-side"; $a->strings["This account is a normal personal profile"] = "Denne kontoen er en vanlig personlig profil"; -$a->strings["Soapbox Page"] = ""; +$a->strings["Soapbox Page"] = "Talerstol-side"; $a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med kun leserettigheter"; -$a->strings["Community Forum/Celebrity Account"] = ""; +$a->strings["Community Forum/Celebrity Account"] = "Fellesskapsforum/Kjendis-side"; $a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Automatisk godkjenning av alle forespørsler om forbindelse/venner som fans med lese- og skriverettigheter"; -$a->strings["Automatic Friend Page"] = ""; +$a->strings["Automatic Friend Page"] = "Automatisk venn-side"; $a->strings["Automatically approve all connection/friend requests as friends"] = "Automatisk godkjenning av alle forespørsler om forbindelse/venner som venner"; -$a->strings["Private Forum [Experimental]"] = ""; -$a->strings["Private forum - approved members only"] = ""; +$a->strings["Private Forum [Experimental]"] = "Privat forum [Eksperimentell]"; +$a->strings["Private forum - approved members only"] = "Privat forum - kun godkjente medlemmer"; $a->strings["OpenID:"] = "OpenID:"; $a->strings["(Optional) Allow this OpenID to login to this account."] = "(Valgfritt) Tillat denne OpenID-en å logge inn i denne kontoen."; $a->strings["Publish your default profile in your local site directory?"] = "Skal standardprofilen din publiseres i katalogen til nettstedet ditt?"; $a->strings["Publish your default profile in the global social directory?"] = "Skal standardprofilen din publiseres i den globale sosiale katalogen?"; $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Skjul kontakt-/venne-listen din for besøkende til standardprofilen din?"; -$a->strings["Hide your profile details from unknown viewers?"] = ""; +$a->strings["Hide your profile details from unknown viewers?"] = "Skjul dine profildetaljer fra ukjente besøkende?"; $a->strings["Allow friends to post to your profile page?"] = "Tillat venner å poste innlegg på din profilside?"; $a->strings["Allow friends to tag your posts?"] = "Tillat venner å merke dine innlegg?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = ""; -$a->strings["Permit unknown people to send you private mail?"] = ""; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Tillat oss å foreslå deg som en mulig venn til nye medlemmer?"; +$a->strings["Permit unknown people to send you private mail?"] = "Tillat ukjente personer å sende deg privat post?"; $a->strings["Profile is not published."] = "Profilen er ikke publisert."; $a->strings["or"] = "eller"; $a->strings["Your Identity Address is"] = "Din identitetsadresse er"; -$a->strings["Automatically expire posts after this many days:"] = ""; +$a->strings["Automatically expire posts after this many days:"] = "Innlegg utgår automatisk etter så mange dager:"; $a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Tomme innlegg utgår ikke. Utgåtte innlegg slettes."; -$a->strings["Advanced expiration settings"] = ""; -$a->strings["Advanced Expiration"] = ""; -$a->strings["Expire posts:"] = ""; -$a->strings["Expire personal notes:"] = ""; -$a->strings["Expire starred posts:"] = ""; -$a->strings["Expire photos:"] = ""; -$a->strings["Only expire posts by others:"] = ""; +$a->strings["Advanced expiration settings"] = "Avanserte innstillinger for å utgå"; +$a->strings["Advanced Expiration"] = "Avansert utgå"; +$a->strings["Expire posts:"] = "Innlegg utgår:"; +$a->strings["Expire personal notes:"] = "Personlige notater utgår:"; +$a->strings["Expire starred posts:"] = "Innlegg med stjerne utgår:"; +$a->strings["Expire photos:"] = "Bilder utgår:"; +$a->strings["Only expire posts by others:"] = "Kun innlegg fra andre utgår:"; $a->strings["Account Settings"] = "Kontoinnstillinger"; $a->strings["Password Settings"] = "Passordinnstillinger"; $a->strings["New Password:"] = "Nytt passord:"; @@ -1061,29 +1061,29 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maksimum venneforespørsler/dag:" $a->strings["(to prevent spam abuse)"] = "(for å forhindre søppelpost)"; $a->strings["Default Post Permissions"] = "Standardtillatelser ved posting"; $a->strings["(click to open/close)"] = "(klikk for å åpne/lukke)"; -$a->strings["Show to Groups"] = ""; -$a->strings["Show to Contacts"] = ""; -$a->strings["Default Private Post"] = ""; -$a->strings["Default Public Post"] = ""; -$a->strings["Default Permissions for New Posts"] = ""; -$a->strings["Maximum private messages per day from unknown people:"] = ""; +$a->strings["Show to Groups"] = "Vis til grupper"; +$a->strings["Show to Contacts"] = "Vis til kontakter"; +$a->strings["Default Private Post"] = "Standard privat innlegg"; +$a->strings["Default Public Post"] = "Standard offentlig innlegg"; +$a->strings["Default Permissions for New Posts"] = "Standard tillatelser for nye innlegg"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maksimalt antall private meldinger per dag fra ukjente personer:"; $a->strings["Notification Settings"] = "Beskjedinnstillinger"; -$a->strings["By default post a status message when:"] = ""; -$a->strings["accepting a friend request"] = ""; -$a->strings["joining a forum/community"] = ""; -$a->strings["making an interesting profile change"] = ""; +$a->strings["By default post a status message when:"] = "Standard å legge inn en statusmelding når:"; +$a->strings["accepting a friend request"] = "aksepterer en venneforespørsel"; +$a->strings["joining a forum/community"] = "blir med i et forum/fellesskap"; +$a->strings["making an interesting profile change"] = "gjør en interessant profilendring"; $a->strings["Send a notification email when:"] = "Send en e-post med beskjed når:"; $a->strings["You receive an introduction"] = "Du mottar en introduksjon"; $a->strings["Your introductions are confirmed"] = "Dine introduksjoner er bekreftet"; $a->strings["Someone writes on your profile wall"] = "Noen skriver på veggen til profilen din"; $a->strings["Someone writes a followup comment"] = "Noen skriver en oppfølgingskommentar"; $a->strings["You receive a private message"] = "Du mottar en privat melding"; -$a->strings["You receive a friend suggestion"] = ""; -$a->strings["You are tagged in a post"] = ""; -$a->strings["You are poked/prodded/etc. in a post"] = ""; -$a->strings["Advanced Account/Page Type Settings"] = ""; -$a->strings["Change the behaviour of this account for special situations"] = ""; -$a->strings["link"] = ""; +$a->strings["You receive a friend suggestion"] = "Du mottar et venneforslag"; +$a->strings["You are tagged in a post"] = "Du er merket i et innlegg"; +$a->strings["You are poked/prodded/etc. in a post"] = "Du er dyttet/dultet/etc i et innlegg"; +$a->strings["Advanced Account/Page Type Settings"] = "Avanserte konto-/sidetype-innstillinger"; +$a->strings["Change the behaviour of this account for special situations"] = "Endre oppførselen til denne kontoen i spesielle situasjoner"; +$a->strings["link"] = "lenke"; $a->strings["Contact settings applied."] = "Kontaktinnstillinger i bruk."; $a->strings["Contact update failed."] = "Kontaktoppdatering mislyktes."; $a->strings["Contact not found."] = "Kontakt ikke funnet."; @@ -1112,7 +1112,7 @@ $a->strings["poke, prod or do other things to somebody"] = ""; $a->strings["Recipient"] = ""; $a->strings["Choose what you wish to do to recipient"] = ""; $a->strings["Make this post private"] = ""; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = ""; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Denne kan skje innimellom hvis kontakt ble forespurt av begge personer og den allerede er godkjent."; $a->strings["Response from remote site was not understood."] = "Forstod ikke svaret fra det andre stedet."; $a->strings["Unexpected response from remote site: "] = "Uventet svar fra det andre stedet:"; $a->strings["Confirmation completed successfully."] = "Sending av bekreftelse var vellykket. "; @@ -1124,13 +1124,13 @@ $a->strings["No user record found for '%s' "] = "Ingen brukerregistrering funnet $a->strings["Our site encryption key is apparently messed up."] = "Krypteringsnøkkelen til nettstedet vårt ser ut til å være ødelagt."; $a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "En tom nettsteds-URL ble oppgitt eller URL-en kunne ikke dekrypteres av oss."; $a->strings["Contact record was not found for you on our site."] = "Kontaktinformasjon om deg ble ikke funnet på vårt nettsted."; -$a->strings["Site public key not available in contact record for URL %s."] = ""; +$a->strings["Site public key not available in contact record for URL %s."] = "Nettstedets offentlige nøkkel er ikke tilgjengelig i kontaktregisteret for URL %s."; $a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID-en som ble oppgitt av ditt system har en duplikat i vårt system. Det bør virke hvis du prøver igjen."; $a->strings["Unable to set your contact credentials on our system."] = "Får ikke lagret din kontaktlegitamasjon på vårt system."; $a->strings["Unable to update your contact profile details on our system"] = "Får ikke oppdatert kontaktdetaljene dine på vårt system."; $a->strings["Connection accepted at %s"] = "Tilkobling godtatt på %s"; -$a->strings["%1\$s has joined %2\$s"] = ""; -$a->strings["%1\$s welcomes %2\$s"] = ""; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s har blitt med %2\$s"; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s hilser %2\$s"; $a->strings["This introduction has already been accepted."] = "Denne introduksjonen har allerede blitt akseptert."; $a->strings["Profile location is not valid or does not contain profile information."] = "Profilstedet er ikke gyldig og inneholder ikke profilinformasjon."; $a->strings["Warning: profile location has no identifiable owner name."] = "Advarsel: profilstedet har ikke identifiserbart eiernavn."; @@ -1171,14 +1171,14 @@ $a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federeated Social Web $a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- vennligst ikke bruk dette skjemaet. I stedet skriver du %s inn søkelinjen i Diaspora."; $a->strings["Your Identity Address:"] = "Din identitetsadresse:"; $a->strings["Submit Request"] = "Send forespørsel"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s følger %2\$s sin %3\$s"; $a->strings["Global Directory"] = "Global katalog"; $a->strings["Find on this site"] = ""; $a->strings["Site Directory"] = "Stedets katalog"; $a->strings["Gender: "] = "Kjønn:"; $a->strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjulte)."; -$a->strings["Do you really want to delete this suggestion?"] = ""; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; +$a->strings["Do you really want to delete this suggestion?"] = "Vil du virkelig slette dette forslaget?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Ingen forslag tilgjengelig. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer."; $a->strings["Ignore/Hide"] = "Ignorér/Skjul"; $a->strings["People Search"] = "Personsøk"; $a->strings["No matches"] = "Ingen treff"; @@ -1192,7 +1192,7 @@ $a->strings["Remove Item Tag"] = "Fjern tag"; $a->strings["Select a tag to remove: "] = "Velg en tag å fjerne:"; $a->strings["Item not found"] = "Fant ikke elementet"; $a->strings["Edit post"] = "Endre innlegg"; -$a->strings["Event title and start time are required."] = ""; +$a->strings["Event title and start time are required."] = "Hendelsens tittel og starttidspunkt er påkrevet."; $a->strings["l, F j"] = ""; $a->strings["Edit event"] = "Rediger hendelse"; $a->strings["Create New Event"] = "Lag ny hendelse"; @@ -1200,36 +1200,36 @@ $a->strings["Previous"] = "Forrige"; $a->strings["Next"] = "Neste"; $a->strings["hour:minute"] = "time:minutt"; $a->strings["Event details"] = "Hendelsesdetaljer"; -$a->strings["Format is %s %s. Starting date and Title are required."] = ""; +$a->strings["Format is %s %s. Starting date and Title are required."] = "Formatet er %s %s. Startdato og tittel er påkrevet."; $a->strings["Event Starts:"] = "Hendelsen starter:"; -$a->strings["Required"] = ""; +$a->strings["Required"] = "Påkrevet"; $a->strings["Finish date/time is not known or not relevant"] = "Avslutningsdato/-tid er ukjent eller ikke relevant"; $a->strings["Event Finishes:"] = "Hendelsen slutter:"; $a->strings["Adjust for viewer timezone"] = "Tilpass til iakttakerens tidssone"; $a->strings["Description:"] = "Beskrivelse:"; -$a->strings["Title:"] = ""; +$a->strings["Title:"] = "Tittel:"; $a->strings["Share this event"] = "Del denne hendelsen"; -$a->strings["Files"] = ""; -$a->strings["Export account"] = ""; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = ""; -$a->strings["Export all"] = ""; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = ""; -$a->strings["- select -"] = ""; -$a->strings["Import"] = ""; -$a->strings["Move account"] = ""; -$a->strings["You can import an account from another Friendica server."] = ""; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = ""; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = ""; -$a->strings["Account file"] = ""; -$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = ""; +$a->strings["Files"] = "Filer"; +$a->strings["Export account"] = "Eksporter konto"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Eksporter din kontos informasjon og kontakter. Bruk denne til å ta en sikkerhetskopi av kontoen din og/eller for å flytte til en annen tjener."; +$a->strings["Export all"] = "Eksporter alt"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Eksporter din kontoinformasjon, kontakter og alle dine elementer som JSON. Det kan bli en svært stor fil, og kan ta lang tid. Bruk denne til å gjøre en full sikkerhetskopi av kontoen din (bilder blir ikke eksportert)"; +$a->strings["- select -"] = "- velg -"; +$a->strings["Import"] = "Importer"; +$a->strings["Move account"] = "Flytt konto"; +$a->strings["You can import an account from another Friendica server."] = "Du kan importere en konto fra en annen Friendica-tjener."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du må eksportere din konto fra den gamle tjeneren og laste den opp hit. Vi vil gjenskape din gamle konto her med alle dine kontakter. Vi vil også forsøke å informere dine venner at du har flyttet hit."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Denne egenskapen er eksperimentell. Vi kan ikke importere kontakter fra OStatus-nettverk (statusnet/identi.ca) eller fra Diaspora"; +$a->strings["Account file"] = "Kontofil"; +$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "For å eksportere din konto, gå til \"Innstillnger -> Eksporter dine personlige data\" og velg \"Eksporter konto\""; $a->strings["[Embedded content - reload page to view]"] = "[Innebygget innhold - hent siden på nytt for å se det]"; -$a->strings["Contact added"] = ""; -$a->strings["This is Friendica, version"] = ""; +$a->strings["Contact added"] = "Kontakt lagt til "; +$a->strings["This is Friendica, version"] = "Dette er Friendica, versjon"; $a->strings["running at web location"] = "kjører på web-plassering"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = ""; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Vennligst besøk Friendica.com for å lære mer om Friendica-prosjektet."; $a->strings["Bug reports and issues: please visit"] = "Feilrapporter og problemer: vennligst besøk"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = ""; -$a->strings["Installed plugins/addons/apps:"] = ""; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Forslag, ros, donasjoner, og så videre - vennligst send e-post til \"Info\" alfakrøll Friendica punktum com"; +$a->strings["Installed plugins/addons/apps:"] = "Installerte plugins/tillegg/apper:"; $a->strings["No installed plugins/addons/apps"] = "Ingen installerte plugins/tillegg/apper"; $a->strings["Friend suggestion sent."] = "Venneforslag sendt."; $a->strings["Suggest Friends"] = "Foreslå venner"; @@ -1250,42 +1250,42 @@ $a->strings["Not Found"] = "Ikke funnet"; $a->strings["Page not found."] = "Fant ikke siden."; $a->strings["No contacts."] = "Ingen kontakter."; $a->strings["Welcome to %s"] = "Velkommen til %s"; -$a->strings["Access denied."] = ""; +$a->strings["Access denied."] = "Tilgang avslått."; $a->strings["File exceeds size limit of %d"] = "Filstørrelsen er større enn begrensning på %d"; $a->strings["File upload failed."] = "Opplasting av filen mislyktes."; $a->strings["Image exceeds size limit of %d"] = "Bildets størrelse overstiger størrelsesbegrensningen på %d"; $a->strings["Unable to process image."] = "Ikke i stand til å behandle bildet."; $a->strings["Image upload failed."] = "Mislyktes med å laste opp bilde."; -$a->strings["Total invitation limit exceeded."] = ""; +$a->strings["Total invitation limit exceeded."] = "Grensen for totalt antall invitasjoner er overskredet."; $a->strings["%s : Not a valid email address."] = "%s: Ugyldig e-postadresse."; -$a->strings["Please join us on Friendica"] = ""; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; +$a->strings["Please join us on Friendica"] = "Vær med oss på Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Invitasjonsgrense overskredet. Vennligst kontakt administrator på ditt nettsted."; $a->strings["%s : Message delivery failed."] = "%s: Mislyktes med å levere meldingen."; $a->strings["%d message sent."] = array( 0 => "one: %d melding sendt.", 1 => "other: %d meldinger sendt.", ); $a->strings["You have no more invitations available"] = "Du har ingen flere tilgjengelige invitasjoner"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = ""; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = ""; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = ""; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besøk %s for en liste med offentlige nettsteder du kan bli med i. Friendica-medlemmer ved andre nettsteder kan alle opprette forbindelse til hverandre, og i tillegg til medlemmer av mange andre sosiale nettverk."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "For å akseptere denne invitasjonen, vær så snill å besøk og registrer deg hos %s eller et hvilket som helst annet offentlig Friendica-nettsted."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica-nettsteder er alle forbundet med hverandre for å lage et personvern-forbedret sosialt nettverk som eies og kontrolleres av medlemmene selv. De kan også forbindes med mange tradisjonelle sosiale nettverk. Se %s for en liste over alternative Friendica-nettsteder du kan bli med i."; $a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Vi beklager. Dette systemet er for øyeblikket ikke konfigurert for forbindelser med andre offentlige nettsteder eller å invitere medlemmer."; $a->strings["Send invitations"] = "Send invitasjoner"; $a->strings["Enter email addresses, one per line:"] = "Skriv e-postadresser, en per linje:"; $a->strings["Your message:"] = "Din melding:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = ""; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du er herved hjertelig invitert til å bli med meg og andre nære venner på Friendica - hjelp oss å skape en bedre sosial web."; $a->strings["You will need to supply this invitation code: \$invite_code"] = "Du må oppgi denne invitasjonskoden: \$invite_code"; $a->strings["Once you have registered, please connect with me via my profile page at:"] = "Når du har registrert, vennligst kontakt meg via min profilside på:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = ""; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "For mer informasjon om Friendica-prosjektet og hvorfor vi mener det er viktig, vennligst besøk http://friendica.com"; $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Antall daglige veggmeldinger for %s er overskredet. Melding mislyktes."; $a->strings["No recipient selected."] = "Ingen mottaker valgt."; -$a->strings["Unable to check your home location."] = ""; +$a->strings["Unable to check your home location."] = "Ikke i stand til avgjøre plasseringen til ditt hjemsted."; $a->strings["Message could not be sent."] = "Meldingen kunne ikke sendes."; -$a->strings["Message collection failure."] = ""; +$a->strings["Message collection failure."] = "Meldingsinnsamling mislyktes."; $a->strings["Message sent."] = "Melding sendt."; -$a->strings["No recipient."] = ""; +$a->strings["No recipient."] = "Ingen mottaker."; $a->strings["Send Private Message"] = "Send privat melding"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = ""; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Hvis du ønsker å la %s få svare, vennligst sjekk om personverninnstillingene på ditt nettsted tillater private post fra ukjente avsendere."; $a->strings["To:"] = "Til:"; $a->strings["Subject:"] = "Emne:"; $a->strings["Time Conversion"] = "Tidskonvertering"; @@ -1306,12 +1306,12 @@ $a->strings["Your new password is"] = "Ditt nye passord er"; $a->strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter"; $a->strings["click here to login"] = "klikk her for å logge inn"; $a->strings["Your password may be changed from the Settings page after successful login."] = "Passordet ditt kan endres fra siden Innstillinger etter vellykket logg inn."; -$a->strings["Your password has been changed at %s"] = ""; +$a->strings["Your password has been changed at %s"] = "Ditt passord har blitt endret %s"; $a->strings["Forgot your Password?"] = "Glemte du passordet?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Skriv inn e-postadressen og send inn for å tilbakestille passordet ditt. Sjekk deretter e-posten din for nærmere forklaring."; $a->strings["Nickname or Email: "] = "Kallenavn eller e-post:"; $a->strings["Reset"] = "Tilbakestill"; -$a->strings["System down for maintenance"] = ""; +$a->strings["System down for maintenance"] = "Systemet er nede for vedlikehold"; $a->strings["Manage Identities and/or Pages"] = "Behandle identiteter og/eller sider"; $a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Veksle mellom ulike identiteter eller felleskaps-/gruppesider som deler dine kontodetaljer eller som du har blitt gitt \"behandle\" tillatelser"; $a->strings["Select an identity to manage: "] = "Velg en identitet å behandle:"; @@ -1319,13 +1319,13 @@ $a->strings["Profile Match"] = "Profiltreff"; $a->strings["No keywords to match. Please add keywords to your default profile."] = "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord i din standardprofil."; $a->strings["is interested in:"] = ""; $a->strings["Unable to locate contact information."] = "Mislyktes med å finne kontaktinformasjon."; -$a->strings["Do you really want to delete this message?"] = ""; +$a->strings["Do you really want to delete this message?"] = "Ønsker du virkelig å slette denne meldingen?"; $a->strings["Message deleted."] = "Melding slettet."; $a->strings["Conversation removed."] = "Samtale slettet."; $a->strings["No messages."] = "Ingen meldinger."; -$a->strings["Unknown sender - %s"] = ""; -$a->strings["You and %s"] = ""; -$a->strings["%s and You"] = ""; +$a->strings["Unknown sender - %s"] = "Ukjent avsender - %s"; +$a->strings["You and %s"] = "Du og %s"; +$a->strings["%s and You"] = "%s og du"; $a->strings["Delete conversation"] = "Slett samtale"; $a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; $a->strings["%d message"] = array( @@ -1334,7 +1334,7 @@ $a->strings["%d message"] = array( ); $a->strings["Message not available."] = "Melding utilgjengelig."; $a->strings["Delete message"] = "Slett melding"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Ingen sikker kommunikasjon tilgjengelig. Du kan kanskje svare fra senderens profilside."; $a->strings["Send Reply"] = "Send svar"; $a->strings["Mood"] = ""; $a->strings["Set your current mood and tell your friends"] = ""; @@ -1389,7 +1389,7 @@ $a->strings["%s created a new post"] = "%s skrev et nytt innlegg"; $a->strings["%s commented on %s's post"] = "%s kommenterte på %s sitt innlegg"; $a->strings["No more network notifications."] = "Ingen flere nettverksvarslinger."; $a->strings["Network Notifications"] = "Nettverksvarslinger"; -$a->strings["No more system notifications."] = ""; +$a->strings["No more system notifications."] = "Ingen flere systemvarsler."; $a->strings["System Notifications"] = "Systemvarsler"; $a->strings["No more personal notifications."] = "Ingen flere personlige varsler."; $a->strings["Personal Notifications"] = "Personlige varsler"; @@ -1401,25 +1401,25 @@ $a->strings["Upload New Photos"] = "Last opp nye bilder"; $a->strings["Contact information unavailable"] = "Kontaktinformasjon utilgjengelig"; $a->strings["Album not found."] = "Album ble ikke funnet."; $a->strings["Delete Album"] = "Slett album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = ""; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Ønsker du virkelig å slette dette fotoalbumet og alle bildene i det?"; $a->strings["Delete Photo"] = "Slett bilde"; -$a->strings["Do you really want to delete this photo?"] = ""; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; -$a->strings["a photo"] = ""; +$a->strings["Do you really want to delete this photo?"] = "Ønsker du virkelig å slette dette bildet?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s ble merket i %2\$s av %3\$s"; +$a->strings["a photo"] = "et bilde"; $a->strings["Image exceeds size limit of "] = "Bilde overstiger størrelsesbegrensningen på "; $a->strings["Image file is empty."] = "Bildefilen er tom."; $a->strings["No photos selected"] = "Ingen bilder er valgt"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = ""; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du har brukt %1$.2f Mbytes av %2$.2f Mbytes bildelagring."; $a->strings["Upload Photos"] = "Last opp bilder"; $a->strings["New album name: "] = "Nytt albumnavn:"; $a->strings["or existing album name: "] = "eller eksisterende albumnavn:"; $a->strings["Do not show a status post for this upload"] = "Ikke vis statusoppdatering for denne opplastingen"; $a->strings["Permissions"] = "Tillatelser"; -$a->strings["Private Photo"] = ""; -$a->strings["Public Photo"] = ""; +$a->strings["Private Photo"] = "Privat bilde"; +$a->strings["Public Photo"] = "Offentlig bilde"; $a->strings["Edit Album"] = "Endre album"; -$a->strings["Show Newest First"] = ""; -$a->strings["Show Oldest First"] = ""; +$a->strings["Show Newest First"] = "Vis nyeste først"; +$a->strings["Show Oldest First"] = "Vis eldste først"; $a->strings["View Photo"] = "Vis bilde"; $a->strings["Permission denied. Access to this item may be restricted."] = "Tilgang nektet. Tilgang til dette elementet kan være begrenset."; $a->strings["Photo not available"] = "Bilde ikke tilgjengelig"; @@ -1430,51 +1430,51 @@ $a->strings["Private Message"] = "Privat melding"; $a->strings["View Full Size"] = "Vis i full størrelse"; $a->strings["Tags: "] = "Tagger:"; $a->strings["[Remove any tag]"] = "[Fjern en tag]"; -$a->strings["Rotate CW (right)"] = ""; -$a->strings["Rotate CCW (left)"] = ""; +$a->strings["Rotate CW (right)"] = "Roter med klokka (høyre)"; +$a->strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)"; $a->strings["New album name"] = "Nytt albumnavn"; $a->strings["Caption"] = "Overskrift"; $a->strings["Add a Tag"] = "Legg til tag"; $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Private photo"] = ""; -$a->strings["Public photo"] = ""; +$a->strings["Private photo"] = "Privat bilde"; +$a->strings["Public photo"] = "Offentlig bilde"; $a->strings["I like this (toggle)"] = "Jeg liker dette (skru på/av)"; $a->strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru på/av)"; $a->strings["This is you"] = "Dette er deg"; $a->strings["Comment"] = "Kommentar"; $a->strings["Recent Photos"] = "Nye bilder"; -$a->strings["Welcome to Friendica"] = ""; +$a->strings["Welcome to Friendica"] = "Velkommen til Friendica"; $a->strings["New Member Checklist"] = "Sjekkliste for nye medlemmer"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = ""; -$a->strings["Getting Started"] = ""; -$a->strings["Friendica Walk-Through"] = ""; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = ""; -$a->strings["Go to Your Settings"] = ""; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = ""; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Vi vil gjerne gi noe noen tips og lenker for å hjelpe deg til en hyggelig opplevelse. Klikk på et element for å besøke den relevante siden. En lenke til denne siden vil være synlig på din hovedside i to uker etter at du registrerte deg og så vil den bli borte av seg selv."; +$a->strings["Getting Started"] = "Komme igang"; +$a->strings["Friendica Walk-Through"] = "Friendica gjennomgang"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "På Hurtigstart-siden din, så finner du en kort introduksjon til profilen din og nettverksfanen, hvordan du oppretter nye forbindelser, og hvordan du finner grupper å bli med i."; +$a->strings["Go to Your Settings"] = "Gå til Dine innstillinger"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "På siden Innstillinger - bytt passordet du fikk. Merk deg også Din identitetsadresse. Denne ser ut som en vanlig e-postadresse, og er nyttig for å bli venner i den frie sosiale web'en."; $a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Se over de andre innstillingene, særlig personverninnstillingene. En katalogoppføring som ikke er publisert er som å ha skjult telefonnummer. Generelt, så bør du antakelig publisere oppføringen, med mindre dine venner eller potensielle venner vet nøyaktig hvordan de skal finne deg."; $a->strings["Upload Profile Photo"] = "Last opp profilbilde"; $a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Last opp et profilbilde hvis du ikke har gjort det allerede. Studier viser at folk som har ekte bilde av seg selv har ti ganger større sannsynlighet for å få venner enn folk som ikke gjør det."; -$a->strings["Edit Your Profile"] = ""; +$a->strings["Edit Your Profile"] = "Endre profilen din"; $a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Du kan endre standardprofilen din slik du ønsker. Se over innstillingene som lar deg skjule vennelisten og skjule profilen fra ukjente besøkende."; -$a->strings["Profile Keywords"] = ""; +$a->strings["Profile Keywords"] = "Profilnøkkelord"; $a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Legg til noen offentlige nøkkelord til standardprofilen din som beskriver dine interesser. Det kan hende vi klarer å finne andre folk med liknende interesser og foreslå vennskap."; -$a->strings["Connecting"] = ""; +$a->strings["Connecting"] = "Kobling"; $a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Tillat Facebook-koblingen hvis du har en Facebook-konto og vi vil (valgfritt) importere alle dine Facebook-venner og samtaler."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = ""; -$a->strings["Importing Emails"] = ""; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = ""; -$a->strings["Go to Your Contacts Page"] = ""; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = ""; -$a->strings["Go to Your Site's Directory"] = ""; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Hvis dette er din egen personlige tjener, så kan installasjon av Facebook-tillegget gjøre overgangen til den frie sosiale web'en lettere."; +$a->strings["Importing Emails"] = "Importere e-post"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Skriv inn tilgangsinformasjon til e-posten din på siden for Koblingsinnstillinger, hvis du ønsker å importere og samhandle med venner eller e-postlister fra din e-post INNBOKS"; +$a->strings["Go to Your Contacts Page"] = "Gå til Dine kontakter-siden"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Dine kontakter-siden er der du håndterer vennskap og skaper forbindelser med venner på andre nettverk. Vanligvis skriver du deres adresse eller nettsteds-URL i dialogboksen Legg til ny kontakt"; +$a->strings["Go to Your Site's Directory"] = "Gå til Din lokale katalog"; $a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Katalog-siden lar deg finne andre folk i dette nettverket eller andre forente nettsteder. Se etter en Connect eller Follow lenke på profilsiden deres. Oppgi din egen identitetsadresse hvis du blir forespurt om det."; -$a->strings["Finding New People"] = ""; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = ""; -$a->strings["Group Your Contacts"] = ""; +$a->strings["Finding New People"] = "Finn nye personer"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "I sidepanelet på Kontakter-siden er flere verktøy for å finne nye venner. Vi kan matche personer utfra interesse, slå opp personer på navn eller interesse, og gi forslag basert på nettverksforbindelser. På et helt nytt nettsted, så vil venneforslag vanligvis dukke opp innen 24 timer."; +$a->strings["Group Your Contacts"] = "Kontaktgrupper"; $a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Når du har fått noen venner, så kan du organisere dem i private samtalegrupper i sidefeltet på Kontakt-siden din, og deretter kan du samhandle med hver gruppe privat på din Nettverk-side."; -$a->strings["Why Aren't My Posts Public?"] = ""; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = ""; -$a->strings["Getting Help"] = ""; -$a->strings["Go to the Help Section"] = ""; +$a->strings["Why Aren't My Posts Public?"] = "Hvorfor er ikke mine innlegg offentlige?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respekterer ditt privatliv. Som standard, så vil dine innlegg bare vises til personer du har lagt til som venner. For mer informasjon, se Hjelp-siden fra lenken ovenfor."; +$a->strings["Getting Help"] = "Få hjelp"; +$a->strings["Go to the Help Section"] = "Gå til Hjelp-siden"; $a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Våre hjelpesider kan leses for flere detaljer og ressurser om andre egenskaper ved programmet."; $a->strings["Requested profile is not available."] = "Profil utilgjengelig."; $a->strings["Tips for New Members"] = "Tips til nye medlemmer"; From 5cdeef22eab8409fbbe79c3a8e6446860cb3e435 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Wed, 19 Jun 2013 14:28:39 +0200 Subject: [PATCH 08/12] pager: fix stupid typo --- include/text.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/text.php b/include/text.php index 264dd76a5e..6b39868b9a 100644 --- a/include/text.php +++ b/include/text.php @@ -292,7 +292,7 @@ function paginate_data(&$a, $count=null) { if($a->pager['page']>1) _l($data, "prev", $url.'&page='.($a->pager['page'] - 1), t('newer')); if($count>0) - _l($data, "next", $url.'&page='.($a->pager['page'] - 1), t('older')); + _l($data, "next", $url.'&page='.($a->pager['page'] + 1), t('older')); } else { // full pager if($a->pager['total'] > $a->pager['itemspage']) { From 443d1700166c09cd4ef005430d9c5de2be4b5b83 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 20 Jun 2013 07:50:19 +0200 Subject: [PATCH 09/12] NB_NO: update to the strings --- view/nb-no/messages.po | 166 ++++++++++++++++++++--------------------- view/nb-no/strings.php | 164 ++++++++++++++++++++-------------------- 2 files changed, 165 insertions(+), 165 deletions(-) diff --git a/view/nb-no/messages.po b/view/nb-no/messages.po index 29aae8fe4b..42ad4376e8 100644 --- a/view/nb-no/messages.po +++ b/view/nb-no/messages.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" "POT-Creation-Date: 2013-06-12 00:01-0700\n" -"PO-Revision-Date: 2013-06-19 05:03+0000\n" +"PO-Revision-Date: 2013-06-20 05:11+0000\n" "Last-Translator: Haakon Meland Eriksen \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/friendica/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -761,7 +761,7 @@ msgstr "Venneforslag" #: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519 msgid "Similar Interests" -msgstr "" +msgstr "Liknende interesser" #: ../../include/contact_widgets.php:36 msgid "Random Profile" @@ -1516,7 +1516,7 @@ msgstr "" #: ../../include/group.php:275 ../../mod/network.php:234 msgid "add" -msgstr "" +msgstr "legg til" #: ../../include/conversation.php:140 ../../mod/like.php:170 #, php-format @@ -1531,7 +1531,7 @@ msgstr "" #: ../../include/conversation.php:227 ../../mod/mood.php:62 #, php-format msgid "%1$s is currently %2$s" -msgstr "" +msgstr "%1$s er for øyeblikket %2$s" #: ../../include/conversation.php:266 ../../mod/tagger.php:95 #, php-format @@ -2017,7 +2017,7 @@ msgstr "Dine innlegg og samtaler" #: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88 msgid "Your profile page" -msgstr "" +msgstr "Din profilside" #: ../../include/nav.php:78 ../../mod/fbrowser.php:25 #: ../../view/theme/diabook/theme.php:90 ../../boot.php:1954 @@ -2026,7 +2026,7 @@ msgstr "Bilder" #: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90 msgid "Your photos" -msgstr "" +msgstr "Dine bilder" #: ../../include/nav.php:79 ../../mod/events.php:370 #: ../../view/theme/diabook/theme.php:91 ../../boot.php:1971 @@ -2035,15 +2035,15 @@ msgstr "Hendelser" #: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91 msgid "Your events" -msgstr "" +msgstr "Dine hendelser" #: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92 msgid "Personal notes" -msgstr "" +msgstr "Personlige notater" #: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92 msgid "Your personal photos" -msgstr "" +msgstr "Dine personlige bilder" #: ../../include/nav.php:91 ../../boot.php:1137 msgid "Login" @@ -3527,7 +3527,7 @@ msgstr "Systemfeil. Meldingen ble ikke lagret." msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." -msgstr "" +msgstr "Denne meldingen ble sendt til deg av %s, et medlem av det sosiale nettverket Friendica." #: ../../mod/item.php:899 #, php-format @@ -4662,7 +4662,7 @@ msgstr "Vennligst bruk Tilbake-knappen i nettleseren din hv #: ../../mod/crepair.php:144 msgid "Return to contact editor" -msgstr "" +msgstr "Gå tilbake til å endre kontakt" #: ../../mod/crepair.php:149 msgid "Account Nickname" @@ -4698,7 +4698,7 @@ msgstr "Nytt bilde fra denne URL-en" #: ../../mod/delegate.php:95 msgid "No potential page delegates located." -msgstr "" +msgstr "Fant ingen potensielle sidedelegater." #: ../../mod/delegate.php:123 msgid "" @@ -4713,11 +4713,11 @@ msgstr "Eksisterende sidebehandlere" #: ../../mod/delegate.php:126 msgid "Existing Page Delegates" -msgstr "" +msgstr "Eksisterende sidedelegater" #: ../../mod/delegate.php:128 msgid "Potential Delegates" -msgstr "" +msgstr "Mulige delegater" #: ../../mod/delegate.php:130 ../../mod/tagrm.php:93 msgid "Remove" @@ -4725,31 +4725,31 @@ msgstr "Slett" #: ../../mod/delegate.php:131 msgid "Add" -msgstr "" +msgstr "Legg til" #: ../../mod/delegate.php:132 msgid "No entries." -msgstr "" +msgstr "Ingen oppføringer" #: ../../mod/poke.php:192 msgid "Poke/Prod" -msgstr "" +msgstr "Dytt/dult" #: ../../mod/poke.php:193 msgid "poke, prod or do other things to somebody" -msgstr "" +msgstr "dytt, dult eller gjør andre ting med noen" #: ../../mod/poke.php:194 msgid "Recipient" -msgstr "" +msgstr "Mottaker" #: ../../mod/poke.php:195 msgid "Choose what you wish to do to recipient" -msgstr "" +msgstr "Velg hva du ønsker å gjøre med mottakeren" #: ../../mod/poke.php:198 msgid "Make this post private" -msgstr "" +msgstr "Gjør dette innlegget privat" #: ../../mod/dfrn_confirm.php:119 msgid "" @@ -5016,7 +5016,7 @@ msgstr "Global katalog" #: ../../mod/directory.php:57 msgid "Find on this site" -msgstr "" +msgstr "Finn på dette nettstedet" #: ../../mod/directory.php:60 msgid "Site Directory" @@ -5528,7 +5528,7 @@ msgstr "Tidskonvertering" msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." -msgstr "" +msgstr "Friendica har denne tjenesten for å dele hendelser med andre nettverk og venner i ukjente tidssoner." #: ../../mod/localtime.php:30 #, php-format @@ -5653,7 +5653,7 @@ msgstr "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord i din sta #: ../../mod/match.php:57 msgid "is interested in:" -msgstr "" +msgstr "er interessert i:" #: ../../mod/message.php:67 msgid "Unable to locate contact information." @@ -5725,15 +5725,15 @@ msgstr "Send svar" #: ../../mod/mood.php:133 msgid "Mood" -msgstr "" +msgstr "Stemning" #: ../../mod/mood.php:134 msgid "Set your current mood and tell your friends" -msgstr "" +msgstr "Angi din stemning og fortell dine venner" #: ../../mod/network.php:181 msgid "Search Results For:" -msgstr "" +msgstr "Søkeresultater for:" #: ../../mod/network.php:397 msgid "Commented Order" @@ -5741,7 +5741,7 @@ msgstr "Etter kommentarer" #: ../../mod/network.php:400 msgid "Sort by Comment Date" -msgstr "" +msgstr "Sorter etter kommentardato" #: ../../mod/network.php:403 msgid "Posted Order" @@ -5749,7 +5749,7 @@ msgstr "Etter innlegg" #: ../../mod/network.php:406 msgid "Sort by Post Date" -msgstr "" +msgstr "Sorter etter innleggsdato" #: ../../mod/network.php:444 ../../mod/notifications.php:88 msgid "Personal" @@ -5757,7 +5757,7 @@ msgstr "Personlig" #: ../../mod/network.php:447 msgid "Posts that mention or involve you" -msgstr "" +msgstr "Innlegg som nevner eller involverer deg" #: ../../mod/network.php:453 msgid "New" @@ -5765,15 +5765,15 @@ msgstr "Ny" #: ../../mod/network.php:456 msgid "Activity Stream - by date" -msgstr "" +msgstr "Aktivitetsstrøm - etter dato" #: ../../mod/network.php:462 msgid "Shared Links" -msgstr "" +msgstr "Delte lenker" #: ../../mod/network.php:465 msgid "Interesting Links" -msgstr "" +msgstr "Interessante lenker" #: ../../mod/network.php:471 msgid "Starred" @@ -5781,7 +5781,7 @@ msgstr "Med stjerne" #: ../../mod/network.php:474 msgid "Favourite Posts" -msgstr "" +msgstr "Favorittinnlegg" #: ../../mod/network.php:546 #, php-format @@ -6362,15 +6362,15 @@ msgstr "" #: ../../mod/install.php:123 msgid "Could not connect to database." -msgstr "" +msgstr "Kunne ikke koble til database." #: ../../mod/install.php:127 msgid "Could not create table." -msgstr "" +msgstr "Kunne ikke lage tabell." #: ../../mod/install.php:133 msgid "Your Friendica site database has been installed." -msgstr "" +msgstr "Databasen til Friendica-nettstedet ditt har blitt installert." #: ../../mod/install.php:138 msgid "" @@ -6385,21 +6385,21 @@ msgstr "Vennligst se filen \"INSTALL.txt\"." #: ../../mod/install.php:203 msgid "System check" -msgstr "" +msgstr "Systemsjekk" #: ../../mod/install.php:208 msgid "Check again" -msgstr "" +msgstr "Sjekk på nytt" #: ../../mod/install.php:227 msgid "Database connection" -msgstr "" +msgstr "Databaseforbindelse" #: ../../mod/install.php:228 msgid "" "In order to install Friendica we need to know how to connect to your " "database." -msgstr "" +msgstr "For å installere Friendica må vi vite hvordan man kan koble seg til din database." #: ../../mod/install.php:229 msgid "" @@ -6431,13 +6431,13 @@ msgstr "Databasenavn" #: ../../mod/install.php:238 ../../mod/install.php:277 msgid "Site administrator email address" -msgstr "" +msgstr "Nettstedsadministrator sin e-postadresse" #: ../../mod/install.php:238 ../../mod/install.php:277 msgid "" "Your account email address must match this in order to use the web admin " "panel." -msgstr "" +msgstr "Din kontos e-postadresse må stemme med denne for å kunne bruke panelet for webadministrasjon." #: ../../mod/install.php:242 ../../mod/install.php:280 msgid "Please select a default timezone for your website" @@ -6445,7 +6445,7 @@ msgstr "Vennligst velg en standard tidssone for ditt nettsted" #: ../../mod/install.php:267 msgid "Site settings" -msgstr "" +msgstr "Innstillinger for nettstedet" #: ../../mod/install.php:321 msgid "Could not find a command line version of PHP in the web server PATH." @@ -6456,21 +6456,21 @@ msgid "" "If you don't have a command line version of PHP installed on server, you " "will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "" +msgstr "Hvis du ikke har installert kommandolinjeversjonen av PHP på tjeneren, så vil du ikke kunne kjøre bakgrunnsspørring via cron. Se 'Aktivere tidsstyrte oppgaver'" #: ../../mod/install.php:326 msgid "PHP executable path" -msgstr "" +msgstr "PHP kjørefil sin sti" #: ../../mod/install.php:326 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." -msgstr "" +msgstr "Skriv inn hele stien til php kjørefilen. Du kan la denne stå blank for å fortsette installasjonen." #: ../../mod/install.php:331 msgid "Command line PHP" -msgstr "" +msgstr "Kommandolinje PHP" #: ../../mod/install.php:340 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" @@ -6496,7 +6496,7 @@ msgstr "Dette er nødvendig for at meldingslevering skal virke." #: ../../mod/install.php:357 msgid "PHP register_argc_argv" -msgstr "" +msgstr "PHP register_argc_argv" #: ../../mod/install.php:378 msgid "" @@ -6512,31 +6512,31 @@ msgstr "For kjøring på Windows, vennligst se \"http://www.php.net/manual/en/op #: ../../mod/install.php:381 msgid "Generate encryption keys" -msgstr "" +msgstr "Lag krypteringsnøkler" #: ../../mod/install.php:388 msgid "libCurl PHP module" -msgstr "" +msgstr "libCurl PHP modul" #: ../../mod/install.php:389 msgid "GD graphics PHP module" -msgstr "" +msgstr "GD graphics PHP modul" #: ../../mod/install.php:390 msgid "OpenSSL PHP module" -msgstr "" +msgstr "OpenSSL PHP modul" #: ../../mod/install.php:391 msgid "mysqli PHP module" -msgstr "" +msgstr "mysqli PHP modul" #: ../../mod/install.php:392 msgid "mb_string PHP module" -msgstr "" +msgstr "mb_string PHP modul" #: ../../mod/install.php:397 ../../mod/install.php:399 msgid "Apache mod_rewrite module" -msgstr "" +msgstr "Apache mod_rewrite modul" #: ../../mod/install.php:397 msgid "" @@ -6580,55 +6580,55 @@ msgstr "Dette skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje msgid "" "At the end of this procedure, we will give you a text to save in a file " "named .htconfig.php in your Friendica top folder." -msgstr "" +msgstr "På slutten av denne prosedyren, så gir vi deg en tekst å lagre i en fil kalt .htconfig.php i din Friendica sin toppmappe." #: ../../mod/install.php:441 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"INSTALL.txt\" for instructions." -msgstr "" +msgstr "Du kan alternativt hoppe over denne prosedyren og utføre en manuell installasjon. Vennligst se filen \"INSTALL.txt\" for instruksjoner." #: ../../mod/install.php:444 msgid ".htconfig.php is writable" -msgstr "" +msgstr ".htconfig.php er skrivbar" #: ../../mod/install.php:454 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." -msgstr "" +msgstr "Friendica bruker Smarty3 malmotor for å gjengi sine webvisninger. Smarty3 kompilerer maler til PHP for å gjøre gjengivelse raskere." #: ../../mod/install.php:455 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." -msgstr "" +msgstr "For å lagre disse kompilerte malene må webtjenesten ha skrivetilgang til katalogen view/smarty3/ som er under Friendica sin toppnivåmappe." #: ../../mod/install.php:456 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." -msgstr "" +msgstr "Vennligst sjekk at brukeren din webtjeneste kjører som (for eksempel www-data) har skrivetilgang til denne mappen." #: ../../mod/install.php:457 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "" +msgstr "Merknad: som et sikkerhetstiltak, du bør gi webtjenesten skrivetilgang kun til view/smarty3/ - ikke til malfilene (.tpl) som den inneholder." #: ../../mod/install.php:460 msgid "view/smarty3 is writable" -msgstr "" +msgstr "view/smarty3 er skrivbar" #: ../../mod/install.php:472 msgid "" "Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" +msgstr "URL omskriving i .htaccess virker ikke. Sjekk konfigurasjonen til webtjenesten." #: ../../mod/install.php:474 msgid "Url rewrite is working" -msgstr "" +msgstr "URL omskriving virker" #: ../../mod/install.php:484 msgid "" @@ -6643,7 +6643,7 @@ msgstr "Feil oppstod under opprettelsen av databasetabeller." #: ../../mod/install.php:519 msgid "

What next

" -msgstr "" +msgstr "

Hva nå

" #: ../../mod/install.php:520 msgid "" @@ -6690,7 +6690,7 @@ msgstr "Last opp fil:" #: ../../mod/profile_photo.php:243 msgid "Select a profile:" -msgstr "" +msgstr "Velg en profil:" #: ../../mod/profile_photo.php:245 msgid "Upload" @@ -6873,49 +6873,49 @@ msgstr "" #: ../../view/theme/diabook/config.php:161 #: ../../view/theme/diabook/theme.php:578 msgid "Set longitude (X) for Earth Layers" -msgstr "" +msgstr "Angi lengdegrad (X) for Earth Layers" #: ../../view/theme/diabook/config.php:162 #: ../../view/theme/diabook/theme.php:579 msgid "Set latitude (Y) for Earth Layers" -msgstr "" +msgstr "Angi breddegrad (Y) for Earth Layers" #: ../../view/theme/diabook/config.php:163 #: ../../view/theme/diabook/theme.php:94 #: ../../view/theme/diabook/theme.php:537 #: ../../view/theme/diabook/theme.php:632 msgid "Community Pages" -msgstr "" +msgstr "Felleskapssider" #: ../../view/theme/diabook/config.php:164 #: ../../view/theme/diabook/theme.php:572 #: ../../view/theme/diabook/theme.php:633 msgid "Earth Layers" -msgstr "" +msgstr "Earth Layers" #: ../../view/theme/diabook/config.php:165 #: ../../view/theme/diabook/theme.php:384 #: ../../view/theme/diabook/theme.php:634 msgid "Community Profiles" -msgstr "" +msgstr "Fellesskapsprofiler" #: ../../view/theme/diabook/config.php:166 #: ../../view/theme/diabook/theme.php:592 #: ../../view/theme/diabook/theme.php:635 msgid "Help or @NewHere ?" -msgstr "" +msgstr "Hjelp eller @NewHere ?" #: ../../view/theme/diabook/config.php:167 #: ../../view/theme/diabook/theme.php:599 #: ../../view/theme/diabook/theme.php:636 msgid "Connect Services" -msgstr "" +msgstr "Forbindelse til tjenester" #: ../../view/theme/diabook/config.php:168 #: ../../view/theme/diabook/theme.php:516 #: ../../view/theme/diabook/theme.php:637 msgid "Find Friends" -msgstr "" +msgstr "Finn venner" #: ../../view/theme/diabook/config.php:169 msgid "Last tweets" @@ -6925,36 +6925,36 @@ msgstr "" #: ../../view/theme/diabook/theme.php:405 #: ../../view/theme/diabook/theme.php:639 msgid "Last users" -msgstr "" +msgstr "Siste brukere" #: ../../view/theme/diabook/config.php:171 #: ../../view/theme/diabook/theme.php:479 #: ../../view/theme/diabook/theme.php:640 msgid "Last photos" -msgstr "" +msgstr "Siste bilder" #: ../../view/theme/diabook/config.php:172 #: ../../view/theme/diabook/theme.php:434 #: ../../view/theme/diabook/theme.php:641 msgid "Last likes" -msgstr "" +msgstr "Siste liker" #: ../../view/theme/diabook/theme.php:89 msgid "Your contacts" -msgstr "" +msgstr "Dine kontakter" #: ../../view/theme/diabook/theme.php:517 msgid "Local Directory" -msgstr "" +msgstr "Lokal katalog" #: ../../view/theme/diabook/theme.php:577 msgid "Set zoomfactor for Earth Layers" -msgstr "" +msgstr "Angi zoomfaktor for Earth Layers" #: ../../view/theme/diabook/theme.php:606 #: ../../view/theme/diabook/theme.php:638 msgid "Last Tweets" -msgstr "" +msgstr "Siste Tweets" #: ../../view/theme/diabook/theme.php:630 msgid "Show/hide boxes at right-hand column:" diff --git a/view/nb-no/strings.php b/view/nb-no/strings.php index f0920f9c9a..c21f8a35e8 100644 --- a/view/nb-no/strings.php +++ b/view/nb-no/strings.php @@ -181,7 +181,7 @@ $a->strings["Connect/Follow"] = "Koble/Følg"; $a->strings["Examples: Robert Morgenstein, Fishing"] = ""; $a->strings["Find"] = "Finn"; $a->strings["Friend Suggestions"] = "Venneforslag"; -$a->strings["Similar Interests"] = ""; +$a->strings["Similar Interests"] = "Liknende interesser"; $a->strings["Random Profile"] = ""; $a->strings["Invite Friends"] = "Inviterer venner"; $a->strings["Networks"] = ""; @@ -361,10 +361,10 @@ $a->strings["Groups"] = "Grupper"; $a->strings["Edit group"] = ""; $a->strings["Create a new group"] = "Lag en ny gruppe"; $a->strings["Contacts not in any group"] = ""; -$a->strings["add"] = ""; +$a->strings["add"] = "legg til"; $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s's %3\$s"; $a->strings["%1\$s poked %2\$s"] = ""; -$a->strings["%1\$s is currently %2\$s"] = ""; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s er for øyeblikket %2\$s"; $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %2\$s sitt %3\$s med %4\$s"; $a->strings["post/item"] = ""; $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = ""; @@ -468,13 +468,13 @@ $a->strings["Logout"] = "Logg ut"; $a->strings["End this session"] = "Avslutt denne økten"; $a->strings["Status"] = "Status"; $a->strings["Your posts and conversations"] = "Dine innlegg og samtaler"; -$a->strings["Your profile page"] = ""; +$a->strings["Your profile page"] = "Din profilside"; $a->strings["Photos"] = "Bilder"; -$a->strings["Your photos"] = ""; +$a->strings["Your photos"] = "Dine bilder"; $a->strings["Events"] = "Hendelser"; -$a->strings["Your events"] = ""; -$a->strings["Personal notes"] = ""; -$a->strings["Your personal photos"] = ""; +$a->strings["Your events"] = "Dine hendelser"; +$a->strings["Personal notes"] = "Personlige notater"; +$a->strings["Your personal photos"] = "Dine personlige bilder"; $a->strings["Login"] = "Logg inn"; $a->strings["Sign in"] = "Logg inn"; $a->strings["Home"] = "Hjem"; @@ -818,7 +818,7 @@ $a->strings["FTP Password"] = "FTP-passord"; $a->strings["Unable to locate original post."] = "Mislyktes med å lokalisere opprinnelig melding."; $a->strings["Empty post discarded."] = "Tom melding forkastet."; $a->strings["System error. Post not saved."] = "Systemfeil. Meldingen ble ikke lagret."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = ""; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Denne meldingen ble sendt til deg av %s, et medlem av det sosiale nettverket Friendica."; $a->strings["You may visit them online at %s"] = "Du kan besøke dem online på %s"; $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Vennligst kontakt avsenderen ved å svare på denne meldingen hvis du ikke ønsker å motta disse meldingene."; $a->strings["%s posted an update."] = "%s postet en oppdatering."; @@ -1090,7 +1090,7 @@ $a->strings["Contact not found."] = "Kontakt ikke funnet."; $a->strings["Repair Contact Settings"] = "Reparer kontaktinnstillinger"; $a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ADVARSEL: Dette er meget avansert og hvis du skriver feil informasjon her, så kan kommunikasjonen med denne kontakten slutte å virke."; $a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Vennligst bruk Tilbake-knappen i nettleseren din hvis du er usikker på hva du bør gjøre på denne siden."; -$a->strings["Return to contact editor"] = ""; +$a->strings["Return to contact editor"] = "Gå tilbake til å endre kontakt"; $a->strings["Account Nickname"] = "Konto Kallenavn"; $a->strings["@Tagname - overrides Name/Nickname"] = "@Merkelappnavn - overstyrer Navn/Kallenavn"; $a->strings["Account URL"] = "Konto URL"; @@ -1099,19 +1099,19 @@ $a->strings["Friend Confirm URL"] = "Vennebekreftelse URL"; $a->strings["Notification Endpoint URL"] = "Endepunkt URL for beskjed"; $a->strings["Poll/Feed URL"] = "Poll/Feed URL"; $a->strings["New photo from this URL"] = "Nytt bilde fra denne URL-en"; -$a->strings["No potential page delegates located."] = ""; +$a->strings["No potential page delegates located."] = "Fant ingen potensielle sidedelegater."; $a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Delegater kan behandle alle sider ved denne kontoen/siden, bortsett fra grunnleggende kontoinnstillinger. Vennligst ikke deleger din personlige konto til noen som du ikke stoler fullt og fast på."; $a->strings["Existing Page Managers"] = "Eksisterende sidebehandlere"; -$a->strings["Existing Page Delegates"] = ""; -$a->strings["Potential Delegates"] = ""; +$a->strings["Existing Page Delegates"] = "Eksisterende sidedelegater"; +$a->strings["Potential Delegates"] = "Mulige delegater"; $a->strings["Remove"] = "Slett"; -$a->strings["Add"] = ""; -$a->strings["No entries."] = ""; -$a->strings["Poke/Prod"] = ""; -$a->strings["poke, prod or do other things to somebody"] = ""; -$a->strings["Recipient"] = ""; -$a->strings["Choose what you wish to do to recipient"] = ""; -$a->strings["Make this post private"] = ""; +$a->strings["Add"] = "Legg til"; +$a->strings["No entries."] = "Ingen oppføringer"; +$a->strings["Poke/Prod"] = "Dytt/dult"; +$a->strings["poke, prod or do other things to somebody"] = "dytt, dult eller gjør andre ting med noen"; +$a->strings["Recipient"] = "Mottaker"; +$a->strings["Choose what you wish to do to recipient"] = "Velg hva du ønsker å gjøre med mottakeren"; +$a->strings["Make this post private"] = "Gjør dette innlegget privat"; $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Denne kan skje innimellom hvis kontakt ble forespurt av begge personer og den allerede er godkjent."; $a->strings["Response from remote site was not understood."] = "Forstod ikke svaret fra det andre stedet."; $a->strings["Unexpected response from remote site: "] = "Uventet svar fra det andre stedet:"; @@ -1173,7 +1173,7 @@ $a->strings["Your Identity Address:"] = "Din identitetsadresse:"; $a->strings["Submit Request"] = "Send forespørsel"; $a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s følger %2\$s sin %3\$s"; $a->strings["Global Directory"] = "Global katalog"; -$a->strings["Find on this site"] = ""; +$a->strings["Find on this site"] = "Finn på dette nettstedet"; $a->strings["Site Directory"] = "Stedets katalog"; $a->strings["Gender: "] = "Kjønn:"; $a->strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjulte)."; @@ -1289,7 +1289,7 @@ $a->strings["If you wish for %s to respond, please check that the privacy settin $a->strings["To:"] = "Til:"; $a->strings["Subject:"] = "Emne:"; $a->strings["Time Conversion"] = "Tidskonvertering"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = ""; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica har denne tjenesten for å dele hendelser med andre nettverk og venner i ukjente tidssoner."; $a->strings["UTC time: %s"] = "UTC tid: %s"; $a->strings["Current timezone: %s"] = "Gjeldende tidssone: %s"; $a->strings["Converted localtime: %s"] = "Konvertert lokaltid: %s"; @@ -1317,7 +1317,7 @@ $a->strings["Toggle between different identities or community/group pages which $a->strings["Select an identity to manage: "] = "Velg en identitet å behandle:"; $a->strings["Profile Match"] = "Profiltreff"; $a->strings["No keywords to match. Please add keywords to your default profile."] = "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord i din standardprofil."; -$a->strings["is interested in:"] = ""; +$a->strings["is interested in:"] = "er interessert i:"; $a->strings["Unable to locate contact information."] = "Mislyktes med å finne kontaktinformasjon."; $a->strings["Do you really want to delete this message?"] = "Ønsker du virkelig å slette denne meldingen?"; $a->strings["Message deleted."] = "Melding slettet."; @@ -1336,21 +1336,21 @@ $a->strings["Message not available."] = "Melding utilgjengelig."; $a->strings["Delete message"] = "Slett melding"; $a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Ingen sikker kommunikasjon tilgjengelig. Du kan kanskje svare fra senderens profilside."; $a->strings["Send Reply"] = "Send svar"; -$a->strings["Mood"] = ""; -$a->strings["Set your current mood and tell your friends"] = ""; -$a->strings["Search Results For:"] = ""; +$a->strings["Mood"] = "Stemning"; +$a->strings["Set your current mood and tell your friends"] = "Angi din stemning og fortell dine venner"; +$a->strings["Search Results For:"] = "Søkeresultater for:"; $a->strings["Commented Order"] = "Etter kommentarer"; -$a->strings["Sort by Comment Date"] = ""; +$a->strings["Sort by Comment Date"] = "Sorter etter kommentardato"; $a->strings["Posted Order"] = "Etter innlegg"; -$a->strings["Sort by Post Date"] = ""; +$a->strings["Sort by Post Date"] = "Sorter etter innleggsdato"; $a->strings["Personal"] = "Personlig"; -$a->strings["Posts that mention or involve you"] = ""; +$a->strings["Posts that mention or involve you"] = "Innlegg som nevner eller involverer deg"; $a->strings["New"] = "Ny"; -$a->strings["Activity Stream - by date"] = ""; -$a->strings["Shared Links"] = ""; -$a->strings["Interesting Links"] = ""; +$a->strings["Activity Stream - by date"] = "Aktivitetsstrøm - etter dato"; +$a->strings["Shared Links"] = "Delte lenker"; +$a->strings["Interesting Links"] = "Interessante lenker"; $a->strings["Starred"] = "Med stjerne"; -$a->strings["Favourite Posts"] = ""; +$a->strings["Favourite Posts"] = "Favorittinnlegg"; $a->strings["Warning: This group contains %s member from an insecure network."] = array( 0 => "Advarsel: denne gruppen inneholder %s medlem fra et usikkert nettverk.", 1 => "Advarsel: denne gruppe inneholder %s medlemmer fra et usikkert nettverk.", @@ -1479,45 +1479,45 @@ $a->strings["Our help pages may be consulted for detail on othe $a->strings["Requested profile is not available."] = "Profil utilgjengelig."; $a->strings["Tips for New Members"] = "Tips til nye medlemmer"; $a->strings["Friendica Communications Server - Setup"] = ""; -$a->strings["Could not connect to database."] = ""; -$a->strings["Could not create table."] = ""; -$a->strings["Your Friendica site database has been installed."] = ""; +$a->strings["Could not connect to database."] = "Kunne ikke koble til database."; +$a->strings["Could not create table."] = "Kunne ikke lage tabell."; +$a->strings["Your Friendica site database has been installed."] = "Databasen til Friendica-nettstedet ditt har blitt installert."; $a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Du må kanskje importere filen \"database.sql\" manuelt ved hjelp av phpmyadmin eller mysql."; $a->strings["Please see the file \"INSTALL.txt\"."] = "Vennligst se filen \"INSTALL.txt\"."; -$a->strings["System check"] = ""; -$a->strings["Check again"] = ""; -$a->strings["Database connection"] = ""; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = ""; +$a->strings["System check"] = "Systemsjekk"; +$a->strings["Check again"] = "Sjekk på nytt"; +$a->strings["Database connection"] = "Databaseforbindelse"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "For å installere Friendica må vi vite hvordan man kan koble seg til din database."; $a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vennligst kontakt din tilbyder eller administrator hvis du har spørsmål til disse innstillingene."; $a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du oppgir nedenfor må finnes. Hvis ikke, vennligst opprett den før du fortsetter."; $a->strings["Database Server Name"] = "Databasetjenerens navn"; $a->strings["Database Login Name"] = "Database brukernavn"; $a->strings["Database Login Password"] = "Database passord"; $a->strings["Database Name"] = "Databasenavn"; -$a->strings["Site administrator email address"] = ""; -$a->strings["Your account email address must match this in order to use the web admin panel."] = ""; +$a->strings["Site administrator email address"] = "Nettstedsadministrator sin e-postadresse"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Din kontos e-postadresse må stemme med denne for å kunne bruke panelet for webadministrasjon."; $a->strings["Please select a default timezone for your website"] = "Vennligst velg en standard tidssone for ditt nettsted"; -$a->strings["Site settings"] = ""; +$a->strings["Site settings"] = "Innstillinger for nettstedet"; $a->strings["Could not find a command line version of PHP in the web server PATH."] = "Fant ikke en kommandolinjeversjon av PHP i webtjenerens PATH."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = ""; -$a->strings["PHP executable path"] = ""; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; -$a->strings["Command line PHP"] = ""; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Hvis du ikke har installert kommandolinjeversjonen av PHP på tjeneren, så vil du ikke kunne kjøre bakgrunnsspørring via cron. Se 'Aktivere tidsstyrte oppgaver'"; +$a->strings["PHP executable path"] = "PHP kjørefil sin sti"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Skriv inn hele stien til php kjørefilen. Du kan la denne stå blank for å fortsette installasjonen."; +$a->strings["Command line PHP"] = "Kommandolinje PHP"; $a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; $a->strings["Found PHP version: "] = ""; $a->strings["PHP cli binary"] = ""; $a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" aktivert."; $a->strings["This is required for message delivery to work."] = "Dette er nødvendig for at meldingslevering skal virke."; -$a->strings["PHP register_argc_argv"] = ""; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; $a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler"; $a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "For kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = ""; -$a->strings["libCurl PHP module"] = ""; -$a->strings["GD graphics PHP module"] = ""; -$a->strings["OpenSSL PHP module"] = ""; -$a->strings["mysqli PHP module"] = ""; -$a->strings["mb_string PHP module"] = ""; -$a->strings["Apache mod_rewrite module"] = ""; +$a->strings["Generate encryption keys"] = "Lag krypteringsnøkler"; +$a->strings["libCurl PHP module"] = "libCurl PHP modul"; +$a->strings["GD graphics PHP module"] = "GD graphics PHP modul"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP modul"; +$a->strings["mysqli PHP module"] = "mysqli PHP modul"; +$a->strings["mb_string PHP module"] = "mb_string PHP modul"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modul"; $a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Feil: Modulen mod-rewrite for Apache-webtjeneren er påkrevet, men er ikke installert."; $a->strings["Error: libCURL PHP module required but not installed."] = "Feil: libCURL PHP-modulen er påkrevet, men er ikke installert."; $a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Feil: GD graphics PHP-modulen med JPEG-støtte er påkrevet, men er ikke installert."; @@ -1526,19 +1526,19 @@ $a->strings["Error: mysqli PHP module required but not installed."] = "Feil: mys $a->strings["Error: mb_string PHP module required but not installed."] = "Feil: mb_string PHP-modulen er påkrevet men ikke installert."; $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."] = "Web-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette."; $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."] = "Dette skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje ikke kan skrive filer i din mappe - selv om du kan."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = ""; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = ""; -$a->strings[".htconfig.php is writable"] = ""; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = ""; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = ""; -$a->strings["view/smarty3 is writable"] = ""; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; -$a->strings["Url rewrite is working"] = ""; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "På slutten av denne prosedyren, så gir vi deg en tekst å lagre i en fil kalt .htconfig.php i din Friendica sin toppmappe."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Du kan alternativt hoppe over denne prosedyren og utføre en manuell installasjon. Vennligst se filen \"INSTALL.txt\" for instruksjoner."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php er skrivbar"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica bruker Smarty3 malmotor for å gjengi sine webvisninger. Smarty3 kompilerer maler til PHP for å gjøre gjengivelse raskere."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "For å lagre disse kompilerte malene må webtjenesten ha skrivetilgang til katalogen view/smarty3/ som er under Friendica sin toppnivåmappe."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Vennligst sjekk at brukeren din webtjeneste kjører som (for eksempel www-data) har skrivetilgang til denne mappen."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Merknad: som et sikkerhetstiltak, du bør gi webtjenesten skrivetilgang kun til view/smarty3/ - ikke til malfilene (.tpl) som den inneholder."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 er skrivbar"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL omskriving i .htaccess virker ikke. Sjekk konfigurasjonen til webtjenesten."; +$a->strings["Url rewrite is working"] = "URL omskriving virker"; $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."] = "Filen \".htconfig.php\" med databasekonfigurasjonen kunne ikke bli skrevet. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i roten på din web-tjener."; $a->strings["Errors encountered creating database tables."] = "Feil oppstod under opprettelsen av databasetabeller."; -$a->strings["

What next

"] = ""; +$a->strings["

What next

"] = "

Hva nå

"; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIG: Du må [manuelt] sette opp en planlagt oppgave for oppdatering."; $a->strings["Post successful."] = "Innlegg vellykket."; $a->strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID kom i retur."; @@ -1548,7 +1548,7 @@ $a->strings["Image size reduction [%s] failed."] = "Reduksjon av bildestørrelse $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-last-siden-på-nytt eller slett mellomlagret i nettleseren hvis det nye bildet ikke vises umiddelbart."; $a->strings["Unable to process image"] = "Mislyktes med å behandle bilde"; $a->strings["Upload File:"] = "Last opp fil:"; -$a->strings["Select a profile:"] = ""; +$a->strings["Select a profile:"] = "Velg en profil:"; $a->strings["Upload"] = "Last opp"; $a->strings["skip this step"] = "hopp over dette steget"; $a->strings["select a photo from your photo albums"] = "velg et bilde fra dine fotoalbum"; @@ -1594,22 +1594,22 @@ $a->strings["Set resolution for middle column"] = ""; $a->strings["Set color scheme"] = ""; $a->strings["Set twitter search term"] = ""; $a->strings["Set zoomfactor for Earth Layer"] = ""; -$a->strings["Set longitude (X) for Earth Layers"] = ""; -$a->strings["Set latitude (Y) for Earth Layers"] = ""; -$a->strings["Community Pages"] = ""; -$a->strings["Earth Layers"] = ""; -$a->strings["Community Profiles"] = ""; -$a->strings["Help or @NewHere ?"] = ""; -$a->strings["Connect Services"] = ""; -$a->strings["Find Friends"] = ""; +$a->strings["Set longitude (X) for Earth Layers"] = "Angi lengdegrad (X) for Earth Layers"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Angi breddegrad (Y) for Earth Layers"; +$a->strings["Community Pages"] = "Felleskapssider"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Community Profiles"] = "Fellesskapsprofiler"; +$a->strings["Help or @NewHere ?"] = "Hjelp eller @NewHere ?"; +$a->strings["Connect Services"] = "Forbindelse til tjenester"; +$a->strings["Find Friends"] = "Finn venner"; $a->strings["Last tweets"] = ""; -$a->strings["Last users"] = ""; -$a->strings["Last photos"] = ""; -$a->strings["Last likes"] = ""; -$a->strings["Your contacts"] = ""; -$a->strings["Local Directory"] = ""; -$a->strings["Set zoomfactor for Earth Layers"] = ""; -$a->strings["Last Tweets"] = ""; +$a->strings["Last users"] = "Siste brukere"; +$a->strings["Last photos"] = "Siste bilder"; +$a->strings["Last likes"] = "Siste liker"; +$a->strings["Your contacts"] = "Dine kontakter"; +$a->strings["Local Directory"] = "Lokal katalog"; +$a->strings["Set zoomfactor for Earth Layers"] = "Angi zoomfaktor for Earth Layers"; +$a->strings["Last Tweets"] = "Siste Tweets"; $a->strings["Show/hide boxes at right-hand column:"] = ""; $a->strings["Set colour scheme"] = ""; $a->strings["Alignment"] = ""; From 6d58a5888a8c5c2f33b1b24efe78f97aeea3323f Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 21 Jun 2013 08:56:16 +0200 Subject: [PATCH 10/12] NB_NO: update to the strings --- view/nb-no/messages.po | 552 ++++++++++++++++++++--------------------- view/nb-no/strings.php | 550 ++++++++++++++++++++-------------------- 2 files changed, 551 insertions(+), 551 deletions(-) diff --git a/view/nb-no/messages.po b/view/nb-no/messages.po index 42ad4376e8..d7d9e4f714 100644 --- a/view/nb-no/messages.po +++ b/view/nb-no/messages.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" "POT-Creation-Date: 2013-06-12 00:01-0700\n" -"PO-Revision-Date: 2013-06-20 05:11+0000\n" +"PO-Revision-Date: 2013-06-20 17:34+0000\n" "Last-Translator: Haakon Meland Eriksen \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/friendica/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "Status:" #: ../../include/profile_advanced.php:43 #, php-format msgid "for %1$d %2$s" -msgstr "" +msgstr "for %1$d %2$s" #: ../../include/profile_advanced.php:46 ../../mod/profiles.php:650 msgid "Sexual Preference:" @@ -75,7 +75,7 @@ msgstr "Hjemsted:" #: ../../include/profile_advanced.php:52 msgid "Tags:" -msgstr "" +msgstr "Merkelapper:" #: ../../include/profile_advanced.php:54 ../../mod/profiles.php:653 msgid "Political Views:" @@ -259,11 +259,11 @@ msgstr "Ikke tilgjengelig" #: ../../include/profile_selectors.php:42 msgid "Has crush" -msgstr "" +msgstr "Er forelsket" #: ../../include/profile_selectors.php:42 msgid "Infatuated" -msgstr "" +msgstr "Betatt" #: ../../include/profile_selectors.php:42 msgid "Dating" @@ -300,7 +300,7 @@ msgstr "Gift" #: ../../include/profile_selectors.php:42 msgid "Imaginarily married" -msgstr "" +msgstr "Fantasiekteskap" #: ../../include/profile_selectors.php:42 msgid "Partners" @@ -312,7 +312,7 @@ msgstr "Samboere" #: ../../include/profile_selectors.php:42 msgid "Common law" -msgstr "" +msgstr "Samboer" #: ../../include/profile_selectors.php:42 msgid "Happy" @@ -320,7 +320,7 @@ msgstr "Lykkelig" #: ../../include/profile_selectors.php:42 msgid "Not looking" -msgstr "" +msgstr "Ikke på utkikk" #: ../../include/profile_selectors.php:42 msgid "Swinger" @@ -344,7 +344,7 @@ msgstr "Skilt" #: ../../include/profile_selectors.php:42 msgid "Imaginarily divorced" -msgstr "" +msgstr "Fantasiskilt" #: ../../include/profile_selectors.php:42 msgid "Widowed" @@ -356,7 +356,7 @@ msgstr "Usikker" #: ../../include/profile_selectors.php:42 msgid "It's complicated" -msgstr "" +msgstr "Det er komplisert" #: ../../include/profile_selectors.php:42 msgid "Don't care" @@ -372,29 +372,29 @@ msgstr "sluttet å følge" #: ../../include/Contact.php:225 ../../include/conversation.php:878 msgid "Poke" -msgstr "" +msgstr "Dytt" #: ../../include/Contact.php:226 ../../include/conversation.php:872 msgid "View Status" -msgstr "" +msgstr "Vis status" #: ../../include/Contact.php:227 ../../include/conversation.php:873 msgid "View Profile" -msgstr "" +msgstr "Vis profil" #: ../../include/Contact.php:228 ../../include/conversation.php:874 msgid "View Photos" -msgstr "" +msgstr "Vis bilder" #: ../../include/Contact.php:229 ../../include/Contact.php:251 #: ../../include/conversation.php:875 msgid "Network Posts" -msgstr "" +msgstr "Nettverksinnlegg" #: ../../include/Contact.php:230 ../../include/Contact.php:251 #: ../../include/conversation.php:876 msgid "Edit Contact" -msgstr "" +msgstr "Endre kontakt" #: ../../include/Contact.php:231 ../../include/Contact.php:251 #: ../../include/conversation.php:877 @@ -411,15 +411,15 @@ msgstr "Bilde/fotografi" msgid "" "%s wrote the following post" -msgstr "" +msgstr "%s skrev det følgende innlegget" #: ../../include/bbcode.php:514 ../../include/bbcode.php:534 msgid "$1 wrote:" -msgstr "" +msgstr "$1 skrev:" #: ../../include/bbcode.php:559 ../../include/bbcode.php:560 msgid "Encrypted content" -msgstr "" +msgstr "Kryptert innhold" #: ../../include/acl_selectors.php:325 msgid "Visible to everybody" @@ -448,16 +448,16 @@ msgstr "Innlogging mislyktes." msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." -msgstr "" +msgstr "Vi støtte på et problem under innloggingen med OpenID-en du oppgav. Vennligst sjekk at du stavet ID-en riktig." #: ../../include/auth.php:128 msgid "The error message was:" -msgstr "" +msgstr "Feilmeldingen var:" #: ../../include/bb2diaspora.php:393 ../../include/event.php:11 #: ../../mod/localtime.php:12 msgid "l F d, Y \\@ g:i A" -msgstr "" +msgstr "l F d, Y \\@ g:i A" #: ../../include/bb2diaspora.php:399 ../../include/event.php:20 msgid "Starts:" @@ -478,7 +478,7 @@ msgstr "Underkjent profil-URL." #: ../../include/follow.php:32 msgid "Connect URL missing." -msgstr "" +msgstr "Forbindelses-URL mangler." #: ../../include/follow.php:59 msgid "" @@ -505,11 +505,11 @@ msgstr "Ingen nettleser-URL passet med denne adressen." msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." -msgstr "" +msgstr "Finner ikke samsvar mellom @-stilens identitetsadresse og en kjent protokoll eller e-postkontakt." #: ../../include/follow.php:87 msgid "Use mailto: in front of address to force email check." -msgstr "" +msgstr "Bruk mailto: foran adresser for å tvinge e-postsjekk." #: ../../include/follow.php:93 msgid "" @@ -585,7 +585,7 @@ msgstr "Kallenavnet er allerede registrert. Vennligst velg et annet." msgid "" "Nickname was once registered here and may not be re-used. Please choose " "another." -msgstr "" +msgstr "Kallenavnet ble registrert her en gang og kan ikke brukes om igjen. Vennligst velg et annet." #: ../../include/user.php:154 msgid "SERIOUS ERROR: Generation of security keys failed." @@ -597,7 +597,7 @@ msgstr "En feil oppstod under registreringen. Vennligst prøv igjen." #: ../../include/user.php:237 ../../include/text.php:1596 msgid "default" -msgstr "" +msgstr "standard" #: ../../include/user.php:247 msgid "An error occurred creating your default profile. Please try again." @@ -667,11 +667,11 @@ msgstr "Friendica" #: ../../include/contact_selectors.php:77 msgid "OStatus" -msgstr "" +msgstr "OStatus" #: ../../include/contact_selectors.php:78 msgid "RSS/Atom" -msgstr "" +msgstr "RSS/Atom" #: ../../include/contact_selectors.php:79 #: ../../include/contact_selectors.php:86 ../../mod/admin.php:766 @@ -691,31 +691,31 @@ msgstr "Facebook" #: ../../include/contact_selectors.php:82 msgid "Zot!" -msgstr "" +msgstr "Zot!" #: ../../include/contact_selectors.php:83 msgid "LinkedIn" -msgstr "" +msgstr "LinkedIn" #: ../../include/contact_selectors.php:84 msgid "XMPP/IM" -msgstr "" +msgstr "XMPP/IM" #: ../../include/contact_selectors.php:85 msgid "MySpace" -msgstr "" +msgstr "MySpace" #: ../../include/contact_selectors.php:87 msgid "Google+" -msgstr "" +msgstr "Google+" #: ../../include/contact_widgets.php:6 msgid "Add New Contact" -msgstr "" +msgstr "Legg til ny kontakt" #: ../../include/contact_widgets.php:7 msgid "Enter address or web location" -msgstr "" +msgstr "Skriv adresse eller web-plassering" #: ../../include/contact_widgets.php:8 msgid "Example: bob@example.com, http://example.com/barbara" @@ -735,11 +735,11 @@ msgstr[1] "%d invitasjoner tilgjengelig" #: ../../include/contact_widgets.php:29 msgid "Find People" -msgstr "" +msgstr "Finn personer" #: ../../include/contact_widgets.php:30 msgid "Enter name or interest" -msgstr "" +msgstr "Skriv navn eller interesse" #: ../../include/contact_widgets.php:31 msgid "Connect/Follow" @@ -747,7 +747,7 @@ msgstr "Koble/Følg" #: ../../include/contact_widgets.php:32 msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" +msgstr "Eksempler: Robert Morgenstein, fisking" #: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613 #: ../../mod/directory.php:61 @@ -765,7 +765,7 @@ msgstr "Liknende interesser" #: ../../include/contact_widgets.php:36 msgid "Random Profile" -msgstr "" +msgstr "Tilfeldig profil" #: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521 msgid "Invite Friends" @@ -773,23 +773,23 @@ msgstr "Inviterer venner" #: ../../include/contact_widgets.php:70 msgid "Networks" -msgstr "" +msgstr "Nettverk" #: ../../include/contact_widgets.php:73 msgid "All Networks" -msgstr "" +msgstr "Alle nettverk" #: ../../include/contact_widgets.php:103 ../../include/features.php:59 msgid "Saved Folders" -msgstr "" +msgstr "Lagrede mapper" #: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 msgid "Everything" -msgstr "" +msgstr "Alt" #: ../../include/contact_widgets.php:135 msgid "Categories" -msgstr "" +msgstr "Kategorier" #: ../../include/contact_widgets.php:199 ../../mod/contacts.php:343 #, php-format @@ -805,7 +805,7 @@ msgstr "vis mer" #: ../../include/Scrape.php:583 msgid " on Last.fm" -msgstr "" +msgstr "på Last.fm" #: ../../include/network.php:877 msgid "view full size" @@ -882,29 +882,29 @@ msgstr "sekunder" #: ../../include/datetime.php:300 #, php-format msgid "%1$d %2$s ago" -msgstr "" +msgstr "%1$d %2$s siden" #: ../../include/datetime.php:472 ../../include/items.php:1813 #, php-format msgid "%s's birthday" -msgstr "" +msgstr "%s sin bursdag" #: ../../include/datetime.php:473 ../../include/items.php:1814 #, php-format msgid "Happy Birthday %s" -msgstr "" +msgstr "Gratulerer med dagen, %s" #: ../../include/plugin.php:439 ../../include/plugin.php:441 msgid "Click here to upgrade." -msgstr "" +msgstr "Klikk her for oppgradere." #: ../../include/plugin.php:447 msgid "This action exceeds the limits set by your subscription plan." -msgstr "" +msgstr "Denne handlingen overstiger grensene satt i din abonnementsplan." #: ../../include/plugin.php:452 msgid "This action is not available under your subscription plan." -msgstr "" +msgstr "Denne handlingen er ikke tilgjengelig i henhold til din abonnementsplan." #: ../../include/delivery.php:457 ../../include/notifier.php:775 msgid "(no subject)" @@ -949,7 +949,7 @@ msgstr "%1$s liker %2$s's %3$s" #: ../../include/diaspora.php:2262 msgid "Attachments:" -msgstr "" +msgstr "Vedlegg:" #: ../../include/items.php:3488 ../../mod/dfrn_request.php:716 msgid "[Name Withheld]" @@ -957,7 +957,7 @@ msgstr "[Navnet tilbakeholdt]" #: ../../include/items.php:3495 msgid "A new person is sharing with you at " -msgstr "" +msgstr "En ny person deler med deg hos" #: ../../include/items.php:3495 msgid "You have a new follower at " @@ -971,7 +971,7 @@ msgstr "Enheten ble ikke funnet." #: ../../include/items.php:4018 msgid "Do you really want to delete this item?" -msgstr "" +msgstr "Ønsker du virkelig å slette dette elementet?" #: ../../include/items.php:4020 ../../mod/profiles.php:610 #: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246 @@ -1023,67 +1023,67 @@ msgstr "Ingen tilgang." #: ../../include/items.php:4213 msgid "Archives" -msgstr "" +msgstr "Arkiverer" #: ../../include/features.php:23 msgid "General Features" -msgstr "" +msgstr "Generelle egenskaper" #: ../../include/features.php:25 msgid "Multiple Profiles" -msgstr "" +msgstr "Flere profiler" #: ../../include/features.php:25 msgid "Ability to create multiple profiles" -msgstr "" +msgstr "Mulighet for å lage flere profiler" #: ../../include/features.php:30 msgid "Post Composition Features" -msgstr "" +msgstr "Funksjoner for å skrive innlegg" #: ../../include/features.php:31 msgid "Richtext Editor" -msgstr "" +msgstr "Rik tekstredigering" #: ../../include/features.php:31 msgid "Enable richtext editor" -msgstr "" +msgstr "Skru på rik tekstredigering" #: ../../include/features.php:32 msgid "Post Preview" -msgstr "" +msgstr "Forhåndsvisning av innlegg" #: ../../include/features.php:32 msgid "Allow previewing posts and comments before publishing them" -msgstr "" +msgstr "Tillat forhåndsvisning av innlegg og kommentarer før publisering" #: ../../include/features.php:37 msgid "Network Sidebar Widgets" -msgstr "" +msgstr "Småprogrammer i sidestolpen for Nettverk" #: ../../include/features.php:38 msgid "Search by Date" -msgstr "" +msgstr "Søk etter dato" #: ../../include/features.php:38 msgid "Ability to select posts by date ranges" -msgstr "" +msgstr "Mulighet for å velge innlegg etter datoområder" #: ../../include/features.php:39 msgid "Group Filter" -msgstr "" +msgstr "Gruppefilter" #: ../../include/features.php:39 msgid "Enable widget to display Network posts only from selected group" -msgstr "" +msgstr "Skru på småprogrammet som viser Nettverksinnlegg bare fra den valgte gruppen" #: ../../include/features.php:40 msgid "Network Filter" -msgstr "" +msgstr "Nettverksfilter" #: ../../include/features.php:40 msgid "Enable widget to display Network posts only from selected network" -msgstr "" +msgstr "Skru på småprogrammet for å vise Nettverksinnlegg bare fra valgt nettverk" #: ../../include/features.php:41 ../../mod/search.php:30 #: ../../mod/network.php:233 @@ -1092,91 +1092,91 @@ msgstr "Lagrede søk" #: ../../include/features.php:41 msgid "Save search terms for re-use" -msgstr "" +msgstr "Lagre søkeuttrykk for gjenbruk" #: ../../include/features.php:46 msgid "Network Tabs" -msgstr "" +msgstr "Nettverksfaner" #: ../../include/features.php:47 msgid "Network Personal Tab" -msgstr "" +msgstr "Nettverk personlig fane" #: ../../include/features.php:47 msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" +msgstr "Skru på fane for å vise bare Nettverksinnlegg som du har vært med i" #: ../../include/features.php:48 msgid "Network New Tab" -msgstr "" +msgstr "Nettverk Ny fane" #: ../../include/features.php:48 msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "" +msgstr "Skru på fane for å vise bare nye Nettverksinnlegg (fra de siste 12 timer)" #: ../../include/features.php:49 msgid "Network Shared Links Tab" -msgstr "" +msgstr "Nettverk Delte lenker fane" #: ../../include/features.php:49 msgid "Enable tab to display only Network posts with links in them" -msgstr "" +msgstr "Skru på fane for å vise bare Nettverksinnlegg med lenker i dem" #: ../../include/features.php:54 msgid "Post/Comment Tools" -msgstr "" +msgstr "Innleggs-/kommentarverktøy" #: ../../include/features.php:55 msgid "Multiple Deletion" -msgstr "" +msgstr "Slett flere" #: ../../include/features.php:55 msgid "Select and delete multiple posts/comments at once" -msgstr "" +msgstr "Velg og slett flere innlegg/kommentarer på en gang" #: ../../include/features.php:56 msgid "Edit Sent Posts" -msgstr "" +msgstr "Endre sendte innlegg" #: ../../include/features.php:56 msgid "Edit and correct posts and comments after sending" -msgstr "" +msgstr "Endre og korriger innlegg og kommentarer etter sending" #: ../../include/features.php:57 msgid "Tagging" -msgstr "" +msgstr "Merking" #: ../../include/features.php:57 msgid "Ability to tag existing posts" -msgstr "" +msgstr "Mulighet til å merke eksisterende innlegg" #: ../../include/features.php:58 msgid "Post Categories" -msgstr "" +msgstr "Innleggskategorier" #: ../../include/features.php:58 msgid "Add categories to your posts" -msgstr "" +msgstr "Legg til kategorier til dine innlegg" #: ../../include/features.php:59 msgid "Ability to file posts under folders" -msgstr "" +msgstr "Mulighet til å sortere innlegg i mapper" #: ../../include/features.php:60 msgid "Dislike Posts" -msgstr "" +msgstr "Liker ikke innlegg" #: ../../include/features.php:60 msgid "Ability to dislike posts/comments" -msgstr "" +msgstr "Mulighet til å ikke like innlegg/kommentarer" #: ../../include/features.php:61 msgid "Star Posts" -msgstr "" +msgstr "Stjerneinnlegg" #: ../../include/features.php:61 msgid "Ability to mark special posts with a star indicator" -msgstr "" +msgstr "Mulighet til å merke spesielle innlegg med en stjerneindikator" #: ../../include/dba.php:44 #, php-format @@ -1201,11 +1201,11 @@ msgstr "neste" #: ../../include/text.php:352 msgid "newer" -msgstr "" +msgstr "nyere" #: ../../include/text.php:356 msgid "older" -msgstr "" +msgstr "eldre" #: ../../include/text.php:807 msgid "No contacts" @@ -1233,131 +1233,131 @@ msgstr "Lagre" #: ../../include/text.php:957 msgid "poke" -msgstr "" +msgstr "dytt" #: ../../include/text.php:957 ../../include/conversation.php:211 msgid "poked" -msgstr "" +msgstr "dyttet" #: ../../include/text.php:958 msgid "ping" -msgstr "" +msgstr "ping" #: ../../include/text.php:958 msgid "pinged" -msgstr "" +msgstr "pinget" #: ../../include/text.php:959 msgid "prod" -msgstr "" +msgstr "dult" #: ../../include/text.php:959 msgid "prodded" -msgstr "" +msgstr "dultet" #: ../../include/text.php:960 msgid "slap" -msgstr "" +msgstr "klaske" #: ../../include/text.php:960 msgid "slapped" -msgstr "" +msgstr "klasket" #: ../../include/text.php:961 msgid "finger" -msgstr "" +msgstr "fingre" #: ../../include/text.php:961 msgid "fingered" -msgstr "" +msgstr "fingret" #: ../../include/text.php:962 msgid "rebuff" -msgstr "" +msgstr "avslå" #: ../../include/text.php:962 msgid "rebuffed" -msgstr "" +msgstr "avslo" #: ../../include/text.php:976 msgid "happy" -msgstr "" +msgstr "glad" #: ../../include/text.php:977 msgid "sad" -msgstr "" +msgstr "trist" #: ../../include/text.php:978 msgid "mellow" -msgstr "" +msgstr "dempet" #: ../../include/text.php:979 msgid "tired" -msgstr "" +msgstr "trøtt" #: ../../include/text.php:980 msgid "perky" -msgstr "" +msgstr "oppkvikket" #: ../../include/text.php:981 msgid "angry" -msgstr "" +msgstr "sint" #: ../../include/text.php:982 msgid "stupified" -msgstr "" +msgstr "tanketom" #: ../../include/text.php:983 msgid "puzzled" -msgstr "" +msgstr "forundret" #: ../../include/text.php:984 msgid "interested" -msgstr "" +msgstr "interessert" #: ../../include/text.php:985 msgid "bitter" -msgstr "" +msgstr "bitter" #: ../../include/text.php:986 msgid "cheerful" -msgstr "" +msgstr "munter" #: ../../include/text.php:987 msgid "alive" -msgstr "" +msgstr "livlig" #: ../../include/text.php:988 msgid "annoyed" -msgstr "" +msgstr "irritert" #: ../../include/text.php:989 msgid "anxious" -msgstr "" +msgstr "nervøs" #: ../../include/text.php:990 msgid "cranky" -msgstr "" +msgstr "grinete" #: ../../include/text.php:991 msgid "disturbed" -msgstr "" +msgstr "forstyrret" #: ../../include/text.php:992 msgid "frustrated" -msgstr "" +msgstr "frustrert" #: ../../include/text.php:993 msgid "motivated" -msgstr "" +msgstr "motivert" #: ../../include/text.php:994 msgid "relaxed" -msgstr "" +msgstr "avslappet" #: ../../include/text.php:995 msgid "surprised" -msgstr "" +msgstr "overrasket" #: ../../include/text.php:1163 msgid "Monday" @@ -1437,7 +1437,7 @@ msgstr "desember" #: ../../include/text.php:1323 ../../mod/videos.php:301 msgid "View Video" -msgstr "" +msgstr "Vis video" #: ../../include/text.php:1355 msgid "bytes" @@ -1445,7 +1445,7 @@ msgstr "bytes" #: ../../include/text.php:1379 ../../include/text.php:1391 msgid "Click to open/close" -msgstr "" +msgstr "Klikk for å åpne/lukke" #: ../../include/text.php:1553 ../../mod/events.php:335 msgid "link to source" @@ -1462,33 +1462,33 @@ msgstr "hendelse" #: ../../include/text.php:1864 msgid "activity" -msgstr "" +msgstr "aktivitet" #: ../../include/text.php:1866 ../../mod/content.php:628 #: ../../object/Item.php:364 ../../object/Item.php:377 msgid "comment" msgid_plural "comments" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "kommentar" +msgstr[1] "kommentarer" #: ../../include/text.php:1867 msgid "post" -msgstr "" +msgstr "innlegg" #: ../../include/text.php:2022 msgid "Item filed" -msgstr "" +msgstr "Element arkivert" #: ../../include/group.php:25 msgid "" "A deleted group with this name was revived. Existing item permissions " "may apply to this group and any future members. If this is " "not what you intended, please create another group with a different name." -msgstr "" +msgstr "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende elementtillatelser kan gjelde for denne gruppen og fremtidige medlemmer. Hvis det ikke var dette du ønsket, vær snill å opprette en annen gruppe med et annet navn." #: ../../include/group.php:207 msgid "Default privacy group for new contacts" -msgstr "" +msgstr "Standard personverngruppe for nye kontakter" #: ../../include/group.php:226 msgid "Everybody" @@ -1496,7 +1496,7 @@ msgstr "Alle" #: ../../include/group.php:249 msgid "edit" -msgstr "" +msgstr "endre" #: ../../include/group.php:270 ../../mod/newmember.php:66 msgid "Groups" @@ -1504,7 +1504,7 @@ msgstr "Grupper" #: ../../include/group.php:271 msgid "Edit group" -msgstr "" +msgstr "Endre gruppe" #: ../../include/group.php:272 msgid "Create a new group" @@ -1512,7 +1512,7 @@ msgstr "Lag en ny gruppe" #: ../../include/group.php:273 msgid "Contacts not in any group" -msgstr "" +msgstr "Kontakter som ikke er i noen gruppe" #: ../../include/group.php:275 ../../mod/network.php:234 msgid "add" @@ -1526,7 +1526,7 @@ msgstr "%1$s liker ikke %2$s's %3$s" #: ../../include/conversation.php:207 #, php-format msgid "%1$s poked %2$s" -msgstr "" +msgstr "%1$s dyttet %2$s" #: ../../include/conversation.php:227 ../../mod/mood.php:62 #, php-format @@ -1540,12 +1540,12 @@ msgstr "%1$s merket %2$s sitt %3$s med %4$s" #: ../../include/conversation.php:291 msgid "post/item" -msgstr "" +msgstr "innlegg/element" #: ../../include/conversation.php:292 #, php-format msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "" +msgstr "%1$s merket %2$s's %3$s som en favoritt" #: ../../include/conversation.php:612 ../../mod/content.php:461 #: ../../mod/content.php:763 ../../object/Item.php:126 @@ -1594,7 +1594,7 @@ msgstr "Vennligst vent" #: ../../include/conversation.php:768 msgid "remove" -msgstr "" +msgstr "slett" #: ../../include/conversation.php:772 msgid "Delete Selected Items" @@ -1602,7 +1602,7 @@ msgstr "Slette valgte elementer" #: ../../include/conversation.php:871 msgid "Follow Thread" -msgstr "" +msgstr "Følg tråd" #: ../../include/conversation.php:940 #, php-format @@ -1617,12 +1617,12 @@ msgstr "%s liker ikke dette." #: ../../include/conversation.php:945 #, php-format msgid "%2$d people like this" -msgstr "" +msgstr "%2$d personer liker dette" #: ../../include/conversation.php:948 #, php-format msgid "%2$d people don't like this" -msgstr "" +msgstr "%2$d personer liker ikke dette" #: ../../include/conversation.php:962 msgid "and" @@ -1656,15 +1656,15 @@ msgstr "Vennligst skriv inn en lenke URL:" #: ../../include/conversation.php:999 ../../include/conversation.php:1017 msgid "Please enter a video link/URL:" -msgstr "" +msgstr "Vennligst skriv inn en videolenke/-URL:" #: ../../include/conversation.php:1000 ../../include/conversation.php:1018 msgid "Please enter an audio link/URL:" -msgstr "" +msgstr "Vennligst skriv inn en lydlenke/-URL:" #: ../../include/conversation.php:1001 ../../include/conversation.php:1019 msgid "Tag term:" -msgstr "" +msgstr "Merkelapp begrep:" #: ../../include/conversation.php:1002 ../../include/conversation.php:1020 #: ../../mod/filer.php:30 @@ -1677,7 +1677,7 @@ msgstr "Hvor er du akkurat nå?" #: ../../include/conversation.php:1004 msgid "Delete item(s)?" -msgstr "" +msgstr "Slett element(er)?" #: ../../include/conversation.php:1046 msgid "Post to Email" @@ -1761,7 +1761,7 @@ msgstr "Tillatelser" #: ../../include/conversation.php:1102 msgid "permissions" -msgstr "" +msgstr "tillatelser" #: ../../include/conversation.php:1110 ../../mod/editpost.php:133 msgid "CC: email addresses" @@ -1784,201 +1784,201 @@ msgstr "forhåndsvisning" #: ../../include/conversation.php:1126 msgid "Post to Groups" -msgstr "" +msgstr "Innlegg til grupper" #: ../../include/conversation.php:1127 msgid "Post to Contacts" -msgstr "" +msgstr "Innlegg til kontakter" #: ../../include/conversation.php:1128 msgid "Private post" -msgstr "" +msgstr "Privat innlegg" #: ../../include/enotify.php:16 msgid "Friendica Notification" -msgstr "" +msgstr "Friendica varsel" #: ../../include/enotify.php:19 msgid "Thank You," -msgstr "" +msgstr "Mange takk," #: ../../include/enotify.php:21 #, php-format msgid "%s Administrator" -msgstr "" +msgstr "%s administrator" #: ../../include/enotify.php:40 #, php-format msgid "%s " -msgstr "" +msgstr "%s " #: ../../include/enotify.php:44 #, php-format msgid "[Friendica:Notify] New mail received at %s" -msgstr "" +msgstr "[Friendica:Notify] Ny melding mottatt hos %s" #: ../../include/enotify.php:46 #, php-format msgid "%1$s sent you a new private message at %2$s." -msgstr "" +msgstr "%1$s sendte deg en ny privat melding hos %2$s." #: ../../include/enotify.php:47 #, php-format msgid "%1$s sent you %2$s." -msgstr "" +msgstr "%1$s sendte deg %2$s." #: ../../include/enotify.php:47 msgid "a private message" -msgstr "" +msgstr "en privat melding" #: ../../include/enotify.php:48 #, php-format msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" +msgstr "Vennligst besøk %s for å se og/eller svare på dine private meldinger." #: ../../include/enotify.php:90 #, php-format msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "" +msgstr "%1$s kommenterte på [url=%2$s]a %3$s[/url]" #: ../../include/enotify.php:97 #, php-format msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "" +msgstr "%1$s kommenterte på [url=%2$s]%3$s sin %4$s[/url]" #: ../../include/enotify.php:105 #, php-format msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "" +msgstr "%1$s kommenterte på [url=%2$s] din %3$s[/url]" #: ../../include/enotify.php:115 #, php-format msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" +msgstr "[Friendica:Notify] Kommentar til samtale #%1$d av %2$s" #: ../../include/enotify.php:116 #, php-format msgid "%s commented on an item/conversation you have been following." -msgstr "" +msgstr "%s kommenterte på et element/en samtale du har fulgt." #: ../../include/enotify.php:119 ../../include/enotify.php:134 #: ../../include/enotify.php:147 ../../include/enotify.php:165 #: ../../include/enotify.php:178 #, php-format msgid "Please visit %s to view and/or reply to the conversation." -msgstr "" +msgstr "Vennligst besøk %s for å se og/eller svare på samtalen." #: ../../include/enotify.php:126 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "" +msgstr "[Friendica:Notify] %s skrev et innlegg på veggen til din profil" #: ../../include/enotify.php:128 #, php-format msgid "%1$s posted to your profile wall at %2$s" -msgstr "" +msgstr "%1$s skrev et innlegg på veggen til din profil %2$s" #: ../../include/enotify.php:130 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "" +msgstr "%1$s skrev et innlegg til [url=%2$s]din vegg[/url]" #: ../../include/enotify.php:141 #, php-format msgid "[Friendica:Notify] %s tagged you" -msgstr "" +msgstr "[Friendica:Notify] %s merket deg" #: ../../include/enotify.php:142 #, php-format msgid "%1$s tagged you at %2$s" -msgstr "" +msgstr "%1$s merket deg %2$s" #: ../../include/enotify.php:143 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "" +msgstr "%1$s [url=%2$s]merket deg[/url]." #: ../../include/enotify.php:155 #, php-format msgid "[Friendica:Notify] %1$s poked you" -msgstr "" +msgstr "[Friendica:Notify] %1$s dyttet deg" #: ../../include/enotify.php:156 #, php-format msgid "%1$s poked you at %2$s" -msgstr "" +msgstr "%1$s dyttet deg %2$s" #: ../../include/enotify.php:157 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "" +msgstr "%1$s [url=%2$s]dyttet deg[/url]." #: ../../include/enotify.php:172 #, php-format msgid "[Friendica:Notify] %s tagged your post" -msgstr "" +msgstr "[Friendica:Notify] %s merket ditt innlegg" #: ../../include/enotify.php:173 #, php-format msgid "%1$s tagged your post at %2$s" -msgstr "" +msgstr "%1$s merket ditt innlegg %2$s" #: ../../include/enotify.php:174 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "" +msgstr "%1$s merket [url=%2$s]ditt innlegg[/url]" #: ../../include/enotify.php:185 msgid "[Friendica:Notify] Introduction received" -msgstr "" +msgstr "[Friendica:Notify] Introduksjon mottatt" #: ../../include/enotify.php:186 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "" +msgstr "Du mottok en introduksjon fra '%1$s' %2$s" #: ../../include/enotify.php:187 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "" +msgstr "Du mottok [url=%1$s]en introduksjon[/url] fra %2$s." #: ../../include/enotify.php:190 ../../include/enotify.php:208 #, php-format msgid "You may visit their profile at %s" -msgstr "" +msgstr "Du kan besøke profilen deres på %s" #: ../../include/enotify.php:192 #, php-format msgid "Please visit %s to approve or reject the introduction." -msgstr "" +msgstr "Vennligst besøk %s for å godkjenne eller avslå introduksjonen." #: ../../include/enotify.php:199 msgid "[Friendica:Notify] Friend suggestion received" -msgstr "" +msgstr "[Friendica:Notify] Venneforslag mottatt" #: ../../include/enotify.php:200 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "" +msgstr "Du mottok et venneforslag fra '%1$s' %2$s" #: ../../include/enotify.php:201 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "" +msgstr "Du mottok [url=%1$s]et venneforslag[/url] om %2$s fra %3$s." #: ../../include/enotify.php:206 msgid "Name:" -msgstr "" +msgstr "Navn:" #: ../../include/enotify.php:207 msgid "Photo:" -msgstr "" +msgstr "Bilde:" #: ../../include/enotify.php:210 #, php-format msgid "Please visit %s to approve or reject the suggestion." -msgstr "" +msgstr "Vennligst besøk %s for å godkjenne eller avslå forslaget." #: ../../include/message.php:15 ../../include/message.php:172 msgid "[no subject]" @@ -2117,11 +2117,11 @@ msgstr "Samtaler fra dine venner" #: ../../include/nav.php:141 msgid "Network Reset" -msgstr "" +msgstr "Nettverk tilbakestilling" #: ../../include/nav.php:141 msgid "Load Network page with no filters" -msgstr "" +msgstr "Hent Nettverk-siden uten filter" #: ../../include/nav.php:149 ../../mod/notifications.php:98 msgid "Introductions" @@ -2129,7 +2129,7 @@ msgstr "Introduksjoner" #: ../../include/nav.php:149 msgid "Friend Requests" -msgstr "" +msgstr "Venneforespørsler" #: ../../include/nav.php:150 ../../mod/notifications.php:220 msgid "Notifications" @@ -2137,11 +2137,11 @@ msgstr "Varslinger" #: ../../include/nav.php:151 msgid "See all notifications" -msgstr "" +msgstr "Se alle varslinger" #: ../../include/nav.php:152 msgid "Mark all system notifications seen" -msgstr "" +msgstr "Merk alle systemvarsler som sett" #: ../../include/nav.php:156 ../../mod/message.php:182 #: ../../mod/notifications.php:103 @@ -2174,7 +2174,7 @@ msgstr "Behandle andre sider" #: ../../include/nav.php:165 msgid "Delegations" -msgstr "" +msgstr "Delegasjoner" #: ../../include/nav.php:165 ../../mod/delegate.php:121 msgid "Delegate Page Management" @@ -2197,7 +2197,7 @@ msgstr "Profiler" #: ../../include/nav.php:169 msgid "Manage/Edit Profiles" -msgstr "" +msgstr "Behandle/endre profiler" #: ../../include/nav.php:171 ../../mod/contacts.php:607 #: ../../view/theme/diabook/theme.php:89 @@ -2218,15 +2218,15 @@ msgstr "Nettstedsoppsett og konfigurasjon" #: ../../include/nav.php:182 msgid "Navigation" -msgstr "" +msgstr "Navigasjon" #: ../../include/nav.php:182 msgid "Site map" -msgstr "" +msgstr "Nettstedskart" #: ../../include/oembed.php:138 msgid "Embedded content" -msgstr "" +msgstr "Innebygd innhold" #: ../../include/oembed.php:147 msgid "Embedding disabled" @@ -2234,39 +2234,39 @@ msgstr "Innebygging avskrudd" #: ../../include/uimport.php:94 msgid "Error decoding account file" -msgstr "" +msgstr "Feil ved dekoding av kontofil" #: ../../include/uimport.php:100 msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" +msgstr "Feil! Ingen versjonsdata i filen! Dette er ikke en Friendica kontofil?" #: ../../include/uimport.php:116 msgid "Error! Cannot check nickname" -msgstr "" +msgstr "Feil! Kan ikke sjekke kallenavn" #: ../../include/uimport.php:120 #, php-format msgid "User '%s' already exists on this server!" -msgstr "" +msgstr "Brukeren '%s' finnes allerede på denne tjeneren!" #: ../../include/uimport.php:139 msgid "User creation error" -msgstr "" +msgstr "Feil ved oppretting av bruker" #: ../../include/uimport.php:157 msgid "User profile creation error" -msgstr "" +msgstr "Feil ved opprettelsen av brukerprofil" #: ../../include/uimport.php:202 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d kontakt ikke importert" +msgstr[1] "%d kontakter ikke importert" #: ../../include/uimport.php:272 msgid "Done. You can now login with your username and password" -msgstr "" +msgstr "Ferdig. Du kan nå logge inn med ditt brukernavn og passord" #: ../../include/security.php:22 msgid "Welcome " @@ -2284,7 +2284,7 @@ msgstr "Velkommen tilbake" msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." -msgstr "" +msgstr "Skjemaets sikkerhetsnøkkel var ikke riktig. Dette skjedde antakelig fordi skjemaet har stått åpent for lenge (>3 timer) før innsending." #: ../../mod/profiles.php:18 ../../mod/profiles.php:133 #: ../../mod/profiles.php:160 ../../mod/profiles.php:583 @@ -3069,17 +3069,17 @@ msgstr "Ikke inkluder innholdet i en melding/kommentar/privat melding/osv. i epo #: ../../mod/admin.php:525 msgid "Disallow public access to addons listed in the apps menu." -msgstr "" +msgstr "Ikke tillat offentlig tilgang til tillegg som listes opp i app-menyen." #: ../../mod/admin.php:525 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." -msgstr "" +msgstr "Kryss i denne boksen vil begrense tillegg opplistet i app-menyen til bare medlemmer." #: ../../mod/admin.php:526 msgid "Don't embed private images in posts" -msgstr "" +msgstr "Ikke innebygg private bilder i innlegg" #: ../../mod/admin.php:526 msgid "" @@ -3087,7 +3087,7 @@ msgid "" "of the image. This means that contacts who receive posts containing private " "photos will have to authenticate and load each image, which may take a " "while." -msgstr "" +msgstr "Ikke bytt ut lokalt lagrede private bilder i innlegg med innebygd kopi av bildet. Dette betyr at kontakter som mottar innlegg med private bilder må autentisere og laste hvert bilde, noe som kan ta en stund." #: ../../mod/admin.php:528 msgid "Block multiple registrations" @@ -3145,13 +3145,13 @@ msgstr "Tilby innebygget OStatus-kompatibilitet (identi.ca, status.net, etc.). A #: ../../mod/admin.php:534 msgid "OStatus conversation completion interval" -msgstr "" +msgstr "OStatus intervall for samtalefullførelse" #: ../../mod/admin.php:534 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." -msgstr "" +msgstr "Hvor ofte skal spørrefunksjonen sjekke etter nye oppføringer i OStatus-samtaler? Dette kan være en svært ressurskrevende oppgave." #: ../../mod/admin.php:535 msgid "Enable Diaspora support" @@ -3313,8 +3313,8 @@ msgstr "Forsøk å utføre dette oppdateringspunktet automatisk" #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s bruker blokkert/ikke blokkert" +msgstr[1] "%s brukere blokkert/ikke blokkert" #: ../../mod/admin.php:641 #, php-format @@ -3470,7 +3470,7 @@ msgstr "Tøm" #: ../../mod/admin.php:1196 msgid "Enable Debugging" -msgstr "" +msgstr "Aktiver feilsøking" #: ../../mod/admin.php:1197 msgid "Log file" @@ -3754,7 +3754,7 @@ msgstr "Ingen kontakter felles." #: ../../mod/apps.php:7 msgid "You must be logged in to use addons. " -msgstr "" +msgstr "Du må være innlogget for å bruke tillegg." #: ../../mod/apps.php:11 msgid "Applications" @@ -4105,7 +4105,7 @@ msgstr "Tomme passord er ikke lov. Passord uendret." #: ../../mod/settings.php:325 msgid "Wrong password." -msgstr "" +msgstr "Feil passord." #: ../../mod/settings.php:336 msgid "Password changed." @@ -4125,7 +4125,7 @@ msgstr "Navnet er for kort." #: ../../mod/settings.php:414 msgid "Wrong Password" -msgstr "" +msgstr "Feil passord" #: ../../mod/settings.php:419 msgid " Not valid email." @@ -4330,7 +4330,7 @@ msgstr "Maksimum 100 elementer" #: ../../mod/settings.php:845 msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" +msgstr "Antall elementer å vise per side ved visning på mobil enhet:" #: ../../mod/settings.php:846 msgid "Don't show emoticons" @@ -4487,15 +4487,15 @@ msgstr "La passordfeltene stå tomme hvis du ikke skal bytte" #: ../../mod/settings.php:1073 msgid "Current Password:" -msgstr "" +msgstr "Gjeldende passord:" #: ../../mod/settings.php:1073 ../../mod/settings.php:1074 msgid "Your current password to confirm the changes" -msgstr "" +msgstr "Ditt gjeldende passord for å bekrefte endringene" #: ../../mod/settings.php:1074 msgid "Password:" -msgstr "" +msgstr "Passord:" #: ../../mod/settings.php:1078 msgid "Basic Settings" @@ -5054,7 +5054,7 @@ msgstr "Ingen treff" #: ../../mod/videos.php:125 msgid "No videos selected" -msgstr "" +msgstr "Ingen videoer er valgt" #: ../../mod/videos.php:226 ../../mod/photos.php:1025 msgid "Access to this item is restricted." @@ -5066,11 +5066,11 @@ msgstr "Vis album" #: ../../mod/videos.php:317 msgid "Recent Videos" -msgstr "" +msgstr "Nye videoer" #: ../../mod/videos.php:319 msgid "Upload New Videos" -msgstr "" +msgstr "Last opp nye videoer" #: ../../mod/tagrm.php:41 msgid "Tag removed" @@ -5098,7 +5098,7 @@ msgstr "Hendelsens tittel og starttidspunkt er påkrevet." #: ../../mod/events.php:291 msgid "l, F j" -msgstr "" +msgstr "l, F j" #: ../../mod/events.php:313 msgid "Edit event" @@ -5702,8 +5702,8 @@ msgstr "D, d M Y - g:i A" #, php-format msgid "%d message" msgid_plural "%d messages" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d melding" +msgstr[1] "%d meldinger" #: ../../mod/message.php:450 msgid "Message not available." @@ -6358,7 +6358,7 @@ msgstr "Tips til nye medlemmer" #: ../../mod/install.php:117 msgid "Friendica Communications Server - Setup" -msgstr "" +msgstr "Friendica kommunikasjonstjeneste - oppsett" #: ../../mod/install.php:123 msgid "Could not connect to database." @@ -6474,15 +6474,15 @@ msgstr "Kommandolinje PHP" #: ../../mod/install.php:340 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "" +msgstr "PHP kjørefilen er ikke php cli binærfil (kan være cgi-fgci versjon)" #: ../../mod/install.php:341 msgid "Found PHP version: " -msgstr "" +msgstr "Fant PHP-versjon:" #: ../../mod/install.php:343 msgid "PHP cli binary" -msgstr "" +msgstr "PHP cli binærfil" #: ../../mod/install.php:354 msgid "" @@ -6728,8 +6728,8 @@ msgstr "Ikke tilgjengelig." #, php-format msgid "%d comment" msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d kommentar" +msgstr[1] "%d kommentarer" #: ../../mod/content.php:707 ../../object/Item.php:232 msgid "like" @@ -6817,7 +6817,7 @@ msgstr "via vegg-til-vegg" #: ../../object/Item.php:92 msgid "This entry was edited" -msgstr "" +msgstr "Denne oppføringen ble endret" #: ../../object/Item.php:309 msgid "via" @@ -6827,48 +6827,48 @@ msgstr "via" #: ../../view/theme/diabook/config.php:154 #: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 msgid "Theme settings" -msgstr "" +msgstr "Temainnstillinger" #: ../../view/theme/cleanzero/config.php:83 msgid "Set resize level for images in posts and comments (width and height)" -msgstr "" +msgstr "Angi størrelsesendringen for bilder i innlegg og kommentarer (bredde og høyde)" #: ../../view/theme/cleanzero/config.php:84 #: ../../view/theme/diabook/config.php:155 #: ../../view/theme/dispy/config.php:73 msgid "Set font-size for posts and comments" -msgstr "" +msgstr "Angi skriftstørrelse for innlegg og kommentarer" #: ../../view/theme/cleanzero/config.php:85 msgid "Set theme width" -msgstr "" +msgstr "Angi temabredde" #: ../../view/theme/cleanzero/config.php:86 #: ../../view/theme/quattro/config.php:68 msgid "Color scheme" -msgstr "" +msgstr "Fargekart" #: ../../view/theme/diabook/config.php:156 #: ../../view/theme/dispy/config.php:74 msgid "Set line-height for posts and comments" -msgstr "" +msgstr "Angi linjeavstand for innlegg og kommentarer" #: ../../view/theme/diabook/config.php:157 msgid "Set resolution for middle column" -msgstr "" +msgstr "Angi oppløsning for midtkolonnen" #: ../../view/theme/diabook/config.php:158 msgid "Set color scheme" -msgstr "" +msgstr "Angi fargekart" #: ../../view/theme/diabook/config.php:159 #: ../../view/theme/diabook/theme.php:609 msgid "Set twitter search term" -msgstr "" +msgstr "Angi twitter søkeord" #: ../../view/theme/diabook/config.php:160 msgid "Set zoomfactor for Earth Layer" -msgstr "" +msgstr "Angi zoomfaktor for Earth Layer" #: ../../view/theme/diabook/config.php:161 #: ../../view/theme/diabook/theme.php:578 @@ -6919,7 +6919,7 @@ msgstr "Finn venner" #: ../../view/theme/diabook/config.php:169 msgid "Last tweets" -msgstr "" +msgstr "Siste kvitringer" #: ../../view/theme/diabook/config.php:170 #: ../../view/theme/diabook/theme.php:405 @@ -6958,31 +6958,31 @@ msgstr "Siste Tweets" #: ../../view/theme/diabook/theme.php:630 msgid "Show/hide boxes at right-hand column:" -msgstr "" +msgstr "Vis/skjul bokser i kolonnen til høyre:" #: ../../view/theme/dispy/config.php:75 msgid "Set colour scheme" -msgstr "" +msgstr "Angi fargekart" #: ../../view/theme/quattro/config.php:67 msgid "Alignment" -msgstr "" +msgstr "Justering" #: ../../view/theme/quattro/config.php:67 msgid "Left" -msgstr "" +msgstr "Venstre" #: ../../view/theme/quattro/config.php:67 msgid "Center" -msgstr "" +msgstr "Midtstilt" #: ../../view/theme/quattro/config.php:69 msgid "Posts font size" -msgstr "" +msgstr "Skriftstørrelse for innlegg" #: ../../view/theme/quattro/config.php:70 msgid "Textareas font size" -msgstr "" +msgstr "Skriftstørrelse for tekstområder" #: ../../index.php:405 msgid "toggle mobile" @@ -6994,7 +6994,7 @@ msgstr "Slett dette elementet?" #: ../../boot.php:672 msgid "show fewer" -msgstr "" +msgstr "vis færre" #: ../../boot.php:999 #, php-format @@ -7004,7 +7004,7 @@ msgstr "Oppdatering %s mislyktes. Se feilloggene." #: ../../boot.php:1001 #, php-format msgid "Update Error at %s" -msgstr "" +msgstr "Oppdateringsfeil i %s" #: ../../boot.php:1111 msgid "Create a New Account" @@ -7020,11 +7020,11 @@ msgstr "Passord: " #: ../../boot.php:1141 msgid "Remember me" -msgstr "" +msgstr "Husk meg" #: ../../boot.php:1144 msgid "Or login using OpenID: " -msgstr "" +msgstr "Eller logg inn med OpenID:" #: ../../boot.php:1150 msgid "Forgot your password?" @@ -7032,23 +7032,23 @@ msgstr "Glemt passordet?" #: ../../boot.php:1153 msgid "Website Terms of Service" -msgstr "" +msgstr "Nettstedets bruksbetingelser" #: ../../boot.php:1154 msgid "terms of service" -msgstr "" +msgstr "bruksbetingelser" #: ../../boot.php:1156 msgid "Website Privacy Policy" -msgstr "" +msgstr "Nettstedets retningslinjer for personvern" #: ../../boot.php:1157 msgid "privacy policy" -msgstr "" +msgstr "retningslinjer for personvern" #: ../../boot.php:1286 msgid "Requested account is not available." -msgstr "" +msgstr "Profil utilgjengelig." #: ../../boot.php:1365 ../../boot.php:1469 msgid "Edit profile" @@ -7056,7 +7056,7 @@ msgstr "Rediger profil" #: ../../boot.php:1431 msgid "Message" -msgstr "" +msgstr "Melding" #: ../../boot.php:1439 msgid "Manage/edit profiles" @@ -7064,11 +7064,11 @@ msgstr "Behandle/endre profiler" #: ../../boot.php:1568 ../../boot.php:1654 msgid "g A l F d" -msgstr "" +msgstr "g A l F d" #: ../../boot.php:1569 ../../boot.php:1655 msgid "F d" -msgstr "" +msgstr "F d" #: ../../boot.php:1614 ../../boot.php:1695 msgid "[today]" @@ -7096,20 +7096,20 @@ msgstr "Hendelser denne uken:" #: ../../boot.php:1943 msgid "Status Messages and Posts" -msgstr "" +msgstr "Status meldinger og innlegg" #: ../../boot.php:1950 msgid "Profile Details" -msgstr "" +msgstr "Profildetaljer" #: ../../boot.php:1961 ../../boot.php:1964 msgid "Videos" -msgstr "" +msgstr "Videoer" #: ../../boot.php:1974 msgid "Events and Calendar" -msgstr "" +msgstr "Hendelser og kalender" #: ../../boot.php:1981 msgid "Only You Can See This" -msgstr "" +msgstr "Bare du kan se dette" diff --git a/view/nb-no/strings.php b/view/nb-no/strings.php index c21f8a35e8..386e26b0ed 100644 --- a/view/nb-no/strings.php +++ b/view/nb-no/strings.php @@ -13,11 +13,11 @@ $a->strings["j F"] = "j F"; $a->strings["Birthday:"] = "Fødselsdag:"; $a->strings["Age:"] = "Alder:"; $a->strings["Status:"] = "Status:"; -$a->strings["for %1\$d %2\$s"] = ""; +$a->strings["for %1\$d %2\$s"] = "for %1\$d %2\$s"; $a->strings["Sexual Preference:"] = "Seksuell orientering:"; $a->strings["Homepage:"] = "Hjemmeside:"; $a->strings["Hometown:"] = "Hjemsted:"; -$a->strings["Tags:"] = ""; +$a->strings["Tags:"] = "Merkelapper:"; $a->strings["Political Views:"] = "Politisk ståsted:"; $a->strings["Religion:"] = "Religion:"; $a->strings["About:"] = "Om:"; @@ -63,8 +63,8 @@ $a->strings["Single"] = "Alene"; $a->strings["Lonely"] = "Ensom"; $a->strings["Available"] = "Tilgjengelig"; $a->strings["Unavailable"] = "Ikke tilgjengelig"; -$a->strings["Has crush"] = ""; -$a->strings["Infatuated"] = ""; +$a->strings["Has crush"] = "Er forelsket"; +$a->strings["Infatuated"] = "Betatt"; $a->strings["Dating"] = "Stevnemøter/dater"; $a->strings["Unfaithful"] = "Utro"; $a->strings["Sex Addict"] = "Sexavhengig"; @@ -73,55 +73,55 @@ $a->strings["Friends/Benefits"] = "Venner med fordeler"; $a->strings["Casual"] = "Tilfeldig"; $a->strings["Engaged"] = "Forlovet"; $a->strings["Married"] = "Gift"; -$a->strings["Imaginarily married"] = ""; +$a->strings["Imaginarily married"] = "Fantasiekteskap"; $a->strings["Partners"] = "Partnere"; $a->strings["Cohabiting"] = "Samboere"; -$a->strings["Common law"] = ""; +$a->strings["Common law"] = "Samboer"; $a->strings["Happy"] = "Lykkelig"; -$a->strings["Not looking"] = ""; +$a->strings["Not looking"] = "Ikke på utkikk"; $a->strings["Swinger"] = "Partnerbytte/swinger"; $a->strings["Betrayed"] = "Bedratt"; $a->strings["Separated"] = "Separert"; $a->strings["Unstable"] = "Ustabil"; $a->strings["Divorced"] = "Skilt"; -$a->strings["Imaginarily divorced"] = ""; +$a->strings["Imaginarily divorced"] = "Fantasiskilt"; $a->strings["Widowed"] = "Enke/enkemann"; $a->strings["Uncertain"] = "Usikker"; -$a->strings["It's complicated"] = ""; +$a->strings["It's complicated"] = "Det er komplisert"; $a->strings["Don't care"] = "Uinteressert"; $a->strings["Ask me"] = "Spør meg"; $a->strings["stopped following"] = "sluttet å følge"; -$a->strings["Poke"] = ""; -$a->strings["View Status"] = ""; -$a->strings["View Profile"] = ""; -$a->strings["View Photos"] = ""; -$a->strings["Network Posts"] = ""; -$a->strings["Edit Contact"] = ""; +$a->strings["Poke"] = "Dytt"; +$a->strings["View Status"] = "Vis status"; +$a->strings["View Profile"] = "Vis profil"; +$a->strings["View Photos"] = "Vis bilder"; +$a->strings["Network Posts"] = "Nettverksinnlegg"; +$a->strings["Edit Contact"] = "Endre kontakt"; $a->strings["Send PM"] = "Send privat melding"; $a->strings["Image/photo"] = "Bilde/fotografi"; -$a->strings["%s wrote the following post"] = ""; -$a->strings["$1 wrote:"] = ""; -$a->strings["Encrypted content"] = ""; +$a->strings["%s wrote the following post"] = "%s skrev det følgende innlegget"; +$a->strings["$1 wrote:"] = "$1 skrev:"; +$a->strings["Encrypted content"] = "Kryptert innhold"; $a->strings["Visible to everybody"] = "Synlig for alle"; $a->strings["show"] = "vis"; $a->strings["don't show"] = "ikke vis"; $a->strings["Logged out."] = "Logget ut."; $a->strings["Login failed."] = "Innlogging mislyktes."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; -$a->strings["The error message was:"] = ""; -$a->strings["l F d, Y \\@ g:i A"] = ""; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi støtte på et problem under innloggingen med OpenID-en du oppgav. Vennligst sjekk at du stavet ID-en riktig."; +$a->strings["The error message was:"] = "Feilmeldingen var:"; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; $a->strings["Starts:"] = "Starter:"; $a->strings["Finishes:"] = "Slutter:"; $a->strings["Location:"] = "Plassering:"; $a->strings["Disallowed profile URL."] = "Underkjent profil-URL."; -$a->strings["Connect URL missing."] = ""; +$a->strings["Connect URL missing."] = "Forbindelses-URL mangler."; $a->strings["This site is not configured to allow communications with other networks."] = "Dette nettverkets konfigurasjon tillater ikke kommunikasjon med andre nettverk."; $a->strings["No compatible communication protocols or feeds were discovered."] = "Ingen passende kommunikasjonsprotokoller eller strømmer ble oppdaget."; $a->strings["The profile address specified does not provide adequate information."] = "Den angitte profiladressen inneholder for lite information."; $a->strings["An author or name was not found."] = "Fant ingen forfatter eller navn."; $a->strings["No browser URL could be matched to this address."] = "Ingen nettleser-URL passet med denne adressen."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = ""; -$a->strings["Use mailto: in front of address to force email check."] = ""; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Finner ikke samsvar mellom @-stilens identitetsadresse og en kjent protokoll eller e-postkontakt."; +$a->strings["Use mailto: in front of address to force email check."] = "Bruk mailto: foran adresser for å tvinge e-postsjekk."; $a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Den oppgitte profiladressen tilhører et nettverk som har blitt avskrudd på dette nettstedet."; $a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Begrenset profil. Denne personen kan ikke motta direkte/personlige oppdateringer fra deg."; $a->strings["Unable to retrieve contact information."] = "Ikke i stand til å hente kontaktinformasjon."; @@ -138,10 +138,10 @@ $a->strings["Not a valid email address."] = "Ugyldig e-postadresse."; $a->strings["Cannot use that email."] = "Kan ikke bruke den e-postadressen."; $a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Ditt kallenavn kan bare inneholde \"a-z\", \"0-9\", \"-\", \"_\", og må også begynne med en bokstav."; $a->strings["Nickname is already registered. Please choose another."] = "Kallenavnet er allerede registrert. Vennligst velg et annet."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = ""; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Kallenavnet ble registrert her en gang og kan ikke brukes om igjen. Vennligst velg et annet."; $a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ALVORLIG FEIL: mislyktes med å lage sikkerhetsnøkler."; $a->strings["An error occurred during registration. Please try again."] = "En feil oppstod under registreringen. Vennligst prøv igjen."; -$a->strings["default"] = ""; +$a->strings["default"] = "standard"; $a->strings["An error occurred creating your default profile. Please try again."] = "En feil oppstod under opprettelsen av din standardprofil. Vennligst prøv igjen."; $a->strings["Profile Photos"] = "Profilbilder"; $a->strings["Unknown | Not categorised"] = "Ukjent | Ikke kategorisert"; @@ -157,44 +157,44 @@ $a->strings["Daily"] = "Daglig"; $a->strings["Weekly"] = "Ukentlig"; $a->strings["Monthly"] = "Månedlig"; $a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = ""; -$a->strings["RSS/Atom"] = ""; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; $a->strings["Email"] = "E-post"; $a->strings["Diaspora"] = "Diaspora"; $a->strings["Facebook"] = "Facebook"; -$a->strings["Zot!"] = ""; -$a->strings["LinkedIn"] = ""; -$a->strings["XMPP/IM"] = ""; -$a->strings["MySpace"] = ""; -$a->strings["Google+"] = ""; -$a->strings["Add New Contact"] = ""; -$a->strings["Enter address or web location"] = ""; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["Add New Contact"] = "Legg til ny kontakt"; +$a->strings["Enter address or web location"] = "Skriv adresse eller web-plassering"; $a->strings["Example: bob@example.com, http://example.com/barbara"] = "Eksempel: ole@eksempel.no, http://eksempel.no/kari"; $a->strings["Connect"] = "Forbindelse"; $a->strings["%d invitation available"] = array( 0 => "%d invitasjon tilgjengelig", 1 => "%d invitasjoner tilgjengelig", ); -$a->strings["Find People"] = ""; -$a->strings["Enter name or interest"] = ""; +$a->strings["Find People"] = "Finn personer"; +$a->strings["Enter name or interest"] = "Skriv navn eller interesse"; $a->strings["Connect/Follow"] = "Koble/Følg"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = ""; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Robert Morgenstein, fisking"; $a->strings["Find"] = "Finn"; $a->strings["Friend Suggestions"] = "Venneforslag"; $a->strings["Similar Interests"] = "Liknende interesser"; -$a->strings["Random Profile"] = ""; +$a->strings["Random Profile"] = "Tilfeldig profil"; $a->strings["Invite Friends"] = "Inviterer venner"; -$a->strings["Networks"] = ""; -$a->strings["All Networks"] = ""; -$a->strings["Saved Folders"] = ""; -$a->strings["Everything"] = ""; -$a->strings["Categories"] = ""; +$a->strings["Networks"] = "Nettverk"; +$a->strings["All Networks"] = "Alle nettverk"; +$a->strings["Saved Folders"] = "Lagrede mapper"; +$a->strings["Everything"] = "Alt"; +$a->strings["Categories"] = "Kategorier"; $a->strings["%d contact in common"] = array( 0 => "%d felles kontakt", 1 => "%d felles kontakter", ); $a->strings["show more"] = "vis mer"; -$a->strings[" on Last.fm"] = ""; +$a->strings[" on Last.fm"] = "på Last.fm"; $a->strings["view full size"] = "Vis i full størrelse"; $a->strings["Miscellaneous"] = "Diverse"; $a->strings["year"] = "år"; @@ -213,12 +213,12 @@ $a->strings["minute"] = "minutt"; $a->strings["minutes"] = "minutter"; $a->strings["second"] = "sekund"; $a->strings["seconds"] = "sekunder"; -$a->strings["%1\$d %2\$s ago"] = ""; -$a->strings["%s's birthday"] = ""; -$a->strings["Happy Birthday %s"] = ""; -$a->strings["Click here to upgrade."] = ""; -$a->strings["This action exceeds the limits set by your subscription plan."] = ""; -$a->strings["This action is not available under your subscription plan."] = ""; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s siden"; +$a->strings["%s's birthday"] = "%s sin bursdag"; +$a->strings["Happy Birthday %s"] = "Gratulerer med dagen, %s"; +$a->strings["Click here to upgrade."] = "Klikk her for oppgradere."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Denne handlingen overstiger grensene satt i din abonnementsplan."; +$a->strings["This action is not available under your subscription plan."] = "Denne handlingen er ikke tilgjengelig i henhold til din abonnementsplan."; $a->strings["(no subject)"] = "(uten emne)"; $a->strings["noreply"] = "ikke svar"; $a->strings["%1\$s is now friends with %2\$s"] = "%1\$s er nå venner med %2\$s"; @@ -226,61 +226,61 @@ $a->strings["Sharing notification from Diaspora network"] = "Dele varslinger fra $a->strings["photo"] = "bilde"; $a->strings["status"] = "status"; $a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s liker %2\$s's %3\$s"; -$a->strings["Attachments:"] = ""; +$a->strings["Attachments:"] = "Vedlegg:"; $a->strings["[Name Withheld]"] = "[Navnet tilbakeholdt]"; -$a->strings["A new person is sharing with you at "] = ""; +$a->strings["A new person is sharing with you at "] = "En ny person deler med deg hos"; $a->strings["You have a new follower at "] = "Du har en ny følgesvenn på "; $a->strings["Item not found."] = "Enheten ble ikke funnet."; -$a->strings["Do you really want to delete this item?"] = ""; +$a->strings["Do you really want to delete this item?"] = "Ønsker du virkelig å slette dette elementet?"; $a->strings["Yes"] = "Ja"; $a->strings["Cancel"] = "Avbryt"; $a->strings["Permission denied."] = "Ingen tilgang."; -$a->strings["Archives"] = ""; -$a->strings["General Features"] = ""; -$a->strings["Multiple Profiles"] = ""; -$a->strings["Ability to create multiple profiles"] = ""; -$a->strings["Post Composition Features"] = ""; -$a->strings["Richtext Editor"] = ""; -$a->strings["Enable richtext editor"] = ""; -$a->strings["Post Preview"] = ""; -$a->strings["Allow previewing posts and comments before publishing them"] = ""; -$a->strings["Network Sidebar Widgets"] = ""; -$a->strings["Search by Date"] = ""; -$a->strings["Ability to select posts by date ranges"] = ""; -$a->strings["Group Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected group"] = ""; -$a->strings["Network Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected network"] = ""; +$a->strings["Archives"] = "Arkiverer"; +$a->strings["General Features"] = "Generelle egenskaper"; +$a->strings["Multiple Profiles"] = "Flere profiler"; +$a->strings["Ability to create multiple profiles"] = "Mulighet for å lage flere profiler"; +$a->strings["Post Composition Features"] = "Funksjoner for å skrive innlegg"; +$a->strings["Richtext Editor"] = "Rik tekstredigering"; +$a->strings["Enable richtext editor"] = "Skru på rik tekstredigering"; +$a->strings["Post Preview"] = "Forhåndsvisning av innlegg"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Tillat forhåndsvisning av innlegg og kommentarer før publisering"; +$a->strings["Network Sidebar Widgets"] = "Småprogrammer i sidestolpen for Nettverk"; +$a->strings["Search by Date"] = "Søk etter dato"; +$a->strings["Ability to select posts by date ranges"] = "Mulighet for å velge innlegg etter datoområder"; +$a->strings["Group Filter"] = "Gruppefilter"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Skru på småprogrammet som viser Nettverksinnlegg bare fra den valgte gruppen"; +$a->strings["Network Filter"] = "Nettverksfilter"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Skru på småprogrammet for å vise Nettverksinnlegg bare fra valgt nettverk"; $a->strings["Saved Searches"] = "Lagrede søk"; -$a->strings["Save search terms for re-use"] = ""; -$a->strings["Network Tabs"] = ""; -$a->strings["Network Personal Tab"] = ""; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; -$a->strings["Network New Tab"] = ""; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; -$a->strings["Network Shared Links Tab"] = ""; -$a->strings["Enable tab to display only Network posts with links in them"] = ""; -$a->strings["Post/Comment Tools"] = ""; -$a->strings["Multiple Deletion"] = ""; -$a->strings["Select and delete multiple posts/comments at once"] = ""; -$a->strings["Edit Sent Posts"] = ""; -$a->strings["Edit and correct posts and comments after sending"] = ""; -$a->strings["Tagging"] = ""; -$a->strings["Ability to tag existing posts"] = ""; -$a->strings["Post Categories"] = ""; -$a->strings["Add categories to your posts"] = ""; -$a->strings["Ability to file posts under folders"] = ""; -$a->strings["Dislike Posts"] = ""; -$a->strings["Ability to dislike posts/comments"] = ""; -$a->strings["Star Posts"] = ""; -$a->strings["Ability to mark special posts with a star indicator"] = ""; +$a->strings["Save search terms for re-use"] = "Lagre søkeuttrykk for gjenbruk"; +$a->strings["Network Tabs"] = "Nettverksfaner"; +$a->strings["Network Personal Tab"] = "Nettverk personlig fane"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Skru på fane for å vise bare Nettverksinnlegg som du har vært med i"; +$a->strings["Network New Tab"] = "Nettverk Ny fane"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Skru på fane for å vise bare nye Nettverksinnlegg (fra de siste 12 timer)"; +$a->strings["Network Shared Links Tab"] = "Nettverk Delte lenker fane"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Skru på fane for å vise bare Nettverksinnlegg med lenker i dem"; +$a->strings["Post/Comment Tools"] = "Innleggs-/kommentarverktøy"; +$a->strings["Multiple Deletion"] = "Slett flere"; +$a->strings["Select and delete multiple posts/comments at once"] = "Velg og slett flere innlegg/kommentarer på en gang"; +$a->strings["Edit Sent Posts"] = "Endre sendte innlegg"; +$a->strings["Edit and correct posts and comments after sending"] = "Endre og korriger innlegg og kommentarer etter sending"; +$a->strings["Tagging"] = "Merking"; +$a->strings["Ability to tag existing posts"] = "Mulighet til å merke eksisterende innlegg"; +$a->strings["Post Categories"] = "Innleggskategorier"; +$a->strings["Add categories to your posts"] = "Legg til kategorier til dine innlegg"; +$a->strings["Ability to file posts under folders"] = "Mulighet til å sortere innlegg i mapper"; +$a->strings["Dislike Posts"] = "Liker ikke innlegg"; +$a->strings["Ability to dislike posts/comments"] = "Mulighet til å ikke like innlegg/kommentarer"; +$a->strings["Star Posts"] = "Stjerneinnlegg"; +$a->strings["Ability to mark special posts with a star indicator"] = "Mulighet til å merke spesielle innlegg med en stjerneindikator"; $a->strings["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS informasjon for databasetjeneren '%s' "; $a->strings["prev"] = "forrige"; $a->strings["first"] = "første"; $a->strings["last"] = "siste"; $a->strings["next"] = "neste"; -$a->strings["newer"] = ""; -$a->strings["older"] = ""; +$a->strings["newer"] = "nyere"; +$a->strings["older"] = "eldre"; $a->strings["No contacts"] = "Ingen kontakter"; $a->strings["%d Contact"] = array( 0 => "%d kontakt", @@ -289,38 +289,38 @@ $a->strings["%d Contact"] = array( $a->strings["View Contacts"] = "Vis kontakter"; $a->strings["Search"] = "Søk"; $a->strings["Save"] = "Lagre"; -$a->strings["poke"] = ""; -$a->strings["poked"] = ""; -$a->strings["ping"] = ""; -$a->strings["pinged"] = ""; -$a->strings["prod"] = ""; -$a->strings["prodded"] = ""; -$a->strings["slap"] = ""; -$a->strings["slapped"] = ""; -$a->strings["finger"] = ""; -$a->strings["fingered"] = ""; -$a->strings["rebuff"] = ""; -$a->strings["rebuffed"] = ""; -$a->strings["happy"] = ""; -$a->strings["sad"] = ""; -$a->strings["mellow"] = ""; -$a->strings["tired"] = ""; -$a->strings["perky"] = ""; -$a->strings["angry"] = ""; -$a->strings["stupified"] = ""; -$a->strings["puzzled"] = ""; -$a->strings["interested"] = ""; -$a->strings["bitter"] = ""; -$a->strings["cheerful"] = ""; -$a->strings["alive"] = ""; -$a->strings["annoyed"] = ""; -$a->strings["anxious"] = ""; -$a->strings["cranky"] = ""; -$a->strings["disturbed"] = ""; -$a->strings["frustrated"] = ""; -$a->strings["motivated"] = ""; -$a->strings["relaxed"] = ""; -$a->strings["surprised"] = ""; +$a->strings["poke"] = "dytt"; +$a->strings["poked"] = "dyttet"; +$a->strings["ping"] = "ping"; +$a->strings["pinged"] = "pinget"; +$a->strings["prod"] = "dult"; +$a->strings["prodded"] = "dultet"; +$a->strings["slap"] = "klaske"; +$a->strings["slapped"] = "klasket"; +$a->strings["finger"] = "fingre"; +$a->strings["fingered"] = "fingret"; +$a->strings["rebuff"] = "avslå"; +$a->strings["rebuffed"] = "avslo"; +$a->strings["happy"] = "glad"; +$a->strings["sad"] = "trist"; +$a->strings["mellow"] = "dempet"; +$a->strings["tired"] = "trøtt"; +$a->strings["perky"] = "oppkvikket"; +$a->strings["angry"] = "sint"; +$a->strings["stupified"] = "tanketom"; +$a->strings["puzzled"] = "forundret"; +$a->strings["interested"] = "interessert"; +$a->strings["bitter"] = "bitter"; +$a->strings["cheerful"] = "munter"; +$a->strings["alive"] = "livlig"; +$a->strings["annoyed"] = "irritert"; +$a->strings["anxious"] = "nervøs"; +$a->strings["cranky"] = "grinete"; +$a->strings["disturbed"] = "forstyrret"; +$a->strings["frustrated"] = "frustrert"; +$a->strings["motivated"] = "motivert"; +$a->strings["relaxed"] = "avslappet"; +$a->strings["surprised"] = "overrasket"; $a->strings["Monday"] = "mandag"; $a->strings["Tuesday"] = "tirsdag"; $a->strings["Wednesday"] = "onsdag"; @@ -340,34 +340,34 @@ $a->strings["September"] = "september"; $a->strings["October"] = "oktober"; $a->strings["November"] = "november"; $a->strings["December"] = "desember"; -$a->strings["View Video"] = ""; +$a->strings["View Video"] = "Vis video"; $a->strings["bytes"] = "bytes"; -$a->strings["Click to open/close"] = ""; +$a->strings["Click to open/close"] = "Klikk for å åpne/lukke"; $a->strings["link to source"] = "lenke til kilde"; $a->strings["Select an alternate language"] = "Velg et annet språk"; $a->strings["event"] = "hendelse"; -$a->strings["activity"] = ""; +$a->strings["activity"] = "aktivitet"; $a->strings["comment"] = array( - 0 => "", - 1 => "", + 0 => "kommentar", + 1 => "kommentarer", ); -$a->strings["post"] = ""; -$a->strings["Item filed"] = ""; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = ""; -$a->strings["Default privacy group for new contacts"] = ""; +$a->strings["post"] = "innlegg"; +$a->strings["Item filed"] = "Element arkivert"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende elementtillatelser kan gjelde for denne gruppen og fremtidige medlemmer. Hvis det ikke var dette du ønsket, vær snill å opprette en annen gruppe med et annet navn."; +$a->strings["Default privacy group for new contacts"] = "Standard personverngruppe for nye kontakter"; $a->strings["Everybody"] = "Alle"; -$a->strings["edit"] = ""; +$a->strings["edit"] = "endre"; $a->strings["Groups"] = "Grupper"; -$a->strings["Edit group"] = ""; +$a->strings["Edit group"] = "Endre gruppe"; $a->strings["Create a new group"] = "Lag en ny gruppe"; -$a->strings["Contacts not in any group"] = ""; +$a->strings["Contacts not in any group"] = "Kontakter som ikke er i noen gruppe"; $a->strings["add"] = "legg til"; $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s liker ikke %2\$s's %3\$s"; -$a->strings["%1\$s poked %2\$s"] = ""; +$a->strings["%1\$s poked %2\$s"] = "%1\$s dyttet %2\$s"; $a->strings["%1\$s is currently %2\$s"] = "%1\$s er for øyeblikket %2\$s"; $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %2\$s sitt %3\$s med %4\$s"; -$a->strings["post/item"] = ""; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = ""; +$a->strings["post/item"] = "innlegg/element"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s merket %2\$s's %3\$s som en favoritt"; $a->strings["Select"] = "Velg"; $a->strings["Delete"] = "Slett"; $a->strings["View %s's profile @ %s"] = "Besøk %ss profil [%s]"; @@ -376,25 +376,25 @@ $a->strings["Filed under:"] = "Lagret i:"; $a->strings["%s from %s"] = "%s fra %s"; $a->strings["View in context"] = "Vis i sammenheng"; $a->strings["Please wait"] = "Vennligst vent"; -$a->strings["remove"] = ""; +$a->strings["remove"] = "slett"; $a->strings["Delete Selected Items"] = "Slette valgte elementer"; -$a->strings["Follow Thread"] = ""; +$a->strings["Follow Thread"] = "Følg tråd"; $a->strings["%s likes this."] = "%s liker dette."; $a->strings["%s doesn't like this."] = "%s liker ikke dette."; -$a->strings["%2\$d people like this"] = ""; -$a->strings["%2\$d people don't like this"] = ""; +$a->strings["%2\$d people like this"] = "%2\$d personer liker dette"; +$a->strings["%2\$d people don't like this"] = "%2\$d personer liker ikke dette"; $a->strings["and"] = "og"; $a->strings[", and %d other people"] = ", og %d andre personer"; $a->strings["%s like this."] = "%s liker dette."; $a->strings["%s don't like this."] = "%s liker ikke dette."; $a->strings["Visible to everybody"] = "Synlig for alle"; $a->strings["Please enter a link URL:"] = "Vennligst skriv inn en lenke URL:"; -$a->strings["Please enter a video link/URL:"] = ""; -$a->strings["Please enter an audio link/URL:"] = ""; -$a->strings["Tag term:"] = ""; +$a->strings["Please enter a video link/URL:"] = "Vennligst skriv inn en videolenke/-URL:"; +$a->strings["Please enter an audio link/URL:"] = "Vennligst skriv inn en lydlenke/-URL:"; +$a->strings["Tag term:"] = "Merkelapp begrep:"; $a->strings["Save to Folder:"] = "Lagre til mappe:"; $a->strings["Where are you right now?"] = "Hvor er du akkurat nå?"; -$a->strings["Delete item(s)?"] = ""; +$a->strings["Delete item(s)?"] = "Slett element(er)?"; $a->strings["Post to Email"] = "Innlegg til e-post"; $a->strings["Share"] = "Del"; $a->strings["Upload photo"] = "Last opp bilde"; @@ -414,52 +414,52 @@ $a->strings["clear location"] = "fjern plassering"; $a->strings["Set title"] = "Lagre tittel"; $a->strings["Categories (comma-separated list)"] = "Kategorier (kommaseparert liste)"; $a->strings["Permission settings"] = "Tillatelser"; -$a->strings["permissions"] = ""; +$a->strings["permissions"] = "tillatelser"; $a->strings["CC: email addresses"] = "Kopi: e-postadresser"; $a->strings["Public post"] = "Offentlig innlegg"; $a->strings["Example: bob@example.com, mary@example.com"] = "Eksempel: ola@example.com, kari@example.com"; $a->strings["Preview"] = "forhåndsvisning"; -$a->strings["Post to Groups"] = ""; -$a->strings["Post to Contacts"] = ""; -$a->strings["Private post"] = ""; -$a->strings["Friendica Notification"] = ""; -$a->strings["Thank You,"] = ""; -$a->strings["%s Administrator"] = ""; -$a->strings["%s "] = ""; -$a->strings["[Friendica:Notify] New mail received at %s"] = ""; -$a->strings["%1\$s sent you a new private message at %2\$s."] = ""; -$a->strings["%1\$s sent you %2\$s."] = ""; -$a->strings["a private message"] = ""; -$a->strings["Please visit %s to view and/or reply to your private messages."] = ""; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = ""; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = ""; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = ""; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; -$a->strings["%s commented on an item/conversation you have been following."] = ""; -$a->strings["Please visit %s to view and/or reply to the conversation."] = ""; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = ""; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = ""; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = ""; -$a->strings["[Friendica:Notify] %s tagged you"] = ""; -$a->strings["%1\$s tagged you at %2\$s"] = ""; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = ""; -$a->strings["[Friendica:Notify] %1\$s poked you"] = ""; -$a->strings["%1\$s poked you at %2\$s"] = ""; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; -$a->strings["[Friendica:Notify] %s tagged your post"] = ""; -$a->strings["%1\$s tagged your post at %2\$s"] = ""; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = ""; -$a->strings["[Friendica:Notify] Introduction received"] = ""; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = ""; -$a->strings["You may visit their profile at %s"] = ""; -$a->strings["Please visit %s to approve or reject the introduction."] = ""; -$a->strings["[Friendica:Notify] Friend suggestion received"] = ""; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = ""; -$a->strings["Name:"] = ""; -$a->strings["Photo:"] = ""; -$a->strings["Please visit %s to approve or reject the suggestion."] = ""; +$a->strings["Post to Groups"] = "Innlegg til grupper"; +$a->strings["Post to Contacts"] = "Innlegg til kontakter"; +$a->strings["Private post"] = "Privat innlegg"; +$a->strings["Friendica Notification"] = "Friendica varsel"; +$a->strings["Thank You,"] = "Mange takk,"; +$a->strings["%s Administrator"] = "%s administrator"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Ny melding mottatt hos %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sendte deg en ny privat melding hos %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s sendte deg %2\$s."; +$a->strings["a private message"] = "en privat melding"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Vennligst besøk %s for å se og/eller svare på dine private meldinger."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommenterte på [url=%2\$s]a %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommenterte på [url=%2\$s]%3\$s sin %4\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommenterte på [url=%2\$s] din %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Kommentar til samtale #%1\$d av %2\$s"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s kommenterte på et element/en samtale du har fulgt."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Vennligst besøk %s for å se og/eller svare på samtalen."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s skrev et innlegg på veggen til din profil"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s skrev et innlegg på veggen til din profil %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s skrev et innlegg til [url=%2\$s]din vegg[/url]"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s merket deg"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s merket deg %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]merket deg[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s dyttet deg"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s dyttet deg %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]dyttet deg[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s merket ditt innlegg"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s merket ditt innlegg %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s merket [url=%2\$s]ditt innlegg[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Introduksjon mottatt"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du mottok en introduksjon fra '%1\$s' %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du mottok [url=%1\$s]en introduksjon[/url] fra %2\$s."; +$a->strings["You may visit their profile at %s"] = "Du kan besøke profilen deres på %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Vennligst besøk %s for å godkjenne eller avslå introduksjonen."; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Venneforslag mottatt"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du mottok et venneforslag fra '%1\$s' %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du mottok [url=%1\$s]et venneforslag[/url] om %2\$s fra %3\$s."; +$a->strings["Name:"] = "Navn:"; +$a->strings["Photo:"] = "Bilde:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Vennligst besøk %s for å godkjenne eller avslå forslaget."; $a->strings["[no subject]"] = "[ikke noe emne]"; $a->strings["Wall Photos"] = "Veggbilder"; $a->strings["Nothing new here"] = "Ikke noe nytt her"; @@ -492,13 +492,13 @@ $a->strings["Directory"] = "Katalog"; $a->strings["People directory"] = "Personkatalog"; $a->strings["Network"] = "Nettverk"; $a->strings["Conversations from your friends"] = "Samtaler fra dine venner"; -$a->strings["Network Reset"] = ""; -$a->strings["Load Network page with no filters"] = ""; +$a->strings["Network Reset"] = "Nettverk tilbakestilling"; +$a->strings["Load Network page with no filters"] = "Hent Nettverk-siden uten filter"; $a->strings["Introductions"] = "Introduksjoner"; -$a->strings["Friend Requests"] = ""; +$a->strings["Friend Requests"] = "Venneforespørsler"; $a->strings["Notifications"] = "Varslinger"; -$a->strings["See all notifications"] = ""; -$a->strings["Mark all system notifications seen"] = ""; +$a->strings["See all notifications"] = "Se alle varslinger"; +$a->strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett"; $a->strings["Messages"] = "Meldinger"; $a->strings["Private mail"] = "Privat post"; $a->strings["Inbox"] = "Innboks"; @@ -506,35 +506,35 @@ $a->strings["Outbox"] = "Utboks"; $a->strings["New Message"] = "Ny melding"; $a->strings["Manage"] = "Behandle"; $a->strings["Manage other pages"] = "Behandle andre sider"; -$a->strings["Delegations"] = ""; +$a->strings["Delegations"] = "Delegasjoner"; $a->strings["Delegate Page Management"] = "Deleger sidebehandling"; $a->strings["Settings"] = "Innstillinger"; $a->strings["Account settings"] = "Kontoinnstillinger"; $a->strings["Profiles"] = "Profiler"; -$a->strings["Manage/Edit Profiles"] = ""; +$a->strings["Manage/Edit Profiles"] = "Behandle/endre profiler"; $a->strings["Contacts"] = "Kontakter"; $a->strings["Manage/edit friends and contacts"] = "Behandle/endre venner og kontakter"; $a->strings["Admin"] = "Administrator"; $a->strings["Site setup and configuration"] = "Nettstedsoppsett og konfigurasjon"; -$a->strings["Navigation"] = ""; -$a->strings["Site map"] = ""; -$a->strings["Embedded content"] = ""; +$a->strings["Navigation"] = "Navigasjon"; +$a->strings["Site map"] = "Nettstedskart"; +$a->strings["Embedded content"] = "Innebygd innhold"; $a->strings["Embedding disabled"] = "Innebygging avskrudd"; -$a->strings["Error decoding account file"] = ""; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; -$a->strings["Error! Cannot check nickname"] = ""; -$a->strings["User '%s' already exists on this server!"] = ""; -$a->strings["User creation error"] = ""; -$a->strings["User profile creation error"] = ""; +$a->strings["Error decoding account file"] = "Feil ved dekoding av kontofil"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Feil! Ingen versjonsdata i filen! Dette er ikke en Friendica kontofil?"; +$a->strings["Error! Cannot check nickname"] = "Feil! Kan ikke sjekke kallenavn"; +$a->strings["User '%s' already exists on this server!"] = "Brukeren '%s' finnes allerede på denne tjeneren!"; +$a->strings["User creation error"] = "Feil ved oppretting av bruker"; +$a->strings["User profile creation error"] = "Feil ved opprettelsen av brukerprofil"; $a->strings["%d contact not imported"] = array( - 0 => "", - 1 => "", + 0 => "%d kontakt ikke importert", + 1 => "%d kontakter ikke importert", ); -$a->strings["Done. You can now login with your username and password"] = ""; +$a->strings["Done. You can now login with your username and password"] = "Ferdig. Du kan nå logge inn med ditt brukernavn og passord"; $a->strings["Welcome "] = "Velkommen"; $a->strings["Please upload a profile photo."] = "Vennligst last opp et profilbilde."; $a->strings["Welcome back "] = "Velkommen tilbake"; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = ""; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Skjemaets sikkerhetsnøkkel var ikke riktig. Dette skjedde antakelig fordi skjemaet har stått åpent for lenge (>3 timer) før innsending."; $a->strings["Profile not found."] = "Fant ikke profilen."; $a->strings["Profile deleted."] = "Profil slettet."; $a->strings["Profile-"] = "Profil-"; @@ -712,10 +712,10 @@ $a->strings["Private posts by default for new users"] = "Private meldinger som s $a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Sett standard postetillatelser for alle nye medlemmer til standard personverngruppe i stedet for offentlig."; $a->strings["Don't include post content in email notifications"] = "Ikke inkluder innholdet i en melding i epostvarsler"; $a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Ikke inkluder innholdet i en melding/kommentar/privat melding/osv. i epostvarsler som sendes ut fra dette nettstedet, som et personverntiltak."; -$a->strings["Disallow public access to addons listed in the apps menu."] = ""; -$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; -$a->strings["Don't embed private images in posts"] = ""; -$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = ""; +$a->strings["Disallow public access to addons listed in the apps menu."] = "Ikke tillat offentlig tilgang til tillegg som listes opp i app-menyen."; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Kryss i denne boksen vil begrense tillegg opplistet i app-menyen til bare medlemmer."; +$a->strings["Don't embed private images in posts"] = "Ikke innebygg private bilder i innlegg"; +$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "Ikke bytt ut lokalt lagrede private bilder i innlegg med innebygd kopi av bildet. Dette betyr at kontakter som mottar innlegg med private bilder må autentisere og laste hvert bilde, noe som kan ta en stund."; $a->strings["Block multiple registrations"] = "Blokker flere registreringer"; $a->strings["Disallow users to register additional accounts for use as pages."] = "Ikke tillat brukere å registrere ytterligere kontoer til bruk som sider."; $a->strings["OpenID support"] = "OpenID-støtte"; @@ -728,8 +728,8 @@ $a->strings["Show Community Page"] = "Vis Felleskap-side"; $a->strings["Display a Community page showing all recent public postings on this site."] = "Vis en Fellesskapsside som viser de siste offentlige meldinger på dette nettstedet."; $a->strings["Enable OStatus support"] = "Aktiver Ostatus-støtte"; $a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Tilby innebygget OStatus-kompatibilitet (identi.ca, status.net, etc.). All kommunikasjon via OStatus er offentlig, så personvernadvarsler vil bli vist av og til."; -$a->strings["OStatus conversation completion interval"] = ""; -$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; +$a->strings["OStatus conversation completion interval"] = "OStatus intervall for samtalefullførelse"; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Hvor ofte skal spørrefunksjonen sjekke etter nye oppføringer i OStatus-samtaler? Dette kan være en svært ressurskrevende oppgave."; $a->strings["Enable Diaspora support"] = "Aktiver Diaspora-støtte"; $a->strings["Provide built-in Diaspora network compatibility."] = "Tilby innebygget kompatibilitet med Diaspora-nettverket."; $a->strings["Only allow Friendica contacts"] = "Bare tillat Friendica-kontakter"; @@ -765,8 +765,8 @@ $a->strings["This does not include updates prior to 1139, which did not return a $a->strings["Mark success (if update was manually applied)"] = "Marker vellykket (hvis oppdatering ble iverksatt manuelt)"; $a->strings["Attempt to execute this update step automatically"] = "Forsøk å utføre dette oppdateringspunktet automatisk"; $a->strings["%s user blocked/unblocked"] = array( - 0 => "", - 1 => "", + 0 => "%s bruker blokkert/ikke blokkert", + 1 => "%s brukere blokkert/ikke blokkert", ); $a->strings["%s user deleted"] = array( 0 => "%s bruker slettet", @@ -805,7 +805,7 @@ $a->strings["[Experimental]"] = "[Eksperimentell]"; $a->strings["[Unsupported]"] = "[Ikke støttet]"; $a->strings["Log settings updated."] = "Logginnstillinger er oppdatert."; $a->strings["Clear"] = "Tøm"; -$a->strings["Enable Debugging"] = ""; +$a->strings["Enable Debugging"] = "Aktiver feilsøking"; $a->strings["Log file"] = "Loggfil"; $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Web-serveren må ha skriverettigheter. Relativt til toppnivåkatalogen til din Friendicas."; $a->strings["Log level"] = "Loggnivå"; @@ -869,7 +869,7 @@ $a->strings["Source input (Diaspora format): "] = "Diaspora-formatert kilde-inpu $a->strings["diaspora2bb: "] = "diaspora2bb:"; $a->strings["Common Friends"] = "Felles venner"; $a->strings["No contacts in common."] = "Ingen kontakter felles."; -$a->strings["You must be logged in to use addons. "] = ""; +$a->strings["You must be logged in to use addons. "] = "Du må være innlogget for å bruke tillegg."; $a->strings["Applications"] = "Programmer"; $a->strings["No installed applications."] = "Ingen installerte programmer."; $a->strings["Could not access contact record."] = "Fikk ikke tilgang til kontaktposten."; @@ -954,12 +954,12 @@ $a->strings["Email settings updated."] = "E-postinnstillinger er oppdatert."; $a->strings["Features updated"] = "Funksjoner oppdatert"; $a->strings["Passwords do not match. Password unchanged."] = "Passordene er ikke like. Passord uendret."; $a->strings["Empty passwords are not allowed. Password unchanged."] = "Tomme passord er ikke lov. Passord uendret."; -$a->strings["Wrong password."] = ""; +$a->strings["Wrong password."] = "Feil passord."; $a->strings["Password changed."] = "Passord endret."; $a->strings["Password update failed. Please try again."] = "Passordoppdatering mislyktes. Vennligst prøv igjen."; $a->strings[" Please use a shorter name."] = "Vennligst bruk et kortere navn."; $a->strings[" Name too short."] = "Navnet er for kort."; -$a->strings["Wrong Password"] = ""; +$a->strings["Wrong Password"] = "Feil passord"; $a->strings[" Not valid email."] = "Ugyldig e-postadresse."; $a->strings[" Cannot change to that email."] = "Kan ikke endre til den e-postadressen."; $a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Privat forum har ingen personverntillatelser. Bruker standard personverngruppe."; @@ -1009,7 +1009,7 @@ $a->strings["Update browser every xx seconds"] = "Oppdater nettleser hvert xx se $a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekunder, ikke noe maksimum"; $a->strings["Number of items to display per page:"] = "Antall elementer som vises per side:"; $a->strings["Maximum of 100 items"] = "Maksimum 100 elementer"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Antall elementer å vise per side ved visning på mobil enhet:"; $a->strings["Don't show emoticons"] = "Ikke vis uttrykksikoner"; $a->strings["Normal Account Page"] = "Vanlig konto-side"; $a->strings["This account is a normal personal profile"] = "Denne kontoen er en vanlig personlig profil"; @@ -1048,9 +1048,9 @@ $a->strings["Password Settings"] = "Passordinnstillinger"; $a->strings["New Password:"] = "Nytt passord:"; $a->strings["Confirm:"] = "Bekreft:"; $a->strings["Leave password fields blank unless changing"] = "La passordfeltene stå tomme hvis du ikke skal bytte"; -$a->strings["Current Password:"] = ""; -$a->strings["Your current password to confirm the changes"] = ""; -$a->strings["Password:"] = ""; +$a->strings["Current Password:"] = "Gjeldende passord:"; +$a->strings["Your current password to confirm the changes"] = "Ditt gjeldende passord for å bekrefte endringene"; +$a->strings["Password:"] = "Passord:"; $a->strings["Basic Settings"] = "Grunninnstillinger"; $a->strings["Email Address:"] = "E-postadresse:"; $a->strings["Your Timezone:"] = "Din tidssone:"; @@ -1182,18 +1182,18 @@ $a->strings["No suggestions available. If this is a new site, please try again i $a->strings["Ignore/Hide"] = "Ignorér/Skjul"; $a->strings["People Search"] = "Personsøk"; $a->strings["No matches"] = "Ingen treff"; -$a->strings["No videos selected"] = ""; +$a->strings["No videos selected"] = "Ingen videoer er valgt"; $a->strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset."; $a->strings["View Album"] = "Vis album"; -$a->strings["Recent Videos"] = ""; -$a->strings["Upload New Videos"] = ""; +$a->strings["Recent Videos"] = "Nye videoer"; +$a->strings["Upload New Videos"] = "Last opp nye videoer"; $a->strings["Tag removed"] = "Fjernet tag"; $a->strings["Remove Item Tag"] = "Fjern tag"; $a->strings["Select a tag to remove: "] = "Velg en tag å fjerne:"; $a->strings["Item not found"] = "Fant ikke elementet"; $a->strings["Edit post"] = "Endre innlegg"; $a->strings["Event title and start time are required."] = "Hendelsens tittel og starttidspunkt er påkrevet."; -$a->strings["l, F j"] = ""; +$a->strings["l, F j"] = "l, F j"; $a->strings["Edit event"] = "Rediger hendelse"; $a->strings["Create New Event"] = "Lag ny hendelse"; $a->strings["Previous"] = "Forrige"; @@ -1329,8 +1329,8 @@ $a->strings["%s and You"] = "%s og du"; $a->strings["Delete conversation"] = "Slett samtale"; $a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; $a->strings["%d message"] = array( - 0 => "", - 1 => "", + 0 => "%d melding", + 1 => "%d meldinger", ); $a->strings["Message not available."] = "Melding utilgjengelig."; $a->strings["Delete message"] = "Slett melding"; @@ -1478,7 +1478,7 @@ $a->strings["Go to the Help Section"] = "Gå til Hjelp-siden"; $a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Våre hjelpesider kan leses for flere detaljer og ressurser om andre egenskaper ved programmet."; $a->strings["Requested profile is not available."] = "Profil utilgjengelig."; $a->strings["Tips for New Members"] = "Tips til nye medlemmer"; -$a->strings["Friendica Communications Server - Setup"] = ""; +$a->strings["Friendica Communications Server - Setup"] = "Friendica kommunikasjonstjeneste - oppsett"; $a->strings["Could not connect to database."] = "Kunne ikke koble til database."; $a->strings["Could not create table."] = "Kunne ikke lage tabell."; $a->strings["Your Friendica site database has been installed."] = "Databasen til Friendica-nettstedet ditt har blitt installert."; @@ -1503,9 +1503,9 @@ $a->strings["If you don't have a command line version of PHP installed on server $a->strings["PHP executable path"] = "PHP kjørefil sin sti"; $a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Skriv inn hele stien til php kjørefilen. Du kan la denne stå blank for å fortsette installasjonen."; $a->strings["Command line PHP"] = "Kommandolinje PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; -$a->strings["Found PHP version: "] = ""; -$a->strings["PHP cli binary"] = ""; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP kjørefilen er ikke php cli binærfil (kan være cgi-fgci versjon)"; +$a->strings["Found PHP version: "] = "Fant PHP-versjon:"; +$a->strings["PHP cli binary"] = "PHP cli binærfil"; $a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" aktivert."; $a->strings["This is required for message delivery to work."] = "Dette er nødvendig for at meldingslevering skal virke."; $a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; @@ -1558,8 +1558,8 @@ $a->strings["Done Editing"] = "Behandling ferdig"; $a->strings["Image uploaded successfully."] = "Bilde ble lastet opp."; $a->strings["Not available."] = "Ikke tilgjengelig."; $a->strings["%d comment"] = array( - 0 => "", - 1 => "", + 0 => "%d kommentar", + 1 => "%d kommentarer", ); $a->strings["like"] = "liker"; $a->strings["dislike"] = "liker ikke"; @@ -1582,18 +1582,18 @@ $a->strings["save to folder"] = "lagre i mappe"; $a->strings["to"] = "til"; $a->strings["Wall-to-Wall"] = "vegg-til-vegg"; $a->strings["via Wall-To-Wall:"] = "via vegg-til-vegg"; -$a->strings["This entry was edited"] = ""; +$a->strings["This entry was edited"] = "Denne oppføringen ble endret"; $a->strings["via"] = "via"; -$a->strings["Theme settings"] = ""; -$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; -$a->strings["Set font-size for posts and comments"] = ""; -$a->strings["Set theme width"] = ""; -$a->strings["Color scheme"] = ""; -$a->strings["Set line-height for posts and comments"] = ""; -$a->strings["Set resolution for middle column"] = ""; -$a->strings["Set color scheme"] = ""; -$a->strings["Set twitter search term"] = ""; -$a->strings["Set zoomfactor for Earth Layer"] = ""; +$a->strings["Theme settings"] = "Temainnstillinger"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Angi størrelsesendringen for bilder i innlegg og kommentarer (bredde og høyde)"; +$a->strings["Set font-size for posts and comments"] = "Angi skriftstørrelse for innlegg og kommentarer"; +$a->strings["Set theme width"] = "Angi temabredde"; +$a->strings["Color scheme"] = "Fargekart"; +$a->strings["Set line-height for posts and comments"] = "Angi linjeavstand for innlegg og kommentarer"; +$a->strings["Set resolution for middle column"] = "Angi oppløsning for midtkolonnen"; +$a->strings["Set color scheme"] = "Angi fargekart"; +$a->strings["Set twitter search term"] = "Angi twitter søkeord"; +$a->strings["Set zoomfactor for Earth Layer"] = "Angi zoomfaktor for Earth Layer"; $a->strings["Set longitude (X) for Earth Layers"] = "Angi lengdegrad (X) for Earth Layers"; $a->strings["Set latitude (Y) for Earth Layers"] = "Angi breddegrad (Y) for Earth Layers"; $a->strings["Community Pages"] = "Felleskapssider"; @@ -1602,7 +1602,7 @@ $a->strings["Community Profiles"] = "Fellesskapsprofiler"; $a->strings["Help or @NewHere ?"] = "Hjelp eller @NewHere ?"; $a->strings["Connect Services"] = "Forbindelse til tjenester"; $a->strings["Find Friends"] = "Finn venner"; -$a->strings["Last tweets"] = ""; +$a->strings["Last tweets"] = "Siste kvitringer"; $a->strings["Last users"] = "Siste brukere"; $a->strings["Last photos"] = "Siste bilder"; $a->strings["Last likes"] = "Siste liker"; @@ -1610,42 +1610,42 @@ $a->strings["Your contacts"] = "Dine kontakter"; $a->strings["Local Directory"] = "Lokal katalog"; $a->strings["Set zoomfactor for Earth Layers"] = "Angi zoomfaktor for Earth Layers"; $a->strings["Last Tweets"] = "Siste Tweets"; -$a->strings["Show/hide boxes at right-hand column:"] = ""; -$a->strings["Set colour scheme"] = ""; -$a->strings["Alignment"] = ""; -$a->strings["Left"] = ""; -$a->strings["Center"] = ""; -$a->strings["Posts font size"] = ""; -$a->strings["Textareas font size"] = ""; +$a->strings["Show/hide boxes at right-hand column:"] = "Vis/skjul bokser i kolonnen til høyre:"; +$a->strings["Set colour scheme"] = "Angi fargekart"; +$a->strings["Alignment"] = "Justering"; +$a->strings["Left"] = "Venstre"; +$a->strings["Center"] = "Midtstilt"; +$a->strings["Posts font size"] = "Skriftstørrelse for innlegg"; +$a->strings["Textareas font size"] = "Skriftstørrelse for tekstområder"; $a->strings["toggle mobile"] = "Velg mobilvisning"; $a->strings["Delete this item?"] = "Slett dette elementet?"; -$a->strings["show fewer"] = ""; +$a->strings["show fewer"] = "vis færre"; $a->strings["Update %s failed. See error logs."] = "Oppdatering %s mislyktes. Se feilloggene."; -$a->strings["Update Error at %s"] = ""; +$a->strings["Update Error at %s"] = "Oppdateringsfeil i %s"; $a->strings["Create a New Account"] = "Lag en ny konto"; $a->strings["Nickname or Email address: "] = "Kallenavn eller epostadresse: "; $a->strings["Password: "] = "Passord: "; -$a->strings["Remember me"] = ""; -$a->strings["Or login using OpenID: "] = ""; +$a->strings["Remember me"] = "Husk meg"; +$a->strings["Or login using OpenID: "] = "Eller logg inn med OpenID:"; $a->strings["Forgot your password?"] = "Glemt passordet?"; -$a->strings["Website Terms of Service"] = ""; -$a->strings["terms of service"] = ""; -$a->strings["Website Privacy Policy"] = ""; -$a->strings["privacy policy"] = ""; -$a->strings["Requested account is not available."] = ""; +$a->strings["Website Terms of Service"] = "Nettstedets bruksbetingelser"; +$a->strings["terms of service"] = "bruksbetingelser"; +$a->strings["Website Privacy Policy"] = "Nettstedets retningslinjer for personvern"; +$a->strings["privacy policy"] = "retningslinjer for personvern"; +$a->strings["Requested account is not available."] = "Profil utilgjengelig."; $a->strings["Edit profile"] = "Rediger profil"; -$a->strings["Message"] = ""; +$a->strings["Message"] = "Melding"; $a->strings["Manage/edit profiles"] = "Behandle/endre profiler"; -$a->strings["g A l F d"] = ""; -$a->strings["F d"] = ""; +$a->strings["g A l F d"] = "g A l F d"; +$a->strings["F d"] = "F d"; $a->strings["[today]"] = "[idag]"; $a->strings["Birthday Reminders"] = "Fødselsdager"; $a->strings["Birthdays this week:"] = "Fødselsdager denne uken:"; $a->strings["[No description]"] = "[Ingen beskrivelse]"; $a->strings["Event Reminders"] = "Påminnelser om hendelser"; $a->strings["Events this week:"] = "Hendelser denne uken:"; -$a->strings["Status Messages and Posts"] = ""; -$a->strings["Profile Details"] = ""; -$a->strings["Videos"] = ""; -$a->strings["Events and Calendar"] = ""; -$a->strings["Only You Can See This"] = ""; +$a->strings["Status Messages and Posts"] = "Status meldinger og innlegg"; +$a->strings["Profile Details"] = "Profildetaljer"; +$a->strings["Videos"] = "Videoer"; +$a->strings["Events and Calendar"] = "Hendelser og kalender"; +$a->strings["Only You Can See This"] = "Bare du kan se dette"; From 756a1c9c527c84d93ae429893f8658d960263c21 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 21 Jun 2013 09:00:16 +0200 Subject: [PATCH 11/12] IT: update to the strings --- view/it/messages.po | 10 +++++----- view/it/strings.php | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/view/it/messages.po b/view/it/messages.po index abc2d34f9a..f6bcea0138 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" "POT-Creation-Date: 2013-06-12 00:01-0700\n" -"PO-Revision-Date: 2013-06-06 16:10+0000\n" +"PO-Revision-Date: 2013-06-20 08:54+0000\n" "Last-Translator: Francesco Apruzzese \n" "Language-Team: Italian (http://www.transifex.com/projects/p/friendica/language/it/)\n" "MIME-Version: 1.0\n" @@ -3084,7 +3084,7 @@ msgstr "" #: ../../mod/admin.php:526 msgid "Don't embed private images in posts" -msgstr "" +msgstr "Non inglobare immagini private nei post" #: ../../mod/admin.php:526 msgid "" @@ -4335,7 +4335,7 @@ msgstr "Massimo 100 voci" #: ../../mod/settings.php:845 msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" +msgstr "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:" #: ../../mod/settings.php:846 msgid "Don't show emoticons" @@ -4496,7 +4496,7 @@ msgstr "Password Attuale:" #: ../../mod/settings.php:1073 ../../mod/settings.php:1074 msgid "Your current password to confirm the changes" -msgstr "" +msgstr "La tua password attuale per confermare le modifiche" #: ../../mod/settings.php:1074 msgid "Password:" @@ -6822,7 +6822,7 @@ msgstr "da bacheca a bacheca" #: ../../object/Item.php:92 msgid "This entry was edited" -msgstr "" +msgstr "Questa voce è stata modificata" #: ../../object/Item.php:309 msgid "via" diff --git a/view/it/strings.php b/view/it/strings.php index 7f98ac09f5..28a4dc8e3c 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -714,7 +714,7 @@ $a->strings["Don't include post content in email notifications"] = "Non includer $a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy"; $a->strings["Disallow public access to addons listed in the apps menu."] = "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps."; $a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; -$a->strings["Don't embed private images in posts"] = ""; +$a->strings["Don't embed private images in posts"] = "Non inglobare immagini private nei post"; $a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = ""; $a->strings["Block multiple registrations"] = "Blocca registrazioni multiple"; $a->strings["Disallow users to register additional accounts for use as pages."] = "Non permette all'utente di registrare account extra da usare come pagine."; @@ -1009,7 +1009,7 @@ $a->strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x sec $a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo"; $a->strings["Number of items to display per page:"] = "Numero di elementi da mostrare per pagina:"; $a->strings["Maximum of 100 items"] = "Massimo 100 voci"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:"; $a->strings["Don't show emoticons"] = "Non mostrare le emoticons"; $a->strings["Normal Account Page"] = "Pagina Account Normale"; $a->strings["This account is a normal personal profile"] = "Questo account è un normale profilo personale"; @@ -1049,7 +1049,7 @@ $a->strings["New Password:"] = "Nuova password:"; $a->strings["Confirm:"] = "Conferma:"; $a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non effettuare variazioni alla password"; $a->strings["Current Password:"] = "Password Attuale:"; -$a->strings["Your current password to confirm the changes"] = ""; +$a->strings["Your current password to confirm the changes"] = "La tua password attuale per confermare le modifiche"; $a->strings["Password:"] = "Password:"; $a->strings["Basic Settings"] = "Impostazioni base"; $a->strings["Email Address:"] = "Indirizzo Email:"; @@ -1582,7 +1582,7 @@ $a->strings["save to folder"] = "salva nella cartella"; $a->strings["to"] = "a"; $a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; $a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca"; -$a->strings["This entry was edited"] = ""; +$a->strings["This entry was edited"] = "Questa voce è stata modificata"; $a->strings["via"] = "via"; $a->strings["Theme settings"] = "Impostazioni tema"; $a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)"; From 7e23221f95761d2da0179fe1ec96bdc4ef8e6d69 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 22 Jun 2013 07:13:44 +0200 Subject: [PATCH 12/12] FR: update to the strings --- view/fr/messages.po | 15585 ++++++++++++++++++------------------------ view/fr/strings.php | 3291 ++++----- 2 files changed, 7972 insertions(+), 10904 deletions(-) diff --git a/view/fr/messages.po b/view/fr/messages.po index 5845874cd0..7ed67a10c9 100644 --- a/view/fr/messages.po +++ b/view/fr/messages.po @@ -1,18 +1,19 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010, 2011 the Friendica Project +# Copyright (C) 2010, 2011, 2012, 2013 the Friendica Project # This file is distributed under the same license as the Friendica package. # # Translators: -# , 2012. -# , 2012. -# Olivier , 2011-2012. +# Domovoy , 2012 +# ltriay , 2013 +# Marquis_de_Carabas , 2012 +# Olivier , 2011-2012 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" -"POT-Creation-Date: 2012-11-28 10:00-0800\n" -"PO-Revision-Date: 2012-11-28 08:19+0000\n" -"Last-Translator: Olivier \n" +"POT-Creation-Date: 2013-06-12 00:01-0700\n" +"PO-Revision-Date: 2013-06-21 09:30+0000\n" +"Last-Translator: ltriay \n" "Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7824 +21,22 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Publication réussie." - -#: ../../mod/update_notes.php:41 ../../mod/update_community.php:18 -#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41 -#: ../../mod/update_display.php:22 -msgid "[Embedded content - reload page to view]" -msgstr "[contenu incorporé - rechargez la page pour le voir]" - -#: ../../mod/crepair.php:102 -msgid "Contact settings applied." -msgstr "Réglages du contact appliqués." - -#: ../../mod/crepair.php:104 -msgid "Contact update failed." -msgstr "Impossible d'appliquer les réglages." - -#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55 -#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:995 -#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135 -#: ../../mod/notifications.php:66 ../../mod/contacts.php:147 -#: ../../mod/settings.php:91 ../../mod/settings.php:541 -#: ../../mod/settings.php:546 ../../mod/manage.php:90 ../../mod/network.php:6 -#: ../../mod/notes.php:20 ../../mod/uimport.php:23 ../../mod/wallmessage.php:9 -#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 -#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33 -#: ../../mod/group.php:19 ../../mod/viewcontacts.php:22 -#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:139 -#: ../../mod/item.php:155 ../../mod/mood.php:114 -#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 -#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 -#: ../../mod/message.php:38 ../../mod/message.php:172 -#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25 -#: ../../mod/wall_upload.php:66 ../../mod/follow.php:9 -#: ../../mod/display.php:165 ../../mod/profiles.php:7 -#: ../../mod/profiles.php:424 ../../mod/delegate.php:6 -#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81 -#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510 -#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159 -#: ../../addon/fbpost/fbpost.php:165 -#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3977 -#: ../../index.php:333 ../../addon.old/facebook/facebook.php:510 -#: ../../addon.old/facebook/facebook.php:516 -#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165 -#: ../../addon.old/dav/friendica/layout.fnk.php:354 -msgid "Permission denied." -msgstr "Permission refusée." - -#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118 -msgid "Contact not found." -msgstr "Contact introuvable." - -#: ../../mod/crepair.php:135 -msgid "Repair Contact Settings" -msgstr "Réglages du réparateur de contacts" - -#: ../../mod/crepair.php:137 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact." - -#: ../../mod/crepair.php:138 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "une photo" - -#: ../../mod/crepair.php:144 -msgid "Return to contact editor" -msgstr "Retour à l'éditeur de contact" - -#: ../../mod/crepair.php:148 ../../mod/settings.php:561 -#: ../../mod/settings.php:587 ../../mod/admin.php:692 ../../mod/admin.php:702 -msgid "Name" -msgstr "Nom" - -#: ../../mod/crepair.php:149 -msgid "Account Nickname" -msgstr "Pseudo du compte" - -#: ../../mod/crepair.php:150 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@NomDuTag - prend le pas sur Nom/Pseudo" - -#: ../../mod/crepair.php:151 -msgid "Account URL" -msgstr "URL du compte" - -#: ../../mod/crepair.php:152 -msgid "Friend Request URL" -msgstr "Echec du téléversement de l'image." - -#: ../../mod/crepair.php:153 -msgid "Friend Confirm URL" -msgstr "Accès public refusé." - -#: ../../mod/crepair.php:154 -msgid "Notification Endpoint URL" -msgstr "Aucune photo sélectionnée" - -#: ../../mod/crepair.php:155 -msgid "Poll/Feed URL" -msgstr "Téléverser des photos" - -#: ../../mod/crepair.php:156 -msgid "New photo from this URL" -msgstr "Nouvelle photo depuis cette URL" - -#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107 -#: ../../mod/events.php:455 ../../mod/photos.php:1028 -#: ../../mod/photos.php:1100 ../../mod/photos.php:1363 -#: ../../mod/photos.php:1403 ../../mod/photos.php:1447 -#: ../../mod/photos.php:1519 ../../mod/install.php:246 -#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199 -#: ../../mod/content.php:693 ../../mod/contacts.php:352 -#: ../../mod/settings.php:559 ../../mod/settings.php:669 -#: ../../mod/settings.php:738 ../../mod/settings.php:810 -#: ../../mod/settings.php:1017 ../../mod/group.php:85 ../../mod/mood.php:137 -#: ../../mod/message.php:301 ../../mod/message.php:487 ../../mod/admin.php:443 -#: ../../mod/admin.php:689 ../../mod/admin.php:826 ../../mod/admin.php:1025 -#: ../../mod/admin.php:1112 ../../mod/profiles.php:597 -#: ../../mod/invite.php:119 ../../addon/fromgplus/fromgplus.php:40 -#: ../../addon/facebook/facebook.php:619 -#: ../../addon/snautofollow/snautofollow.php:64 -#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76 -#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88 -#: ../../addon/page/page.php:211 ../../addon/planets/planets.php:158 -#: ../../addon/uhremotestorage/uhremotestorage.php:89 -#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93 -#: ../../addon/remote_permissions/remote_permissions.php:47 -#: ../../addon/remote_permissions/remote_permissions.php:195 -#: ../../addon/startpage/startpage.php:92 -#: ../../addon/geonames/geonames.php:187 -#: ../../addon/forumlist/forumlist.php:175 -#: ../../addon/impressum/impressum.php:83 -#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57 -#: ../../addon/qcomment/qcomment.php:61 -#: ../../addon/openstreetmap/openstreetmap.php:70 -#: ../../addon/group_text/group_text.php:84 -#: ../../addon/libravatar/libravatar.php:99 -#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:87 -#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84 -#: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95 -#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93 -#: ../../addon/jappixmini/jappixmini.php:307 -#: ../../addon/statusnet/statusnet.php:278 -#: ../../addon/statusnet/statusnet.php:292 -#: ../../addon/statusnet/statusnet.php:318 -#: ../../addon/statusnet/statusnet.php:325 -#: ../../addon/statusnet/statusnet.php:353 -#: ../../addon/statusnet/statusnet.php:685 ../../addon/tumblr/tumblr.php:90 -#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88 -#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48 -#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180 -#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:506 -#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77 -#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103 -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/diabook/theme.php:600 -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 -#: ../../object/Item.php:570 ../../addon.old/fromgplus/fromgplus.php:40 -#: ../../addon.old/facebook/facebook.php:619 -#: ../../addon.old/snautofollow/snautofollow.php:64 -#: ../../addon.old/bg/bg.php:90 ../../addon.old/fbpost/fbpost.php:226 -#: ../../addon.old/yourls/yourls.php:76 ../../addon.old/ljpost/ljpost.php:93 -#: ../../addon.old/nsfw/nsfw.php:88 ../../addon.old/page/page.php:211 -#: ../../addon.old/planets/planets.php:158 -#: ../../addon.old/uhremotestorage/uhremotestorage.php:89 -#: ../../addon.old/randplace/randplace.php:177 -#: ../../addon.old/dwpost/dwpost.php:93 ../../addon.old/drpost/drpost.php:110 -#: ../../addon.old/startpage/startpage.php:92 -#: ../../addon.old/geonames/geonames.php:187 -#: ../../addon.old/oembed.old/oembed.php:41 -#: ../../addon.old/forumlist/forumlist.php:175 -#: ../../addon.old/impressum/impressum.php:83 -#: ../../addon.old/notimeline/notimeline.php:64 -#: ../../addon.old/blockem/blockem.php:57 -#: ../../addon.old/qcomment/qcomment.php:61 -#: ../../addon.old/openstreetmap/openstreetmap.php:70 -#: ../../addon.old/group_text/group_text.php:84 -#: ../../addon.old/libravatar/libravatar.php:99 -#: ../../addon.old/libertree/libertree.php:90 -#: ../../addon.old/altpager/altpager.php:87 -#: ../../addon.old/mathjax/mathjax.php:42 -#: ../../addon.old/editplain/editplain.php:84 -#: ../../addon.old/blackout/blackout.php:98 -#: ../../addon.old/gravatar/gravatar.php:95 -#: ../../addon.old/pageheader/pageheader.php:55 -#: ../../addon.old/ijpost/ijpost.php:93 -#: ../../addon.old/jappixmini/jappixmini.php:307 -#: ../../addon.old/statusnet/statusnet.php:278 -#: ../../addon.old/statusnet/statusnet.php:292 -#: ../../addon.old/statusnet/statusnet.php:318 -#: ../../addon.old/statusnet/statusnet.php:325 -#: ../../addon.old/statusnet/statusnet.php:353 -#: ../../addon.old/statusnet/statusnet.php:576 -#: ../../addon.old/tumblr/tumblr.php:90 -#: ../../addon.old/numfriends/numfriends.php:85 -#: ../../addon.old/gnot/gnot.php:88 ../../addon.old/wppost/wppost.php:110 -#: ../../addon.old/showmore/showmore.php:48 ../../addon.old/piwik/piwik.php:89 -#: ../../addon.old/twitter/twitter.php:180 -#: ../../addon.old/twitter/twitter.php:209 -#: ../../addon.old/twitter/twitter.php:394 ../../addon.old/irc/irc.php:55 -#: ../../addon.old/fromapp/fromapp.php:77 -#: ../../addon.old/blogger/blogger.php:102 -#: ../../addon.old/posterous/posterous.php:103 -msgid "Submit" -msgstr "Envoyer" - -#: ../../mod/help.php:79 -msgid "Help:" -msgstr "Aide:" - -#: ../../mod/help.php:84 ../../addon/dav/friendica/layout.fnk.php:225 -#: ../../include/nav.php:86 ../../addon.old/dav/friendica/layout.fnk.php:225 -msgid "Help" -msgstr "Aide" - -#: ../../mod/help.php:90 ../../index.php:218 -msgid "Not Found" -msgstr "Non trouvé" - -#: ../../mod/help.php:93 ../../index.php:221 -msgid "Page not found." -msgstr "Page introuvable." - -#: ../../mod/wall_attach.php:69 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "La taille du fichier dépasse la limite de %d" - -#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 -msgid "File upload failed." -msgstr "Le téléversement a échoué." - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggestion d'amitié/contact envoyée." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggérer des amis/contacts" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggérer un ami/contact pour %s" - -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "Vous devez donner un nom et un horaire de début à l'événement." - -#: ../../mod/events.php:279 -msgid "l, F j" -msgstr "l, F j" - -#: ../../mod/events.php:301 -msgid "Edit event" -msgstr "Editer l'événement" - -#: ../../mod/events.php:323 ../../include/text.php:1190 -msgid "link to source" -msgstr "lien original" - -#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:90 -#: ../../include/nav.php:52 ../../boot.php:1748 -msgid "Events" -msgstr "Événements" - -#: ../../mod/events.php:348 -msgid "Create New Event" -msgstr "Créer un nouvel événement" - -#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263 -#: ../../addon.old/dav/friendica/layout.fnk.php:263 -msgid "Previous" -msgstr "Précédent" - -#: ../../mod/events.php:350 ../../mod/install.php:205 -#: ../../addon/dav/friendica/layout.fnk.php:266 -#: ../../addon.old/dav/friendica/layout.fnk.php:266 -msgid "Next" -msgstr "Suivant" - -#: ../../mod/events.php:423 -msgid "hour:minute" -msgstr "heures:minutes" - -#: ../../mod/events.php:433 -msgid "Event details" -msgstr "Détails de l'événement" - -#: ../../mod/events.php:434 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "Le format est %s %s. La date de début et le nom sont nécessaires." - -#: ../../mod/events.php:436 -msgid "Event Starts:" -msgstr "Début de l'événement:" - -#: ../../mod/events.php:436 ../../mod/events.php:450 -msgid "Required" -msgstr "Requis" - -#: ../../mod/events.php:439 -msgid "Finish date/time is not known or not relevant" -msgstr "Date/heure de fin inconnue ou sans objet" - -#: ../../mod/events.php:441 -msgid "Event Finishes:" -msgstr "Fin de l'événement:" - -#: ../../mod/events.php:444 -msgid "Adjust for viewer timezone" -msgstr "Ajuster à la zone horaire du visiteur" - -#: ../../mod/events.php:446 -msgid "Description:" -msgstr "Description:" - -#: ../../mod/events.php:448 ../../mod/directory.php:134 -#: ../../addon/forumdirectory/forumdirectory.php:156 -#: ../../include/event.php:40 ../../include/bb2diaspora.php:412 -#: ../../boot.php:1278 -msgid "Location:" -msgstr "Localisation:" - -#: ../../mod/events.php:450 -msgid "Title:" -msgstr "Titre :" - -#: ../../mod/events.php:452 -msgid "Share this event" -msgstr "Partager cet événement" - -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:145 -#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:560 -#: ../../mod/settings.php:586 ../../addon/js_upload/js_upload.php:45 -#: ../../include/conversation.php:1009 -#: ../../addon.old/js_upload/js_upload.php:45 -msgid "Cancel" -msgstr "Annuler" - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Étiquette enlevée" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Enlever l'étiquette de l'élément" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Choisir une étiquette à enlever: " - -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 -#: ../../addon/dav/common/wdcal_edit.inc.php:468 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:468 -msgid "Remove" -msgstr "Utiliser comme photo de profil" - -#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autoriser l'application à se connecter" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Retournez à votre application et saisissez ce Code de Sécurité : " - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Merci de vous connecter pour continuer." - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Voulez-vous autoriser cette application à accéder à vos notices et contacts, et/ou à créer des notices à votre place?" - -#: ../../mod/api.php:105 ../../mod/dfrn_request.php:835 -#: ../../mod/settings.php:933 ../../mod/settings.php:939 -#: ../../mod/settings.php:947 ../../mod/settings.php:951 -#: ../../mod/settings.php:956 ../../mod/settings.php:962 -#: ../../mod/settings.php:968 ../../mod/settings.php:974 -#: ../../mod/settings.php:1004 ../../mod/settings.php:1005 -#: ../../mod/settings.php:1006 ../../mod/settings.php:1007 -#: ../../mod/settings.php:1008 ../../mod/register.php:237 -#: ../../mod/profiles.php:577 -msgid "Yes" -msgstr "Oui" - -#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836 -#: ../../mod/settings.php:933 ../../mod/settings.php:939 -#: ../../mod/settings.php:947 ../../mod/settings.php:951 -#: ../../mod/settings.php:956 ../../mod/settings.php:962 -#: ../../mod/settings.php:968 ../../mod/settings.php:974 -#: ../../mod/settings.php:1004 ../../mod/settings.php:1005 -#: ../../mod/settings.php:1006 ../../mod/settings.php:1007 -#: ../../mod/settings.php:1008 ../../mod/register.php:238 -#: ../../mod/profiles.php:578 -msgid "No" -msgstr "Non" - -#: ../../mod/photos.php:51 ../../boot.php:1741 -msgid "Photo Albums" -msgstr "Albums photo" - -#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1009 -#: ../../mod/photos.php:1092 ../../mod/photos.php:1107 -#: ../../mod/photos.php:1562 ../../mod/photos.php:1574 -#: ../../addon/communityhome/communityhome.php:110 -#: ../../view/theme/diabook/theme.php:486 -#: ../../addon.old/communityhome/communityhome.php:110 -msgid "Contact Photos" -msgstr "Photos du contact" - -#: ../../mod/photos.php:66 ../../mod/photos.php:1123 ../../mod/photos.php:1612 -msgid "Upload New Photos" -msgstr "Téléverser de nouvelles photos" - -#: ../../mod/photos.php:79 ../../mod/settings.php:23 -msgid "everybody" -msgstr "tout le monde" - -#: ../../mod/photos.php:143 -msgid "Contact information unavailable" -msgstr "Informations de contact indisponibles" - -#: ../../mod/photos.php:154 ../../mod/photos.php:676 ../../mod/photos.php:1092 -#: ../../mod/photos.php:1107 ../../mod/profile_photo.php:74 -#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 -#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 -#: ../../mod/profile_photo.php:305 -#: ../../addon/communityhome/communityhome.php:111 -#: ../../view/theme/diabook/theme.php:487 ../../include/user.php:324 -#: ../../include/user.php:331 ../../include/user.php:338 -#: ../../addon.old/communityhome/communityhome.php:111 -msgid "Profile Photos" -msgstr "Photos du profil" - -#: ../../mod/photos.php:164 -msgid "Album not found." -msgstr "Album introuvable." - -#: ../../mod/photos.php:182 ../../mod/photos.php:1101 -msgid "Delete Album" -msgstr "Effacer l'album" - -#: ../../mod/photos.php:245 ../../mod/photos.php:1364 -msgid "Delete Photo" -msgstr "Effacer la photo" - -#: ../../mod/photos.php:607 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "" - -#: ../../mod/photos.php:607 -msgid "a photo" -msgstr "" - -#: ../../mod/photos.php:712 ../../addon/js_upload/js_upload.php:321 -#: ../../addon.old/js_upload/js_upload.php:315 -msgid "Image exceeds size limit of " -msgstr "L'image dépasse la taille maximale de " - -#: ../../mod/photos.php:720 -msgid "Image file is empty." -msgstr "Fichier image vide." - -#: ../../mod/photos.php:752 ../../mod/profile_photo.php:153 -#: ../../mod/wall_upload.php:112 -msgid "Unable to process image." -msgstr "Impossible de traiter l'image." - -#: ../../mod/photos.php:779 ../../mod/profile_photo.php:301 -#: ../../mod/wall_upload.php:138 -msgid "Image upload failed." -msgstr "Le téléversement de l'image a échoué." - -#: ../../mod/photos.php:865 ../../mod/community.php:18 -#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17 -#: ../../mod/display.php:7 ../../mod/search.php:89 ../../mod/directory.php:31 -#: ../../addon/forumdirectory/forumdirectory.php:53 -msgid "Public access denied." -msgstr "Accès public refusé." - -#: ../../mod/photos.php:875 -msgid "No photos selected" -msgstr "Aucune photo sélectionnée" - -#: ../../mod/photos.php:976 -msgid "Access to this item is restricted." -msgstr "Accès restreint à cet élément." - -#: ../../mod/photos.php:1037 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos." - -#: ../../mod/photos.php:1043 -msgid "Upload Photos" -msgstr "Téléverser des photos" - -#: ../../mod/photos.php:1047 ../../mod/photos.php:1096 -msgid "New album name: " -msgstr "Nom du nouvel album: " - -#: ../../mod/photos.php:1048 -msgid "or existing album name: " -msgstr "ou nom d'un album existant: " - -#: ../../mod/photos.php:1049 -msgid "Do not show a status post for this upload" -msgstr "Ne pas publier de notice pour cet envoi" - -#: ../../mod/photos.php:1051 ../../mod/photos.php:1359 -msgid "Permissions" -msgstr "Permissions" - -#: ../../mod/photos.php:1111 -msgid "Edit Album" -msgstr "Éditer l'album" - -#: ../../mod/photos.php:1117 -msgid "Show Newest First" -msgstr "Plus récent d'abord" - -#: ../../mod/photos.php:1119 -msgid "Show Oldest First" -msgstr "Plus ancien d'abord" - -#: ../../mod/photos.php:1143 ../../mod/photos.php:1595 -msgid "View Photo" -msgstr "Voir la photo" - -#: ../../mod/photos.php:1178 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Interdit. L'accès à cet élément peut avoir été restreint." - -#: ../../mod/photos.php:1180 -msgid "Photo not available" -msgstr "Photo indisponible" - -#: ../../mod/photos.php:1236 -msgid "View photo" -msgstr "Voir photo" - -#: ../../mod/photos.php:1236 -msgid "Edit photo" -msgstr "Éditer la photo" - -#: ../../mod/photos.php:1237 -msgid "Use as profile photo" -msgstr "Utiliser comme photo de profil" - -#: ../../mod/photos.php:1243 ../../mod/content.php:603 -#: ../../object/Item.php:104 -msgid "Private Message" -msgstr "Message privé" - -#: ../../mod/photos.php:1262 -msgid "View Full Size" -msgstr "Voir en taille réelle" - -#: ../../mod/photos.php:1336 -msgid "Tags: " -msgstr "Étiquettes: " - -#: ../../mod/photos.php:1339 -msgid "[Remove any tag]" -msgstr "[Retirer toutes les étiquettes]" - -#: ../../mod/photos.php:1349 -msgid "Rotate CW (right)" -msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" - -#: ../../mod/photos.php:1350 -msgid "Rotate CCW (left)" -msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" - -#: ../../mod/photos.php:1352 -msgid "New album name" -msgstr "Nom du nouvel album" - -#: ../../mod/photos.php:1355 -msgid "Caption" -msgstr "Titre" - -#: ../../mod/photos.php:1357 -msgid "Add a Tag" -msgstr "Ajouter une étiquette" - -#: ../../mod/photos.php:1361 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" - -#: ../../mod/photos.php:1381 ../../mod/content.php:667 -#: ../../object/Item.php:202 -msgid "I like this (toggle)" -msgstr "J'aime (bascule)" - -#: ../../mod/photos.php:1382 ../../mod/content.php:668 -#: ../../object/Item.php:203 -msgid "I don't like this (toggle)" -msgstr "Je n'aime pas (bascule)" - -#: ../../mod/photos.php:1383 ../../include/conversation.php:969 -msgid "Share" -msgstr "Partager" - -#: ../../mod/photos.php:1384 ../../mod/editpost.php:121 -#: ../../mod/content.php:482 ../../mod/content.php:848 -#: ../../mod/wallmessage.php:152 ../../mod/message.php:300 -#: ../../mod/message.php:488 ../../include/conversation.php:624 -#: ../../include/conversation.php:988 ../../object/Item.php:269 -msgid "Please wait" -msgstr "Patientez" - -#: ../../mod/photos.php:1400 ../../mod/photos.php:1444 -#: ../../mod/photos.php:1516 ../../mod/content.php:690 -#: ../../object/Item.php:567 -msgid "This is you" -msgstr "C'est vous" - -#: ../../mod/photos.php:1402 ../../mod/photos.php:1446 -#: ../../mod/photos.php:1518 ../../mod/content.php:692 ../../boot.php:608 -#: ../../object/Item.php:266 ../../object/Item.php:569 -msgid "Comment" -msgstr "Commenter" - -#: ../../mod/photos.php:1404 ../../mod/photos.php:1448 -#: ../../mod/photos.php:1520 ../../mod/editpost.php:142 -#: ../../mod/content.php:702 ../../include/conversation.php:1006 -#: ../../object/Item.php:579 -msgid "Preview" -msgstr "Aperçu" - -#: ../../mod/photos.php:1488 ../../mod/content.php:439 -#: ../../mod/content.php:724 ../../mod/settings.php:622 -#: ../../mod/group.php:168 ../../mod/admin.php:696 -#: ../../include/conversation.php:569 ../../object/Item.php:118 -msgid "Delete" -msgstr "Supprimer" - -#: ../../mod/photos.php:1601 -msgid "View Album" -msgstr "Voir l'album" - -#: ../../mod/photos.php:1610 -msgid "Recent Photos" -msgstr "Photos récentes" - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Indisponible." - -#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:92 -#: ../../include/nav.php:101 -msgid "Community" -msgstr "Communauté" - -#: ../../mod/community.php:61 ../../mod/community.php:86 -#: ../../mod/search.php:162 ../../mod/search.php:188 -msgid "No results." -msgstr "Aucun résultat." - -#: ../../mod/friendica.php:55 -msgid "This is Friendica, version" -msgstr "Motorisé par Friendica version" - -#: ../../mod/friendica.php:56 -msgid "running at web location" -msgstr "hébergé sur" - -#: ../../mod/friendica.php:58 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Merci de vous rendre sur Friendica.com si vous souhaitez en savoir plus sur le projet Friendica." - -#: ../../mod/friendica.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Pour les rapports de bugs: rendez vous sur" - -#: ../../mod/friendica.php:61 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com" - -#: ../../mod/friendica.php:75 -msgid "Installed plugins/addons/apps:" -msgstr "Extensions/applications installées:" - -#: ../../mod/friendica.php:88 -msgid "No installed plugins/addons/apps" -msgstr "Aucune extension/greffon/application installée" - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Élément introuvable" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Éditer la publication" - -#: ../../mod/editpost.php:91 ../../include/conversation.php:955 -msgid "Post to Email" -msgstr "Publier aussi par courriel" - -#: ../../mod/editpost.php:106 ../../mod/content.php:711 -#: ../../mod/settings.php:621 ../../object/Item.php:108 -msgid "Edit" -msgstr "Éditer" - -#: ../../mod/editpost.php:107 ../../mod/wallmessage.php:150 -#: ../../mod/message.php:298 ../../mod/message.php:485 -#: ../../include/conversation.php:970 -msgid "Upload photo" -msgstr "Joindre photo" - -#: ../../mod/editpost.php:108 ../../include/conversation.php:971 -msgid "upload photo" -msgstr "envoi image" - -#: ../../mod/editpost.php:109 ../../include/conversation.php:972 -msgid "Attach file" -msgstr "Joindre fichier" - -#: ../../mod/editpost.php:110 ../../include/conversation.php:973 -msgid "attach file" -msgstr "ajout fichier" - -#: ../../mod/editpost.php:111 ../../mod/wallmessage.php:151 -#: ../../mod/message.php:299 ../../mod/message.php:486 -#: ../../include/conversation.php:974 -msgid "Insert web link" -msgstr "Insérer lien web" - -#: ../../mod/editpost.php:112 ../../include/conversation.php:975 -msgid "web link" -msgstr "lien web" - -#: ../../mod/editpost.php:113 ../../include/conversation.php:976 -msgid "Insert video link" -msgstr "Insérer un lien video" - -#: ../../mod/editpost.php:114 ../../include/conversation.php:977 -msgid "video link" -msgstr "lien vidéo" - -#: ../../mod/editpost.php:115 ../../include/conversation.php:978 -msgid "Insert audio link" -msgstr "Insérer un lien audio" - -#: ../../mod/editpost.php:116 ../../include/conversation.php:979 -msgid "audio link" -msgstr "lien audio" - -#: ../../mod/editpost.php:117 ../../include/conversation.php:980 -msgid "Set your location" -msgstr "Définir votre localisation" - -#: ../../mod/editpost.php:118 ../../include/conversation.php:981 -msgid "set location" -msgstr "spéc. localisation" - -#: ../../mod/editpost.php:119 ../../include/conversation.php:982 -msgid "Clear browser location" -msgstr "Effacer la localisation du navigateur" - -#: ../../mod/editpost.php:120 ../../include/conversation.php:983 -msgid "clear location" -msgstr "supp. localisation" - -#: ../../mod/editpost.php:122 ../../include/conversation.php:989 -msgid "Permission settings" -msgstr "Réglages des permissions" - -#: ../../mod/editpost.php:130 ../../include/conversation.php:998 -msgid "CC: email addresses" -msgstr "CC: adresses de courriel" - -#: ../../mod/editpost.php:131 ../../include/conversation.php:999 -msgid "Public post" -msgstr "Notice publique" - -#: ../../mod/editpost.php:134 ../../include/conversation.php:985 -msgid "Set title" -msgstr "Définir un titre" - -#: ../../mod/editpost.php:136 ../../include/conversation.php:987 -msgid "Categories (comma-separated list)" -msgstr "Catégories (séparées par des virgules)" - -#: ../../mod/editpost.php:137 ../../include/conversation.php:1001 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Exemple: bob@exemple.com, mary@exemple.com" - -#: ../../mod/dfrn_request.php:93 -msgid "This introduction has already been accepted." -msgstr "Cette introduction a déjà été acceptée." - -#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512 -msgid "Profile location is not valid or does not contain profile information." -msgstr "L'emplacement du profil est invalide ou ne contient pas de profil valide." - -#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable." - -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:519 -msgid "Warning: profile location has no profile photo." -msgstr "Attention: l'emplacement du profil n'a pas de photo de profil." - -#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d paramètre requis n'a pas été trouvé à l'endroit indiqué" -msgstr[1] "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué" - -#: ../../mod/dfrn_request.php:170 -msgid "Introduction complete." -msgstr "Phase d'introduction achevée." - -#: ../../mod/dfrn_request.php:209 -msgid "Unrecoverable protocol error." -msgstr "Erreur de protocole non-récupérable." - -#: ../../mod/dfrn_request.php:237 -msgid "Profile unavailable." -msgstr "Profil indisponible." - -#: ../../mod/dfrn_request.php:262 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s a reçu trop de demandes d'introduction aujourd'hui." - -#: ../../mod/dfrn_request.php:263 -msgid "Spam protection measures have been invoked." -msgstr "Des mesures de protection contre le spam ont été déclenchées." - -#: ../../mod/dfrn_request.php:264 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer." - -#: ../../mod/dfrn_request.php:326 -msgid "Invalid locator" -msgstr "Localisateur invalide" - -#: ../../mod/dfrn_request.php:335 -msgid "Invalid email address." -msgstr "Adresse courriel invalide." - -#: ../../mod/dfrn_request.php:361 -msgid "This account has not been configured for email. Request failed." -msgstr "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée." - -#: ../../mod/dfrn_request.php:457 -msgid "Unable to resolve your name at the provided location." -msgstr "Impossible de résoudre votre nom à l'emplacement fourni." - -#: ../../mod/dfrn_request.php:470 -msgid "You have already introduced yourself here." -msgstr "Vous vous êtes déjà présenté ici." - -#: ../../mod/dfrn_request.php:474 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Il semblerait que vous soyez déjà ami avec %s." - -#: ../../mod/dfrn_request.php:495 -msgid "Invalid profile URL." -msgstr "URL de profil invalide." - -#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "URL de profil interdite." - -#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:124 -msgid "Failed to update contact record." -msgstr "Échec de mise-à-jour du contact." - -#: ../../mod/dfrn_request.php:591 -msgid "Your introduction has been sent." -msgstr "Votre introduction a été envoyée." - -#: ../../mod/dfrn_request.php:644 -msgid "Please login to confirm introduction." -msgstr "Connectez-vous pour confirmer l'introduction." - -#: ../../mod/dfrn_request.php:658 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Identité incorrecte actuellement connectée. Merci de vous connecter à ce profil." - -#: ../../mod/dfrn_request.php:669 -msgid "Hide this contact" -msgstr "Cacher ce contact" - -#: ../../mod/dfrn_request.php:672 -#, php-format -msgid "Welcome home %s." -msgstr "Bienvenue chez vous, %s." - -#: ../../mod/dfrn_request.php:673 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Merci de confirmer votre demande d'introduction auprès de %s." - -#: ../../mod/dfrn_request.php:674 -msgid "Confirm" -msgstr "Confirmer" - -#: ../../mod/dfrn_request.php:715 ../../include/items.php:3356 -msgid "[Name Withheld]" -msgstr "[Nom non-publié]" - -#: ../../mod/dfrn_request.php:810 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:" - -#: ../../mod/dfrn_request.php:826 -msgid "Connect as an email follower (Coming soon)" -msgstr "Connecter un utilisateur de courriel (bientôt)" - -#: ../../mod/dfrn_request.php:828 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "Si vous n'êtes pas encore membre du web social libre, suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui." - -#: ../../mod/dfrn_request.php:831 -msgid "Friend/Connection Request" -msgstr "Requête de relation/amitié" - -#: ../../mod/dfrn_request.php:832 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: ../../mod/dfrn_request.php:833 -msgid "Please answer the following:" -msgstr "Merci de répondre à ce qui suit:" - -#: ../../mod/dfrn_request.php:834 -#, php-format -msgid "Does %s know you?" -msgstr "Est-ce que %s vous connaît?" - -#: ../../mod/dfrn_request.php:837 -msgid "Add a personal note:" -msgstr "Ajouter une note personnelle:" - -#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../mod/dfrn_request.php:840 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:681 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../mod/dfrn_request.php:842 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de recherche Diaspora." - -#: ../../mod/dfrn_request.php:843 -msgid "Your Identity Address:" -msgstr "Votre adresse d'identité:" - -#: ../../mod/dfrn_request.php:846 -msgid "Submit Request" -msgstr "Envoyer la requête" - -#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:138 -msgid "Account settings" -msgstr "Compte" - -#: ../../mod/uexport.php:14 ../../mod/settings.php:40 -msgid "Display settings" -msgstr "Affichage" - -#: ../../mod/uexport.php:20 ../../mod/settings.php:46 -msgid "Connector settings" -msgstr "Connecteurs" - -#: ../../mod/uexport.php:25 ../../mod/settings.php:51 -msgid "Plugin settings" -msgstr "Extensions" - -#: ../../mod/uexport.php:30 ../../mod/settings.php:56 -msgid "Connected apps" -msgstr "Applications connectées" - -#: ../../mod/uexport.php:35 ../../mod/uexport.php:80 ../../mod/settings.php:61 -msgid "Export personal data" -msgstr "Exporter" - -#: ../../mod/uexport.php:40 ../../mod/settings.php:66 -msgid "Remove account" -msgstr "Supprimer le compte" - -#: ../../mod/uexport.php:48 ../../mod/settings.php:74 -#: ../../mod/newmember.php:22 ../../mod/admin.php:785 ../../mod/admin.php:990 -#: ../../addon/dav/friendica/layout.fnk.php:225 -#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:615 -#: ../../include/nav.php:138 ../../addon.old/dav/friendica/layout.fnk.php:225 -#: ../../addon.old/mathjax/mathjax.php:36 -msgid "Settings" -msgstr "Réglages" - -#: ../../mod/uexport.php:72 -msgid "Export account" -msgstr "Exporter le compte" - -#: ../../mod/uexport.php:72 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur." - -#: ../../mod/uexport.php:73 -msgid "Export all" -msgstr "Tout exporter" - -#: ../../mod/uexport.php:73 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)." - -#: ../../mod/install.php:117 -msgid "Friendica Social Communications Server - Setup" -msgstr "Serveur de communications sociales Friendica - Installation" - -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr "Impossible de se connecter à la base." - -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "Impossible de créer une table." - -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "La base de données de votre site Friendica a bien été installée." - -#: ../../mod/install.php:138 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql." - -#: ../../mod/install.php:139 ../../mod/install.php:204 -#: ../../mod/install.php:488 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Référez-vous au fichier \"INSTALL.txt\"." - -#: ../../mod/install.php:201 -msgid "System check" -msgstr "Vérifications système" - -#: ../../mod/install.php:206 -msgid "Check again" -msgstr "Vérifier à nouveau" - -#: ../../mod/install.php:225 -msgid "Database connection" -msgstr "Connexion à la base de données" - -#: ../../mod/install.php:226 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données." - -#: ../../mod/install.php:227 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages." - -#: ../../mod/install.php:228 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer." - -#: ../../mod/install.php:232 -msgid "Database Server Name" -msgstr "Serveur de base de données" - -#: ../../mod/install.php:233 -msgid "Database Login Name" -msgstr "Nom d'utilisateur de la base" - -#: ../../mod/install.php:234 -msgid "Database Login Password" -msgstr "Mot de passe de la base" - -#: ../../mod/install.php:235 -msgid "Database Name" -msgstr "Nom de la base" - -#: ../../mod/install.php:236 ../../mod/install.php:275 -msgid "Site administrator email address" -msgstr "Adresse électronique de l'administrateur du site" - -#: ../../mod/install.php:236 ../../mod/install.php:275 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration." - -#: ../../mod/install.php:240 ../../mod/install.php:278 -msgid "Please select a default timezone for your website" -msgstr "Sélectionner un fuseau horaire par défaut pour votre site" - -#: ../../mod/install.php:265 -msgid "Site settings" -msgstr "Réglages du site" - -#: ../../mod/install.php:318 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web." - -#: ../../mod/install.php:319 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron. See 'Activating scheduled tasks'" -msgstr "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir 'Activating scheduled tasks'" - -#: ../../mod/install.php:323 -msgid "PHP executable path" -msgstr "Chemin vers l'exécutable de PHP" - -#: ../../mod/install.php:323 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation." - -#: ../../mod/install.php:328 -msgid "Command line PHP" -msgstr "Version \"ligne de commande\" de PHP" - -#: ../../mod/install.php:337 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé." - -#: ../../mod/install.php:338 -msgid "This is required for message delivery to work." -msgstr "Ceci est requis pour que la livraison des messages fonctionne." - -#: ../../mod/install.php:340 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/install.php:361 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement" - -#: ../../mod/install.php:362 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/install.php:364 -msgid "Generate encryption keys" -msgstr "Générer les clés de chiffrement" - -#: ../../mod/install.php:371 -msgid "libCurl PHP module" -msgstr "Module libCurl de PHP" - -#: ../../mod/install.php:372 -msgid "GD graphics PHP module" -msgstr "Module GD (graphiques) de PHP" - -#: ../../mod/install.php:373 -msgid "OpenSSL PHP module" -msgstr "Module OpenSSL de PHP" - -#: ../../mod/install.php:374 -msgid "mysqli PHP module" -msgstr "Module Mysqli de PHP" - -#: ../../mod/install.php:375 -msgid "mb_string PHP module" -msgstr "Module mb_string de PHP" - -#: ../../mod/install.php:380 ../../mod/install.php:382 -msgid "Apache mod_rewrite module" -msgstr "Module mod_rewrite Apache" - -#: ../../mod/install.php:380 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé." - -#: ../../mod/install.php:388 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Erreur: Le module PHP \"libCURL\" est requis mais pas installé." - -#: ../../mod/install.php:392 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé." - -#: ../../mod/install.php:396 -msgid "Error: openssl PHP module required but not installed." -msgstr "Erreur: Le module PHP \"openssl\" est requis mais pas installé." - -#: ../../mod/install.php:400 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Erreur: Le module PHP \"mysqli\" est requis mais pas installé." - -#: ../../mod/install.php:404 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Erreur: le module PHP mb_string est requis mais pas installé." - -#: ../../mod/install.php:421 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable." - -#: ../../mod/install.php:422 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez." - -#: ../../mod/install.php:423 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Friendica top folder." -msgstr "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica." - -#: ../../mod/install.php:424 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"." - -#: ../../mod/install.php:427 -msgid ".htconfig.php is writable" -msgstr "Fichier .htconfig.php accessible en écriture" - -#: ../../mod/install.php:439 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur." - -#: ../../mod/install.php:441 -msgid "Url rewrite is working" -msgstr "La réécriture d'URL fonctionne." - -#: ../../mod/install.php:451 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement." - -#: ../../mod/install.php:475 -msgid "Errors encountered creating database tables." -msgstr "Des erreurs ont été signalées lors de la création des tables." - -#: ../../mod/install.php:486 -msgid "

What next

" -msgstr "

Ensuite

" - -#: ../../mod/install.php:487 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'." - -#: ../../mod/localtime.php:12 ../../include/event.php:11 -#: ../../include/bb2diaspora.php:390 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Conversion temporelle" - -#: ../../mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire." - -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "Temps UTC : %s" - -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Zone de temps courante : %s" - -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Temps local converti : %s" - -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Sélectionner votre zone :" - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Solliciter" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "solliciter (poke/...) quelqu'un" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Destinataire" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Choisissez ce que vous voulez faire au destinataire" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Rendez ce message privé" - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Correpondance de profils" - -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut." - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "s'intéresse à:" - -#: ../../mod/match.php:58 ../../mod/suggest.php:59 -#: ../../include/contact_widgets.php:9 ../../boot.php:1216 -msgid "Connect" -msgstr "Relier" - -#: ../../mod/match.php:65 ../../mod/dirfind.php:60 -msgid "No matches" -msgstr "Aucune correspondance" - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informations de confidentialité indisponibles." - -#: ../../mod/lockview.php:48 -#: ../../addon/remote_permissions/remote_permissions.php:123 -msgid "Visible to:" -msgstr "Visible par:" - -#: ../../mod/content.php:119 ../../mod/network.php:594 -msgid "No such group" -msgstr "Groupe inexistant" - -#: ../../mod/content.php:130 ../../mod/network.php:605 -msgid "Group is empty" -msgstr "Groupe vide" - -#: ../../mod/content.php:134 ../../mod/network.php:609 -msgid "Group: " -msgstr "Groupe: " - -#: ../../mod/content.php:438 ../../mod/content.php:723 -#: ../../include/conversation.php:568 ../../object/Item.php:117 -msgid "Select" -msgstr "Sélectionner" - -#: ../../mod/content.php:455 ../../mod/content.php:817 -#: ../../mod/content.php:818 ../../include/conversation.php:587 -#: ../../object/Item.php:234 ../../object/Item.php:235 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Voir le profil de %s @ %s" - -#: ../../mod/content.php:465 ../../mod/content.php:829 -#: ../../include/conversation.php:607 ../../object/Item.php:248 -#, php-format -msgid "%s from %s" -msgstr "%s de %s" - -#: ../../mod/content.php:480 ../../include/conversation.php:622 -msgid "View in context" -msgstr "Voir dans le contexte" - -#: ../../mod/content.php:586 ../../object/Item.php:288 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commentaire" -msgstr[1] "%d commentaires" - -#: ../../mod/content.php:588 ../../include/text.php:1446 -#: ../../object/Item.php:290 ../../object/Item.php:303 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "commentaire" - -#: ../../mod/content.php:589 ../../addon/page/page.php:77 -#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119 -#: ../../include/contact_widgets.php:204 ../../boot.php:609 -#: ../../object/Item.php:291 ../../addon.old/page/page.php:77 -#: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119 -msgid "show more" -msgstr "montrer plus" - -#: ../../mod/content.php:667 ../../object/Item.php:202 -msgid "like" -msgstr "aime" - -#: ../../mod/content.php:668 ../../object/Item.php:203 -msgid "dislike" -msgstr "n'aime pas" - -#: ../../mod/content.php:670 ../../object/Item.php:205 -msgid "Share this" -msgstr "Partager" - -#: ../../mod/content.php:670 ../../object/Item.php:205 -msgid "share" -msgstr "partager" - -#: ../../mod/content.php:694 ../../object/Item.php:571 -msgid "Bold" -msgstr "Gras" - -#: ../../mod/content.php:695 ../../object/Item.php:572 -msgid "Italic" -msgstr "Italique" - -#: ../../mod/content.php:696 ../../object/Item.php:573 -msgid "Underline" -msgstr "Souligné" - -#: ../../mod/content.php:697 ../../object/Item.php:574 -msgid "Quote" -msgstr "Citation" - -#: ../../mod/content.php:698 ../../object/Item.php:575 -msgid "Code" -msgstr "Code" - -#: ../../mod/content.php:699 ../../object/Item.php:576 -msgid "Image" -msgstr "Image" - -#: ../../mod/content.php:700 ../../object/Item.php:577 -msgid "Link" -msgstr "Lien" - -#: ../../mod/content.php:701 ../../object/Item.php:578 -msgid "Video" -msgstr "Vidéo" - -#: ../../mod/content.php:736 ../../object/Item.php:181 -msgid "add star" -msgstr "mett en avant" - -#: ../../mod/content.php:737 ../../object/Item.php:182 -msgid "remove star" -msgstr "ne plus mettre en avant" - -#: ../../mod/content.php:738 ../../object/Item.php:183 -msgid "toggle star status" -msgstr "mettre en avant" - -#: ../../mod/content.php:741 ../../object/Item.php:186 -msgid "starred" -msgstr "mis en avant" - -#: ../../mod/content.php:742 ../../object/Item.php:191 -msgid "add tag" -msgstr "ajouter un tag" - -#: ../../mod/content.php:746 ../../object/Item.php:121 -msgid "save to folder" -msgstr "sauver vers dossier" - -#: ../../mod/content.php:819 ../../object/Item.php:236 -msgid "to" -msgstr "à" - -#: ../../mod/content.php:820 ../../object/Item.php:238 -msgid "Wall-to-Wall" -msgstr "Inter-mur" - -#: ../../mod/content.php:821 ../../object/Item.php:239 -msgid "via Wall-To-Wall:" -msgstr "en Inter-mur:" - -#: ../../mod/home.php:30 ../../addon/communityhome/communityhome.php:179 -#: ../../addon.old/communityhome/communityhome.php:179 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenue sur %s" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Identifiant de demande invalide." - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:210 -msgid "Discard" -msgstr "Rejeter" - -#: ../../mod/notifications.php:51 ../../mod/notifications.php:163 -#: ../../mod/notifications.php:209 ../../mod/contacts.php:325 -#: ../../mod/contacts.php:379 -msgid "Ignore" -msgstr "Ignorer" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "Système" - -#: ../../mod/notifications.php:83 ../../include/nav.php:113 -msgid "Network" -msgstr "Réseau" - -#: ../../mod/notifications.php:88 ../../mod/network.php:444 -msgid "Personal" -msgstr "Personnel" - -#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:86 -#: ../../include/nav.php:77 ../../include/nav.php:116 -msgid "Home" -msgstr "Profil" - -#: ../../mod/notifications.php:98 ../../include/nav.php:122 -msgid "Introductions" -msgstr "Introductions" - -#: ../../mod/notifications.php:103 ../../mod/message.php:180 -#: ../../include/nav.php:129 -msgid "Messages" -msgstr "Messages" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Voir les demandes ignorées" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Cacher les demandes ignorées" - -#: ../../mod/notifications.php:148 ../../mod/notifications.php:194 -msgid "Notification type: " -msgstr "Type de notification: " - -#: ../../mod/notifications.php:149 -msgid "Friend Suggestion" -msgstr "Suggestion d'amitié/contact" - -#: ../../mod/notifications.php:151 -#, php-format -msgid "suggested by %s" -msgstr "suggéré(e) par %s" - -#: ../../mod/notifications.php:156 ../../mod/notifications.php:203 -#: ../../mod/contacts.php:385 -msgid "Hide this contact from others" -msgstr "Cacher ce contact aux autres" - -#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 -msgid "Post a new friend activity" -msgstr "Poster concernant les nouvelles amitiés" - -#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 -msgid "if applicable" -msgstr "si possible" - -#: ../../mod/notifications.php:160 ../../mod/notifications.php:207 -#: ../../mod/admin.php:694 -msgid "Approve" -msgstr "Approuver" - -#: ../../mod/notifications.php:180 -msgid "Claims to be known to you: " -msgstr "Prétend que vous le connaissez: " - -#: ../../mod/notifications.php:180 -msgid "yes" -msgstr "oui" - -#: ../../mod/notifications.php:180 -msgid "no" -msgstr "non" - -#: ../../mod/notifications.php:187 -msgid "Approve as: " -msgstr "Approuver en tant que: " - -#: ../../mod/notifications.php:188 -msgid "Friend" -msgstr "Ami" - -#: ../../mod/notifications.php:189 -msgid "Sharer" -msgstr "Initiateur du partage" - -#: ../../mod/notifications.php:189 -msgid "Fan/Admirer" -msgstr "Fan/Admirateur" - -#: ../../mod/notifications.php:195 -msgid "Friend/Connect Request" -msgstr "Demande de connexion/relation" - -#: ../../mod/notifications.php:195 -msgid "New Follower" -msgstr "Nouvel abonné" - -#: ../../mod/notifications.php:216 -msgid "No introductions." -msgstr "Aucune demande d'introduction." - -#: ../../mod/notifications.php:219 ../../include/nav.php:123 -msgid "Notifications" -msgstr "Notifications" - -#: ../../mod/notifications.php:256 ../../mod/notifications.php:381 -#: ../../mod/notifications.php:468 -#, php-format -msgid "%s liked %s's post" -msgstr "%s a aimé la notice de %s" - -#: ../../mod/notifications.php:265 ../../mod/notifications.php:390 -#: ../../mod/notifications.php:477 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s n'a pas aimé la notice de %s" - -#: ../../mod/notifications.php:279 ../../mod/notifications.php:404 -#: ../../mod/notifications.php:491 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s est désormais ami(e) avec %s" - -#: ../../mod/notifications.php:286 ../../mod/notifications.php:411 -#, php-format -msgid "%s created a new post" -msgstr "%s a publié une notice" - -#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 -#: ../../mod/notifications.php:500 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s a commenté une notice de %s" - -#: ../../mod/notifications.php:301 -msgid "No more network notifications." -msgstr "Aucune notification du réseau." - -#: ../../mod/notifications.php:305 -msgid "Network Notifications" -msgstr "Notifications du réseau" - -#: ../../mod/notifications.php:331 ../../mod/notify.php:61 -msgid "No more system notifications." -msgstr "Pas plus de notifications système." - -#: ../../mod/notifications.php:335 ../../mod/notify.php:65 -msgid "System Notifications" -msgstr "Notifications du système" - -#: ../../mod/notifications.php:426 -msgid "No more personal notifications." -msgstr "Aucun notification personnelle." - -#: ../../mod/notifications.php:430 -msgid "Personal Notifications" -msgstr "Notifications personnelles" - -#: ../../mod/notifications.php:507 -msgid "No more home notifications." -msgstr "Aucune notification de la page d'accueil." - -#: ../../mod/notifications.php:511 -msgid "Home Notifications" -msgstr "Notifications de page d'accueil" - -#: ../../mod/contacts.php:85 ../../mod/contacts.php:165 -msgid "Could not access contact record." -msgstr "Impossible d'accéder à l'enregistrement du contact." - -#: ../../mod/contacts.php:99 -msgid "Could not locate selected profile." -msgstr "Impossible de localiser le profil séléctionné." - -#: ../../mod/contacts.php:122 -msgid "Contact updated." -msgstr "Contact mis-à-jour." - -#: ../../mod/contacts.php:187 -msgid "Contact has been blocked" -msgstr "Le contact a été bloqué" - -#: ../../mod/contacts.php:187 -msgid "Contact has been unblocked" -msgstr "Le contact n'est plus bloqué" - -#: ../../mod/contacts.php:201 -msgid "Contact has been ignored" -msgstr "Le contact a été ignoré" - -#: ../../mod/contacts.php:201 -msgid "Contact has been unignored" -msgstr "Le contact n'est plus ignoré" - -#: ../../mod/contacts.php:220 -msgid "Contact has been archived" -msgstr "Contact archivé" - -#: ../../mod/contacts.php:220 -msgid "Contact has been unarchived" -msgstr "Contact désarchivé" - -#: ../../mod/contacts.php:233 -msgid "Contact has been removed." -msgstr "Ce contact a été retiré." - -#: ../../mod/contacts.php:267 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Vous êtes ami (et réciproquement) avec %s" - -#: ../../mod/contacts.php:271 -#, php-format -msgid "You are sharing with %s" -msgstr "Vous partagez avec %s" - -#: ../../mod/contacts.php:276 -#, php-format -msgid "%s is sharing with you" -msgstr "%s partage avec vous" - -#: ../../mod/contacts.php:293 -msgid "Private communications are not available for this contact." -msgstr "Les communications privées ne sont pas disponibles pour ce contact." - -#: ../../mod/contacts.php:296 -msgid "Never" -msgstr "Jamais" - -#: ../../mod/contacts.php:300 -msgid "(Update was successful)" -msgstr "(Mise à jour effectuée avec succès)" - -#: ../../mod/contacts.php:300 -msgid "(Update was not successful)" -msgstr "(Mise à jour échouée)" - -#: ../../mod/contacts.php:302 -msgid "Suggest friends" -msgstr "Suggérer amitié/contact" - -#: ../../mod/contacts.php:306 -#, php-format -msgid "Network type: %s" -msgstr "Type de réseau %s" - -#: ../../mod/contacts.php:309 ../../include/contact_widgets.php:199 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contact en commun" -msgstr[1] "%d contacts en commun" - -#: ../../mod/contacts.php:314 -msgid "View all contacts" -msgstr "Voir tous les contacts" - -#: ../../mod/contacts.php:319 ../../mod/contacts.php:378 -#: ../../mod/admin.php:698 -msgid "Unblock" -msgstr "Débloquer" - -#: ../../mod/contacts.php:319 ../../mod/contacts.php:378 -#: ../../mod/admin.php:697 -msgid "Block" -msgstr "Bloquer" - -#: ../../mod/contacts.php:322 -msgid "Toggle Blocked status" -msgstr "(dés)activer l'état \"bloqué\"" - -#: ../../mod/contacts.php:325 ../../mod/contacts.php:379 -msgid "Unignore" -msgstr "Ne plus ignorer" - -#: ../../mod/contacts.php:328 -msgid "Toggle Ignored status" -msgstr "(dés)activer l'état \"ignoré\"" - -#: ../../mod/contacts.php:332 -msgid "Unarchive" -msgstr "Désarchiver" - -#: ../../mod/contacts.php:332 -msgid "Archive" -msgstr "Archiver" - -#: ../../mod/contacts.php:335 -msgid "Toggle Archive status" -msgstr "(dés)activer l'état \"archivé\"" - -#: ../../mod/contacts.php:338 -msgid "Repair" -msgstr "Réparer" - -#: ../../mod/contacts.php:341 -msgid "Advanced Contact Settings" -msgstr "Réglages avancés du contact" - -#: ../../mod/contacts.php:347 -msgid "Communications lost with this contact!" -msgstr "Communications perdues avec ce contact !" - -#: ../../mod/contacts.php:350 -msgid "Contact Editor" -msgstr "Éditeur de contact" - -#: ../../mod/contacts.php:353 -msgid "Profile Visibility" -msgstr "Visibilité du profil" - -#: ../../mod/contacts.php:354 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée." - -#: ../../mod/contacts.php:355 -msgid "Contact Information / Notes" -msgstr "Informations de contact / Notes" - -#: ../../mod/contacts.php:356 -msgid "Edit contact notes" -msgstr "Éditer les notes des contacts" - -#: ../../mod/contacts.php:361 ../../mod/contacts.php:553 -#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visiter le profil de %s [%s]" - -#: ../../mod/contacts.php:362 -msgid "Block/Unblock contact" -msgstr "Bloquer/débloquer ce contact" - -#: ../../mod/contacts.php:363 -msgid "Ignore contact" -msgstr "Ignorer ce contact" - -#: ../../mod/contacts.php:364 -msgid "Repair URL settings" -msgstr "Réparer les réglages d'URL" - -#: ../../mod/contacts.php:365 -msgid "View conversations" -msgstr "Voir les conversations" - -#: ../../mod/contacts.php:367 -msgid "Delete contact" -msgstr "Effacer ce contact" - -#: ../../mod/contacts.php:371 -msgid "Last update:" -msgstr "Dernière mise-à-jour :" - -#: ../../mod/contacts.php:373 -msgid "Update public posts" -msgstr "Met ses entrées publiques à jour: " - -#: ../../mod/contacts.php:375 ../../mod/admin.php:1170 -msgid "Update now" -msgstr "Mettre à jour" - -#: ../../mod/contacts.php:382 -msgid "Currently blocked" -msgstr "Actuellement bloqué" - -#: ../../mod/contacts.php:383 -msgid "Currently ignored" -msgstr "Actuellement ignoré" - -#: ../../mod/contacts.php:384 -msgid "Currently archived" -msgstr "Actuellement archivé" - -#: ../../mod/contacts.php:385 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Les réponses et \"j'aime\" à vos contenus publics peuvent être toujours visibles" - -#: ../../mod/contacts.php:438 -msgid "Suggestions" -msgstr "Suggestions" - -#: ../../mod/contacts.php:441 -msgid "Suggest potential friends" -msgstr "Suggérer des amis potentiels" - -#: ../../mod/contacts.php:444 ../../mod/group.php:191 -msgid "All Contacts" -msgstr "Tous les contacts" - -#: ../../mod/contacts.php:447 -msgid "Show all contacts" -msgstr "Montrer tous les contacts" - -#: ../../mod/contacts.php:450 -msgid "Unblocked" -msgstr "Non-bloqués" - -#: ../../mod/contacts.php:453 -msgid "Only show unblocked contacts" -msgstr "Ne montrer que les contacts non-bloqués" - -#: ../../mod/contacts.php:457 -msgid "Blocked" -msgstr "Bloqués" - -#: ../../mod/contacts.php:460 -msgid "Only show blocked contacts" -msgstr "Ne montrer que les contacts bloqués" - -#: ../../mod/contacts.php:464 -msgid "Ignored" -msgstr "Ignorés" - -#: ../../mod/contacts.php:467 -msgid "Only show ignored contacts" -msgstr "Ne montrer que les contacts ignorés" - -#: ../../mod/contacts.php:471 -msgid "Archived" -msgstr "Archivés" - -#: ../../mod/contacts.php:474 -msgid "Only show archived contacts" -msgstr "Ne montrer que les contacts archivés" - -#: ../../mod/contacts.php:478 -msgid "Hidden" -msgstr "Cachés" - -#: ../../mod/contacts.php:481 -msgid "Only show hidden contacts" -msgstr "Ne montrer que les contacts masqués" - -#: ../../mod/contacts.php:529 -msgid "Mutual Friendship" -msgstr "Relation réciproque" - -#: ../../mod/contacts.php:533 -msgid "is a fan of yours" -msgstr "Vous suit" - -#: ../../mod/contacts.php:537 -msgid "you are a fan of" -msgstr "Vous le/la suivez" - -#: ../../mod/contacts.php:554 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Éditer le contact" - -#: ../../mod/contacts.php:575 ../../view/theme/diabook/theme.php:88 -#: ../../include/nav.php:142 -msgid "Contacts" -msgstr "Contacts" - -#: ../../mod/contacts.php:579 -msgid "Search your contacts" -msgstr "Rechercher dans vos contacts" - -#: ../../mod/contacts.php:580 ../../mod/directory.php:59 -#: ../../addon/forumdirectory/forumdirectory.php:81 -msgid "Finding: " -msgstr "Trouvé: " - -#: ../../mod/contacts.php:581 ../../mod/directory.php:61 -#: ../../addon/forumdirectory/forumdirectory.php:83 -#: ../../include/contact_widgets.php:33 -msgid "Find" -msgstr "Trouver" - -#: ../../mod/lostpass.php:16 -msgid "No valid account found." -msgstr "Impossible de trouver un compte valide." - -#: ../../mod/lostpass.php:32 -msgid "Password reset request issued. Check your email." -msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel." - -#: ../../mod/lostpass.php:43 -#, php-format -msgid "Password reset requested at %s" -msgstr "Requête de réinitialisation de mot de passe à %s" - -#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107 -#: ../../mod/register.php:91 ../../mod/register.php:145 -#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752 -#: ../../addon/facebook/facebook.php:702 -#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661 -#: ../../addon/public_server/public_server.php:62 -#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3365 -#: ../../boot.php:824 ../../addon.old/facebook/facebook.php:702 -#: ../../addon.old/facebook/facebook.php:1200 -#: ../../addon.old/fbpost/fbpost.php:661 -#: ../../addon.old/public_server/public_server.php:62 -#: ../../addon.old/testdrive/testdrive.php:67 -msgid "Administrator" -msgstr "Administrateur" - -#: ../../mod/lostpass.php:65 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué." - -#: ../../mod/lostpass.php:83 ../../boot.php:963 -msgid "Password Reset" -msgstr "Réinitialiser le mot de passe" - -#: ../../mod/lostpass.php:84 -msgid "Your password has been reset as requested." -msgstr "Votre mot de passe a bien été réinitialisé." - -#: ../../mod/lostpass.php:85 -msgid "Your new password is" -msgstr "Votre nouveau mot de passe est " - -#: ../../mod/lostpass.php:86 -msgid "Save or copy your new password - and then" -msgstr "Sauvez ou copiez ce nouveau mot de passe - puis" - -#: ../../mod/lostpass.php:87 -msgid "click here to login" -msgstr "cliquez ici pour vous connecter" - -#: ../../mod/lostpass.php:88 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Votre mot de passe peut être changé depuis la page <em>Réglages</em>, une fois que vous serez connecté." - -#: ../../mod/lostpass.php:119 -msgid "Forgot your Password?" -msgstr "Mot de passe oublié?" - -#: ../../mod/lostpass.php:120 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel." - -#: ../../mod/lostpass.php:121 -msgid "Nickname or Email: " -msgstr "Pseudo ou Courriel: " - -#: ../../mod/lostpass.php:122 -msgid "Reset" -msgstr "Réinitialiser" - -#: ../../mod/settings.php:35 -msgid "Additional features" -msgstr "" - -#: ../../mod/settings.php:118 -msgid "Missing some important data!" -msgstr "Il manque certaines informations importantes!" - -#: ../../mod/settings.php:121 ../../mod/settings.php:585 -msgid "Update" -msgstr "Mises-à-jour" - -#: ../../mod/settings.php:226 -msgid "Failed to connect with email account using the settings provided." -msgstr "Impossible de se connecter au compte courriel configuré." - -#: ../../mod/settings.php:231 -msgid "Email settings updated." -msgstr "Réglages de courriel mis-à-jour." - -#: ../../mod/settings.php:246 -msgid "Features updated" -msgstr "" - -#: ../../mod/settings.php:306 -msgid "Passwords do not match. Password unchanged." -msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." - -#: ../../mod/settings.php:311 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué." - -#: ../../mod/settings.php:322 -msgid "Password changed." -msgstr "Mots de passe changés." - -#: ../../mod/settings.php:324 -msgid "Password update failed. Please try again." -msgstr "Le changement de mot de passe a échoué. Merci de recommencer." - -#: ../../mod/settings.php:389 -msgid " Please use a shorter name." -msgstr " Merci d'utiliser un nom plus court." - -#: ../../mod/settings.php:391 -msgid " Name too short." -msgstr " Nom trop court." - -#: ../../mod/settings.php:397 -msgid " Not valid email." -msgstr " Email invalide." - -#: ../../mod/settings.php:399 -msgid " Cannot change to that email." -msgstr " Impossible de changer pour cet email." - -#: ../../mod/settings.php:453 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut." - -#: ../../mod/settings.php:457 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut." - -#: ../../mod/settings.php:487 ../../addon/facebook/facebook.php:495 -#: ../../addon/fbpost/fbpost.php:144 -#: ../../addon/remote_permissions/remote_permissions.php:204 -#: ../../addon/impressum/impressum.php:78 -#: ../../addon/openstreetmap/openstreetmap.php:80 -#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105 -#: ../../addon/twitter/twitter.php:501 -#: ../../addon.old/facebook/facebook.php:495 -#: ../../addon.old/fbpost/fbpost.php:144 -#: ../../addon.old/impressum/impressum.php:78 -#: ../../addon.old/openstreetmap/openstreetmap.php:80 -#: ../../addon.old/mathjax/mathjax.php:66 ../../addon.old/piwik/piwik.php:105 -#: ../../addon.old/twitter/twitter.php:389 -msgid "Settings updated." -msgstr "Réglages mis à jour." - -#: ../../mod/settings.php:558 ../../mod/settings.php:584 -#: ../../mod/settings.php:620 -msgid "Add application" -msgstr "Ajouter une application" - -#: ../../mod/settings.php:562 ../../mod/settings.php:588 -#: ../../addon/statusnet/statusnet.php:679 -#: ../../addon.old/statusnet/statusnet.php:570 -msgid "Consumer Key" -msgstr "Clé utilisateur" - -#: ../../mod/settings.php:563 ../../mod/settings.php:589 -#: ../../addon/statusnet/statusnet.php:678 -#: ../../addon.old/statusnet/statusnet.php:569 -msgid "Consumer Secret" -msgstr "Secret utilisateur" - -#: ../../mod/settings.php:564 ../../mod/settings.php:590 -msgid "Redirect" -msgstr "Rediriger" - -#: ../../mod/settings.php:565 ../../mod/settings.php:591 -msgid "Icon url" -msgstr "URL de l'icône" - -#: ../../mod/settings.php:576 -msgid "You can't edit this application." -msgstr "Vous ne pouvez pas éditer cette application." - -#: ../../mod/settings.php:619 -msgid "Connected Apps" -msgstr "Applications connectées" - -#: ../../mod/settings.php:623 -msgid "Client key starts with" -msgstr "La clé cliente commence par" - -#: ../../mod/settings.php:624 -msgid "No name" -msgstr "Sans nom" - -#: ../../mod/settings.php:625 -msgid "Remove authorization" -msgstr "Révoquer l'autorisation" - -#: ../../mod/settings.php:637 -msgid "No Plugin settings configured" -msgstr "Pas de réglages d'extensions configurés" - -#: ../../mod/settings.php:645 ../../addon/widgets/widgets.php:123 -#: ../../addon.old/widgets/widgets.php:123 -msgid "Plugin Settings" -msgstr "Extensions" - -#: ../../mod/settings.php:659 -msgid "Off" -msgstr "" - -#: ../../mod/settings.php:659 -msgid "On" -msgstr "" - -#: ../../mod/settings.php:667 -msgid "Additional Features" -msgstr "" - -#: ../../mod/settings.php:681 ../../mod/settings.php:682 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Le support natif pour la connectivité %s est %s" - -#: ../../mod/settings.php:681 ../../mod/settings.php:682 -msgid "enabled" -msgstr "activé" - -#: ../../mod/settings.php:681 ../../mod/settings.php:682 -msgid "disabled" -msgstr "désactivé" - -#: ../../mod/settings.php:682 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:714 -msgid "Email access is disabled on this site." -msgstr "L'accès courriel est désactivé sur ce site." - -#: ../../mod/settings.php:720 -msgid "Connector Settings" -msgstr "Connecteurs" - -#: ../../mod/settings.php:725 -msgid "Email/Mailbox Setup" -msgstr "Réglages de courriel/boîte à lettre" - -#: ../../mod/settings.php:726 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte." - -#: ../../mod/settings.php:727 -msgid "Last successful email check:" -msgstr "Dernière vérification réussie des courriels:" - -#: ../../mod/settings.php:729 -msgid "IMAP server name:" -msgstr "Nom du serveur IMAP:" - -#: ../../mod/settings.php:730 -msgid "IMAP port:" -msgstr "Port IMAP:" - -#: ../../mod/settings.php:731 -msgid "Security:" -msgstr "Sécurité:" - -#: ../../mod/settings.php:731 ../../mod/settings.php:736 -#: ../../addon/dav/common/wdcal_edit.inc.php:191 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:191 -msgid "None" -msgstr "Aucun(e)" - -#: ../../mod/settings.php:732 -msgid "Email login name:" -msgstr "Nom de connexion:" - -#: ../../mod/settings.php:733 -msgid "Email password:" -msgstr "Mot de passe:" - -#: ../../mod/settings.php:734 -msgid "Reply-to address:" -msgstr "Adresse de réponse:" - -#: ../../mod/settings.php:735 -msgid "Send public posts to all email contacts:" -msgstr "Les notices publiques vont à tous les contacts courriel:" - -#: ../../mod/settings.php:736 -msgid "Action after import:" -msgstr "Action après import:" - -#: ../../mod/settings.php:736 -msgid "Mark as seen" -msgstr "Marquer comme vu" - -#: ../../mod/settings.php:736 -msgid "Move to folder" -msgstr "Déplacer vers" - -#: ../../mod/settings.php:737 -msgid "Move to folder:" -msgstr "Déplacer vers:" - -#: ../../mod/settings.php:768 ../../mod/admin.php:402 -msgid "No special theme for mobile devices" -msgstr "Pas de thème particulier pour les terminaux mobiles" - -#: ../../mod/settings.php:808 -msgid "Display Settings" -msgstr "Affichage" - -#: ../../mod/settings.php:814 ../../mod/settings.php:825 -msgid "Display Theme:" -msgstr "Thème d'affichage:" - -#: ../../mod/settings.php:815 -msgid "Mobile Theme:" -msgstr "Thème mobile:" - -#: ../../mod/settings.php:816 -msgid "Update browser every xx seconds" -msgstr "Mettre-à-jour l'affichage toutes les xx secondes" - -#: ../../mod/settings.php:816 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Délai minimum de 10 secondes, pas de maximum" - -#: ../../mod/settings.php:817 -msgid "Number of items to display per page:" -msgstr "Nombre d’éléments par page:" - -#: ../../mod/settings.php:817 -msgid "Maximum of 100 items" -msgstr "Maximum de 100 éléments" - -#: ../../mod/settings.php:818 -msgid "Don't show emoticons" -msgstr "Ne pas afficher les émoticônes (smileys grahiques)" - -#: ../../mod/settings.php:894 -msgid "Normal Account Page" -msgstr "Compte normal" - -#: ../../mod/settings.php:895 -msgid "This account is a normal personal profile" -msgstr "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)" - -#: ../../mod/settings.php:898 -msgid "Soapbox Page" -msgstr "Compte \"boîte à savon\"" - -#: ../../mod/settings.php:899 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'" - -#: ../../mod/settings.php:902 -msgid "Community Forum/Celebrity Account" -msgstr "Compte de communauté/célébrité" - -#: ../../mod/settings.php:903 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'" - -#: ../../mod/settings.php:906 -msgid "Automatic Friend Page" -msgstr "Compte d'\"amitié automatique\"" - -#: ../../mod/settings.php:907 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis" - -#: ../../mod/settings.php:910 -msgid "Private Forum [Experimental]" -msgstr "Forum privé [expérimental]" - -#: ../../mod/settings.php:911 -msgid "Private forum - approved members only" -msgstr "Forum privé - modéré en inscription" - -#: ../../mod/settings.php:923 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:923 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte." - -#: ../../mod/settings.php:933 -msgid "Publish your default profile in your local site directory?" -msgstr "Publier votre profil par défaut sur l'annuaire local de ce site?" - -#: ../../mod/settings.php:939 -msgid "Publish your default profile in the global social directory?" -msgstr "Publier votre profil par défaut sur l'annuaire social global?" - -#: ../../mod/settings.php:947 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?" - -#: ../../mod/settings.php:951 -msgid "Hide your profile details from unknown viewers?" -msgstr "Cacher les détails du profil aux visiteurs inconnus?" - -#: ../../mod/settings.php:956 -msgid "Allow friends to post to your profile page?" -msgstr "Autoriser vos amis à publier sur votre profil?" - -#: ../../mod/settings.php:962 -msgid "Allow friends to tag your posts?" -msgstr "Autoriser vos amis à tagguer vos notices?" - -#: ../../mod/settings.php:968 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?" - -#: ../../mod/settings.php:974 -msgid "Permit unknown people to send you private mail?" -msgstr "Autoriser les messages privés d'inconnus?" - -#: ../../mod/settings.php:982 -msgid "Profile is not published." -msgstr "Ce profil n'est pas publié." - -#: ../../mod/settings.php:985 ../../mod/profile_photo.php:248 -msgid "or" -msgstr "ou" - -#: ../../mod/settings.php:990 -msgid "Your Identity Address is" -msgstr "L'adresse de votre identité est" - -#: ../../mod/settings.php:1001 -msgid "Automatically expire posts after this many days:" -msgstr "Les publications expirent automatiquement après (en jours) :" - -#: ../../mod/settings.php:1001 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Si ce champ est vide, les notices n'expireront pas. Les notices expirées seront supprimées" - -#: ../../mod/settings.php:1002 -msgid "Advanced expiration settings" -msgstr "Réglages avancés de l'expiration" - -#: ../../mod/settings.php:1003 -msgid "Advanced Expiration" -msgstr "Expiration (avancé)" - -#: ../../mod/settings.php:1004 -msgid "Expire posts:" -msgstr "Faire expirer les contenus:" - -#: ../../mod/settings.php:1005 -msgid "Expire personal notes:" -msgstr "Faire expirer les notes personnelles:" - -#: ../../mod/settings.php:1006 -msgid "Expire starred posts:" -msgstr "Faire expirer les contenus marqués:" - -#: ../../mod/settings.php:1007 -msgid "Expire photos:" -msgstr "Faire expirer les photos:" - -#: ../../mod/settings.php:1008 -msgid "Only expire posts by others:" -msgstr "Faire expirer seulement les messages des autres :" - -#: ../../mod/settings.php:1015 -msgid "Account Settings" -msgstr "Compte" - -#: ../../mod/settings.php:1023 -msgid "Password Settings" -msgstr "Réglages de mot de passe" - -#: ../../mod/settings.php:1024 -msgid "New Password:" -msgstr "Nouveau mot de passe:" - -#: ../../mod/settings.php:1025 -msgid "Confirm:" -msgstr "Confirmer:" - -#: ../../mod/settings.php:1025 -msgid "Leave password fields blank unless changing" -msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer" - -#: ../../mod/settings.php:1029 -msgid "Basic Settings" -msgstr "Réglages basiques" - -#: ../../mod/settings.php:1030 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "Nom complet:" - -#: ../../mod/settings.php:1031 -msgid "Email Address:" -msgstr "Adresse courriel:" - -#: ../../mod/settings.php:1032 -msgid "Your Timezone:" -msgstr "Votre fuseau horaire:" - -#: ../../mod/settings.php:1033 -msgid "Default Post Location:" -msgstr "Publication par défaut depuis :" - -#: ../../mod/settings.php:1034 -msgid "Use Browser Location:" -msgstr "Utiliser la localisation géographique du navigateur:" - -#: ../../mod/settings.php:1037 -msgid "Security and Privacy Settings" -msgstr "Réglages de sécurité et vie privée" - -#: ../../mod/settings.php:1039 -msgid "Maximum Friend Requests/Day:" -msgstr "Nombre maximal de requêtes d'amitié/jour:" - -#: ../../mod/settings.php:1039 ../../mod/settings.php:1058 -msgid "(to prevent spam abuse)" -msgstr "(pour limiter l'impact du spam)" - -#: ../../mod/settings.php:1040 -msgid "Default Post Permissions" -msgstr "Permissions par défaut sur les articles" - -#: ../../mod/settings.php:1041 -msgid "(click to open/close)" -msgstr "(cliquer pour ouvrir/fermer)" - -#: ../../mod/settings.php:1058 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum de messages privés d'inconnus par jour:" - -#: ../../mod/settings.php:1061 -msgid "Notification Settings" -msgstr "Réglages de notification" - -#: ../../mod/settings.php:1062 -msgid "By default post a status message when:" -msgstr "Par défaut, poster un statut quand:" - -#: ../../mod/settings.php:1063 -msgid "accepting a friend request" -msgstr "j'accepte un ami" - -#: ../../mod/settings.php:1064 -msgid "joining a forum/community" -msgstr "joignant un forum/une communauté" - -#: ../../mod/settings.php:1065 -msgid "making an interesting profile change" -msgstr "je fais une modification intéressante de mon profil" - -#: ../../mod/settings.php:1066 -msgid "Send a notification email when:" -msgstr "Envoyer un courriel de notification quand:" - -#: ../../mod/settings.php:1067 -msgid "You receive an introduction" -msgstr "Vous recevez une introduction" - -#: ../../mod/settings.php:1068 -msgid "Your introductions are confirmed" -msgstr "Vos introductions sont confirmées" - -#: ../../mod/settings.php:1069 -msgid "Someone writes on your profile wall" -msgstr "Quelqu'un écrit sur votre mur" - -#: ../../mod/settings.php:1070 -msgid "Someone writes a followup comment" -msgstr "Quelqu'un vous commente" - -#: ../../mod/settings.php:1071 -msgid "You receive a private message" -msgstr "Vous recevez un message privé" - -#: ../../mod/settings.php:1072 -msgid "You receive a friend suggestion" -msgstr "Vous avez reçu une suggestion d'ami" - -#: ../../mod/settings.php:1073 -msgid "You are tagged in a post" -msgstr "Vous avez été repéré dans une publication" - -#: ../../mod/settings.php:1074 -msgid "You are poked/prodded/etc. in a post" -msgstr "Vous avez été sollicité dans une publication" - -#: ../../mod/settings.php:1077 -msgid "Advanced Account/Page Type Settings" -msgstr "Paramètres avancés de compte/page" - -#: ../../mod/settings.php:1078 -msgid "Change the behaviour of this account for special situations" -msgstr "Modifier le comportement de ce compte dans certaines situations" - -#: ../../mod/manage.php:94 -msgid "Manage Identities and/or Pages" -msgstr "Gérer les identités et/ou les pages" - -#: ../../mod/manage.php:97 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer." - -#: ../../mod/manage.php:99 -msgid "Select an identity to manage: " -msgstr "Choisir une identité à gérer: " - -#: ../../mod/network.php:181 -msgid "Search Results For:" -msgstr "Résultats pour:" - -#: ../../mod/network.php:224 ../../mod/search.php:21 -msgid "Remove term" -msgstr "Retirer le terme" - -#: ../../mod/network.php:233 ../../mod/search.php:30 -#: ../../include/features.php:41 -msgid "Saved Searches" -msgstr "Recherches" - -#: ../../mod/network.php:234 ../../include/group.php:275 -msgid "add" -msgstr "ajouter" - -#: ../../mod/network.php:397 -msgid "Commented Order" -msgstr "Tri par commentaires" - -#: ../../mod/network.php:400 -msgid "Sort by Comment Date" -msgstr "Trier par date de commentaire" - -#: ../../mod/network.php:403 -msgid "Posted Order" -msgstr "Tri par publications" - -#: ../../mod/network.php:406 -msgid "Sort by Post Date" -msgstr "Trier par date de publication" - -#: ../../mod/network.php:447 -msgid "Posts that mention or involve you" -msgstr "Publications qui vous concernent" - -#: ../../mod/network.php:453 -msgid "New" -msgstr "Nouveau" - -#: ../../mod/network.php:456 -msgid "Activity Stream - by date" -msgstr "Flux d'activités - par date" - -#: ../../mod/network.php:462 -msgid "Shared Links" -msgstr "Liens partagés" - -#: ../../mod/network.php:465 -msgid "Interesting Links" -msgstr "Liens intéressants" - -#: ../../mod/network.php:471 -msgid "Starred" -msgstr "Mis en avant" - -#: ../../mod/network.php:474 -msgid "Favourite Posts" -msgstr "Publications favorites" - -#: ../../mod/network.php:546 -#, php-format -msgid "Warning: This group contains %s member from an insecure network." -msgid_plural "" -"Warning: This group contains %s members from an insecure network." -msgstr[0] "Attention: Ce groupe contient %s membre d'un réseau non-sûr." -msgstr[1] "Attention: Ce groupe contient %s membres d'un réseau non-sûr." - -#: ../../mod/network.php:549 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée." - -#: ../../mod/network.php:619 -msgid "Contact: " -msgstr "Contact: " - -#: ../../mod/network.php:621 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée." - -#: ../../mod/network.php:626 -msgid "Invalid contact." -msgstr "Contact invalide." - -#: ../../mod/notes.php:44 ../../boot.php:1755 -msgid "Personal Notes" -msgstr "Notes personnelles" - -#: ../../mod/notes.php:63 ../../mod/filer.php:30 -#: ../../addon/facebook/facebook.php:770 -#: ../../addon/privacy_image_cache/privacy_image_cache.php:281 -#: ../../addon/fbpost/fbpost.php:267 -#: ../../addon/dav/friendica/layout.fnk.php:441 -#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:688 -#: ../../addon.old/facebook/facebook.php:770 -#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263 -#: ../../addon.old/fbpost/fbpost.php:267 -#: ../../addon.old/dav/friendica/layout.fnk.php:441 -#: ../../addon.old/dav/friendica/layout.fnk.php:488 -msgid "Save" -msgstr "Sauver" - -#: ../../mod/uimport.php:50 ../../mod/register.php:190 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain." - -#: ../../mod/uimport.php:64 -msgid "Import" -msgstr "Importer" - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Migrer le compte" - -#: ../../mod/uimport.php:67 -msgid "" -"You can import an account from another Friendica server.
\r\n" -" You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here.
\r\n" -" This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora" -msgstr "" - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "Fichier du compte" - -#: ../../mod/uimport.php:70 -msgid "" -"To export your accont, go to \"Settings->Export your porsonal data\" and " -"select \"Export account\"" -msgstr "" - -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message." - -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 -msgid "No recipient selected." -msgstr "Pas de destinataire sélectionné." - -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Impossible de vérifier votre localisation." - -#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 -msgid "Message could not be sent." -msgstr "Impossible d'envoyer le message." - -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "Récupération des messages infructueuse." - -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -msgid "Message sent." -msgstr "Message envoyé." - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Pas de destinataire." - -#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131 -#: ../../mod/message.php:249 ../../mod/message.php:257 -#: ../../include/conversation.php:905 ../../include/conversation.php:923 -msgid "Please enter a link URL:" -msgstr "Entrez un lien web:" - -#: ../../mod/wallmessage.php:138 ../../mod/message.php:285 -msgid "Send Private Message" -msgstr "Envoyer un message privé" - -#: ../../mod/wallmessage.php:139 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus." - -#: ../../mod/wallmessage.php:140 ../../mod/message.php:286 -#: ../../mod/message.php:476 -msgid "To:" -msgstr "À:" - -#: ../../mod/wallmessage.php:141 ../../mod/message.php:291 -#: ../../mod/message.php:478 -msgid "Subject:" -msgstr "Sujet:" - -#: ../../mod/wallmessage.php:147 ../../mod/message.php:295 -#: ../../mod/message.php:481 ../../mod/invite.php:113 -msgid "Your message:" -msgstr "Votre message:" - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Bienvenue sur Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Checklist du nouvel utilisateur" - -#: ../../mod/newmember.php:12 -msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page. A link to this page " -"will be visible from your home page for two weeks after your initial " -"registration and then will quietly disappear." -msgstr "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement." - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Bien démarrer" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Friendica pas-à-pas" - -#: ../../mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "Sur votre page d'accueil, dans Conseils aux nouveaux venus - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre." - -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Éditer vos Réglages" - -#: ../../mod/newmember.php:26 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "Sur la page des Réglages - changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre." - -#: ../../mod/newmember.php:28 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished" -" directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver." - -#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 -#: ../../view/theme/diabook/theme.php:87 ../../include/profile_advanced.php:7 -#: ../../include/profile_advanced.php:84 ../../include/nav.php:50 -#: ../../boot.php:1731 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84 +#: ../../include/nav.php:77 ../../mod/profperm.php:103 +#: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88 +#: ../../boot.php:1947 msgid "Profile" msgstr "Profil" -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "Téléverser une photo de profil" +#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1079 +msgid "Full Name:" +msgstr "Nom complet:" -#: ../../mod/newmember.php:36 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make" -" friends than people who do not." -msgstr "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis." - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Éditer votre Profil" - -#: ../../mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Éditez votre profil par défaut à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus." - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Mots-clés du profil" - -#: ../../mod/newmember.php:40 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent." - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Connexions" - -#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239 -#: ../../include/contact_selectors.php:81 -#: ../../addon.old/facebook/facebook.php:728 -#: ../../addon.old/fbpost/fbpost.php:239 -msgid "Facebook" -msgstr "Facebook" - -#: ../../mod/newmember.php:49 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook." - -#: ../../mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "Si ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre." - -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "Importer courriels" - -#: ../../mod/newmember.php:56 -msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" -msgstr "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception." - -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Consulter vos Contacts" - -#: ../../mod/newmember.php:58 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." -msgstr "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire Ajouter un nouveau contact." - -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Consulter l'Annuaire de votre Site" - -#: ../../mod/newmember.php:60 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien Relier ou Suivre sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité." - -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Trouver de nouvelles personnes" - -#: ../../mod/newmember.php:62 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand" -" new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures." - -#: ../../mod/newmember.php:66 ../../include/group.php:270 -msgid "Groups" -msgstr "Groupes" - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Grouper vos contacts" - -#: ../../mod/newmember.php:70 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with" -" each group privately on your Network page." -msgstr "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau." - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Pourquoi mes éléments ne sont pas publics?" - -#: ../../mod/newmember.php:73 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "Friendica respecte votre vie privée. Par défaut, tous vos éléments seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus." - -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "Obtenir de l'aide" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Aller à la section Aide" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Nos pages d'aide peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources." - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Elément non disponible." - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Element introuvable." - -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Groupe créé." - -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Impossible de créer le groupe." - -#: ../../mod/group.php:47 ../../mod/group.php:137 -msgid "Group not found." -msgstr "Groupe introuvable." - -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Groupe renommé." - -#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:332 -msgid "Permission denied" -msgstr "Permission refusée" - -#: ../../mod/group.php:90 -msgid "Create a group of contacts/friends." -msgstr "Créez un groupe de contacts/amis." - -#: ../../mod/group.php:91 ../../mod/group.php:177 -msgid "Group Name: " -msgstr "Nom du groupe: " - -#: ../../mod/group.php:110 -msgid "Group removed." -msgstr "Groupe enlevé." - -#: ../../mod/group.php:112 -msgid "Unable to remove group." -msgstr "Impossible d'enlever le groupe." - -#: ../../mod/group.php:176 -msgid "Group Editor" -msgstr "Éditeur de groupe" - -#: ../../mod/group.php:189 -msgid "Members" -msgstr "Membres" - -#: ../../mod/group.php:221 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." -msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer." - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Identifiant de profil invalide." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Éditer la visibilité du profil" - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Visible par" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Tous les contacts (ayant un accès sécurisé)" - -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." -msgstr "Aucun contact." - -#: ../../mod/viewcontacts.php:76 ../../include/text.php:625 -msgid "View Contacts" -msgstr "Voir les contacts" - -#: ../../mod/register.php:89 ../../mod/regmod.php:52 -#, php-format -msgid "Registration details for %s" -msgstr "Détails d'inscription pour %s" - -#: ../../mod/register.php:97 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Inscription réussie. Vérifiez vos emails pour la suite des instructions." - -#: ../../mod/register.php:101 -msgid "Failed to send email message. Here is the message that failed." -msgstr "Impossible d'envoyer un email. Voici le message qui a échoué." - -#: ../../mod/register.php:106 -msgid "Your registration can not be processed." -msgstr "Votre inscription ne peut être traitée." - -#: ../../mod/register.php:143 -#, php-format -msgid "Registration request at %s" -msgstr "Demande d'inscription à %s" - -#: ../../mod/register.php:152 -msgid "Your registration is pending approval by the site owner." -msgstr "Votre inscription attend une validation du propriétaire du site." - -#: ../../mod/register.php:218 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"." - -#: ../../mod/register.php:219 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste." - -#: ../../mod/register.php:220 -msgid "Your OpenID (optional): " -msgstr "Votre OpenID (facultatif): " - -#: ../../mod/register.php:234 -msgid "Include your profile in member directory?" -msgstr "Inclure votre profil dans l'annuaire des membres?" - -#: ../../mod/register.php:256 -msgid "Membership on this site is by invitation only." -msgstr "L'inscription à ce site se fait uniquement sur invitation." - -#: ../../mod/register.php:257 -msgid "Your invitation ID: " -msgstr "Votre ID d'invitation: " - -#: ../../mod/register.php:260 ../../mod/admin.php:444 -msgid "Registration" -msgstr "Inscription" - -#: ../../mod/register.php:268 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Votre nom complet (p.ex. Michel Dupont): " - -#: ../../mod/register.php:269 -msgid "Your Email Address: " -msgstr "Votre adresse courriel: " - -#: ../../mod/register.php:270 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@$sitename</strong>'." - -#: ../../mod/register.php:271 -msgid "Choose a nickname: " -msgstr "Choisir un pseudo: " - -#: ../../mod/register.php:274 ../../include/nav.php:81 ../../boot.php:923 -msgid "Register" -msgstr "S'inscrire" - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Recherche de personnes" - -#: ../../mod/like.php:145 ../../mod/subthread.php:87 ../../mod/tagger.php:62 -#: ../../addon/communityhome/communityhome.php:163 -#: ../../view/theme/diabook/theme.php:458 ../../include/text.php:1442 -#: ../../include/diaspora.php:1848 ../../include/conversation.php:125 -#: ../../include/conversation.php:253 -#: ../../addon.old/communityhome/communityhome.php:163 -msgid "photo" -msgstr "photo" - -#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/subthread.php:87 -#: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1598 -#: ../../addon/communityhome/communityhome.php:158 -#: ../../addon/communityhome/communityhome.php:167 -#: ../../view/theme/diabook/theme.php:453 -#: ../../view/theme/diabook/theme.php:462 ../../include/diaspora.php:1848 -#: ../../include/conversation.php:120 ../../include/conversation.php:129 -#: ../../include/conversation.php:248 ../../include/conversation.php:257 -#: ../../addon.old/facebook/facebook.php:1598 -#: ../../addon.old/communityhome/communityhome.php:158 -#: ../../addon.old/communityhome/communityhome.php:167 -msgid "status" -msgstr "le statut" - -#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602 -#: ../../addon/communityhome/communityhome.php:172 -#: ../../view/theme/diabook/theme.php:467 ../../include/diaspora.php:1864 -#: ../../include/conversation.php:136 -#: ../../addon.old/facebook/facebook.php:1602 -#: ../../addon.old/communityhome/communityhome.php:172 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s aime %3$s de %2$s" - -#: ../../mod/like.php:164 ../../include/conversation.php:139 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s n'aime pas %3$s de %2$s" - -#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159 -#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:39 -#: ../../mod/display.php:169 ../../include/items.php:3843 -msgid "Item not found." -msgstr "Élément introuvable." - -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Accès refusé." - -#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:89 -#: ../../include/nav.php:51 ../../boot.php:1738 -msgid "Photos" -msgstr "Photos" - -#: ../../mod/fbrowser.php:96 -msgid "Files" -msgstr "Fichiers" - -#: ../../mod/regmod.php:61 -msgid "Account approved." -msgstr "Inscription validée." - -#: ../../mod/regmod.php:98 -#, php-format -msgid "Registration revoked for %s" -msgstr "Inscription révoquée pour %s" - -#: ../../mod/regmod.php:110 -msgid "Please login." -msgstr "Merci de vous connecter." - -#: ../../mod/item.php:104 -msgid "Unable to locate original post." -msgstr "Impossible de localiser l'article original." - -#: ../../mod/item.php:288 -msgid "Empty post discarded." -msgstr "Article vide défaussé." - -#: ../../mod/item.php:424 ../../mod/wall_upload.php:135 -#: ../../mod/wall_upload.php:144 ../../mod/wall_upload.php:151 -#: ../../include/message.php:144 -msgid "Wall Photos" -msgstr "Photos du mur" - -#: ../../mod/item.php:837 -msgid "System error. Post not saved." -msgstr "Erreur système. Publication non sauvée." - -#: ../../mod/item.php:862 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Ce message vous a été envoyé par %s, membre du réseau social Friendica." - -#: ../../mod/item.php:864 -#, php-format -msgid "You may visit them online at %s" -msgstr "Vous pouvez leur rendre visite sur %s" - -#: ../../mod/item.php:865 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages." - -#: ../../mod/item.php:867 -#, php-format -msgid "%s posted an update." -msgstr "%s a publié une mise à jour." - -#: ../../mod/mood.php:62 ../../include/conversation.php:226 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s est d'humeur %2$s" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Humeur" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Spécifiez votre humeur du moment, et informez vos amis" - -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Image envoyée, mais impossible de la retailler." - -#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 -#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Réduction de la taille de l'image [%s] échouée." - -#: ../../mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement." - -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Impossible de traiter l'image" - -#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:90 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "L'image dépasse la taille limite de %d" - -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Fichier à téléverser:" - -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Choisir un profil:" - -#: ../../mod/profile_photo.php:245 -#: ../../addon/dav/friendica/layout.fnk.php:152 -#: ../../addon.old/dav/friendica/layout.fnk.php:152 -msgid "Upload" -msgstr "Téléverser" - -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "ignorer cette étape" - -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "choisissez une photo depuis vos albums" - -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "(Re)cadrer l'image" - -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ajustez le cadre de l'image pour une visualisation optimale." - -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Édition terminée" - -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Image téléversée avec succès." - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Aucun profil" - -#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 -msgid "Remove My Account" -msgstr "Supprimer mon compte" - -#: ../../mod/removeme.php:46 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversible." - -#: ../../mod/removeme.php:47 -msgid "Please enter your password for verification:" -msgstr "Merci de saisir votre mot de passe pour vérification:" - -#: ../../mod/message.php:9 ../../include/nav.php:132 -msgid "New Message" -msgstr "Nouveau message" - -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Impossible de localiser les informations du contact." - -#: ../../mod/message.php:195 -msgid "Message deleted." -msgstr "Message supprimé." - -#: ../../mod/message.php:225 -msgid "Conversation removed." -msgstr "Conversation supprimée." - -#: ../../mod/message.php:334 -msgid "No messages." -msgstr "Aucun message." - -#: ../../mod/message.php:341 -#, php-format -msgid "Unknown sender - %s" -msgstr "Émetteur inconnu - %s" - -#: ../../mod/message.php:344 -#, php-format -msgid "You and %s" -msgstr "Vous et %s" - -#: ../../mod/message.php:347 -#, php-format -msgid "%s and You" -msgstr "%s et vous" - -#: ../../mod/message.php:357 ../../mod/message.php:469 -msgid "Delete conversation" -msgstr "Effacer conversation" - -#: ../../mod/message.php:360 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/message.php:363 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d message" -msgstr[1] "%d messages" - -#: ../../mod/message.php:398 -msgid "Message not available." -msgstr "Message indisponible." - -#: ../../mod/message.php:451 -msgid "Delete message" -msgstr "Effacer message" - -#: ../../mod/message.php:471 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur." - -#: ../../mod/message.php:475 -msgid "Send Reply" -msgstr "Répondre" - -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Amis de %s" - -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Pas d'amis à afficher." - -#: ../../mod/admin.php:55 -msgid "Theme settings updated." -msgstr "Réglages du thème sauvés." - -#: ../../mod/admin.php:96 ../../mod/admin.php:442 -msgid "Site" -msgstr "Site" - -#: ../../mod/admin.php:97 ../../mod/admin.php:688 ../../mod/admin.php:701 -msgid "Users" -msgstr "Utilisateurs" - -#: ../../mod/admin.php:98 ../../mod/admin.php:783 ../../mod/admin.php:825 -msgid "Plugins" -msgstr "Extensions" - -#: ../../mod/admin.php:99 ../../mod/admin.php:988 ../../mod/admin.php:1024 -msgid "Themes" -msgstr "Thèmes" - -#: ../../mod/admin.php:100 -msgid "DB updates" -msgstr "Mise-à-jour de la base" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1111 -msgid "Logs" -msgstr "Journaux" - -#: ../../mod/admin.php:120 ../../include/nav.php:149 -msgid "Admin" -msgstr "Admin" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "Propriétés des extensions" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "Inscriptions en attente de confirmation" - -#: ../../mod/admin.php:183 ../../mod/admin.php:669 -msgid "Normal Account" -msgstr "Compte normal" - -#: ../../mod/admin.php:184 ../../mod/admin.php:670 -msgid "Soapbox Account" -msgstr "Compte \"boîte à savon\"" - -#: ../../mod/admin.php:185 ../../mod/admin.php:671 -msgid "Community/Celebrity Account" -msgstr "Compte de communauté/célébrité" - -#: ../../mod/admin.php:186 ../../mod/admin.php:672 -msgid "Automatic Friend Account" -msgstr "Compte auto-amical" - -#: ../../mod/admin.php:187 -msgid "Blog Account" -msgstr "Compte de blog" - -#: ../../mod/admin.php:188 -msgid "Private Forum" -msgstr "Forum privé" - -#: ../../mod/admin.php:207 -msgid "Message queues" -msgstr "Files d'attente des messages" - -#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:687 -#: ../../mod/admin.php:782 ../../mod/admin.php:824 ../../mod/admin.php:987 -#: ../../mod/admin.php:1023 ../../mod/admin.php:1110 -msgid "Administration" -msgstr "Administration" - -#: ../../mod/admin.php:213 -msgid "Summary" -msgstr "Résumé" - -#: ../../mod/admin.php:215 -msgid "Registered users" -msgstr "Utilisateurs inscrits" - -#: ../../mod/admin.php:217 -msgid "Pending registrations" -msgstr "Inscriptions en attente" - -#: ../../mod/admin.php:218 -msgid "Version" -msgstr "Versio" - -#: ../../mod/admin.php:220 -msgid "Active plugins" -msgstr "Extensions activés" - -#: ../../mod/admin.php:373 -msgid "Site settings updated." -msgstr "Réglages du site mis-à-jour." - -#: ../../mod/admin.php:428 -msgid "Closed" -msgstr "Fermé" - -#: ../../mod/admin.php:429 -msgid "Requires approval" -msgstr "Demande une apptrobation" - -#: ../../mod/admin.php:430 -msgid "Open" -msgstr "Ouvert" - -#: ../../mod/admin.php:434 -msgid "No SSL policy, links will track page SSL state" -msgstr "Pas de politique SSL, le liens conserveront l'état SSL de la page" - -#: ../../mod/admin.php:435 -msgid "Force all links to use SSL" -msgstr "Forcer tous les liens à utiliser SSL" - -#: ../../mod/admin.php:436 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)" - -#: ../../mod/admin.php:445 -msgid "File upload" -msgstr "Téléversement de fichier" - -#: ../../mod/admin.php:446 -msgid "Policies" -msgstr "Politiques" - -#: ../../mod/admin.php:447 -msgid "Advanced" -msgstr "Avancé" - -#: ../../mod/admin.php:451 ../../addon/statusnet/statusnet.php:676 -#: ../../addon.old/statusnet/statusnet.php:567 -msgid "Site name" -msgstr "Nom du site" - -#: ../../mod/admin.php:452 -msgid "Banner/Logo" -msgstr "Bannière/Logo" - -#: ../../mod/admin.php:453 -msgid "System language" -msgstr "Langue du système" - -#: ../../mod/admin.php:454 -msgid "System theme" -msgstr "Thème du système" - -#: ../../mod/admin.php:454 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Thème par défaut sur ce site - peut être changé en fonction des profils - changer les réglages du thème" - -#: ../../mod/admin.php:455 -msgid "Mobile system theme" -msgstr "Thème mobile" - -#: ../../mod/admin.php:455 -msgid "Theme for mobile devices" -msgstr "Thème pour les terminaux mobiles" - -#: ../../mod/admin.php:456 -msgid "SSL link policy" -msgstr "Politique SSL pour les liens" - -#: ../../mod/admin.php:456 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Détermine si les liens générés doivent forcer l'usage de SSL" - -#: ../../mod/admin.php:457 -msgid "Maximum image size" -msgstr "Taille maximale des images" - -#: ../../mod/admin.php:457 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"." - -#: ../../mod/admin.php:458 -msgid "Maximum image length" -msgstr "Longueur maximale des images" - -#: ../../mod/admin.php:458 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Longueur maximale (en pixels) du plus long côté des images téléversées. La valeur par défaut est -1, soit une absence de limite." - -#: ../../mod/admin.php:459 -msgid "JPEG image quality" -msgstr "Qualité JPEG des images" - -#: ../../mod/admin.php:459 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale." - -#: ../../mod/admin.php:461 -msgid "Register policy" -msgstr "Politique d'inscription" - -#: ../../mod/admin.php:462 -msgid "Register text" -msgstr "Texte d'inscription" - -#: ../../mod/admin.php:462 -msgid "Will be displayed prominently on the registration page." -msgstr "Sera affiché de manière bien visible sur la page d'accueil." - -#: ../../mod/admin.php:463 -msgid "Accounts abandoned after x days" -msgstr "Les comptes sont abandonnés après x jours" - -#: ../../mod/admin.php:463 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction." - -#: ../../mod/admin.php:464 -msgid "Allowed friend domains" -msgstr "Domaines autorisés" - -#: ../../mod/admin.php:464 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines" - -#: ../../mod/admin.php:465 -msgid "Allowed email domains" -msgstr "Domaines courriel autorisés" - -#: ../../mod/admin.php:465 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Liste de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines" - -#: ../../mod/admin.php:466 -msgid "Block public" -msgstr "Interdire la publication globale" - -#: ../../mod/admin.php:466 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques." - -#: ../../mod/admin.php:467 -msgid "Force publish" -msgstr "Forcer la publication globale" - -#: ../../mod/admin.php:467 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site." - -#: ../../mod/admin.php:468 -msgid "Global directory update URL" -msgstr "URL de mise-à-jour de l'annuaire global" - -#: ../../mod/admin.php:468 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible." - -#: ../../mod/admin.php:469 -msgid "Allow threaded items" -msgstr "Activer les commentaires imbriqués" - -#: ../../mod/admin.php:469 -msgid "Allow infinite level threading for items on this site." -msgstr "Permettre une imbrication infinie des commentaires." - -#: ../../mod/admin.php:470 -msgid "Private posts by default for new users" -msgstr "Publications privées par défaut pour les nouveaux utilisateurs" - -#: ../../mod/admin.php:470 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Rendre les posts de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde." - -#: ../../mod/admin.php:472 -msgid "Block multiple registrations" -msgstr "Interdire les inscriptions multiples" - -#: ../../mod/admin.php:472 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages." - -#: ../../mod/admin.php:473 -msgid "OpenID support" -msgstr "Support OpenID" - -#: ../../mod/admin.php:473 -msgid "OpenID support for registration and logins." -msgstr "Supporter OpenID pour les inscriptions et connexions." - -#: ../../mod/admin.php:474 -msgid "Fullname check" -msgstr "Vérification du \"Prénom Nom\"" - -#: ../../mod/admin.php:474 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus" - -#: ../../mod/admin.php:475 -msgid "UTF-8 Regular expressions" -msgstr "Regex UTF-8" - -#: ../../mod/admin.php:475 -msgid "Use PHP UTF8 regular expressions" -msgstr "Utiliser les expressions rationnelles de PHP en UTF8" - -#: ../../mod/admin.php:476 -msgid "Show Community Page" -msgstr "Montrer la \"Place publique\"" - -#: ../../mod/admin.php:476 -msgid "" -"Display a Community page showing all recent public postings on this site." -msgstr "Afficher une page Communauté avec toutes les publications publiques récentes du site." - -#: ../../mod/admin.php:477 -msgid "Enable OStatus support" -msgstr "Activer le support d'OStatus" - -#: ../../mod/admin.php:477 -msgid "" -"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Fournir une compatibilité OStatus (identi.ca, status.net, etc.). Toutes les communications d'OStatus sont publiques, des avertissements liés à la vie privée seront affichés si utile." - -#: ../../mod/admin.php:478 -msgid "Enable Diaspora support" -msgstr "Activer le support de Diaspora" - -#: ../../mod/admin.php:478 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Fournir une compatibilité Diaspora intégrée." - -#: ../../mod/admin.php:479 -msgid "Only allow Friendica contacts" -msgstr "N'autoriser que les contacts Friendica" - -#: ../../mod/admin.php:479 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés." - -#: ../../mod/admin.php:480 -msgid "Verify SSL" -msgstr "Vérifier SSL" - -#: ../../mod/admin.php:480 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you" -" cannot connect (at all) to self-signed SSL sites." -msgstr "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé." - -#: ../../mod/admin.php:481 -msgid "Proxy user" -msgstr "Utilisateur du proxy" - -#: ../../mod/admin.php:482 -msgid "Proxy URL" -msgstr "URL du proxy" - -#: ../../mod/admin.php:483 -msgid "Network timeout" -msgstr "Dépassement du délai d'attente du réseau" - -#: ../../mod/admin.php:483 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)." - -#: ../../mod/admin.php:484 -msgid "Delivery interval" -msgstr "Intervalle de transmission" - -#: ../../mod/admin.php:484 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Rallonge le processus de transmissions pour réduire la charge système (en secondes). Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS, 0-1 pour les gros servers dédiés." - -#: ../../mod/admin.php:485 -msgid "Poll interval" -msgstr "Intervalle de réception" - -#: ../../mod/admin.php:485 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission." - -#: ../../mod/admin.php:486 -msgid "Maximum Load Average" -msgstr "Plafond de la charge moyenne" - -#: ../../mod/admin.php:486 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50." - -#: ../../mod/admin.php:503 -msgid "Update has been marked successful" -msgstr "Mise-à-jour validée comme 'réussie'" - -#: ../../mod/admin.php:513 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "L'éxecution de %s a échoué. Vérifiez les journaux du système." - -#: ../../mod/admin.php:516 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Mise-à-jour %s appliquée avec succès." - -#: ../../mod/admin.php:520 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi." - -#: ../../mod/admin.php:523 -#, php-format -msgid "Update function %s could not be found." -msgstr "La fonction %s de la mise-à-jour n'a pu être trouvée." - -#: ../../mod/admin.php:538 -msgid "No failed updates." -msgstr "Pas de mises-à-jour échouées." - -#: ../../mod/admin.php:542 -msgid "Failed Updates" -msgstr "Mises-à-jour échouées" - -#: ../../mod/admin.php:543 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails." - -#: ../../mod/admin.php:544 -msgid "Mark success (if update was manually applied)" -msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)" - -#: ../../mod/admin.php:545 -msgid "Attempt to execute this update step automatically" -msgstr "Tenter d'éxecuter cette étape automatiquement" - -#: ../../mod/admin.php:570 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s utilisateur a (dé)bloqué" -msgstr[1] "%s utilisateurs ont (dé)bloqué" - -#: ../../mod/admin.php:577 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s utilisateur supprimé" -msgstr[1] "%s utilisateurs supprimés" - -#: ../../mod/admin.php:616 -#, php-format -msgid "User '%s' deleted" -msgstr "Utilisateur '%s' supprimé" - -#: ../../mod/admin.php:624 -#, php-format -msgid "User '%s' unblocked" -msgstr "Utilisateur '%s' débloqué" - -#: ../../mod/admin.php:624 -#, php-format -msgid "User '%s' blocked" -msgstr "Utilisateur '%s' bloqué" - -#: ../../mod/admin.php:690 -msgid "select all" -msgstr "tout sélectionner" - -#: ../../mod/admin.php:691 -msgid "User registrations waiting for confirm" -msgstr "Inscriptions d'utilisateurs en attente de confirmation" - -#: ../../mod/admin.php:692 -msgid "Request date" -msgstr "Date de la demande" - -#: ../../mod/admin.php:692 ../../mod/admin.php:702 -#: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 -msgid "Email" -msgstr "Courriel" - -#: ../../mod/admin.php:693 -msgid "No registrations." -msgstr "Pas d'inscriptions." - -#: ../../mod/admin.php:695 -msgid "Deny" -msgstr "Rejetter" - -#: ../../mod/admin.php:699 -msgid "Site admin" -msgstr "Administration du Site" - -#: ../../mod/admin.php:702 -msgid "Register date" -msgstr "Date d'inscription" - -#: ../../mod/admin.php:702 -msgid "Last login" -msgstr "Dernière connexion" - -#: ../../mod/admin.php:702 -msgid "Last item" -msgstr "Dernier élément" - -#: ../../mod/admin.php:702 -msgid "Account" -msgstr "Compte" - -#: ../../mod/admin.php:704 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?" - -#: ../../mod/admin.php:705 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?" - -#: ../../mod/admin.php:746 -#, php-format -msgid "Plugin %s disabled." -msgstr "Extension %s désactivée." - -#: ../../mod/admin.php:750 -#, php-format -msgid "Plugin %s enabled." -msgstr "Extension %s activée." - -#: ../../mod/admin.php:760 ../../mod/admin.php:958 -msgid "Disable" -msgstr "Désactiver" - -#: ../../mod/admin.php:762 ../../mod/admin.php:960 -msgid "Enable" -msgstr "Activer" - -#: ../../mod/admin.php:784 ../../mod/admin.php:989 -msgid "Toggle" -msgstr "Activer/Désactiver" - -#: ../../mod/admin.php:792 ../../mod/admin.php:999 -msgid "Author: " -msgstr "Auteur: " - -#: ../../mod/admin.php:793 ../../mod/admin.php:1000 -msgid "Maintainer: " -msgstr "Mainteneur: " - -#: ../../mod/admin.php:922 -msgid "No themes found." -msgstr "Aucun thème trouvé." - -#: ../../mod/admin.php:981 -msgid "Screenshot" -msgstr "Capture d'écran" - -#: ../../mod/admin.php:1029 -msgid "[Experimental]" -msgstr "[Expérimental]" - -#: ../../mod/admin.php:1030 -msgid "[Unsupported]" -msgstr "[Non supporté]" - -#: ../../mod/admin.php:1057 -msgid "Log settings updated." -msgstr "Réglages des journaux mis-à-jour." - -#: ../../mod/admin.php:1113 -msgid "Clear" -msgstr "Effacer" - -#: ../../mod/admin.php:1119 -msgid "Debugging" -msgstr "Déboguage" - -#: ../../mod/admin.php:1120 -msgid "Log file" -msgstr "Fichier de journaux" - -#: ../../mod/admin.php:1120 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica." - -#: ../../mod/admin.php:1121 -msgid "Log level" -msgstr "Niveau de journalisaton" - -#: ../../mod/admin.php:1171 -msgid "Close" -msgstr "Fermer" - -#: ../../mod/admin.php:1177 -msgid "FTP Host" -msgstr "Hôte FTP" - -#: ../../mod/admin.php:1178 -msgid "FTP Path" -msgstr "Chemin FTP" - -#: ../../mod/admin.php:1179 -msgid "FTP User" -msgstr "Utilisateur FTP" - -#: ../../mod/admin.php:1180 -msgid "FTP Password" -msgstr "Mot de passe FTP" - -#: ../../mod/profile.php:21 ../../boot.php:1126 -msgid "Requested profile is not available." -msgstr "Le profil demandé n'est pas disponible." - -#: ../../mod/profile.php:155 ../../mod/display.php:87 -msgid "Access to this profile has been restricted." -msgstr "L'accès au profil a été restreint." - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Conseils aux nouveaux venus" - -#: ../../mod/ping.php:238 -msgid "{0} wants to be your friend" -msgstr "{0} souhaite être votre ami(e)" - -#: ../../mod/ping.php:243 -msgid "{0} sent you a message" -msgstr "{0} vous a envoyé un message" - -#: ../../mod/ping.php:248 -msgid "{0} requested registration" -msgstr "{0} a demandé à s'inscrire" - -#: ../../mod/ping.php:254 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} a commenté une notice de %s" - -#: ../../mod/ping.php:259 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0} a aimé une notice de %s" - -#: ../../mod/ping.php:264 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} n'a pas aimé une notice de %s" - -#: ../../mod/ping.php:269 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} est désormais ami(e) avec %s" - -#: ../../mod/ping.php:274 -msgid "{0} posted" -msgstr "{0} a posté" - -#: ../../mod/ping.php:279 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} a taggué la notice de %s avec #%s" - -#: ../../mod/ping.php:285 -msgid "{0} mentioned you in a post" -msgstr "{0} vous a mentionné dans une publication" - -#: ../../mod/nogroup.php:58 -msgid "Contacts who are not members of a group" -msgstr "Contacts qui n’appartiennent à aucun groupe" - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Erreur de protocole OpenID. Pas d'ID en retour." - -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site." - -#: ../../mod/openid.php:93 ../../include/auth.php:110 -#: ../../include/auth.php:173 -msgid "Login failed." -msgstr "Échec de connexion." - -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Contact ajouté" - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Amis communs" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Pas de contacts en commun." - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: ../../mod/share.php:28 -msgid "link" -msgstr "lien" - -#: ../../mod/display.php:162 -msgid "Item has been removed." -msgstr "Cet élément a été enlevé." - -#: ../../mod/apps.php:4 -msgid "Applications" -msgstr "Applications" - -#: ../../mod/apps.php:7 -msgid "No installed applications." -msgstr "Pas d'application installée." - -#: ../../mod/search.php:99 ../../include/text.php:685 -#: ../../include/text.php:686 ../../include/nav.php:91 -msgid "Search" -msgstr "Recherche" - -#: ../../mod/profiles.php:21 ../../mod/profiles.php:434 -#: ../../mod/profiles.php:548 ../../mod/dfrn_confirm.php:62 -msgid "Profile not found." -msgstr "Profil introuvable." - -#: ../../mod/profiles.php:31 -msgid "Profile Name is required." -msgstr "Le nom du profil est requis." - -#: ../../mod/profiles.php:171 -msgid "Marital Status" -msgstr "Statut marital" - -#: ../../mod/profiles.php:175 -msgid "Romantic Partner" -msgstr "Partenaire/conjoint" - -#: ../../mod/profiles.php:179 -msgid "Likes" -msgstr "Derniers \"J'aime\"" - -#: ../../mod/profiles.php:183 -msgid "Dislikes" -msgstr "Derniers \"Je n'aime pas\"" - -#: ../../mod/profiles.php:187 -msgid "Work/Employment" -msgstr "Travail/Occupation" - -#: ../../mod/profiles.php:190 -msgid "Religion" -msgstr "Religion" - -#: ../../mod/profiles.php:194 -msgid "Political Views" -msgstr "Tendance politique" - -#: ../../mod/profiles.php:198 -msgid "Gender" -msgstr "Sexe" - -#: ../../mod/profiles.php:202 -msgid "Sexual Preference" -msgstr "Préférence sexuelle" - -#: ../../mod/profiles.php:206 -msgid "Homepage" -msgstr "Site internet" - -#: ../../mod/profiles.php:210 -msgid "Interests" -msgstr "Centres d'intérêt" - -#: ../../mod/profiles.php:214 -msgid "Address" -msgstr "Adresse" - -#: ../../mod/profiles.php:221 ../../addon/dav/common/wdcal_edit.inc.php:183 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:183 -msgid "Location" -msgstr "Localisation" - -#: ../../mod/profiles.php:304 -msgid "Profile updated." -msgstr "Profil mis à jour." - -#: ../../mod/profiles.php:371 -msgid " and " -msgstr " et " - -#: ../../mod/profiles.php:379 -msgid "public profile" -msgstr "profil public" - -#: ../../mod/profiles.php:382 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s a changé %2$s en “%3$s”" - -#: ../../mod/profiles.php:383 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "Visiter le %2$s de %1$s" - -#: ../../mod/profiles.php:386 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s a mis à jour son %2$s, en modifiant %3$s." - -#: ../../mod/profiles.php:453 -msgid "Profile deleted." -msgstr "Profil supprimé." - -#: ../../mod/profiles.php:471 ../../mod/profiles.php:505 -msgid "Profile-" -msgstr "Profil-" - -#: ../../mod/profiles.php:490 ../../mod/profiles.php:532 -msgid "New profile created." -msgstr "Nouveau profil créé." - -#: ../../mod/profiles.php:511 -msgid "Profile unavailable to clone." -msgstr "Ce profil ne peut être cloné." - -#: ../../mod/profiles.php:576 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Cacher ma liste d'amis/contacts des visiteurs de ce profil?" - -#: ../../mod/profiles.php:596 -msgid "Edit Profile Details" -msgstr "Éditer les détails du profil" - -#: ../../mod/profiles.php:598 -msgid "View this profile" -msgstr "Voir ce profil" - -#: ../../mod/profiles.php:599 -msgid "Create a new profile using these settings" -msgstr "Créer un nouveau profil en utilisant ces réglages" - -#: ../../mod/profiles.php:600 -msgid "Clone this profile" -msgstr "Cloner ce profil" - -#: ../../mod/profiles.php:601 -msgid "Delete this profile" -msgstr "Supprimer ce profil" - -#: ../../mod/profiles.php:602 -msgid "Profile Name:" -msgstr "Nom du profil:" - -#: ../../mod/profiles.php:603 -msgid "Your Full Name:" -msgstr "Votre nom complet:" - -#: ../../mod/profiles.php:604 -msgid "Title/Description:" -msgstr "Titre/Description:" - -#: ../../mod/profiles.php:605 -msgid "Your Gender:" -msgstr "Votre genre:" - -#: ../../mod/profiles.php:606 -#, php-format -msgid "Birthday (%s):" -msgstr "Anniversaire (%s):" - -#: ../../mod/profiles.php:607 -msgid "Street Address:" -msgstr "Adresse postale:" - -#: ../../mod/profiles.php:608 -msgid "Locality/City:" -msgstr "Ville/Localité:" - -#: ../../mod/profiles.php:609 -msgid "Postal/Zip Code:" -msgstr "Code postal:" - -#: ../../mod/profiles.php:610 -msgid "Country:" -msgstr "Pays:" - -#: ../../mod/profiles.php:611 -msgid "Region/State:" -msgstr "Région/État:" - -#: ../../mod/profiles.php:612 -msgid " Marital Status:" -msgstr " Statut marital:" - -#: ../../mod/profiles.php:613 -msgid "Who: (if applicable)" -msgstr "Qui: (si pertinent)" - -#: ../../mod/profiles.php:614 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:615 -msgid "Since [date]:" -msgstr "Depuis [date] :" - -#: ../../mod/profiles.php:616 ../../include/profile_advanced.php:46 -msgid "Sexual Preference:" -msgstr "Préférence sexuelle:" - -#: ../../mod/profiles.php:617 -msgid "Homepage URL:" -msgstr "Page personnelle:" - -#: ../../mod/profiles.php:618 ../../include/profile_advanced.php:50 -msgid "Hometown:" -msgstr " Ville d'origine:" - -#: ../../mod/profiles.php:619 ../../include/profile_advanced.php:54 -msgid "Political Views:" -msgstr "Opinions politiques:" - -#: ../../mod/profiles.php:620 -msgid "Religious Views:" -msgstr "Opinions religieuses:" - -#: ../../mod/profiles.php:621 -msgid "Public Keywords:" -msgstr "Mots-clés publics:" - -#: ../../mod/profiles.php:622 -msgid "Private Keywords:" -msgstr "Mots-clés privés:" - -#: ../../mod/profiles.php:623 ../../include/profile_advanced.php:62 -msgid "Likes:" -msgstr "J'aime :" - -#: ../../mod/profiles.php:624 ../../include/profile_advanced.php:64 -msgid "Dislikes:" -msgstr "Je n'aime pas :" - -#: ../../mod/profiles.php:625 -msgid "Example: fishing photography software" -msgstr "Exemple: football dessin programmation" - -#: ../../mod/profiles.php:626 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)" - -#: ../../mod/profiles.php:627 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)" - -#: ../../mod/profiles.php:628 -msgid "Tell us about yourself..." -msgstr "Parlez-nous de vous..." - -#: ../../mod/profiles.php:629 -msgid "Hobbies/Interests" -msgstr "Passe-temps/Centres d'intérêt" - -#: ../../mod/profiles.php:630 -msgid "Contact information and Social Networks" -msgstr "Coordonnées/Réseaux sociaux" - -#: ../../mod/profiles.php:631 -msgid "Musical interests" -msgstr "Goûts musicaux" - -#: ../../mod/profiles.php:632 -msgid "Books, literature" -msgstr "Lectures" - -#: ../../mod/profiles.php:633 -msgid "Television" -msgstr "Télévision" - -#: ../../mod/profiles.php:634 -msgid "Film/dance/culture/entertainment" -msgstr "Cinéma/Danse/Culture/Divertissement" - -#: ../../mod/profiles.php:635 -msgid "Love/romance" -msgstr "Amour/Romance" - -#: ../../mod/profiles.php:636 -msgid "Work/employment" -msgstr "Activité professionnelle/Occupation" - -#: ../../mod/profiles.php:637 -msgid "School/education" -msgstr "Études/Formation" - -#: ../../mod/profiles.php:642 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Ceci est votre profil public.
Il peut être visible par n'importe quel utilisateur d'Internet." - -#: ../../mod/profiles.php:652 ../../mod/directory.php:111 -#: ../../addon/forumdirectory/forumdirectory.php:133 -msgid "Age: " -msgstr "Age: " - -#: ../../mod/profiles.php:691 -msgid "Edit/Manage Profiles" -msgstr "Editer/gérer les profils" - -#: ../../mod/profiles.php:692 ../../boot.php:1244 -msgid "Change profile photo" -msgstr "Changer de photo de profil" - -#: ../../mod/profiles.php:693 ../../boot.php:1245 -msgid "Create New Profile" -msgstr "Créer un nouveau profil" - -#: ../../mod/profiles.php:704 ../../boot.php:1255 -msgid "Profile Image" -msgstr "Image du profil" - -#: ../../mod/profiles.php:706 ../../boot.php:1258 -msgid "visible to everybody" -msgstr "visible par tous" - -#: ../../mod/profiles.php:707 ../../boot.php:1259 -msgid "Edit visibility" -msgstr "Changer la visibilité" - -#: ../../mod/filer.php:29 ../../include/conversation.php:909 -#: ../../include/conversation.php:927 -msgid "Save to Folder:" -msgstr "Sauver dans le Dossier:" - -#: ../../mod/filer.php:29 -msgid "- select -" -msgstr "- choisir -" - -#: ../../mod/tagger.php:95 ../../include/conversation.php:265 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s a taggué %3$s de %2$s avec %4$s" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Pas de délégataire potentiel." - -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Déléguer la gestion de la page" - -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue." - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Gestionnaires existants" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Délégataires existants" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Délégataires potentiels" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Ajouter" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Aucune entrée." - -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Texte source (bbcode) :" - -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Texte source (Diaspora) à convertir en BBcode :" - -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Source input: " - -#: ../../mod/babel.php:35 -msgid "bb2html: " -msgstr "bb2html: " - -#: ../../mod/babel.php:39 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: ../../mod/babel.php:43 -msgid "bb2md: " -msgstr "bb2md: " - -#: ../../mod/babel.php:47 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: ../../mod/babel.php:51 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: ../../mod/babel.php:55 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: ../../mod/babel.php:65 -msgid "Source input (Diaspora format): " -msgstr "Texte source (format Diaspora) :" - -#: ../../mod/babel.php:70 -msgid "diaspora2bb: " -msgstr "diaspora2bb :" - -#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:514 -#: ../../include/contact_widgets.php:34 -msgid "Friend Suggestions" -msgstr "Suggestions d'amitiés/contacts" - -#: ../../mod/suggest.php:44 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h." - -#: ../../mod/suggest.php:61 -msgid "Ignore/Hide" -msgstr "Ignorer/cacher" - -#: ../../mod/directory.php:49 ../../addon/forumdirectory/forumdirectory.php:71 -#: ../../view/theme/diabook/theme.php:512 -msgid "Global Directory" -msgstr "Annuaire global" - -#: ../../mod/directory.php:57 ../../addon/forumdirectory/forumdirectory.php:79 -msgid "Find on this site" -msgstr "Trouver sur ce site" - -#: ../../mod/directory.php:60 ../../addon/forumdirectory/forumdirectory.php:82 -msgid "Site Directory" -msgstr "Annuaire local" - -#: ../../mod/directory.php:114 -#: ../../addon/forumdirectory/forumdirectory.php:136 -msgid "Gender: " -msgstr "Genre: " - -#: ../../mod/directory.php:136 -#: ../../addon/forumdirectory/forumdirectory.php:158 -#: ../../include/profile_advanced.php:17 ../../boot.php:1280 +#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136 +#: ../../boot.php:1487 msgid "Gender:" msgstr "Genre:" -#: ../../mod/directory.php:138 -#: ../../addon/forumdirectory/forumdirectory.php:160 -#: ../../include/profile_advanced.php:37 ../../boot.php:1283 -msgid "Status:" -msgstr "Statut:" - -#: ../../mod/directory.php:140 -#: ../../addon/forumdirectory/forumdirectory.php:162 -#: ../../include/profile_advanced.php:48 ../../boot.php:1285 -msgid "Homepage:" -msgstr "Page personnelle:" - -#: ../../mod/directory.php:142 -#: ../../addon/forumdirectory/forumdirectory.php:164 -#: ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "À propos:" - -#: ../../mod/directory.php:180 -#: ../../addon/forumdirectory/forumdirectory.php:202 -msgid "No entries (some entries may be hidden)." -msgstr "Aucune entrée (certaines peuvent être cachées)." - -#: ../../mod/invite.php:35 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Adresse de courriel invalide." - -#: ../../mod/invite.php:59 -msgid "Please join us on Friendica" -msgstr "Rejoignez-nous sur Friendica" - -#: ../../mod/invite.php:69 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : L'envoi du message a échoué." - -#: ../../mod/invite.php:73 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d message envoyé." -msgstr[1] "%d messages envoyés." - -#: ../../mod/invite.php:92 -msgid "You have no more invitations available" -msgstr "Vous n'avez plus d'invitations disponibles" - -#: ../../mod/invite.php:100 -#, php-format -msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux." - -#: ../../mod/invite.php:102 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public." - -#: ../../mod/invite.php:103 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre." - -#: ../../mod/invite.php:106 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres." - -#: ../../mod/invite.php:111 -msgid "Send invitations" -msgstr "Envoyer des invitations" - -#: ../../mod/invite.php:112 -msgid "Enter email addresses, one per line:" -msgstr "Entrez les adresses email, une par ligne:" - -#: ../../mod/invite.php:114 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social." - -#: ../../mod/invite.php:116 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Vous devrez fournir ce code d'invitation: $invite_code" - -#: ../../mod/invite.php:116 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur:" - -#: ../../mod/invite.php:118 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com" - -#: ../../mod/dfrn_confirm.php:119 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé." - -#: ../../mod/dfrn_confirm.php:237 -msgid "Response from remote site was not understood." -msgstr "Réponse du site distant incomprise." - -#: ../../mod/dfrn_confirm.php:246 -msgid "Unexpected response from remote site: " -msgstr "Réponse inattendue du site distant: " - -#: ../../mod/dfrn_confirm.php:254 -msgid "Confirmation completed successfully." -msgstr "Confirmation achevée avec succès." - -#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 -#: ../../mod/dfrn_confirm.php:277 -msgid "Remote site reported: " -msgstr "Alerte du site distant: " - -#: ../../mod/dfrn_confirm.php:268 -msgid "Temporary failure. Please wait and try again." -msgstr "Échec temporaire. Merci de recommencer ultérieurement." - -#: ../../mod/dfrn_confirm.php:275 -msgid "Introduction failed or was revoked." -msgstr "Introduction échouée ou annulée." - -#: ../../mod/dfrn_confirm.php:420 -msgid "Unable to set contact photo." -msgstr "Impossible de définir la photo du contact." - -#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:619 -#: ../../include/conversation.php:171 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s est désormais lié à %2$s" - -#: ../../mod/dfrn_confirm.php:562 -#, php-format -msgid "No user record found for '%s' " -msgstr "Pas d'utilisateur trouvé pour '%s' " - -#: ../../mod/dfrn_confirm.php:572 -msgid "Our site encryption key is apparently messed up." -msgstr "Notre clé de chiffrement de site est apparemment corrompue." - -#: ../../mod/dfrn_confirm.php:583 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "URL de site absente ou indéchiffrable." - -#: ../../mod/dfrn_confirm.php:604 -msgid "Contact record was not found for you on our site." -msgstr "Pas d'entrée pour ce contact sur notre site." - -#: ../../mod/dfrn_confirm.php:618 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s." - -#: ../../mod/dfrn_confirm.php:638 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez." - -#: ../../mod/dfrn_confirm.php:649 -msgid "Unable to set your contact credentials on our system." -msgstr "Impossible de vous définir des permissions sur notre système." - -#: ../../mod/dfrn_confirm.php:716 -msgid "Unable to update your contact profile details on our system" -msgstr "Impossible de mettre les détails de votre profil à jour sur notre système" - -#: ../../mod/dfrn_confirm.php:750 -#, php-format -msgid "Connection accepted at %s" -msgstr "Connexion acceptée chez %s" - -#: ../../mod/dfrn_confirm.php:799 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s a rejoint %2$s" - -#: ../../addon/fromgplus/fromgplus.php:29 -#: ../../addon.old/fromgplus/fromgplus.php:29 -msgid "Google+ Import Settings" -msgstr "Réglages G+" - -#: ../../addon/fromgplus/fromgplus.php:32 -#: ../../addon.old/fromgplus/fromgplus.php:32 -msgid "Enable Google+ Import" -msgstr "Activer l'import G+" - -#: ../../addon/fromgplus/fromgplus.php:35 -#: ../../addon.old/fromgplus/fromgplus.php:35 -msgid "Google Account ID" -msgstr "ID du compte Google" - -#: ../../addon/fromgplus/fromgplus.php:55 -#: ../../addon.old/fromgplus/fromgplus.php:55 -msgid "Google+ Import Settings saved." -msgstr "Réglages G+ sauvés." - -#: ../../addon/facebook/facebook.php:523 -#: ../../addon.old/facebook/facebook.php:523 -msgid "Facebook disabled" -msgstr "Connecteur Facebook désactivé" - -#: ../../addon/facebook/facebook.php:528 -#: ../../addon.old/facebook/facebook.php:528 -msgid "Updating contacts" -msgstr "Mise-à-jour des contacts" - -#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192 -#: ../../addon.old/facebook/facebook.php:551 -#: ../../addon.old/fbpost/fbpost.php:192 -msgid "Facebook API key is missing." -msgstr "Clé d'API Facebook manquante." - -#: ../../addon/facebook/facebook.php:558 -#: ../../addon.old/facebook/facebook.php:558 -msgid "Facebook Connect" -msgstr "Connecteur Facebook" - -#: ../../addon/facebook/facebook.php:564 -#: ../../addon.old/facebook/facebook.php:564 -msgid "Install Facebook connector for this account." -msgstr "Installer le connecteur Facebook sur ce compte." - -#: ../../addon/facebook/facebook.php:571 -#: ../../addon.old/facebook/facebook.php:571 -msgid "Remove Facebook connector" -msgstr "Désinstaller le connecteur Facebook" - -#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217 -#: ../../addon.old/facebook/facebook.php:576 -#: ../../addon.old/fbpost/fbpost.php:217 -msgid "" -"Re-authenticate [This is necessary whenever your Facebook password is " -"changed.]" -msgstr "Se ré-authentifier [nécessaire chaque fois que vous changez votre mot de passe Facebook.]" - -#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224 -#: ../../addon.old/facebook/facebook.php:583 -#: ../../addon.old/fbpost/fbpost.php:224 -msgid "Post to Facebook by default" -msgstr "Poster sur Facebook par défaut" - -#: ../../addon/facebook/facebook.php:589 -#: ../../addon.old/facebook/facebook.php:589 -msgid "" -"Facebook friend linking has been disabled on this site. The following " -"settings will have no effect." -msgstr "L'ajout d'amis Facebook a été désactivé sur ce site. Les réglages suivants seront sans effet." - -#: ../../addon/facebook/facebook.php:593 -#: ../../addon.old/facebook/facebook.php:593 -msgid "" -"Facebook friend linking has been disabled on this site. If you disable it, " -"you will be unable to re-enable it." -msgstr "L'ajout d'amis Facebook a été désactivé sur ce site. Si vous désactivez ce réglage, vous ne pourrez le ré-activer." - -#: ../../addon/facebook/facebook.php:596 -#: ../../addon.old/facebook/facebook.php:596 -msgid "Link all your Facebook friends and conversations on this website" -msgstr "Lier tous vos amis et conversations Facebook sur ce site" - -#: ../../addon/facebook/facebook.php:598 -#: ../../addon.old/facebook/facebook.php:598 -msgid "" -"Facebook conversations consist of your profile wall and your friend" -" stream." -msgstr "Les conversations Facebook se composent du mur du profil et des flux de vos amis." - -#: ../../addon/facebook/facebook.php:599 -#: ../../addon.old/facebook/facebook.php:599 -msgid "On this website, your Facebook friend stream is only visible to you." -msgstr "Sur ce site, les flux de vos amis Facebook ne sont visibles que par vous." - -#: ../../addon/facebook/facebook.php:600 -#: ../../addon.old/facebook/facebook.php:600 -msgid "" -"The following settings determine the privacy of your Facebook profile wall " -"on this website." -msgstr "Les réglages suivants déterminent le niveau de vie privée de votre mur Facebook depuis ce site." - -#: ../../addon/facebook/facebook.php:604 -#: ../../addon.old/facebook/facebook.php:604 -msgid "" -"On this website your Facebook profile wall conversations will only be " -"visible to you" -msgstr "Sur ce site, les conversations de votre mur Facebook ne sont visibles que par vous." - -#: ../../addon/facebook/facebook.php:609 -#: ../../addon.old/facebook/facebook.php:609 -msgid "Do not import your Facebook profile wall conversations" -msgstr "Ne pas importer les conversations de votre mur Facebook." - -#: ../../addon/facebook/facebook.php:611 -#: ../../addon.old/facebook/facebook.php:611 -msgid "" -"If you choose to link conversations and leave both of these boxes unchecked," -" your Facebook profile wall will be merged with your profile wall on this " -"website and your privacy settings on this website will be used to determine " -"who may see the conversations." -msgstr "Si vous choisissez de lier les conversations et de laisser ces deux cases non-cochées, votre mur Facebook sera fusionné avec votre mur de profil (sur ce site). Vos réglages (locaux) de vie privée serviront à en déterminer la visibilité." - -#: ../../addon/facebook/facebook.php:616 -#: ../../addon.old/facebook/facebook.php:616 -msgid "Comma separated applications to ignore" -msgstr "Liste (séparée par des virgules) des applications à ignorer" - -#: ../../addon/facebook/facebook.php:700 -#: ../../addon.old/facebook/facebook.php:700 -msgid "Problems with Facebook Real-Time Updates" -msgstr "Problème avec les mises-à-jour en temps réel de Facebook" - -#: ../../addon/facebook/facebook.php:729 -#: ../../addon.old/facebook/facebook.php:729 -msgid "Facebook Connector Settings" -msgstr "Réglages du connecteur Facebook" - -#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255 -#: ../../addon.old/facebook/facebook.php:744 -#: ../../addon.old/fbpost/fbpost.php:255 -msgid "Facebook API Key" -msgstr "Clé d'API Facebook" - -#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262 -#: ../../addon.old/facebook/facebook.php:754 -#: ../../addon.old/fbpost/fbpost.php:262 -msgid "" -"Error: it appears that you have specified the App-ID and -Secret in your " -".htconfig.php file. As long as they are specified there, they cannot be set " -"using this form.

" -msgstr "Erreur: il semble que vous ayez spécifié un App-ID et un Secret dans votre fichier .htconfig.php. Tant qu'ils y seront, vous ne pourrez les configurer avec ce formulaire.

" - -#: ../../addon/facebook/facebook.php:759 -#: ../../addon.old/facebook/facebook.php:759 -msgid "" -"Error: the given API Key seems to be incorrect (the application access token" -" could not be retrieved)." -msgstr "Erreur: la clé d'API semble incorrecte (le jeton d'accès d'application n'a pu être recupéré)" - -#: ../../addon/facebook/facebook.php:761 -#: ../../addon.old/facebook/facebook.php:761 -msgid "The given API Key seems to work correctly." -msgstr "La clé d'API semble fonctionner correctement." - -#: ../../addon/facebook/facebook.php:763 -#: ../../addon.old/facebook/facebook.php:763 -msgid "" -"The correctness of the API Key could not be detected. Something strange's " -"going on." -msgstr "La validité de la clé d'API ne peut être vérifiée. Quelque-chose d'étrange se passe." - -#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264 -#: ../../addon.old/facebook/facebook.php:766 -#: ../../addon.old/fbpost/fbpost.php:264 -msgid "App-ID / API-Key" -msgstr "App-ID / Clé d'API" - -#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265 -#: ../../addon.old/facebook/facebook.php:767 -#: ../../addon.old/fbpost/fbpost.php:265 -msgid "Application secret" -msgstr "Secret de l'application" - -#: ../../addon/facebook/facebook.php:768 -#: ../../addon.old/facebook/facebook.php:768 -#, php-format -msgid "Polling Interval in minutes (minimum %1$s minutes)" -msgstr "Intervalle de 'polling' en minutes (minimum %1$s minutes)" - -#: ../../addon/facebook/facebook.php:769 -#: ../../addon.old/facebook/facebook.php:769 -msgid "" -"Synchronize comments (no comments on Facebook are missed, at the cost of " -"increased system load)" -msgstr "Synchroniser les commentaires (aucun commentaire de Facebook ne devrait être oublié, au prix d'une charge système accrue)" - -#: ../../addon/facebook/facebook.php:773 -#: ../../addon.old/facebook/facebook.php:773 -msgid "Real-Time Updates" -msgstr "Mises-à-jour en temps réel" - -#: ../../addon/facebook/facebook.php:777 -#: ../../addon.old/facebook/facebook.php:777 -msgid "Real-Time Updates are activated." -msgstr "Mises-à-jour en temps réel activées." - -#: ../../addon/facebook/facebook.php:778 -#: ../../addon.old/facebook/facebook.php:778 -msgid "Deactivate Real-Time Updates" -msgstr "Désactiver les mises-à-jour en temps réel" - -#: ../../addon/facebook/facebook.php:780 -#: ../../addon.old/facebook/facebook.php:780 -msgid "Real-Time Updates not activated." -msgstr "Mises-à-jour en temps réel désactivées." - -#: ../../addon/facebook/facebook.php:780 -#: ../../addon.old/facebook/facebook.php:780 -msgid "Activate Real-Time Updates" -msgstr "Activer les mises-à-jour en temps réel" - -#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282 -#: ../../addon/dav/friendica/layout.fnk.php:361 -#: ../../addon.old/facebook/facebook.php:799 -#: ../../addon.old/fbpost/fbpost.php:282 -#: ../../addon.old/dav/friendica/layout.fnk.php:361 -msgid "The new values have been saved." -msgstr "Les nouvelles valeurs ont été sauvées." - -#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301 -#: ../../addon.old/facebook/facebook.php:823 -#: ../../addon.old/fbpost/fbpost.php:301 -msgid "Post to Facebook" -msgstr "Poster sur Facebook" - -#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399 -#: ../../addon.old/facebook/facebook.php:921 -#: ../../addon.old/fbpost/fbpost.php:399 -msgid "" -"Post to Facebook cancelled because of multi-network access permission " -"conflict." -msgstr "Publication sur Facebook annulée pour cause de conflit de permissions inter-réseaux." - -#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610 -#: ../../addon.old/facebook/facebook.php:1149 -#: ../../addon.old/fbpost/fbpost.php:610 -msgid "View on Friendica" -msgstr "Voir sur Friendica" - -#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643 -#: ../../addon.old/facebook/facebook.php:1182 -#: ../../addon.old/fbpost/fbpost.php:643 -msgid "Facebook post failed. Queued for retry." -msgstr "Publication sur Facebook échouée. En attente pour re-tentative." - -#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683 -#: ../../addon.old/facebook/facebook.php:1222 -#: ../../addon.old/fbpost/fbpost.php:683 -msgid "Your Facebook connection became invalid. Please Re-authenticate." -msgstr "Votre connexion à Facebook est devenue invalide. Merci de vous ré-authentifier." - -#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684 -#: ../../addon.old/facebook/facebook.php:1223 -#: ../../addon.old/fbpost/fbpost.php:684 -msgid "Facebook connection became invalid" -msgstr "La connexion Facebook est devenue invalide" - -#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685 -#: ../../addon.old/facebook/facebook.php:1224 -#: ../../addon.old/fbpost/fbpost.php:685 -#, php-format -msgid "" -"Hi %1$s,\n" -"\n" -"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s." -msgstr "Bonjour %1$s,\n\nLa connexion entre vos comptes sur %2$s et Facebook est devenue invalide. Ceci arrive généralement lorsque vous changez de mot de passe Facebook. Pour réactiver cette connexion, vous devrez %3$sré-authentifier le connecteur Facebook%4$s." - -#: ../../addon/snautofollow/snautofollow.php:32 -#: ../../addon.old/snautofollow/snautofollow.php:32 -msgid "StatusNet AutoFollow settings updated." -msgstr "Réglages de suivi automatique sur StatusNet mis à jour." - -#: ../../addon/snautofollow/snautofollow.php:56 -#: ../../addon.old/snautofollow/snautofollow.php:56 -msgid "StatusNet AutoFollow Settings" -msgstr "Réglages de suivi automatique sur StatusNet" - -#: ../../addon/snautofollow/snautofollow.php:58 -#: ../../addon.old/snautofollow/snautofollow.php:58 -msgid "Automatically follow any StatusNet followers/mentioners" -msgstr "Suivre automatiquement les personnes qui vous suivent ou vous mentionnent sur Statusnet" - -#: ../../addon/privacy_image_cache/privacy_image_cache.php:278 -#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260 -msgid "Lifetime of the cache (in hours)" -msgstr "Durée de vie du cache (en heures)" - -#: ../../addon/privacy_image_cache/privacy_image_cache.php:283 -#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265 -msgid "Cache Statistics" -msgstr "Statistiques du cache" - -#: ../../addon/privacy_image_cache/privacy_image_cache.php:286 -#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268 -msgid "Number of items" -msgstr "Nombre d'éléments" - -#: ../../addon/privacy_image_cache/privacy_image_cache.php:288 -#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270 -msgid "Size of the cache" -msgstr "Taille du cache" - -#: ../../addon/privacy_image_cache/privacy_image_cache.php:290 -#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272 -msgid "Delete the whole cache" -msgstr "Vider le cache" - -#: ../../addon/fbpost/fbpost.php:172 ../../addon.old/fbpost/fbpost.php:172 -msgid "Facebook Post disabled" -msgstr "Publications Facebook désactivées" - -#: ../../addon/fbpost/fbpost.php:199 ../../addon.old/fbpost/fbpost.php:199 -msgid "Facebook Post" -msgstr "Publications Facebook" - -#: ../../addon/fbpost/fbpost.php:205 ../../addon.old/fbpost/fbpost.php:205 -msgid "Install Facebook Post connector for this account." -msgstr "Installer le connecteur Facebook pour ce compte." - -#: ../../addon/fbpost/fbpost.php:212 ../../addon.old/fbpost/fbpost.php:212 -msgid "Remove Facebook Post connector" -msgstr "Retirer le connecteur Facebook" - -#: ../../addon/fbpost/fbpost.php:240 ../../addon.old/fbpost/fbpost.php:240 -msgid "Facebook Post Settings" -msgstr "Réglages Facebook" - -#: ../../addon/widgets/widget_like.php:58 -#: ../../addon.old/widgets/widget_like.php:58 -#, php-format -msgid "%d person likes this" -msgid_plural "%d people like this" -msgstr[0] "%d personne aime ça" -msgstr[1] "%d personnes aiment ça" - -#: ../../addon/widgets/widget_like.php:61 -#: ../../addon.old/widgets/widget_like.php:61 -#, php-format -msgid "%d person doesn't like this" -msgid_plural "%d people don't like this" -msgstr[0] "%d personne n'aime pas ça" -msgstr[1] "%d personnes n'aiment pas ça" - -#: ../../addon/widgets/widget_friendheader.php:40 -#: ../../addon.old/widgets/widget_friendheader.php:40 -msgid "Get added to this list!" -msgstr "Ajoutez-vous à cette liste!" - -#: ../../addon/widgets/widgets.php:56 ../../addon.old/widgets/widgets.php:56 -msgid "Generate new key" -msgstr "Générer une nouvelle clé" - -#: ../../addon/widgets/widgets.php:59 ../../addon.old/widgets/widgets.php:59 -msgid "Widgets key" -msgstr "Clé des widgets" - -#: ../../addon/widgets/widgets.php:61 ../../addon.old/widgets/widgets.php:61 -msgid "Widgets available" -msgstr "Widgets disponibles" - -#: ../../addon/widgets/widget_friends.php:40 -#: ../../addon.old/widgets/widget_friends.php:40 -msgid "Connect on Friendica!" -msgstr "Se connecter sur Friendica!" - -#: ../../addon/morepokes/morepokes.php:19 -#: ../../addon.old/morepokes/morepokes.php:19 -msgid "bitchslap" -msgstr "faire un coup de pute" - -#: ../../addon/morepokes/morepokes.php:19 -#: ../../addon.old/morepokes/morepokes.php:19 -msgid "bitchslapped" -msgstr "a fait un coup de pute à" - -#: ../../addon/morepokes/morepokes.php:20 -#: ../../addon.old/morepokes/morepokes.php:20 -msgid "shag" -msgstr "niquer" - -#: ../../addon/morepokes/morepokes.php:20 -#: ../../addon.old/morepokes/morepokes.php:20 -msgid "shagged" -msgstr "a niqué" - -#: ../../addon/morepokes/morepokes.php:21 -#: ../../addon.old/morepokes/morepokes.php:21 -msgid "do something obscenely biological to" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:21 -#: ../../addon.old/morepokes/morepokes.php:21 -msgid "did something obscenely biological to" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:22 -#: ../../addon.old/morepokes/morepokes.php:22 -msgid "point out the poke feature to" -msgstr "indiquer les sollicitations" - -#: ../../addon/morepokes/morepokes.php:22 -#: ../../addon.old/morepokes/morepokes.php:22 -msgid "pointed out the poke feature to" -msgstr "a indiqué les sollicitations à" - -#: ../../addon/morepokes/morepokes.php:23 -#: ../../addon.old/morepokes/morepokes.php:23 -msgid "declare undying love for" -msgstr "déclarer sa flamme" - -#: ../../addon/morepokes/morepokes.php:23 -#: ../../addon.old/morepokes/morepokes.php:23 -msgid "declared undying love for" -msgstr "a déclaré sa flamme à" - -#: ../../addon/morepokes/morepokes.php:24 -#: ../../addon.old/morepokes/morepokes.php:24 -msgid "patent" -msgstr "faire breveter" - -#: ../../addon/morepokes/morepokes.php:24 -#: ../../addon.old/morepokes/morepokes.php:24 -msgid "patented" -msgstr "a fait breveter" - -#: ../../addon/morepokes/morepokes.php:25 -#: ../../addon.old/morepokes/morepokes.php:25 -msgid "stroke beard" -msgstr "frotter sa barbe" - -#: ../../addon/morepokes/morepokes.php:25 -#: ../../addon.old/morepokes/morepokes.php:25 -msgid "stroked their beard at" -msgstr "a frotté sa barbe sur" - -#: ../../addon/morepokes/morepokes.php:26 -#: ../../addon.old/morepokes/morepokes.php:26 -msgid "" -"bemoan the declining standards of modern secondary and tertiary education to" -msgstr "se lamenter sur les valeurs qui se perdent" - -#: ../../addon/morepokes/morepokes.php:26 -#: ../../addon.old/morepokes/morepokes.php:26 -msgid "" -"bemoans the declining standards of modern secondary and tertiary education " -"to" -msgstr "s'est lamenté du lent déclin des valeurs auprès de" - -#: ../../addon/morepokes/morepokes.php:27 -#: ../../addon.old/morepokes/morepokes.php:27 -msgid "hug" -msgstr "faire un calin" - -#: ../../addon/morepokes/morepokes.php:27 -#: ../../addon.old/morepokes/morepokes.php:27 -msgid "hugged" -msgstr "a fait un câlin à" - -#: ../../addon/morepokes/morepokes.php:28 -#: ../../addon.old/morepokes/morepokes.php:28 -msgid "kiss" -msgstr "embrasser" - -#: ../../addon/morepokes/morepokes.php:28 -#: ../../addon.old/morepokes/morepokes.php:28 -msgid "kissed" -msgstr "a embrassé" - -#: ../../addon/morepokes/morepokes.php:29 -#: ../../addon.old/morepokes/morepokes.php:29 -msgid "raise eyebrows at" -msgstr "hausser le sourcil" - -#: ../../addon/morepokes/morepokes.php:29 -#: ../../addon.old/morepokes/morepokes.php:29 -msgid "raised their eyebrows at" -msgstr "a haussé le sourcil à " - -#: ../../addon/morepokes/morepokes.php:30 -#: ../../addon.old/morepokes/morepokes.php:30 -msgid "insult" -msgstr "insulter" - -#: ../../addon/morepokes/morepokes.php:30 -#: ../../addon.old/morepokes/morepokes.php:30 -msgid "insulted" -msgstr "a insulté" - -#: ../../addon/morepokes/morepokes.php:31 -#: ../../addon.old/morepokes/morepokes.php:31 -msgid "praise" -msgstr "louer" - -#: ../../addon/morepokes/morepokes.php:31 -#: ../../addon.old/morepokes/morepokes.php:31 -msgid "praised" -msgstr "a loué" - -#: ../../addon/morepokes/morepokes.php:32 -#: ../../addon.old/morepokes/morepokes.php:32 -msgid "be dubious of" -msgstr "trouver douteux" - -#: ../../addon/morepokes/morepokes.php:32 -#: ../../addon.old/morepokes/morepokes.php:32 -msgid "was dubious of" -msgstr "a trouvé douteux " - -#: ../../addon/morepokes/morepokes.php:33 -#: ../../addon.old/morepokes/morepokes.php:33 -msgid "eat" -msgstr "manger" - -#: ../../addon/morepokes/morepokes.php:33 -#: ../../addon.old/morepokes/morepokes.php:33 -msgid "ate" -msgstr "a mangé " - -#: ../../addon/morepokes/morepokes.php:34 -#: ../../addon.old/morepokes/morepokes.php:34 -msgid "giggle and fawn at" -msgstr "se payer la tête" - -#: ../../addon/morepokes/morepokes.php:34 -#: ../../addon.old/morepokes/morepokes.php:34 -msgid "giggled and fawned at" -msgstr "s'est payé la tête de" - -#: ../../addon/morepokes/morepokes.php:35 -#: ../../addon.old/morepokes/morepokes.php:35 -msgid "doubt" -msgstr "mettre en doute" - -#: ../../addon/morepokes/morepokes.php:35 -#: ../../addon.old/morepokes/morepokes.php:35 -msgid "doubted" -msgstr "a mis en doute " - -#: ../../addon/morepokes/morepokes.php:36 -#: ../../addon.old/morepokes/morepokes.php:36 -msgid "glare" -msgstr "fixer" - -#: ../../addon/morepokes/morepokes.php:36 -#: ../../addon.old/morepokes/morepokes.php:36 -msgid "glared at" -msgstr "a fixé" - -#: ../../addon/yourls/yourls.php:55 ../../addon.old/yourls/yourls.php:55 -msgid "YourLS Settings" -msgstr "Réglages de YourLS" - -#: ../../addon/yourls/yourls.php:57 ../../addon.old/yourls/yourls.php:57 -msgid "URL: http://" -msgstr "URL: http://" - -#: ../../addon/yourls/yourls.php:62 ../../addon.old/yourls/yourls.php:62 -msgid "Username:" -msgstr "Nom d'utilisateur" - -#: ../../addon/yourls/yourls.php:67 ../../addon.old/yourls/yourls.php:67 -msgid "Password:" -msgstr "Mot de passe :" - -#: ../../addon/yourls/yourls.php:72 ../../addon.old/yourls/yourls.php:72 -msgid "Use SSL " -msgstr "Utiliser SSL " - -#: ../../addon/yourls/yourls.php:92 ../../addon.old/yourls/yourls.php:92 -msgid "yourls Settings saved." -msgstr "Réglages yourls sauvés." - -#: ../../addon/ljpost/ljpost.php:39 ../../addon.old/ljpost/ljpost.php:39 -msgid "Post to LiveJournal" -msgstr "Poster vers LiveJournal" - -#: ../../addon/ljpost/ljpost.php:70 ../../addon.old/ljpost/ljpost.php:70 -msgid "LiveJournal Post Settings" -msgstr "Réglages LiveJournal" - -#: ../../addon/ljpost/ljpost.php:72 ../../addon.old/ljpost/ljpost.php:72 -msgid "Enable LiveJournal Post Plugin" -msgstr "Activer \"Poster vers LiveJournal\"" - -#: ../../addon/ljpost/ljpost.php:77 ../../addon.old/ljpost/ljpost.php:77 -msgid "LiveJournal username" -msgstr "Nom d'utilisateur LiveJournal" - -#: ../../addon/ljpost/ljpost.php:82 ../../addon.old/ljpost/ljpost.php:82 -msgid "LiveJournal password" -msgstr "Mot de passe" - -#: ../../addon/ljpost/ljpost.php:87 ../../addon.old/ljpost/ljpost.php:87 -msgid "Post to LiveJournal by default" -msgstr "Poster vers LiveJournal par défaut" - -#: ../../addon/nsfw/nsfw.php:78 ../../addon.old/nsfw/nsfw.php:78 -msgid "Not Safe For Work (General Purpose Content Filter) settings" -msgstr "Réglages de \"NSFW\" (filtrage de contenu)" - -#: ../../addon/nsfw/nsfw.php:80 ../../addon.old/nsfw/nsfw.php:80 -msgid "" -"This plugin looks in posts for the words/text you specify below, and " -"collapses any content containing those keywords so it is not displayed at " -"inappropriate times, such as sexual innuendo that may be improper in a work " -"setting. It is polite and recommended to tag any content containing nudity " -"with #NSFW. This filter can also match any other word/text you specify, and" -" can thereby be used as a general purpose content filter." -msgstr "Cette extension va parcourir les publications à la recherche des mots (ou phrases) que vous spécifierez ci-dessous, et repliera automatiquement tout contenu qui les contiendrait, afin de ne pas risquer de les afficher à un moment inopportun. Comme par exemple des messages à caractère sexuel dans un contexte professionnel. Il est globalement considéré comme correct et poli de \"tagguer\" toute publication contenant de la nudité avec #NSFW (Not Safe For Work - pas pour le boulot). Ce filtre peut également fonctionner pour tout autre texte que vous spécifierez, et pourra ainsi être utilisé comme filtre de contenu générique." - -#: ../../addon/nsfw/nsfw.php:81 ../../addon.old/nsfw/nsfw.php:81 -msgid "Enable Content filter" -msgstr "Activer le filtrage de contenu" - -#: ../../addon/nsfw/nsfw.php:84 ../../addon.old/nsfw/nsfw.php:84 -msgid "Comma separated list of keywords to hide" -msgstr "Liste de mots-clés - séparés par des virgules - à cacher" - -#: ../../addon/nsfw/nsfw.php:89 ../../addon.old/nsfw/nsfw.php:89 -msgid "Use /expression/ to provide regular expressions" -msgstr "Utilisez /expression/ pour les expressions rationnelles" - -#: ../../addon/nsfw/nsfw.php:105 ../../addon.old/nsfw/nsfw.php:105 -msgid "NSFW Settings saved." -msgstr "Réglages NSFW sauvegardés." - -#: ../../addon/nsfw/nsfw.php:157 ../../addon.old/nsfw/nsfw.php:157 -#, php-format -msgid "%s - Click to open/close" -msgstr "%s - cliquer pour ouvrir/fermer" - -#: ../../addon/page/page.php:62 ../../addon/page/page.php:92 -#: ../../addon/forumlist/forumlist.php:60 ../../addon.old/page/page.php:62 -#: ../../addon.old/page/page.php:92 ../../addon.old/forumlist/forumlist.php:60 -msgid "Forums" -msgstr "Forums" - -#: ../../addon/page/page.php:130 ../../addon/forumlist/forumlist.php:94 -#: ../../addon.old/page/page.php:130 -#: ../../addon.old/forumlist/forumlist.php:94 -msgid "Forums:" -msgstr "Forums:" - -#: ../../addon/page/page.php:166 ../../addon.old/page/page.php:166 -msgid "Page settings updated." -msgstr "Paramètres des pages mis à jour." - -#: ../../addon/page/page.php:195 ../../addon.old/page/page.php:195 -msgid "Page Settings" -msgstr "Paramètres des pages" - -#: ../../addon/page/page.php:197 ../../addon.old/page/page.php:197 -msgid "How many forums to display on sidebar without paging" -msgstr "Nombre de forums à afficher sur la barre de côté sans changer de page" - -#: ../../addon/page/page.php:200 ../../addon.old/page/page.php:200 -msgid "Randomise Page/Forum list" -msgstr "Rendre aléatoire la liste des pages/forums" - -#: ../../addon/page/page.php:203 ../../addon.old/page/page.php:203 -msgid "Show pages/forums on profile page" -msgstr "Montrer les forums sur le profil" - -#: ../../addon/planets/planets.php:150 ../../addon.old/planets/planets.php:150 -msgid "Planets Settings" -msgstr "Réglages des Planets" - -#: ../../addon/planets/planets.php:152 ../../addon.old/planets/planets.php:152 -msgid "Enable Planets Plugin" -msgstr "Activer Planets" - -#: ../../addon/forumdirectory/forumdirectory.php:22 -msgid "Forum Directory" -msgstr "" - -#: ../../addon/communityhome/communityhome.php:28 -#: ../../addon/communityhome/communityhome.php:34 -#: ../../addon/communityhome/twillingham/communityhome.php:28 -#: ../../addon/communityhome/twillingham/communityhome.php:34 -#: ../../include/nav.php:64 ../../boot.php:949 -#: ../../addon.old/communityhome/communityhome.php:28 -#: ../../addon.old/communityhome/communityhome.php:34 -#: ../../addon.old/communityhome/twillingham/communityhome.php:28 -#: ../../addon.old/communityhome/twillingham/communityhome.php:34 -msgid "Login" -msgstr "Connexion" - -#: ../../addon/communityhome/communityhome.php:29 -#: ../../addon/communityhome/twillingham/communityhome.php:29 -#: ../../addon.old/communityhome/communityhome.php:29 -#: ../../addon.old/communityhome/twillingham/communityhome.php:29 -msgid "OpenID" -msgstr "OpenID" - -#: ../../addon/communityhome/communityhome.php:38 -#: ../../addon/communityhome/twillingham/communityhome.php:38 -#: ../../addon.old/communityhome/communityhome.php:38 -#: ../../addon.old/communityhome/twillingham/communityhome.php:38 -msgid "Latest users" -msgstr "Derniers utilisateurs" - -#: ../../addon/communityhome/communityhome.php:81 -#: ../../addon/communityhome/twillingham/communityhome.php:81 -#: ../../addon.old/communityhome/communityhome.php:81 -#: ../../addon.old/communityhome/twillingham/communityhome.php:81 -msgid "Most active users" -msgstr "Utilisateurs les plus actifs" - -#: ../../addon/communityhome/communityhome.php:98 -#: ../../addon.old/communityhome/communityhome.php:98 -msgid "Latest photos" -msgstr "Dernières photos" - -#: ../../addon/communityhome/communityhome.php:133 -#: ../../addon.old/communityhome/communityhome.php:133 -msgid "Latest likes" -msgstr "Dernières approbations" - -#: ../../addon/communityhome/communityhome.php:155 -#: ../../view/theme/diabook/theme.php:450 ../../include/text.php:1440 -#: ../../include/conversation.php:117 ../../include/conversation.php:245 -#: ../../addon.old/communityhome/communityhome.php:155 -msgid "event" -msgstr "évènement" - -#: ../../addon/dav/common/wdcal_backend.inc.php:92 -#: ../../addon/dav/common/wdcal_backend.inc.php:166 -#: ../../addon/dav/common/wdcal_backend.inc.php:178 -#: ../../addon/dav/common/wdcal_backend.inc.php:206 -#: ../../addon/dav/common/wdcal_backend.inc.php:214 -#: ../../addon/dav/common/wdcal_backend.inc.php:229 -#: ../../addon.old/dav/common/wdcal_backend.inc.php:92 -#: ../../addon.old/dav/common/wdcal_backend.inc.php:166 -#: ../../addon.old/dav/common/wdcal_backend.inc.php:178 -#: ../../addon.old/dav/common/wdcal_backend.inc.php:206 -#: ../../addon.old/dav/common/wdcal_backend.inc.php:214 -#: ../../addon.old/dav/common/wdcal_backend.inc.php:229 -msgid "No access" -msgstr "Pas d'accès" - -#: ../../addon/dav/common/wdcal_edit.inc.php:30 -#: ../../addon/dav/common/wdcal_edit.inc.php:738 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:30 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:738 -msgid "Could not open component for editing" -msgstr "Échec d'ouverture de l'élément pour édition" - -#: ../../addon/dav/common/wdcal_edit.inc.php:140 -#: ../../addon/dav/friendica/layout.fnk.php:143 -#: ../../addon/dav/friendica/layout.fnk.php:422 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:140 -#: ../../addon.old/dav/friendica/layout.fnk.php:143 -#: ../../addon.old/dav/friendica/layout.fnk.php:422 -msgid "Go back to the calendar" -msgstr "Revenir au calendrier" - -#: ../../addon/dav/common/wdcal_edit.inc.php:144 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:144 -msgid "Event data" -msgstr "Données de l'évènement" - -#: ../../addon/dav/common/wdcal_edit.inc.php:146 -#: ../../addon/dav/friendica/main.php:239 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:146 -#: ../../addon.old/dav/friendica/main.php:239 -msgid "Calendar" -msgstr "Calendrier" - -#: ../../addon/dav/common/wdcal_edit.inc.php:163 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:163 -msgid "Special color" -msgstr "Couleur spéciale" - -#: ../../addon/dav/common/wdcal_edit.inc.php:169 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:169 -msgid "Subject" -msgstr "Sujet" - -#: ../../addon/dav/common/wdcal_edit.inc.php:173 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:173 -msgid "Starts" -msgstr "Début" - -#: ../../addon/dav/common/wdcal_edit.inc.php:178 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:178 -msgid "Ends" -msgstr "Fin" - -#: ../../addon/dav/common/wdcal_edit.inc.php:185 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:185 -msgid "Description" -msgstr "Description" - -#: ../../addon/dav/common/wdcal_edit.inc.php:188 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:188 -msgid "Recurrence" -msgstr "Récurrence" - -#: ../../addon/dav/common/wdcal_edit.inc.php:190 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:190 -msgid "Frequency" -msgstr "Fréquence" - -#: ../../addon/dav/common/wdcal_edit.inc.php:194 -#: ../../include/contact_selectors.php:59 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:194 -msgid "Daily" -msgstr "Chaque jour" - -#: ../../addon/dav/common/wdcal_edit.inc.php:197 -#: ../../include/contact_selectors.php:60 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:197 -msgid "Weekly" -msgstr "Chaque semaine" - -#: ../../addon/dav/common/wdcal_edit.inc.php:200 -#: ../../include/contact_selectors.php:61 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:200 -msgid "Monthly" -msgstr "Chaque mois" - -#: ../../addon/dav/common/wdcal_edit.inc.php:203 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:203 -msgid "Yearly" -msgstr "Par an" - -#: ../../addon/dav/common/wdcal_edit.inc.php:214 -#: ../../include/datetime.php:288 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:214 -msgid "days" -msgstr "jours" - -#: ../../addon/dav/common/wdcal_edit.inc.php:215 -#: ../../include/datetime.php:287 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:215 -msgid "weeks" -msgstr "semaines" - -#: ../../addon/dav/common/wdcal_edit.inc.php:216 -#: ../../include/datetime.php:286 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:216 -msgid "months" -msgstr "mois" - -#: ../../addon/dav/common/wdcal_edit.inc.php:217 -#: ../../include/datetime.php:285 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:217 -msgid "years" -msgstr "ans" - -#: ../../addon/dav/common/wdcal_edit.inc.php:218 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:218 -msgid "Interval" -msgstr "Intervalle" - -#: ../../addon/dav/common/wdcal_edit.inc.php:218 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:218 -msgid "All %select% %time%" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:222 -#: ../../addon/dav/common/wdcal_edit.inc.php:260 -#: ../../addon/dav/common/wdcal_edit.inc.php:481 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:222 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:260 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:481 -msgid "Days" -msgstr "Jours" - -#: ../../addon/dav/common/wdcal_edit.inc.php:231 -#: ../../addon/dav/common/wdcal_edit.inc.php:254 -#: ../../addon/dav/common/wdcal_edit.inc.php:270 -#: ../../addon/dav/common/wdcal_edit.inc.php:293 -#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:922 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:231 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:254 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:270 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:293 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:305 -msgid "Sunday" -msgstr "Dimanche" - -#: ../../addon/dav/common/wdcal_edit.inc.php:235 -#: ../../addon/dav/common/wdcal_edit.inc.php:274 -#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:922 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:235 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:274 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:308 -msgid "Monday" -msgstr "Lundi" - -#: ../../addon/dav/common/wdcal_edit.inc.php:238 -#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:922 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:238 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:277 -msgid "Tuesday" -msgstr "Mardi" - -#: ../../addon/dav/common/wdcal_edit.inc.php:241 -#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:922 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:241 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:280 -msgid "Wednesday" -msgstr "Mercredi" - -#: ../../addon/dav/common/wdcal_edit.inc.php:244 -#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:922 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:244 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:283 -msgid "Thursday" -msgstr "Jeudi" - -#: ../../addon/dav/common/wdcal_edit.inc.php:247 -#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:922 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:247 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:286 -msgid "Friday" -msgstr "Vendredi" - -#: ../../addon/dav/common/wdcal_edit.inc.php:250 -#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:922 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:250 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:289 -msgid "Saturday" -msgstr "Samedi" - -#: ../../addon/dav/common/wdcal_edit.inc.php:297 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:297 -msgid "First day of week:" -msgstr "Premier jour de la semaine :" - -#: ../../addon/dav/common/wdcal_edit.inc.php:350 -#: ../../addon/dav/common/wdcal_edit.inc.php:373 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:350 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:373 -msgid "Day of month" -msgstr "Jour du mois" - -#: ../../addon/dav/common/wdcal_edit.inc.php:354 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:354 -msgid "#num#th of each month" -msgstr "Le #num# de chaque mois" - -#: ../../addon/dav/common/wdcal_edit.inc.php:357 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:357 -msgid "#num#th-last of each month" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:360 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:360 -msgid "#num#th #wkday# of each month" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:363 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:363 -msgid "#num#th-last #wkday# of each month" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:372 -#: ../../addon/dav/friendica/layout.fnk.php:255 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:372 -#: ../../addon.old/dav/friendica/layout.fnk.php:255 -msgid "Month" -msgstr "Mois" - -#: ../../addon/dav/common/wdcal_edit.inc.php:377 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:377 -msgid "#num#th of the given month" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:380 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:380 -msgid "#num#th-last of the given month" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:383 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:383 -msgid "#num#th #wkday# of the given month" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:386 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:386 -msgid "#num#th-last #wkday# of the given month" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:413 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:413 -msgid "Repeat until" -msgstr "Répéter jusqu'à" - -#: ../../addon/dav/common/wdcal_edit.inc.php:417 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:417 -msgid "Infinite" -msgstr "Infini" - -#: ../../addon/dav/common/wdcal_edit.inc.php:420 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:420 -msgid "Until the following date" -msgstr "Jusqu'à cette date" - -#: ../../addon/dav/common/wdcal_edit.inc.php:423 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:423 -msgid "Number of times" -msgstr "Nombre de fois" - -#: ../../addon/dav/common/wdcal_edit.inc.php:429 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:429 -msgid "Exceptions" -msgstr "Exceptions" - -#: ../../addon/dav/common/wdcal_edit.inc.php:432 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:432 -msgid "none" -msgstr "aucun" - -#: ../../addon/dav/common/wdcal_edit.inc.php:449 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:449 -msgid "Notification" -msgstr "Notification" - -#: ../../addon/dav/common/wdcal_edit.inc.php:466 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:466 -msgid "Notify by" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:469 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:469 -msgid "E-Mail" -msgstr "Courriel" - -#: ../../addon/dav/common/wdcal_edit.inc.php:470 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:470 -msgid "On Friendica / Display" -msgstr "Sur Friendica / Afficher" - -#: ../../addon/dav/common/wdcal_edit.inc.php:474 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:474 -msgid "Time" -msgstr "Heure" - -#: ../../addon/dav/common/wdcal_edit.inc.php:478 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:478 -msgid "Hours" -msgstr "Heures" - -#: ../../addon/dav/common/wdcal_edit.inc.php:479 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:479 -msgid "Minutes" -msgstr "Minutes" - -#: ../../addon/dav/common/wdcal_edit.inc.php:480 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:480 -msgid "Seconds" -msgstr "Secondes" - -#: ../../addon/dav/common/wdcal_edit.inc.php:482 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:482 -msgid "Weeks" -msgstr "Semaines" - -#: ../../addon/dav/common/wdcal_edit.inc.php:485 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:485 -msgid "before the" -msgstr "avant le" - -#: ../../addon/dav/common/wdcal_edit.inc.php:486 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:486 -msgid "start of the event" -msgstr "début de l'événement" - -#: ../../addon/dav/common/wdcal_edit.inc.php:487 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:487 -msgid "end of the event" -msgstr "fin de l'événement" - -#: ../../addon/dav/common/wdcal_edit.inc.php:492 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:492 -msgid "Add a notification" -msgstr "Ajouter une notification" - -#: ../../addon/dav/common/wdcal_edit.inc.php:687 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:687 -msgid "The event #name# will start at #date" -msgstr "L'événement #name# commencera le #date#" - -#: ../../addon/dav/common/wdcal_edit.inc.php:696 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:696 -msgid "#name# is about to begin." -msgstr "#name# va commencer" - -#: ../../addon/dav/common/wdcal_edit.inc.php:769 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:769 -msgid "Saved" -msgstr "Sauvegardé" - -#: ../../addon/dav/common/wdcal_configuration.php:148 -#: ../../addon.old/dav/common/wdcal_configuration.php:148 -msgid "U.S. Time Format (mm/dd/YYYY)" -msgstr "Date au format américain (mm/jj/AAAA)" - -#: ../../addon/dav/common/wdcal_configuration.php:243 -#: ../../addon.old/dav/common/wdcal_configuration.php:243 -msgid "German Time Format (dd.mm.YYYY)" -msgstr "Date au format européen (jj.mm.AAAA)" - -#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39 -#: ../../addon.old/dav/common/dav_caldav_backend_private.inc.php:39 -msgid "Private Events" -msgstr "Événements privés." - -#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46 -#: ../../addon.old/dav/common/dav_carddav_backend_private.inc.php:46 -msgid "Private Addressbooks" -msgstr "Carnets d'adresses privés" - -#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36 -#: ../../addon.old/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36 -msgid "Friendica-Native events" -msgstr "Événements natifs de Friendica" - -#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36 -#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59 -#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36 -#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59 -msgid "Friendica-Contacts" -msgstr "Contacts Friendica" - -#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60 -#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60 -msgid "Your Friendica-Contacts" -msgstr "Vos contacts Friendica" - -#: ../../addon/dav/friendica/layout.fnk.php:99 -#: ../../addon/dav/friendica/layout.fnk.php:136 -#: ../../addon.old/dav/friendica/layout.fnk.php:99 -#: ../../addon.old/dav/friendica/layout.fnk.php:136 -msgid "" -"Something went wrong when trying to import the file. Sorry. Maybe some " -"events were imported anyway." -msgstr "Désolé, l'importation du fichier s'est mal passée. Toutefois, il se peut que certains événements aient tout de même été importés." - -#: ../../addon/dav/friendica/layout.fnk.php:131 -#: ../../addon.old/dav/friendica/layout.fnk.php:131 -msgid "Something went wrong when trying to import the file. Sorry." -msgstr "Désolé, l'importation du fichier s'est mal passée." - -#: ../../addon/dav/friendica/layout.fnk.php:134 -#: ../../addon.old/dav/friendica/layout.fnk.php:134 -msgid "The ICS-File has been imported." -msgstr "Le fichier ICS a été importé." - -#: ../../addon/dav/friendica/layout.fnk.php:138 -#: ../../addon.old/dav/friendica/layout.fnk.php:138 -msgid "No file was uploaded." -msgstr "Aucun fichier n'a été téléchargé." - -#: ../../addon/dav/friendica/layout.fnk.php:147 -#: ../../addon.old/dav/friendica/layout.fnk.php:147 -msgid "Import a ICS-file" -msgstr "Importer un fichier ICS" - -#: ../../addon/dav/friendica/layout.fnk.php:150 -#: ../../addon.old/dav/friendica/layout.fnk.php:150 -msgid "ICS-File" -msgstr "Fichier ICS" - -#: ../../addon/dav/friendica/layout.fnk.php:151 -#: ../../addon.old/dav/friendica/layout.fnk.php:151 -msgid "Overwrite all #num# existing events" -msgstr "Écraser les #num# événements existants" - -#: ../../addon/dav/friendica/layout.fnk.php:228 -#: ../../addon.old/dav/friendica/layout.fnk.php:228 -msgid "New event" -msgstr "Nouvel événement" - -#: ../../addon/dav/friendica/layout.fnk.php:232 -#: ../../addon.old/dav/friendica/layout.fnk.php:232 -msgid "Today" -msgstr "Aujourd'hui" - -#: ../../addon/dav/friendica/layout.fnk.php:241 -#: ../../addon.old/dav/friendica/layout.fnk.php:241 -msgid "Day" -msgstr "Jour" - -#: ../../addon/dav/friendica/layout.fnk.php:248 -#: ../../addon.old/dav/friendica/layout.fnk.php:248 -msgid "Week" -msgstr "Semaine" - -#: ../../addon/dav/friendica/layout.fnk.php:260 -#: ../../addon.old/dav/friendica/layout.fnk.php:260 -msgid "Reload" -msgstr "Recharger" - -#: ../../addon/dav/friendica/layout.fnk.php:271 -#: ../../addon.old/dav/friendica/layout.fnk.php:271 -msgid "Date" -msgstr "Date" - -#: ../../addon/dav/friendica/layout.fnk.php:313 -#: ../../addon.old/dav/friendica/layout.fnk.php:313 -msgid "Error" -msgstr "Erreur" - -#: ../../addon/dav/friendica/layout.fnk.php:380 -#: ../../addon.old/dav/friendica/layout.fnk.php:380 -msgid "The calendar has been updated." -msgstr "Le calendrier a été mis à jour." - -#: ../../addon/dav/friendica/layout.fnk.php:393 -#: ../../addon.old/dav/friendica/layout.fnk.php:393 -msgid "The new calendar has been created." -msgstr "Le nouveau calendrier a été créé." - -#: ../../addon/dav/friendica/layout.fnk.php:417 -#: ../../addon.old/dav/friendica/layout.fnk.php:417 -msgid "The calendar has been deleted." -msgstr "Le calendrier a été détruit." - -#: ../../addon/dav/friendica/layout.fnk.php:424 -#: ../../addon.old/dav/friendica/layout.fnk.php:424 -msgid "Calendar Settings" -msgstr "Paramètres du calendrier" - -#: ../../addon/dav/friendica/layout.fnk.php:430 -#: ../../addon.old/dav/friendica/layout.fnk.php:430 -msgid "Date format" -msgstr "Format de la date" - -#: ../../addon/dav/friendica/layout.fnk.php:439 -#: ../../addon.old/dav/friendica/layout.fnk.php:439 -msgid "Time zone" -msgstr "Fuseau horaire" - -#: ../../addon/dav/friendica/layout.fnk.php:445 -#: ../../addon.old/dav/friendica/layout.fnk.php:445 -msgid "Calendars" -msgstr "Calendriers." - -#: ../../addon/dav/friendica/layout.fnk.php:487 -#: ../../addon.old/dav/friendica/layout.fnk.php:487 -msgid "Create a new calendar" -msgstr "Créer un nouveau calendrier." - -#: ../../addon/dav/friendica/layout.fnk.php:496 -#: ../../addon.old/dav/friendica/layout.fnk.php:496 -msgid "Limitations" -msgstr "Limitations" - -#: ../../addon/dav/friendica/layout.fnk.php:500 -#: ../../addon/libravatar/libravatar.php:82 -#: ../../addon.old/dav/friendica/layout.fnk.php:500 -#: ../../addon.old/libravatar/libravatar.php:82 -msgid "Warning" -msgstr "Avertissement" - -#: ../../addon/dav/friendica/layout.fnk.php:504 -#: ../../addon.old/dav/friendica/layout.fnk.php:504 -msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)" -msgstr "Synchronisation (Iphone, Thunderbird Lightning, Android, ...)" - -#: ../../addon/dav/friendica/layout.fnk.php:511 -#: ../../addon.old/dav/friendica/layout.fnk.php:511 -msgid "Synchronizing this calendar with the iPhone" -msgstr "Synchronisation avec l'Iphone en cours" - -#: ../../addon/dav/friendica/layout.fnk.php:522 -#: ../../addon.old/dav/friendica/layout.fnk.php:522 -msgid "Synchronizing your Friendica-Contacts with the iPhone" -msgstr "Synchronisation de vos contacts Friendica avec l'Iphone en cours" - -#: ../../addon/dav/friendica/main.php:202 -#: ../../addon.old/dav/friendica/main.php:202 -msgid "" -"The current version of this plugin has not been set up correctly. Please " -"contact the system administrator of your installation of friendica to fix " -"this." -msgstr "La version actuelle de cette extension n'a pas été configurée correctement. Merci de contacter votre administrateur Friendica pour régler ce problème. " - -#: ../../addon/dav/friendica/main.php:242 -#: ../../addon.old/dav/friendica/main.php:242 -msgid "Extended calendar with CalDAV-support" -msgstr "Calendrier étendu avec support CalDAV" - -#: ../../addon/dav/friendica/main.php:279 -#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464 -#: ../../include/enotify.php:28 ../../include/notifier.php:778 -#: ../../addon.old/dav/friendica/main.php:279 -#: ../../addon.old/dav/friendica/main.php:280 -msgid "noreply" -msgstr "noreply" - -#: ../../addon/dav/friendica/main.php:282 -#: ../../addon.old/dav/friendica/main.php:282 -msgid "Notification: " -msgstr "Notification :" - -#: ../../addon/dav/friendica/main.php:309 -#: ../../addon.old/dav/friendica/main.php:309 -msgid "The database tables have been installed." -msgstr "Les tables de la base de données ont été installées." - -#: ../../addon/dav/friendica/main.php:310 -#: ../../addon.old/dav/friendica/main.php:310 -msgid "An error occurred during the installation." -msgstr "Une erreur est survenue lors de l'installation." - -#: ../../addon/dav/friendica/main.php:316 -#: ../../addon.old/dav/friendica/main.php:316 -msgid "The database tables have been updated." -msgstr "Les tables de la base de données ont été mises à jour." - -#: ../../addon/dav/friendica/main.php:317 -#: ../../addon.old/dav/friendica/main.php:317 -msgid "An error occurred during the update." -msgstr "Une erreur est survenue lors de la mise à jour." - -#: ../../addon/dav/friendica/main.php:333 -#: ../../addon.old/dav/friendica/main.php:333 -msgid "No system-wide settings yet." -msgstr "Pas de paramètres globaux pour l'instant." - -#: ../../addon/dav/friendica/main.php:336 -#: ../../addon.old/dav/friendica/main.php:336 -msgid "Database status" -msgstr "Etat de la base de données" - -#: ../../addon/dav/friendica/main.php:339 -#: ../../addon.old/dav/friendica/main.php:339 -msgid "Installed" -msgstr "Installé" - -#: ../../addon/dav/friendica/main.php:343 -#: ../../addon.old/dav/friendica/main.php:343 -msgid "Upgrade needed" -msgstr "Mise à jour nécessaire" - -#: ../../addon/dav/friendica/main.php:343 -#: ../../addon.old/dav/friendica/main.php:343 -msgid "" -"Please back up all calendar data (the tables beginning with dav_*) before " -"proceeding. While all calendar events should be converted to the new " -"database structure, it's always safe to have a backup. Below, you can have a" -" look at the database-queries that will be made when pressing the " -"'update'-button." -msgstr "Merci de sauvegarder toutes les données calendaires (les tables commençant par dav_*) avant de continuer. Bien que les évènements du calendrier doivent tous être convertis à la nouvelle structure, ça ne fait pas de mal d'avoir une sauvegarder. Ci-dessous, vous pouvez voir les requêtes qui seront faites lorsque vous lancerez la mise-à-jour." - -#: ../../addon/dav/friendica/main.php:343 -#: ../../addon.old/dav/friendica/main.php:343 -msgid "Upgrade" -msgstr "Mettre à jour" - -#: ../../addon/dav/friendica/main.php:346 -#: ../../addon.old/dav/friendica/main.php:346 -msgid "Not installed" -msgstr "Non installé" - -#: ../../addon/dav/friendica/main.php:346 -#: ../../addon.old/dav/friendica/main.php:346 -msgid "Install" -msgstr "Installer" - -#: ../../addon/dav/friendica/main.php:350 -#: ../../addon.old/dav/friendica/main.php:350 -msgid "Unknown" -msgstr "Inconnu" - -#: ../../addon/dav/friendica/main.php:350 -#: ../../addon.old/dav/friendica/main.php:350 -msgid "" -"Something really went wrong. I cannot recover from this state automatically," -" sorry. Please go to the database backend, back up the data, and delete all " -"tables beginning with 'dav_' manually. Afterwards, this installation routine" -" should be able to reinitialize the tables automatically." -msgstr "Quelque-chose a vraiment déconné. Je ne vais pas pouvoir me rétablir automatiquement, désolé. Merci de contacter directement votre base de données, de sauvegarder les données, et de supprimer toutes les tables qui commencent par 'dav_' à l main. Puis, la routine d'installation devrait être en mesure de réinitialiser ces tables automatiquement." - -#: ../../addon/dav/friendica/main.php:355 -#: ../../addon.old/dav/friendica/main.php:355 -msgid "Troubleshooting" -msgstr "Dépannage" - -#: ../../addon/dav/friendica/main.php:356 -#: ../../addon.old/dav/friendica/main.php:356 -msgid "Manual creation of the database tables:" -msgstr "Création manuelle des tables de la base de données :" - -#: ../../addon/dav/friendica/main.php:357 -#: ../../addon.old/dav/friendica/main.php:357 -msgid "Show SQL-statements" -msgstr "Montrer les requêtes SQL" - -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206 -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206 -msgid "Private Calendar" -msgstr "Calendrier privé" - -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207 -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207 -msgid "Friendica Events: Mine" -msgstr "Evénements Friendica : Personnels" - -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208 -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208 -msgid "Friendica Events: Contacts" -msgstr "Evénements Friendica : Contacts" - -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248 -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248 -msgid "Private Addresses" -msgstr "Adresses privées" - -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249 -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249 -msgid "Friendica Contacts" -msgstr "Contacts Friendica" - -#: ../../addon/uhremotestorage/uhremotestorage.php:84 -#: ../../addon.old/uhremotestorage/uhremotestorage.php:84 -#, php-format -msgid "" -"Allow to use your friendica id (%s) to connecto to external unhosted-enabled" -" storage (like ownCloud). See RemoteStorage" -" WebFinger" -msgstr "Permet l'utilisation de votre ID Friendica (%s) pour vous connecter à des sites compatibles \"unhosted\" (comme ownCloud). Voyez RemoteStorage WebFinger" - -#: ../../addon/uhremotestorage/uhremotestorage.php:85 -#: ../../addon.old/uhremotestorage/uhremotestorage.php:85 -msgid "Template URL (with {category})" -msgstr "Modèle d'URL (avec {catégorie})" - -#: ../../addon/uhremotestorage/uhremotestorage.php:86 -#: ../../addon.old/uhremotestorage/uhremotestorage.php:86 -msgid "OAuth end-point" -msgstr "URL OAuth" - -#: ../../addon/uhremotestorage/uhremotestorage.php:87 -#: ../../addon.old/uhremotestorage/uhremotestorage.php:87 -msgid "Api" -msgstr "Type d'API" - -#: ../../addon/membersince/membersince.php:18 -#: ../../addon.old/membersince/membersince.php:18 -msgid "Member since:" -msgstr "Membre depuis:" - -#: ../../addon/tictac/tictac.php:20 ../../addon.old/tictac/tictac.php:20 -msgid "Three Dimensional Tic-Tac-Toe" -msgstr "Morpion en trois dimensions" - -#: ../../addon/tictac/tictac.php:53 ../../addon.old/tictac/tictac.php:53 -msgid "3D Tic-Tac-Toe" -msgstr "Morpion 3D" - -#: ../../addon/tictac/tictac.php:58 ../../addon.old/tictac/tictac.php:58 -msgid "New game" -msgstr "Nouvelle partie" - -#: ../../addon/tictac/tictac.php:59 ../../addon.old/tictac/tictac.php:59 -msgid "New game with handicap" -msgstr "Nouvelle partie avec handicap" - -#: ../../addon/tictac/tictac.php:60 ../../addon.old/tictac/tictac.php:60 -msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that " -"it is played on multiple levels simultaneously. " -msgstr "Le morpion 3D, c'est comme la version traditionnelle. Sauf qu'on joue sur plusieurs étages en même temps." - -#: ../../addon/tictac/tictac.php:61 ../../addon.old/tictac/tictac.php:61 -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 "Dans le cas qui nous concerne, il y a trois étages. Vous gagnez en alignant trois coups dans n'importe quel étage, ainsi que verticalement ou en diagonale entre les étages." - -#: ../../addon/tictac/tictac.php:63 ../../addon.old/tictac/tictac.php:63 -msgid "" -"The handicap game disables the center position on the middle level because " -"the player claiming this square often has an unfair advantage." -msgstr "Le handicap interdit la position centrale de l'étage du milieu, parce que le joueur qui prend cette case obtient souvent un avantage." - -#: ../../addon/tictac/tictac.php:182 ../../addon.old/tictac/tictac.php:182 -msgid "You go first..." -msgstr "À vous de jouer..." - -#: ../../addon/tictac/tictac.php:187 ../../addon.old/tictac/tictac.php:187 -msgid "I'm going first this time..." -msgstr "Je commence..." - -#: ../../addon/tictac/tictac.php:193 ../../addon.old/tictac/tictac.php:193 -msgid "You won!" -msgstr "Vous avez gagné!" - -#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224 -#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224 -msgid "\"Cat\" game!" -msgstr "Match nul!" - -#: ../../addon/tictac/tictac.php:222 ../../addon.old/tictac/tictac.php:222 -msgid "I won!" -msgstr "J'ai gagné!" - -#: ../../addon/randplace/randplace.php:169 -#: ../../addon.old/randplace/randplace.php:169 -msgid "Randplace Settings" -msgstr "Réglages de Randplace" - -#: ../../addon/randplace/randplace.php:171 -#: ../../addon.old/randplace/randplace.php:171 -msgid "Enable Randplace Plugin" -msgstr "Activer l'extension Randplace" - -#: ../../addon/dwpost/dwpost.php:39 ../../addon.old/dwpost/dwpost.php:39 -msgid "Post to Dreamwidth" -msgstr "Poster vers Dreamwidth" - -#: ../../addon/dwpost/dwpost.php:70 ../../addon.old/dwpost/dwpost.php:70 -msgid "Dreamwidth Post Settings" -msgstr "Réglages Dreamwidth" - -#: ../../addon/dwpost/dwpost.php:72 ../../addon.old/dwpost/dwpost.php:72 -msgid "Enable dreamwidth Post Plugin" -msgstr "Activer \"Poster vers Dreamwidth\"" - -#: ../../addon/dwpost/dwpost.php:77 ../../addon.old/dwpost/dwpost.php:77 -msgid "dreamwidth username" -msgstr "Nom d'utilisateur Dreamwidth" - -#: ../../addon/dwpost/dwpost.php:82 ../../addon.old/dwpost/dwpost.php:82 -msgid "dreamwidth password" -msgstr "Mot de passe" - -#: ../../addon/dwpost/dwpost.php:87 ../../addon.old/dwpost/dwpost.php:87 -msgid "Post to dreamwidth by default" -msgstr "Poster vers Dreamwidth par défaut" - -#: ../../addon/remote_permissions/remote_permissions.php:44 -msgid "Remote Permissions Settings" -msgstr "Permissions distantes" - -#: ../../addon/remote_permissions/remote_permissions.php:45 -msgid "" -"Allow recipients of your private posts to see the other recipients of the " -"posts" -msgstr "Autoriser les destinataires de vos messages privés a voir les autres destinataires du message" - -#: ../../addon/remote_permissions/remote_permissions.php:57 -msgid "Remote Permissions settings updated." -msgstr "Permissions distantes mises-à-jour." - -#: ../../addon/remote_permissions/remote_permissions.php:177 -msgid "Visible to" -msgstr "Visibilité" - -#: ../../addon/remote_permissions/remote_permissions.php:177 -msgid "may only be a partial list" -msgstr "peut être une liste partielle" - -#: ../../addon/remote_permissions/remote_permissions.php:196 -msgid "Global" -msgstr "Global" - -#: ../../addon/remote_permissions/remote_permissions.php:196 -msgid "The posts of every user on this server show the post recipients" -msgstr "Les publications de tous les utilisateurs de ce serveur afficheront leurs destinataires" - -#: ../../addon/remote_permissions/remote_permissions.php:197 -msgid "Individual" -msgstr "Individuel" - -#: ../../addon/remote_permissions/remote_permissions.php:197 -msgid "Each user chooses whether his/her posts show the post recipients" -msgstr "Chaque utilisateur du serveur pourra choisir si ses publications affichent leurs destinataires" - -#: ../../addon/startpage/startpage.php:83 -#: ../../addon.old/startpage/startpage.php:83 -msgid "Startpage Settings" -msgstr "Paramètres de la page d'accueil" - -#: ../../addon/startpage/startpage.php:85 -#: ../../addon.old/startpage/startpage.php:85 -msgid "Home page to load after login - leave blank for profile wall" -msgstr "Page d'accueil à charger après authentification - laisser ce champ vide pour charger votre mur" - -#: ../../addon/startpage/startpage.php:88 -#: ../../addon.old/startpage/startpage.php:88 -msgid "Examples: "network" or "notifications/system"" -msgstr "Exemples : "network" ou "notifications/system"" - -#: ../../addon/geonames/geonames.php:143 -#: ../../addon.old/geonames/geonames.php:143 -msgid "Geonames settings updated." -msgstr "Réglages Geonames sauvés." - -#: ../../addon/geonames/geonames.php:179 -#: ../../addon.old/geonames/geonames.php:179 -msgid "Geonames Settings" -msgstr "Réglages Geonames" - -#: ../../addon/geonames/geonames.php:181 -#: ../../addon.old/geonames/geonames.php:181 -msgid "Enable Geonames Plugin" -msgstr "Activer Geonames" - -#: ../../addon/public_server/public_server.php:126 -#: ../../addon/testdrive/testdrive.php:94 -#: ../../addon.old/public_server/public_server.php:126 -#: ../../addon.old/testdrive/testdrive.php:94 -#, php-format -msgid "Your account on %s will expire in a few days." -msgstr "Votre compte chez %s va expirer dans quelques jours." - -#: ../../addon/public_server/public_server.php:127 -#: ../../addon.old/public_server/public_server.php:127 -msgid "Your Friendica account is about to expire." -msgstr "Votre compte sur Friendica est sur le point d'expirer." - -#: ../../addon/public_server/public_server.php:128 -#: ../../addon.old/public_server/public_server.php:128 -#, php-format -msgid "" -"Hi %1$s,\n" -"\n" -"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days" -msgstr "Bonjour %1$s,\n\nVotre compte sur %2$s expirera dans moins de cinq jours. Vous pouvez conserver ce compte en vous y connectant au moins une fois par mois." - -#: ../../addon/js_upload/js_upload.php:43 -#: ../../addon.old/js_upload/js_upload.php:43 -msgid "Upload a file" -msgstr "Téléverser un fichier" - -#: ../../addon/js_upload/js_upload.php:44 -#: ../../addon.old/js_upload/js_upload.php:44 -msgid "Drop files here to upload" -msgstr "Déposer des fichiers ici pour les téléverser" - -#: ../../addon/js_upload/js_upload.php:46 -#: ../../addon.old/js_upload/js_upload.php:46 -msgid "Failed" -msgstr "Échec" - -#: ../../addon/js_upload/js_upload.php:303 -#: ../../addon.old/js_upload/js_upload.php:297 -msgid "No files were uploaded." -msgstr "Aucun fichier n'a été téléversé." - -#: ../../addon/js_upload/js_upload.php:309 -#: ../../addon.old/js_upload/js_upload.php:303 -msgid "Uploaded file is empty" -msgstr "Le fichier téléversé est vide" - -#: ../../addon/js_upload/js_upload.php:332 -#: ../../addon.old/js_upload/js_upload.php:326 -msgid "File has an invalid extension, it should be one of " -msgstr "Le fichier a une extension invalide, elle devrait être parmi " - -#: ../../addon/js_upload/js_upload.php:343 -#: ../../addon.old/js_upload/js_upload.php:337 -msgid "Upload was cancelled, or server error encountered" -msgstr "Téléversement annulé, ou erreur de serveur" - -#: ../../addon/forumlist/forumlist.php:63 -#: ../../addon.old/forumlist/forumlist.php:63 -msgid "show/hide" -msgstr "Montrer/cacher" - -#: ../../addon/forumlist/forumlist.php:77 -#: ../../addon.old/forumlist/forumlist.php:77 -msgid "No forum subscriptions" -msgstr "Pas d'abonnement au forum" - -#: ../../addon/forumlist/forumlist.php:131 -#: ../../addon.old/forumlist/forumlist.php:131 -msgid "Forumlist settings updated." -msgstr "Paramètres de la liste des forums mis à jour." - -#: ../../addon/forumlist/forumlist.php:159 -#: ../../addon.old/forumlist/forumlist.php:159 -msgid "Forumlist Settings" -msgstr "Paramètres de la liste des forums" - -#: ../../addon/forumlist/forumlist.php:161 -#: ../../addon.old/forumlist/forumlist.php:161 -msgid "Randomise forum list" -msgstr "Mélanger la liste de forums" - -#: ../../addon/forumlist/forumlist.php:164 -#: ../../addon.old/forumlist/forumlist.php:164 -msgid "Show forums on profile page" -msgstr "Montrer les forums sur le profil" - -#: ../../addon/forumlist/forumlist.php:167 -#: ../../addon.old/forumlist/forumlist.php:167 -msgid "Show forums on network page" -msgstr "" - -#: ../../addon/impressum/impressum.php:37 -#: ../../addon.old/impressum/impressum.php:37 -msgid "Impressum" -msgstr "Impressum" - -#: ../../addon/impressum/impressum.php:50 -#: ../../addon/impressum/impressum.php:52 -#: ../../addon/impressum/impressum.php:84 -#: ../../addon.old/impressum/impressum.php:50 -#: ../../addon.old/impressum/impressum.php:52 -#: ../../addon.old/impressum/impressum.php:84 -msgid "Site Owner" -msgstr "Propriétaire du site" - -#: ../../addon/impressum/impressum.php:50 -#: ../../addon/impressum/impressum.php:88 -#: ../../addon.old/impressum/impressum.php:50 -#: ../../addon.old/impressum/impressum.php:88 -msgid "Email Address" -msgstr "Adresse courriel" - -#: ../../addon/impressum/impressum.php:55 -#: ../../addon/impressum/impressum.php:86 -#: ../../addon.old/impressum/impressum.php:55 -#: ../../addon.old/impressum/impressum.php:86 -msgid "Postal Address" -msgstr "Adresse postale" - -#: ../../addon/impressum/impressum.php:61 -#: ../../addon.old/impressum/impressum.php:61 -msgid "" -"The impressum addon needs to be configured!
Please add at least the " -"owner variable to your config file. For other variables please " -"refer to the README file of the addon." -msgstr "L'extension \"Impressum\" (ou ours) n'est pas configuré!
Merci d'ajouter au moins la variable owner à votre fichier de configuration. Pour les autres variables, reportez-vous au fichier README accompagnant l'extension." - -#: ../../addon/impressum/impressum.php:84 -#: ../../addon.old/impressum/impressum.php:84 -msgid "The page operators name." -msgstr "Le nom de l'administrateur de la page." - -#: ../../addon/impressum/impressum.php:85 -#: ../../addon.old/impressum/impressum.php:85 -msgid "Site Owners Profile" -msgstr "Profil des propriétaires du site" - -#: ../../addon/impressum/impressum.php:85 -#: ../../addon.old/impressum/impressum.php:85 -msgid "Profile address of the operator." -msgstr "L'adresse de profil de l'administrateur." - -#: ../../addon/impressum/impressum.php:86 -#: ../../addon.old/impressum/impressum.php:86 -msgid "How to contact the operator via snail mail. You can use BBCode here." -msgstr "Comment contacter l'administrateur par courrier postal. Vous pouvez utiliser du BBCode." - -#: ../../addon/impressum/impressum.php:87 -#: ../../addon.old/impressum/impressum.php:87 -msgid "Notes" -msgstr "Notes" - -#: ../../addon/impressum/impressum.php:87 -#: ../../addon.old/impressum/impressum.php:87 -msgid "" -"Additional notes that are displayed beneath the contact information. You can" -" use BBCode here." -msgstr "Notes additionnelles à afficher sous les informations de contact. Vous pouvez utiliser du BBCode." - -#: ../../addon/impressum/impressum.php:88 -#: ../../addon.old/impressum/impressum.php:88 -msgid "How to contact the operator via email. (will be displayed obfuscated)" -msgstr "Comment contacter l'administrateur par courriel. (sera camouflée)" - -#: ../../addon/impressum/impressum.php:89 -#: ../../addon.old/impressum/impressum.php:89 -msgid "Footer note" -msgstr "Note de bas de page" - -#: ../../addon/impressum/impressum.php:89 -#: ../../addon.old/impressum/impressum.php:89 -msgid "Text for the footer. You can use BBCode here." -msgstr "Texte du pied de page. Vous pouvez utiliser du BBCode." - -#: ../../addon/buglink/buglink.php:15 ../../addon.old/buglink/buglink.php:15 -msgid "Report Bug" -msgstr "Signaler un bug" - -#: ../../addon/notimeline/notimeline.php:32 -#: ../../addon.old/notimeline/notimeline.php:32 -msgid "No Timeline settings updated." -msgstr "Pas de mise à jour de paramètres du calendrier." - -#: ../../addon/notimeline/notimeline.php:56 -#: ../../addon.old/notimeline/notimeline.php:56 -msgid "No Timeline Settings" -msgstr "Pas de paramètres de calendrier" - -#: ../../addon/notimeline/notimeline.php:58 -#: ../../addon.old/notimeline/notimeline.php:58 -msgid "Disable Archive selector on profile wall" -msgstr "Désactiver le sélecteur d'archives sur le mur" - -#: ../../addon/blockem/blockem.php:51 ../../addon.old/blockem/blockem.php:51 -msgid "\"Blockem\" Settings" -msgstr "Réglages de Blockem" - -#: ../../addon/blockem/blockem.php:53 ../../addon.old/blockem/blockem.php:53 -msgid "Comma separated profile URLS to block" -msgstr "Liste d'URLS de profils à bloquer, séparés par des virgules" - -#: ../../addon/blockem/blockem.php:70 ../../addon.old/blockem/blockem.php:70 -msgid "BLOCKEM Settings saved." -msgstr "Réglages Blockem sauvés." - -#: ../../addon/blockem/blockem.php:105 ../../addon.old/blockem/blockem.php:105 -#, php-format -msgid "Blocked %s - Click to open/close" -msgstr "Bloqué %s - Cliquez pour ouvrir/fermer" - -#: ../../addon/blockem/blockem.php:160 ../../addon.old/blockem/blockem.php:160 -msgid "Unblock Author" -msgstr "Débloquer l'auteur" - -#: ../../addon/blockem/blockem.php:162 ../../addon.old/blockem/blockem.php:162 -msgid "Block Author" -msgstr "Bloquer l'auteur" - -#: ../../addon/blockem/blockem.php:194 ../../addon.old/blockem/blockem.php:194 -msgid "blockem settings updated" -msgstr "Réglages blockem sauvés" - -#: ../../addon/qcomment/qcomment.php:51 -#: ../../addon.old/qcomment/qcomment.php:51 -msgid ":-)" -msgstr ":-)" - -#: ../../addon/qcomment/qcomment.php:51 -#: ../../addon.old/qcomment/qcomment.php:51 -msgid ":-(" -msgstr ":-(" - -#: ../../addon/qcomment/qcomment.php:51 -#: ../../addon.old/qcomment/qcomment.php:51 -msgid "lol" -msgstr "mdr" - -#: ../../addon/qcomment/qcomment.php:54 -#: ../../addon.old/qcomment/qcomment.php:54 -msgid "Quick Comment Settings" -msgstr "Réglages de Quick Comment" - -#: ../../addon/qcomment/qcomment.php:56 -#: ../../addon.old/qcomment/qcomment.php:56 -msgid "" -"Quick comments are found near comment boxes, sometimes hidden. Click them to" -" provide simple replies." -msgstr "Les commentaires rapides peuvent être trouvés à proximité des boîtes de commentaire, parfois cachés. Cliquez dessus pour fournir des réponses simples et lapidaires." - -#: ../../addon/qcomment/qcomment.php:57 -#: ../../addon.old/qcomment/qcomment.php:57 -msgid "Enter quick comments, one per line" -msgstr "Entrez les réponses rapides, une par ligne" - -#: ../../addon/qcomment/qcomment.php:75 -#: ../../addon.old/qcomment/qcomment.php:75 -msgid "Quick Comment settings saved." -msgstr "Réglages de Quick Comment sauvés." - -#: ../../addon/openstreetmap/openstreetmap.php:71 -#: ../../addon.old/openstreetmap/openstreetmap.php:71 -msgid "Tile Server URL" -msgstr "URL du serveur de tuiles" - -#: ../../addon/openstreetmap/openstreetmap.php:71 -#: ../../addon.old/openstreetmap/openstreetmap.php:71 -msgid "" -"A list of public tile servers" -msgstr "Une liste de serveurs de tuiles publics" - -#: ../../addon/openstreetmap/openstreetmap.php:72 -#: ../../addon.old/openstreetmap/openstreetmap.php:72 -msgid "Default zoom" -msgstr "Zoom par défaut" - -#: ../../addon/openstreetmap/openstreetmap.php:72 -#: ../../addon.old/openstreetmap/openstreetmap.php:72 -msgid "The default zoom level. (1:world, 18:highest)" -msgstr "Le niveau de zoom affiché par défaut. (1: monde entier, 18: détail maximum)" - -#: ../../addon/group_text/group_text.php:46 -#: ../../addon/editplain/editplain.php:46 -#: ../../addon.old/group_text/group_text.php:46 -#: ../../addon.old/editplain/editplain.php:46 -msgid "Editplain settings updated." -msgstr "Réglages editplain sauvés." - -#: ../../addon/group_text/group_text.php:76 -#: ../../addon.old/group_text/group_text.php:76 -msgid "Group Text" -msgstr "Affichage textuel des groupes" - -#: ../../addon/group_text/group_text.php:78 -#: ../../addon.old/group_text/group_text.php:78 -msgid "Use a text only (non-image) group selector in the \"group edit\" menu" -msgstr "Utilisez un sélecteur de groupe purement textuel (sans image) dans le menu d'édition des groupes" - -#: ../../addon/libravatar/libravatar.php:14 -#: ../../addon.old/libravatar/libravatar.php:14 -msgid "Could NOT install Libravatar successfully.
It requires PHP >= 5.3" -msgstr "Libravatar n'a PAS pu être installé.
Il nécessite PHP >= 5.3" - -#: ../../addon/libravatar/libravatar.php:73 -#: ../../addon/gravatar/gravatar.php:71 -#: ../../addon.old/libravatar/libravatar.php:73 -#: ../../addon.old/gravatar/gravatar.php:71 -msgid "generic profile image" -msgstr "image de profil générique" - -#: ../../addon/libravatar/libravatar.php:74 -#: ../../addon/gravatar/gravatar.php:72 -#: ../../addon.old/libravatar/libravatar.php:74 -#: ../../addon.old/gravatar/gravatar.php:72 -msgid "random geometric pattern" -msgstr "motif géométrique aléatoire" - -#: ../../addon/libravatar/libravatar.php:75 -#: ../../addon/gravatar/gravatar.php:73 -#: ../../addon.old/libravatar/libravatar.php:75 -#: ../../addon.old/gravatar/gravatar.php:73 -msgid "monster face" -msgstr "monstre" - -#: ../../addon/libravatar/libravatar.php:76 -#: ../../addon/gravatar/gravatar.php:74 -#: ../../addon.old/libravatar/libravatar.php:76 -#: ../../addon.old/gravatar/gravatar.php:74 -msgid "computer generated face" -msgstr "généré par ordinateur" - -#: ../../addon/libravatar/libravatar.php:77 -#: ../../addon/gravatar/gravatar.php:75 -#: ../../addon.old/libravatar/libravatar.php:77 -#: ../../addon.old/gravatar/gravatar.php:75 -msgid "retro arcade style face" -msgstr "vieux jeu d'arcade" - -#: ../../addon/libravatar/libravatar.php:83 -#: ../../addon.old/libravatar/libravatar.php:83 -#, php-format -msgid "Your PHP version %s is lower than the required PHP >= 5.3." -msgstr "La version de PHP doit être >= 5.3 ; la votre, %s, est antérieure. " - -#: ../../addon/libravatar/libravatar.php:84 -#: ../../addon.old/libravatar/libravatar.php:84 -msgid "This addon is not functional on your server." -msgstr "Cette extension ne fonctionne pas sur votre serveur." - -#: ../../addon/libravatar/libravatar.php:93 -#: ../../addon/gravatar/gravatar.php:89 -#: ../../addon.old/libravatar/libravatar.php:93 -#: ../../addon.old/gravatar/gravatar.php:89 -msgid "Information" -msgstr "Information" - -#: ../../addon/libravatar/libravatar.php:93 -#: ../../addon.old/libravatar/libravatar.php:93 -msgid "" -"Gravatar addon is installed. Please disable the Gravatar addon.
The " -"Libravatar addon will fall back to Gravatar if nothing was found at " -"Libravatar." -msgstr "L'extension Gravatar est installée ; veuillez la désactiver.
L'extension Libravatar sera remplacée par Gravatar si rien n'a été trouvé." - -#: ../../addon/libravatar/libravatar.php:100 -#: ../../addon/gravatar/gravatar.php:96 -#: ../../addon.old/libravatar/libravatar.php:100 -#: ../../addon.old/gravatar/gravatar.php:96 -msgid "Default avatar image" -msgstr "Avatar par défaut" - -#: ../../addon/libravatar/libravatar.php:100 -#: ../../addon.old/libravatar/libravatar.php:100 -msgid "Select default avatar image if none was found. See README" -msgstr "Sélectionner une image d'avatar par défaut si aucune n'a été trouvée. Voir le fichier README" - -#: ../../addon/libravatar/libravatar.php:112 -#: ../../addon.old/libravatar/libravatar.php:112 -msgid "Libravatar settings updated." -msgstr "Paramètres de Libravatar mis à jour." - -#: ../../addon/libertree/libertree.php:36 -#: ../../addon.old/libertree/libertree.php:36 -msgid "Post to libertree" -msgstr "Publier sur libertree" - -#: ../../addon/libertree/libertree.php:67 -#: ../../addon.old/libertree/libertree.php:67 -msgid "libertree Post Settings" -msgstr "Réglages des messages sur libertree" - -#: ../../addon/libertree/libertree.php:69 -#: ../../addon.old/libertree/libertree.php:69 -msgid "Enable Libertree Post Plugin" -msgstr "Activer le plugin de publication sur libertree" - -#: ../../addon/libertree/libertree.php:74 -#: ../../addon.old/libertree/libertree.php:74 -msgid "Libertree API token" -msgstr "Clé de l'API libertree" - -#: ../../addon/libertree/libertree.php:79 -#: ../../addon.old/libertree/libertree.php:79 -msgid "Libertree site URL" -msgstr "URL du site libertree" - -#: ../../addon/libertree/libertree.php:84 -#: ../../addon.old/libertree/libertree.php:84 -msgid "Post to Libertree by default" -msgstr "Publier sur libertree par défaut" - -#: ../../addon/altpager/altpager.php:46 -#: ../../addon.old/altpager/altpager.php:46 -msgid "Altpager settings updated." -msgstr "Paramètres d'Altpager mis à jour." - -#: ../../addon/altpager/altpager.php:79 -#: ../../addon.old/altpager/altpager.php:79 -msgid "Alternate Pagination Setting" -msgstr "Paramètres de numérotation des pages" - -#: ../../addon/altpager/altpager.php:81 -#: ../../addon.old/altpager/altpager.php:81 -msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?" -msgstr "Utiliser des liens vers \"plus récents\" et \"plus anciens\" au lieu de numéros de pages ?" - -#: ../../addon/mathjax/mathjax.php:37 ../../addon.old/mathjax/mathjax.php:37 -msgid "" -"The MathJax addon renders mathematical formulae written using the LaTeX " -"syntax surrounded by the usual $$ or an eqnarray block in the postings of " -"your wall,network tab and private mail." -msgstr "L'extension MathJax affiche les formules mathématiques écrites suivant la syntaxe LaTeX lorsqu'elles sont encadrés par les $$ habituels, ou dans un un bloc eqnarray. Ceci sur le mur, le Réseau et dans les messages privés." - -#: ../../addon/mathjax/mathjax.php:38 ../../addon.old/mathjax/mathjax.php:38 -msgid "Use the MathJax renderer" -msgstr "Utiliser le rendu MathJax" - -#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74 -msgid "MathJax Base URL" -msgstr "URL de base de MathJax" - -#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74 -msgid "" -"The URL for the javascript file that should be included to use MathJax. Can " -"be either the MathJax CDN or another installation of MathJax." -msgstr "L'URL du fichier Javascript qui doit être inclus pour utiliser MathJax. Ce peut être celle du CDN MathJax, ou bien de toute autre installation de MathJax." - -#: ../../addon/editplain/editplain.php:76 -#: ../../addon.old/editplain/editplain.php:76 -msgid "Editplain Settings" -msgstr "Réglages de editplain" - -#: ../../addon/editplain/editplain.php:78 -#: ../../addon.old/editplain/editplain.php:78 -msgid "Disable richtext status editor" -msgstr "Désactiver l'édition \"riche\"" - -#: ../../addon/gravatar/gravatar.php:89 -#: ../../addon.old/gravatar/gravatar.php:89 -msgid "" -"Libravatar addon is installed, too. Please disable Libravatar addon or this " -"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " -"nothing was found at Libravatar." -msgstr "L'extension Libravatar est également installée. Veuillez désactiver celle-ci ou l'extension Gravatar.
L'extension Libravatar sera remplacée par Gravatar si rien n'a été trouvé." - -#: ../../addon/gravatar/gravatar.php:96 -#: ../../addon.old/gravatar/gravatar.php:96 -msgid "Select default avatar image if none was found at Gravatar. See README" -msgstr "Choisissez l'image de l'avatar par défaut si aucun n'est trouvé via Gravatar. Voir README" - -#: ../../addon/gravatar/gravatar.php:97 -#: ../../addon.old/gravatar/gravatar.php:97 -msgid "Rating of images" -msgstr "Classe des avatars" - -#: ../../addon/gravatar/gravatar.php:97 -#: ../../addon.old/gravatar/gravatar.php:97 -msgid "Select the appropriate avatar rating for your site. See README" -msgstr "Choisissez la classe des avatars appropriée pour votre site. Voir README" - -#: ../../addon/gravatar/gravatar.php:111 -#: ../../addon.old/gravatar/gravatar.php:111 -msgid "Gravatar settings updated." -msgstr "Réglages Gravatar sauvés." - -#: ../../addon/testdrive/testdrive.php:95 -#: ../../addon.old/testdrive/testdrive.php:95 -msgid "Your Friendica test account is about to expire." -msgstr "Votre compte de test Friendica est sur le point d'expirer." - -#: ../../addon/testdrive/testdrive.php:96 -#: ../../addon.old/testdrive/testdrive.php:96 -#, php-format -msgid "" -"Hi %1$s,\n" -"\n" -"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com." -msgstr "Bonjour %1$s,\n\nVotre compte de test sur %2$s va expirer dans moins de cinq jours. Nous espérons que vous avez apprécié cette période d'essais, et que vous profiterez de l'occasion pour vous créer un compte permanent sur un serveur Friendica de votre choix. Une liste des serveurs Friendica ouverts au public peut être consultée sur http://dir.friendica.com/siteinfo - et pour plus d'information sur la meilleure manière de monter votre propre service Friendica, vous pouvez aller directement sur le site du projet http://friendica.com." - -#: ../../addon/pageheader/pageheader.php:50 -#: ../../addon.old/pageheader/pageheader.php:50 -msgid "\"pageheader\" Settings" -msgstr "Réglages de pageheader" - -#: ../../addon/pageheader/pageheader.php:68 -#: ../../addon.old/pageheader/pageheader.php:68 -msgid "pageheader Settings saved." -msgstr "Réglages pageheader sauvés." - -#: ../../addon/ijpost/ijpost.php:39 ../../addon.old/ijpost/ijpost.php:39 -msgid "Post to Insanejournal" -msgstr "Publier vers InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:70 ../../addon.old/ijpost/ijpost.php:70 -msgid "InsaneJournal Post Settings" -msgstr "Réglages InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:72 ../../addon.old/ijpost/ijpost.php:72 -msgid "Enable InsaneJournal Post Plugin" -msgstr "Activer le connecteur InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:77 ../../addon.old/ijpost/ijpost.php:77 -msgid "InsaneJournal username" -msgstr "Utilisateur InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:82 ../../addon.old/ijpost/ijpost.php:82 -msgid "InsaneJournal password" -msgstr "Mot de passe InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:87 ../../addon.old/ijpost/ijpost.php:87 -msgid "Post to InsaneJournal by default" -msgstr "Publier sur InsaneJournal par défaut" - -#: ../../addon/jappixmini/jappixmini.php:266 -#: ../../addon.old/jappixmini/jappixmini.php:266 -msgid "Jappix Mini addon settings" -msgstr "Jappix Mini" - -#: ../../addon/jappixmini/jappixmini.php:268 -#: ../../addon.old/jappixmini/jappixmini.php:268 -msgid "Activate addon" -msgstr "Activer" - -#: ../../addon/jappixmini/jappixmini.php:271 -#: ../../addon.old/jappixmini/jappixmini.php:271 -msgid "" -"Do not insert the Jappixmini Chat-Widget into the webinterface" -msgstr "Ne pas insérer le widget JappixMini dans l'interface web" - -#: ../../addon/jappixmini/jappixmini.php:274 -#: ../../addon.old/jappixmini/jappixmini.php:274 -msgid "Jabber username" -msgstr "Utilisateur Jabber" - -#: ../../addon/jappixmini/jappixmini.php:277 -#: ../../addon.old/jappixmini/jappixmini.php:277 -msgid "Jabber server" -msgstr "Serveur Jabber" - -#: ../../addon/jappixmini/jappixmini.php:281 -#: ../../addon.old/jappixmini/jappixmini.php:281 -msgid "Jabber BOSH host" -msgstr "Hôte BOSH (proxy) Jabber" - -#: ../../addon/jappixmini/jappixmini.php:285 -#: ../../addon.old/jappixmini/jappixmini.php:285 -msgid "Jabber password" -msgstr "Mot de passe Jabber" - -#: ../../addon/jappixmini/jappixmini.php:290 -#: ../../addon.old/jappixmini/jappixmini.php:290 -msgid "Encrypt Jabber password with Friendica password (recommended)" -msgstr "Chiffrer le mot de passe Jabber avec le mot de passe Friendica (recommandé)" - -#: ../../addon/jappixmini/jappixmini.php:293 -#: ../../addon.old/jappixmini/jappixmini.php:293 -msgid "Friendica password" -msgstr "Mot de passe Friendica" - -#: ../../addon/jappixmini/jappixmini.php:296 -#: ../../addon.old/jappixmini/jappixmini.php:296 -msgid "Approve subscription requests from Friendica contacts automatically" -msgstr "Approuver les contacts Friendica automatiquement" - -#: ../../addon/jappixmini/jappixmini.php:299 -#: ../../addon.old/jappixmini/jappixmini.php:299 -msgid "Subscribe to Friendica contacts automatically" -msgstr "S'inscrire aux contacts Friendica automatiquement" - -#: ../../addon/jappixmini/jappixmini.php:302 -#: ../../addon.old/jappixmini/jappixmini.php:302 -msgid "Purge internal list of jabber addresses of contacts" -msgstr "Purger la liste interne d'adresses Jabber" - -#: ../../addon/jappixmini/jappixmini.php:308 -#: ../../addon.old/jappixmini/jappixmini.php:308 -msgid "Add contact" -msgstr "Ajouter un contact" - -#: ../../addon/viewsrc/viewsrc.php:37 ../../addon.old/viewsrc/viewsrc.php:37 -msgid "View Source" -msgstr "Voir la source" - -#: ../../addon/statusnet/statusnet.php:134 -#: ../../addon.old/statusnet/statusnet.php:134 -msgid "Post to StatusNet" -msgstr "Poster sur StatusNet" - -#: ../../addon/statusnet/statusnet.php:176 -#: ../../addon.old/statusnet/statusnet.php:176 -msgid "" -"Please contact your site administrator.
The provided API URL is not " -"valid." -msgstr "Merci de contacter l'administrateur du site.
L'URL d'API fournie est invalide." - -#: ../../addon/statusnet/statusnet.php:204 -#: ../../addon.old/statusnet/statusnet.php:204 -msgid "We could not contact the StatusNet API with the Path you entered." -msgstr "Nous n'avons pas pu contacter l'API StatusNet avec le chemin saisi." - -#: ../../addon/statusnet/statusnet.php:232 -#: ../../addon.old/statusnet/statusnet.php:232 -msgid "StatusNet settings updated." -msgstr "Réglages StatusNet mis-à-jour." - -#: ../../addon/statusnet/statusnet.php:257 -#: ../../addon.old/statusnet/statusnet.php:257 -msgid "StatusNet Posting Settings" -msgstr "Réglages du connecteur StatusNet" - -#: ../../addon/statusnet/statusnet.php:271 -#: ../../addon.old/statusnet/statusnet.php:271 -msgid "Globally Available StatusNet OAuthKeys" -msgstr "Clés OAuth StatusNet universelles" - -#: ../../addon/statusnet/statusnet.php:272 -#: ../../addon.old/statusnet/statusnet.php:272 -msgid "" -"There are preconfigured OAuth key pairs for some StatusNet servers " -"available. If you are useing one of them, please use these credentials. If " -"not feel free to connect to any other StatusNet instance (see below)." -msgstr "Ce sont des paires de clés OAuth préconfigurées pour certains serveurs StatusNet courants. Si vous utilisez l'un d'entre eux, merci de vous servir de ces clés. Autrement, vous pouvez vous connecter à n'importer quelle autre instance de StatusNet (voir ci-dessous)." - -#: ../../addon/statusnet/statusnet.php:280 -#: ../../addon.old/statusnet/statusnet.php:280 -msgid "Provide your own OAuth Credentials" -msgstr "Fournissez vos propres paramètres OAuth" - -#: ../../addon/statusnet/statusnet.php:281 -#: ../../addon.old/statusnet/statusnet.php:281 -msgid "" -"No consumer key pair for StatusNet found. Register your Friendica 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 " -"Friendica installation at your favorited StatusNet installation." -msgstr "Pas de paire de clé trouvée pour StatusNet. Enregistrez votre compte Friendica comme un client \"desktop\" sur votre compte StatusNet, copiez la paire de clé ici et entrez la racine de l'API.
Avant d'enregistrer votre propre paire de clé, assurez-vous auprès de l'administrateur qu'il n'y a pas déjà une paire de clé pour cette instance de Friendica chez votre fournisseur StatusNet préféré." - -#: ../../addon/statusnet/statusnet.php:283 -#: ../../addon.old/statusnet/statusnet.php:283 -msgid "OAuth Consumer Key" -msgstr "Clé de consommateur OAuth" - -#: ../../addon/statusnet/statusnet.php:286 -#: ../../addon.old/statusnet/statusnet.php:286 -msgid "OAuth Consumer Secret" -msgstr "Secret d'utilisateur OAuth" - -#: ../../addon/statusnet/statusnet.php:289 -#: ../../addon.old/statusnet/statusnet.php:289 -msgid "Base API Path (remember the trailing /)" -msgstr "Chemin de base de l'API (n'oubliez pas le / final)" - -#: ../../addon/statusnet/statusnet.php:310 -#: ../../addon.old/statusnet/statusnet.php:310 -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 "Pour vous connecter à votre compte StatusNet, cliquez sur le bouton ci-dessous pour obtenir un code de sécurité de StatusNet, que vous aurez à coller dans la boîte ci-dessous. Ensuite, validez le formulaire. Seuls vos articles <strong>publics</strong> seront postés sur StatusNet." - -#: ../../addon/statusnet/statusnet.php:311 -#: ../../addon.old/statusnet/statusnet.php:311 -msgid "Log in with StatusNet" -msgstr "Se connecter à StatusNet" - -#: ../../addon/statusnet/statusnet.php:313 -#: ../../addon.old/statusnet/statusnet.php:313 -msgid "Copy the security code from StatusNet here" -msgstr "Coller le code de sécurité de StatusNet ici" - -#: ../../addon/statusnet/statusnet.php:319 -#: ../../addon.old/statusnet/statusnet.php:319 -msgid "Cancel Connection Process" -msgstr "Annuler le processus de connexion" - -#: ../../addon/statusnet/statusnet.php:321 -#: ../../addon.old/statusnet/statusnet.php:321 -msgid "Current StatusNet API is" -msgstr "L'API StatusNet courante est" - -#: ../../addon/statusnet/statusnet.php:322 -#: ../../addon.old/statusnet/statusnet.php:322 -msgid "Cancel StatusNet Connection" -msgstr "Annuler la connexion à StatusNet" - -#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189 -#: ../../addon.old/statusnet/statusnet.php:333 -#: ../../addon.old/twitter/twitter.php:189 -msgid "Currently connected to: " -msgstr "Actuellement connecté à: " - -#: ../../addon/statusnet/statusnet.php:334 -#: ../../addon.old/statusnet/statusnet.php:334 -msgid "" -"If enabled all your public postings can be posted to the " -"associated StatusNet account. You can choose to do so by default (here) or " -"for every posting separately in the posting options when writing the entry." -msgstr "En cas d'activation, toutes vos notices publiques seront transmises au compte StatusNet associé. Vous pourrez choisir de le faire par défaut (ici), ou bien pour chaque notice séparément lors de sa rédaction." - -#: ../../addon/statusnet/statusnet.php:336 -#: ../../addon.old/statusnet/statusnet.php:336 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to StatusNet will lead the visitor to a blank page " -"informing the visitor that the access to your profile has been restricted." -msgstr "Note: Du fait de vos réglages de vie privée (Cacher les détails de votre profil des visiteurs inconnus?), le lien potentiellement inclus dans les messages publics relayés vers StatusNet conduira les visiteurs vers une page blanche les informant que leur accès à votre profil a été restreint." - -#: ../../addon/statusnet/statusnet.php:339 -#: ../../addon.old/statusnet/statusnet.php:339 -msgid "Allow posting to StatusNet" -msgstr "Autoriser la publication sur StatusNet" - -#: ../../addon/statusnet/statusnet.php:342 -#: ../../addon.old/statusnet/statusnet.php:342 -msgid "Send public postings to StatusNet by default" -msgstr "Par défaut, envoyer les notices publiques à StatusNet" - -#: ../../addon/statusnet/statusnet.php:345 -#: ../../addon.old/statusnet/statusnet.php:345 -msgid "Send linked #-tags and @-names to StatusNet" -msgstr "Envoyer les liens vers les #-tags et les @-noms sur StatusNet" - -#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206 -#: ../../addon.old/statusnet/statusnet.php:350 -#: ../../addon.old/twitter/twitter.php:206 -msgid "Clear OAuth configuration" -msgstr "Effacer la configuration OAuth" - -#: ../../addon/statusnet/statusnet.php:677 -#: ../../addon.old/statusnet/statusnet.php:568 -msgid "API URL" -msgstr "URL de l'API" - -#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 -#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 -msgid "Infinite Improbability Drive" -msgstr "Générateur d'improbabilté infinie" - -#: ../../addon/tumblr/tumblr.php:36 ../../addon.old/tumblr/tumblr.php:36 -msgid "Post to Tumblr" -msgstr "Publier sur Tumblr" - -#: ../../addon/tumblr/tumblr.php:67 ../../addon.old/tumblr/tumblr.php:67 -msgid "Tumblr Post Settings" -msgstr "Réglages de Tumblr" - -#: ../../addon/tumblr/tumblr.php:69 ../../addon.old/tumblr/tumblr.php:69 -msgid "Enable Tumblr Post Plugin" -msgstr "Activer l'extension Tumblr" - -#: ../../addon/tumblr/tumblr.php:74 ../../addon.old/tumblr/tumblr.php:74 -msgid "Tumblr login" -msgstr "Login Tumblr" - -#: ../../addon/tumblr/tumblr.php:79 ../../addon.old/tumblr/tumblr.php:79 -msgid "Tumblr password" -msgstr "Mot de passe Tumblr" - -#: ../../addon/tumblr/tumblr.php:84 ../../addon.old/tumblr/tumblr.php:84 -msgid "Post to Tumblr by default" -msgstr "Publier sur Tumblr par défaut" - -#: ../../addon/numfriends/numfriends.php:46 -#: ../../addon.old/numfriends/numfriends.php:46 -msgid "Numfriends settings updated." -msgstr "Réglages numfriends sauvés." - -#: ../../addon/numfriends/numfriends.php:77 -#: ../../addon.old/numfriends/numfriends.php:77 -msgid "Numfriends Settings" -msgstr "Réglages de numfriends" - -#: ../../addon/numfriends/numfriends.php:79 ../../addon.old/bg/bg.php:84 -#: ../../addon.old/numfriends/numfriends.php:79 -msgid "How many contacts to display on profile sidebar" -msgstr "Nombre de contacts à montrer sur le panneau latéral du profil" - -#: ../../addon/gnot/gnot.php:48 ../../addon.old/gnot/gnot.php:48 -msgid "Gnot settings updated." -msgstr "Réglages Gnot sauvés." - -#: ../../addon/gnot/gnot.php:79 ../../addon.old/gnot/gnot.php:79 -msgid "Gnot Settings" -msgstr "Réglages Gnot" - -#: ../../addon/gnot/gnot.php:81 ../../addon.old/gnot/gnot.php:81 -msgid "" -"Allows threading of email comment notifications on Gmail and anonymising the" -" subject line." -msgstr "Autorise l'arborescence des notifications de commentaires sur GMail, et rend la ligne 'Sujet' anonyme." - -#: ../../addon/gnot/gnot.php:82 ../../addon.old/gnot/gnot.php:82 -msgid "Enable this plugin/addon?" -msgstr "Activer cette extension?" - -#: ../../addon/gnot/gnot.php:97 ../../addon.old/gnot/gnot.php:97 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%d" -msgstr "[Friendica:Notification] Commentaire sur la conversation #%d" - -#: ../../addon/wppost/wppost.php:42 ../../addon.old/wppost/wppost.php:42 -msgid "Post to Wordpress" -msgstr "Poster sur WordPress" - -#: ../../addon/wppost/wppost.php:76 ../../addon.old/wppost/wppost.php:76 -msgid "WordPress Post Settings" -msgstr "Réglages WordPress" - -#: ../../addon/wppost/wppost.php:78 ../../addon.old/wppost/wppost.php:78 -msgid "Enable WordPress Post Plugin" -msgstr "Activer l'extension WordPress" - -#: ../../addon/wppost/wppost.php:83 ../../addon.old/wppost/wppost.php:83 -msgid "WordPress username" -msgstr "Utilisateur WordPress" - -#: ../../addon/wppost/wppost.php:88 ../../addon.old/wppost/wppost.php:88 -msgid "WordPress password" -msgstr "Mot de passe WordPress" - -#: ../../addon/wppost/wppost.php:93 ../../addon.old/wppost/wppost.php:93 -msgid "WordPress API URL" -msgstr "URL de l'API WordPress" - -#: ../../addon/wppost/wppost.php:98 ../../addon.old/wppost/wppost.php:98 -msgid "Post to WordPress by default" -msgstr "Publier sur WordPress par défaut" - -#: ../../addon/wppost/wppost.php:103 ../../addon.old/wppost/wppost.php:103 -msgid "Provide a backlink to the Friendica post" -msgstr "Fournir un rétrolien vers le message sur Friendica" - -#: ../../addon/wppost/wppost.php:201 ../../addon/blogger/blogger.php:172 -#: ../../addon/posterous/posterous.php:189 -#: ../../addon.old/drpost/drpost.php:184 ../../addon.old/wppost/wppost.php:201 -#: ../../addon.old/blogger/blogger.php:172 -#: ../../addon.old/posterous/posterous.php:189 -msgid "Post from Friendica" -msgstr "Publier depuis Friendica" - -#: ../../addon/wppost/wppost.php:207 ../../addon.old/wppost/wppost.php:207 -msgid "Read the original post and comment stream on Friendica" -msgstr "Lire le message d'origine et le flux des commentaires sur Friendica" - -#: ../../addon/showmore/showmore.php:38 -#: ../../addon.old/showmore/showmore.php:38 -msgid "\"Show more\" Settings" -msgstr "Réglages de \"Show more\"" - -#: ../../addon/showmore/showmore.php:41 -#: ../../addon.old/showmore/showmore.php:41 -msgid "Enable Show More" -msgstr "Activer \"Show more\"" - -#: ../../addon/showmore/showmore.php:44 -#: ../../addon.old/showmore/showmore.php:44 -msgid "Cutting posts after how much characters" -msgstr "Coupure après combien de caractères" - -#: ../../addon/showmore/showmore.php:65 -#: ../../addon.old/showmore/showmore.php:65 -msgid "Show More Settings saved." -msgstr "Réglages \"Show more\" sauvés." - -#: ../../addon/piwik/piwik.php:79 ../../addon.old/piwik/piwik.php:79 -msgid "" -"This website is tracked using the Piwik " -"analytics tool." -msgstr "Ce site collecte ses statistiques grâce à Piwik." - -#: ../../addon/piwik/piwik.php:82 ../../addon.old/piwik/piwik.php:82 -#, php-format -msgid "" -"If you do not want that your visits are logged this way you can" -" set a cookie to prevent Piwik from tracking further visits of the site " -"(opt-out)." -msgstr "Si vous ne voulez pas que vos visites soient collectées par ce biais, vous pouvez activer un cookie qui empêchera Piwik de tenir compte de vos visites ultérieures (opt-out)." - -#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90 -msgid "Piwik Base URL" -msgstr "URL de base de Piwik" - -#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90 -msgid "" -"Absolute path to your Piwik installation. (without protocol (http/s), with " -"trailing slash)" -msgstr "Chemin absolu vers votre installation Piwik. (sans protocole (http/s), avec un / terminal)" - -#: ../../addon/piwik/piwik.php:91 ../../addon.old/piwik/piwik.php:91 -msgid "Site ID" -msgstr "ID du site" - -#: ../../addon/piwik/piwik.php:92 ../../addon.old/piwik/piwik.php:92 -msgid "Show opt-out cookie link?" -msgstr "Montrer le lien d'opt-out?" - -#: ../../addon/piwik/piwik.php:93 ../../addon.old/piwik/piwik.php:93 -msgid "Asynchronous tracking" -msgstr "Suivi asynchrone" - -#: ../../addon/twitter/twitter.php:73 ../../addon.old/twitter/twitter.php:73 -msgid "Post to Twitter" -msgstr "Poster sur Twitter" - -#: ../../addon/twitter/twitter.php:122 ../../addon.old/twitter/twitter.php:122 -msgid "Twitter settings updated." -msgstr "Réglages de Twitter mis-à-jour." - -#: ../../addon/twitter/twitter.php:146 ../../addon.old/twitter/twitter.php:146 -msgid "Twitter Posting Settings" -msgstr "Réglages du connecteur Twitter" - -#: ../../addon/twitter/twitter.php:153 ../../addon.old/twitter/twitter.php:153 -msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." -msgstr "Pas de paire de clés pour Twitter. Merci de contacter l'administrateur du site." - -#: ../../addon/twitter/twitter.php:172 ../../addon.old/twitter/twitter.php:172 -msgid "" -"At this Friendica 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 "Sur cette instance de Friendica, le connecteur Twitter a été activé, mais vous n'avez pas encore connecté votre compte local à votre compte Twitter. Pour ce faire, cliquer sur le bouton ci-dessous. Vous obtiendrez alors un 'PIN' de Twitter, que vous devrez copier dans le champ ci-dessous, puis soumettre le formulaire. Seuls vos messages publics seront transmis à Twitter." - -#: ../../addon/twitter/twitter.php:173 ../../addon.old/twitter/twitter.php:173 -msgid "Log in with Twitter" -msgstr "Se connecter à Twitter" - -#: ../../addon/twitter/twitter.php:175 ../../addon.old/twitter/twitter.php:175 -msgid "Copy the PIN from Twitter here" -msgstr "Copier le PIN de Twitter ici" - -#: ../../addon/twitter/twitter.php:190 ../../addon.old/twitter/twitter.php:190 -msgid "" -"If enabled all your public postings can be posted to the " -"associated Twitter account. You can choose to do so by default (here) or for" -" every posting separately in the posting options when writing the entry." -msgstr "En cas d'activation, toutes vos notices publiques seront transmises au compte Twitter associé. Vous pourrez choisir de le faire par défaut (ici), ou bien pour chaque notice séparément lors de sa rédaction." - -#: ../../addon/twitter/twitter.php:192 ../../addon.old/twitter/twitter.php:192 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to Twitter will lead the visitor to a blank page informing " -"the visitor that the access to your profile has been restricted." -msgstr "Note: Du fait de vos réglages de vie privée (Cacher les détails de votre profil des visiteurs inconnus?), le lien potentiellement inclus dans les messages publics relayés vers Twitter conduira les visiteurs vers une page blanche les informant que leur accès à votre profil a été restreint." - -#: ../../addon/twitter/twitter.php:195 ../../addon.old/twitter/twitter.php:195 -msgid "Allow posting to Twitter" -msgstr "Autoriser la publication sur Twitter" - -#: ../../addon/twitter/twitter.php:198 ../../addon.old/twitter/twitter.php:198 -msgid "Send public postings to Twitter by default" -msgstr "Envoyer les éléments publics sur Twitter par défaut" - -#: ../../addon/twitter/twitter.php:201 ../../addon.old/twitter/twitter.php:201 -msgid "Send linked #-tags and @-names to Twitter" -msgstr "Envoyer les liens vers les #-tags et les @-noms sur Twitter" - -#: ../../addon/twitter/twitter.php:508 ../../addon.old/twitter/twitter.php:396 -msgid "Consumer key" -msgstr "Clé utilisateur" - -#: ../../addon/twitter/twitter.php:509 ../../addon.old/twitter/twitter.php:397 -msgid "Consumer secret" -msgstr "Secret utilisateur" - -#: ../../addon/irc/irc.php:44 ../../addon.old/irc/irc.php:44 -msgid "IRC Settings" -msgstr "Réglages IRC" - -#: ../../addon/irc/irc.php:46 ../../addon.old/irc/irc.php:46 -msgid "Channel(s) to auto connect (comma separated)" -msgstr "Canaux à rejoindre automatiquement (séparés par des virgules)" - -#: ../../addon/irc/irc.php:51 ../../addon.old/irc/irc.php:51 -msgid "Popular Channels (comma separated)" -msgstr "Canaux populaires (séparés par des virgules)" - -#: ../../addon/irc/irc.php:69 ../../addon.old/irc/irc.php:69 -msgid "IRC settings saved." -msgstr "Réglages IRC sauvés." - -#: ../../addon/irc/irc.php:74 ../../addon.old/irc/irc.php:74 -msgid "IRC Chatroom" -msgstr "Salon IRC" - -#: ../../addon/irc/irc.php:96 ../../addon.old/irc/irc.php:96 -msgid "Popular Channels" -msgstr "Canaux populaires" - -#: ../../addon/fromapp/fromapp.php:38 ../../addon.old/fromapp/fromapp.php:38 -msgid "Fromapp settings updated." -msgstr "Réglages FromApp mis-à-jour" - -#: ../../addon/fromapp/fromapp.php:64 ../../addon.old/fromapp/fromapp.php:64 -msgid "FromApp Settings" -msgstr "FromApp" - -#: ../../addon/fromapp/fromapp.php:66 ../../addon.old/fromapp/fromapp.php:66 -msgid "" -"The application name you would like to show your posts originating from." -msgstr "Le nom d'application que vous souhaiteriez que vos publications affichent comme source." - -#: ../../addon/fromapp/fromapp.php:70 ../../addon.old/fromapp/fromapp.php:70 -msgid "Use this application name even if another application was used." -msgstr "Afficher ce nom d'application même si une autre a été utilisée." - -#: ../../addon/blogger/blogger.php:42 ../../addon.old/blogger/blogger.php:42 -msgid "Post to blogger" -msgstr "Poster vers Blogger" - -#: ../../addon/blogger/blogger.php:74 ../../addon.old/blogger/blogger.php:74 -msgid "Blogger Post Settings" -msgstr "Réglages Blogger" - -#: ../../addon/blogger/blogger.php:76 ../../addon.old/blogger/blogger.php:76 -msgid "Enable Blogger Post Plugin" -msgstr "Activer le connecteur Blogger" - -#: ../../addon/blogger/blogger.php:81 ../../addon.old/blogger/blogger.php:81 -msgid "Blogger username" -msgstr "Utilisateur Blogger" - -#: ../../addon/blogger/blogger.php:86 ../../addon.old/blogger/blogger.php:86 -msgid "Blogger password" -msgstr "Mot de passe Blogger" - -#: ../../addon/blogger/blogger.php:91 ../../addon.old/blogger/blogger.php:91 -msgid "Blogger API URL" -msgstr "URL de l'API Blogger" - -#: ../../addon/blogger/blogger.php:96 ../../addon.old/blogger/blogger.php:96 -msgid "Post to Blogger by default" -msgstr "Poster vers Blogger par défaut" - -#: ../../addon/posterous/posterous.php:37 -#: ../../addon.old/posterous/posterous.php:37 -msgid "Post to Posterous" -msgstr "Envoyer à Posterous" - -#: ../../addon/posterous/posterous.php:70 -#: ../../addon.old/posterous/posterous.php:70 -msgid "Posterous Post Settings" -msgstr "Réglages de l'envoi à Posterous" - -#: ../../addon/posterous/posterous.php:72 -#: ../../addon.old/posterous/posterous.php:72 -msgid "Enable Posterous Post Plugin" -msgstr "Activer l'envoi à Posterous" - -#: ../../addon/posterous/posterous.php:77 -#: ../../addon.old/posterous/posterous.php:77 -msgid "Posterous login" -msgstr "Login Posterous" - -#: ../../addon/posterous/posterous.php:82 -#: ../../addon.old/posterous/posterous.php:82 -msgid "Posterous password" -msgstr "Mot de passe" - -#: ../../addon/posterous/posterous.php:87 -#: ../../addon.old/posterous/posterous.php:87 -msgid "Posterous site ID" -msgstr "ID du site Posterous" - -#: ../../addon/posterous/posterous.php:92 -#: ../../addon.old/posterous/posterous.php:92 -msgid "Posterous API token" -msgstr "Clé d'API Posterous" - -#: ../../addon/posterous/posterous.php:97 -#: ../../addon.old/posterous/posterous.php:97 -msgid "Post to Posterous by default" -msgstr "Envoyer à Posterous par défaut" - -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/diabook/config.php:154 -#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 -msgid "Theme settings" -msgstr "Réglages du thème graphique" - -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)" - -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/diabook/config.php:155 -#: ../../view/theme/dispy/config.php:73 -msgid "Set font-size for posts and comments" -msgstr "Réglez 'font-size' (taille de police) pour publications et commentaires" - -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Largeur du thème" - -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Palette de couleurs" - -#: ../../view/theme/diabook/theme.php:86 ../../include/nav.php:49 -#: ../../include/nav.php:116 -msgid "Your posts and conversations" -msgstr "Vos notices et conversations" - -#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:50 -msgid "Your profile page" -msgstr "Votre page de profil" - -#: ../../view/theme/diabook/theme.php:88 -msgid "Your contacts" -msgstr "Vos contacts" - -#: ../../view/theme/diabook/theme.php:89 ../../include/nav.php:51 -msgid "Your photos" -msgstr "Vos photos" - -#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:52 -msgid "Your events" -msgstr "Vos événements" - -#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:53 -msgid "Personal notes" -msgstr "Notes personnelles" - -#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:53 -msgid "Your personal photos" -msgstr "Vos photos personnelles" - -#: ../../view/theme/diabook/theme.php:93 -#: ../../view/theme/diabook/config.php:163 -msgid "Community Pages" -msgstr "Pages de Communauté" - -#: ../../view/theme/diabook/theme.php:378 -#: ../../view/theme/diabook/theme.php:592 -#: ../../view/theme/diabook/config.php:165 -msgid "Community Profiles" -msgstr "Profils communautaires" - -#: ../../view/theme/diabook/theme.php:399 -#: ../../view/theme/diabook/theme.php:597 -#: ../../view/theme/diabook/config.php:170 -msgid "Last users" -msgstr "Derniers utilisateurs" - -#: ../../view/theme/diabook/theme.php:428 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/config.php:172 -msgid "Last likes" -msgstr "Dernièrement aimé" - -#: ../../view/theme/diabook/theme.php:473 -#: ../../view/theme/diabook/theme.php:598 -#: ../../view/theme/diabook/config.php:171 -msgid "Last photos" -msgstr "Dernières photos" - -#: ../../view/theme/diabook/theme.php:510 -#: ../../view/theme/diabook/theme.php:595 -#: ../../view/theme/diabook/config.php:168 -msgid "Find Friends" -msgstr "Trouver des amis" - -#: ../../view/theme/diabook/theme.php:511 -msgid "Local Directory" -msgstr "Annuaire local" - -#: ../../view/theme/diabook/theme.php:513 ../../include/contact_widgets.php:35 -msgid "Similar Interests" -msgstr "Intérêts similaires" - -#: ../../view/theme/diabook/theme.php:515 ../../include/contact_widgets.php:37 -msgid "Invite Friends" -msgstr "Inviter des amis" - -#: ../../view/theme/diabook/theme.php:532 -#: ../../view/theme/diabook/theme.php:591 -#: ../../view/theme/diabook/config.php:164 -msgid "Earth Layers" -msgstr "Géolocalisation" - -#: ../../view/theme/diabook/theme.php:537 -msgid "Set zoomfactor for Earth Layers" -msgstr "Régler le niveau de zoom pour la géolocalisation" - -#: ../../view/theme/diabook/theme.php:538 -#: ../../view/theme/diabook/config.php:161 -msgid "Set longitude (X) for Earth Layers" -msgstr "Régler la longitude (X) pour la géolocalisation" - -#: ../../view/theme/diabook/theme.php:539 -#: ../../view/theme/diabook/config.php:162 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Régler la latitude (Y) pour la géolocalisation" - -#: ../../view/theme/diabook/theme.php:552 -#: ../../view/theme/diabook/theme.php:593 -#: ../../view/theme/diabook/config.php:166 -msgid "Help or @NewHere ?" -msgstr "Aide ou @NewHere?" - -#: ../../view/theme/diabook/theme.php:559 -#: ../../view/theme/diabook/theme.php:594 -#: ../../view/theme/diabook/config.php:167 -msgid "Connect Services" -msgstr "Connecter des services" - -#: ../../view/theme/diabook/theme.php:566 -#: ../../view/theme/diabook/theme.php:596 -msgid "Last Tweets" -msgstr "Derniers tweets" - -#: ../../view/theme/diabook/theme.php:569 -#: ../../view/theme/diabook/config.php:159 -msgid "Set twitter search term" -msgstr "Rechercher un terme twitter" - -#: ../../view/theme/diabook/theme.php:588 -#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:288 -msgid "don't show" -msgstr "cacher" - -#: ../../view/theme/diabook/theme.php:588 -#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:287 -msgid "show" -msgstr "montrer" - -#: ../../view/theme/diabook/theme.php:589 -msgid "Show/hide boxes at right-hand column:" -msgstr "Montrer/cacher les boîtes dans la colonne de droite :" - -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Réglez 'line-height' (hauteur de police) pour publications et commentaires" - -#: ../../view/theme/diabook/config.php:157 -msgid "Set resolution for middle column" -msgstr "Réglez la résolution de la colonne centrale" - -#: ../../view/theme/diabook/config.php:158 -msgid "Set color scheme" -msgstr "Choisir le schéma de couleurs" - -#: ../../view/theme/diabook/config.php:160 -msgid "Set zoomfactor for Earth Layer" -msgstr "Niveau de zoom" - -#: ../../view/theme/diabook/config.php:169 -msgid "Last tweets" -msgstr "Derniers tweets" - -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Alignement" - -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Gauche" - -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Centre" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Taille de texte des messages" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Choisir le schéma de couleurs" - #: ../../include/profile_advanced.php:22 msgid "j F, Y" msgstr "j F, Y" @@ -7854,23 +53,57 @@ msgstr "Anniversaire:" msgid "Age:" msgstr "Age:" +#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138 +#: ../../boot.php:1490 +msgid "Status:" +msgstr "Statut:" + #: ../../include/profile_advanced.php:43 #, php-format msgid "for %1$d %2$s" msgstr "depuis %1$d %2$s" +#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:650 +msgid "Sexual Preference:" +msgstr "Préférence sexuelle:" + +#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140 +#: ../../boot.php:1492 +msgid "Homepage:" +msgstr "Page personnelle:" + +#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:652 +msgid "Hometown:" +msgstr " Ville d'origine:" + #: ../../include/profile_advanced.php:52 msgid "Tags:" msgstr "Tags :" +#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:653 +msgid "Political Views:" +msgstr "Opinions politiques:" + #: ../../include/profile_advanced.php:56 msgid "Religion:" msgstr "Religion:" +#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142 +msgid "About:" +msgstr "À propos:" + #: ../../include/profile_advanced.php:60 msgid "Hobbies/Interests:" msgstr "Passe-temps/Centres d'intérêt:" +#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:657 +msgid "Likes:" +msgstr "J'aime :" + +#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:658 +msgid "Dislikes:" +msgstr "Je n'aime pas :" + #: ../../include/profile_advanced.php:67 msgid "Contact information and Social Networks:" msgstr "Coordonnées/Réseaux sociaux:" @@ -7903,70 +136,6 @@ msgstr "Activité professionnelle/Occupation:" msgid "School/education:" msgstr "Études/Formation:" -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Inconnu | Non-classé" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Bloquer immédiatement" - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Douteux, spammeur, accro à l'auto-promotion" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Connu de moi, mais sans opinion" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, probablement inoffensif" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Réputé, a toute ma confiance" - -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Fréquemment" - -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Toutes les heures" - -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Deux fois par jour" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "" - #: ../../include/profile_selectors.php:6 msgid "Male" msgstr "Masculin" @@ -8111,8 +280,8 @@ msgstr "Infidèle" msgid "Sex Addict" msgstr "Accro au sexe" -#: ../../include/profile_selectors.php:42 ../../include/user.php:278 -#: ../../include/user.php:282 +#: ../../include/profile_selectors.php:42 ../../include/user.php:279 +#: ../../include/user.php:283 msgid "Friends" msgstr "Amis" @@ -8200,950 +369,115 @@ msgstr "S'en désintéresse" msgid "Ask me" msgstr "Me demander" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:396 -msgid "Starts:" -msgstr "Débute:" +#: ../../include/Contact.php:115 +msgid "stopped following" +msgstr "retiré de la liste de suivi" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:404 -msgid "Finishes:" -msgstr "Finit:" +#: ../../include/Contact.php:225 ../../include/conversation.php:878 +msgid "Poke" +msgstr "Sollicitations (pokes)" -#: ../../include/delivery.php:457 ../../include/notifier.php:771 -msgid "(no subject)" -msgstr "(sans titre)" +#: ../../include/Contact.php:226 ../../include/conversation.php:872 +msgid "View Status" +msgstr "Voir les statuts" -#: ../../include/Scrape.php:583 -msgid " on Last.fm" -msgstr "sur Last.fm" +#: ../../include/Contact.php:227 ../../include/conversation.php:873 +msgid "View Profile" +msgstr "Voir le profil" -#: ../../include/text.php:243 -msgid "prev" -msgstr "précédent" +#: ../../include/Contact.php:228 ../../include/conversation.php:874 +msgid "View Photos" +msgstr "Voir les photos" -#: ../../include/text.php:245 -msgid "first" -msgstr "premier" +#: ../../include/Contact.php:229 ../../include/Contact.php:251 +#: ../../include/conversation.php:875 +msgid "Network Posts" +msgstr "Posts du Réseau" -#: ../../include/text.php:274 -msgid "last" -msgstr "dernier" +#: ../../include/Contact.php:230 ../../include/Contact.php:251 +#: ../../include/conversation.php:876 +msgid "Edit Contact" +msgstr "Éditer le contact" -#: ../../include/text.php:277 -msgid "next" -msgstr "suivant" +#: ../../include/Contact.php:231 ../../include/Contact.php:251 +#: ../../include/conversation.php:877 +msgid "Send PM" +msgstr "Message privé" -#: ../../include/text.php:295 -msgid "newer" -msgstr "Plus récent" +#: ../../include/bbcode.php:210 ../../include/bbcode.php:550 +#: ../../include/bbcode.php:551 +msgid "Image/photo" +msgstr "Image/photo" -#: ../../include/text.php:299 -msgid "older" -msgstr "Plus ancien" - -#: ../../include/text.php:604 -msgid "No contacts" -msgstr "Aucun contact" - -#: ../../include/text.php:613 +#: ../../include/bbcode.php:272 #, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contact" -msgstr[1] "%d contacts" - -#: ../../include/text.php:726 -msgid "poke" -msgstr "titiller" - -#: ../../include/text.php:726 ../../include/conversation.php:210 -msgid "poked" -msgstr "a titillé" - -#: ../../include/text.php:727 -msgid "ping" -msgstr "attirer l'attention" - -#: ../../include/text.php:727 -msgid "pinged" -msgstr "a attiré l'attention de" - -#: ../../include/text.php:728 -msgid "prod" -msgstr "aiguillonner" - -#: ../../include/text.php:728 -msgid "prodded" -msgstr "a aiguillonné" - -#: ../../include/text.php:729 -msgid "slap" -msgstr "gifler" - -#: ../../include/text.php:729 -msgid "slapped" -msgstr "a giflé" - -#: ../../include/text.php:730 -msgid "finger" -msgstr "tripoter" - -#: ../../include/text.php:730 -msgid "fingered" -msgstr "a tripoté" - -#: ../../include/text.php:731 -msgid "rebuff" -msgstr "rabrouer" - -#: ../../include/text.php:731 -msgid "rebuffed" -msgstr "a rabroué" - -#: ../../include/text.php:743 -msgid "happy" -msgstr "heureuse" - -#: ../../include/text.php:744 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:745 -msgid "mellow" -msgstr "suave" - -#: ../../include/text.php:746 -msgid "tired" -msgstr "fatiguée" - -#: ../../include/text.php:747 -msgid "perky" -msgstr "guillerette" - -#: ../../include/text.php:748 -msgid "angry" -msgstr "colérique" - -#: ../../include/text.php:749 -msgid "stupified" -msgstr "stupéfaite" - -#: ../../include/text.php:750 -msgid "puzzled" -msgstr "perplexe" - -#: ../../include/text.php:751 -msgid "interested" -msgstr "intéressée" - -#: ../../include/text.php:752 -msgid "bitter" -msgstr "amère" - -#: ../../include/text.php:753 -msgid "cheerful" -msgstr "entraînante" - -#: ../../include/text.php:754 -msgid "alive" -msgstr "vivante" - -#: ../../include/text.php:755 -msgid "annoyed" -msgstr "ennuyée" - -#: ../../include/text.php:756 -msgid "anxious" -msgstr "anxieuse" - -#: ../../include/text.php:757 -msgid "cranky" -msgstr "excentrique" - -#: ../../include/text.php:758 -msgid "disturbed" -msgstr "dérangée" - -#: ../../include/text.php:759 -msgid "frustrated" -msgstr "frustrée" - -#: ../../include/text.php:760 -msgid "motivated" -msgstr "motivée" - -#: ../../include/text.php:761 -msgid "relaxed" -msgstr "détendue" - -#: ../../include/text.php:762 -msgid "surprised" -msgstr "surprise" - -#: ../../include/text.php:926 -msgid "January" -msgstr "Janvier" - -#: ../../include/text.php:926 -msgid "February" -msgstr "Février" - -#: ../../include/text.php:926 -msgid "March" -msgstr "Mars" - -#: ../../include/text.php:926 -msgid "April" -msgstr "Avril" - -#: ../../include/text.php:926 -msgid "May" -msgstr "Mai" - -#: ../../include/text.php:926 -msgid "June" -msgstr "Juin" - -#: ../../include/text.php:926 -msgid "July" -msgstr "Juillet" - -#: ../../include/text.php:926 -msgid "August" -msgstr "Août" - -#: ../../include/text.php:926 -msgid "September" -msgstr "Septembre" - -#: ../../include/text.php:926 -msgid "October" -msgstr "Octobre" - -#: ../../include/text.php:926 -msgid "November" -msgstr "Novembre" - -#: ../../include/text.php:926 -msgid "December" -msgstr "Décembre" - -#: ../../include/text.php:1010 -msgid "bytes" -msgstr "octets" - -#: ../../include/text.php:1037 ../../include/text.php:1049 -msgid "Click to open/close" -msgstr "Cliquer pour ouvrir/fermer" - -#: ../../include/text.php:1222 ../../include/user.php:236 -msgid "default" -msgstr "défaut" - -#: ../../include/text.php:1234 -msgid "Select an alternate language" -msgstr "Choisir une langue alternative" - -#: ../../include/text.php:1444 -msgid "activity" -msgstr "activité" - -#: ../../include/text.php:1447 -msgid "post" -msgstr "publication" - -#: ../../include/text.php:1602 -msgid "Item filed" -msgstr "Élément classé" - -#: ../../include/diaspora.php:702 -msgid "Sharing notification from Diaspora network" -msgstr "Notification de partage du réseau Diaspora" - -#: ../../include/diaspora.php:2236 -msgid "Attachments:" -msgstr "Pièces jointes : " - -#: ../../include/network.php:847 -msgid "view full size" -msgstr "voir en pleine taille" - -#: ../../include/oembed.php:137 -msgid "Embedded content" -msgstr "Contenu incorporé" - -#: ../../include/oembed.php:146 -msgid "Embedding disabled" -msgstr "Incorporation désactivée" - -#: ../../include/uimport.php:61 -msgid "Error decoding account file" -msgstr "" - -#: ../../include/uimport.php:67 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" - -#: ../../include/uimport.php:72 -msgid "Error! I can't import this file: DB schema version is not compatible." -msgstr "" - -#: ../../include/uimport.php:81 -msgid "Error! Cannot check nickname" -msgstr "" - -#: ../../include/uimport.php:85 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "" - -#: ../../include/uimport.php:104 -msgid "User creation error" -msgstr "" - -#: ../../include/uimport.php:122 -msgid "User profile creation error" -msgstr "" - -#: ../../include/uimport.php:167 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/uimport.php:245 -msgid "Done. You can now login with your username and password" -msgstr "" - -#: ../../include/group.php:25 msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un groupe supprimé a été recréé. Les permissions existantes pourraient s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom." - -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts" - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Tout le monde" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "éditer" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Editer groupe" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Créer un nouveau groupe" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Contacts n'appartenant à aucun groupe" - -#: ../../include/nav.php:46 ../../boot.php:948 -msgid "Logout" -msgstr "Se déconnecter" - -#: ../../include/nav.php:46 -msgid "End this session" -msgstr "Mettre fin à cette session" - -#: ../../include/nav.php:49 ../../boot.php:1724 -msgid "Status" -msgstr "Statut" - -#: ../../include/nav.php:64 -msgid "Sign in" -msgstr "Se connecter" - -#: ../../include/nav.php:77 -msgid "Home Page" -msgstr "Page d'accueil" - -#: ../../include/nav.php:81 -msgid "Create an account" -msgstr "Créer un compte" - -#: ../../include/nav.php:86 -msgid "Help and documentation" -msgstr "Aide et documentation" - -#: ../../include/nav.php:89 -msgid "Apps" -msgstr "Applications" - -#: ../../include/nav.php:89 -msgid "Addon applications, utilities, games" -msgstr "Applications supplémentaires, utilitaires, jeux" - -#: ../../include/nav.php:91 -msgid "Search site content" -msgstr "Rechercher dans le contenu du site" - -#: ../../include/nav.php:101 -msgid "Conversations on this site" -msgstr "Conversations ayant cours sur ce site" - -#: ../../include/nav.php:103 -msgid "Directory" -msgstr "Annuaire" - -#: ../../include/nav.php:103 -msgid "People directory" -msgstr "Annuaire des utilisateurs" - -#: ../../include/nav.php:113 -msgid "Conversations from your friends" -msgstr "Conversations de vos amis" - -#: ../../include/nav.php:114 -msgid "Network Reset" +"%s wrote the following post" msgstr "" -#: ../../include/nav.php:114 -msgid "Load Network page with no filters" -msgstr "" +#: ../../include/bbcode.php:514 ../../include/bbcode.php:534 +msgid "$1 wrote:" +msgstr "$1 a écrit:" -#: ../../include/nav.php:122 -msgid "Friend Requests" -msgstr "Demande d'amitié" +#: ../../include/bbcode.php:559 ../../include/bbcode.php:560 +msgid "Encrypted content" +msgstr "Contenu chiffré" -#: ../../include/nav.php:124 -msgid "See all notifications" -msgstr "Voir toute notification" +#: ../../include/acl_selectors.php:325 +msgid "Visible to everybody" +msgstr "Visible par tout le monde" -#: ../../include/nav.php:125 -msgid "Mark all system notifications seen" -msgstr "Marquer toutes les notifications système comme 'vues'" +#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146 +#: ../../view/theme/diabook/theme.php:629 +msgid "show" +msgstr "montrer" -#: ../../include/nav.php:129 -msgid "Private mail" -msgstr "Messages privés" +#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146 +#: ../../view/theme/diabook/theme.php:629 +msgid "don't show" +msgstr "cacher" -#: ../../include/nav.php:130 -msgid "Inbox" -msgstr "Messages entrants" - -#: ../../include/nav.php:131 -msgid "Outbox" -msgstr "Messages sortants" - -#: ../../include/nav.php:135 -msgid "Manage" -msgstr "Gérer" - -#: ../../include/nav.php:135 -msgid "Manage other pages" -msgstr "Gérer les autres pages" - -#: ../../include/nav.php:140 ../../boot.php:1238 -msgid "Profiles" -msgstr "Profils" - -#: ../../include/nav.php:140 -msgid "Manage/Edit Profiles" -msgstr "" - -#: ../../include/nav.php:142 -msgid "Manage/edit friends and contacts" -msgstr "Gérer/éditer les amitiés et contacts" - -#: ../../include/nav.php:149 -msgid "Site setup and configuration" -msgstr "Démarrage et configuration du site" - -#: ../../include/nav.php:173 -msgid "Nothing new here" -msgstr "Rien de neuf ici" - -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Ajouter un nouveau contact" - -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Entrez son adresse ou sa localisation web" - -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Exemple: bob@example.com, http://example.com/barbara" - -#: ../../include/contact_widgets.php:23 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitation disponible" -msgstr[1] "%d invitations disponibles" - -#: ../../include/contact_widgets.php:29 -msgid "Find People" -msgstr "Trouver des personnes" - -#: ../../include/contact_widgets.php:30 -msgid "Enter name or interest" -msgstr "Entrez un nom ou un centre d'intérêt" - -#: ../../include/contact_widgets.php:31 -msgid "Connect/Follow" -msgstr "Connecter/Suivre" - -#: ../../include/contact_widgets.php:32 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exemples: Robert Morgenstein, Pêche" - -#: ../../include/contact_widgets.php:36 -msgid "Random Profile" -msgstr "Profil au hasard" - -#: ../../include/contact_widgets.php:70 -msgid "Networks" -msgstr "Réseaux" - -#: ../../include/contact_widgets.php:73 -msgid "All Networks" -msgstr "Tous réseaux" - -#: ../../include/contact_widgets.php:103 ../../include/features.php:59 -msgid "Saved Folders" -msgstr "Dossiers sauvegardés" - -#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 -msgid "Everything" -msgstr "Tout" - -#: ../../include/contact_widgets.php:135 -msgid "Categories" -msgstr "Catégories" - -#: ../../include/auth.php:36 +#: ../../include/auth.php:38 msgid "Logged out." msgstr "Déconnecté." -#: ../../include/auth.php:126 +#: ../../include/auth.php:112 ../../include/auth.php:175 +#: ../../mod/openid.php:93 +msgid "Login failed." +msgstr "Échec de connexion." + +#: ../../include/auth.php:128 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier." -#: ../../include/auth.php:126 +#: ../../include/auth.php:128 msgid "The error message was:" msgstr "Le message d'erreur était :" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Divers" - -#: ../../include/datetime.php:153 ../../include/datetime.php:285 -msgid "year" -msgstr "an" - -#: ../../include/datetime.php:158 ../../include/datetime.php:286 -msgid "month" -msgstr "mois" - -#: ../../include/datetime.php:163 ../../include/datetime.php:288 -msgid "day" -msgstr "jour" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "jamais" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "il y a moins d'une seconde" - -#: ../../include/datetime.php:287 -msgid "week" -msgstr "semaine" - -#: ../../include/datetime.php:289 -msgid "hour" -msgstr "heure" - -#: ../../include/datetime.php:289 -msgid "hours" -msgstr "heures" - -#: ../../include/datetime.php:290 -msgid "minute" -msgstr "minute" - -#: ../../include/datetime.php:290 -msgid "minutes" -msgstr "minutes" - -#: ../../include/datetime.php:291 -msgid "second" -msgstr "seconde" - -#: ../../include/datetime.php:291 -msgid "seconds" -msgstr "secondes" - -#: ../../include/datetime.php:300 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s auparavant" - -#: ../../include/datetime.php:472 ../../include/items.php:1695 -#, php-format -msgid "%s's birthday" -msgstr "Anniversaire de %s's" - -#: ../../include/datetime.php:473 ../../include/items.php:1696 -#, php-format -msgid "Happy Birthday %s" -msgstr "Joyeux anniversaire, %s !" - -#: ../../include/onepoll.php:414 -msgid "From: " -msgstr "De: " - -#: ../../include/bbcode.php:202 ../../include/bbcode.php:423 -msgid "Image/photo" -msgstr "Image/photo" - -#: ../../include/bbcode.php:388 ../../include/bbcode.php:408 -msgid "$1 wrote:" -msgstr "$1 a écrit:" - -#: ../../include/bbcode.php:427 ../../include/bbcode.php:428 -msgid "Encrypted content" -msgstr "Contenu chiffré" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "" - -#: ../../include/features.php:38 -msgid "Search by Date" -msgstr "" - -#: ../../include/features.php:38 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: ../../include/features.php:39 -msgid "Group Filter" -msgstr "" - -#: ../../include/features.php:39 -msgid "Enable widget to display Network posts only from selected group" -msgstr "" - -#: ../../include/features.php:40 -msgid "Network Filter" -msgstr "" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected network" -msgstr "" - -#: ../../include/features.php:41 -msgid "Save search terms for re-use" -msgstr "" - -#: ../../include/features.php:47 -msgid "Network Personal Tab" -msgstr "" - -#: ../../include/features.php:47 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" - -#: ../../include/features.php:48 -msgid "Network New Tab" -msgstr "" - -#: ../../include/features.php:48 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "" - -#: ../../include/features.php:49 -msgid "Network Shared Links Tab" -msgstr "" - -#: ../../include/features.php:49 -msgid "Enable tab to display only Network posts with links in them" -msgstr "" - -#: ../../include/features.php:55 -msgid "Multiple Deletion" -msgstr "" - -#: ../../include/features.php:55 -msgid "Select and delete multiple posts/comments at once" -msgstr "" - -#: ../../include/features.php:56 -msgid "Edit Sent Posts" -msgstr "" - -#: ../../include/features.php:56 -msgid "Edit and correct posts and comments after sending" -msgstr "" - -#: ../../include/features.php:57 -msgid "Tagging" -msgstr "" - -#: ../../include/features.php:57 -msgid "Ability to tag existing posts" -msgstr "" - -#: ../../include/features.php:58 -msgid "Post Categories" -msgstr "" - -#: ../../include/features.php:58 -msgid "Add categories to your posts" -msgstr "" - -#: ../../include/features.php:59 -msgid "Ability to file posts under folders" -msgstr "" - -#: ../../include/features.php:60 -msgid "Dislike Posts" -msgstr "" - -#: ../../include/features.php:60 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: ../../include/features.php:61 -msgid "Star Posts" -msgstr "" - -#: ../../include/features.php:61 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: ../../include/dba.php:41 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Impossible de localiser les informations DNS pour le serveur de base de données '%s'" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[pas de sujet]" - -#: ../../include/acl_selectors.php:286 -msgid "Visible to everybody" -msgstr "Visible par tout le monde" - -#: ../../include/enotify.php:16 -msgid "Friendica Notification" -msgstr "Notification Friendica" - -#: ../../include/enotify.php:19 -msgid "Thank You," -msgstr "Merci, " - -#: ../../include/enotify.php:21 -#, php-format -msgid "%s Administrator" -msgstr "L'administrateur de %s" - -#: ../../include/enotify.php:40 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:44 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s" - -#: ../../include/enotify.php:46 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s." - -#: ../../include/enotify.php:47 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s vous a envoyé %2$s." - -#: ../../include/enotify.php:47 -msgid "a private message" -msgstr "un message privé" - -#: ../../include/enotify.php:48 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre." - -#: ../../include/enotify.php:89 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]" - -#: ../../include/enotify.php:96 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]" - -#: ../../include/enotify.php:104 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s commented on [url=%2$s]your %3$s[/url]" - -#: ../../include/enotify.php:114 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d" - -#: ../../include/enotify.php:115 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s a commenté un élément que vous suivez." - -#: ../../include/enotify.php:118 ../../include/enotify.php:133 -#: ../../include/enotify.php:146 ../../include/enotify.php:164 -#: ../../include/enotify.php:177 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre." - -#: ../../include/enotify.php:125 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notification] %s a posté sur votre mur de profil" - -#: ../../include/enotify.php:127 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s a publié sur votre mur à %2$s" - -#: ../../include/enotify.php:129 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]" - -#: ../../include/enotify.php:140 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notification] %s vous a repéré" - -#: ../../include/enotify.php:141 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s vous parle sur %2$s" - -#: ../../include/enotify.php:142 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]vous a taggé[/url]." - -#: ../../include/enotify.php:154 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notify] %1$s vous a sollicité" - -#: ../../include/enotify.php:155 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s vous a sollicité via %2$s" - -#: ../../include/enotify.php:156 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s vous a [url=%2$s]sollicité[/url]." - -#: ../../include/enotify.php:171 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notification] %s a repéré votre publication" - -#: ../../include/enotify.php:172 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s a tagué votre contenu sur %2$s" - -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s a tagué [url=%2$s]votre contenu[/url]" - -#: ../../include/enotify.php:184 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notification] Introduction reçue" - -#: ../../include/enotify.php:185 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s" - -#: ../../include/enotify.php:186 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s." - -#: ../../include/enotify.php:189 ../../include/enotify.php:207 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Vous pouvez visiter son profil sur %s" - -#: ../../include/enotify.php:191 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction." - -#: ../../include/enotify.php:198 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié" - -#: ../../include/enotify.php:199 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s" - -#: ../../include/enotify.php:200 -#, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s." - -#: ../../include/enotify.php:205 -msgid "Name:" -msgstr "Nom :" - -#: ../../include/enotify.php:206 -msgid "Photo:" -msgstr "Photo :" - -#: ../../include/enotify.php:209 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion." +#: ../../include/bb2diaspora.php:393 ../../include/event.php:11 +#: ../../mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: ../../include/bb2diaspora.php:399 ../../include/event.php:20 +msgid "Starts:" +msgstr "Débute:" + +#: ../../include/bb2diaspora.php:407 ../../include/event.php:30 +msgid "Finishes:" +msgstr "Finit:" + +#: ../../include/bb2diaspora.php:415 ../../include/event.php:40 +#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1485 +msgid "Location:" +msgstr "Localisation:" + +#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502 +msgid "Disallowed profile URL." +msgstr "URL de profil interdite." #: ../../include/follow.php:32 msgid "Connect URL missing." @@ -9200,86 +534,1743 @@ msgstr "Impossible de récupérer les informations du contact." msgid "following" msgstr "following" -#: ../../include/items.php:3363 -msgid "A new person is sharing with you at " -msgstr "Une nouvelle personne partage avec vous à " - -#: ../../include/items.php:3363 -msgid "You have a new follower at " -msgstr "Vous avez un nouvel abonné à " - -#: ../../include/items.php:4047 -msgid "Archives" -msgstr "Archives" - -#: ../../include/user.php:38 +#: ../../include/user.php:39 msgid "An invitation is required." msgstr "Une invitation est requise." -#: ../../include/user.php:43 +#: ../../include/user.php:44 msgid "Invitation could not be verified." msgstr "L'invitation fournie n'a pu être validée." -#: ../../include/user.php:51 +#: ../../include/user.php:52 msgid "Invalid OpenID url" msgstr "Adresse OpenID invalide" -#: ../../include/user.php:66 +#: ../../include/user.php:67 msgid "Please enter the required information." msgstr "Entrez les informations requises." -#: ../../include/user.php:80 +#: ../../include/user.php:81 msgid "Please use a shorter name." msgstr "Utilisez un nom plus court." -#: ../../include/user.php:82 +#: ../../include/user.php:83 msgid "Name too short." msgstr "Nom trop court." -#: ../../include/user.php:97 +#: ../../include/user.php:98 msgid "That doesn't appear to be your full (First Last) name." msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)." -#: ../../include/user.php:102 +#: ../../include/user.php:103 msgid "Your email domain is not among those allowed on this site." msgstr "Votre domaine de courriel n'est pas autorisé sur ce site." -#: ../../include/user.php:105 +#: ../../include/user.php:106 msgid "Not a valid email address." msgstr "Ceci n'est pas une adresse courriel valide." -#: ../../include/user.php:115 +#: ../../include/user.php:116 msgid "Cannot use that email." msgstr "Impossible d'utiliser ce courriel." -#: ../../include/user.php:121 +#: ../../include/user.php:122 msgid "" "Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " "must also begin with a letter." msgstr "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre." -#: ../../include/user.php:127 ../../include/user.php:225 +#: ../../include/user.php:128 ../../include/user.php:226 msgid "Nickname is already registered. Please choose another." msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre." -#: ../../include/user.php:137 +#: ../../include/user.php:138 msgid "" "Nickname was once registered here and may not be re-used. Please choose " "another." msgstr "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre." -#: ../../include/user.php:153 +#: ../../include/user.php:154 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué." -#: ../../include/user.php:211 +#: ../../include/user.php:212 msgid "An error occurred during registration. Please try again." msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer." -#: ../../include/user.php:246 +#: ../../include/user.php:237 ../../include/text.php:1596 +msgid "default" +msgstr "défaut" + +#: ../../include/user.php:247 msgid "An error occurred creating your default profile. Please try again." msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer." +#: ../../include/user.php:325 ../../include/user.php:332 +#: ../../include/user.php:339 ../../mod/photos.php:154 +#: ../../mod/photos.php:725 ../../mod/photos.php:1183 +#: ../../mod/photos.php:1206 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:493 +msgid "Profile Photos" +msgstr "Photos du profil" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Inconnu | Non-classé" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Bloquer immédiatement" + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Douteux, spammeur, accro à l'auto-promotion" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Connu de moi, mais sans opinion" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, probablement inoffensif" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Réputé, a toute ma confiance" + +#: ../../include/contact_selectors.php:56 ../../mod/admin.php:452 +msgid "Frequently" +msgstr "Fréquemment" + +#: ../../include/contact_selectors.php:57 ../../mod/admin.php:453 +msgid "Hourly" +msgstr "Toutes les heures" + +#: ../../include/contact_selectors.php:58 ../../mod/admin.php:454 +msgid "Twice daily" +msgstr "Deux fois par jour" + +#: ../../include/contact_selectors.php:59 ../../mod/admin.php:455 +msgid "Daily" +msgstr "Chaque jour" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Chaque semaine" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Chaque mois" + +#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 ../../mod/admin.php:766 +#: ../../mod/admin.php:777 +msgid "Email" +msgstr "Courriel" + +#: ../../include/contact_selectors.php:80 ../../mod/settings.php:705 +#: ../../mod/dfrn_request.php:842 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49 +#: ../../mod/newmember.php:51 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "" + +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Ajouter un nouveau contact" + +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Entrez son adresse ou sa localisation web" + +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Exemple: bob@example.com, http://example.com/barbara" + +#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88 +#: ../../mod/match.php:58 ../../boot.php:1417 +msgid "Connect" +msgstr "Relier" + +#: ../../include/contact_widgets.php:23 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitation disponible" +msgstr[1] "%d invitations disponibles" + +#: ../../include/contact_widgets.php:29 +msgid "Find People" +msgstr "Trouver des personnes" + +#: ../../include/contact_widgets.php:30 +msgid "Enter name or interest" +msgstr "Entrez un nom ou un centre d'intérêt" + +#: ../../include/contact_widgets.php:31 +msgid "Connect/Follow" +msgstr "Connecter/Suivre" + +#: ../../include/contact_widgets.php:32 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Exemples: Robert Morgenstein, Pêche" + +#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613 +#: ../../mod/directory.php:61 +msgid "Find" +msgstr "Trouver" + +#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66 +#: ../../view/theme/diabook/theme.php:520 +msgid "Friend Suggestions" +msgstr "Suggestions d'amitiés/contacts" + +#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519 +msgid "Similar Interests" +msgstr "Intérêts similaires" + +#: ../../include/contact_widgets.php:36 +msgid "Random Profile" +msgstr "Profil au hasard" + +#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521 +msgid "Invite Friends" +msgstr "Inviter des amis" + +#: ../../include/contact_widgets.php:70 +msgid "Networks" +msgstr "Réseaux" + +#: ../../include/contact_widgets.php:73 +msgid "All Networks" +msgstr "Tous réseaux" + +#: ../../include/contact_widgets.php:103 ../../include/features.php:59 +msgid "Saved Folders" +msgstr "Dossiers sauvegardés" + +#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 +msgid "Everything" +msgstr "Tout" + +#: ../../include/contact_widgets.php:135 +msgid "Categories" +msgstr "Catégories" + +#: ../../include/contact_widgets.php:199 ../../mod/contacts.php:343 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contact en commun" +msgstr[1] "%d contacts en commun" + +#: ../../include/contact_widgets.php:204 ../../mod/content.php:629 +#: ../../object/Item.php:365 ../../boot.php:671 +msgid "show more" +msgstr "montrer plus" + +#: ../../include/Scrape.php:583 +msgid " on Last.fm" +msgstr "sur Last.fm" + +#: ../../include/network.php:877 +msgid "view full size" +msgstr "voir en pleine taille" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Divers" + +#: ../../include/datetime.php:153 ../../include/datetime.php:285 +msgid "year" +msgstr "an" + +#: ../../include/datetime.php:158 ../../include/datetime.php:286 +msgid "month" +msgstr "mois" + +#: ../../include/datetime.php:163 ../../include/datetime.php:288 +msgid "day" +msgstr "jour" + +#: ../../include/datetime.php:276 +msgid "never" +msgstr "jamais" + +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "il y a moins d'une seconde" + +#: ../../include/datetime.php:285 +msgid "years" +msgstr "ans" + +#: ../../include/datetime.php:286 +msgid "months" +msgstr "mois" + +#: ../../include/datetime.php:287 +msgid "week" +msgstr "semaine" + +#: ../../include/datetime.php:287 +msgid "weeks" +msgstr "semaines" + +#: ../../include/datetime.php:288 +msgid "days" +msgstr "jours" + +#: ../../include/datetime.php:289 +msgid "hour" +msgstr "heure" + +#: ../../include/datetime.php:289 +msgid "hours" +msgstr "heures" + +#: ../../include/datetime.php:290 +msgid "minute" +msgstr "minute" + +#: ../../include/datetime.php:290 +msgid "minutes" +msgstr "minutes" + +#: ../../include/datetime.php:291 +msgid "second" +msgstr "seconde" + +#: ../../include/datetime.php:291 +msgid "seconds" +msgstr "secondes" + +#: ../../include/datetime.php:300 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s auparavant" + +#: ../../include/datetime.php:472 ../../include/items.php:1813 +#, php-format +msgid "%s's birthday" +msgstr "Anniversaire de %s's" + +#: ../../include/datetime.php:473 ../../include/items.php:1814 +#, php-format +msgid "Happy Birthday %s" +msgstr "Joyeux anniversaire, %s !" + +#: ../../include/plugin.php:439 ../../include/plugin.php:441 +msgid "Click here to upgrade." +msgstr "Cliquez ici pour mettre à jour." + +#: ../../include/plugin.php:447 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Cette action dépasse les limites définies par votre abonnement." + +#: ../../include/plugin.php:452 +msgid "This action is not available under your subscription plan." +msgstr "Cette action n'est pas disponible avec votre abonnement." + +#: ../../include/delivery.php:457 ../../include/notifier.php:775 +msgid "(no subject)" +msgstr "(sans titre)" + +#: ../../include/delivery.php:468 ../../include/enotify.php:28 +#: ../../include/notifier.php:785 +msgid "noreply" +msgstr "noreply" + +#: ../../include/diaspora.php:621 ../../include/conversation.php:172 +#: ../../mod/dfrn_confirm.php:477 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s est désormais lié à %2$s" + +#: ../../include/diaspora.php:704 +msgid "Sharing notification from Diaspora network" +msgstr "Notification de partage du réseau Diaspora" + +#: ../../include/diaspora.php:1874 ../../include/text.php:1862 +#: ../../include/conversation.php:126 ../../include/conversation.php:254 +#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151 +#: ../../view/theme/diabook/theme.php:464 +msgid "photo" +msgstr "photo" + +#: ../../include/diaspora.php:1874 ../../include/conversation.php:121 +#: ../../include/conversation.php:130 ../../include/conversation.php:249 +#: ../../include/conversation.php:258 ../../mod/subthread.php:87 +#: ../../mod/tagger.php:62 ../../mod/like.php:151 ../../mod/like.php:322 +#: ../../view/theme/diabook/theme.php:459 +#: ../../view/theme/diabook/theme.php:468 +msgid "status" +msgstr "le statut" + +#: ../../include/diaspora.php:1890 ../../include/conversation.php:137 +#: ../../mod/like.php:168 ../../view/theme/diabook/theme.php:473 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s aime %3$s de %2$s" + +#: ../../include/diaspora.php:2262 +msgid "Attachments:" +msgstr "Pièces jointes : " + +#: ../../include/items.php:3488 ../../mod/dfrn_request.php:716 +msgid "[Name Withheld]" +msgstr "[Nom non-publié]" + +#: ../../include/items.php:3495 +msgid "A new person is sharing with you at " +msgstr "Une nouvelle personne partage avec vous à " + +#: ../../include/items.php:3495 +msgid "You have a new follower at " +msgstr "Vous avez un nouvel abonné à " + +#: ../../include/items.php:3979 ../../mod/display.php:51 +#: ../../mod/display.php:246 ../../mod/admin.php:158 ../../mod/admin.php:809 +#: ../../mod/admin.php:1009 ../../mod/viewsrc.php:15 ../../mod/notice.php:15 +msgid "Item not found." +msgstr "Élément introuvable." + +#: ../../include/items.php:4018 +msgid "Do you really want to delete this item?" +msgstr "" + +#: ../../include/items.php:4020 ../../mod/profiles.php:610 +#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246 +#: ../../mod/settings.php:961 ../../mod/settings.php:967 +#: ../../mod/settings.php:975 ../../mod/settings.php:979 +#: ../../mod/settings.php:984 ../../mod/settings.php:990 +#: ../../mod/settings.php:996 ../../mod/settings.php:1002 +#: ../../mod/settings.php:1032 ../../mod/settings.php:1033 +#: ../../mod/settings.php:1034 ../../mod/settings.php:1035 +#: ../../mod/settings.php:1036 ../../mod/dfrn_request.php:836 +#: ../../mod/suggest.php:29 ../../mod/message.php:209 +msgid "Yes" +msgstr "Oui" + +#: ../../include/items.php:4023 ../../include/conversation.php:1120 +#: ../../mod/contacts.php:249 ../../mod/settings.php:585 +#: ../../mod/settings.php:611 ../../mod/dfrn_request.php:848 +#: ../../mod/suggest.php:32 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 +#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/message.php:212 +#: ../../mod/photos.php:202 ../../mod/photos.php:290 +msgid "Cancel" +msgstr "Annuler" + +#: ../../include/items.php:4143 ../../mod/profiles.php:146 +#: ../../mod/profiles.php:571 ../../mod/notes.php:20 ../../mod/display.php:242 +#: ../../mod/nogroup.php:25 ../../mod/item.php:143 ../../mod/item.php:159 +#: ../../mod/allfriends.php:9 ../../mod/api.php:26 ../../mod/api.php:31 +#: ../../mod/register.php:40 ../../mod/regmod.php:118 ../../mod/attach.php:33 +#: ../../mod/contacts.php:147 ../../mod/settings.php:91 +#: ../../mod/settings.php:566 ../../mod/settings.php:571 +#: ../../mod/crepair.php:115 ../../mod/delegate.php:6 ../../mod/poke.php:135 +#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56 +#: ../../mod/editpost.php:10 ../../mod/events.php:140 ../../mod/uimport.php:23 +#: ../../mod/follow.php:9 ../../mod/fsuggest.php:78 ../../mod/group.php:19 +#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55 +#: ../../mod/wall_upload.php:66 ../../mod/invite.php:15 +#: ../../mod/invite.php:101 ../../mod/wallmessage.php:9 +#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 +#: ../../mod/wallmessage.php:103 ../../mod/manage.php:96 +#: ../../mod/message.php:38 ../../mod/message.php:174 ../../mod/mood.php:114 +#: ../../mod/network.php:6 ../../mod/notifications.php:66 +#: ../../mod/photos.php:133 ../../mod/photos.php:1044 +#: ../../mod/install.php:151 ../../mod/profile_photo.php:19 +#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180 +#: ../../mod/profile_photo.php:193 ../../index.php:346 +msgid "Permission denied." +msgstr "Permission refusée." + +#: ../../include/items.php:4213 +msgid "Archives" +msgstr "Archives" + +#: ../../include/features.php:23 +msgid "General Features" +msgstr "" + +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "" + +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "" + +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "" + +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "" + +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "" + +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "" + +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "" + +#: ../../include/features.php:37 +msgid "Network Sidebar Widgets" +msgstr "" + +#: ../../include/features.php:38 +msgid "Search by Date" +msgstr "" + +#: ../../include/features.php:38 +msgid "Ability to select posts by date ranges" +msgstr "" + +#: ../../include/features.php:39 +msgid "Group Filter" +msgstr "" + +#: ../../include/features.php:39 +msgid "Enable widget to display Network posts only from selected group" +msgstr "" + +#: ../../include/features.php:40 +msgid "Network Filter" +msgstr "" + +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected network" +msgstr "" + +#: ../../include/features.php:41 ../../mod/search.php:30 +#: ../../mod/network.php:233 +msgid "Saved Searches" +msgstr "Recherches" + +#: ../../include/features.php:41 +msgid "Save search terms for re-use" +msgstr "" + +#: ../../include/features.php:46 +msgid "Network Tabs" +msgstr "" + +#: ../../include/features.php:47 +msgid "Network Personal Tab" +msgstr "" + +#: ../../include/features.php:47 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "" + +#: ../../include/features.php:48 +msgid "Network New Tab" +msgstr "" + +#: ../../include/features.php:48 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "" + +#: ../../include/features.php:49 +msgid "Network Shared Links Tab" +msgstr "" + +#: ../../include/features.php:49 +msgid "Enable tab to display only Network posts with links in them" +msgstr "" + +#: ../../include/features.php:54 +msgid "Post/Comment Tools" +msgstr "" + +#: ../../include/features.php:55 +msgid "Multiple Deletion" +msgstr "" + +#: ../../include/features.php:55 +msgid "Select and delete multiple posts/comments at once" +msgstr "" + +#: ../../include/features.php:56 +msgid "Edit Sent Posts" +msgstr "" + +#: ../../include/features.php:56 +msgid "Edit and correct posts and comments after sending" +msgstr "" + +#: ../../include/features.php:57 +msgid "Tagging" +msgstr "" + +#: ../../include/features.php:57 +msgid "Ability to tag existing posts" +msgstr "" + +#: ../../include/features.php:58 +msgid "Post Categories" +msgstr "" + +#: ../../include/features.php:58 +msgid "Add categories to your posts" +msgstr "" + +#: ../../include/features.php:59 +msgid "Ability to file posts under folders" +msgstr "" + +#: ../../include/features.php:60 +msgid "Dislike Posts" +msgstr "" + +#: ../../include/features.php:60 +msgid "Ability to dislike posts/comments" +msgstr "" + +#: ../../include/features.php:61 +msgid "Star Posts" +msgstr "" + +#: ../../include/features.php:61 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: ../../include/dba.php:44 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Impossible de localiser les informations DNS pour le serveur de base de données '%s'" + +#: ../../include/text.php:294 +msgid "prev" +msgstr "précédent" + +#: ../../include/text.php:296 +msgid "first" +msgstr "premier" + +#: ../../include/text.php:325 +msgid "last" +msgstr "dernier" + +#: ../../include/text.php:328 +msgid "next" +msgstr "suivant" + +#: ../../include/text.php:352 +msgid "newer" +msgstr "Plus récent" + +#: ../../include/text.php:356 +msgid "older" +msgstr "Plus ancien" + +#: ../../include/text.php:807 +msgid "No contacts" +msgstr "Aucun contact" + +#: ../../include/text.php:816 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contact" +msgstr[1] "%d contacts" + +#: ../../include/text.php:828 ../../mod/viewcontacts.php:76 +msgid "View Contacts" +msgstr "Voir les contacts" + +#: ../../include/text.php:905 ../../include/text.php:906 +#: ../../include/nav.php:118 ../../mod/search.php:99 +msgid "Search" +msgstr "Recherche" + +#: ../../include/text.php:908 ../../mod/notes.php:63 ../../mod/filer.php:31 +msgid "Save" +msgstr "Sauver" + +#: ../../include/text.php:957 +msgid "poke" +msgstr "titiller" + +#: ../../include/text.php:957 ../../include/conversation.php:211 +msgid "poked" +msgstr "a titillé" + +#: ../../include/text.php:958 +msgid "ping" +msgstr "attirer l'attention" + +#: ../../include/text.php:958 +msgid "pinged" +msgstr "a attiré l'attention de" + +#: ../../include/text.php:959 +msgid "prod" +msgstr "aiguillonner" + +#: ../../include/text.php:959 +msgid "prodded" +msgstr "a aiguillonné" + +#: ../../include/text.php:960 +msgid "slap" +msgstr "gifler" + +#: ../../include/text.php:960 +msgid "slapped" +msgstr "a giflé" + +#: ../../include/text.php:961 +msgid "finger" +msgstr "tripoter" + +#: ../../include/text.php:961 +msgid "fingered" +msgstr "a tripoté" + +#: ../../include/text.php:962 +msgid "rebuff" +msgstr "rabrouer" + +#: ../../include/text.php:962 +msgid "rebuffed" +msgstr "a rabroué" + +#: ../../include/text.php:976 +msgid "happy" +msgstr "heureuse" + +#: ../../include/text.php:977 +msgid "sad" +msgstr "triste" + +#: ../../include/text.php:978 +msgid "mellow" +msgstr "suave" + +#: ../../include/text.php:979 +msgid "tired" +msgstr "fatiguée" + +#: ../../include/text.php:980 +msgid "perky" +msgstr "guillerette" + +#: ../../include/text.php:981 +msgid "angry" +msgstr "colérique" + +#: ../../include/text.php:982 +msgid "stupified" +msgstr "stupéfaite" + +#: ../../include/text.php:983 +msgid "puzzled" +msgstr "perplexe" + +#: ../../include/text.php:984 +msgid "interested" +msgstr "intéressée" + +#: ../../include/text.php:985 +msgid "bitter" +msgstr "amère" + +#: ../../include/text.php:986 +msgid "cheerful" +msgstr "entraînante" + +#: ../../include/text.php:987 +msgid "alive" +msgstr "vivante" + +#: ../../include/text.php:988 +msgid "annoyed" +msgstr "ennuyée" + +#: ../../include/text.php:989 +msgid "anxious" +msgstr "anxieuse" + +#: ../../include/text.php:990 +msgid "cranky" +msgstr "excentrique" + +#: ../../include/text.php:991 +msgid "disturbed" +msgstr "dérangée" + +#: ../../include/text.php:992 +msgid "frustrated" +msgstr "frustrée" + +#: ../../include/text.php:993 +msgid "motivated" +msgstr "motivée" + +#: ../../include/text.php:994 +msgid "relaxed" +msgstr "détendue" + +#: ../../include/text.php:995 +msgid "surprised" +msgstr "surprise" + +#: ../../include/text.php:1163 +msgid "Monday" +msgstr "Lundi" + +#: ../../include/text.php:1163 +msgid "Tuesday" +msgstr "Mardi" + +#: ../../include/text.php:1163 +msgid "Wednesday" +msgstr "Mercredi" + +#: ../../include/text.php:1163 +msgid "Thursday" +msgstr "Jeudi" + +#: ../../include/text.php:1163 +msgid "Friday" +msgstr "Vendredi" + +#: ../../include/text.php:1163 +msgid "Saturday" +msgstr "Samedi" + +#: ../../include/text.php:1163 +msgid "Sunday" +msgstr "Dimanche" + +#: ../../include/text.php:1167 +msgid "January" +msgstr "Janvier" + +#: ../../include/text.php:1167 +msgid "February" +msgstr "Février" + +#: ../../include/text.php:1167 +msgid "March" +msgstr "Mars" + +#: ../../include/text.php:1167 +msgid "April" +msgstr "Avril" + +#: ../../include/text.php:1167 +msgid "May" +msgstr "Mai" + +#: ../../include/text.php:1167 +msgid "June" +msgstr "Juin" + +#: ../../include/text.php:1167 +msgid "July" +msgstr "Juillet" + +#: ../../include/text.php:1167 +msgid "August" +msgstr "Août" + +#: ../../include/text.php:1167 +msgid "September" +msgstr "Septembre" + +#: ../../include/text.php:1167 +msgid "October" +msgstr "Octobre" + +#: ../../include/text.php:1167 +msgid "November" +msgstr "Novembre" + +#: ../../include/text.php:1167 +msgid "December" +msgstr "Décembre" + +#: ../../include/text.php:1323 ../../mod/videos.php:301 +msgid "View Video" +msgstr "" + +#: ../../include/text.php:1355 +msgid "bytes" +msgstr "octets" + +#: ../../include/text.php:1379 ../../include/text.php:1391 +msgid "Click to open/close" +msgstr "Cliquer pour ouvrir/fermer" + +#: ../../include/text.php:1553 ../../mod/events.php:335 +msgid "link to source" +msgstr "lien original" + +#: ../../include/text.php:1608 +msgid "Select an alternate language" +msgstr "Choisir une langue alternative" + +#: ../../include/text.php:1860 ../../include/conversation.php:118 +#: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456 +msgid "event" +msgstr "évènement" + +#: ../../include/text.php:1864 +msgid "activity" +msgstr "activité" + +#: ../../include/text.php:1866 ../../mod/content.php:628 +#: ../../object/Item.php:364 ../../object/Item.php:377 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "commentaire" + +#: ../../include/text.php:1867 +msgid "post" +msgstr "publication" + +#: ../../include/text.php:2022 +msgid "Item filed" +msgstr "Élément classé" + +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un groupe supprimé a été recréé. Les permissions existantes pourraient s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom." + +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts" + +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "Tout le monde" + +#: ../../include/group.php:249 +msgid "edit" +msgstr "éditer" + +#: ../../include/group.php:270 ../../mod/newmember.php:66 +msgid "Groups" +msgstr "Groupes" + +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "Editer groupe" + +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Créer un nouveau groupe" + +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "Contacts n'appartenant à aucun groupe" + +#: ../../include/group.php:275 ../../mod/network.php:234 +msgid "add" +msgstr "ajouter" + +#: ../../include/conversation.php:140 ../../mod/like.php:170 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s n'aime pas %3$s de %2$s" + +#: ../../include/conversation.php:207 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s a sollicité %2$s" + +#: ../../include/conversation.php:227 ../../mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s est d'humeur %2$s" + +#: ../../include/conversation.php:266 ../../mod/tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s a taggué %3$s de %2$s avec %4$s" + +#: ../../include/conversation.php:291 +msgid "post/item" +msgstr "publication/élément" + +#: ../../include/conversation.php:292 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s a marqué le %3$s de %2$s comme favori" + +#: ../../include/conversation.php:612 ../../mod/content.php:461 +#: ../../mod/content.php:763 ../../object/Item.php:126 +msgid "Select" +msgstr "Sélectionner" + +#: ../../include/conversation.php:613 ../../mod/admin.php:770 +#: ../../mod/settings.php:647 ../../mod/group.php:171 +#: ../../mod/photos.php:1637 ../../mod/content.php:462 +#: ../../mod/content.php:764 ../../object/Item.php:127 +msgid "Delete" +msgstr "Supprimer" + +#: ../../include/conversation.php:652 ../../mod/content.php:495 +#: ../../mod/content.php:875 ../../mod/content.php:876 +#: ../../object/Item.php:306 ../../object/Item.php:307 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Voir le profil de %s @ %s" + +#: ../../include/conversation.php:664 ../../object/Item.php:297 +msgid "Categories:" +msgstr "Catégories:" + +#: ../../include/conversation.php:665 ../../object/Item.php:298 +msgid "Filed under:" +msgstr "Rangé sous:" + +#: ../../include/conversation.php:672 ../../mod/content.php:505 +#: ../../mod/content.php:887 ../../object/Item.php:320 +#, php-format +msgid "%s from %s" +msgstr "%s de %s" + +#: ../../include/conversation.php:687 ../../mod/content.php:520 +msgid "View in context" +msgstr "Voir dans le contexte" + +#: ../../include/conversation.php:689 ../../include/conversation.php:1100 +#: ../../mod/editpost.php:124 ../../mod/wallmessage.php:156 +#: ../../mod/message.php:334 ../../mod/message.php:565 +#: ../../mod/photos.php:1532 ../../mod/content.php:522 +#: ../../mod/content.php:906 ../../object/Item.php:341 +msgid "Please wait" +msgstr "Patientez" + +#: ../../include/conversation.php:768 +msgid "remove" +msgstr "enlever" + +#: ../../include/conversation.php:772 +msgid "Delete Selected Items" +msgstr "Supprimer les éléments sélectionnés" + +#: ../../include/conversation.php:871 +msgid "Follow Thread" +msgstr "Suivre le fil" + +#: ../../include/conversation.php:940 +#, php-format +msgid "%s likes this." +msgstr "%s aime ça." + +#: ../../include/conversation.php:940 +#, php-format +msgid "%s doesn't like this." +msgstr "%s n'aime pas ça." + +#: ../../include/conversation.php:945 +#, php-format +msgid "%2$d people like this" +msgstr "" + +#: ../../include/conversation.php:948 +#, php-format +msgid "%2$d people don't like this" +msgstr "" + +#: ../../include/conversation.php:962 +msgid "and" +msgstr "et" + +#: ../../include/conversation.php:968 +#, php-format +msgid ", and %d other people" +msgstr ", et %d autres personnes" + +#: ../../include/conversation.php:970 +#, php-format +msgid "%s like this." +msgstr "%s aiment ça." + +#: ../../include/conversation.php:970 +#, php-format +msgid "%s don't like this." +msgstr "%s n'aiment pas ça." + +#: ../../include/conversation.php:997 ../../include/conversation.php:1015 +msgid "Visible to everybody" +msgstr "Visible par tout le monde" + +#: ../../include/conversation.php:998 ../../include/conversation.php:1016 +#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 +#: ../../mod/message.php:283 ../../mod/message.php:291 +#: ../../mod/message.php:466 ../../mod/message.php:474 +msgid "Please enter a link URL:" +msgstr "Entrez un lien web:" + +#: ../../include/conversation.php:999 ../../include/conversation.php:1017 +msgid "Please enter a video link/URL:" +msgstr "Entrez un lien/URL video :" + +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +msgid "Please enter an audio link/URL:" +msgstr "Entrez un lien/URL audio :" + +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +msgid "Tag term:" +msgstr "Tag : " + +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +#: ../../mod/filer.php:30 +msgid "Save to Folder:" +msgstr "Sauver dans le Dossier:" + +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Where are you right now?" +msgstr "Où êtes-vous présentemment?" + +#: ../../include/conversation.php:1004 +msgid "Delete item(s)?" +msgstr "" + +#: ../../include/conversation.php:1046 +msgid "Post to Email" +msgstr "Publier aussi par courriel" + +#: ../../include/conversation.php:1081 ../../mod/photos.php:1531 +msgid "Share" +msgstr "Partager" + +#: ../../include/conversation.php:1082 ../../mod/editpost.php:110 +#: ../../mod/wallmessage.php:154 ../../mod/message.php:332 +#: ../../mod/message.php:562 +msgid "Upload photo" +msgstr "Joindre photo" + +#: ../../include/conversation.php:1083 ../../mod/editpost.php:111 +msgid "upload photo" +msgstr "envoi image" + +#: ../../include/conversation.php:1084 ../../mod/editpost.php:112 +msgid "Attach file" +msgstr "Joindre fichier" + +#: ../../include/conversation.php:1085 ../../mod/editpost.php:113 +msgid "attach file" +msgstr "ajout fichier" + +#: ../../include/conversation.php:1086 ../../mod/editpost.php:114 +#: ../../mod/wallmessage.php:155 ../../mod/message.php:333 +#: ../../mod/message.php:563 +msgid "Insert web link" +msgstr "Insérer lien web" + +#: ../../include/conversation.php:1087 ../../mod/editpost.php:115 +msgid "web link" +msgstr "lien web" + +#: ../../include/conversation.php:1088 ../../mod/editpost.php:116 +msgid "Insert video link" +msgstr "Insérer un lien video" + +#: ../../include/conversation.php:1089 ../../mod/editpost.php:117 +msgid "video link" +msgstr "lien vidéo" + +#: ../../include/conversation.php:1090 ../../mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Insérer un lien audio" + +#: ../../include/conversation.php:1091 ../../mod/editpost.php:119 +msgid "audio link" +msgstr "lien audio" + +#: ../../include/conversation.php:1092 ../../mod/editpost.php:120 +msgid "Set your location" +msgstr "Définir votre localisation" + +#: ../../include/conversation.php:1093 ../../mod/editpost.php:121 +msgid "set location" +msgstr "spéc. localisation" + +#: ../../include/conversation.php:1094 ../../mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Effacer la localisation du navigateur" + +#: ../../include/conversation.php:1095 ../../mod/editpost.php:123 +msgid "clear location" +msgstr "supp. localisation" + +#: ../../include/conversation.php:1097 ../../mod/editpost.php:137 +msgid "Set title" +msgstr "Définir un titre" + +#: ../../include/conversation.php:1099 ../../mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "Catégories (séparées par des virgules)" + +#: ../../include/conversation.php:1101 ../../mod/editpost.php:125 +msgid "Permission settings" +msgstr "Réglages des permissions" + +#: ../../include/conversation.php:1102 +msgid "permissions" +msgstr "permissions" + +#: ../../include/conversation.php:1110 ../../mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "CC: adresses de courriel" + +#: ../../include/conversation.php:1111 ../../mod/editpost.php:134 +msgid "Public post" +msgstr "Notice publique" + +#: ../../include/conversation.php:1113 ../../mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Exemple: bob@exemple.com, mary@exemple.com" + +#: ../../include/conversation.php:1117 ../../mod/editpost.php:145 +#: ../../mod/photos.php:1553 ../../mod/photos.php:1597 +#: ../../mod/photos.php:1680 ../../mod/content.php:742 +#: ../../object/Item.php:662 +msgid "Preview" +msgstr "Aperçu" + +#: ../../include/conversation.php:1126 +msgid "Post to Groups" +msgstr "" + +#: ../../include/conversation.php:1127 +msgid "Post to Contacts" +msgstr "" + +#: ../../include/conversation.php:1128 +msgid "Private post" +msgstr "" + +#: ../../include/enotify.php:16 +msgid "Friendica Notification" +msgstr "Notification Friendica" + +#: ../../include/enotify.php:19 +msgid "Thank You," +msgstr "Merci, " + +#: ../../include/enotify.php:21 +#, php-format +msgid "%s Administrator" +msgstr "L'administrateur de %s" + +#: ../../include/enotify.php:40 +#, php-format +msgid "%s " +msgstr "%s " + +#: ../../include/enotify.php:44 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s" + +#: ../../include/enotify.php:46 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s." + +#: ../../include/enotify.php:47 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s vous a envoyé %2$s." + +#: ../../include/enotify.php:47 +msgid "a private message" +msgstr "un message privé" + +#: ../../include/enotify.php:48 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre." + +#: ../../include/enotify.php:90 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]" + +#: ../../include/enotify.php:97 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]" + +#: ../../include/enotify.php:105 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s commented on [url=%2$s]your %3$s[/url]" + +#: ../../include/enotify.php:115 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d" + +#: ../../include/enotify.php:116 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s a commenté un élément que vous suivez." + +#: ../../include/enotify.php:119 ../../include/enotify.php:134 +#: ../../include/enotify.php:147 ../../include/enotify.php:165 +#: ../../include/enotify.php:178 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre." + +#: ../../include/enotify.php:126 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notification] %s a posté sur votre mur de profil" + +#: ../../include/enotify.php:128 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s a publié sur votre mur à %2$s" + +#: ../../include/enotify.php:130 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]" + +#: ../../include/enotify.php:141 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notification] %s vous a repéré" + +#: ../../include/enotify.php:142 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s vous parle sur %2$s" + +#: ../../include/enotify.php:143 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]vous a taggé[/url]." + +#: ../../include/enotify.php:155 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notify] %1$s vous a sollicité" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s vous a sollicité via %2$s" + +#: ../../include/enotify.php:157 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s vous a [url=%2$s]sollicité[/url]." + +#: ../../include/enotify.php:172 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notification] %s a repéré votre publication" + +#: ../../include/enotify.php:173 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s a tagué votre contenu sur %2$s" + +#: ../../include/enotify.php:174 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s a tagué [url=%2$s]votre contenu[/url]" + +#: ../../include/enotify.php:185 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notification] Introduction reçue" + +#: ../../include/enotify.php:186 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s" + +#: ../../include/enotify.php:187 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s." + +#: ../../include/enotify.php:190 ../../include/enotify.php:208 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Vous pouvez visiter son profil sur %s" + +#: ../../include/enotify.php:192 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction." + +#: ../../include/enotify.php:199 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié" + +#: ../../include/enotify.php:200 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s" + +#: ../../include/enotify.php:201 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s." + +#: ../../include/enotify.php:206 +msgid "Name:" +msgstr "Nom :" + +#: ../../include/enotify.php:207 +msgid "Photo:" +msgstr "Photo :" + +#: ../../include/enotify.php:210 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion." + +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[pas de sujet]" + +#: ../../include/message.php:144 ../../mod/item.php:446 +#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 +#: ../../mod/wall_upload.php:151 +msgid "Wall Photos" +msgstr "Photos du mur" + +#: ../../include/nav.php:34 ../../mod/navigation.php:20 +msgid "Nothing new here" +msgstr "Rien de neuf ici" + +#: ../../include/nav.php:38 ../../mod/navigation.php:24 +msgid "Clear notifications" +msgstr "" + +#: ../../include/nav.php:73 ../../boot.php:1136 +msgid "Logout" +msgstr "Se déconnecter" + +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Mettre fin à cette session" + +#: ../../include/nav.php:76 ../../boot.php:1940 +msgid "Status" +msgstr "Statut" + +#: ../../include/nav.php:76 ../../include/nav.php:143 +#: ../../view/theme/diabook/theme.php:87 +msgid "Your posts and conversations" +msgstr "Vos notices et conversations" + +#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88 +msgid "Your profile page" +msgstr "Votre page de profil" + +#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 +#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1954 +msgid "Photos" +msgstr "Photos" + +#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90 +msgid "Your photos" +msgstr "Vos photos" + +#: ../../include/nav.php:79 ../../mod/events.php:370 +#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1971 +msgid "Events" +msgstr "Événements" + +#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91 +msgid "Your events" +msgstr "Vos événements" + +#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92 +msgid "Personal notes" +msgstr "Notes personnelles" + +#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92 +msgid "Your personal photos" +msgstr "Vos photos personnelles" + +#: ../../include/nav.php:91 ../../boot.php:1137 +msgid "Login" +msgstr "Connexion" + +#: ../../include/nav.php:91 +msgid "Sign in" +msgstr "Se connecter" + +#: ../../include/nav.php:104 ../../include/nav.php:143 +#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87 +msgid "Home" +msgstr "Profil" + +#: ../../include/nav.php:104 +msgid "Home Page" +msgstr "Page d'accueil" + +#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1112 +msgid "Register" +msgstr "S'inscrire" + +#: ../../include/nav.php:108 +msgid "Create an account" +msgstr "Créer un compte" + +#: ../../include/nav.php:113 ../../mod/help.php:84 +msgid "Help" +msgstr "Aide" + +#: ../../include/nav.php:113 +msgid "Help and documentation" +msgstr "Aide et documentation" + +#: ../../include/nav.php:116 +msgid "Apps" +msgstr "Applications" + +#: ../../include/nav.php:116 +msgid "Addon applications, utilities, games" +msgstr "Applications supplémentaires, utilitaires, jeux" + +#: ../../include/nav.php:118 +msgid "Search site content" +msgstr "Rechercher dans le contenu du site" + +#: ../../include/nav.php:128 ../../mod/community.php:32 +#: ../../view/theme/diabook/theme.php:93 +msgid "Community" +msgstr "Communauté" + +#: ../../include/nav.php:128 +msgid "Conversations on this site" +msgstr "Conversations ayant cours sur ce site" + +#: ../../include/nav.php:130 +msgid "Directory" +msgstr "Annuaire" + +#: ../../include/nav.php:130 +msgid "People directory" +msgstr "Annuaire des utilisateurs" + +#: ../../include/nav.php:140 ../../mod/notifications.php:83 +msgid "Network" +msgstr "Réseau" + +#: ../../include/nav.php:140 +msgid "Conversations from your friends" +msgstr "Conversations de vos amis" + +#: ../../include/nav.php:141 +msgid "Network Reset" +msgstr "" + +#: ../../include/nav.php:141 +msgid "Load Network page with no filters" +msgstr "" + +#: ../../include/nav.php:149 ../../mod/notifications.php:98 +msgid "Introductions" +msgstr "Introductions" + +#: ../../include/nav.php:149 +msgid "Friend Requests" +msgstr "Demande d'amitié" + +#: ../../include/nav.php:150 ../../mod/notifications.php:220 +msgid "Notifications" +msgstr "Notifications" + +#: ../../include/nav.php:151 +msgid "See all notifications" +msgstr "Voir toute notification" + +#: ../../include/nav.php:152 +msgid "Mark all system notifications seen" +msgstr "Marquer toutes les notifications système comme 'vues'" + +#: ../../include/nav.php:156 ../../mod/message.php:182 +#: ../../mod/notifications.php:103 +msgid "Messages" +msgstr "Messages" + +#: ../../include/nav.php:156 +msgid "Private mail" +msgstr "Messages privés" + +#: ../../include/nav.php:157 +msgid "Inbox" +msgstr "Messages entrants" + +#: ../../include/nav.php:158 +msgid "Outbox" +msgstr "Messages sortants" + +#: ../../include/nav.php:159 ../../mod/message.php:9 +msgid "New Message" +msgstr "Nouveau message" + +#: ../../include/nav.php:162 +msgid "Manage" +msgstr "Gérer" + +#: ../../include/nav.php:162 +msgid "Manage other pages" +msgstr "Gérer les autres pages" + +#: ../../include/nav.php:165 +msgid "Delegations" +msgstr "" + +#: ../../include/nav.php:165 ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Déléguer la gestion de la page" + +#: ../../include/nav.php:167 ../../mod/admin.php:861 ../../mod/admin.php:1069 +#: ../../mod/settings.php:74 ../../mod/uexport.php:48 +#: ../../mod/newmember.php:22 ../../view/theme/diabook/theme.php:537 +#: ../../view/theme/diabook/theme.php:658 +msgid "Settings" +msgstr "Réglages" + +#: ../../include/nav.php:167 ../../mod/settings.php:30 ../../mod/uexport.php:9 +msgid "Account settings" +msgstr "Compte" + +#: ../../include/nav.php:169 ../../boot.php:1439 +msgid "Profiles" +msgstr "Profils" + +#: ../../include/nav.php:169 +msgid "Manage/Edit Profiles" +msgstr "" + +#: ../../include/nav.php:171 ../../mod/contacts.php:607 +#: ../../view/theme/diabook/theme.php:89 +msgid "Contacts" +msgstr "Contacts" + +#: ../../include/nav.php:171 +msgid "Manage/edit friends and contacts" +msgstr "Gérer/éditer les amitiés et contacts" + +#: ../../include/nav.php:178 ../../mod/admin.php:120 +msgid "Admin" +msgstr "Admin" + +#: ../../include/nav.php:178 +msgid "Site setup and configuration" +msgstr "Démarrage et configuration du site" + +#: ../../include/nav.php:182 +msgid "Navigation" +msgstr "" + +#: ../../include/nav.php:182 +msgid "Site map" +msgstr "" + +#: ../../include/oembed.php:138 +msgid "Embedded content" +msgstr "Contenu incorporé" + +#: ../../include/oembed.php:147 +msgid "Embedding disabled" +msgstr "Incorporation désactivée" + +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "" + +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "" + +#: ../../include/uimport.php:116 +msgid "Error! Cannot check nickname" +msgstr "" + +#: ../../include/uimport.php:120 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "" + +#: ../../include/uimport.php:139 +msgid "User creation error" +msgstr "" + +#: ../../include/uimport.php:157 +msgid "User profile creation error" +msgstr "" + +#: ../../include/uimport.php:202 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/uimport.php:272 +msgid "Done. You can now login with your username and password" +msgstr "" + #: ../../include/security.php:22 msgid "Welcome " msgstr "Bienvenue " @@ -9292,326 +2283,4836 @@ msgstr "Merci d'illustrer votre profil d'une image." msgid "Welcome back " msgstr "Bienvenue à nouveau, " -#: ../../include/security.php:357 +#: ../../include/security.php:366 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé." -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "retiré de la liste de suivi" +#: ../../mod/profiles.php:18 ../../mod/profiles.php:133 +#: ../../mod/profiles.php:160 ../../mod/profiles.php:583 +#: ../../mod/dfrn_confirm.php:62 +msgid "Profile not found." +msgstr "Profil introuvable." -#: ../../include/Contact.php:225 ../../include/conversation.php:795 -msgid "Poke" -msgstr "Sollicitations (pokes)" +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profil supprimé." -#: ../../include/Contact.php:226 ../../include/conversation.php:789 -msgid "View Status" -msgstr "Voir les statuts" +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" +msgstr "Profil-" -#: ../../include/Contact.php:227 ../../include/conversation.php:790 -msgid "View Profile" -msgstr "Voir le profil" +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." +msgstr "Nouveau profil créé." -#: ../../include/Contact.php:228 ../../include/conversation.php:791 -msgid "View Photos" -msgstr "Voir les photos" +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Ce profil ne peut être cloné." -#: ../../include/Contact.php:229 ../../include/Contact.php:242 -#: ../../include/conversation.php:792 -msgid "Network Posts" -msgstr "Posts du Réseau" +#: ../../mod/profiles.php:170 +msgid "Profile Name is required." +msgstr "Le nom du profil est requis." -#: ../../include/Contact.php:230 ../../include/Contact.php:242 -#: ../../include/conversation.php:793 -msgid "Edit Contact" -msgstr "Éditer le contact" +#: ../../mod/profiles.php:317 +msgid "Marital Status" +msgstr "Statut marital" -#: ../../include/Contact.php:231 ../../include/Contact.php:242 -#: ../../include/conversation.php:794 -msgid "Send PM" -msgstr "Message privé" +#: ../../mod/profiles.php:321 +msgid "Romantic Partner" +msgstr "Partenaire/conjoint" -#: ../../include/conversation.php:206 +#: ../../mod/profiles.php:325 +msgid "Likes" +msgstr "Derniers \"J'aime\"" + +#: ../../mod/profiles.php:329 +msgid "Dislikes" +msgstr "Derniers \"Je n'aime pas\"" + +#: ../../mod/profiles.php:333 +msgid "Work/Employment" +msgstr "Travail/Occupation" + +#: ../../mod/profiles.php:336 +msgid "Religion" +msgstr "Religion" + +#: ../../mod/profiles.php:340 +msgid "Political Views" +msgstr "Tendance politique" + +#: ../../mod/profiles.php:344 +msgid "Gender" +msgstr "Sexe" + +#: ../../mod/profiles.php:348 +msgid "Sexual Preference" +msgstr "Préférence sexuelle" + +#: ../../mod/profiles.php:352 +msgid "Homepage" +msgstr "Site internet" + +#: ../../mod/profiles.php:356 +msgid "Interests" +msgstr "Centres d'intérêt" + +#: ../../mod/profiles.php:360 +msgid "Address" +msgstr "Adresse" + +#: ../../mod/profiles.php:367 +msgid "Location" +msgstr "Localisation" + +#: ../../mod/profiles.php:450 +msgid "Profile updated." +msgstr "Profil mis à jour." + +#: ../../mod/profiles.php:521 +msgid " and " +msgstr " et " + +#: ../../mod/profiles.php:529 +msgid "public profile" +msgstr "profil public" + +#: ../../mod/profiles.php:532 #, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s a sollicité %2$s" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s a changé %2$s en “%3$s”" -#: ../../include/conversation.php:290 -msgid "post/item" -msgstr "publication/élément" - -#: ../../include/conversation.php:291 +#: ../../mod/profiles.php:533 #, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s a marqué le %3$s de %2$s comme favori" +msgid " - Visit %1$s's %2$s" +msgstr "Visiter le %2$s de %1$s" -#: ../../include/conversation.php:599 ../../object/Item.php:225 -msgid "Categories:" -msgstr "Catégories:" - -#: ../../include/conversation.php:600 ../../object/Item.php:226 -msgid "Filed under:" -msgstr "Rangé sous:" - -#: ../../include/conversation.php:685 -msgid "remove" -msgstr "enlever" - -#: ../../include/conversation.php:689 -msgid "Delete Selected Items" -msgstr "Supprimer les éléments sélectionnés" - -#: ../../include/conversation.php:788 -msgid "Follow Thread" -msgstr "Suivre le fil" - -#: ../../include/conversation.php:857 +#: ../../mod/profiles.php:536 #, php-format -msgid "%s likes this." -msgstr "%s aime ça." +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s a mis à jour son %2$s, en modifiant %3$s." -#: ../../include/conversation.php:857 -#, php-format -msgid "%s doesn't like this." -msgstr "%s n'aime pas ça." +#: ../../mod/profiles.php:609 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Cacher ma liste d'amis/contacts des visiteurs de ce profil?" -#: ../../include/conversation.php:861 -#, php-format -msgid "%2$d people like this." -msgstr "%2$d personnes aiment ça." +#: ../../mod/profiles.php:611 ../../mod/api.php:106 ../../mod/register.php:240 +#: ../../mod/settings.php:961 ../../mod/settings.php:967 +#: ../../mod/settings.php:975 ../../mod/settings.php:979 +#: ../../mod/settings.php:984 ../../mod/settings.php:990 +#: ../../mod/settings.php:996 ../../mod/settings.php:1002 +#: ../../mod/settings.php:1032 ../../mod/settings.php:1033 +#: ../../mod/settings.php:1034 ../../mod/settings.php:1035 +#: ../../mod/settings.php:1036 ../../mod/dfrn_request.php:837 +msgid "No" +msgstr "Non" -#: ../../include/conversation.php:863 -#, php-format -msgid "%2$d people don't like this." -msgstr "%2$d personnes n'aiment pas ça." +#: ../../mod/profiles.php:629 +msgid "Edit Profile Details" +msgstr "Éditer les détails du profil" -#: ../../include/conversation.php:869 -msgid "and" -msgstr "et" +#: ../../mod/profiles.php:630 ../../mod/admin.php:491 ../../mod/admin.php:763 +#: ../../mod/admin.php:902 ../../mod/admin.php:1102 ../../mod/admin.php:1189 +#: ../../mod/contacts.php:386 ../../mod/settings.php:584 +#: ../../mod/settings.php:694 ../../mod/settings.php:763 +#: ../../mod/settings.php:837 ../../mod/settings.php:1064 +#: ../../mod/crepair.php:166 ../../mod/poke.php:199 ../../mod/events.php:478 +#: ../../mod/fsuggest.php:107 ../../mod/group.php:87 ../../mod/invite.php:140 +#: ../../mod/localtime.php:45 ../../mod/manage.php:110 +#: ../../mod/message.php:335 ../../mod/message.php:564 ../../mod/mood.php:137 +#: ../../mod/photos.php:1078 ../../mod/photos.php:1199 +#: ../../mod/photos.php:1501 ../../mod/photos.php:1552 +#: ../../mod/photos.php:1596 ../../mod/photos.php:1679 +#: ../../mod/install.php:248 ../../mod/install.php:286 +#: ../../mod/content.php:733 ../../object/Item.php:653 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/diabook/config.php:152 +#: ../../view/theme/diabook/theme.php:642 ../../view/theme/dispy/config.php:70 +#: ../../view/theme/quattro/config.php:64 +msgid "Submit" +msgstr "Envoyer" -#: ../../include/conversation.php:875 -#, php-format -msgid ", and %d other people" -msgstr ", et %d autres personnes" - -#: ../../include/conversation.php:877 -#, php-format -msgid "%s like this." -msgstr "%s aiment ça." - -#: ../../include/conversation.php:877 -#, php-format -msgid "%s don't like this." -msgstr "%s n'aiment pas ça." - -#: ../../include/conversation.php:904 ../../include/conversation.php:922 -msgid "Visible to everybody" -msgstr "Visible par tout le monde" - -#: ../../include/conversation.php:906 ../../include/conversation.php:924 -msgid "Please enter a video link/URL:" -msgstr "Entrez un lien/URL video :" - -#: ../../include/conversation.php:907 ../../include/conversation.php:925 -msgid "Please enter an audio link/URL:" -msgstr "Entrez un lien/URL audio :" - -#: ../../include/conversation.php:908 ../../include/conversation.php:926 -msgid "Tag term:" -msgstr "Tag : " - -#: ../../include/conversation.php:910 ../../include/conversation.php:928 -msgid "Where are you right now?" -msgstr "Où êtes-vous présentemment?" - -#: ../../include/conversation.php:911 -msgid "Delete item(s)?" +#: ../../mod/profiles.php:631 +msgid "Change Profile Photo" msgstr "" -#: ../../include/conversation.php:990 -msgid "permissions" -msgstr "permissions" +#: ../../mod/profiles.php:632 +msgid "View this profile" +msgstr "Voir ce profil" -#: ../../include/plugin.php:389 ../../include/plugin.php:391 -msgid "Click here to upgrade." -msgstr "Cliquez ici pour mettre à jour." +#: ../../mod/profiles.php:633 +msgid "Create a new profile using these settings" +msgstr "Créer un nouveau profil en utilisant ces réglages" -#: ../../include/plugin.php:397 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Cette action dépasse les limites définies par votre abonnement." +#: ../../mod/profiles.php:634 +msgid "Clone this profile" +msgstr "Cloner ce profil" -#: ../../include/plugin.php:402 -msgid "This action is not available under your subscription plan." -msgstr "Cette action n'est pas disponible avec votre abonnement." +#: ../../mod/profiles.php:635 +msgid "Delete this profile" +msgstr "Supprimer ce profil" -#: ../../boot.php:607 +#: ../../mod/profiles.php:636 +msgid "Profile Name:" +msgstr "Nom du profil:" + +#: ../../mod/profiles.php:637 +msgid "Your Full Name:" +msgstr "Votre nom complet:" + +#: ../../mod/profiles.php:638 +msgid "Title/Description:" +msgstr "Titre/Description:" + +#: ../../mod/profiles.php:639 +msgid "Your Gender:" +msgstr "Votre genre:" + +#: ../../mod/profiles.php:640 +#, php-format +msgid "Birthday (%s):" +msgstr "Anniversaire (%s):" + +#: ../../mod/profiles.php:641 +msgid "Street Address:" +msgstr "Adresse postale:" + +#: ../../mod/profiles.php:642 +msgid "Locality/City:" +msgstr "Ville/Localité:" + +#: ../../mod/profiles.php:643 +msgid "Postal/Zip Code:" +msgstr "Code postal:" + +#: ../../mod/profiles.php:644 +msgid "Country:" +msgstr "Pays:" + +#: ../../mod/profiles.php:645 +msgid "Region/State:" +msgstr "Région/État:" + +#: ../../mod/profiles.php:646 +msgid " Marital Status:" +msgstr " Statut marital:" + +#: ../../mod/profiles.php:647 +msgid "Who: (if applicable)" +msgstr "Qui: (si pertinent)" + +#: ../../mod/profiles.php:648 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" + +#: ../../mod/profiles.php:649 +msgid "Since [date]:" +msgstr "Depuis [date] :" + +#: ../../mod/profiles.php:651 +msgid "Homepage URL:" +msgstr "Page personnelle:" + +#: ../../mod/profiles.php:654 +msgid "Religious Views:" +msgstr "Opinions religieuses:" + +#: ../../mod/profiles.php:655 +msgid "Public Keywords:" +msgstr "Mots-clés publics:" + +#: ../../mod/profiles.php:656 +msgid "Private Keywords:" +msgstr "Mots-clés privés:" + +#: ../../mod/profiles.php:659 +msgid "Example: fishing photography software" +msgstr "Exemple: football dessin programmation" + +#: ../../mod/profiles.php:660 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)" + +#: ../../mod/profiles.php:661 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)" + +#: ../../mod/profiles.php:662 +msgid "Tell us about yourself..." +msgstr "Parlez-nous de vous..." + +#: ../../mod/profiles.php:663 +msgid "Hobbies/Interests" +msgstr "Passe-temps/Centres d'intérêt" + +#: ../../mod/profiles.php:664 +msgid "Contact information and Social Networks" +msgstr "Coordonnées/Réseaux sociaux" + +#: ../../mod/profiles.php:665 +msgid "Musical interests" +msgstr "Goûts musicaux" + +#: ../../mod/profiles.php:666 +msgid "Books, literature" +msgstr "Lectures" + +#: ../../mod/profiles.php:667 +msgid "Television" +msgstr "Télévision" + +#: ../../mod/profiles.php:668 +msgid "Film/dance/culture/entertainment" +msgstr "Cinéma/Danse/Culture/Divertissement" + +#: ../../mod/profiles.php:669 +msgid "Love/romance" +msgstr "Amour/Romance" + +#: ../../mod/profiles.php:670 +msgid "Work/employment" +msgstr "Activité professionnelle/Occupation" + +#: ../../mod/profiles.php:671 +msgid "School/education" +msgstr "Études/Formation" + +#: ../../mod/profiles.php:676 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Ceci est votre profil public.
Il peut être visible par n'importe quel utilisateur d'Internet." + +#: ../../mod/profiles.php:686 ../../mod/directory.php:111 +msgid "Age: " +msgstr "Age: " + +#: ../../mod/profiles.php:725 +msgid "Edit/Manage Profiles" +msgstr "Editer/gérer les profils" + +#: ../../mod/profiles.php:726 ../../boot.php:1445 ../../boot.php:1471 +msgid "Change profile photo" +msgstr "Changer de photo de profil" + +#: ../../mod/profiles.php:727 ../../boot.php:1446 +msgid "Create New Profile" +msgstr "Créer un nouveau profil" + +#: ../../mod/profiles.php:738 ../../boot.php:1456 +msgid "Profile Image" +msgstr "Image du profil" + +#: ../../mod/profiles.php:740 ../../boot.php:1459 +msgid "visible to everybody" +msgstr "visible par tous" + +#: ../../mod/profiles.php:741 ../../boot.php:1460 +msgid "Edit visibility" +msgstr "Changer la visibilité" + +#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:345 +msgid "Permission denied" +msgstr "Permission refusée" + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Identifiant de profil invalide." + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Éditer la visibilité du profil" + +#: ../../mod/profperm.php:105 ../../mod/group.php:224 +msgid "Click on a contact to add or remove." +msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer." + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Visible par" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Tous les contacts (ayant un accès sécurisé)" + +#: ../../mod/notes.php:44 ../../boot.php:1978 +msgid "Personal Notes" +msgstr "Notes personnelles" + +#: ../../mod/display.php:19 ../../mod/search.php:89 +#: ../../mod/dfrn_request.php:761 ../../mod/directory.php:31 +#: ../../mod/videos.php:115 ../../mod/viewcontacts.php:17 +#: ../../mod/photos.php:914 ../../mod/community.php:18 +msgid "Public access denied." +msgstr "Accès public refusé." + +#: ../../mod/display.php:99 ../../mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "L'accès au profil a été restreint." + +#: ../../mod/display.php:239 +msgid "Item has been removed." +msgstr "Cet élément a été enlevé." + +#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395 +#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visiter le profil de %s [%s]" + +#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586 +msgid "Edit contact" +msgstr "Éditer le contact" + +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Contacts qui n’appartiennent à aucun groupe" + +#: ../../mod/ping.php:238 +msgid "{0} wants to be your friend" +msgstr "{0} souhaite être votre ami(e)" + +#: ../../mod/ping.php:243 +msgid "{0} sent you a message" +msgstr "{0} vous a envoyé un message" + +#: ../../mod/ping.php:248 +msgid "{0} requested registration" +msgstr "{0} a demandé à s'inscrire" + +#: ../../mod/ping.php:254 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} a commenté une notice de %s" + +#: ../../mod/ping.php:259 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0} a aimé une notice de %s" + +#: ../../mod/ping.php:264 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0} n'a pas aimé une notice de %s" + +#: ../../mod/ping.php:269 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} est désormais ami(e) avec %s" + +#: ../../mod/ping.php:274 +msgid "{0} posted" +msgstr "{0} a posté" + +#: ../../mod/ping.php:279 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} a taggué la notice de %s avec #%s" + +#: ../../mod/ping.php:285 +msgid "{0} mentioned you in a post" +msgstr "{0} vous a mentionné dans une publication" + +#: ../../mod/admin.php:55 +msgid "Theme settings updated." +msgstr "Réglages du thème sauvés." + +#: ../../mod/admin.php:96 ../../mod/admin.php:490 +msgid "Site" +msgstr "Site" + +#: ../../mod/admin.php:97 ../../mod/admin.php:762 ../../mod/admin.php:776 +msgid "Users" +msgstr "Utilisateurs" + +#: ../../mod/admin.php:98 ../../mod/admin.php:859 ../../mod/admin.php:901 +msgid "Plugins" +msgstr "Extensions" + +#: ../../mod/admin.php:99 ../../mod/admin.php:1067 ../../mod/admin.php:1101 +msgid "Themes" +msgstr "Thèmes" + +#: ../../mod/admin.php:100 +msgid "DB updates" +msgstr "Mise-à-jour de la base" + +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1188 +msgid "Logs" +msgstr "Journaux" + +#: ../../mod/admin.php:121 +msgid "Plugin Features" +msgstr "Propriétés des extensions" + +#: ../../mod/admin.php:123 +msgid "User registrations waiting for confirmation" +msgstr "Inscriptions en attente de confirmation" + +#: ../../mod/admin.php:182 ../../mod/admin.php:733 +msgid "Normal Account" +msgstr "Compte normal" + +#: ../../mod/admin.php:183 ../../mod/admin.php:734 +msgid "Soapbox Account" +msgstr "Compte \"boîte à savon\"" + +#: ../../mod/admin.php:184 ../../mod/admin.php:735 +msgid "Community/Celebrity Account" +msgstr "Compte de communauté/célébrité" + +#: ../../mod/admin.php:185 ../../mod/admin.php:736 +msgid "Automatic Friend Account" +msgstr "Compte auto-amical" + +#: ../../mod/admin.php:186 +msgid "Blog Account" +msgstr "Compte de blog" + +#: ../../mod/admin.php:187 +msgid "Private Forum" +msgstr "Forum privé" + +#: ../../mod/admin.php:206 +msgid "Message queues" +msgstr "Files d'attente des messages" + +#: ../../mod/admin.php:211 ../../mod/admin.php:489 ../../mod/admin.php:761 +#: ../../mod/admin.php:858 ../../mod/admin.php:900 ../../mod/admin.php:1066 +#: ../../mod/admin.php:1100 ../../mod/admin.php:1187 +msgid "Administration" +msgstr "Administration" + +#: ../../mod/admin.php:212 +msgid "Summary" +msgstr "Résumé" + +#: ../../mod/admin.php:214 +msgid "Registered users" +msgstr "Utilisateurs inscrits" + +#: ../../mod/admin.php:216 +msgid "Pending registrations" +msgstr "Inscriptions en attente" + +#: ../../mod/admin.php:217 +msgid "Version" +msgstr "Versio" + +#: ../../mod/admin.php:219 +msgid "Active plugins" +msgstr "Extensions activés" + +#: ../../mod/admin.php:405 +msgid "Site settings updated." +msgstr "Réglages du site mis-à-jour." + +#: ../../mod/admin.php:434 ../../mod/settings.php:793 +msgid "No special theme for mobile devices" +msgstr "Pas de thème particulier pour les terminaux mobiles" + +#: ../../mod/admin.php:451 ../../mod/contacts.php:330 +msgid "Never" +msgstr "Jamais" + +#: ../../mod/admin.php:460 +msgid "Multi user instance" +msgstr "Instance multi-utilisateurs" + +#: ../../mod/admin.php:476 +msgid "Closed" +msgstr "Fermé" + +#: ../../mod/admin.php:477 +msgid "Requires approval" +msgstr "Demande une apptrobation" + +#: ../../mod/admin.php:478 +msgid "Open" +msgstr "Ouvert" + +#: ../../mod/admin.php:482 +msgid "No SSL policy, links will track page SSL state" +msgstr "Pas de politique SSL, le liens conserveront l'état SSL de la page" + +#: ../../mod/admin.php:483 +msgid "Force all links to use SSL" +msgstr "Forcer tous les liens à utiliser SSL" + +#: ../../mod/admin.php:484 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)" + +#: ../../mod/admin.php:492 ../../mod/register.php:261 +msgid "Registration" +msgstr "Inscription" + +#: ../../mod/admin.php:493 +msgid "File upload" +msgstr "Téléversement de fichier" + +#: ../../mod/admin.php:494 +msgid "Policies" +msgstr "Politiques" + +#: ../../mod/admin.php:495 +msgid "Advanced" +msgstr "Avancé" + +#: ../../mod/admin.php:496 +msgid "Performance" +msgstr "Performance" + +#: ../../mod/admin.php:500 +msgid "Site name" +msgstr "Nom du site" + +#: ../../mod/admin.php:501 +msgid "Banner/Logo" +msgstr "Bannière/Logo" + +#: ../../mod/admin.php:502 +msgid "System language" +msgstr "Langue du système" + +#: ../../mod/admin.php:503 +msgid "System theme" +msgstr "Thème du système" + +#: ../../mod/admin.php:503 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Thème par défaut sur ce site - peut être changé en fonction des profils - changer les réglages du thème" + +#: ../../mod/admin.php:504 +msgid "Mobile system theme" +msgstr "Thème mobile" + +#: ../../mod/admin.php:504 +msgid "Theme for mobile devices" +msgstr "Thème pour les terminaux mobiles" + +#: ../../mod/admin.php:505 +msgid "SSL link policy" +msgstr "Politique SSL pour les liens" + +#: ../../mod/admin.php:505 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Détermine si les liens générés doivent forcer l'usage de SSL" + +#: ../../mod/admin.php:506 +msgid "'Share' element" +msgstr "" + +#: ../../mod/admin.php:506 +msgid "Activates the bbcode element 'share' for repeating items." +msgstr "" + +#: ../../mod/admin.php:507 +msgid "Hide help entry from navigation menu" +msgstr "Cacher l'aide du menu de navigation" + +#: ../../mod/admin.php:507 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "" + +#: ../../mod/admin.php:508 +msgid "Single user instance" +msgstr "Instance mono-utilisateur" + +#: ../../mod/admin.php:508 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "" + +#: ../../mod/admin.php:509 +msgid "Maximum image size" +msgstr "Taille maximale des images" + +#: ../../mod/admin.php:509 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"." + +#: ../../mod/admin.php:510 +msgid "Maximum image length" +msgstr "Longueur maximale des images" + +#: ../../mod/admin.php:510 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Longueur maximale (en pixels) du plus long côté des images téléversées. La valeur par défaut est -1, soit une absence de limite." + +#: ../../mod/admin.php:511 +msgid "JPEG image quality" +msgstr "Qualité JPEG des images" + +#: ../../mod/admin.php:511 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale." + +#: ../../mod/admin.php:513 +msgid "Register policy" +msgstr "Politique d'inscription" + +#: ../../mod/admin.php:514 +msgid "Maximum Daily Registrations" +msgstr "" + +#: ../../mod/admin.php:514 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "" + +#: ../../mod/admin.php:515 +msgid "Register text" +msgstr "Texte d'inscription" + +#: ../../mod/admin.php:515 +msgid "Will be displayed prominently on the registration page." +msgstr "Sera affiché de manière bien visible sur la page d'accueil." + +#: ../../mod/admin.php:516 +msgid "Accounts abandoned after x days" +msgstr "Les comptes sont abandonnés après x jours" + +#: ../../mod/admin.php:516 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction." + +#: ../../mod/admin.php:517 +msgid "Allowed friend domains" +msgstr "Domaines autorisés" + +#: ../../mod/admin.php:517 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines" + +#: ../../mod/admin.php:518 +msgid "Allowed email domains" +msgstr "Domaines courriel autorisés" + +#: ../../mod/admin.php:518 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Liste de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines" + +#: ../../mod/admin.php:519 +msgid "Block public" +msgstr "Interdire la publication globale" + +#: ../../mod/admin.php:519 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques." + +#: ../../mod/admin.php:520 +msgid "Force publish" +msgstr "Forcer la publication globale" + +#: ../../mod/admin.php:520 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site." + +#: ../../mod/admin.php:521 +msgid "Global directory update URL" +msgstr "URL de mise-à-jour de l'annuaire global" + +#: ../../mod/admin.php:521 +msgid "" +"URL to update the global directory. If this is not set, the global directory" +" is completely unavailable to the application." +msgstr "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible." + +#: ../../mod/admin.php:522 +msgid "Allow threaded items" +msgstr "Activer les commentaires imbriqués" + +#: ../../mod/admin.php:522 +msgid "Allow infinite level threading for items on this site." +msgstr "Permettre une imbrication infinie des commentaires." + +#: ../../mod/admin.php:523 +msgid "Private posts by default for new users" +msgstr "Publications privées par défaut pour les nouveaux utilisateurs" + +#: ../../mod/admin.php:523 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Rendre les posts de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde." + +#: ../../mod/admin.php:524 +msgid "Don't include post content in email notifications" +msgstr "" + +#: ../../mod/admin.php:524 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "" + +#: ../../mod/admin.php:525 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "" + +#: ../../mod/admin.php:525 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "" + +#: ../../mod/admin.php:526 +msgid "Don't embed private images in posts" +msgstr "" + +#: ../../mod/admin.php:526 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "" + +#: ../../mod/admin.php:528 +msgid "Block multiple registrations" +msgstr "Interdire les inscriptions multiples" + +#: ../../mod/admin.php:528 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages." + +#: ../../mod/admin.php:529 +msgid "OpenID support" +msgstr "Support OpenID" + +#: ../../mod/admin.php:529 +msgid "OpenID support for registration and logins." +msgstr "Supporter OpenID pour les inscriptions et connexions." + +#: ../../mod/admin.php:530 +msgid "Fullname check" +msgstr "Vérification du \"Prénom Nom\"" + +#: ../../mod/admin.php:530 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus" + +#: ../../mod/admin.php:531 +msgid "UTF-8 Regular expressions" +msgstr "Regex UTF-8" + +#: ../../mod/admin.php:531 +msgid "Use PHP UTF8 regular expressions" +msgstr "Utiliser les expressions rationnelles de PHP en UTF8" + +#: ../../mod/admin.php:532 +msgid "Show Community Page" +msgstr "Montrer la \"Place publique\"" + +#: ../../mod/admin.php:532 +msgid "" +"Display a Community page showing all recent public postings on this site." +msgstr "Afficher une page Communauté avec toutes les publications publiques récentes du site." + +#: ../../mod/admin.php:533 +msgid "Enable OStatus support" +msgstr "Activer le support d'OStatus" + +#: ../../mod/admin.php:533 +msgid "" +"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Fournir une compatibilité OStatus (identi.ca, status.net, etc.). Toutes les communications d'OStatus sont publiques, des avertissements liés à la vie privée seront affichés si utile." + +#: ../../mod/admin.php:534 +msgid "OStatus conversation completion interval" +msgstr "" + +#: ../../mod/admin.php:534 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "" + +#: ../../mod/admin.php:535 +msgid "Enable Diaspora support" +msgstr "Activer le support de Diaspora" + +#: ../../mod/admin.php:535 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Fournir une compatibilité Diaspora intégrée." + +#: ../../mod/admin.php:536 +msgid "Only allow Friendica contacts" +msgstr "N'autoriser que les contacts Friendica" + +#: ../../mod/admin.php:536 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés." + +#: ../../mod/admin.php:537 +msgid "Verify SSL" +msgstr "Vérifier SSL" + +#: ../../mod/admin.php:537 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé." + +#: ../../mod/admin.php:538 +msgid "Proxy user" +msgstr "Utilisateur du proxy" + +#: ../../mod/admin.php:539 +msgid "Proxy URL" +msgstr "URL du proxy" + +#: ../../mod/admin.php:540 +msgid "Network timeout" +msgstr "Dépassement du délai d'attente du réseau" + +#: ../../mod/admin.php:540 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)." + +#: ../../mod/admin.php:541 +msgid "Delivery interval" +msgstr "Intervalle de transmission" + +#: ../../mod/admin.php:541 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Rallonge le processus de transmissions pour réduire la charge système (en secondes). Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS, 0-1 pour les gros servers dédiés." + +#: ../../mod/admin.php:542 +msgid "Poll interval" +msgstr "Intervalle de réception" + +#: ../../mod/admin.php:542 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission." + +#: ../../mod/admin.php:543 +msgid "Maximum Load Average" +msgstr "Plafond de la charge moyenne" + +#: ../../mod/admin.php:543 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50." + +#: ../../mod/admin.php:545 +msgid "Use MySQL full text engine" +msgstr "Utiliser le moteur de recherche plein texte de MySQL" + +#: ../../mod/admin.php:545 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus." + +#: ../../mod/admin.php:546 +msgid "Path to item cache" +msgstr "Chemin vers le cache des objets." + +#: ../../mod/admin.php:547 +msgid "Cache duration in seconds" +msgstr "Durée du cache en secondes" + +#: ../../mod/admin.php:547 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day)." +msgstr "" + +#: ../../mod/admin.php:548 +msgid "Path for lock file" +msgstr "Chemin vers le ficher de verrouillage" + +#: ../../mod/admin.php:549 +msgid "Temp path" +msgstr "Chemin des fichiers temporaires" + +#: ../../mod/admin.php:550 +msgid "Base path to installation" +msgstr "Chemin de base de l'installation" + +#: ../../mod/admin.php:567 +msgid "Update has been marked successful" +msgstr "Mise-à-jour validée comme 'réussie'" + +#: ../../mod/admin.php:577 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "L'éxecution de %s a échoué. Vérifiez les journaux du système." + +#: ../../mod/admin.php:580 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Mise-à-jour %s appliquée avec succès." + +#: ../../mod/admin.php:584 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi." + +#: ../../mod/admin.php:587 +#, php-format +msgid "Update function %s could not be found." +msgstr "La fonction %s de la mise-à-jour n'a pu être trouvée." + +#: ../../mod/admin.php:602 +msgid "No failed updates." +msgstr "Pas de mises-à-jour échouées." + +#: ../../mod/admin.php:606 +msgid "Failed Updates" +msgstr "Mises-à-jour échouées" + +#: ../../mod/admin.php:607 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails." + +#: ../../mod/admin.php:608 +msgid "Mark success (if update was manually applied)" +msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)" + +#: ../../mod/admin.php:609 +msgid "Attempt to execute this update step automatically" +msgstr "Tenter d'éxecuter cette étape automatiquement" + +#: ../../mod/admin.php:634 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s utilisateur a (dé)bloqué" +msgstr[1] "%s utilisateurs ont (dé)bloqué" + +#: ../../mod/admin.php:641 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utilisateur supprimé" +msgstr[1] "%s utilisateurs supprimés" + +#: ../../mod/admin.php:680 +#, php-format +msgid "User '%s' deleted" +msgstr "Utilisateur '%s' supprimé" + +#: ../../mod/admin.php:688 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utilisateur '%s' débloqué" + +#: ../../mod/admin.php:688 +#, php-format +msgid "User '%s' blocked" +msgstr "Utilisateur '%s' bloqué" + +#: ../../mod/admin.php:764 +msgid "select all" +msgstr "tout sélectionner" + +#: ../../mod/admin.php:765 +msgid "User registrations waiting for confirm" +msgstr "Inscriptions d'utilisateurs en attente de confirmation" + +#: ../../mod/admin.php:766 +msgid "Request date" +msgstr "Date de la demande" + +#: ../../mod/admin.php:766 ../../mod/admin.php:777 ../../mod/settings.php:586 +#: ../../mod/settings.php:612 ../../mod/crepair.php:148 +msgid "Name" +msgstr "Nom" + +#: ../../mod/admin.php:767 +msgid "No registrations." +msgstr "Pas d'inscriptions." + +#: ../../mod/admin.php:768 ../../mod/notifications.php:161 +#: ../../mod/notifications.php:208 +msgid "Approve" +msgstr "Approuver" + +#: ../../mod/admin.php:769 +msgid "Deny" +msgstr "Rejetter" + +#: ../../mod/admin.php:771 ../../mod/contacts.php:353 +#: ../../mod/contacts.php:412 +msgid "Block" +msgstr "Bloquer" + +#: ../../mod/admin.php:772 ../../mod/contacts.php:353 +#: ../../mod/contacts.php:412 +msgid "Unblock" +msgstr "Débloquer" + +#: ../../mod/admin.php:773 +msgid "Site admin" +msgstr "Administration du Site" + +#: ../../mod/admin.php:774 +msgid "Account expired" +msgstr "Compte expiré" + +#: ../../mod/admin.php:777 +msgid "Register date" +msgstr "Date d'inscription" + +#: ../../mod/admin.php:777 +msgid "Last login" +msgstr "Dernière connexion" + +#: ../../mod/admin.php:777 +msgid "Last item" +msgstr "Dernier élément" + +#: ../../mod/admin.php:777 +msgid "Account" +msgstr "Compte" + +#: ../../mod/admin.php:779 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?" + +#: ../../mod/admin.php:780 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?" + +#: ../../mod/admin.php:821 +#, php-format +msgid "Plugin %s disabled." +msgstr "Extension %s désactivée." + +#: ../../mod/admin.php:825 +#, php-format +msgid "Plugin %s enabled." +msgstr "Extension %s activée." + +#: ../../mod/admin.php:835 ../../mod/admin.php:1038 +msgid "Disable" +msgstr "Désactiver" + +#: ../../mod/admin.php:837 ../../mod/admin.php:1040 +msgid "Enable" +msgstr "Activer" + +#: ../../mod/admin.php:860 ../../mod/admin.php:1068 +msgid "Toggle" +msgstr "Activer/Désactiver" + +#: ../../mod/admin.php:868 ../../mod/admin.php:1078 +msgid "Author: " +msgstr "Auteur: " + +#: ../../mod/admin.php:869 ../../mod/admin.php:1079 +msgid "Maintainer: " +msgstr "Mainteneur: " + +#: ../../mod/admin.php:998 +msgid "No themes found." +msgstr "Aucun thème trouvé." + +#: ../../mod/admin.php:1060 +msgid "Screenshot" +msgstr "Capture d'écran" + +#: ../../mod/admin.php:1106 +msgid "[Experimental]" +msgstr "[Expérimental]" + +#: ../../mod/admin.php:1107 +msgid "[Unsupported]" +msgstr "[Non supporté]" + +#: ../../mod/admin.php:1134 +msgid "Log settings updated." +msgstr "Réglages des journaux mis-à-jour." + +#: ../../mod/admin.php:1190 +msgid "Clear" +msgstr "Effacer" + +#: ../../mod/admin.php:1196 +msgid "Enable Debugging" +msgstr "" + +#: ../../mod/admin.php:1197 +msgid "Log file" +msgstr "Fichier de journaux" + +#: ../../mod/admin.php:1197 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica." + +#: ../../mod/admin.php:1198 +msgid "Log level" +msgstr "Niveau de journalisaton" + +#: ../../mod/admin.php:1247 ../../mod/contacts.php:409 +msgid "Update now" +msgstr "Mettre à jour" + +#: ../../mod/admin.php:1248 +msgid "Close" +msgstr "Fermer" + +#: ../../mod/admin.php:1254 +msgid "FTP Host" +msgstr "Hôte FTP" + +#: ../../mod/admin.php:1255 +msgid "FTP Path" +msgstr "Chemin FTP" + +#: ../../mod/admin.php:1256 +msgid "FTP User" +msgstr "Utilisateur FTP" + +#: ../../mod/admin.php:1257 +msgid "FTP Password" +msgstr "Mot de passe FTP" + +#: ../../mod/item.php:108 +msgid "Unable to locate original post." +msgstr "Impossible de localiser l'article original." + +#: ../../mod/item.php:310 +msgid "Empty post discarded." +msgstr "Article vide défaussé." + +#: ../../mod/item.php:872 +msgid "System error. Post not saved." +msgstr "Erreur système. Publication non sauvée." + +#: ../../mod/item.php:897 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Ce message vous a été envoyé par %s, membre du réseau social Friendica." + +#: ../../mod/item.php:899 +#, php-format +msgid "You may visit them online at %s" +msgstr "Vous pouvez leur rendre visite sur %s" + +#: ../../mod/item.php:900 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages." + +#: ../../mod/item.php:904 +#, php-format +msgid "%s posted an update." +msgstr "%s a publié une mise à jour." + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Amis de %s" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Pas d'amis à afficher." + +#: ../../mod/search.php:21 ../../mod/network.php:224 +msgid "Remove term" +msgstr "Retirer le terme" + +#: ../../mod/search.php:180 ../../mod/search.php:206 +#: ../../mod/community.php:61 ../../mod/community.php:89 +msgid "No results." +msgstr "Aucun résultat." + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autoriser l'application à se connecter" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Retournez à votre application et saisissez ce Code de Sécurité : " + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Merci de vous connecter pour continuer." + +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Voulez-vous autoriser cette application à accéder à vos notices et contacts, et/ou à créer des notices à votre place?" + +#: ../../mod/register.php:91 ../../mod/regmod.php:54 +#, php-format +msgid "Registration details for %s" +msgstr "Détails d'inscription pour %s" + +#: ../../mod/register.php:99 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Inscription réussie. Vérifiez vos emails pour la suite des instructions." + +#: ../../mod/register.php:103 +msgid "Failed to send email message. Here is the message that failed." +msgstr "Impossible d'envoyer un email. Voici le message qui a échoué." + +#: ../../mod/register.php:108 +msgid "Your registration can not be processed." +msgstr "Votre inscription ne peut être traitée." + +#: ../../mod/register.php:145 +#, php-format +msgid "Registration request at %s" +msgstr "Demande d'inscription à %s" + +#: ../../mod/register.php:154 +msgid "Your registration is pending approval by the site owner." +msgstr "Votre inscription attend une validation du propriétaire du site." + +#: ../../mod/register.php:192 ../../mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain." + +#: ../../mod/register.php:220 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"." + +#: ../../mod/register.php:221 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste." + +#: ../../mod/register.php:222 +msgid "Your OpenID (optional): " +msgstr "Votre OpenID (facultatif): " + +#: ../../mod/register.php:236 +msgid "Include your profile in member directory?" +msgstr "Inclure votre profil dans l'annuaire des membres?" + +#: ../../mod/register.php:257 +msgid "Membership on this site is by invitation only." +msgstr "L'inscription à ce site se fait uniquement sur invitation." + +#: ../../mod/register.php:258 +msgid "Your invitation ID: " +msgstr "Votre ID d'invitation: " + +#: ../../mod/register.php:269 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Votre nom complet (p.ex. Michel Dupont): " + +#: ../../mod/register.php:270 +msgid "Your Email Address: " +msgstr "Votre adresse courriel: " + +#: ../../mod/register.php:271 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@$sitename</strong>'." + +#: ../../mod/register.php:272 +msgid "Choose a nickname: " +msgstr "Choisir un pseudo: " + +#: ../../mod/regmod.php:63 +msgid "Account approved." +msgstr "Inscription validée." + +#: ../../mod/regmod.php:100 +#, php-format +msgid "Registration revoked for %s" +msgstr "Inscription révoquée pour %s" + +#: ../../mod/regmod.php:112 +msgid "Please login." +msgstr "Merci de vous connecter." + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Elément non disponible." + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Element introuvable." + +#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 +msgid "Remove My Account" +msgstr "Supprimer mon compte" + +#: ../../mod/removeme.php:46 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversible." + +#: ../../mod/removeme.php:47 +msgid "Please enter your password for verification:" +msgstr "Merci de saisir votre mot de passe pour vérification:" + +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Texte source (bbcode) :" + +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Texte source (Diaspora) à convertir en BBcode :" + +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Source input: " + +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "" + +#: ../../mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html: " + +#: ../../mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: ../../mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " + +#: ../../mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Texte source (format Diaspora) :" + +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb :" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Amis communs" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Pas de contacts en commun." + +#: ../../mod/apps.php:7 +msgid "You must be logged in to use addons. " +msgstr "" + +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Applications" + +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Pas d'application installée." + +#: ../../mod/contacts.php:85 ../../mod/contacts.php:165 +msgid "Could not access contact record." +msgstr "Impossible d'accéder à l'enregistrement du contact." + +#: ../../mod/contacts.php:99 +msgid "Could not locate selected profile." +msgstr "Impossible de localiser le profil séléctionné." + +#: ../../mod/contacts.php:122 +msgid "Contact updated." +msgstr "Contact mis-à-jour." + +#: ../../mod/contacts.php:124 ../../mod/dfrn_request.php:571 +msgid "Failed to update contact record." +msgstr "Échec de mise-à-jour du contact." + +#: ../../mod/contacts.php:187 +msgid "Contact has been blocked" +msgstr "Le contact a été bloqué" + +#: ../../mod/contacts.php:187 +msgid "Contact has been unblocked" +msgstr "Le contact n'est plus bloqué" + +#: ../../mod/contacts.php:201 +msgid "Contact has been ignored" +msgstr "Le contact a été ignoré" + +#: ../../mod/contacts.php:201 +msgid "Contact has been unignored" +msgstr "Le contact n'est plus ignoré" + +#: ../../mod/contacts.php:220 +msgid "Contact has been archived" +msgstr "Contact archivé" + +#: ../../mod/contacts.php:220 +msgid "Contact has been unarchived" +msgstr "Contact désarchivé" + +#: ../../mod/contacts.php:244 +msgid "Do you really want to delete this contact?" +msgstr "" + +#: ../../mod/contacts.php:263 +msgid "Contact has been removed." +msgstr "Ce contact a été retiré." + +#: ../../mod/contacts.php:301 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Vous êtes ami (et réciproquement) avec %s" + +#: ../../mod/contacts.php:305 +#, php-format +msgid "You are sharing with %s" +msgstr "Vous partagez avec %s" + +#: ../../mod/contacts.php:310 +#, php-format +msgid "%s is sharing with you" +msgstr "%s partage avec vous" + +#: ../../mod/contacts.php:327 +msgid "Private communications are not available for this contact." +msgstr "Les communications privées ne sont pas disponibles pour ce contact." + +#: ../../mod/contacts.php:334 +msgid "(Update was successful)" +msgstr "(Mise à jour effectuée avec succès)" + +#: ../../mod/contacts.php:334 +msgid "(Update was not successful)" +msgstr "(Mise à jour échouée)" + +#: ../../mod/contacts.php:336 +msgid "Suggest friends" +msgstr "Suggérer amitié/contact" + +#: ../../mod/contacts.php:340 +#, php-format +msgid "Network type: %s" +msgstr "Type de réseau %s" + +#: ../../mod/contacts.php:348 +msgid "View all contacts" +msgstr "Voir tous les contacts" + +#: ../../mod/contacts.php:356 +msgid "Toggle Blocked status" +msgstr "(dés)activer l'état \"bloqué\"" + +#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 +msgid "Unignore" +msgstr "Ne plus ignorer" + +#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:210 +msgid "Ignore" +msgstr "Ignorer" + +#: ../../mod/contacts.php:362 +msgid "Toggle Ignored status" +msgstr "(dés)activer l'état \"ignoré\"" + +#: ../../mod/contacts.php:366 +msgid "Unarchive" +msgstr "Désarchiver" + +#: ../../mod/contacts.php:366 +msgid "Archive" +msgstr "Archiver" + +#: ../../mod/contacts.php:369 +msgid "Toggle Archive status" +msgstr "(dés)activer l'état \"archivé\"" + +#: ../../mod/contacts.php:372 +msgid "Repair" +msgstr "Réparer" + +#: ../../mod/contacts.php:375 +msgid "Advanced Contact Settings" +msgstr "Réglages avancés du contact" + +#: ../../mod/contacts.php:381 +msgid "Communications lost with this contact!" +msgstr "Communications perdues avec ce contact !" + +#: ../../mod/contacts.php:384 +msgid "Contact Editor" +msgstr "Éditeur de contact" + +#: ../../mod/contacts.php:387 +msgid "Profile Visibility" +msgstr "Visibilité du profil" + +#: ../../mod/contacts.php:388 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée." + +#: ../../mod/contacts.php:389 +msgid "Contact Information / Notes" +msgstr "Informations de contact / Notes" + +#: ../../mod/contacts.php:390 +msgid "Edit contact notes" +msgstr "Éditer les notes des contacts" + +#: ../../mod/contacts.php:396 +msgid "Block/Unblock contact" +msgstr "Bloquer/débloquer ce contact" + +#: ../../mod/contacts.php:397 +msgid "Ignore contact" +msgstr "Ignorer ce contact" + +#: ../../mod/contacts.php:398 +msgid "Repair URL settings" +msgstr "Réparer les réglages d'URL" + +#: ../../mod/contacts.php:399 +msgid "View conversations" +msgstr "Voir les conversations" + +#: ../../mod/contacts.php:401 +msgid "Delete contact" +msgstr "Effacer ce contact" + +#: ../../mod/contacts.php:405 +msgid "Last update:" +msgstr "Dernière mise-à-jour :" + +#: ../../mod/contacts.php:407 +msgid "Update public posts" +msgstr "Met ses entrées publiques à jour: " + +#: ../../mod/contacts.php:416 +msgid "Currently blocked" +msgstr "Actuellement bloqué" + +#: ../../mod/contacts.php:417 +msgid "Currently ignored" +msgstr "Actuellement ignoré" + +#: ../../mod/contacts.php:418 +msgid "Currently archived" +msgstr "Actuellement archivé" + +#: ../../mod/contacts.php:419 ../../mod/notifications.php:157 +#: ../../mod/notifications.php:204 +msgid "Hide this contact from others" +msgstr "Cacher ce contact aux autres" + +#: ../../mod/contacts.php:419 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Les réponses et \"j'aime\" à vos contenus publics peuvent être toujours visibles" + +#: ../../mod/contacts.php:470 +msgid "Suggestions" +msgstr "Suggestions" + +#: ../../mod/contacts.php:473 +msgid "Suggest potential friends" +msgstr "Suggérer des amis potentiels" + +#: ../../mod/contacts.php:476 ../../mod/group.php:194 +msgid "All Contacts" +msgstr "Tous les contacts" + +#: ../../mod/contacts.php:479 +msgid "Show all contacts" +msgstr "Montrer tous les contacts" + +#: ../../mod/contacts.php:482 +msgid "Unblocked" +msgstr "Non-bloqués" + +#: ../../mod/contacts.php:485 +msgid "Only show unblocked contacts" +msgstr "Ne montrer que les contacts non-bloqués" + +#: ../../mod/contacts.php:489 +msgid "Blocked" +msgstr "Bloqués" + +#: ../../mod/contacts.php:492 +msgid "Only show blocked contacts" +msgstr "Ne montrer que les contacts bloqués" + +#: ../../mod/contacts.php:496 +msgid "Ignored" +msgstr "Ignorés" + +#: ../../mod/contacts.php:499 +msgid "Only show ignored contacts" +msgstr "Ne montrer que les contacts ignorés" + +#: ../../mod/contacts.php:503 +msgid "Archived" +msgstr "Archivés" + +#: ../../mod/contacts.php:506 +msgid "Only show archived contacts" +msgstr "Ne montrer que les contacts archivés" + +#: ../../mod/contacts.php:510 +msgid "Hidden" +msgstr "Cachés" + +#: ../../mod/contacts.php:513 +msgid "Only show hidden contacts" +msgstr "Ne montrer que les contacts masqués" + +#: ../../mod/contacts.php:561 +msgid "Mutual Friendship" +msgstr "Relation réciproque" + +#: ../../mod/contacts.php:565 +msgid "is a fan of yours" +msgstr "Vous suit" + +#: ../../mod/contacts.php:569 +msgid "you are a fan of" +msgstr "Vous le/la suivez" + +#: ../../mod/contacts.php:611 +msgid "Search your contacts" +msgstr "Rechercher dans vos contacts" + +#: ../../mod/contacts.php:612 ../../mod/directory.php:59 +msgid "Finding: " +msgstr "Trouvé: " + +#: ../../mod/settings.php:23 ../../mod/photos.php:79 +msgid "everybody" +msgstr "tout le monde" + +#: ../../mod/settings.php:35 +msgid "Additional features" +msgstr "" + +#: ../../mod/settings.php:40 ../../mod/uexport.php:14 +msgid "Display settings" +msgstr "Affichage" + +#: ../../mod/settings.php:46 ../../mod/uexport.php:20 +msgid "Connector settings" +msgstr "Connecteurs" + +#: ../../mod/settings.php:51 ../../mod/uexport.php:25 +msgid "Plugin settings" +msgstr "Extensions" + +#: ../../mod/settings.php:56 ../../mod/uexport.php:30 +msgid "Connected apps" +msgstr "Applications connectées" + +#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80 +msgid "Export personal data" +msgstr "Exporter" + +#: ../../mod/settings.php:66 ../../mod/uexport.php:40 +msgid "Remove account" +msgstr "Supprimer le compte" + +#: ../../mod/settings.php:118 +msgid "Missing some important data!" +msgstr "Il manque certaines informations importantes!" + +#: ../../mod/settings.php:121 ../../mod/settings.php:610 +msgid "Update" +msgstr "Mises-à-jour" + +#: ../../mod/settings.php:227 +msgid "Failed to connect with email account using the settings provided." +msgstr "Impossible de se connecter au compte courriel configuré." + +#: ../../mod/settings.php:232 +msgid "Email settings updated." +msgstr "Réglages de courriel mis-à-jour." + +#: ../../mod/settings.php:247 +msgid "Features updated" +msgstr "" + +#: ../../mod/settings.php:312 +msgid "Passwords do not match. Password unchanged." +msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." + +#: ../../mod/settings.php:317 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué." + +#: ../../mod/settings.php:325 +msgid "Wrong password." +msgstr "" + +#: ../../mod/settings.php:336 +msgid "Password changed." +msgstr "Mots de passe changés." + +#: ../../mod/settings.php:338 +msgid "Password update failed. Please try again." +msgstr "Le changement de mot de passe a échoué. Merci de recommencer." + +#: ../../mod/settings.php:403 +msgid " Please use a shorter name." +msgstr " Merci d'utiliser un nom plus court." + +#: ../../mod/settings.php:405 +msgid " Name too short." +msgstr " Nom trop court." + +#: ../../mod/settings.php:414 +msgid "Wrong Password" +msgstr "" + +#: ../../mod/settings.php:419 +msgid " Not valid email." +msgstr " Email invalide." + +#: ../../mod/settings.php:422 +msgid " Cannot change to that email." +msgstr " Impossible de changer pour cet email." + +#: ../../mod/settings.php:476 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut." + +#: ../../mod/settings.php:480 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut." + +#: ../../mod/settings.php:510 +msgid "Settings updated." +msgstr "Réglages mis à jour." + +#: ../../mod/settings.php:583 ../../mod/settings.php:609 +#: ../../mod/settings.php:645 +msgid "Add application" +msgstr "Ajouter une application" + +#: ../../mod/settings.php:587 ../../mod/settings.php:613 +msgid "Consumer Key" +msgstr "Clé utilisateur" + +#: ../../mod/settings.php:588 ../../mod/settings.php:614 +msgid "Consumer Secret" +msgstr "Secret utilisateur" + +#: ../../mod/settings.php:589 ../../mod/settings.php:615 +msgid "Redirect" +msgstr "Rediriger" + +#: ../../mod/settings.php:590 ../../mod/settings.php:616 +msgid "Icon url" +msgstr "URL de l'icône" + +#: ../../mod/settings.php:601 +msgid "You can't edit this application." +msgstr "Vous ne pouvez pas éditer cette application." + +#: ../../mod/settings.php:644 +msgid "Connected Apps" +msgstr "Applications connectées" + +#: ../../mod/settings.php:646 ../../mod/editpost.php:109 +#: ../../mod/content.php:751 ../../object/Item.php:117 +msgid "Edit" +msgstr "Éditer" + +#: ../../mod/settings.php:648 +msgid "Client key starts with" +msgstr "La clé cliente commence par" + +#: ../../mod/settings.php:649 +msgid "No name" +msgstr "Sans nom" + +#: ../../mod/settings.php:650 +msgid "Remove authorization" +msgstr "Révoquer l'autorisation" + +#: ../../mod/settings.php:662 +msgid "No Plugin settings configured" +msgstr "Pas de réglages d'extensions configurés" + +#: ../../mod/settings.php:670 +msgid "Plugin Settings" +msgstr "Extensions" + +#: ../../mod/settings.php:684 +msgid "Off" +msgstr "" + +#: ../../mod/settings.php:684 +msgid "On" +msgstr "" + +#: ../../mod/settings.php:692 +msgid "Additional Features" +msgstr "" + +#: ../../mod/settings.php:705 ../../mod/settings.php:706 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Le support natif pour la connectivité %s est %s" + +#: ../../mod/settings.php:705 ../../mod/settings.php:706 +msgid "enabled" +msgstr "activé" + +#: ../../mod/settings.php:705 ../../mod/settings.php:706 +msgid "disabled" +msgstr "désactivé" + +#: ../../mod/settings.php:706 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../mod/settings.php:738 +msgid "Email access is disabled on this site." +msgstr "L'accès courriel est désactivé sur ce site." + +#: ../../mod/settings.php:745 +msgid "Connector Settings" +msgstr "Connecteurs" + +#: ../../mod/settings.php:750 +msgid "Email/Mailbox Setup" +msgstr "Réglages de courriel/boîte à lettre" + +#: ../../mod/settings.php:751 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte." + +#: ../../mod/settings.php:752 +msgid "Last successful email check:" +msgstr "Dernière vérification réussie des courriels:" + +#: ../../mod/settings.php:754 +msgid "IMAP server name:" +msgstr "Nom du serveur IMAP:" + +#: ../../mod/settings.php:755 +msgid "IMAP port:" +msgstr "Port IMAP:" + +#: ../../mod/settings.php:756 +msgid "Security:" +msgstr "Sécurité:" + +#: ../../mod/settings.php:756 ../../mod/settings.php:761 +msgid "None" +msgstr "Aucun(e)" + +#: ../../mod/settings.php:757 +msgid "Email login name:" +msgstr "Nom de connexion:" + +#: ../../mod/settings.php:758 +msgid "Email password:" +msgstr "Mot de passe:" + +#: ../../mod/settings.php:759 +msgid "Reply-to address:" +msgstr "Adresse de réponse:" + +#: ../../mod/settings.php:760 +msgid "Send public posts to all email contacts:" +msgstr "Les notices publiques vont à tous les contacts courriel:" + +#: ../../mod/settings.php:761 +msgid "Action after import:" +msgstr "Action après import:" + +#: ../../mod/settings.php:761 +msgid "Mark as seen" +msgstr "Marquer comme vu" + +#: ../../mod/settings.php:761 +msgid "Move to folder" +msgstr "Déplacer vers" + +#: ../../mod/settings.php:762 +msgid "Move to folder:" +msgstr "Déplacer vers:" + +#: ../../mod/settings.php:835 +msgid "Display Settings" +msgstr "Affichage" + +#: ../../mod/settings.php:841 ../../mod/settings.php:853 +msgid "Display Theme:" +msgstr "Thème d'affichage:" + +#: ../../mod/settings.php:842 +msgid "Mobile Theme:" +msgstr "Thème mobile:" + +#: ../../mod/settings.php:843 +msgid "Update browser every xx seconds" +msgstr "Mettre-à-jour l'affichage toutes les xx secondes" + +#: ../../mod/settings.php:843 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Délai minimum de 10 secondes, pas de maximum" + +#: ../../mod/settings.php:844 +msgid "Number of items to display per page:" +msgstr "Nombre d’éléments par page:" + +#: ../../mod/settings.php:844 ../../mod/settings.php:845 +msgid "Maximum of 100 items" +msgstr "Maximum de 100 éléments" + +#: ../../mod/settings.php:845 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: ../../mod/settings.php:846 +msgid "Don't show emoticons" +msgstr "Ne pas afficher les émoticônes (smileys grahiques)" + +#: ../../mod/settings.php:922 +msgid "Normal Account Page" +msgstr "Compte normal" + +#: ../../mod/settings.php:923 +msgid "This account is a normal personal profile" +msgstr "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)" + +#: ../../mod/settings.php:926 +msgid "Soapbox Page" +msgstr "Compte \"boîte à savon\"" + +#: ../../mod/settings.php:927 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'" + +#: ../../mod/settings.php:930 +msgid "Community Forum/Celebrity Account" +msgstr "Compte de communauté/célébrité" + +#: ../../mod/settings.php:931 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'" + +#: ../../mod/settings.php:934 +msgid "Automatic Friend Page" +msgstr "Compte d'\"amitié automatique\"" + +#: ../../mod/settings.php:935 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis" + +#: ../../mod/settings.php:938 +msgid "Private Forum [Experimental]" +msgstr "Forum privé [expérimental]" + +#: ../../mod/settings.php:939 +msgid "Private forum - approved members only" +msgstr "Forum privé - modéré en inscription" + +#: ../../mod/settings.php:951 +msgid "OpenID:" +msgstr "OpenID:" + +#: ../../mod/settings.php:951 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte." + +#: ../../mod/settings.php:961 +msgid "Publish your default profile in your local site directory?" +msgstr "Publier votre profil par défaut sur l'annuaire local de ce site?" + +#: ../../mod/settings.php:967 +msgid "Publish your default profile in the global social directory?" +msgstr "Publier votre profil par défaut sur l'annuaire social global?" + +#: ../../mod/settings.php:975 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?" + +#: ../../mod/settings.php:979 +msgid "Hide your profile details from unknown viewers?" +msgstr "Cacher les détails du profil aux visiteurs inconnus?" + +#: ../../mod/settings.php:984 +msgid "Allow friends to post to your profile page?" +msgstr "Autoriser vos amis à publier sur votre profil?" + +#: ../../mod/settings.php:990 +msgid "Allow friends to tag your posts?" +msgstr "Autoriser vos amis à tagguer vos notices?" + +#: ../../mod/settings.php:996 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?" + +#: ../../mod/settings.php:1002 +msgid "Permit unknown people to send you private mail?" +msgstr "Autoriser les messages privés d'inconnus?" + +#: ../../mod/settings.php:1010 +msgid "Profile is not published." +msgstr "Ce profil n'est pas publié." + +#: ../../mod/settings.php:1013 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "ou" + +#: ../../mod/settings.php:1018 +msgid "Your Identity Address is" +msgstr "L'adresse de votre identité est" + +#: ../../mod/settings.php:1029 +msgid "Automatically expire posts after this many days:" +msgstr "Les publications expirent automatiquement après (en jours) :" + +#: ../../mod/settings.php:1029 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Si ce champ est vide, les notices n'expireront pas. Les notices expirées seront supprimées" + +#: ../../mod/settings.php:1030 +msgid "Advanced expiration settings" +msgstr "Réglages avancés de l'expiration" + +#: ../../mod/settings.php:1031 +msgid "Advanced Expiration" +msgstr "Expiration (avancé)" + +#: ../../mod/settings.php:1032 +msgid "Expire posts:" +msgstr "Faire expirer les contenus:" + +#: ../../mod/settings.php:1033 +msgid "Expire personal notes:" +msgstr "Faire expirer les notes personnelles:" + +#: ../../mod/settings.php:1034 +msgid "Expire starred posts:" +msgstr "Faire expirer les contenus marqués:" + +#: ../../mod/settings.php:1035 +msgid "Expire photos:" +msgstr "Faire expirer les photos:" + +#: ../../mod/settings.php:1036 +msgid "Only expire posts by others:" +msgstr "Faire expirer seulement les messages des autres :" + +#: ../../mod/settings.php:1062 +msgid "Account Settings" +msgstr "Compte" + +#: ../../mod/settings.php:1070 +msgid "Password Settings" +msgstr "Réglages de mot de passe" + +#: ../../mod/settings.php:1071 +msgid "New Password:" +msgstr "Nouveau mot de passe:" + +#: ../../mod/settings.php:1072 +msgid "Confirm:" +msgstr "Confirmer:" + +#: ../../mod/settings.php:1072 +msgid "Leave password fields blank unless changing" +msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer" + +#: ../../mod/settings.php:1073 +msgid "Current Password:" +msgstr "" + +#: ../../mod/settings.php:1073 ../../mod/settings.php:1074 +msgid "Your current password to confirm the changes" +msgstr "" + +#: ../../mod/settings.php:1074 +msgid "Password:" +msgstr "" + +#: ../../mod/settings.php:1078 +msgid "Basic Settings" +msgstr "Réglages basiques" + +#: ../../mod/settings.php:1080 +msgid "Email Address:" +msgstr "Adresse courriel:" + +#: ../../mod/settings.php:1081 +msgid "Your Timezone:" +msgstr "Votre fuseau horaire:" + +#: ../../mod/settings.php:1082 +msgid "Default Post Location:" +msgstr "Publication par défaut depuis :" + +#: ../../mod/settings.php:1083 +msgid "Use Browser Location:" +msgstr "Utiliser la localisation géographique du navigateur:" + +#: ../../mod/settings.php:1086 +msgid "Security and Privacy Settings" +msgstr "Réglages de sécurité et vie privée" + +#: ../../mod/settings.php:1088 +msgid "Maximum Friend Requests/Day:" +msgstr "Nombre maximal de requêtes d'amitié/jour:" + +#: ../../mod/settings.php:1088 ../../mod/settings.php:1118 +msgid "(to prevent spam abuse)" +msgstr "(pour limiter l'impact du spam)" + +#: ../../mod/settings.php:1089 +msgid "Default Post Permissions" +msgstr "Permissions par défaut sur les articles" + +#: ../../mod/settings.php:1090 +msgid "(click to open/close)" +msgstr "(cliquer pour ouvrir/fermer)" + +#: ../../mod/settings.php:1099 ../../mod/photos.php:1140 +#: ../../mod/photos.php:1506 +msgid "Show to Groups" +msgstr "Montrer aux groupes" + +#: ../../mod/settings.php:1100 ../../mod/photos.php:1141 +#: ../../mod/photos.php:1507 +msgid "Show to Contacts" +msgstr "Montrer aux Contacts" + +#: ../../mod/settings.php:1101 +msgid "Default Private Post" +msgstr "" + +#: ../../mod/settings.php:1102 +msgid "Default Public Post" +msgstr "" + +#: ../../mod/settings.php:1106 +msgid "Default Permissions for New Posts" +msgstr "" + +#: ../../mod/settings.php:1118 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum de messages privés d'inconnus par jour:" + +#: ../../mod/settings.php:1121 +msgid "Notification Settings" +msgstr "Réglages de notification" + +#: ../../mod/settings.php:1122 +msgid "By default post a status message when:" +msgstr "Par défaut, poster un statut quand:" + +#: ../../mod/settings.php:1123 +msgid "accepting a friend request" +msgstr "j'accepte un ami" + +#: ../../mod/settings.php:1124 +msgid "joining a forum/community" +msgstr "joignant un forum/une communauté" + +#: ../../mod/settings.php:1125 +msgid "making an interesting profile change" +msgstr "je fais une modification intéressante de mon profil" + +#: ../../mod/settings.php:1126 +msgid "Send a notification email when:" +msgstr "Envoyer un courriel de notification quand:" + +#: ../../mod/settings.php:1127 +msgid "You receive an introduction" +msgstr "Vous recevez une introduction" + +#: ../../mod/settings.php:1128 +msgid "Your introductions are confirmed" +msgstr "Vos introductions sont confirmées" + +#: ../../mod/settings.php:1129 +msgid "Someone writes on your profile wall" +msgstr "Quelqu'un écrit sur votre mur" + +#: ../../mod/settings.php:1130 +msgid "Someone writes a followup comment" +msgstr "Quelqu'un vous commente" + +#: ../../mod/settings.php:1131 +msgid "You receive a private message" +msgstr "Vous recevez un message privé" + +#: ../../mod/settings.php:1132 +msgid "You receive a friend suggestion" +msgstr "Vous avez reçu une suggestion d'ami" + +#: ../../mod/settings.php:1133 +msgid "You are tagged in a post" +msgstr "Vous avez été repéré dans une publication" + +#: ../../mod/settings.php:1134 +msgid "You are poked/prodded/etc. in a post" +msgstr "Vous avez été sollicité dans une publication" + +#: ../../mod/settings.php:1137 +msgid "Advanced Account/Page Type Settings" +msgstr "Paramètres avancés de compte/page" + +#: ../../mod/settings.php:1138 +msgid "Change the behaviour of this account for special situations" +msgstr "Modifier le comportement de ce compte dans certaines situations" + +#: ../../mod/share.php:44 +msgid "link" +msgstr "lien" + +#: ../../mod/crepair.php:102 +msgid "Contact settings applied." +msgstr "Réglages du contact appliqués." + +#: ../../mod/crepair.php:104 +msgid "Contact update failed." +msgstr "Impossible d'appliquer les réglages." + +#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118 +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "Contact introuvable." + +#: ../../mod/crepair.php:135 +msgid "Repair Contact Settings" +msgstr "Réglages du réparateur de contacts" + +#: ../../mod/crepair.php:137 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact." + +#: ../../mod/crepair.php:138 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "une photo" + +#: ../../mod/crepair.php:144 +msgid "Return to contact editor" +msgstr "Retour à l'éditeur de contact" + +#: ../../mod/crepair.php:149 +msgid "Account Nickname" +msgstr "Pseudo du compte" + +#: ../../mod/crepair.php:150 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@NomDuTag - prend le pas sur Nom/Pseudo" + +#: ../../mod/crepair.php:151 +msgid "Account URL" +msgstr "URL du compte" + +#: ../../mod/crepair.php:152 +msgid "Friend Request URL" +msgstr "Echec du téléversement de l'image." + +#: ../../mod/crepair.php:153 +msgid "Friend Confirm URL" +msgstr "Accès public refusé." + +#: ../../mod/crepair.php:154 +msgid "Notification Endpoint URL" +msgstr "Aucune photo sélectionnée" + +#: ../../mod/crepair.php:155 +msgid "Poll/Feed URL" +msgstr "Téléverser des photos" + +#: ../../mod/crepair.php:156 +msgid "New photo from this URL" +msgstr "Nouvelle photo depuis cette URL" + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Pas de délégataire potentiel." + +#: ../../mod/delegate.php:123 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue." + +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Gestionnaires existants" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Délégataires existants" + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Délégataires potentiels" + +#: ../../mod/delegate.php:130 ../../mod/tagrm.php:93 +msgid "Remove" +msgstr "Utiliser comme photo de profil" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Ajouter" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Aucune entrée." + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Solliciter" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "solliciter (poke/...) quelqu'un" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Destinataire" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Choisissez ce que vous voulez faire au destinataire" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Rendez ce message privé" + +#: ../../mod/dfrn_confirm.php:119 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé." + +#: ../../mod/dfrn_confirm.php:237 +msgid "Response from remote site was not understood." +msgstr "Réponse du site distant incomprise." + +#: ../../mod/dfrn_confirm.php:246 +msgid "Unexpected response from remote site: " +msgstr "Réponse inattendue du site distant: " + +#: ../../mod/dfrn_confirm.php:254 +msgid "Confirmation completed successfully." +msgstr "Confirmation achevée avec succès." + +#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 +#: ../../mod/dfrn_confirm.php:277 +msgid "Remote site reported: " +msgstr "Alerte du site distant: " + +#: ../../mod/dfrn_confirm.php:268 +msgid "Temporary failure. Please wait and try again." +msgstr "Échec temporaire. Merci de recommencer ultérieurement." + +#: ../../mod/dfrn_confirm.php:275 +msgid "Introduction failed or was revoked." +msgstr "Introduction échouée ou annulée." + +#: ../../mod/dfrn_confirm.php:420 +msgid "Unable to set contact photo." +msgstr "Impossible de définir la photo du contact." + +#: ../../mod/dfrn_confirm.php:562 +#, php-format +msgid "No user record found for '%s' " +msgstr "Pas d'utilisateur trouvé pour '%s' " + +#: ../../mod/dfrn_confirm.php:572 +msgid "Our site encryption key is apparently messed up." +msgstr "Notre clé de chiffrement de site est apparemment corrompue." + +#: ../../mod/dfrn_confirm.php:583 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "URL de site absente ou indéchiffrable." + +#: ../../mod/dfrn_confirm.php:604 +msgid "Contact record was not found for you on our site." +msgstr "Pas d'entrée pour ce contact sur notre site." + +#: ../../mod/dfrn_confirm.php:618 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s." + +#: ../../mod/dfrn_confirm.php:638 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez." + +#: ../../mod/dfrn_confirm.php:649 +msgid "Unable to set your contact credentials on our system." +msgstr "Impossible de vous définir des permissions sur notre système." + +#: ../../mod/dfrn_confirm.php:716 +msgid "Unable to update your contact profile details on our system" +msgstr "Impossible de mettre les détails de votre profil à jour sur notre système" + +#: ../../mod/dfrn_confirm.php:751 +#, php-format +msgid "Connection accepted at %s" +msgstr "Connexion acceptée chez %s" + +#: ../../mod/dfrn_confirm.php:800 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s a rejoint %2$s" + +#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "" + +#: ../../mod/dfrn_request.php:93 +msgid "This introduction has already been accepted." +msgstr "Cette introduction a déjà été acceptée." + +#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 +msgid "Profile location is not valid or does not contain profile information." +msgstr "L'emplacement du profil est invalide ou ne contient pas de profil valide." + +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable." + +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520 +msgid "Warning: profile location has no profile photo." +msgstr "Attention: l'emplacement du profil n'a pas de photo de profil." + +#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d paramètre requis n'a pas été trouvé à l'endroit indiqué" +msgstr[1] "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué" + +#: ../../mod/dfrn_request.php:170 +msgid "Introduction complete." +msgstr "Phase d'introduction achevée." + +#: ../../mod/dfrn_request.php:209 +msgid "Unrecoverable protocol error." +msgstr "Erreur de protocole non-récupérable." + +#: ../../mod/dfrn_request.php:237 +msgid "Profile unavailable." +msgstr "Profil indisponible." + +#: ../../mod/dfrn_request.php:262 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s a reçu trop de demandes d'introduction aujourd'hui." + +#: ../../mod/dfrn_request.php:263 +msgid "Spam protection measures have been invoked." +msgstr "Des mesures de protection contre le spam ont été déclenchées." + +#: ../../mod/dfrn_request.php:264 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer." + +#: ../../mod/dfrn_request.php:326 +msgid "Invalid locator" +msgstr "Localisateur invalide" + +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." +msgstr "Adresse courriel invalide." + +#: ../../mod/dfrn_request.php:362 +msgid "This account has not been configured for email. Request failed." +msgstr "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée." + +#: ../../mod/dfrn_request.php:458 +msgid "Unable to resolve your name at the provided location." +msgstr "Impossible de résoudre votre nom à l'emplacement fourni." + +#: ../../mod/dfrn_request.php:471 +msgid "You have already introduced yourself here." +msgstr "Vous vous êtes déjà présenté ici." + +#: ../../mod/dfrn_request.php:475 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Il semblerait que vous soyez déjà ami avec %s." + +#: ../../mod/dfrn_request.php:496 +msgid "Invalid profile URL." +msgstr "URL de profil invalide." + +#: ../../mod/dfrn_request.php:592 +msgid "Your introduction has been sent." +msgstr "Votre introduction a été envoyée." + +#: ../../mod/dfrn_request.php:645 +msgid "Please login to confirm introduction." +msgstr "Connectez-vous pour confirmer l'introduction." + +#: ../../mod/dfrn_request.php:659 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Identité incorrecte actuellement connectée. Merci de vous connecter à ce profil." + +#: ../../mod/dfrn_request.php:670 +msgid "Hide this contact" +msgstr "Cacher ce contact" + +#: ../../mod/dfrn_request.php:673 +#, php-format +msgid "Welcome home %s." +msgstr "Bienvenue chez vous, %s." + +#: ../../mod/dfrn_request.php:674 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Merci de confirmer votre demande d'introduction auprès de %s." + +#: ../../mod/dfrn_request.php:675 +msgid "Confirm" +msgstr "Confirmer" + +#: ../../mod/dfrn_request.php:811 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:" + +#: ../../mod/dfrn_request.php:827 +msgid "Connect as an email follower (Coming soon)" +msgstr "Connecter un utilisateur de courriel (bientôt)" + +#: ../../mod/dfrn_request.php:829 +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public" +" Friendica site and join us today." +msgstr "Si vous n'êtes pas encore membre du web social libre, suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui." + +#: ../../mod/dfrn_request.php:832 +msgid "Friend/Connection Request" +msgstr "Requête de relation/amitié" + +#: ../../mod/dfrn_request.php:833 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: ../../mod/dfrn_request.php:834 +msgid "Please answer the following:" +msgstr "Merci de répondre à ce qui suit:" + +#: ../../mod/dfrn_request.php:835 +#, php-format +msgid "Does %s know you?" +msgstr "Est-ce que %s vous connaît?" + +#: ../../mod/dfrn_request.php:838 +msgid "Add a personal note:" +msgstr "Ajouter une note personnelle:" + +#: ../../mod/dfrn_request.php:841 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: ../../mod/dfrn_request.php:843 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de recherche Diaspora." + +#: ../../mod/dfrn_request.php:844 +msgid "Your Identity Address:" +msgstr "Votre adresse d'identité:" + +#: ../../mod/dfrn_request.php:847 +msgid "Submit Request" +msgstr "Envoyer la requête" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518 +msgid "Global Directory" +msgstr "Annuaire global" + +#: ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "Trouver sur ce site" + +#: ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "Annuaire local" + +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "Genre: " + +#: ../../mod/directory.php:187 +msgid "No entries (some entries may be hidden)." +msgstr "Aucune entrée (certaines peuvent être cachées)." + +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "" + +#: ../../mod/suggest.php:72 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h." + +#: ../../mod/suggest.php:90 +msgid "Ignore/Hide" +msgstr "Ignorer/cacher" + +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Recherche de personnes" + +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "Aucune correspondance" + +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "" + +#: ../../mod/videos.php:226 ../../mod/photos.php:1025 +msgid "Access to this item is restricted." +msgstr "Accès restreint à cet élément." + +#: ../../mod/videos.php:308 ../../mod/photos.php:1784 +msgid "View Album" +msgstr "Voir l'album" + +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "" + +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "" + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Étiquette enlevée" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Enlever l'étiquette de l'élément" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Choisir une étiquette à enlever: " + +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Élément introuvable" + +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Éditer la publication" + +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "Vous devez donner un nom et un horaire de début à l'événement." + +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "l, F j" + +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "Editer l'événement" + +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "Créer un nouvel événement" + +#: ../../mod/events.php:372 +msgid "Previous" +msgstr "Précédent" + +#: ../../mod/events.php:373 ../../mod/install.php:207 +msgid "Next" +msgstr "Suivant" + +#: ../../mod/events.php:446 +msgid "hour:minute" +msgstr "heures:minutes" + +#: ../../mod/events.php:456 +msgid "Event details" +msgstr "Détails de l'événement" + +#: ../../mod/events.php:457 +#, php-format +msgid "Format is %s %s. Starting date and Title are required." +msgstr "Le format est %s %s. La date de début et le nom sont nécessaires." + +#: ../../mod/events.php:459 +msgid "Event Starts:" +msgstr "Début de l'événement:" + +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" +msgstr "Requis" + +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" +msgstr "Date/heure de fin inconnue ou sans objet" + +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "Fin de l'événement:" + +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "Ajuster à la zone horaire du visiteur" + +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "Description:" + +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "Titre :" + +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "Partager cet événement" + +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "Fichiers" + +#: ../../mod/uexport.php:72 +msgid "Export account" +msgstr "Exporter le compte" + +#: ../../mod/uexport.php:72 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur." + +#: ../../mod/uexport.php:73 +msgid "Export all" +msgstr "Tout exporter" + +#: ../../mod/uexport.php:73 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)." + +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- choisir -" + +#: ../../mod/uimport.php:64 +msgid "Import" +msgstr "Importer" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Migrer le compte" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "" + +#: ../../mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "" + +#: ../../mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "" + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "Fichier du compte" + +#: ../../mod/uimport.php:70 +msgid "" +"To export your accont, go to \"Settings->Export your porsonal data\" and " +"select \"Export account\"" +msgstr "" + +#: ../../mod/update_community.php:18 ../../mod/update_display.php:22 +#: ../../mod/update_network.php:22 ../../mod/update_notes.php:41 +#: ../../mod/update_profile.php:41 +msgid "[Embedded content - reload page to view]" +msgstr "[contenu incorporé - rechargez la page pour le voir]" + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Contact ajouté" + +#: ../../mod/friendica.php:55 +msgid "This is Friendica, version" +msgstr "Motorisé par Friendica version" + +#: ../../mod/friendica.php:56 +msgid "running at web location" +msgstr "hébergé sur" + +#: ../../mod/friendica.php:58 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Merci de vous rendre sur Friendica.com si vous souhaitez en savoir plus sur le projet Friendica." + +#: ../../mod/friendica.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Pour les rapports de bugs: rendez vous sur" + +#: ../../mod/friendica.php:61 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com" + +#: ../../mod/friendica.php:75 +msgid "Installed plugins/addons/apps:" +msgstr "Extensions/applications installées:" + +#: ../../mod/friendica.php:88 +msgid "No installed plugins/addons/apps" +msgstr "Aucune extension/greffon/application installée" + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Suggestion d'amitié/contact envoyée." + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Suggérer des amis/contacts" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Suggérer un ami/contact pour %s" + +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Groupe créé." + +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Impossible de créer le groupe." + +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." +msgstr "Groupe introuvable." + +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "Groupe renommé." + +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Créez un groupe de contacts/amis." + +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "Nom du groupe: " + +#: ../../mod/group.php:113 +msgid "Group removed." +msgstr "Groupe enlevé." + +#: ../../mod/group.php:115 +msgid "Unable to remove group." +msgstr "Impossible d'enlever le groupe." + +#: ../../mod/group.php:179 +msgid "Group Editor" +msgstr "Éditeur de groupe" + +#: ../../mod/group.php:192 +msgid "Members" +msgstr "Membres" + +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Aucun profil" + +#: ../../mod/help.php:79 +msgid "Help:" +msgstr "Aide:" + +#: ../../mod/help.php:90 ../../index.php:231 +msgid "Not Found" +msgstr "Non trouvé" + +#: ../../mod/help.php:93 ../../index.php:234 +msgid "Page not found." +msgstr "Page introuvable." + +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "Aucun contact." + +#: ../../mod/home.php:34 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenue sur %s" + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accès refusé." + +#: ../../mod/wall_attach.php:69 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "La taille du fichier dépasse la limite de %d" + +#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 +msgid "File upload failed." +msgstr "Le téléversement a échoué." + +#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "L'image dépasse la taille limite de %d" + +#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801 +#: ../../mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Impossible de traiter l'image." + +#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828 +#: ../../mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Le téléversement de l'image a échoué." + +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "" + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Adresse de courriel invalide." + +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Rejoignez-nous sur Friendica" + +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "" + +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : L'envoi du message a échoué." + +#: ../../mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d message envoyé." +msgstr[1] "%d messages envoyés." + +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Vous n'avez plus d'invitations disponibles" + +#: ../../mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux." + +#: ../../mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public." + +#: ../../mod/invite.php:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre." + +#: ../../mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres." + +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "Envoyer des invitations" + +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Entrez les adresses email, une par ligne:" + +#: ../../mod/invite.php:134 ../../mod/wallmessage.php:151 +#: ../../mod/message.php:329 ../../mod/message.php:558 +msgid "Your message:" +msgstr "Votre message:" + +#: ../../mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social." + +#: ../../mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Vous devrez fournir ce code d'invitation: $invite_code" + +#: ../../mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur:" + +#: ../../mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com" + +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message." + +#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 +msgid "No recipient selected." +msgstr "Pas de destinataire sélectionné." + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Impossible de vérifier votre localisation." + +#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 +msgid "Message could not be sent." +msgstr "Impossible d'envoyer le message." + +#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 +msgid "Message collection failure." +msgstr "Récupération des messages infructueuse." + +#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 +msgid "Message sent." +msgstr "Message envoyé." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Pas de destinataire." + +#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 +msgid "Send Private Message" +msgstr "Envoyer un message privé" + +#: ../../mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus." + +#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 +#: ../../mod/message.php:553 +msgid "To:" +msgstr "À:" + +#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 +#: ../../mod/message.php:555 +msgid "Subject:" +msgstr "Sujet:" + +#: ../../mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Conversion temporelle" + +#: ../../mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire." + +#: ../../mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "Temps UTC : %s" + +#: ../../mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Zone de temps courante : %s" + +#: ../../mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Temps local converti : %s" + +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Sélectionner votre zone :" + +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informations de confidentialité indisponibles." + +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Visible par:" + +#: ../../mod/lostpass.php:17 +msgid "No valid account found." +msgstr "Impossible de trouver un compte valide." + +#: ../../mod/lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel." + +#: ../../mod/lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Requête de réinitialisation de mot de passe à %s" + +#: ../../mod/lostpass.php:66 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué." + +#: ../../mod/lostpass.php:84 ../../boot.php:1151 +msgid "Password Reset" +msgstr "Réinitialiser le mot de passe" + +#: ../../mod/lostpass.php:85 +msgid "Your password has been reset as requested." +msgstr "Votre mot de passe a bien été réinitialisé." + +#: ../../mod/lostpass.php:86 +msgid "Your new password is" +msgstr "Votre nouveau mot de passe est " + +#: ../../mod/lostpass.php:87 +msgid "Save or copy your new password - and then" +msgstr "Sauvez ou copiez ce nouveau mot de passe - puis" + +#: ../../mod/lostpass.php:88 +msgid "click here to login" +msgstr "cliquez ici pour vous connecter" + +#: ../../mod/lostpass.php:89 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Votre mot de passe peut être changé depuis la page <em>Réglages</em>, une fois que vous serez connecté." + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has been changed at %s" +msgstr "" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Mot de passe oublié?" + +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel." + +#: ../../mod/lostpass.php:124 +msgid "Nickname or Email: " +msgstr "Pseudo ou Courriel: " + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Réinitialiser" + +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "" + +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Gérer les identités et/ou les pages" + +#: ../../mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer." + +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Choisir une identité à gérer: " + +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Correpondance de profils" + +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut." + +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "s'intéresse à:" + +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Impossible de localiser les informations du contact." + +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Voulez-vous vraiment supprimer ce message ?" + +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Message supprimé." + +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Conversation supprimée." + +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Aucun message." + +#: ../../mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "Émetteur inconnu - %s" + +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Vous et %s" + +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "%s et vous" + +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Effacer conversation" + +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: ../../mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d message" +msgstr[1] "%d messages" + +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Message indisponible." + +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Effacer message" + +#: ../../mod/message.php:548 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur." + +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Répondre" + +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Humeur" + +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Spécifiez votre humeur du moment, et informez vos amis" + +#: ../../mod/network.php:181 +msgid "Search Results For:" +msgstr "Résultats pour:" + +#: ../../mod/network.php:397 +msgid "Commented Order" +msgstr "Tri par commentaires" + +#: ../../mod/network.php:400 +msgid "Sort by Comment Date" +msgstr "Trier par date de commentaire" + +#: ../../mod/network.php:403 +msgid "Posted Order" +msgstr "Tri par publications" + +#: ../../mod/network.php:406 +msgid "Sort by Post Date" +msgstr "Trier par date de publication" + +#: ../../mod/network.php:444 ../../mod/notifications.php:88 +msgid "Personal" +msgstr "Personnel" + +#: ../../mod/network.php:447 +msgid "Posts that mention or involve you" +msgstr "Publications qui vous concernent" + +#: ../../mod/network.php:453 +msgid "New" +msgstr "Nouveau" + +#: ../../mod/network.php:456 +msgid "Activity Stream - by date" +msgstr "Flux d'activités - par date" + +#: ../../mod/network.php:462 +msgid "Shared Links" +msgstr "Liens partagés" + +#: ../../mod/network.php:465 +msgid "Interesting Links" +msgstr "Liens intéressants" + +#: ../../mod/network.php:471 +msgid "Starred" +msgstr "Mis en avant" + +#: ../../mod/network.php:474 +msgid "Favourite Posts" +msgstr "Publications favorites" + +#: ../../mod/network.php:546 +#, php-format +msgid "Warning: This group contains %s member from an insecure network." +msgid_plural "" +"Warning: This group contains %s members from an insecure network." +msgstr[0] "Attention: Ce groupe contient %s membre d'un réseau non-sûr." +msgstr[1] "Attention: Ce groupe contient %s membres d'un réseau non-sûr." + +#: ../../mod/network.php:549 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée." + +#: ../../mod/network.php:596 ../../mod/content.php:119 +msgid "No such group" +msgstr "Groupe inexistant" + +#: ../../mod/network.php:607 ../../mod/content.php:130 +msgid "Group is empty" +msgstr "Groupe vide" + +#: ../../mod/network.php:611 ../../mod/content.php:134 +msgid "Group: " +msgstr "Groupe: " + +#: ../../mod/network.php:621 +msgid "Contact: " +msgstr "Contact: " + +#: ../../mod/network.php:623 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée." + +#: ../../mod/network.php:628 +msgid "Invalid contact." +msgstr "Contact invalide." + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Identifiant de demande invalide." + +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "Rejeter" + +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "Système" + +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "Voir les demandes ignorées" + +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "Cacher les demandes ignorées" + +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " +msgstr "Type de notification: " + +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "Suggestion d'amitié/contact" + +#: ../../mod/notifications.php:152 +#, php-format +msgid "suggested by %s" +msgstr "suggéré(e) par %s" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" +msgstr "Poster concernant les nouvelles amitiés" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" +msgstr "si possible" + +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "Prétend que vous le connaissez: " + +#: ../../mod/notifications.php:181 +msgid "yes" +msgstr "oui" + +#: ../../mod/notifications.php:181 +msgid "no" +msgstr "non" + +#: ../../mod/notifications.php:188 +msgid "Approve as: " +msgstr "Approuver en tant que: " + +#: ../../mod/notifications.php:189 +msgid "Friend" +msgstr "Ami" + +#: ../../mod/notifications.php:190 +msgid "Sharer" +msgstr "Initiateur du partage" + +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "Fan/Admirateur" + +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "Demande de connexion/relation" + +#: ../../mod/notifications.php:196 +msgid "New Follower" +msgstr "Nouvel abonné" + +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "Aucune demande d'introduction." + +#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 +#: ../../mod/notifications.php:469 +#, php-format +msgid "%s liked %s's post" +msgstr "%s a aimé la notice de %s" + +#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 +#: ../../mod/notifications.php:478 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s n'a pas aimé la notice de %s" + +#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 +#: ../../mod/notifications.php:492 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s est désormais ami(e) avec %s" + +#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 +#, php-format +msgid "%s created a new post" +msgstr "%s a publié une notice" + +#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 +#: ../../mod/notifications.php:501 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s a commenté une notice de %s" + +#: ../../mod/notifications.php:302 +msgid "No more network notifications." +msgstr "Aucune notification du réseau." + +#: ../../mod/notifications.php:306 +msgid "Network Notifications" +msgstr "Notifications du réseau" + +#: ../../mod/notifications.php:332 ../../mod/notify.php:61 +msgid "No more system notifications." +msgstr "Pas plus de notifications système." + +#: ../../mod/notifications.php:336 ../../mod/notify.php:65 +msgid "System Notifications" +msgstr "Notifications du système" + +#: ../../mod/notifications.php:427 +msgid "No more personal notifications." +msgstr "Aucun notification personnelle." + +#: ../../mod/notifications.php:431 +msgid "Personal Notifications" +msgstr "Notifications personnelles" + +#: ../../mod/notifications.php:508 +msgid "No more home notifications." +msgstr "Aucune notification de la page d'accueil." + +#: ../../mod/notifications.php:512 +msgid "Home Notifications" +msgstr "Notifications de page d'accueil" + +#: ../../mod/photos.php:51 ../../boot.php:1957 +msgid "Photo Albums" +msgstr "Albums photo" + +#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1058 +#: ../../mod/photos.php:1183 ../../mod/photos.php:1206 +#: ../../mod/photos.php:1736 ../../mod/photos.php:1748 +#: ../../view/theme/diabook/theme.php:492 +msgid "Contact Photos" +msgstr "Photos du contact" + +#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795 +msgid "Upload New Photos" +msgstr "Téléverser de nouvelles photos" + +#: ../../mod/photos.php:143 +msgid "Contact information unavailable" +msgstr "Informations de contact indisponibles" + +#: ../../mod/photos.php:164 +msgid "Album not found." +msgstr "Album introuvable." + +#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200 +msgid "Delete Album" +msgstr "Effacer l'album" + +#: ../../mod/photos.php:197 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?" + +#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502 +msgid "Delete Photo" +msgstr "Effacer la photo" + +#: ../../mod/photos.php:285 +msgid "Do you really want to delete this photo?" +msgstr "Voulez-vous vraiment supprimer cette photo ?" + +#: ../../mod/photos.php:656 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "" + +#: ../../mod/photos.php:656 +msgid "a photo" +msgstr "une photo" + +#: ../../mod/photos.php:761 +msgid "Image exceeds size limit of " +msgstr "L'image dépasse la taille maximale de " + +#: ../../mod/photos.php:769 +msgid "Image file is empty." +msgstr "Fichier image vide." + +#: ../../mod/photos.php:924 +msgid "No photos selected" +msgstr "Aucune photo sélectionnée" + +#: ../../mod/photos.php:1088 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos." + +#: ../../mod/photos.php:1123 +msgid "Upload Photos" +msgstr "Téléverser des photos" + +#: ../../mod/photos.php:1127 ../../mod/photos.php:1195 +msgid "New album name: " +msgstr "Nom du nouvel album: " + +#: ../../mod/photos.php:1128 +msgid "or existing album name: " +msgstr "ou nom d'un album existant: " + +#: ../../mod/photos.php:1129 +msgid "Do not show a status post for this upload" +msgstr "Ne pas publier de notice pour cet envoi" + +#: ../../mod/photos.php:1131 ../../mod/photos.php:1497 +msgid "Permissions" +msgstr "Permissions" + +#: ../../mod/photos.php:1142 +msgid "Private Photo" +msgstr "Photo privée" + +#: ../../mod/photos.php:1143 +msgid "Public Photo" +msgstr "" + +#: ../../mod/photos.php:1210 +msgid "Edit Album" +msgstr "Éditer l'album" + +#: ../../mod/photos.php:1216 +msgid "Show Newest First" +msgstr "Plus récent d'abord" + +#: ../../mod/photos.php:1218 +msgid "Show Oldest First" +msgstr "Plus ancien d'abord" + +#: ../../mod/photos.php:1251 ../../mod/photos.php:1778 +msgid "View Photo" +msgstr "Voir la photo" + +#: ../../mod/photos.php:1286 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Interdit. L'accès à cet élément peut avoir été restreint." + +#: ../../mod/photos.php:1288 +msgid "Photo not available" +msgstr "Photo indisponible" + +#: ../../mod/photos.php:1344 +msgid "View photo" +msgstr "Voir photo" + +#: ../../mod/photos.php:1344 +msgid "Edit photo" +msgstr "Éditer la photo" + +#: ../../mod/photos.php:1345 +msgid "Use as profile photo" +msgstr "Utiliser comme photo de profil" + +#: ../../mod/photos.php:1351 ../../mod/content.php:643 +#: ../../object/Item.php:113 +msgid "Private Message" +msgstr "Message privé" + +#: ../../mod/photos.php:1370 +msgid "View Full Size" +msgstr "Voir en taille réelle" + +#: ../../mod/photos.php:1444 +msgid "Tags: " +msgstr "Étiquettes: " + +#: ../../mod/photos.php:1447 +msgid "[Remove any tag]" +msgstr "[Retirer toutes les étiquettes]" + +#: ../../mod/photos.php:1487 +msgid "Rotate CW (right)" +msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" + +#: ../../mod/photos.php:1488 +msgid "Rotate CCW (left)" +msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" + +#: ../../mod/photos.php:1490 +msgid "New album name" +msgstr "Nom du nouvel album" + +#: ../../mod/photos.php:1493 +msgid "Caption" +msgstr "Titre" + +#: ../../mod/photos.php:1495 +msgid "Add a Tag" +msgstr "Ajouter une étiquette" + +#: ../../mod/photos.php:1499 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" + +#: ../../mod/photos.php:1508 +msgid "Private photo" +msgstr "" + +#: ../../mod/photos.php:1509 +msgid "Public photo" +msgstr "" + +#: ../../mod/photos.php:1529 ../../mod/content.php:707 +#: ../../object/Item.php:232 +msgid "I like this (toggle)" +msgstr "J'aime (bascule)" + +#: ../../mod/photos.php:1530 ../../mod/content.php:708 +#: ../../object/Item.php:233 +msgid "I don't like this (toggle)" +msgstr "Je n'aime pas (bascule)" + +#: ../../mod/photos.php:1549 ../../mod/photos.php:1593 +#: ../../mod/photos.php:1676 ../../mod/content.php:730 +#: ../../object/Item.php:650 +msgid "This is you" +msgstr "C'est vous" + +#: ../../mod/photos.php:1551 ../../mod/photos.php:1595 +#: ../../mod/photos.php:1678 ../../mod/content.php:732 +#: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:670 +msgid "Comment" +msgstr "Commenter" + +#: ../../mod/photos.php:1793 +msgid "Recent Photos" +msgstr "Photos récentes" + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Bienvenue sur Friendica" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Checklist du nouvel utilisateur" + +#: ../../mod/newmember.php:12 +msgid "" +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." +msgstr "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement." + +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "Bien démarrer" + +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Friendica pas-à-pas" + +#: ../../mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "Sur votre page d'accueil, dans Conseils aux nouveaux venus - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre." + +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Éditer vos Réglages" + +#: ../../mod/newmember.php:26 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "Sur la page des Réglages - changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre." + +#: ../../mod/newmember.php:28 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver." + +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "Téléverser une photo de profil" + +#: ../../mod/newmember.php:36 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis." + +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Éditer votre Profil" + +#: ../../mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Éditez votre profil par défaut à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus." + +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Mots-clés du profil" + +#: ../../mod/newmember.php:40 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent." + +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "Connexions" + +#: ../../mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook." + +#: ../../mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "Si ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre." + +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "Importer courriels" + +#: ../../mod/newmember.php:56 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception." + +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Consulter vos Contacts" + +#: ../../mod/newmember.php:58 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire Ajouter un nouveau contact." + +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Consulter l'Annuaire de votre Site" + +#: ../../mod/newmember.php:60 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien Relier ou Suivre sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité." + +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "Trouver de nouvelles personnes" + +#: ../../mod/newmember.php:62 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures." + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Grouper vos contacts" + +#: ../../mod/newmember.php:70 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau." + +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Pourquoi mes éléments ne sont pas publics?" + +#: ../../mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "Friendica respecte votre vie privée. Par défaut, tous vos éléments seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus." + +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "Obtenir de l'aide" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Aller à la section Aide" + +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Nos pages d'aide peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources." + +#: ../../mod/profile.php:21 ../../boot.php:1325 +msgid "Requested profile is not available." +msgstr "Le profil demandé n'est pas disponible." + +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Conseils aux nouveaux venus" + +#: ../../mod/install.php:117 +msgid "Friendica Communications Server - Setup" +msgstr "" + +#: ../../mod/install.php:123 +msgid "Could not connect to database." +msgstr "Impossible de se connecter à la base." + +#: ../../mod/install.php:127 +msgid "Could not create table." +msgstr "Impossible de créer une table." + +#: ../../mod/install.php:133 +msgid "Your Friendica site database has been installed." +msgstr "La base de données de votre site Friendica a bien été installée." + +#: ../../mod/install.php:138 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql." + +#: ../../mod/install.php:139 ../../mod/install.php:206 +#: ../../mod/install.php:521 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Référez-vous au fichier \"INSTALL.txt\"." + +#: ../../mod/install.php:203 +msgid "System check" +msgstr "Vérifications système" + +#: ../../mod/install.php:208 +msgid "Check again" +msgstr "Vérifier à nouveau" + +#: ../../mod/install.php:227 +msgid "Database connection" +msgstr "Connexion à la base de données" + +#: ../../mod/install.php:228 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données." + +#: ../../mod/install.php:229 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages." + +#: ../../mod/install.php:230 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer." + +#: ../../mod/install.php:234 +msgid "Database Server Name" +msgstr "Serveur de base de données" + +#: ../../mod/install.php:235 +msgid "Database Login Name" +msgstr "Nom d'utilisateur de la base" + +#: ../../mod/install.php:236 +msgid "Database Login Password" +msgstr "Mot de passe de la base" + +#: ../../mod/install.php:237 +msgid "Database Name" +msgstr "Nom de la base" + +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "Site administrator email address" +msgstr "Adresse électronique de l'administrateur du site" + +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration." + +#: ../../mod/install.php:242 ../../mod/install.php:280 +msgid "Please select a default timezone for your website" +msgstr "Sélectionner un fuseau horaire par défaut pour votre site" + +#: ../../mod/install.php:267 +msgid "Site settings" +msgstr "Réglages du site" + +#: ../../mod/install.php:321 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web." + +#: ../../mod/install.php:322 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +msgstr "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir 'Activating scheduled tasks'" + +#: ../../mod/install.php:326 +msgid "PHP executable path" +msgstr "Chemin vers l'exécutable de PHP" + +#: ../../mod/install.php:326 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation." + +#: ../../mod/install.php:331 +msgid "Command line PHP" +msgstr "Version \"ligne de commande\" de PHP" + +#: ../../mod/install.php:340 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "" + +#: ../../mod/install.php:341 +msgid "Found PHP version: " +msgstr "" + +#: ../../mod/install.php:343 +msgid "PHP cli binary" +msgstr "" + +#: ../../mod/install.php:354 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé." + +#: ../../mod/install.php:355 +msgid "This is required for message delivery to work." +msgstr "Ceci est requis pour que la livraison des messages fonctionne." + +#: ../../mod/install.php:357 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../mod/install.php:378 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement" + +#: ../../mod/install.php:379 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: ../../mod/install.php:381 +msgid "Generate encryption keys" +msgstr "Générer les clés de chiffrement" + +#: ../../mod/install.php:388 +msgid "libCurl PHP module" +msgstr "Module libCurl de PHP" + +#: ../../mod/install.php:389 +msgid "GD graphics PHP module" +msgstr "Module GD (graphiques) de PHP" + +#: ../../mod/install.php:390 +msgid "OpenSSL PHP module" +msgstr "Module OpenSSL de PHP" + +#: ../../mod/install.php:391 +msgid "mysqli PHP module" +msgstr "Module Mysqli de PHP" + +#: ../../mod/install.php:392 +msgid "mb_string PHP module" +msgstr "Module mb_string de PHP" + +#: ../../mod/install.php:397 ../../mod/install.php:399 +msgid "Apache mod_rewrite module" +msgstr "Module mod_rewrite Apache" + +#: ../../mod/install.php:397 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé." + +#: ../../mod/install.php:405 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Erreur: Le module PHP \"libCURL\" est requis mais pas installé." + +#: ../../mod/install.php:409 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé." + +#: ../../mod/install.php:413 +msgid "Error: openssl PHP module required but not installed." +msgstr "Erreur: Le module PHP \"openssl\" est requis mais pas installé." + +#: ../../mod/install.php:417 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Erreur: Le module PHP \"mysqli\" est requis mais pas installé." + +#: ../../mod/install.php:421 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Erreur: le module PHP mb_string est requis mais pas installé." + +#: ../../mod/install.php:438 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable." + +#: ../../mod/install.php:439 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez." + +#: ../../mod/install.php:440 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica." + +#: ../../mod/install.php:441 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"." + +#: ../../mod/install.php:444 +msgid ".htconfig.php is writable" +msgstr "Fichier .htconfig.php accessible en écriture" + +#: ../../mod/install.php:454 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "" + +#: ../../mod/install.php:455 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "" + +#: ../../mod/install.php:456 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "" + +#: ../../mod/install.php:457 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "" + +#: ../../mod/install.php:460 +msgid "view/smarty3 is writable" +msgstr "" + +#: ../../mod/install.php:472 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur." + +#: ../../mod/install.php:474 +msgid "Url rewrite is working" +msgstr "La réécriture d'URL fonctionne." + +#: ../../mod/install.php:484 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement." + +#: ../../mod/install.php:508 +msgid "Errors encountered creating database tables." +msgstr "Des erreurs ont été signalées lors de la création des tables." + +#: ../../mod/install.php:519 +msgid "

What next

" +msgstr "

Ensuite

" + +#: ../../mod/install.php:520 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'." + +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Publication réussie." + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Erreur de protocole OpenID. Pas d'ID en retour." + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site." + +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Image envoyée, mais impossible de la retailler." + +#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 +#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Réduction de la taille de l'image [%s] échouée." + +#: ../../mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement." + +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Impossible de traiter l'image" + +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Fichier à téléverser:" + +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Choisir un profil:" + +#: ../../mod/profile_photo.php:245 +msgid "Upload" +msgstr "Téléverser" + +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "ignorer cette étape" + +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "choisissez une photo depuis vos albums" + +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "(Re)cadrer l'image" + +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ajustez le cadre de l'image pour une visualisation optimale." + +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Édition terminée" + +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Image téléversée avec succès." + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Indisponible." + +#: ../../mod/content.php:626 ../../object/Item.php:362 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commentaire" +msgstr[1] "%d commentaires" + +#: ../../mod/content.php:707 ../../object/Item.php:232 +msgid "like" +msgstr "aime" + +#: ../../mod/content.php:708 ../../object/Item.php:233 +msgid "dislike" +msgstr "n'aime pas" + +#: ../../mod/content.php:710 ../../object/Item.php:235 +msgid "Share this" +msgstr "Partager" + +#: ../../mod/content.php:710 ../../object/Item.php:235 +msgid "share" +msgstr "partager" + +#: ../../mod/content.php:734 ../../object/Item.php:654 +msgid "Bold" +msgstr "Gras" + +#: ../../mod/content.php:735 ../../object/Item.php:655 +msgid "Italic" +msgstr "Italique" + +#: ../../mod/content.php:736 ../../object/Item.php:656 +msgid "Underline" +msgstr "Souligné" + +#: ../../mod/content.php:737 ../../object/Item.php:657 +msgid "Quote" +msgstr "Citation" + +#: ../../mod/content.php:738 ../../object/Item.php:658 +msgid "Code" +msgstr "Code" + +#: ../../mod/content.php:739 ../../object/Item.php:659 +msgid "Image" +msgstr "Image" + +#: ../../mod/content.php:740 ../../object/Item.php:660 +msgid "Link" +msgstr "Lien" + +#: ../../mod/content.php:741 ../../object/Item.php:661 +msgid "Video" +msgstr "Vidéo" + +#: ../../mod/content.php:776 ../../object/Item.php:211 +msgid "add star" +msgstr "mett en avant" + +#: ../../mod/content.php:777 ../../object/Item.php:212 +msgid "remove star" +msgstr "ne plus mettre en avant" + +#: ../../mod/content.php:778 ../../object/Item.php:213 +msgid "toggle star status" +msgstr "mettre en avant" + +#: ../../mod/content.php:781 ../../object/Item.php:216 +msgid "starred" +msgstr "mis en avant" + +#: ../../mod/content.php:782 ../../object/Item.php:221 +msgid "add tag" +msgstr "ajouter un tag" + +#: ../../mod/content.php:786 ../../object/Item.php:130 +msgid "save to folder" +msgstr "sauver vers dossier" + +#: ../../mod/content.php:877 ../../object/Item.php:308 +msgid "to" +msgstr "à" + +#: ../../mod/content.php:878 ../../object/Item.php:310 +msgid "Wall-to-Wall" +msgstr "Inter-mur" + +#: ../../mod/content.php:879 ../../object/Item.php:311 +msgid "via Wall-To-Wall:" +msgstr "en Inter-mur:" + +#: ../../object/Item.php:92 +msgid "This entry was edited" +msgstr "" + +#: ../../object/Item.php:309 +msgid "via" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/diabook/config.php:154 +#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 +msgid "Theme settings" +msgstr "Réglages du thème graphique" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)" + +#: ../../view/theme/cleanzero/config.php:84 +#: ../../view/theme/diabook/config.php:155 +#: ../../view/theme/dispy/config.php:73 +msgid "Set font-size for posts and comments" +msgstr "Réglez 'font-size' (taille de police) pour publications et commentaires" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Largeur du thème" + +#: ../../view/theme/cleanzero/config.php:86 +#: ../../view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Palette de couleurs" + +#: ../../view/theme/diabook/config.php:156 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Réglez 'line-height' (hauteur de police) pour publications et commentaires" + +#: ../../view/theme/diabook/config.php:157 +msgid "Set resolution for middle column" +msgstr "Réglez la résolution de la colonne centrale" + +#: ../../view/theme/diabook/config.php:158 +msgid "Set color scheme" +msgstr "Choisir le schéma de couleurs" + +#: ../../view/theme/diabook/config.php:159 +#: ../../view/theme/diabook/theme.php:609 +msgid "Set twitter search term" +msgstr "Rechercher un terme twitter" + +#: ../../view/theme/diabook/config.php:160 +msgid "Set zoomfactor for Earth Layer" +msgstr "Niveau de zoom" + +#: ../../view/theme/diabook/config.php:161 +#: ../../view/theme/diabook/theme.php:578 +msgid "Set longitude (X) for Earth Layers" +msgstr "Régler la longitude (X) pour la géolocalisation" + +#: ../../view/theme/diabook/config.php:162 +#: ../../view/theme/diabook/theme.php:579 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Régler la latitude (Y) pour la géolocalisation" + +#: ../../view/theme/diabook/config.php:163 +#: ../../view/theme/diabook/theme.php:94 +#: ../../view/theme/diabook/theme.php:537 +#: ../../view/theme/diabook/theme.php:632 +msgid "Community Pages" +msgstr "Pages de Communauté" + +#: ../../view/theme/diabook/config.php:164 +#: ../../view/theme/diabook/theme.php:572 +#: ../../view/theme/diabook/theme.php:633 +msgid "Earth Layers" +msgstr "Géolocalisation" + +#: ../../view/theme/diabook/config.php:165 +#: ../../view/theme/diabook/theme.php:384 +#: ../../view/theme/diabook/theme.php:634 +msgid "Community Profiles" +msgstr "Profils communautaires" + +#: ../../view/theme/diabook/config.php:166 +#: ../../view/theme/diabook/theme.php:592 +#: ../../view/theme/diabook/theme.php:635 +msgid "Help or @NewHere ?" +msgstr "Aide ou @NewHere?" + +#: ../../view/theme/diabook/config.php:167 +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:636 +msgid "Connect Services" +msgstr "Connecter des services" + +#: ../../view/theme/diabook/config.php:168 +#: ../../view/theme/diabook/theme.php:516 +#: ../../view/theme/diabook/theme.php:637 +msgid "Find Friends" +msgstr "Trouver des amis" + +#: ../../view/theme/diabook/config.php:169 +msgid "Last tweets" +msgstr "Derniers tweets" + +#: ../../view/theme/diabook/config.php:170 +#: ../../view/theme/diabook/theme.php:405 +#: ../../view/theme/diabook/theme.php:639 +msgid "Last users" +msgstr "Derniers utilisateurs" + +#: ../../view/theme/diabook/config.php:171 +#: ../../view/theme/diabook/theme.php:479 +#: ../../view/theme/diabook/theme.php:640 +msgid "Last photos" +msgstr "Dernières photos" + +#: ../../view/theme/diabook/config.php:172 +#: ../../view/theme/diabook/theme.php:434 +#: ../../view/theme/diabook/theme.php:641 +msgid "Last likes" +msgstr "Dernièrement aimé" + +#: ../../view/theme/diabook/theme.php:89 +msgid "Your contacts" +msgstr "Vos contacts" + +#: ../../view/theme/diabook/theme.php:517 +msgid "Local Directory" +msgstr "Annuaire local" + +#: ../../view/theme/diabook/theme.php:577 +msgid "Set zoomfactor for Earth Layers" +msgstr "Régler le niveau de zoom pour la géolocalisation" + +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:638 +msgid "Last Tweets" +msgstr "Derniers tweets" + +#: ../../view/theme/diabook/theme.php:630 +msgid "Show/hide boxes at right-hand column:" +msgstr "Montrer/cacher les boîtes dans la colonne de droite :" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Choisir le schéma de couleurs" + +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Alignement" + +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Gauche" + +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Centre" + +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Taille de texte des messages" + +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "" + +#: ../../index.php:405 +msgid "toggle mobile" +msgstr "activ. mobile" + +#: ../../boot.php:669 msgid "Delete this item?" msgstr "Effacer cet élément?" -#: ../../boot.php:610 +#: ../../boot.php:672 msgid "show fewer" msgstr "montrer moins" -#: ../../boot.php:819 +#: ../../boot.php:999 #, php-format msgid "Update %s failed. See error logs." msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur." -#: ../../boot.php:821 +#: ../../boot.php:1001 #, php-format msgid "Update Error at %s" msgstr "Erreur de mise-à-jour à %s" -#: ../../boot.php:922 +#: ../../boot.php:1111 msgid "Create a New Account" msgstr "Créer un nouveau compte" -#: ../../boot.php:951 +#: ../../boot.php:1139 msgid "Nickname or Email address: " msgstr "Pseudo ou courriel: " -#: ../../boot.php:952 +#: ../../boot.php:1140 msgid "Password: " msgstr "Mot de passe: " -#: ../../boot.php:953 +#: ../../boot.php:1141 msgid "Remember me" msgstr "" -#: ../../boot.php:956 +#: ../../boot.php:1144 msgid "Or login using OpenID: " msgstr "Ou connectez-vous via OpenID: " -#: ../../boot.php:962 +#: ../../boot.php:1150 msgid "Forgot your password?" msgstr "Mot de passe oublié?" -#: ../../boot.php:1087 +#: ../../boot.php:1153 +msgid "Website Terms of Service" +msgstr "" + +#: ../../boot.php:1154 +msgid "terms of service" +msgstr "" + +#: ../../boot.php:1156 +msgid "Website Privacy Policy" +msgstr "" + +#: ../../boot.php:1157 +msgid "privacy policy" +msgstr "" + +#: ../../boot.php:1286 msgid "Requested account is not available." msgstr "Le compte demandé n'est pas disponible." -#: ../../boot.php:1164 +#: ../../boot.php:1365 ../../boot.php:1469 msgid "Edit profile" msgstr "Editer le profil" -#: ../../boot.php:1230 +#: ../../boot.php:1431 msgid "Message" msgstr "Message" -#: ../../boot.php:1238 +#: ../../boot.php:1439 msgid "Manage/edit profiles" msgstr "Gérer/éditer les profils" -#: ../../boot.php:1352 ../../boot.php:1438 +#: ../../boot.php:1568 ../../boot.php:1654 msgid "g A l F d" msgstr "g A | F d" -#: ../../boot.php:1353 ../../boot.php:1439 +#: ../../boot.php:1569 ../../boot.php:1655 msgid "F d" msgstr "F d" -#: ../../boot.php:1398 ../../boot.php:1479 +#: ../../boot.php:1614 ../../boot.php:1695 msgid "[today]" msgstr "[aujourd'hui]" -#: ../../boot.php:1410 +#: ../../boot.php:1626 msgid "Birthday Reminders" msgstr "Rappels d'anniversaires" -#: ../../boot.php:1411 +#: ../../boot.php:1627 msgid "Birthdays this week:" msgstr "Anniversaires cette semaine:" -#: ../../boot.php:1472 +#: ../../boot.php:1688 msgid "[No description]" msgstr "[Sans description]" -#: ../../boot.php:1490 +#: ../../boot.php:1706 msgid "Event Reminders" msgstr "Rappels d'événements" -#: ../../boot.php:1491 +#: ../../boot.php:1707 msgid "Events this week:" msgstr "Evénements cette semaine:" -#: ../../boot.php:1727 +#: ../../boot.php:1943 msgid "Status Messages and Posts" msgstr "Messages d'état et publications" -#: ../../boot.php:1734 +#: ../../boot.php:1950 msgid "Profile Details" msgstr "Détails du profil" -#: ../../boot.php:1751 +#: ../../boot.php:1961 ../../boot.php:1964 +msgid "Videos" +msgstr "" + +#: ../../boot.php:1974 msgid "Events and Calendar" msgstr "Événements et agenda" -#: ../../boot.php:1758 +#: ../../boot.php:1981 msgid "Only You Can See This" msgstr "Vous seul pouvez voir ça" - -#: ../../object/Item.php:237 -msgid "via" -msgstr "" - -#: ../../index.php:398 -msgid "toggle mobile" -msgstr "activ. mobile" - -#: ../../addon.old/bg/bg.php:51 -msgid "Bg settings updated." -msgstr "Réglages d'arrière-plan mis à jour." - -#: ../../addon.old/bg/bg.php:82 -msgid "Bg Settings" -msgstr "Réglages d'arrière-plan" - -#: ../../addon.old/drpost/drpost.php:35 -msgid "Post to Drupal" -msgstr "Poster vers Drupal" - -#: ../../addon.old/drpost/drpost.php:72 -msgid "Drupal Post Settings" -msgstr "Réglages Drupal" - -#: ../../addon.old/drpost/drpost.php:74 -msgid "Enable Drupal Post Plugin" -msgstr "Activer \"Poster vers Drupal\"" - -#: ../../addon.old/drpost/drpost.php:79 -msgid "Drupal username" -msgstr "Nom d'utilisateur Drupal" - -#: ../../addon.old/drpost/drpost.php:84 -msgid "Drupal password" -msgstr "Mot de passe Drupal" - -#: ../../addon.old/drpost/drpost.php:89 -msgid "Post Type - article,page,or blog" -msgstr "Type de publication - article, page ou blog" - -#: ../../addon.old/drpost/drpost.php:94 -msgid "Drupal site URL" -msgstr "URL du site Drupal" - -#: ../../addon.old/drpost/drpost.php:99 -msgid "Drupal site uses clean URLS" -msgstr "Ce site utilise des URLs propres" - -#: ../../addon.old/drpost/drpost.php:104 -msgid "Post to Drupal by default" -msgstr "Poster vers Drupal par défaut" - -#: ../../addon.old/oembed.old/oembed.php:30 -msgid "OEmbed settings updated" -msgstr "Réglage OEmbed mis-à-jour" - -#: ../../addon.old/oembed.old/oembed.php:43 -msgid "Use OEmbed for YouTube videos" -msgstr "Utiliser OEmbed pour les vidéos Youtube" - -#: ../../addon.old/oembed.old/oembed.php:71 -msgid "URL to embed:" -msgstr "URL à incorporer:" diff --git a/view/fr/strings.php b/view/fr/strings.php index 8a751c78b3..4af028c050 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -5,1658 +5,25 @@ function string_plural_select_fr($n){ return ($n > 1);; }} ; -$a->strings["Post successful."] = "Publication réussie."; -$a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]"; -$a->strings["Contact settings applied."] = "Réglages du contact appliqués."; -$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages."; -$a->strings["Permission denied."] = "Permission refusée."; -$a->strings["Contact not found."] = "Contact introuvable."; -$a->strings["Repair Contact Settings"] = "Réglages du réparateur de contacts"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "une photo"; -$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact"; -$a->strings["Name"] = "Nom"; -$a->strings["Account Nickname"] = "Pseudo du compte"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@NomDuTag - prend le pas sur Nom/Pseudo"; -$a->strings["Account URL"] = "URL du compte"; -$a->strings["Friend Request URL"] = "Echec du téléversement de l'image."; -$a->strings["Friend Confirm URL"] = "Accès public refusé."; -$a->strings["Notification Endpoint URL"] = "Aucune photo sélectionnée"; -$a->strings["Poll/Feed URL"] = "Téléverser des photos"; -$a->strings["New photo from this URL"] = "Nouvelle photo depuis cette URL"; -$a->strings["Submit"] = "Envoyer"; -$a->strings["Help:"] = "Aide:"; -$a->strings["Help"] = "Aide"; -$a->strings["Not Found"] = "Non trouvé"; -$a->strings["Page not found."] = "Page introuvable."; -$a->strings["File exceeds size limit of %d"] = "La taille du fichier dépasse la limite de %d"; -$a->strings["File upload failed."] = "Le téléversement a échoué."; -$a->strings["Friend suggestion sent."] = "Suggestion d'amitié/contact envoyée."; -$a->strings["Suggest Friends"] = "Suggérer des amis/contacts"; -$a->strings["Suggest a friend for %s"] = "Suggérer un ami/contact pour %s"; -$a->strings["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement."; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Editer l'événement"; -$a->strings["link to source"] = "lien original"; -$a->strings["Events"] = "Événements"; -$a->strings["Create New Event"] = "Créer un nouvel événement"; -$a->strings["Previous"] = "Précédent"; -$a->strings["Next"] = "Suivant"; -$a->strings["hour:minute"] = "heures:minutes"; -$a->strings["Event details"] = "Détails de l'événement"; -$a->strings["Format is %s %s. Starting date and Title are required."] = "Le format est %s %s. La date de début et le nom sont nécessaires."; -$a->strings["Event Starts:"] = "Début de l'événement:"; -$a->strings["Required"] = "Requis"; -$a->strings["Finish date/time is not known or not relevant"] = "Date/heure de fin inconnue ou sans objet"; -$a->strings["Event Finishes:"] = "Fin de l'événement:"; -$a->strings["Adjust for viewer timezone"] = "Ajuster à la zone horaire du visiteur"; -$a->strings["Description:"] = "Description:"; -$a->strings["Location:"] = "Localisation:"; -$a->strings["Title:"] = "Titre :"; -$a->strings["Share this event"] = "Partager cet événement"; -$a->strings["Cancel"] = "Annuler"; -$a->strings["Tag removed"] = "Étiquette enlevée"; -$a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément"; -$a->strings["Select a tag to remove: "] = "Choisir une étiquette à enlever: "; -$a->strings["Remove"] = "Utiliser comme photo de profil"; -$a->strings["%1\$s welcomes %2\$s"] = ""; -$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter"; -$a->strings["Return to your app and insert this Securty Code:"] = "Retournez à votre application et saisissez ce Code de Sécurité : "; -$a->strings["Please login to continue."] = "Merci de vous connecter pour continuer."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos notices et contacts, et/ou à créer des notices à votre place?"; -$a->strings["Yes"] = "Oui"; -$a->strings["No"] = "Non"; -$a->strings["Photo Albums"] = "Albums photo"; -$a->strings["Contact Photos"] = "Photos du contact"; -$a->strings["Upload New Photos"] = "Téléverser de nouvelles photos"; -$a->strings["everybody"] = "tout le monde"; -$a->strings["Contact information unavailable"] = "Informations de contact indisponibles"; -$a->strings["Profile Photos"] = "Photos du profil"; -$a->strings["Album not found."] = "Album introuvable."; -$a->strings["Delete Album"] = "Effacer l'album"; -$a->strings["Delete Photo"] = "Effacer la photo"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; -$a->strings["a photo"] = ""; -$a->strings["Image exceeds size limit of "] = "L'image dépasse la taille maximale de "; -$a->strings["Image file is empty."] = "Fichier image vide."; -$a->strings["Unable to process image."] = "Impossible de traiter l'image."; -$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué."; -$a->strings["Public access denied."] = "Accès public refusé."; -$a->strings["No photos selected"] = "Aucune photo sélectionnée"; -$a->strings["Access to this item is restricted."] = "Accès restreint à cet élément."; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos."; -$a->strings["Upload Photos"] = "Téléverser des photos"; -$a->strings["New album name: "] = "Nom du nouvel album: "; -$a->strings["or existing album name: "] = "ou nom d'un album existant: "; -$a->strings["Do not show a status post for this upload"] = "Ne pas publier de notice pour cet envoi"; -$a->strings["Permissions"] = "Permissions"; -$a->strings["Edit Album"] = "Éditer l'album"; -$a->strings["Show Newest First"] = "Plus récent d'abord"; -$a->strings["Show Oldest First"] = "Plus ancien d'abord"; -$a->strings["View Photo"] = "Voir la photo"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Interdit. L'accès à cet élément peut avoir été restreint."; -$a->strings["Photo not available"] = "Photo indisponible"; -$a->strings["View photo"] = "Voir photo"; -$a->strings["Edit photo"] = "Éditer la photo"; -$a->strings["Use as profile photo"] = "Utiliser comme photo de profil"; -$a->strings["Private Message"] = "Message privé"; -$a->strings["View Full Size"] = "Voir en taille réelle"; -$a->strings["Tags: "] = "Étiquettes: "; -$a->strings["[Remove any tag]"] = "[Retirer toutes les étiquettes]"; -$a->strings["Rotate CW (right)"] = "Tourner dans le sens des aiguilles d'une montre (vers la droite)"; -$a->strings["Rotate CCW (left)"] = "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"; -$a->strings["New album name"] = "Nom du nouvel album"; -$a->strings["Caption"] = "Titre"; -$a->strings["Add a Tag"] = "Ajouter une étiquette"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"; -$a->strings["I like this (toggle)"] = "J'aime (bascule)"; -$a->strings["I don't like this (toggle)"] = "Je n'aime pas (bascule)"; -$a->strings["Share"] = "Partager"; -$a->strings["Please wait"] = "Patientez"; -$a->strings["This is you"] = "C'est vous"; -$a->strings["Comment"] = "Commenter"; -$a->strings["Preview"] = "Aperçu"; -$a->strings["Delete"] = "Supprimer"; -$a->strings["View Album"] = "Voir l'album"; -$a->strings["Recent Photos"] = "Photos récentes"; -$a->strings["Not available."] = "Indisponible."; -$a->strings["Community"] = "Communauté"; -$a->strings["No results."] = "Aucun résultat."; -$a->strings["This is Friendica, version"] = "Motorisé par Friendica version"; -$a->strings["running at web location"] = "hébergé sur"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Merci de vous rendre sur Friendica.com si vous souhaitez en savoir plus sur le projet Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Pour les rapports de bugs: rendez vous sur"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com"; -$a->strings["Installed plugins/addons/apps:"] = "Extensions/applications installées:"; -$a->strings["No installed plugins/addons/apps"] = "Aucune extension/greffon/application installée"; -$a->strings["Item not found"] = "Élément introuvable"; -$a->strings["Edit post"] = "Éditer la publication"; -$a->strings["Post to Email"] = "Publier aussi par courriel"; -$a->strings["Edit"] = "Éditer"; -$a->strings["Upload photo"] = "Joindre photo"; -$a->strings["upload photo"] = "envoi image"; -$a->strings["Attach file"] = "Joindre fichier"; -$a->strings["attach file"] = "ajout fichier"; -$a->strings["Insert web link"] = "Insérer lien web"; -$a->strings["web link"] = "lien web"; -$a->strings["Insert video link"] = "Insérer un lien video"; -$a->strings["video link"] = "lien vidéo"; -$a->strings["Insert audio link"] = "Insérer un lien audio"; -$a->strings["audio link"] = "lien audio"; -$a->strings["Set your location"] = "Définir votre localisation"; -$a->strings["set location"] = "spéc. localisation"; -$a->strings["Clear browser location"] = "Effacer la localisation du navigateur"; -$a->strings["clear location"] = "supp. localisation"; -$a->strings["Permission settings"] = "Réglages des permissions"; -$a->strings["CC: email addresses"] = "CC: adresses de courriel"; -$a->strings["Public post"] = "Notice publique"; -$a->strings["Set title"] = "Définir un titre"; -$a->strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@exemple.com, mary@exemple.com"; -$a->strings["This introduction has already been accepted."] = "Cette introduction a déjà été acceptée."; -$a->strings["Profile location is not valid or does not contain profile information."] = "L'emplacement du profil est invalide ou ne contient pas de profil valide."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Attention: l'emplacement du profil n'a pas de nom identifiable."; -$a->strings["Warning: profile location has no profile photo."] = "Attention: l'emplacement du profil n'a pas de photo de profil."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d paramètre requis n'a pas été trouvé à l'endroit indiqué", - 1 => "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué", -); -$a->strings["Introduction complete."] = "Phase d'introduction achevée."; -$a->strings["Unrecoverable protocol error."] = "Erreur de protocole non-récupérable."; -$a->strings["Profile unavailable."] = "Profil indisponible."; -$a->strings["%s has received too many connection requests today."] = "%s a reçu trop de demandes d'introduction aujourd'hui."; -$a->strings["Spam protection measures have been invoked."] = "Des mesures de protection contre le spam ont été déclenchées."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Les relations sont encouragées à attendre 24 heures pour recommencer."; -$a->strings["Invalid locator"] = "Localisateur invalide"; -$a->strings["Invalid email address."] = "Adresse courriel invalide."; -$a->strings["This account has not been configured for email. Request failed."] = "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée."; -$a->strings["Unable to resolve your name at the provided location."] = "Impossible de résoudre votre nom à l'emplacement fourni."; -$a->strings["You have already introduced yourself here."] = "Vous vous êtes déjà présenté ici."; -$a->strings["Apparently you are already friends with %s."] = "Il semblerait que vous soyez déjà ami avec %s."; -$a->strings["Invalid profile URL."] = "URL de profil invalide."; -$a->strings["Disallowed profile URL."] = "URL de profil interdite."; -$a->strings["Failed to update contact record."] = "Échec de mise-à-jour du contact."; -$a->strings["Your introduction has been sent."] = "Votre introduction a été envoyée."; -$a->strings["Please login to confirm introduction."] = "Connectez-vous pour confirmer l'introduction."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Identité incorrecte actuellement connectée. Merci de vous connecter à ce profil."; -$a->strings["Hide this contact"] = "Cacher ce contact"; -$a->strings["Welcome home %s."] = "Bienvenue chez vous, %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Merci de confirmer votre demande d'introduction auprès de %s."; -$a->strings["Confirm"] = "Confirmer"; -$a->strings["[Name Withheld]"] = "[Nom non-publié]"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:"; -$a->strings["Connect as an email follower (Coming soon)"] = "Connecter un utilisateur de courriel (bientôt)"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Si vous n'êtes pas encore membre du web social libre, suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui."; -$a->strings["Friend/Connection Request"] = "Requête de relation/amitié"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Merci de répondre à ce qui suit:"; -$a->strings["Does %s know you?"] = "Est-ce que %s vous connaît?"; -$a->strings["Add a personal note:"] = "Ajouter une note personnelle:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de recherche Diaspora."; -$a->strings["Your Identity Address:"] = "Votre adresse d'identité:"; -$a->strings["Submit Request"] = "Envoyer la requête"; -$a->strings["Account settings"] = "Compte"; -$a->strings["Display settings"] = "Affichage"; -$a->strings["Connector settings"] = "Connecteurs"; -$a->strings["Plugin settings"] = "Extensions"; -$a->strings["Connected apps"] = "Applications connectées"; -$a->strings["Export personal data"] = "Exporter"; -$a->strings["Remove account"] = "Supprimer le compte"; -$a->strings["Settings"] = "Réglages"; -$a->strings["Export account"] = "Exporter le compte"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur."; -$a->strings["Export all"] = "Tout exporter"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)."; -$a->strings["Friendica Social Communications Server - Setup"] = "Serveur de communications sociales Friendica - Installation"; -$a->strings["Could not connect to database."] = "Impossible de se connecter à la base."; -$a->strings["Could not create table."] = "Impossible de créer une table."; -$a->strings["Your Friendica site database has been installed."] = "La base de données de votre site Friendica a bien été installée."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Référez-vous au fichier \"INSTALL.txt\"."; -$a->strings["System check"] = "Vérifications système"; -$a->strings["Check again"] = "Vérifier à nouveau"; -$a->strings["Database connection"] = "Connexion à la base de données"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer."; -$a->strings["Database Server Name"] = "Serveur de base de données"; -$a->strings["Database Login Name"] = "Nom d'utilisateur de la base"; -$a->strings["Database Login Password"] = "Mot de passe de la base"; -$a->strings["Database Name"] = "Nom de la base"; -$a->strings["Site administrator email address"] = "Adresse électronique de l'administrateur du site"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration."; -$a->strings["Please select a default timezone for your website"] = "Sélectionner un fuseau horaire par défaut pour votre site"; -$a->strings["Site settings"] = "Réglages du site"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir 'Activating scheduled tasks'"; -$a->strings["PHP executable path"] = "Chemin vers l'exécutable de PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation."; -$a->strings["Command line PHP"] = "Version \"ligne de commande\" de PHP"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé."; -$a->strings["This is required for message delivery to work."] = "Ceci est requis pour que la livraison des messages fonctionne."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Générer les clés de chiffrement"; -$a->strings["libCurl PHP module"] = "Module libCurl de PHP"; -$a->strings["GD graphics PHP module"] = "Module GD (graphiques) de PHP"; -$a->strings["OpenSSL PHP module"] = "Module OpenSSL de PHP"; -$a->strings["mysqli PHP module"] = "Module Mysqli de PHP"; -$a->strings["mb_string PHP module"] = "Module mb_string de PHP"; -$a->strings["Apache mod_rewrite module"] = "Module mod_rewrite Apache"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Erreur: Le module PHP \"libCURL\" est requis mais pas installé."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé."; -$a->strings["Error: openssl PHP module required but not installed."] = "Erreur: Le module PHP \"openssl\" est requis mais pas installé."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Erreur: Le module PHP \"mysqli\" est requis mais pas installé."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Erreur: le module PHP mb_string est requis mais pas installé."; -$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable."; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"."; -$a->strings[".htconfig.php is writable"] = "Fichier .htconfig.php accessible en écriture"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur."; -$a->strings["Url rewrite is working"] = "La réécriture d'URL fonctionne."; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement."; -$a->strings["Errors encountered creating database tables."] = "Des erreurs ont été signalées lors de la création des tables."; -$a->strings["

What next

"] = "

Ensuite

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'."; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Time Conversion"] = "Conversion temporelle"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire."; -$a->strings["UTC time: %s"] = "Temps UTC : %s"; -$a->strings["Current timezone: %s"] = "Zone de temps courante : %s"; -$a->strings["Converted localtime: %s"] = "Temps local converti : %s"; -$a->strings["Please select your timezone:"] = "Sélectionner votre zone :"; -$a->strings["Poke/Prod"] = "Solliciter"; -$a->strings["poke, prod or do other things to somebody"] = "solliciter (poke/...) quelqu'un"; -$a->strings["Recipient"] = "Destinataire"; -$a->strings["Choose what you wish to do to recipient"] = "Choisissez ce que vous voulez faire au destinataire"; -$a->strings["Make this post private"] = "Rendez ce message privé"; -$a->strings["Profile Match"] = "Correpondance de profils"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."; -$a->strings["is interested in:"] = "s'intéresse à:"; -$a->strings["Connect"] = "Relier"; -$a->strings["No matches"] = "Aucune correspondance"; -$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles."; -$a->strings["Visible to:"] = "Visible par:"; -$a->strings["No such group"] = "Groupe inexistant"; -$a->strings["Group is empty"] = "Groupe vide"; -$a->strings["Group: "] = "Groupe: "; -$a->strings["Select"] = "Sélectionner"; -$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s"; -$a->strings["%s from %s"] = "%s de %s"; -$a->strings["View in context"] = "Voir dans le contexte"; -$a->strings["%d comment"] = array( - 0 => "%d commentaire", - 1 => "%d commentaires", -); -$a->strings["comment"] = array( - 0 => "", - 1 => "commentaire", -); -$a->strings["show more"] = "montrer plus"; -$a->strings["like"] = "aime"; -$a->strings["dislike"] = "n'aime pas"; -$a->strings["Share this"] = "Partager"; -$a->strings["share"] = "partager"; -$a->strings["Bold"] = "Gras"; -$a->strings["Italic"] = "Italique"; -$a->strings["Underline"] = "Souligné"; -$a->strings["Quote"] = "Citation"; -$a->strings["Code"] = "Code"; -$a->strings["Image"] = "Image"; -$a->strings["Link"] = "Lien"; -$a->strings["Video"] = "Vidéo"; -$a->strings["add star"] = "mett en avant"; -$a->strings["remove star"] = "ne plus mettre en avant"; -$a->strings["toggle star status"] = "mettre en avant"; -$a->strings["starred"] = "mis en avant"; -$a->strings["add tag"] = "ajouter un tag"; -$a->strings["save to folder"] = "sauver vers dossier"; -$a->strings["to"] = "à"; -$a->strings["Wall-to-Wall"] = "Inter-mur"; -$a->strings["via Wall-To-Wall:"] = "en Inter-mur:"; -$a->strings["Welcome to %s"] = "Bienvenue sur %s"; -$a->strings["Invalid request identifier."] = "Identifiant de demande invalide."; -$a->strings["Discard"] = "Rejeter"; -$a->strings["Ignore"] = "Ignorer"; -$a->strings["System"] = "Système"; -$a->strings["Network"] = "Réseau"; -$a->strings["Personal"] = "Personnel"; -$a->strings["Home"] = "Profil"; -$a->strings["Introductions"] = "Introductions"; -$a->strings["Messages"] = "Messages"; -$a->strings["Show Ignored Requests"] = "Voir les demandes ignorées"; -$a->strings["Hide Ignored Requests"] = "Cacher les demandes ignorées"; -$a->strings["Notification type: "] = "Type de notification: "; -$a->strings["Friend Suggestion"] = "Suggestion d'amitié/contact"; -$a->strings["suggested by %s"] = "suggéré(e) par %s"; -$a->strings["Hide this contact from others"] = "Cacher ce contact aux autres"; -$a->strings["Post a new friend activity"] = "Poster concernant les nouvelles amitiés"; -$a->strings["if applicable"] = "si possible"; -$a->strings["Approve"] = "Approuver"; -$a->strings["Claims to be known to you: "] = "Prétend que vous le connaissez: "; -$a->strings["yes"] = "oui"; -$a->strings["no"] = "non"; -$a->strings["Approve as: "] = "Approuver en tant que: "; -$a->strings["Friend"] = "Ami"; -$a->strings["Sharer"] = "Initiateur du partage"; -$a->strings["Fan/Admirer"] = "Fan/Admirateur"; -$a->strings["Friend/Connect Request"] = "Demande de connexion/relation"; -$a->strings["New Follower"] = "Nouvel abonné"; -$a->strings["No introductions."] = "Aucune demande d'introduction."; -$a->strings["Notifications"] = "Notifications"; -$a->strings["%s liked %s's post"] = "%s a aimé la notice de %s"; -$a->strings["%s disliked %s's post"] = "%s n'a pas aimé la notice de %s"; -$a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s"; -$a->strings["%s created a new post"] = "%s a publié une notice"; -$a->strings["%s commented on %s's post"] = "%s a commenté une notice de %s"; -$a->strings["No more network notifications."] = "Aucune notification du réseau."; -$a->strings["Network Notifications"] = "Notifications du réseau"; -$a->strings["No more system notifications."] = "Pas plus de notifications système."; -$a->strings["System Notifications"] = "Notifications du système"; -$a->strings["No more personal notifications."] = "Aucun notification personnelle."; -$a->strings["Personal Notifications"] = "Notifications personnelles"; -$a->strings["No more home notifications."] = "Aucune notification de la page d'accueil."; -$a->strings["Home Notifications"] = "Notifications de page d'accueil"; -$a->strings["Could not access contact record."] = "Impossible d'accéder à l'enregistrement du contact."; -$a->strings["Could not locate selected profile."] = "Impossible de localiser le profil séléctionné."; -$a->strings["Contact updated."] = "Contact mis-à-jour."; -$a->strings["Contact has been blocked"] = "Le contact a été bloqué"; -$a->strings["Contact has been unblocked"] = "Le contact n'est plus bloqué"; -$a->strings["Contact has been ignored"] = "Le contact a été ignoré"; -$a->strings["Contact has been unignored"] = "Le contact n'est plus ignoré"; -$a->strings["Contact has been archived"] = "Contact archivé"; -$a->strings["Contact has been unarchived"] = "Contact désarchivé"; -$a->strings["Contact has been removed."] = "Ce contact a été retiré."; -$a->strings["You are mutual friends with %s"] = "Vous êtes ami (et réciproquement) avec %s"; -$a->strings["You are sharing with %s"] = "Vous partagez avec %s"; -$a->strings["%s is sharing with you"] = "%s partage avec vous"; -$a->strings["Private communications are not available for this contact."] = "Les communications privées ne sont pas disponibles pour ce contact."; -$a->strings["Never"] = "Jamais"; -$a->strings["(Update was successful)"] = "(Mise à jour effectuée avec succès)"; -$a->strings["(Update was not successful)"] = "(Mise à jour échouée)"; -$a->strings["Suggest friends"] = "Suggérer amitié/contact"; -$a->strings["Network type: %s"] = "Type de réseau %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d contact en commun", - 1 => "%d contacts en commun", -); -$a->strings["View all contacts"] = "Voir tous les contacts"; -$a->strings["Unblock"] = "Débloquer"; -$a->strings["Block"] = "Bloquer"; -$a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\""; -$a->strings["Unignore"] = "Ne plus ignorer"; -$a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\""; -$a->strings["Unarchive"] = "Désarchiver"; -$a->strings["Archive"] = "Archiver"; -$a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\""; -$a->strings["Repair"] = "Réparer"; -$a->strings["Advanced Contact Settings"] = "Réglages avancés du contact"; -$a->strings["Communications lost with this contact!"] = "Communications perdues avec ce contact !"; -$a->strings["Contact Editor"] = "Éditeur de contact"; -$a->strings["Profile Visibility"] = "Visibilité du profil"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée."; -$a->strings["Contact Information / Notes"] = "Informations de contact / Notes"; -$a->strings["Edit contact notes"] = "Éditer les notes des contacts"; -$a->strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]"; -$a->strings["Block/Unblock contact"] = "Bloquer/débloquer ce contact"; -$a->strings["Ignore contact"] = "Ignorer ce contact"; -$a->strings["Repair URL settings"] = "Réparer les réglages d'URL"; -$a->strings["View conversations"] = "Voir les conversations"; -$a->strings["Delete contact"] = "Effacer ce contact"; -$a->strings["Last update:"] = "Dernière mise-à-jour :"; -$a->strings["Update public posts"] = "Met ses entrées publiques à jour: "; -$a->strings["Update now"] = "Mettre à jour"; -$a->strings["Currently blocked"] = "Actuellement bloqué"; -$a->strings["Currently ignored"] = "Actuellement ignoré"; -$a->strings["Currently archived"] = "Actuellement archivé"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Les réponses et \"j'aime\" à vos contenus publics peuvent être toujours visibles"; -$a->strings["Suggestions"] = "Suggestions"; -$a->strings["Suggest potential friends"] = "Suggérer des amis potentiels"; -$a->strings["All Contacts"] = "Tous les contacts"; -$a->strings["Show all contacts"] = "Montrer tous les contacts"; -$a->strings["Unblocked"] = "Non-bloqués"; -$a->strings["Only show unblocked contacts"] = "Ne montrer que les contacts non-bloqués"; -$a->strings["Blocked"] = "Bloqués"; -$a->strings["Only show blocked contacts"] = "Ne montrer que les contacts bloqués"; -$a->strings["Ignored"] = "Ignorés"; -$a->strings["Only show ignored contacts"] = "Ne montrer que les contacts ignorés"; -$a->strings["Archived"] = "Archivés"; -$a->strings["Only show archived contacts"] = "Ne montrer que les contacts archivés"; -$a->strings["Hidden"] = "Cachés"; -$a->strings["Only show hidden contacts"] = "Ne montrer que les contacts masqués"; -$a->strings["Mutual Friendship"] = "Relation réciproque"; -$a->strings["is a fan of yours"] = "Vous suit"; -$a->strings["you are a fan of"] = "Vous le/la suivez"; -$a->strings["Edit contact"] = "Éditer le contact"; -$a->strings["Contacts"] = "Contacts"; -$a->strings["Search your contacts"] = "Rechercher dans vos contacts"; -$a->strings["Finding: "] = "Trouvé: "; -$a->strings["Find"] = "Trouver"; -$a->strings["No valid account found."] = "Impossible de trouver un compte valide."; -$a->strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe en cours. Vérifiez votre courriel."; -$a->strings["Password reset requested at %s"] = "Requête de réinitialisation de mot de passe à %s"; -$a->strings["Administrator"] = "Administrateur"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué."; -$a->strings["Password Reset"] = "Réinitialiser le mot de passe"; -$a->strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé."; -$a->strings["Your new password is"] = "Votre nouveau mot de passe est "; -$a->strings["Save or copy your new password - and then"] = "Sauvez ou copiez ce nouveau mot de passe - puis"; -$a->strings["click here to login"] = "cliquez ici pour vous connecter"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Votre mot de passe peut être changé depuis la page <em>Réglages</em>, une fois que vous serez connecté."; -$a->strings["Forgot your Password?"] = "Mot de passe oublié?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel."; -$a->strings["Nickname or Email: "] = "Pseudo ou Courriel: "; -$a->strings["Reset"] = "Réinitialiser"; -$a->strings["Additional features"] = ""; -$a->strings["Missing some important data!"] = "Il manque certaines informations importantes!"; -$a->strings["Update"] = "Mises-à-jour"; -$a->strings["Failed to connect with email account using the settings provided."] = "Impossible de se connecter au compte courriel configuré."; -$a->strings["Email settings updated."] = "Réglages de courriel mis-à-jour."; -$a->strings["Features updated"] = ""; -$a->strings["Passwords do not match. Password unchanged."] = "Les mots de passe ne correspondent pas. Aucun changement appliqué."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Les mots de passe vides sont interdits. Aucun changement appliqué."; -$a->strings["Password changed."] = "Mots de passe changés."; -$a->strings["Password update failed. Please try again."] = "Le changement de mot de passe a échoué. Merci de recommencer."; -$a->strings[" Please use a shorter name."] = " Merci d'utiliser un nom plus court."; -$a->strings[" Name too short."] = " Nom trop court."; -$a->strings[" Not valid email."] = " Email invalide."; -$a->strings[" Cannot change to that email."] = " Impossible de changer pour cet email."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut."; -$a->strings["Settings updated."] = "Réglages mis à jour."; -$a->strings["Add application"] = "Ajouter une application"; -$a->strings["Consumer Key"] = "Clé utilisateur"; -$a->strings["Consumer Secret"] = "Secret utilisateur"; -$a->strings["Redirect"] = "Rediriger"; -$a->strings["Icon url"] = "URL de l'icône"; -$a->strings["You can't edit this application."] = "Vous ne pouvez pas éditer cette application."; -$a->strings["Connected Apps"] = "Applications connectées"; -$a->strings["Client key starts with"] = "La clé cliente commence par"; -$a->strings["No name"] = "Sans nom"; -$a->strings["Remove authorization"] = "Révoquer l'autorisation"; -$a->strings["No Plugin settings configured"] = "Pas de réglages d'extensions configurés"; -$a->strings["Plugin Settings"] = "Extensions"; -$a->strings["Off"] = ""; -$a->strings["On"] = ""; -$a->strings["Additional Features"] = ""; -$a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s"; -$a->strings["enabled"] = "activé"; -$a->strings["disabled"] = "désactivé"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "L'accès courriel est désactivé sur ce site."; -$a->strings["Connector Settings"] = "Connecteurs"; -$a->strings["Email/Mailbox Setup"] = "Réglages de courriel/boîte à lettre"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte."; -$a->strings["Last successful email check:"] = "Dernière vérification réussie des courriels:"; -$a->strings["IMAP server name:"] = "Nom du serveur IMAP:"; -$a->strings["IMAP port:"] = "Port IMAP:"; -$a->strings["Security:"] = "Sécurité:"; -$a->strings["None"] = "Aucun(e)"; -$a->strings["Email login name:"] = "Nom de connexion:"; -$a->strings["Email password:"] = "Mot de passe:"; -$a->strings["Reply-to address:"] = "Adresse de réponse:"; -$a->strings["Send public posts to all email contacts:"] = "Les notices publiques vont à tous les contacts courriel:"; -$a->strings["Action after import:"] = "Action après import:"; -$a->strings["Mark as seen"] = "Marquer comme vu"; -$a->strings["Move to folder"] = "Déplacer vers"; -$a->strings["Move to folder:"] = "Déplacer vers:"; -$a->strings["No special theme for mobile devices"] = "Pas de thème particulier pour les terminaux mobiles"; -$a->strings["Display Settings"] = "Affichage"; -$a->strings["Display Theme:"] = "Thème d'affichage:"; -$a->strings["Mobile Theme:"] = "Thème mobile:"; -$a->strings["Update browser every xx seconds"] = "Mettre-à-jour l'affichage toutes les xx secondes"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Délai minimum de 10 secondes, pas de maximum"; -$a->strings["Number of items to display per page:"] = "Nombre d’éléments par page:"; -$a->strings["Maximum of 100 items"] = "Maximum de 100 éléments"; -$a->strings["Don't show emoticons"] = "Ne pas afficher les émoticônes (smileys grahiques)"; -$a->strings["Normal Account Page"] = "Compte normal"; -$a->strings["This account is a normal personal profile"] = "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)"; -$a->strings["Soapbox Page"] = "Compte \"boîte à savon\""; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'"; -$a->strings["Community Forum/Celebrity Account"] = "Compte de communauté/célébrité"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'"; -$a->strings["Automatic Friend Page"] = "Compte d'\"amitié automatique\""; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis"; -$a->strings["Private Forum [Experimental]"] = "Forum privé [expérimental]"; -$a->strings["Private forum - approved members only"] = "Forum privé - modéré en inscription"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte."; -$a->strings["Publish your default profile in your local site directory?"] = "Publier votre profil par défaut sur l'annuaire local de ce site?"; -$a->strings["Publish your default profile in the global social directory?"] = "Publier votre profil par défaut sur l'annuaire social global?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?"; -$a->strings["Hide your profile details from unknown viewers?"] = "Cacher les détails du profil aux visiteurs inconnus?"; -$a->strings["Allow friends to post to your profile page?"] = "Autoriser vos amis à publier sur votre profil?"; -$a->strings["Allow friends to tag your posts?"] = "Autoriser vos amis à tagguer vos notices?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?"; -$a->strings["Permit unknown people to send you private mail?"] = "Autoriser les messages privés d'inconnus?"; -$a->strings["Profile is not published."] = "Ce profil n'est pas publié."; -$a->strings["or"] = "ou"; -$a->strings["Your Identity Address is"] = "L'adresse de votre identité est"; -$a->strings["Automatically expire posts after this many days:"] = "Les publications expirent automatiquement après (en jours) :"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si ce champ est vide, les notices n'expireront pas. Les notices expirées seront supprimées"; -$a->strings["Advanced expiration settings"] = "Réglages avancés de l'expiration"; -$a->strings["Advanced Expiration"] = "Expiration (avancé)"; -$a->strings["Expire posts:"] = "Faire expirer les contenus:"; -$a->strings["Expire personal notes:"] = "Faire expirer les notes personnelles:"; -$a->strings["Expire starred posts:"] = "Faire expirer les contenus marqués:"; -$a->strings["Expire photos:"] = "Faire expirer les photos:"; -$a->strings["Only expire posts by others:"] = "Faire expirer seulement les messages des autres :"; -$a->strings["Account Settings"] = "Compte"; -$a->strings["Password Settings"] = "Réglages de mot de passe"; -$a->strings["New Password:"] = "Nouveau mot de passe:"; -$a->strings["Confirm:"] = "Confirmer:"; -$a->strings["Leave password fields blank unless changing"] = "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer"; -$a->strings["Basic Settings"] = "Réglages basiques"; -$a->strings["Full Name:"] = "Nom complet:"; -$a->strings["Email Address:"] = "Adresse courriel:"; -$a->strings["Your Timezone:"] = "Votre fuseau horaire:"; -$a->strings["Default Post Location:"] = "Publication par défaut depuis :"; -$a->strings["Use Browser Location:"] = "Utiliser la localisation géographique du navigateur:"; -$a->strings["Security and Privacy Settings"] = "Réglages de sécurité et vie privée"; -$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximal de requêtes d'amitié/jour:"; -$a->strings["(to prevent spam abuse)"] = "(pour limiter l'impact du spam)"; -$a->strings["Default Post Permissions"] = "Permissions par défaut sur les articles"; -$a->strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)"; -$a->strings["Maximum private messages per day from unknown people:"] = "Maximum de messages privés d'inconnus par jour:"; -$a->strings["Notification Settings"] = "Réglages de notification"; -$a->strings["By default post a status message when:"] = "Par défaut, poster un statut quand:"; -$a->strings["accepting a friend request"] = "j'accepte un ami"; -$a->strings["joining a forum/community"] = "joignant un forum/une communauté"; -$a->strings["making an interesting profile change"] = "je fais une modification intéressante de mon profil"; -$a->strings["Send a notification email when:"] = "Envoyer un courriel de notification quand:"; -$a->strings["You receive an introduction"] = "Vous recevez une introduction"; -$a->strings["Your introductions are confirmed"] = "Vos introductions sont confirmées"; -$a->strings["Someone writes on your profile wall"] = "Quelqu'un écrit sur votre mur"; -$a->strings["Someone writes a followup comment"] = "Quelqu'un vous commente"; -$a->strings["You receive a private message"] = "Vous recevez un message privé"; -$a->strings["You receive a friend suggestion"] = "Vous avez reçu une suggestion d'ami"; -$a->strings["You are tagged in a post"] = "Vous avez été repéré dans une publication"; -$a->strings["You are poked/prodded/etc. in a post"] = "Vous avez été sollicité dans une publication"; -$a->strings["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/page"; -$a->strings["Change the behaviour of this account for special situations"] = "Modifier le comportement de ce compte dans certaines situations"; -$a->strings["Manage Identities and/or Pages"] = "Gérer les identités et/ou les pages"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer."; -$a->strings["Select an identity to manage: "] = "Choisir une identité à gérer: "; -$a->strings["Search Results For:"] = "Résultats pour:"; -$a->strings["Remove term"] = "Retirer le terme"; -$a->strings["Saved Searches"] = "Recherches"; -$a->strings["add"] = "ajouter"; -$a->strings["Commented Order"] = "Tri par commentaires"; -$a->strings["Sort by Comment Date"] = "Trier par date de commentaire"; -$a->strings["Posted Order"] = "Tri par publications"; -$a->strings["Sort by Post Date"] = "Trier par date de publication"; -$a->strings["Posts that mention or involve you"] = "Publications qui vous concernent"; -$a->strings["New"] = "Nouveau"; -$a->strings["Activity Stream - by date"] = "Flux d'activités - par date"; -$a->strings["Shared Links"] = "Liens partagés"; -$a->strings["Interesting Links"] = "Liens intéressants"; -$a->strings["Starred"] = "Mis en avant"; -$a->strings["Favourite Posts"] = "Publications favorites"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Attention: Ce groupe contient %s membre d'un réseau non-sûr.", - 1 => "Attention: Ce groupe contient %s membres d'un réseau non-sûr.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée."; -$a->strings["Contact: "] = "Contact: "; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée."; -$a->strings["Invalid contact."] = "Contact invalide."; -$a->strings["Personal Notes"] = "Notes personnelles"; -$a->strings["Save"] = "Sauver"; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."; -$a->strings["Import"] = "Importer"; -$a->strings["Move account"] = "Migrer le compte"; -$a->strings["You can import an account from another Friendica server.
\r\n You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here.
\r\n This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"] = ""; -$a->strings["Account file"] = "Fichier du compte"; -$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = ""; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message."; -$a->strings["No recipient selected."] = "Pas de destinataire sélectionné."; -$a->strings["Unable to check your home location."] = "Impossible de vérifier votre localisation."; -$a->strings["Message could not be sent."] = "Impossible d'envoyer le message."; -$a->strings["Message collection failure."] = "Récupération des messages infructueuse."; -$a->strings["Message sent."] = "Message envoyé."; -$a->strings["No recipient."] = "Pas de destinataire."; -$a->strings["Please enter a link URL:"] = "Entrez un lien web:"; -$a->strings["Send Private Message"] = "Envoyer un message privé"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus."; -$a->strings["To:"] = "À:"; -$a->strings["Subject:"] = "Sujet:"; -$a->strings["Your message:"] = "Votre message:"; -$a->strings["Welcome to Friendica"] = "Bienvenue sur Friendica"; -$a->strings["New Member Checklist"] = "Checklist du nouvel utilisateur"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement."; -$a->strings["Getting Started"] = "Bien démarrer"; -$a->strings["Friendica Walk-Through"] = "Friendica pas-à-pas"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sur votre page d'accueil, dans Conseils aux nouveaux venus - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre."; -$a->strings["Go to Your Settings"] = "Éditer vos Réglages"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Sur la page des Réglages - changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver."; $a->strings["Profile"] = "Profil"; -$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis."; -$a->strings["Edit Your Profile"] = "Éditer votre Profil"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Éditez votre profil par défaut à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus."; -$a->strings["Profile Keywords"] = "Mots-clés du profil"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent."; -$a->strings["Connecting"] = "Connexions"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Si ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre."; -$a->strings["Importing Emails"] = "Importer courriels"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception."; -$a->strings["Go to Your Contacts Page"] = "Consulter vos Contacts"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire Ajouter un nouveau contact."; -$a->strings["Go to Your Site's Directory"] = "Consulter l'Annuaire de votre Site"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien Relier ou Suivre sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité."; -$a->strings["Finding New People"] = "Trouver de nouvelles personnes"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures."; -$a->strings["Groups"] = "Groupes"; -$a->strings["Group Your Contacts"] = "Grouper vos contacts"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau."; -$a->strings["Why Aren't My Posts Public?"] = "Pourquoi mes éléments ne sont pas publics?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecte votre vie privée. Par défaut, tous vos éléments seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus."; -$a->strings["Getting Help"] = "Obtenir de l'aide"; -$a->strings["Go to the Help Section"] = "Aller à la section Aide"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Nos pages d'aide peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources."; -$a->strings["Item not available."] = "Elément non disponible."; -$a->strings["Item was not found."] = "Element introuvable."; -$a->strings["Group created."] = "Groupe créé."; -$a->strings["Could not create group."] = "Impossible de créer le groupe."; -$a->strings["Group not found."] = "Groupe introuvable."; -$a->strings["Group name changed."] = "Groupe renommé."; -$a->strings["Permission denied"] = "Permission refusée"; -$a->strings["Create a group of contacts/friends."] = "Créez un groupe de contacts/amis."; -$a->strings["Group Name: "] = "Nom du groupe: "; -$a->strings["Group removed."] = "Groupe enlevé."; -$a->strings["Unable to remove group."] = "Impossible d'enlever le groupe."; -$a->strings["Group Editor"] = "Éditeur de groupe"; -$a->strings["Members"] = "Membres"; -$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer."; -$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide."; -$a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil"; -$a->strings["Visible To"] = "Visible par"; -$a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)"; -$a->strings["No contacts."] = "Aucun contact."; -$a->strings["View Contacts"] = "Voir les contacts"; -$a->strings["Registration details for %s"] = "Détails d'inscription pour %s"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions."; -$a->strings["Failed to send email message. Here is the message that failed."] = "Impossible d'envoyer un email. Voici le message qui a échoué."; -$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée."; -$a->strings["Registration request at %s"] = "Demande d'inscription à %s"; -$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste."; -$a->strings["Your OpenID (optional): "] = "Votre OpenID (facultatif): "; -$a->strings["Include your profile in member directory?"] = "Inclure votre profil dans l'annuaire des membres?"; -$a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation."; -$a->strings["Your invitation ID: "] = "Votre ID d'invitation: "; -$a->strings["Registration"] = "Inscription"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Votre nom complet (p.ex. Michel Dupont): "; -$a->strings["Your Email Address: "] = "Votre adresse courriel: "; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@\$sitename</strong>'."; -$a->strings["Choose a nickname: "] = "Choisir un pseudo: "; -$a->strings["Register"] = "S'inscrire"; -$a->strings["People Search"] = "Recherche de personnes"; -$a->strings["photo"] = "photo"; -$a->strings["status"] = "le statut"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s"; -$a->strings["Item not found."] = "Élément introuvable."; -$a->strings["Access denied."] = "Accès refusé."; -$a->strings["Photos"] = "Photos"; -$a->strings["Files"] = "Fichiers"; -$a->strings["Account approved."] = "Inscription validée."; -$a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s"; -$a->strings["Please login."] = "Merci de vous connecter."; -$a->strings["Unable to locate original post."] = "Impossible de localiser l'article original."; -$a->strings["Empty post discarded."] = "Article vide défaussé."; -$a->strings["Wall Photos"] = "Photos du mur"; -$a->strings["System error. Post not saved."] = "Erreur système. Publication non sauvée."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Ce message vous a été envoyé par %s, membre du réseau social Friendica."; -$a->strings["You may visit them online at %s"] = "Vous pouvez leur rendre visite sur %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages."; -$a->strings["%s posted an update."] = "%s a publié une mise à jour."; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s est d'humeur %2\$s"; -$a->strings["Mood"] = "Humeur"; -$a->strings["Set your current mood and tell your friends"] = "Spécifiez votre humeur du moment, et informez vos amis"; -$a->strings["Image uploaded but image cropping failed."] = "Image envoyée, mais impossible de la retailler."; -$a->strings["Image size reduction [%s] failed."] = "Réduction de la taille de l'image [%s] échouée."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement."; -$a->strings["Unable to process image"] = "Impossible de traiter l'image"; -$a->strings["Image exceeds size limit of %d"] = "L'image dépasse la taille limite de %d"; -$a->strings["Upload File:"] = "Fichier à téléverser:"; -$a->strings["Select a profile:"] = "Choisir un profil:"; -$a->strings["Upload"] = "Téléverser"; -$a->strings["skip this step"] = "ignorer cette étape"; -$a->strings["select a photo from your photo albums"] = "choisissez une photo depuis vos albums"; -$a->strings["Crop Image"] = "(Re)cadrer l'image"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Ajustez le cadre de l'image pour une visualisation optimale."; -$a->strings["Done Editing"] = "Édition terminée"; -$a->strings["Image uploaded successfully."] = "Image téléversée avec succès."; -$a->strings["No profile"] = "Aucun profil"; -$a->strings["Remove My Account"] = "Supprimer mon compte"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Ceci supprimera totalement votre compte. Cette opération est irréversible."; -$a->strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification:"; -$a->strings["New Message"] = "Nouveau message"; -$a->strings["Unable to locate contact information."] = "Impossible de localiser les informations du contact."; -$a->strings["Message deleted."] = "Message supprimé."; -$a->strings["Conversation removed."] = "Conversation supprimée."; -$a->strings["No messages."] = "Aucun message."; -$a->strings["Unknown sender - %s"] = "Émetteur inconnu - %s"; -$a->strings["You and %s"] = "Vous et %s"; -$a->strings["%s and You"] = "%s et vous"; -$a->strings["Delete conversation"] = "Effacer conversation"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d message", - 1 => "%d messages", -); -$a->strings["Message not available."] = "Message indisponible."; -$a->strings["Delete message"] = "Effacer message"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur."; -$a->strings["Send Reply"] = "Répondre"; -$a->strings["Friends of %s"] = "Amis de %s"; -$a->strings["No friends to display."] = "Pas d'amis à afficher."; -$a->strings["Theme settings updated."] = "Réglages du thème sauvés."; -$a->strings["Site"] = "Site"; -$a->strings["Users"] = "Utilisateurs"; -$a->strings["Plugins"] = "Extensions"; -$a->strings["Themes"] = "Thèmes"; -$a->strings["DB updates"] = "Mise-à-jour de la base"; -$a->strings["Logs"] = "Journaux"; -$a->strings["Admin"] = "Admin"; -$a->strings["Plugin Features"] = "Propriétés des extensions"; -$a->strings["User registrations waiting for confirmation"] = "Inscriptions en attente de confirmation"; -$a->strings["Normal Account"] = "Compte normal"; -$a->strings["Soapbox Account"] = "Compte \"boîte à savon\""; -$a->strings["Community/Celebrity Account"] = "Compte de communauté/célébrité"; -$a->strings["Automatic Friend Account"] = "Compte auto-amical"; -$a->strings["Blog Account"] = "Compte de blog"; -$a->strings["Private Forum"] = "Forum privé"; -$a->strings["Message queues"] = "Files d'attente des messages"; -$a->strings["Administration"] = "Administration"; -$a->strings["Summary"] = "Résumé"; -$a->strings["Registered users"] = "Utilisateurs inscrits"; -$a->strings["Pending registrations"] = "Inscriptions en attente"; -$a->strings["Version"] = "Versio"; -$a->strings["Active plugins"] = "Extensions activés"; -$a->strings["Site settings updated."] = "Réglages du site mis-à-jour."; -$a->strings["Closed"] = "Fermé"; -$a->strings["Requires approval"] = "Demande une apptrobation"; -$a->strings["Open"] = "Ouvert"; -$a->strings["No SSL policy, links will track page SSL state"] = "Pas de politique SSL, le liens conserveront l'état SSL de la page"; -$a->strings["Force all links to use SSL"] = "Forcer tous les liens à utiliser SSL"; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)"; -$a->strings["File upload"] = "Téléversement de fichier"; -$a->strings["Policies"] = "Politiques"; -$a->strings["Advanced"] = "Avancé"; -$a->strings["Site name"] = "Nom du site"; -$a->strings["Banner/Logo"] = "Bannière/Logo"; -$a->strings["System language"] = "Langue du système"; -$a->strings["System theme"] = "Thème du système"; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Thème par défaut sur ce site - peut être changé en fonction des profils - changer les réglages du thème"; -$a->strings["Mobile system theme"] = "Thème mobile"; -$a->strings["Theme for mobile devices"] = "Thème pour les terminaux mobiles"; -$a->strings["SSL link policy"] = "Politique SSL pour les liens"; -$a->strings["Determines whether generated links should be forced to use SSL"] = "Détermine si les liens générés doivent forcer l'usage de SSL"; -$a->strings["Maximum image size"] = "Taille maximale des images"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"."; -$a->strings["Maximum image length"] = "Longueur maximale des images"; -$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Longueur maximale (en pixels) du plus long côté des images téléversées. La valeur par défaut est -1, soit une absence de limite."; -$a->strings["JPEG image quality"] = "Qualité JPEG des images"; -$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale."; -$a->strings["Register policy"] = "Politique d'inscription"; -$a->strings["Register text"] = "Texte d'inscription"; -$a->strings["Will be displayed prominently on the registration page."] = "Sera affiché de manière bien visible sur la page d'accueil."; -$a->strings["Accounts abandoned after x days"] = "Les comptes sont abandonnés après x jours"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction."; -$a->strings["Allowed friend domains"] = "Domaines autorisés"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines"; -$a->strings["Allowed email domains"] = "Domaines courriel autorisés"; -$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines"; -$a->strings["Block public"] = "Interdire la publication globale"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques."; -$a->strings["Force publish"] = "Forcer la publication globale"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site."; -$a->strings["Global directory update URL"] = "URL de mise-à-jour de l'annuaire global"; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible."; -$a->strings["Allow threaded items"] = "Activer les commentaires imbriqués"; -$a->strings["Allow infinite level threading for items on this site."] = "Permettre une imbrication infinie des commentaires."; -$a->strings["Private posts by default for new users"] = "Publications privées par défaut pour les nouveaux utilisateurs"; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Rendre les posts de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde."; -$a->strings["Block multiple registrations"] = "Interdire les inscriptions multiples"; -$a->strings["Disallow users to register additional accounts for use as pages."] = "Ne pas permettre l'inscription de comptes multiples comme des pages."; -$a->strings["OpenID support"] = "Support OpenID"; -$a->strings["OpenID support for registration and logins."] = "Supporter OpenID pour les inscriptions et connexions."; -$a->strings["Fullname check"] = "Vérification du \"Prénom Nom\""; -$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus"; -$a->strings["UTF-8 Regular expressions"] = "Regex UTF-8"; -$a->strings["Use PHP UTF8 regular expressions"] = "Utiliser les expressions rationnelles de PHP en UTF8"; -$a->strings["Show Community Page"] = "Montrer la \"Place publique\""; -$a->strings["Display a Community page showing all recent public postings on this site."] = "Afficher une page Communauté avec toutes les publications publiques récentes du site."; -$a->strings["Enable OStatus support"] = "Activer le support d'OStatus"; -$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fournir une compatibilité OStatus (identi.ca, status.net, etc.). Toutes les communications d'OStatus sont publiques, des avertissements liés à la vie privée seront affichés si utile."; -$a->strings["Enable Diaspora support"] = "Activer le support de Diaspora"; -$a->strings["Provide built-in Diaspora network compatibility."] = "Fournir une compatibilité Diaspora intégrée."; -$a->strings["Only allow Friendica contacts"] = "N'autoriser que les contacts Friendica"; -$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés."; -$a->strings["Verify SSL"] = "Vérifier SSL"; -$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé."; -$a->strings["Proxy user"] = "Utilisateur du proxy"; -$a->strings["Proxy URL"] = "URL du proxy"; -$a->strings["Network timeout"] = "Dépassement du délai d'attente du réseau"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)."; -$a->strings["Delivery interval"] = "Intervalle de transmission"; -$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Rallonge le processus de transmissions pour réduire la charge système (en secondes). Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS, 0-1 pour les gros servers dédiés."; -$a->strings["Poll interval"] = "Intervalle de réception"; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission."; -$a->strings["Maximum Load Average"] = "Plafond de la charge moyenne"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50."; -$a->strings["Update has been marked successful"] = "Mise-à-jour validée comme 'réussie'"; -$a->strings["Executing %s failed. Check system logs."] = "L'éxecution de %s a échoué. Vérifiez les journaux du système."; -$a->strings["Update %s was successfully applied."] = "Mise-à-jour %s appliquée avec succès."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi."; -$a->strings["Update function %s could not be found."] = "La fonction %s de la mise-à-jour n'a pu être trouvée."; -$a->strings["No failed updates."] = "Pas de mises-à-jour échouées."; -$a->strings["Failed Updates"] = "Mises-à-jour échouées"; -$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails."; -$a->strings["Mark success (if update was manually applied)"] = "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)"; -$a->strings["Attempt to execute this update step automatically"] = "Tenter d'éxecuter cette étape automatiquement"; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "%s utilisateur a (dé)bloqué", - 1 => "%s utilisateurs ont (dé)bloqué", -); -$a->strings["%s user deleted"] = array( - 0 => "%s utilisateur supprimé", - 1 => "%s utilisateurs supprimés", -); -$a->strings["User '%s' deleted"] = "Utilisateur '%s' supprimé"; -$a->strings["User '%s' unblocked"] = "Utilisateur '%s' débloqué"; -$a->strings["User '%s' blocked"] = "Utilisateur '%s' bloqué"; -$a->strings["select all"] = "tout sélectionner"; -$a->strings["User registrations waiting for confirm"] = "Inscriptions d'utilisateurs en attente de confirmation"; -$a->strings["Request date"] = "Date de la demande"; -$a->strings["Email"] = "Courriel"; -$a->strings["No registrations."] = "Pas d'inscriptions."; -$a->strings["Deny"] = "Rejetter"; -$a->strings["Site admin"] = "Administration du Site"; -$a->strings["Register date"] = "Date d'inscription"; -$a->strings["Last login"] = "Dernière connexion"; -$a->strings["Last item"] = "Dernier élément"; -$a->strings["Account"] = "Compte"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"; -$a->strings["Plugin %s disabled."] = "Extension %s désactivée."; -$a->strings["Plugin %s enabled."] = "Extension %s activée."; -$a->strings["Disable"] = "Désactiver"; -$a->strings["Enable"] = "Activer"; -$a->strings["Toggle"] = "Activer/Désactiver"; -$a->strings["Author: "] = "Auteur: "; -$a->strings["Maintainer: "] = "Mainteneur: "; -$a->strings["No themes found."] = "Aucun thème trouvé."; -$a->strings["Screenshot"] = "Capture d'écran"; -$a->strings["[Experimental]"] = "[Expérimental]"; -$a->strings["[Unsupported]"] = "[Non supporté]"; -$a->strings["Log settings updated."] = "Réglages des journaux mis-à-jour."; -$a->strings["Clear"] = "Effacer"; -$a->strings["Debugging"] = "Déboguage"; -$a->strings["Log file"] = "Fichier de journaux"; -$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica."; -$a->strings["Log level"] = "Niveau de journalisaton"; -$a->strings["Close"] = "Fermer"; -$a->strings["FTP Host"] = "Hôte FTP"; -$a->strings["FTP Path"] = "Chemin FTP"; -$a->strings["FTP User"] = "Utilisateur FTP"; -$a->strings["FTP Password"] = "Mot de passe FTP"; -$a->strings["Requested profile is not available."] = "Le profil demandé n'est pas disponible."; -$a->strings["Access to this profile has been restricted."] = "L'accès au profil a été restreint."; -$a->strings["Tips for New Members"] = "Conseils aux nouveaux venus"; -$a->strings["{0} wants to be your friend"] = "{0} souhaite être votre ami(e)"; -$a->strings["{0} sent you a message"] = "{0} vous a envoyé un message"; -$a->strings["{0} requested registration"] = "{0} a demandé à s'inscrire"; -$a->strings["{0} commented %s's post"] = "{0} a commenté une notice de %s"; -$a->strings["{0} liked %s's post"] = "{0} a aimé une notice de %s"; -$a->strings["{0} disliked %s's post"] = "{0} n'a pas aimé une notice de %s"; -$a->strings["{0} is now friends with %s"] = "{0} est désormais ami(e) avec %s"; -$a->strings["{0} posted"] = "{0} a posté"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} a taggué la notice de %s avec #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} vous a mentionné dans une publication"; -$a->strings["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe"; -$a->strings["OpenID protocol error. No ID returned."] = "Erreur de protocole OpenID. Pas d'ID en retour."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site."; -$a->strings["Login failed."] = "Échec de connexion."; -$a->strings["Contact added"] = "Contact ajouté"; -$a->strings["Common Friends"] = "Amis communs"; -$a->strings["No contacts in common."] = "Pas de contacts en commun."; -$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; -$a->strings["link"] = "lien"; -$a->strings["Item has been removed."] = "Cet élément a été enlevé."; -$a->strings["Applications"] = "Applications"; -$a->strings["No installed applications."] = "Pas d'application installée."; -$a->strings["Search"] = "Recherche"; -$a->strings["Profile not found."] = "Profil introuvable."; -$a->strings["Profile Name is required."] = "Le nom du profil est requis."; -$a->strings["Marital Status"] = "Statut marital"; -$a->strings["Romantic Partner"] = "Partenaire/conjoint"; -$a->strings["Likes"] = "Derniers \"J'aime\""; -$a->strings["Dislikes"] = "Derniers \"Je n'aime pas\""; -$a->strings["Work/Employment"] = "Travail/Occupation"; -$a->strings["Religion"] = "Religion"; -$a->strings["Political Views"] = "Tendance politique"; -$a->strings["Gender"] = "Sexe"; -$a->strings["Sexual Preference"] = "Préférence sexuelle"; -$a->strings["Homepage"] = "Site internet"; -$a->strings["Interests"] = "Centres d'intérêt"; -$a->strings["Address"] = "Adresse"; -$a->strings["Location"] = "Localisation"; -$a->strings["Profile updated."] = "Profil mis à jour."; -$a->strings[" and "] = " et "; -$a->strings["public profile"] = "profil public"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s a changé %2\$s en “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = "Visiter le %2\$s de %1\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour son %2\$s, en modifiant %3\$s."; -$a->strings["Profile deleted."] = "Profil supprimé."; -$a->strings["Profile-"] = "Profil-"; -$a->strings["New profile created."] = "Nouveau profil créé."; -$a->strings["Profile unavailable to clone."] = "Ce profil ne peut être cloné."; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher ma liste d'amis/contacts des visiteurs de ce profil?"; -$a->strings["Edit Profile Details"] = "Éditer les détails du profil"; -$a->strings["View this profile"] = "Voir ce profil"; -$a->strings["Create a new profile using these settings"] = "Créer un nouveau profil en utilisant ces réglages"; -$a->strings["Clone this profile"] = "Cloner ce profil"; -$a->strings["Delete this profile"] = "Supprimer ce profil"; -$a->strings["Profile Name:"] = "Nom du profil:"; -$a->strings["Your Full Name:"] = "Votre nom complet:"; -$a->strings["Title/Description:"] = "Titre/Description:"; -$a->strings["Your Gender:"] = "Votre genre:"; -$a->strings["Birthday (%s):"] = "Anniversaire (%s):"; -$a->strings["Street Address:"] = "Adresse postale:"; -$a->strings["Locality/City:"] = "Ville/Localité:"; -$a->strings["Postal/Zip Code:"] = "Code postal:"; -$a->strings["Country:"] = "Pays:"; -$a->strings["Region/State:"] = "Région/État:"; -$a->strings[" Marital Status:"] = " Statut marital:"; -$a->strings["Who: (if applicable)"] = "Qui: (si pertinent)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Depuis [date] :"; -$a->strings["Sexual Preference:"] = "Préférence sexuelle:"; -$a->strings["Homepage URL:"] = "Page personnelle:"; -$a->strings["Hometown:"] = " Ville d'origine:"; -$a->strings["Political Views:"] = "Opinions politiques:"; -$a->strings["Religious Views:"] = "Opinions religieuses:"; -$a->strings["Public Keywords:"] = "Mots-clés publics:"; -$a->strings["Private Keywords:"] = "Mots-clés privés:"; -$a->strings["Likes:"] = "J'aime :"; -$a->strings["Dislikes:"] = "Je n'aime pas :"; -$a->strings["Example: fishing photography software"] = "Exemple: football dessin programmation"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)"; -$a->strings["Tell us about yourself..."] = "Parlez-nous de vous..."; -$a->strings["Hobbies/Interests"] = "Passe-temps/Centres d'intérêt"; -$a->strings["Contact information and Social Networks"] = "Coordonnées/Réseaux sociaux"; -$a->strings["Musical interests"] = "Goûts musicaux"; -$a->strings["Books, literature"] = "Lectures"; -$a->strings["Television"] = "Télévision"; -$a->strings["Film/dance/culture/entertainment"] = "Cinéma/Danse/Culture/Divertissement"; -$a->strings["Love/romance"] = "Amour/Romance"; -$a->strings["Work/employment"] = "Activité professionnelle/Occupation"; -$a->strings["School/education"] = "Études/Formation"; -$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Ceci est votre profil public.
Il peut être visible par n'importe quel utilisateur d'Internet."; -$a->strings["Age: "] = "Age: "; -$a->strings["Edit/Manage Profiles"] = "Editer/gérer les profils"; -$a->strings["Change profile photo"] = "Changer de photo de profil"; -$a->strings["Create New Profile"] = "Créer un nouveau profil"; -$a->strings["Profile Image"] = "Image du profil"; -$a->strings["visible to everybody"] = "visible par tous"; -$a->strings["Edit visibility"] = "Changer la visibilité"; -$a->strings["Save to Folder:"] = "Sauver dans le Dossier:"; -$a->strings["- select -"] = "- choisir -"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a taggué %3\$s de %2\$s avec %4\$s"; -$a->strings["No potential page delegates located."] = "Pas de délégataire potentiel."; -$a->strings["Delegate Page Management"] = "Déléguer la gestion de la page"; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue."; -$a->strings["Existing Page Managers"] = "Gestionnaires existants"; -$a->strings["Existing Page Delegates"] = "Délégataires existants"; -$a->strings["Potential Delegates"] = "Délégataires potentiels"; -$a->strings["Add"] = "Ajouter"; -$a->strings["No entries."] = "Aucune entrée."; -$a->strings["Source (bbcode) text:"] = "Texte source (bbcode) :"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texte source (Diaspora) à convertir en BBcode :"; -$a->strings["Source input: "] = "Source input: "; -$a->strings["bb2html: "] = "bb2html: "; -$a->strings["bb2html2bb: "] = "bb2html2bb: "; -$a->strings["bb2md: "] = "bb2md: "; -$a->strings["bb2md2html: "] = "bb2md2html: "; -$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; -$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; -$a->strings["Source input (Diaspora format): "] = "Texte source (format Diaspora) :"; -$a->strings["diaspora2bb: "] = "diaspora2bb :"; -$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h."; -$a->strings["Ignore/Hide"] = "Ignorer/cacher"; -$a->strings["Global Directory"] = "Annuaire global"; -$a->strings["Find on this site"] = "Trouver sur ce site"; -$a->strings["Site Directory"] = "Annuaire local"; -$a->strings["Gender: "] = "Genre: "; +$a->strings["Full Name:"] = "Nom complet:"; $a->strings["Gender:"] = "Genre:"; -$a->strings["Status:"] = "Statut:"; -$a->strings["Homepage:"] = "Page personnelle:"; -$a->strings["About:"] = "À propos:"; -$a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées)."; -$a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide."; -$a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica"; -$a->strings["%s : Message delivery failed."] = "%s : L'envoi du message a échoué."; -$a->strings["%d message sent."] = array( - 0 => "%d message envoyé.", - 1 => "%d messages envoyés.", -); -$a->strings["You have no more invitations available"] = "Vous n'avez plus d'invitations disponibles"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres."; -$a->strings["Send invitations"] = "Envoyer des invitations"; -$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses email, une par ligne:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Une fois inscrit, connectez-vous à la page de mon profil sur:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com"; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé."; -$a->strings["Response from remote site was not understood."] = "Réponse du site distant incomprise."; -$a->strings["Unexpected response from remote site: "] = "Réponse inattendue du site distant: "; -$a->strings["Confirmation completed successfully."] = "Confirmation achevée avec succès."; -$a->strings["Remote site reported: "] = "Alerte du site distant: "; -$a->strings["Temporary failure. Please wait and try again."] = "Échec temporaire. Merci de recommencer ultérieurement."; -$a->strings["Introduction failed or was revoked."] = "Introduction échouée ou annulée."; -$a->strings["Unable to set contact photo."] = "Impossible de définir la photo du contact."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s est désormais lié à %2\$s"; -$a->strings["No user record found for '%s' "] = "Pas d'utilisateur trouvé pour '%s' "; -$a->strings["Our site encryption key is apparently messed up."] = "Notre clé de chiffrement de site est apparemment corrompue."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "URL de site absente ou indéchiffrable."; -$a->strings["Contact record was not found for you on our site."] = "Pas d'entrée pour ce contact sur notre site."; -$a->strings["Site public key not available in contact record for URL %s."] = "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez."; -$a->strings["Unable to set your contact credentials on our system."] = "Impossible de vous définir des permissions sur notre système."; -$a->strings["Unable to update your contact profile details on our system"] = "Impossible de mettre les détails de votre profil à jour sur notre système"; -$a->strings["Connection accepted at %s"] = "Connexion acceptée chez %s"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s a rejoint %2\$s"; -$a->strings["Google+ Import Settings"] = "Réglages G+"; -$a->strings["Enable Google+ Import"] = "Activer l'import G+"; -$a->strings["Google Account ID"] = "ID du compte Google"; -$a->strings["Google+ Import Settings saved."] = "Réglages G+ sauvés."; -$a->strings["Facebook disabled"] = "Connecteur Facebook désactivé"; -$a->strings["Updating contacts"] = "Mise-à-jour des contacts"; -$a->strings["Facebook API key is missing."] = "Clé d'API Facebook manquante."; -$a->strings["Facebook Connect"] = "Connecteur Facebook"; -$a->strings["Install Facebook connector for this account."] = "Installer le connecteur Facebook sur ce compte."; -$a->strings["Remove Facebook connector"] = "Désinstaller le connecteur Facebook"; -$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Se ré-authentifier [nécessaire chaque fois que vous changez votre mot de passe Facebook.]"; -$a->strings["Post to Facebook by default"] = "Poster sur Facebook par défaut"; -$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "L'ajout d'amis Facebook a été désactivé sur ce site. Les réglages suivants seront sans effet."; -$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "L'ajout d'amis Facebook a été désactivé sur ce site. Si vous désactivez ce réglage, vous ne pourrez le ré-activer."; -$a->strings["Link all your Facebook friends and conversations on this website"] = "Lier tous vos amis et conversations Facebook sur ce site"; -$a->strings["Facebook conversations consist of your profile wall and your friend stream."] = "Les conversations Facebook se composent du mur du profil et des flux de vos amis."; -$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Sur ce site, les flux de vos amis Facebook ne sont visibles que par vous."; -$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Les réglages suivants déterminent le niveau de vie privée de votre mur Facebook depuis ce site."; -$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Sur ce site, les conversations de votre mur Facebook ne sont visibles que par vous."; -$a->strings["Do not import your Facebook profile wall conversations"] = "Ne pas importer les conversations de votre mur Facebook."; -$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Si vous choisissez de lier les conversations et de laisser ces deux cases non-cochées, votre mur Facebook sera fusionné avec votre mur de profil (sur ce site). Vos réglages (locaux) de vie privée serviront à en déterminer la visibilité."; -$a->strings["Comma separated applications to ignore"] = "Liste (séparée par des virgules) des applications à ignorer"; -$a->strings["Problems with Facebook Real-Time Updates"] = "Problème avec les mises-à-jour en temps réel de Facebook"; -$a->strings["Facebook Connector Settings"] = "Réglages du connecteur Facebook"; -$a->strings["Facebook API Key"] = "Clé d'API Facebook"; -$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.

"] = "Erreur: il semble que vous ayez spécifié un App-ID et un Secret dans votre fichier .htconfig.php. Tant qu'ils y seront, vous ne pourrez les configurer avec ce formulaire.

"; -$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Erreur: la clé d'API semble incorrecte (le jeton d'accès d'application n'a pu être recupéré)"; -$a->strings["The given API Key seems to work correctly."] = "La clé d'API semble fonctionner correctement."; -$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "La validité de la clé d'API ne peut être vérifiée. Quelque-chose d'étrange se passe."; -$a->strings["App-ID / API-Key"] = "App-ID / Clé d'API"; -$a->strings["Application secret"] = "Secret de l'application"; -$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "Intervalle de 'polling' en minutes (minimum %1\$s minutes)"; -$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Synchroniser les commentaires (aucun commentaire de Facebook ne devrait être oublié, au prix d'une charge système accrue)"; -$a->strings["Real-Time Updates"] = "Mises-à-jour en temps réel"; -$a->strings["Real-Time Updates are activated."] = "Mises-à-jour en temps réel activées."; -$a->strings["Deactivate Real-Time Updates"] = "Désactiver les mises-à-jour en temps réel"; -$a->strings["Real-Time Updates not activated."] = "Mises-à-jour en temps réel désactivées."; -$a->strings["Activate Real-Time Updates"] = "Activer les mises-à-jour en temps réel"; -$a->strings["The new values have been saved."] = "Les nouvelles valeurs ont été sauvées."; -$a->strings["Post to Facebook"] = "Poster sur Facebook"; -$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Publication sur Facebook annulée pour cause de conflit de permissions inter-réseaux."; -$a->strings["View on Friendica"] = "Voir sur Friendica"; -$a->strings["Facebook post failed. Queued for retry."] = "Publication sur Facebook échouée. En attente pour re-tentative."; -$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "Votre connexion à Facebook est devenue invalide. Merci de vous ré-authentifier."; -$a->strings["Facebook connection became invalid"] = "La connexion Facebook est devenue invalide"; -$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "Bonjour %1\$s,\n\nLa connexion entre vos comptes sur %2\$s et Facebook est devenue invalide. Ceci arrive généralement lorsque vous changez de mot de passe Facebook. Pour réactiver cette connexion, vous devrez %3\$sré-authentifier le connecteur Facebook%4\$s."; -$a->strings["StatusNet AutoFollow settings updated."] = "Réglages de suivi automatique sur StatusNet mis à jour."; -$a->strings["StatusNet AutoFollow Settings"] = "Réglages de suivi automatique sur StatusNet"; -$a->strings["Automatically follow any StatusNet followers/mentioners"] = "Suivre automatiquement les personnes qui vous suivent ou vous mentionnent sur Statusnet"; -$a->strings["Lifetime of the cache (in hours)"] = "Durée de vie du cache (en heures)"; -$a->strings["Cache Statistics"] = "Statistiques du cache"; -$a->strings["Number of items"] = "Nombre d'éléments"; -$a->strings["Size of the cache"] = "Taille du cache"; -$a->strings["Delete the whole cache"] = "Vider le cache"; -$a->strings["Facebook Post disabled"] = "Publications Facebook désactivées"; -$a->strings["Facebook Post"] = "Publications Facebook"; -$a->strings["Install Facebook Post connector for this account."] = "Installer le connecteur Facebook pour ce compte."; -$a->strings["Remove Facebook Post connector"] = "Retirer le connecteur Facebook"; -$a->strings["Facebook Post Settings"] = "Réglages Facebook"; -$a->strings["%d person likes this"] = array( - 0 => "%d personne aime ça", - 1 => "%d personnes aiment ça", -); -$a->strings["%d person doesn't like this"] = array( - 0 => "%d personne n'aime pas ça", - 1 => "%d personnes n'aiment pas ça", -); -$a->strings["Get added to this list!"] = "Ajoutez-vous à cette liste!"; -$a->strings["Generate new key"] = "Générer une nouvelle clé"; -$a->strings["Widgets key"] = "Clé des widgets"; -$a->strings["Widgets available"] = "Widgets disponibles"; -$a->strings["Connect on Friendica!"] = "Se connecter sur Friendica!"; -$a->strings["bitchslap"] = "faire un coup de pute"; -$a->strings["bitchslapped"] = "a fait un coup de pute à"; -$a->strings["shag"] = "niquer"; -$a->strings["shagged"] = "a niqué"; -$a->strings["do something obscenely biological to"] = ""; -$a->strings["did something obscenely biological to"] = ""; -$a->strings["point out the poke feature to"] = "indiquer les sollicitations"; -$a->strings["pointed out the poke feature to"] = "a indiqué les sollicitations à"; -$a->strings["declare undying love for"] = "déclarer sa flamme"; -$a->strings["declared undying love for"] = "a déclaré sa flamme à"; -$a->strings["patent"] = "faire breveter"; -$a->strings["patented"] = "a fait breveter"; -$a->strings["stroke beard"] = "frotter sa barbe"; -$a->strings["stroked their beard at"] = "a frotté sa barbe sur"; -$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "se lamenter sur les valeurs qui se perdent"; -$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "s'est lamenté du lent déclin des valeurs auprès de"; -$a->strings["hug"] = "faire un calin"; -$a->strings["hugged"] = "a fait un câlin à"; -$a->strings["kiss"] = "embrasser"; -$a->strings["kissed"] = "a embrassé"; -$a->strings["raise eyebrows at"] = "hausser le sourcil"; -$a->strings["raised their eyebrows at"] = "a haussé le sourcil à "; -$a->strings["insult"] = "insulter"; -$a->strings["insulted"] = "a insulté"; -$a->strings["praise"] = "louer"; -$a->strings["praised"] = "a loué"; -$a->strings["be dubious of"] = "trouver douteux"; -$a->strings["was dubious of"] = "a trouvé douteux "; -$a->strings["eat"] = "manger"; -$a->strings["ate"] = "a mangé "; -$a->strings["giggle and fawn at"] = "se payer la tête"; -$a->strings["giggled and fawned at"] = "s'est payé la tête de"; -$a->strings["doubt"] = "mettre en doute"; -$a->strings["doubted"] = "a mis en doute "; -$a->strings["glare"] = "fixer"; -$a->strings["glared at"] = "a fixé"; -$a->strings["YourLS Settings"] = "Réglages de YourLS"; -$a->strings["URL: http://"] = "URL: http://"; -$a->strings["Username:"] = "Nom d'utilisateur"; -$a->strings["Password:"] = "Mot de passe :"; -$a->strings["Use SSL "] = "Utiliser SSL "; -$a->strings["yourls Settings saved."] = "Réglages yourls sauvés."; -$a->strings["Post to LiveJournal"] = "Poster vers LiveJournal"; -$a->strings["LiveJournal Post Settings"] = "Réglages LiveJournal"; -$a->strings["Enable LiveJournal Post Plugin"] = "Activer \"Poster vers LiveJournal\""; -$a->strings["LiveJournal username"] = "Nom d'utilisateur LiveJournal"; -$a->strings["LiveJournal password"] = "Mot de passe"; -$a->strings["Post to LiveJournal by default"] = "Poster vers LiveJournal par défaut"; -$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Réglages de \"NSFW\" (filtrage de contenu)"; -$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Cette extension va parcourir les publications à la recherche des mots (ou phrases) que vous spécifierez ci-dessous, et repliera automatiquement tout contenu qui les contiendrait, afin de ne pas risquer de les afficher à un moment inopportun. Comme par exemple des messages à caractère sexuel dans un contexte professionnel. Il est globalement considéré comme correct et poli de \"tagguer\" toute publication contenant de la nudité avec #NSFW (Not Safe For Work - pas pour le boulot). Ce filtre peut également fonctionner pour tout autre texte que vous spécifierez, et pourra ainsi être utilisé comme filtre de contenu générique."; -$a->strings["Enable Content filter"] = "Activer le filtrage de contenu"; -$a->strings["Comma separated list of keywords to hide"] = "Liste de mots-clés - séparés par des virgules - à cacher"; -$a->strings["Use /expression/ to provide regular expressions"] = "Utilisez /expression/ pour les expressions rationnelles"; -$a->strings["NSFW Settings saved."] = "Réglages NSFW sauvegardés."; -$a->strings["%s - Click to open/close"] = "%s - cliquer pour ouvrir/fermer"; -$a->strings["Forums"] = "Forums"; -$a->strings["Forums:"] = "Forums:"; -$a->strings["Page settings updated."] = "Paramètres des pages mis à jour."; -$a->strings["Page Settings"] = "Paramètres des pages"; -$a->strings["How many forums to display on sidebar without paging"] = "Nombre de forums à afficher sur la barre de côté sans changer de page"; -$a->strings["Randomise Page/Forum list"] = "Rendre aléatoire la liste des pages/forums"; -$a->strings["Show pages/forums on profile page"] = "Montrer les forums sur le profil"; -$a->strings["Planets Settings"] = "Réglages des Planets"; -$a->strings["Enable Planets Plugin"] = "Activer Planets"; -$a->strings["Forum Directory"] = ""; -$a->strings["Login"] = "Connexion"; -$a->strings["OpenID"] = "OpenID"; -$a->strings["Latest users"] = "Derniers utilisateurs"; -$a->strings["Most active users"] = "Utilisateurs les plus actifs"; -$a->strings["Latest photos"] = "Dernières photos"; -$a->strings["Latest likes"] = "Dernières approbations"; -$a->strings["event"] = "évènement"; -$a->strings["No access"] = "Pas d'accès"; -$a->strings["Could not open component for editing"] = "Échec d'ouverture de l'élément pour édition"; -$a->strings["Go back to the calendar"] = "Revenir au calendrier"; -$a->strings["Event data"] = "Données de l'évènement"; -$a->strings["Calendar"] = "Calendrier"; -$a->strings["Special color"] = "Couleur spéciale"; -$a->strings["Subject"] = "Sujet"; -$a->strings["Starts"] = "Début"; -$a->strings["Ends"] = "Fin"; -$a->strings["Description"] = "Description"; -$a->strings["Recurrence"] = "Récurrence"; -$a->strings["Frequency"] = "Fréquence"; -$a->strings["Daily"] = "Chaque jour"; -$a->strings["Weekly"] = "Chaque semaine"; -$a->strings["Monthly"] = "Chaque mois"; -$a->strings["Yearly"] = "Par an"; -$a->strings["days"] = "jours"; -$a->strings["weeks"] = "semaines"; -$a->strings["months"] = "mois"; -$a->strings["years"] = "ans"; -$a->strings["Interval"] = "Intervalle"; -$a->strings["All %select% %time%"] = ""; -$a->strings["Days"] = "Jours"; -$a->strings["Sunday"] = "Dimanche"; -$a->strings["Monday"] = "Lundi"; -$a->strings["Tuesday"] = "Mardi"; -$a->strings["Wednesday"] = "Mercredi"; -$a->strings["Thursday"] = "Jeudi"; -$a->strings["Friday"] = "Vendredi"; -$a->strings["Saturday"] = "Samedi"; -$a->strings["First day of week:"] = "Premier jour de la semaine :"; -$a->strings["Day of month"] = "Jour du mois"; -$a->strings["#num#th of each month"] = "Le #num# de chaque mois"; -$a->strings["#num#th-last of each month"] = ""; -$a->strings["#num#th #wkday# of each month"] = ""; -$a->strings["#num#th-last #wkday# of each month"] = ""; -$a->strings["Month"] = "Mois"; -$a->strings["#num#th of the given month"] = ""; -$a->strings["#num#th-last of the given month"] = ""; -$a->strings["#num#th #wkday# of the given month"] = ""; -$a->strings["#num#th-last #wkday# of the given month"] = ""; -$a->strings["Repeat until"] = "Répéter jusqu'à"; -$a->strings["Infinite"] = "Infini"; -$a->strings["Until the following date"] = "Jusqu'à cette date"; -$a->strings["Number of times"] = "Nombre de fois"; -$a->strings["Exceptions"] = "Exceptions"; -$a->strings["none"] = "aucun"; -$a->strings["Notification"] = "Notification"; -$a->strings["Notify by"] = ""; -$a->strings["E-Mail"] = "Courriel"; -$a->strings["On Friendica / Display"] = "Sur Friendica / Afficher"; -$a->strings["Time"] = "Heure"; -$a->strings["Hours"] = "Heures"; -$a->strings["Minutes"] = "Minutes"; -$a->strings["Seconds"] = "Secondes"; -$a->strings["Weeks"] = "Semaines"; -$a->strings["before the"] = "avant le"; -$a->strings["start of the event"] = "début de l'événement"; -$a->strings["end of the event"] = "fin de l'événement"; -$a->strings["Add a notification"] = "Ajouter une notification"; -$a->strings["The event #name# will start at #date"] = "L'événement #name# commencera le #date#"; -$a->strings["#name# is about to begin."] = "#name# va commencer"; -$a->strings["Saved"] = "Sauvegardé"; -$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "Date au format américain (mm/jj/AAAA)"; -$a->strings["German Time Format (dd.mm.YYYY)"] = "Date au format européen (jj.mm.AAAA)"; -$a->strings["Private Events"] = "Événements privés."; -$a->strings["Private Addressbooks"] = "Carnets d'adresses privés"; -$a->strings["Friendica-Native events"] = "Événements natifs de Friendica"; -$a->strings["Friendica-Contacts"] = "Contacts Friendica"; -$a->strings["Your Friendica-Contacts"] = "Vos contacts Friendica"; -$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "Désolé, l'importation du fichier s'est mal passée. Toutefois, il se peut que certains événements aient tout de même été importés."; -$a->strings["Something went wrong when trying to import the file. Sorry."] = "Désolé, l'importation du fichier s'est mal passée."; -$a->strings["The ICS-File has been imported."] = "Le fichier ICS a été importé."; -$a->strings["No file was uploaded."] = "Aucun fichier n'a été téléchargé."; -$a->strings["Import a ICS-file"] = "Importer un fichier ICS"; -$a->strings["ICS-File"] = "Fichier ICS"; -$a->strings["Overwrite all #num# existing events"] = "Écraser les #num# événements existants"; -$a->strings["New event"] = "Nouvel événement"; -$a->strings["Today"] = "Aujourd'hui"; -$a->strings["Day"] = "Jour"; -$a->strings["Week"] = "Semaine"; -$a->strings["Reload"] = "Recharger"; -$a->strings["Date"] = "Date"; -$a->strings["Error"] = "Erreur"; -$a->strings["The calendar has been updated."] = "Le calendrier a été mis à jour."; -$a->strings["The new calendar has been created."] = "Le nouveau calendrier a été créé."; -$a->strings["The calendar has been deleted."] = "Le calendrier a été détruit."; -$a->strings["Calendar Settings"] = "Paramètres du calendrier"; -$a->strings["Date format"] = "Format de la date"; -$a->strings["Time zone"] = "Fuseau horaire"; -$a->strings["Calendars"] = "Calendriers."; -$a->strings["Create a new calendar"] = "Créer un nouveau calendrier."; -$a->strings["Limitations"] = "Limitations"; -$a->strings["Warning"] = "Avertissement"; -$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "Synchronisation (Iphone, Thunderbird Lightning, Android, ...)"; -$a->strings["Synchronizing this calendar with the iPhone"] = "Synchronisation avec l'Iphone en cours"; -$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "Synchronisation de vos contacts Friendica avec l'Iphone en cours"; -$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = "La version actuelle de cette extension n'a pas été configurée correctement. Merci de contacter votre administrateur Friendica pour régler ce problème. "; -$a->strings["Extended calendar with CalDAV-support"] = "Calendrier étendu avec support CalDAV"; -$a->strings["noreply"] = "noreply"; -$a->strings["Notification: "] = "Notification :"; -$a->strings["The database tables have been installed."] = "Les tables de la base de données ont été installées."; -$a->strings["An error occurred during the installation."] = "Une erreur est survenue lors de l'installation."; -$a->strings["The database tables have been updated."] = "Les tables de la base de données ont été mises à jour."; -$a->strings["An error occurred during the update."] = "Une erreur est survenue lors de la mise à jour."; -$a->strings["No system-wide settings yet."] = "Pas de paramètres globaux pour l'instant."; -$a->strings["Database status"] = "Etat de la base de données"; -$a->strings["Installed"] = "Installé"; -$a->strings["Upgrade needed"] = "Mise à jour nécessaire"; -$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events should be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = "Merci de sauvegarder toutes les données calendaires (les tables commençant par dav_*) avant de continuer. Bien que les évènements du calendrier doivent tous être convertis à la nouvelle structure, ça ne fait pas de mal d'avoir une sauvegarder. Ci-dessous, vous pouvez voir les requêtes qui seront faites lorsque vous lancerez la mise-à-jour."; -$a->strings["Upgrade"] = "Mettre à jour"; -$a->strings["Not installed"] = "Non installé"; -$a->strings["Install"] = "Installer"; -$a->strings["Unknown"] = "Inconnu"; -$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = "Quelque-chose a vraiment déconné. Je ne vais pas pouvoir me rétablir automatiquement, désolé. Merci de contacter directement votre base de données, de sauvegarder les données, et de supprimer toutes les tables qui commencent par 'dav_' à l main. Puis, la routine d'installation devrait être en mesure de réinitialiser ces tables automatiquement."; -$a->strings["Troubleshooting"] = "Dépannage"; -$a->strings["Manual creation of the database tables:"] = "Création manuelle des tables de la base de données :"; -$a->strings["Show SQL-statements"] = "Montrer les requêtes SQL"; -$a->strings["Private Calendar"] = "Calendrier privé"; -$a->strings["Friendica Events: Mine"] = "Evénements Friendica : Personnels"; -$a->strings["Friendica Events: Contacts"] = "Evénements Friendica : Contacts"; -$a->strings["Private Addresses"] = "Adresses privées"; -$a->strings["Friendica Contacts"] = "Contacts Friendica"; -$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See RemoteStorage WebFinger"] = "Permet l'utilisation de votre ID Friendica (%s) pour vous connecter à des sites compatibles \"unhosted\" (comme ownCloud). Voyez RemoteStorage WebFinger"; -$a->strings["Template URL (with {category})"] = "Modèle d'URL (avec {catégorie})"; -$a->strings["OAuth end-point"] = "URL OAuth"; -$a->strings["Api"] = "Type d'API"; -$a->strings["Member since:"] = "Membre depuis:"; -$a->strings["Three Dimensional Tic-Tac-Toe"] = "Morpion en trois dimensions"; -$a->strings["3D Tic-Tac-Toe"] = "Morpion 3D"; -$a->strings["New game"] = "Nouvelle partie"; -$a->strings["New game with handicap"] = "Nouvelle partie avec handicap"; -$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Le morpion 3D, c'est comme la version traditionnelle. Sauf qu'on joue sur plusieurs étages en même temps."; -$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."] = "Dans le cas qui nous concerne, il y a trois étages. Vous gagnez en alignant trois coups dans n'importe quel étage, ainsi que verticalement ou en diagonale entre les étages."; -$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Le handicap interdit la position centrale de l'étage du milieu, parce que le joueur qui prend cette case obtient souvent un avantage."; -$a->strings["You go first..."] = "À vous de jouer..."; -$a->strings["I'm going first this time..."] = "Je commence..."; -$a->strings["You won!"] = "Vous avez gagné!"; -$a->strings["\"Cat\" game!"] = "Match nul!"; -$a->strings["I won!"] = "J'ai gagné!"; -$a->strings["Randplace Settings"] = "Réglages de Randplace"; -$a->strings["Enable Randplace Plugin"] = "Activer l'extension Randplace"; -$a->strings["Post to Dreamwidth"] = "Poster vers Dreamwidth"; -$a->strings["Dreamwidth Post Settings"] = "Réglages Dreamwidth"; -$a->strings["Enable dreamwidth Post Plugin"] = "Activer \"Poster vers Dreamwidth\""; -$a->strings["dreamwidth username"] = "Nom d'utilisateur Dreamwidth"; -$a->strings["dreamwidth password"] = "Mot de passe"; -$a->strings["Post to dreamwidth by default"] = "Poster vers Dreamwidth par défaut"; -$a->strings["Remote Permissions Settings"] = "Permissions distantes"; -$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "Autoriser les destinataires de vos messages privés a voir les autres destinataires du message"; -$a->strings["Remote Permissions settings updated."] = "Permissions distantes mises-à-jour."; -$a->strings["Visible to"] = "Visibilité"; -$a->strings["may only be a partial list"] = "peut être une liste partielle"; -$a->strings["Global"] = "Global"; -$a->strings["The posts of every user on this server show the post recipients"] = "Les publications de tous les utilisateurs de ce serveur afficheront leurs destinataires"; -$a->strings["Individual"] = "Individuel"; -$a->strings["Each user chooses whether his/her posts show the post recipients"] = "Chaque utilisateur du serveur pourra choisir si ses publications affichent leurs destinataires"; -$a->strings["Startpage Settings"] = "Paramètres de la page d'accueil"; -$a->strings["Home page to load after login - leave blank for profile wall"] = "Page d'accueil à charger après authentification - laisser ce champ vide pour charger votre mur"; -$a->strings["Examples: "network" or "notifications/system""] = "Exemples : "network" ou "notifications/system""; -$a->strings["Geonames settings updated."] = "Réglages Geonames sauvés."; -$a->strings["Geonames Settings"] = "Réglages Geonames"; -$a->strings["Enable Geonames Plugin"] = "Activer Geonames"; -$a->strings["Your account on %s will expire in a few days."] = "Votre compte chez %s va expirer dans quelques jours."; -$a->strings["Your Friendica account is about to expire."] = "Votre compte sur Friendica est sur le point d'expirer."; -$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "Bonjour %1\$s,\n\nVotre compte sur %2\$s expirera dans moins de cinq jours. Vous pouvez conserver ce compte en vous y connectant au moins une fois par mois."; -$a->strings["Upload a file"] = "Téléverser un fichier"; -$a->strings["Drop files here to upload"] = "Déposer des fichiers ici pour les téléverser"; -$a->strings["Failed"] = "Échec"; -$a->strings["No files were uploaded."] = "Aucun fichier n'a été téléversé."; -$a->strings["Uploaded file is empty"] = "Le fichier téléversé est vide"; -$a->strings["File has an invalid extension, it should be one of "] = "Le fichier a une extension invalide, elle devrait être parmi "; -$a->strings["Upload was cancelled, or server error encountered"] = "Téléversement annulé, ou erreur de serveur"; -$a->strings["show/hide"] = "Montrer/cacher"; -$a->strings["No forum subscriptions"] = "Pas d'abonnement au forum"; -$a->strings["Forumlist settings updated."] = "Paramètres de la liste des forums mis à jour."; -$a->strings["Forumlist Settings"] = "Paramètres de la liste des forums"; -$a->strings["Randomise forum list"] = "Mélanger la liste de forums"; -$a->strings["Show forums on profile page"] = "Montrer les forums sur le profil"; -$a->strings["Show forums on network page"] = ""; -$a->strings["Impressum"] = "Impressum"; -$a->strings["Site Owner"] = "Propriétaire du site"; -$a->strings["Email Address"] = "Adresse courriel"; -$a->strings["Postal Address"] = "Adresse postale"; -$a->strings["The impressum addon needs to be configured!
Please add at least the owner variable to your config file. For other variables please refer to the README file of the addon."] = "L'extension \"Impressum\" (ou ours) n'est pas configuré!
Merci d'ajouter au moins la variable owner à votre fichier de configuration. Pour les autres variables, reportez-vous au fichier README accompagnant l'extension."; -$a->strings["The page operators name."] = "Le nom de l'administrateur de la page."; -$a->strings["Site Owners Profile"] = "Profil des propriétaires du site"; -$a->strings["Profile address of the operator."] = "L'adresse de profil de l'administrateur."; -$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "Comment contacter l'administrateur par courrier postal. Vous pouvez utiliser du BBCode."; -$a->strings["Notes"] = "Notes"; -$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "Notes additionnelles à afficher sous les informations de contact. Vous pouvez utiliser du BBCode."; -$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Comment contacter l'administrateur par courriel. (sera camouflée)"; -$a->strings["Footer note"] = "Note de bas de page"; -$a->strings["Text for the footer. You can use BBCode here."] = "Texte du pied de page. Vous pouvez utiliser du BBCode."; -$a->strings["Report Bug"] = "Signaler un bug"; -$a->strings["No Timeline settings updated."] = "Pas de mise à jour de paramètres du calendrier."; -$a->strings["No Timeline Settings"] = "Pas de paramètres de calendrier"; -$a->strings["Disable Archive selector on profile wall"] = "Désactiver le sélecteur d'archives sur le mur"; -$a->strings["\"Blockem\" Settings"] = "Réglages de Blockem"; -$a->strings["Comma separated profile URLS to block"] = "Liste d'URLS de profils à bloquer, séparés par des virgules"; -$a->strings["BLOCKEM Settings saved."] = "Réglages Blockem sauvés."; -$a->strings["Blocked %s - Click to open/close"] = "Bloqué %s - Cliquez pour ouvrir/fermer"; -$a->strings["Unblock Author"] = "Débloquer l'auteur"; -$a->strings["Block Author"] = "Bloquer l'auteur"; -$a->strings["blockem settings updated"] = "Réglages blockem sauvés"; -$a->strings[":-)"] = ":-)"; -$a->strings[":-("] = ":-("; -$a->strings["lol"] = "mdr"; -$a->strings["Quick Comment Settings"] = "Réglages de Quick Comment"; -$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "Les commentaires rapides peuvent être trouvés à proximité des boîtes de commentaire, parfois cachés. Cliquez dessus pour fournir des réponses simples et lapidaires."; -$a->strings["Enter quick comments, one per line"] = "Entrez les réponses rapides, une par ligne"; -$a->strings["Quick Comment settings saved."] = "Réglages de Quick Comment sauvés."; -$a->strings["Tile Server URL"] = "URL du serveur de tuiles"; -$a->strings["A list of public tile servers"] = "Une liste de serveurs de tuiles publics"; -$a->strings["Default zoom"] = "Zoom par défaut"; -$a->strings["The default zoom level. (1:world, 18:highest)"] = "Le niveau de zoom affiché par défaut. (1: monde entier, 18: détail maximum)"; -$a->strings["Editplain settings updated."] = "Réglages editplain sauvés."; -$a->strings["Group Text"] = "Affichage textuel des groupes"; -$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "Utilisez un sélecteur de groupe purement textuel (sans image) dans le menu d'édition des groupes"; -$a->strings["Could NOT install Libravatar successfully.
It requires PHP >= 5.3"] = "Libravatar n'a PAS pu être installé.
Il nécessite PHP >= 5.3"; -$a->strings["generic profile image"] = "image de profil générique"; -$a->strings["random geometric pattern"] = "motif géométrique aléatoire"; -$a->strings["monster face"] = "monstre"; -$a->strings["computer generated face"] = "généré par ordinateur"; -$a->strings["retro arcade style face"] = "vieux jeu d'arcade"; -$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "La version de PHP doit être >= 5.3 ; la votre, %s, est antérieure. "; -$a->strings["This addon is not functional on your server."] = "Cette extension ne fonctionne pas sur votre serveur."; -$a->strings["Information"] = "Information"; -$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "L'extension Gravatar est installée ; veuillez la désactiver.
L'extension Libravatar sera remplacée par Gravatar si rien n'a été trouvé."; -$a->strings["Default avatar image"] = "Avatar par défaut"; -$a->strings["Select default avatar image if none was found. See README"] = "Sélectionner une image d'avatar par défaut si aucune n'a été trouvée. Voir le fichier README"; -$a->strings["Libravatar settings updated."] = "Paramètres de Libravatar mis à jour."; -$a->strings["Post to libertree"] = "Publier sur libertree"; -$a->strings["libertree Post Settings"] = "Réglages des messages sur libertree"; -$a->strings["Enable Libertree Post Plugin"] = "Activer le plugin de publication sur libertree"; -$a->strings["Libertree API token"] = "Clé de l'API libertree"; -$a->strings["Libertree site URL"] = "URL du site libertree"; -$a->strings["Post to Libertree by default"] = "Publier sur libertree par défaut"; -$a->strings["Altpager settings updated."] = "Paramètres d'Altpager mis à jour."; -$a->strings["Alternate Pagination Setting"] = "Paramètres de numérotation des pages"; -$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "Utiliser des liens vers \"plus récents\" et \"plus anciens\" au lieu de numéros de pages ?"; -$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "L'extension MathJax affiche les formules mathématiques écrites suivant la syntaxe LaTeX lorsqu'elles sont encadrés par les $$ habituels, ou dans un un bloc eqnarray. Ceci sur le mur, le Réseau et dans les messages privés."; -$a->strings["Use the MathJax renderer"] = "Utiliser le rendu MathJax"; -$a->strings["MathJax Base URL"] = "URL de base de MathJax"; -$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "L'URL du fichier Javascript qui doit être inclus pour utiliser MathJax. Ce peut être celle du CDN MathJax, ou bien de toute autre installation de MathJax."; -$a->strings["Editplain Settings"] = "Réglages de editplain"; -$a->strings["Disable richtext status editor"] = "Désactiver l'édition \"riche\""; -$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "L'extension Libravatar est également installée. Veuillez désactiver celle-ci ou l'extension Gravatar.
L'extension Libravatar sera remplacée par Gravatar si rien n'a été trouvé."; -$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "Choisissez l'image de l'avatar par défaut si aucun n'est trouvé via Gravatar. Voir README"; -$a->strings["Rating of images"] = "Classe des avatars"; -$a->strings["Select the appropriate avatar rating for your site. See README"] = "Choisissez la classe des avatars appropriée pour votre site. Voir README"; -$a->strings["Gravatar settings updated."] = "Réglages Gravatar sauvés."; -$a->strings["Your Friendica test account is about to expire."] = "Votre compte de test Friendica est sur le point d'expirer."; -$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "Bonjour %1\$s,\n\nVotre compte de test sur %2\$s va expirer dans moins de cinq jours. Nous espérons que vous avez apprécié cette période d'essais, et que vous profiterez de l'occasion pour vous créer un compte permanent sur un serveur Friendica de votre choix. Une liste des serveurs Friendica ouverts au public peut être consultée sur http://dir.friendica.com/siteinfo - et pour plus d'information sur la meilleure manière de monter votre propre service Friendica, vous pouvez aller directement sur le site du projet http://friendica.com."; -$a->strings["\"pageheader\" Settings"] = "Réglages de pageheader"; -$a->strings["pageheader Settings saved."] = "Réglages pageheader sauvés."; -$a->strings["Post to Insanejournal"] = "Publier vers InsaneJournal"; -$a->strings["InsaneJournal Post Settings"] = "Réglages InsaneJournal"; -$a->strings["Enable InsaneJournal Post Plugin"] = "Activer le connecteur InsaneJournal"; -$a->strings["InsaneJournal username"] = "Utilisateur InsaneJournal"; -$a->strings["InsaneJournal password"] = "Mot de passe InsaneJournal"; -$a->strings["Post to InsaneJournal by default"] = "Publier sur InsaneJournal par défaut"; -$a->strings["Jappix Mini addon settings"] = "Jappix Mini"; -$a->strings["Activate addon"] = "Activer"; -$a->strings["Do not insert the Jappixmini Chat-Widget into the webinterface"] = "Ne pas insérer le widget JappixMini dans l'interface web"; -$a->strings["Jabber username"] = "Utilisateur Jabber"; -$a->strings["Jabber server"] = "Serveur Jabber"; -$a->strings["Jabber BOSH host"] = "Hôte BOSH (proxy) Jabber"; -$a->strings["Jabber password"] = "Mot de passe Jabber"; -$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "Chiffrer le mot de passe Jabber avec le mot de passe Friendica (recommandé)"; -$a->strings["Friendica password"] = "Mot de passe Friendica"; -$a->strings["Approve subscription requests from Friendica contacts automatically"] = "Approuver les contacts Friendica automatiquement"; -$a->strings["Subscribe to Friendica contacts automatically"] = "S'inscrire aux contacts Friendica automatiquement"; -$a->strings["Purge internal list of jabber addresses of contacts"] = "Purger la liste interne d'adresses Jabber"; -$a->strings["Add contact"] = "Ajouter un contact"; -$a->strings["View Source"] = "Voir la source"; -$a->strings["Post to StatusNet"] = "Poster sur StatusNet"; -$a->strings["Please contact your site administrator.
The provided API URL is not valid."] = "Merci de contacter l'administrateur du site.
L'URL d'API fournie est invalide."; -$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Nous n'avons pas pu contacter l'API StatusNet avec le chemin saisi."; -$a->strings["StatusNet settings updated."] = "Réglages StatusNet mis-à-jour."; -$a->strings["StatusNet Posting Settings"] = "Réglages du connecteur StatusNet"; -$a->strings["Globally Available StatusNet OAuthKeys"] = "Clés OAuth StatusNet universelles"; -$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Ce sont des paires de clés OAuth préconfigurées pour certains serveurs StatusNet courants. Si vous utilisez l'un d'entre eux, merci de vous servir de ces clés. Autrement, vous pouvez vous connecter à n'importer quelle autre instance de StatusNet (voir ci-dessous)."; -$a->strings["Provide your own OAuth Credentials"] = "Fournissez vos propres paramètres OAuth"; -$a->strings["No consumer key pair for StatusNet found. Register your Friendica 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 Friendica installation at your favorited StatusNet installation."] = "Pas de paire de clé trouvée pour StatusNet. Enregistrez votre compte Friendica comme un client \"desktop\" sur votre compte StatusNet, copiez la paire de clé ici et entrez la racine de l'API.
Avant d'enregistrer votre propre paire de clé, assurez-vous auprès de l'administrateur qu'il n'y a pas déjà une paire de clé pour cette instance de Friendica chez votre fournisseur StatusNet préféré."; -$a->strings["OAuth Consumer Key"] = "Clé de consommateur OAuth"; -$a->strings["OAuth Consumer Secret"] = "Secret d'utilisateur OAuth"; -$a->strings["Base API Path (remember the trailing /)"] = "Chemin de base de l'API (n'oubliez pas le / final)"; -$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."] = "Pour vous connecter à votre compte StatusNet, cliquez sur le bouton ci-dessous pour obtenir un code de sécurité de StatusNet, que vous aurez à coller dans la boîte ci-dessous. Ensuite, validez le formulaire. Seuls vos articles <strong>publics</strong> seront postés sur StatusNet."; -$a->strings["Log in with StatusNet"] = "Se connecter à StatusNet"; -$a->strings["Copy the security code from StatusNet here"] = "Coller le code de sécurité de StatusNet ici"; -$a->strings["Cancel Connection Process"] = "Annuler le processus de connexion"; -$a->strings["Current StatusNet API is"] = "L'API StatusNet courante est"; -$a->strings["Cancel StatusNet Connection"] = "Annuler la connexion à StatusNet"; -$a->strings["Currently connected to: "] = "Actuellement connecté à: "; -$a->strings["If enabled all your public postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "En cas d'activation, toutes vos notices publiques seront transmises au compte StatusNet associé. Vous pourrez choisir de le faire par défaut (ici), ou bien pour chaque notice séparément lors de sa rédaction."; -$a->strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Note: Du fait de vos réglages de vie privée (Cacher les détails de votre profil des visiteurs inconnus?), le lien potentiellement inclus dans les messages publics relayés vers StatusNet conduira les visiteurs vers une page blanche les informant que leur accès à votre profil a été restreint."; -$a->strings["Allow posting to StatusNet"] = "Autoriser la publication sur StatusNet"; -$a->strings["Send public postings to StatusNet by default"] = "Par défaut, envoyer les notices publiques à StatusNet"; -$a->strings["Send linked #-tags and @-names to StatusNet"] = "Envoyer les liens vers les #-tags et les @-noms sur StatusNet"; -$a->strings["Clear OAuth configuration"] = "Effacer la configuration OAuth"; -$a->strings["API URL"] = "URL de l'API"; -$a->strings["Infinite Improbability Drive"] = "Générateur d'improbabilté infinie"; -$a->strings["Post to Tumblr"] = "Publier sur Tumblr"; -$a->strings["Tumblr Post Settings"] = "Réglages de Tumblr"; -$a->strings["Enable Tumblr Post Plugin"] = "Activer l'extension Tumblr"; -$a->strings["Tumblr login"] = "Login Tumblr"; -$a->strings["Tumblr password"] = "Mot de passe Tumblr"; -$a->strings["Post to Tumblr by default"] = "Publier sur Tumblr par défaut"; -$a->strings["Numfriends settings updated."] = "Réglages numfriends sauvés."; -$a->strings["Numfriends Settings"] = "Réglages de numfriends"; -$a->strings["How many contacts to display on profile sidebar"] = "Nombre de contacts à montrer sur le panneau latéral du profil"; -$a->strings["Gnot settings updated."] = "Réglages Gnot sauvés."; -$a->strings["Gnot Settings"] = "Réglages Gnot"; -$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "Autorise l'arborescence des notifications de commentaires sur GMail, et rend la ligne 'Sujet' anonyme."; -$a->strings["Enable this plugin/addon?"] = "Activer cette extension?"; -$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "[Friendica:Notification] Commentaire sur la conversation #%d"; -$a->strings["Post to Wordpress"] = "Poster sur WordPress"; -$a->strings["WordPress Post Settings"] = "Réglages WordPress"; -$a->strings["Enable WordPress Post Plugin"] = "Activer l'extension WordPress"; -$a->strings["WordPress username"] = "Utilisateur WordPress"; -$a->strings["WordPress password"] = "Mot de passe WordPress"; -$a->strings["WordPress API URL"] = "URL de l'API WordPress"; -$a->strings["Post to WordPress by default"] = "Publier sur WordPress par défaut"; -$a->strings["Provide a backlink to the Friendica post"] = "Fournir un rétrolien vers le message sur Friendica"; -$a->strings["Post from Friendica"] = "Publier depuis Friendica"; -$a->strings["Read the original post and comment stream on Friendica"] = "Lire le message d'origine et le flux des commentaires sur Friendica"; -$a->strings["\"Show more\" Settings"] = "Réglages de \"Show more\""; -$a->strings["Enable Show More"] = "Activer \"Show more\""; -$a->strings["Cutting posts after how much characters"] = "Coupure après combien de caractères"; -$a->strings["Show More Settings saved."] = "Réglages \"Show more\" sauvés."; -$a->strings["This website is tracked using the Piwik analytics tool."] = "Ce site collecte ses statistiques grâce à Piwik."; -$a->strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Si vous ne voulez pas que vos visites soient collectées par ce biais, vous pouvez activer un cookie qui empêchera Piwik de tenir compte de vos visites ultérieures (opt-out)."; -$a->strings["Piwik Base URL"] = "URL de base de Piwik"; -$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Chemin absolu vers votre installation Piwik. (sans protocole (http/s), avec un / terminal)"; -$a->strings["Site ID"] = "ID du site"; -$a->strings["Show opt-out cookie link?"] = "Montrer le lien d'opt-out?"; -$a->strings["Asynchronous tracking"] = "Suivi asynchrone"; -$a->strings["Post to Twitter"] = "Poster sur Twitter"; -$a->strings["Twitter settings updated."] = "Réglages de Twitter mis-à-jour."; -$a->strings["Twitter Posting Settings"] = "Réglages du connecteur Twitter"; -$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Pas de paire de clés pour Twitter. Merci de contacter l'administrateur du site."; -$a->strings["At this Friendica 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."] = "Sur cette instance de Friendica, le connecteur Twitter a été activé, mais vous n'avez pas encore connecté votre compte local à votre compte Twitter. Pour ce faire, cliquer sur le bouton ci-dessous. Vous obtiendrez alors un 'PIN' de Twitter, que vous devrez copier dans le champ ci-dessous, puis soumettre le formulaire. Seuls vos messages publics seront transmis à Twitter."; -$a->strings["Log in with Twitter"] = "Se connecter à Twitter"; -$a->strings["Copy the PIN from Twitter here"] = "Copier le PIN de Twitter ici"; -$a->strings["If enabled all your public postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "En cas d'activation, toutes vos notices publiques seront transmises au compte Twitter associé. Vous pourrez choisir de le faire par défaut (ici), ou bien pour chaque notice séparément lors de sa rédaction."; -$a->strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Note: Du fait de vos réglages de vie privée (Cacher les détails de votre profil des visiteurs inconnus?), le lien potentiellement inclus dans les messages publics relayés vers Twitter conduira les visiteurs vers une page blanche les informant que leur accès à votre profil a été restreint."; -$a->strings["Allow posting to Twitter"] = "Autoriser la publication sur Twitter"; -$a->strings["Send public postings to Twitter by default"] = "Envoyer les éléments publics sur Twitter par défaut"; -$a->strings["Send linked #-tags and @-names to Twitter"] = "Envoyer les liens vers les #-tags et les @-noms sur Twitter"; -$a->strings["Consumer key"] = "Clé utilisateur"; -$a->strings["Consumer secret"] = "Secret utilisateur"; -$a->strings["IRC Settings"] = "Réglages IRC"; -$a->strings["Channel(s) to auto connect (comma separated)"] = "Canaux à rejoindre automatiquement (séparés par des virgules)"; -$a->strings["Popular Channels (comma separated)"] = "Canaux populaires (séparés par des virgules)"; -$a->strings["IRC settings saved."] = "Réglages IRC sauvés."; -$a->strings["IRC Chatroom"] = "Salon IRC"; -$a->strings["Popular Channels"] = "Canaux populaires"; -$a->strings["Fromapp settings updated."] = "Réglages FromApp mis-à-jour"; -$a->strings["FromApp Settings"] = "FromApp"; -$a->strings["The application name you would like to show your posts originating from."] = "Le nom d'application que vous souhaiteriez que vos publications affichent comme source."; -$a->strings["Use this application name even if another application was used."] = "Afficher ce nom d'application même si une autre a été utilisée."; -$a->strings["Post to blogger"] = "Poster vers Blogger"; -$a->strings["Blogger Post Settings"] = "Réglages Blogger"; -$a->strings["Enable Blogger Post Plugin"] = "Activer le connecteur Blogger"; -$a->strings["Blogger username"] = "Utilisateur Blogger"; -$a->strings["Blogger password"] = "Mot de passe Blogger"; -$a->strings["Blogger API URL"] = "URL de l'API Blogger"; -$a->strings["Post to Blogger by default"] = "Poster vers Blogger par défaut"; -$a->strings["Post to Posterous"] = "Envoyer à Posterous"; -$a->strings["Posterous Post Settings"] = "Réglages de l'envoi à Posterous"; -$a->strings["Enable Posterous Post Plugin"] = "Activer l'envoi à Posterous"; -$a->strings["Posterous login"] = "Login Posterous"; -$a->strings["Posterous password"] = "Mot de passe"; -$a->strings["Posterous site ID"] = "ID du site Posterous"; -$a->strings["Posterous API token"] = "Clé d'API Posterous"; -$a->strings["Post to Posterous by default"] = "Envoyer à Posterous par défaut"; -$a->strings["Theme settings"] = "Réglages du thème graphique"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)"; -$a->strings["Set font-size for posts and comments"] = "Réglez 'font-size' (taille de police) pour publications et commentaires"; -$a->strings["Set theme width"] = "Largeur du thème"; -$a->strings["Color scheme"] = "Palette de couleurs"; -$a->strings["Your posts and conversations"] = "Vos notices et conversations"; -$a->strings["Your profile page"] = "Votre page de profil"; -$a->strings["Your contacts"] = "Vos contacts"; -$a->strings["Your photos"] = "Vos photos"; -$a->strings["Your events"] = "Vos événements"; -$a->strings["Personal notes"] = "Notes personnelles"; -$a->strings["Your personal photos"] = "Vos photos personnelles"; -$a->strings["Community Pages"] = "Pages de Communauté"; -$a->strings["Community Profiles"] = "Profils communautaires"; -$a->strings["Last users"] = "Derniers utilisateurs"; -$a->strings["Last likes"] = "Dernièrement aimé"; -$a->strings["Last photos"] = "Dernières photos"; -$a->strings["Find Friends"] = "Trouver des amis"; -$a->strings["Local Directory"] = "Annuaire local"; -$a->strings["Similar Interests"] = "Intérêts similaires"; -$a->strings["Invite Friends"] = "Inviter des amis"; -$a->strings["Earth Layers"] = "Géolocalisation"; -$a->strings["Set zoomfactor for Earth Layers"] = "Régler le niveau de zoom pour la géolocalisation"; -$a->strings["Set longitude (X) for Earth Layers"] = "Régler la longitude (X) pour la géolocalisation"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Régler la latitude (Y) pour la géolocalisation"; -$a->strings["Help or @NewHere ?"] = "Aide ou @NewHere?"; -$a->strings["Connect Services"] = "Connecter des services"; -$a->strings["Last Tweets"] = "Derniers tweets"; -$a->strings["Set twitter search term"] = "Rechercher un terme twitter"; -$a->strings["don't show"] = "cacher"; -$a->strings["show"] = "montrer"; -$a->strings["Show/hide boxes at right-hand column:"] = "Montrer/cacher les boîtes dans la colonne de droite :"; -$a->strings["Set line-height for posts and comments"] = "Réglez 'line-height' (hauteur de police) pour publications et commentaires"; -$a->strings["Set resolution for middle column"] = "Réglez la résolution de la colonne centrale"; -$a->strings["Set color scheme"] = "Choisir le schéma de couleurs"; -$a->strings["Set zoomfactor for Earth Layer"] = "Niveau de zoom"; -$a->strings["Last tweets"] = "Derniers tweets"; -$a->strings["Alignment"] = "Alignement"; -$a->strings["Left"] = "Gauche"; -$a->strings["Center"] = "Centre"; -$a->strings["Posts font size"] = "Taille de texte des messages"; -$a->strings["Textareas font size"] = ""; -$a->strings["Set colour scheme"] = "Choisir le schéma de couleurs"; $a->strings["j F, Y"] = "j F, Y"; $a->strings["j F"] = "j F"; $a->strings["Birthday:"] = "Anniversaire:"; $a->strings["Age:"] = "Age:"; +$a->strings["Status:"] = "Statut:"; $a->strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Préférence sexuelle:"; +$a->strings["Homepage:"] = "Page personnelle:"; +$a->strings["Hometown:"] = " Ville d'origine:"; $a->strings["Tags:"] = "Tags :"; +$a->strings["Political Views:"] = "Opinions politiques:"; $a->strings["Religion:"] = "Religion:"; +$a->strings["About:"] = "À propos:"; $a->strings["Hobbies/Interests:"] = "Passe-temps/Centres d'intérêt:"; +$a->strings["Likes:"] = "J'aime :"; +$a->strings["Dislikes:"] = "Je n'aime pas :"; $a->strings["Contact information and Social Networks:"] = "Coordonnées/Réseaux sociaux:"; $a->strings["Musical interests:"] = "Goûts musicaux:"; $a->strings["Books, literature:"] = "Lectures:"; @@ -1665,22 +32,6 @@ $a->strings["Film/dance/culture/entertainment:"] = "Cinéma/Danse/Culture/Divert $a->strings["Love/Romance:"] = "Amour/Romance:"; $a->strings["Work/employment:"] = "Activité professionnelle/Occupation:"; $a->strings["School/education:"] = "Études/Formation:"; -$a->strings["Unknown | Not categorised"] = "Inconnu | Non-classé"; -$a->strings["Block immediately"] = "Bloquer immédiatement"; -$a->strings["Shady, spammer, self-marketer"] = "Douteux, spammeur, accro à l'auto-promotion"; -$a->strings["Known to me, but no opinion"] = "Connu de moi, mais sans opinion"; -$a->strings["OK, probably harmless"] = "OK, probablement inoffensif"; -$a->strings["Reputable, has my trust"] = "Réputé, a toute ma confiance"; -$a->strings["Frequently"] = "Fréquemment"; -$a->strings["Hourly"] = "Toutes les heures"; -$a->strings["Twice daily"] = "Deux fois par jour"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = ""; $a->strings["Male"] = "Masculin"; $a->strings["Female"] = "Féminin"; $a->strings["Currently Male"] = "Actuellement masculin"; @@ -1739,10 +90,191 @@ $a->strings["Uncertain"] = "Incertain"; $a->strings["It's complicated"] = "C'est compliqué"; $a->strings["Don't care"] = "S'en désintéresse"; $a->strings["Ask me"] = "Me demander"; +$a->strings["stopped following"] = "retiré de la liste de suivi"; +$a->strings["Poke"] = "Sollicitations (pokes)"; +$a->strings["View Status"] = "Voir les statuts"; +$a->strings["View Profile"] = "Voir le profil"; +$a->strings["View Photos"] = "Voir les photos"; +$a->strings["Network Posts"] = "Posts du Réseau"; +$a->strings["Edit Contact"] = "Éditer le contact"; +$a->strings["Send PM"] = "Message privé"; +$a->strings["Image/photo"] = "Image/photo"; +$a->strings["%s wrote the following post"] = ""; +$a->strings["$1 wrote:"] = "$1 a écrit:"; +$a->strings["Encrypted content"] = "Contenu chiffré"; +$a->strings["Visible to everybody"] = "Visible par tout le monde"; +$a->strings["show"] = "montrer"; +$a->strings["don't show"] = "cacher"; +$a->strings["Logged out."] = "Déconnecté."; +$a->strings["Login failed."] = "Échec de connexion."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier."; +$a->strings["The error message was:"] = "Le message d'erreur était :"; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; $a->strings["Starts:"] = "Débute:"; $a->strings["Finishes:"] = "Finit:"; -$a->strings["(no subject)"] = "(sans titre)"; +$a->strings["Location:"] = "Localisation:"; +$a->strings["Disallowed profile URL."] = "URL de profil interdite."; +$a->strings["Connect URL missing."] = "URL de connexion manquante."; +$a->strings["This site is not configured to allow communications with other networks."] = "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Aucun protocole de communication ni aucun flux n'a pu être découvert."; +$a->strings["The profile address specified does not provide adequate information."] = "L'adresse de profil indiquée ne fournit par les informations adéquates."; +$a->strings["An author or name was not found."] = "Aucun auteur ou nom d'auteur n'a pu être trouvé."; +$a->strings["No browser URL could be matched to this address."] = "Aucune URL de navigation ne correspond à cette adresse."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel."; +$a->strings["Use mailto: in front of address to force email check."] = "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part."; +$a->strings["Unable to retrieve contact information."] = "Impossible de récupérer les informations du contact."; +$a->strings["following"] = "following"; +$a->strings["An invitation is required."] = "Une invitation est requise."; +$a->strings["Invitation could not be verified."] = "L'invitation fournie n'a pu être validée."; +$a->strings["Invalid OpenID url"] = "Adresse OpenID invalide"; +$a->strings["Please enter the required information."] = "Entrez les informations requises."; +$a->strings["Please use a shorter name."] = "Utilisez un nom plus court."; +$a->strings["Name too short."] = "Nom trop court."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Ceci ne semble pas être votre nom complet (Prénom Nom)."; +$a->strings["Your email domain is not among those allowed on this site."] = "Votre domaine de courriel n'est pas autorisé sur ce site."; +$a->strings["Not a valid email address."] = "Ceci n'est pas une adresse courriel valide."; +$a->strings["Cannot use that email."] = "Impossible d'utiliser ce courriel."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre."; +$a->strings["Nickname is already registered. Please choose another."] = "Pseudo déjà utilisé. Merci d'en choisir un autre."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué."; +$a->strings["An error occurred during registration. Please try again."] = "Une erreur est survenue lors de l'inscription. Merci de recommencer."; +$a->strings["default"] = "défaut"; +$a->strings["An error occurred creating your default profile. Please try again."] = "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer."; +$a->strings["Profile Photos"] = "Photos du profil"; +$a->strings["Unknown | Not categorised"] = "Inconnu | Non-classé"; +$a->strings["Block immediately"] = "Bloquer immédiatement"; +$a->strings["Shady, spammer, self-marketer"] = "Douteux, spammeur, accro à l'auto-promotion"; +$a->strings["Known to me, but no opinion"] = "Connu de moi, mais sans opinion"; +$a->strings["OK, probably harmless"] = "OK, probablement inoffensif"; +$a->strings["Reputable, has my trust"] = "Réputé, a toute ma confiance"; +$a->strings["Frequently"] = "Fréquemment"; +$a->strings["Hourly"] = "Toutes les heures"; +$a->strings["Twice daily"] = "Deux fois par jour"; +$a->strings["Daily"] = "Chaque jour"; +$a->strings["Weekly"] = "Chaque semaine"; +$a->strings["Monthly"] = "Chaque mois"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "Courriel"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = ""; +$a->strings["Add New Contact"] = "Ajouter un nouveau contact"; +$a->strings["Enter address or web location"] = "Entrez son adresse ou sa localisation web"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple: bob@example.com, http://example.com/barbara"; +$a->strings["Connect"] = "Relier"; +$a->strings["%d invitation available"] = array( + 0 => "%d invitation disponible", + 1 => "%d invitations disponibles", +); +$a->strings["Find People"] = "Trouver des personnes"; +$a->strings["Enter name or interest"] = "Entrez un nom ou un centre d'intérêt"; +$a->strings["Connect/Follow"] = "Connecter/Suivre"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Pêche"; +$a->strings["Find"] = "Trouver"; +$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts"; +$a->strings["Similar Interests"] = "Intérêts similaires"; +$a->strings["Random Profile"] = "Profil au hasard"; +$a->strings["Invite Friends"] = "Inviter des amis"; +$a->strings["Networks"] = "Réseaux"; +$a->strings["All Networks"] = "Tous réseaux"; +$a->strings["Saved Folders"] = "Dossiers sauvegardés"; +$a->strings["Everything"] = "Tout"; +$a->strings["Categories"] = "Catégories"; +$a->strings["%d contact in common"] = array( + 0 => "%d contact en commun", + 1 => "%d contacts en commun", +); +$a->strings["show more"] = "montrer plus"; $a->strings[" on Last.fm"] = "sur Last.fm"; +$a->strings["view full size"] = "voir en pleine taille"; +$a->strings["Miscellaneous"] = "Divers"; +$a->strings["year"] = "an"; +$a->strings["month"] = "mois"; +$a->strings["day"] = "jour"; +$a->strings["never"] = "jamais"; +$a->strings["less than a second ago"] = "il y a moins d'une seconde"; +$a->strings["years"] = "ans"; +$a->strings["months"] = "mois"; +$a->strings["week"] = "semaine"; +$a->strings["weeks"] = "semaines"; +$a->strings["days"] = "jours"; +$a->strings["hour"] = "heure"; +$a->strings["hours"] = "heures"; +$a->strings["minute"] = "minute"; +$a->strings["minutes"] = "minutes"; +$a->strings["second"] = "seconde"; +$a->strings["seconds"] = "secondes"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s auparavant"; +$a->strings["%s's birthday"] = "Anniversaire de %s's"; +$a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !"; +$a->strings["Click here to upgrade."] = "Cliquez ici pour mettre à jour."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Cette action dépasse les limites définies par votre abonnement."; +$a->strings["This action is not available under your subscription plan."] = "Cette action n'est pas disponible avec votre abonnement."; +$a->strings["(no subject)"] = "(sans titre)"; +$a->strings["noreply"] = "noreply"; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s est désormais lié à %2\$s"; +$a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora"; +$a->strings["photo"] = "photo"; +$a->strings["status"] = "le statut"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s"; +$a->strings["Attachments:"] = "Pièces jointes : "; +$a->strings["[Name Withheld]"] = "[Nom non-publié]"; +$a->strings["A new person is sharing with you at "] = "Une nouvelle personne partage avec vous à "; +$a->strings["You have a new follower at "] = "Vous avez un nouvel abonné à "; +$a->strings["Item not found."] = "Élément introuvable."; +$a->strings["Do you really want to delete this item?"] = ""; +$a->strings["Yes"] = "Oui"; +$a->strings["Cancel"] = "Annuler"; +$a->strings["Permission denied."] = "Permission refusée."; +$a->strings["Archives"] = "Archives"; +$a->strings["General Features"] = ""; +$a->strings["Multiple Profiles"] = ""; +$a->strings["Ability to create multiple profiles"] = ""; +$a->strings["Post Composition Features"] = ""; +$a->strings["Richtext Editor"] = ""; +$a->strings["Enable richtext editor"] = ""; +$a->strings["Post Preview"] = ""; +$a->strings["Allow previewing posts and comments before publishing them"] = ""; +$a->strings["Network Sidebar Widgets"] = ""; +$a->strings["Search by Date"] = ""; +$a->strings["Ability to select posts by date ranges"] = ""; +$a->strings["Group Filter"] = ""; +$a->strings["Enable widget to display Network posts only from selected group"] = ""; +$a->strings["Network Filter"] = ""; +$a->strings["Enable widget to display Network posts only from selected network"] = ""; +$a->strings["Saved Searches"] = "Recherches"; +$a->strings["Save search terms for re-use"] = ""; +$a->strings["Network Tabs"] = ""; +$a->strings["Network Personal Tab"] = ""; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; +$a->strings["Network New Tab"] = ""; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; +$a->strings["Network Shared Links Tab"] = ""; +$a->strings["Enable tab to display only Network posts with links in them"] = ""; +$a->strings["Post/Comment Tools"] = ""; +$a->strings["Multiple Deletion"] = ""; +$a->strings["Select and delete multiple posts/comments at once"] = ""; +$a->strings["Edit Sent Posts"] = ""; +$a->strings["Edit and correct posts and comments after sending"] = ""; +$a->strings["Tagging"] = ""; +$a->strings["Ability to tag existing posts"] = ""; +$a->strings["Post Categories"] = ""; +$a->strings["Add categories to your posts"] = ""; +$a->strings["Ability to file posts under folders"] = ""; +$a->strings["Dislike Posts"] = ""; +$a->strings["Ability to dislike posts/comments"] = ""; +$a->strings["Star Posts"] = ""; +$a->strings["Ability to mark special posts with a star indicator"] = ""; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de localiser les informations DNS pour le serveur de base de données '%s'"; $a->strings["prev"] = "précédent"; $a->strings["first"] = "premier"; $a->strings["last"] = "dernier"; @@ -1754,6 +286,9 @@ $a->strings["%d Contact"] = array( 0 => "%d contact", 1 => "%d contacts", ); +$a->strings["View Contacts"] = "Voir les contacts"; +$a->strings["Search"] = "Recherche"; +$a->strings["Save"] = "Sauver"; $a->strings["poke"] = "titiller"; $a->strings["poked"] = "a titillé"; $a->strings["ping"] = "attirer l'attention"; @@ -1786,6 +321,13 @@ $a->strings["frustrated"] = "frustrée"; $a->strings["motivated"] = "motivée"; $a->strings["relaxed"] = "détendue"; $a->strings["surprised"] = "surprise"; +$a->strings["Monday"] = "Lundi"; +$a->strings["Tuesday"] = "Mardi"; +$a->strings["Wednesday"] = "Mercredi"; +$a->strings["Thursday"] = "Jeudi"; +$a->strings["Friday"] = "Vendredi"; +$a->strings["Saturday"] = "Samedi"; +$a->strings["Sunday"] = "Dimanche"; $a->strings["January"] = "Janvier"; $a->strings["February"] = "Février"; $a->strings["March"] = "Mars"; @@ -1798,141 +340,88 @@ $a->strings["September"] = "Septembre"; $a->strings["October"] = "Octobre"; $a->strings["November"] = "Novembre"; $a->strings["December"] = "Décembre"; +$a->strings["View Video"] = ""; $a->strings["bytes"] = "octets"; $a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer"; -$a->strings["default"] = "défaut"; +$a->strings["link to source"] = "lien original"; $a->strings["Select an alternate language"] = "Choisir une langue alternative"; +$a->strings["event"] = "évènement"; $a->strings["activity"] = "activité"; +$a->strings["comment"] = array( + 0 => "", + 1 => "commentaire", +); $a->strings["post"] = "publication"; $a->strings["Item filed"] = "Élément classé"; -$a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora"; -$a->strings["Attachments:"] = "Pièces jointes : "; -$a->strings["view full size"] = "voir en pleine taille"; -$a->strings["Embedded content"] = "Contenu incorporé"; -$a->strings["Embedding disabled"] = "Incorporation désactivée"; -$a->strings["Error decoding account file"] = ""; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; -$a->strings["Error! I can't import this file: DB schema version is not compatible."] = ""; -$a->strings["Error! Cannot check nickname"] = ""; -$a->strings["User '%s' already exists on this server!"] = ""; -$a->strings["User creation error"] = ""; -$a->strings["User profile creation error"] = ""; -$a->strings["%d contact not imported"] = array( - 0 => "", - 1 => "", -); -$a->strings["Done. You can now login with your username and password"] = ""; $a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un groupe supprimé a été recréé. Les permissions existantes pourraient s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom."; $a->strings["Default privacy group for new contacts"] = "Paramètres de confidentialité par défaut pour les nouveaux contacts"; $a->strings["Everybody"] = "Tout le monde"; $a->strings["edit"] = "éditer"; +$a->strings["Groups"] = "Groupes"; $a->strings["Edit group"] = "Editer groupe"; $a->strings["Create a new group"] = "Créer un nouveau groupe"; $a->strings["Contacts not in any group"] = "Contacts n'appartenant à aucun groupe"; -$a->strings["Logout"] = "Se déconnecter"; -$a->strings["End this session"] = "Mettre fin à cette session"; -$a->strings["Status"] = "Statut"; -$a->strings["Sign in"] = "Se connecter"; -$a->strings["Home Page"] = "Page d'accueil"; -$a->strings["Create an account"] = "Créer un compte"; -$a->strings["Help and documentation"] = "Aide et documentation"; -$a->strings["Apps"] = "Applications"; -$a->strings["Addon applications, utilities, games"] = "Applications supplémentaires, utilitaires, jeux"; -$a->strings["Search site content"] = "Rechercher dans le contenu du site"; -$a->strings["Conversations on this site"] = "Conversations ayant cours sur ce site"; -$a->strings["Directory"] = "Annuaire"; -$a->strings["People directory"] = "Annuaire des utilisateurs"; -$a->strings["Conversations from your friends"] = "Conversations de vos amis"; -$a->strings["Network Reset"] = ""; -$a->strings["Load Network page with no filters"] = ""; -$a->strings["Friend Requests"] = "Demande d'amitié"; -$a->strings["See all notifications"] = "Voir toute notification"; -$a->strings["Mark all system notifications seen"] = "Marquer toutes les notifications système comme 'vues'"; -$a->strings["Private mail"] = "Messages privés"; -$a->strings["Inbox"] = "Messages entrants"; -$a->strings["Outbox"] = "Messages sortants"; -$a->strings["Manage"] = "Gérer"; -$a->strings["Manage other pages"] = "Gérer les autres pages"; -$a->strings["Profiles"] = "Profils"; -$a->strings["Manage/Edit Profiles"] = ""; -$a->strings["Manage/edit friends and contacts"] = "Gérer/éditer les amitiés et contacts"; -$a->strings["Site setup and configuration"] = "Démarrage et configuration du site"; -$a->strings["Nothing new here"] = "Rien de neuf ici"; -$a->strings["Add New Contact"] = "Ajouter un nouveau contact"; -$a->strings["Enter address or web location"] = "Entrez son adresse ou sa localisation web"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d invitation disponible", - 1 => "%d invitations disponibles", -); -$a->strings["Find People"] = "Trouver des personnes"; -$a->strings["Enter name or interest"] = "Entrez un nom ou un centre d'intérêt"; -$a->strings["Connect/Follow"] = "Connecter/Suivre"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Pêche"; -$a->strings["Random Profile"] = "Profil au hasard"; -$a->strings["Networks"] = "Réseaux"; -$a->strings["All Networks"] = "Tous réseaux"; -$a->strings["Saved Folders"] = "Dossiers sauvegardés"; -$a->strings["Everything"] = "Tout"; -$a->strings["Categories"] = "Catégories"; -$a->strings["Logged out."] = "Déconnecté."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier."; -$a->strings["The error message was:"] = "Le message d'erreur était :"; -$a->strings["Miscellaneous"] = "Divers"; -$a->strings["year"] = "an"; -$a->strings["month"] = "mois"; -$a->strings["day"] = "jour"; -$a->strings["never"] = "jamais"; -$a->strings["less than a second ago"] = "il y a moins d'une seconde"; -$a->strings["week"] = "semaine"; -$a->strings["hour"] = "heure"; -$a->strings["hours"] = "heures"; -$a->strings["minute"] = "minute"; -$a->strings["minutes"] = "minutes"; -$a->strings["second"] = "seconde"; -$a->strings["seconds"] = "secondes"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s auparavant"; -$a->strings["%s's birthday"] = "Anniversaire de %s's"; -$a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !"; -$a->strings["From: "] = "De: "; -$a->strings["Image/photo"] = "Image/photo"; -$a->strings["$1 wrote:"] = "$1 a écrit:"; -$a->strings["Encrypted content"] = "Contenu chiffré"; -$a->strings["Multiple Profiles"] = ""; -$a->strings["Ability to create multiple profiles"] = ""; -$a->strings["Richtext Editor"] = ""; -$a->strings["Enable richtext editor"] = ""; -$a->strings["Post Preview"] = ""; -$a->strings["Allow previewing posts and comments before publishing them"] = ""; -$a->strings["Search by Date"] = ""; -$a->strings["Ability to select posts by date ranges"] = ""; -$a->strings["Group Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected group"] = ""; -$a->strings["Network Filter"] = ""; -$a->strings["Enable widget to display Network posts only from selected network"] = ""; -$a->strings["Save search terms for re-use"] = ""; -$a->strings["Network Personal Tab"] = ""; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; -$a->strings["Network New Tab"] = ""; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = ""; -$a->strings["Network Shared Links Tab"] = ""; -$a->strings["Enable tab to display only Network posts with links in them"] = ""; -$a->strings["Multiple Deletion"] = ""; -$a->strings["Select and delete multiple posts/comments at once"] = ""; -$a->strings["Edit Sent Posts"] = ""; -$a->strings["Edit and correct posts and comments after sending"] = ""; -$a->strings["Tagging"] = ""; -$a->strings["Ability to tag existing posts"] = ""; -$a->strings["Post Categories"] = ""; -$a->strings["Add categories to your posts"] = ""; -$a->strings["Ability to file posts under folders"] = ""; -$a->strings["Dislike Posts"] = ""; -$a->strings["Ability to dislike posts/comments"] = ""; -$a->strings["Star Posts"] = ""; -$a->strings["Ability to mark special posts with a star indicator"] = ""; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de localiser les informations DNS pour le serveur de base de données '%s'"; -$a->strings["[no subject]"] = "[pas de sujet]"; -$a->strings["Visible to everybody"] = "Visible par tout le monde"; +$a->strings["add"] = "ajouter"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s a sollicité %2\$s"; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s est d'humeur %2\$s"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a taggué %3\$s de %2\$s avec %4\$s"; +$a->strings["post/item"] = "publication/élément"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s a marqué le %3\$s de %2\$s comme favori"; +$a->strings["Select"] = "Sélectionner"; +$a->strings["Delete"] = "Supprimer"; +$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s"; +$a->strings["Categories:"] = "Catégories:"; +$a->strings["Filed under:"] = "Rangé sous:"; +$a->strings["%s from %s"] = "%s de %s"; +$a->strings["View in context"] = "Voir dans le contexte"; +$a->strings["Please wait"] = "Patientez"; +$a->strings["remove"] = "enlever"; +$a->strings["Delete Selected Items"] = "Supprimer les éléments sélectionnés"; +$a->strings["Follow Thread"] = "Suivre le fil"; +$a->strings["%s likes this."] = "%s aime ça."; +$a->strings["%s doesn't like this."] = "%s n'aime pas ça."; +$a->strings["%2\$d people like this"] = ""; +$a->strings["%2\$d people don't like this"] = ""; +$a->strings["and"] = "et"; +$a->strings[", and %d other people"] = ", et %d autres personnes"; +$a->strings["%s like this."] = "%s aiment ça."; +$a->strings["%s don't like this."] = "%s n'aiment pas ça."; +$a->strings["Visible to everybody"] = "Visible par tout le monde"; +$a->strings["Please enter a link URL:"] = "Entrez un lien web:"; +$a->strings["Please enter a video link/URL:"] = "Entrez un lien/URL video :"; +$a->strings["Please enter an audio link/URL:"] = "Entrez un lien/URL audio :"; +$a->strings["Tag term:"] = "Tag : "; +$a->strings["Save to Folder:"] = "Sauver dans le Dossier:"; +$a->strings["Where are you right now?"] = "Où êtes-vous présentemment?"; +$a->strings["Delete item(s)?"] = ""; +$a->strings["Post to Email"] = "Publier aussi par courriel"; +$a->strings["Share"] = "Partager"; +$a->strings["Upload photo"] = "Joindre photo"; +$a->strings["upload photo"] = "envoi image"; +$a->strings["Attach file"] = "Joindre fichier"; +$a->strings["attach file"] = "ajout fichier"; +$a->strings["Insert web link"] = "Insérer lien web"; +$a->strings["web link"] = "lien web"; +$a->strings["Insert video link"] = "Insérer un lien video"; +$a->strings["video link"] = "lien vidéo"; +$a->strings["Insert audio link"] = "Insérer un lien audio"; +$a->strings["audio link"] = "lien audio"; +$a->strings["Set your location"] = "Définir votre localisation"; +$a->strings["set location"] = "spéc. localisation"; +$a->strings["Clear browser location"] = "Effacer la localisation du navigateur"; +$a->strings["clear location"] = "supp. localisation"; +$a->strings["Set title"] = "Définir un titre"; +$a->strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)"; +$a->strings["Permission settings"] = "Réglages des permissions"; +$a->strings["permissions"] = "permissions"; +$a->strings["CC: email addresses"] = "CC: adresses de courriel"; +$a->strings["Public post"] = "Notice publique"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@exemple.com, mary@exemple.com"; +$a->strings["Preview"] = "Aperçu"; +$a->strings["Post to Groups"] = ""; +$a->strings["Post to Contacts"] = ""; +$a->strings["Private post"] = ""; $a->strings["Friendica Notification"] = "Notification Friendica"; $a->strings["Thank You,"] = "Merci, "; $a->strings["%s Administrator"] = "L'administrateur de %s"; @@ -1971,75 +460,1164 @@ $a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from $a->strings["Name:"] = "Nom :"; $a->strings["Photo:"] = "Photo :"; $a->strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour approuver ou rejeter la suggestion."; -$a->strings["Connect URL missing."] = "URL de connexion manquante."; -$a->strings["This site is not configured to allow communications with other networks."] = "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Aucun protocole de communication ni aucun flux n'a pu être découvert."; -$a->strings["The profile address specified does not provide adequate information."] = "L'adresse de profil indiquée ne fournit par les informations adéquates."; -$a->strings["An author or name was not found."] = "Aucun auteur ou nom d'auteur n'a pu être trouvé."; -$a->strings["No browser URL could be matched to this address."] = "Aucune URL de navigation ne correspond à cette adresse."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel."; -$a->strings["Use mailto: in front of address to force email check."] = "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part."; -$a->strings["Unable to retrieve contact information."] = "Impossible de récupérer les informations du contact."; -$a->strings["following"] = "following"; -$a->strings["A new person is sharing with you at "] = "Une nouvelle personne partage avec vous à "; -$a->strings["You have a new follower at "] = "Vous avez un nouvel abonné à "; -$a->strings["Archives"] = "Archives"; -$a->strings["An invitation is required."] = "Une invitation est requise."; -$a->strings["Invitation could not be verified."] = "L'invitation fournie n'a pu être validée."; -$a->strings["Invalid OpenID url"] = "Adresse OpenID invalide"; -$a->strings["Please enter the required information."] = "Entrez les informations requises."; -$a->strings["Please use a shorter name."] = "Utilisez un nom plus court."; -$a->strings["Name too short."] = "Nom trop court."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Ceci ne semble pas être votre nom complet (Prénom Nom)."; -$a->strings["Your email domain is not among those allowed on this site."] = "Votre domaine de courriel n'est pas autorisé sur ce site."; -$a->strings["Not a valid email address."] = "Ceci n'est pas une adresse courriel valide."; -$a->strings["Cannot use that email."] = "Impossible d'utiliser ce courriel."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre."; -$a->strings["Nickname is already registered. Please choose another."] = "Pseudo déjà utilisé. Merci d'en choisir un autre."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué."; -$a->strings["An error occurred during registration. Please try again."] = "Une erreur est survenue lors de l'inscription. Merci de recommencer."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer."; +$a->strings["[no subject]"] = "[pas de sujet]"; +$a->strings["Wall Photos"] = "Photos du mur"; +$a->strings["Nothing new here"] = "Rien de neuf ici"; +$a->strings["Clear notifications"] = ""; +$a->strings["Logout"] = "Se déconnecter"; +$a->strings["End this session"] = "Mettre fin à cette session"; +$a->strings["Status"] = "Statut"; +$a->strings["Your posts and conversations"] = "Vos notices et conversations"; +$a->strings["Your profile page"] = "Votre page de profil"; +$a->strings["Photos"] = "Photos"; +$a->strings["Your photos"] = "Vos photos"; +$a->strings["Events"] = "Événements"; +$a->strings["Your events"] = "Vos événements"; +$a->strings["Personal notes"] = "Notes personnelles"; +$a->strings["Your personal photos"] = "Vos photos personnelles"; +$a->strings["Login"] = "Connexion"; +$a->strings["Sign in"] = "Se connecter"; +$a->strings["Home"] = "Profil"; +$a->strings["Home Page"] = "Page d'accueil"; +$a->strings["Register"] = "S'inscrire"; +$a->strings["Create an account"] = "Créer un compte"; +$a->strings["Help"] = "Aide"; +$a->strings["Help and documentation"] = "Aide et documentation"; +$a->strings["Apps"] = "Applications"; +$a->strings["Addon applications, utilities, games"] = "Applications supplémentaires, utilitaires, jeux"; +$a->strings["Search site content"] = "Rechercher dans le contenu du site"; +$a->strings["Community"] = "Communauté"; +$a->strings["Conversations on this site"] = "Conversations ayant cours sur ce site"; +$a->strings["Directory"] = "Annuaire"; +$a->strings["People directory"] = "Annuaire des utilisateurs"; +$a->strings["Network"] = "Réseau"; +$a->strings["Conversations from your friends"] = "Conversations de vos amis"; +$a->strings["Network Reset"] = ""; +$a->strings["Load Network page with no filters"] = ""; +$a->strings["Introductions"] = "Introductions"; +$a->strings["Friend Requests"] = "Demande d'amitié"; +$a->strings["Notifications"] = "Notifications"; +$a->strings["See all notifications"] = "Voir toute notification"; +$a->strings["Mark all system notifications seen"] = "Marquer toutes les notifications système comme 'vues'"; +$a->strings["Messages"] = "Messages"; +$a->strings["Private mail"] = "Messages privés"; +$a->strings["Inbox"] = "Messages entrants"; +$a->strings["Outbox"] = "Messages sortants"; +$a->strings["New Message"] = "Nouveau message"; +$a->strings["Manage"] = "Gérer"; +$a->strings["Manage other pages"] = "Gérer les autres pages"; +$a->strings["Delegations"] = ""; +$a->strings["Delegate Page Management"] = "Déléguer la gestion de la page"; +$a->strings["Settings"] = "Réglages"; +$a->strings["Account settings"] = "Compte"; +$a->strings["Profiles"] = "Profils"; +$a->strings["Manage/Edit Profiles"] = ""; +$a->strings["Contacts"] = "Contacts"; +$a->strings["Manage/edit friends and contacts"] = "Gérer/éditer les amitiés et contacts"; +$a->strings["Admin"] = "Admin"; +$a->strings["Site setup and configuration"] = "Démarrage et configuration du site"; +$a->strings["Navigation"] = ""; +$a->strings["Site map"] = ""; +$a->strings["Embedded content"] = "Contenu incorporé"; +$a->strings["Embedding disabled"] = "Incorporation désactivée"; +$a->strings["Error decoding account file"] = ""; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = ""; +$a->strings["Error! Cannot check nickname"] = ""; +$a->strings["User '%s' already exists on this server!"] = ""; +$a->strings["User creation error"] = ""; +$a->strings["User profile creation error"] = ""; +$a->strings["%d contact not imported"] = array( + 0 => "", + 1 => "", +); +$a->strings["Done. You can now login with your username and password"] = ""; $a->strings["Welcome "] = "Bienvenue "; $a->strings["Please upload a profile photo."] = "Merci d'illustrer votre profil d'une image."; $a->strings["Welcome back "] = "Bienvenue à nouveau, "; $a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé."; -$a->strings["stopped following"] = "retiré de la liste de suivi"; -$a->strings["Poke"] = "Sollicitations (pokes)"; -$a->strings["View Status"] = "Voir les statuts"; -$a->strings["View Profile"] = "Voir le profil"; -$a->strings["View Photos"] = "Voir les photos"; -$a->strings["Network Posts"] = "Posts du Réseau"; -$a->strings["Edit Contact"] = "Éditer le contact"; -$a->strings["Send PM"] = "Message privé"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s a sollicité %2\$s"; -$a->strings["post/item"] = "publication/élément"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s a marqué le %3\$s de %2\$s comme favori"; -$a->strings["Categories:"] = "Catégories:"; -$a->strings["Filed under:"] = "Rangé sous:"; -$a->strings["remove"] = "enlever"; -$a->strings["Delete Selected Items"] = "Supprimer les éléments sélectionnés"; -$a->strings["Follow Thread"] = "Suivre le fil"; -$a->strings["%s likes this."] = "%s aime ça."; -$a->strings["%s doesn't like this."] = "%s n'aime pas ça."; -$a->strings["%2\$d people like this."] = "%2\$d personnes aiment ça."; -$a->strings["%2\$d people don't like this."] = "%2\$d personnes n'aiment pas ça."; -$a->strings["and"] = "et"; -$a->strings[", and %d other people"] = ", et %d autres personnes"; -$a->strings["%s like this."] = "%s aiment ça."; -$a->strings["%s don't like this."] = "%s n'aiment pas ça."; -$a->strings["Visible to everybody"] = "Visible par tout le monde"; -$a->strings["Please enter a video link/URL:"] = "Entrez un lien/URL video :"; -$a->strings["Please enter an audio link/URL:"] = "Entrez un lien/URL audio :"; -$a->strings["Tag term:"] = "Tag : "; -$a->strings["Where are you right now?"] = "Où êtes-vous présentemment?"; -$a->strings["Delete item(s)?"] = ""; -$a->strings["permissions"] = "permissions"; -$a->strings["Click here to upgrade."] = "Cliquez ici pour mettre à jour."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Cette action dépasse les limites définies par votre abonnement."; -$a->strings["This action is not available under your subscription plan."] = "Cette action n'est pas disponible avec votre abonnement."; +$a->strings["Profile not found."] = "Profil introuvable."; +$a->strings["Profile deleted."] = "Profil supprimé."; +$a->strings["Profile-"] = "Profil-"; +$a->strings["New profile created."] = "Nouveau profil créé."; +$a->strings["Profile unavailable to clone."] = "Ce profil ne peut être cloné."; +$a->strings["Profile Name is required."] = "Le nom du profil est requis."; +$a->strings["Marital Status"] = "Statut marital"; +$a->strings["Romantic Partner"] = "Partenaire/conjoint"; +$a->strings["Likes"] = "Derniers \"J'aime\""; +$a->strings["Dislikes"] = "Derniers \"Je n'aime pas\""; +$a->strings["Work/Employment"] = "Travail/Occupation"; +$a->strings["Religion"] = "Religion"; +$a->strings["Political Views"] = "Tendance politique"; +$a->strings["Gender"] = "Sexe"; +$a->strings["Sexual Preference"] = "Préférence sexuelle"; +$a->strings["Homepage"] = "Site internet"; +$a->strings["Interests"] = "Centres d'intérêt"; +$a->strings["Address"] = "Adresse"; +$a->strings["Location"] = "Localisation"; +$a->strings["Profile updated."] = "Profil mis à jour."; +$a->strings[" and "] = " et "; +$a->strings["public profile"] = "profil public"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s a changé %2\$s en “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = "Visiter le %2\$s de %1\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour son %2\$s, en modifiant %3\$s."; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher ma liste d'amis/contacts des visiteurs de ce profil?"; +$a->strings["No"] = "Non"; +$a->strings["Edit Profile Details"] = "Éditer les détails du profil"; +$a->strings["Submit"] = "Envoyer"; +$a->strings["Change Profile Photo"] = ""; +$a->strings["View this profile"] = "Voir ce profil"; +$a->strings["Create a new profile using these settings"] = "Créer un nouveau profil en utilisant ces réglages"; +$a->strings["Clone this profile"] = "Cloner ce profil"; +$a->strings["Delete this profile"] = "Supprimer ce profil"; +$a->strings["Profile Name:"] = "Nom du profil:"; +$a->strings["Your Full Name:"] = "Votre nom complet:"; +$a->strings["Title/Description:"] = "Titre/Description:"; +$a->strings["Your Gender:"] = "Votre genre:"; +$a->strings["Birthday (%s):"] = "Anniversaire (%s):"; +$a->strings["Street Address:"] = "Adresse postale:"; +$a->strings["Locality/City:"] = "Ville/Localité:"; +$a->strings["Postal/Zip Code:"] = "Code postal:"; +$a->strings["Country:"] = "Pays:"; +$a->strings["Region/State:"] = "Région/État:"; +$a->strings[" Marital Status:"] = " Statut marital:"; +$a->strings["Who: (if applicable)"] = "Qui: (si pertinent)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Depuis [date] :"; +$a->strings["Homepage URL:"] = "Page personnelle:"; +$a->strings["Religious Views:"] = "Opinions religieuses:"; +$a->strings["Public Keywords:"] = "Mots-clés publics:"; +$a->strings["Private Keywords:"] = "Mots-clés privés:"; +$a->strings["Example: fishing photography software"] = "Exemple: football dessin programmation"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)"; +$a->strings["Tell us about yourself..."] = "Parlez-nous de vous..."; +$a->strings["Hobbies/Interests"] = "Passe-temps/Centres d'intérêt"; +$a->strings["Contact information and Social Networks"] = "Coordonnées/Réseaux sociaux"; +$a->strings["Musical interests"] = "Goûts musicaux"; +$a->strings["Books, literature"] = "Lectures"; +$a->strings["Television"] = "Télévision"; +$a->strings["Film/dance/culture/entertainment"] = "Cinéma/Danse/Culture/Divertissement"; +$a->strings["Love/romance"] = "Amour/Romance"; +$a->strings["Work/employment"] = "Activité professionnelle/Occupation"; +$a->strings["School/education"] = "Études/Formation"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Ceci est votre profil public.
Il peut être visible par n'importe quel utilisateur d'Internet."; +$a->strings["Age: "] = "Age: "; +$a->strings["Edit/Manage Profiles"] = "Editer/gérer les profils"; +$a->strings["Change profile photo"] = "Changer de photo de profil"; +$a->strings["Create New Profile"] = "Créer un nouveau profil"; +$a->strings["Profile Image"] = "Image du profil"; +$a->strings["visible to everybody"] = "visible par tous"; +$a->strings["Edit visibility"] = "Changer la visibilité"; +$a->strings["Permission denied"] = "Permission refusée"; +$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide."; +$a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil"; +$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer."; +$a->strings["Visible To"] = "Visible par"; +$a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)"; +$a->strings["Personal Notes"] = "Notes personnelles"; +$a->strings["Public access denied."] = "Accès public refusé."; +$a->strings["Access to this profile has been restricted."] = "L'accès au profil a été restreint."; +$a->strings["Item has been removed."] = "Cet élément a été enlevé."; +$a->strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]"; +$a->strings["Edit contact"] = "Éditer le contact"; +$a->strings["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe"; +$a->strings["{0} wants to be your friend"] = "{0} souhaite être votre ami(e)"; +$a->strings["{0} sent you a message"] = "{0} vous a envoyé un message"; +$a->strings["{0} requested registration"] = "{0} a demandé à s'inscrire"; +$a->strings["{0} commented %s's post"] = "{0} a commenté une notice de %s"; +$a->strings["{0} liked %s's post"] = "{0} a aimé une notice de %s"; +$a->strings["{0} disliked %s's post"] = "{0} n'a pas aimé une notice de %s"; +$a->strings["{0} is now friends with %s"] = "{0} est désormais ami(e) avec %s"; +$a->strings["{0} posted"] = "{0} a posté"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} a taggué la notice de %s avec #%s"; +$a->strings["{0} mentioned you in a post"] = "{0} vous a mentionné dans une publication"; +$a->strings["Theme settings updated."] = "Réglages du thème sauvés."; +$a->strings["Site"] = "Site"; +$a->strings["Users"] = "Utilisateurs"; +$a->strings["Plugins"] = "Extensions"; +$a->strings["Themes"] = "Thèmes"; +$a->strings["DB updates"] = "Mise-à-jour de la base"; +$a->strings["Logs"] = "Journaux"; +$a->strings["Plugin Features"] = "Propriétés des extensions"; +$a->strings["User registrations waiting for confirmation"] = "Inscriptions en attente de confirmation"; +$a->strings["Normal Account"] = "Compte normal"; +$a->strings["Soapbox Account"] = "Compte \"boîte à savon\""; +$a->strings["Community/Celebrity Account"] = "Compte de communauté/célébrité"; +$a->strings["Automatic Friend Account"] = "Compte auto-amical"; +$a->strings["Blog Account"] = "Compte de blog"; +$a->strings["Private Forum"] = "Forum privé"; +$a->strings["Message queues"] = "Files d'attente des messages"; +$a->strings["Administration"] = "Administration"; +$a->strings["Summary"] = "Résumé"; +$a->strings["Registered users"] = "Utilisateurs inscrits"; +$a->strings["Pending registrations"] = "Inscriptions en attente"; +$a->strings["Version"] = "Versio"; +$a->strings["Active plugins"] = "Extensions activés"; +$a->strings["Site settings updated."] = "Réglages du site mis-à-jour."; +$a->strings["No special theme for mobile devices"] = "Pas de thème particulier pour les terminaux mobiles"; +$a->strings["Never"] = "Jamais"; +$a->strings["Multi user instance"] = "Instance multi-utilisateurs"; +$a->strings["Closed"] = "Fermé"; +$a->strings["Requires approval"] = "Demande une apptrobation"; +$a->strings["Open"] = "Ouvert"; +$a->strings["No SSL policy, links will track page SSL state"] = "Pas de politique SSL, le liens conserveront l'état SSL de la page"; +$a->strings["Force all links to use SSL"] = "Forcer tous les liens à utiliser SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)"; +$a->strings["Registration"] = "Inscription"; +$a->strings["File upload"] = "Téléversement de fichier"; +$a->strings["Policies"] = "Politiques"; +$a->strings["Advanced"] = "Avancé"; +$a->strings["Performance"] = "Performance"; +$a->strings["Site name"] = "Nom du site"; +$a->strings["Banner/Logo"] = "Bannière/Logo"; +$a->strings["System language"] = "Langue du système"; +$a->strings["System theme"] = "Thème du système"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Thème par défaut sur ce site - peut être changé en fonction des profils - changer les réglages du thème"; +$a->strings["Mobile system theme"] = "Thème mobile"; +$a->strings["Theme for mobile devices"] = "Thème pour les terminaux mobiles"; +$a->strings["SSL link policy"] = "Politique SSL pour les liens"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Détermine si les liens générés doivent forcer l'usage de SSL"; +$a->strings["'Share' element"] = ""; +$a->strings["Activates the bbcode element 'share' for repeating items."] = ""; +$a->strings["Hide help entry from navigation menu"] = "Cacher l'aide du menu de navigation"; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = ""; +$a->strings["Single user instance"] = "Instance mono-utilisateur"; +$a->strings["Make this instance multi-user or single-user for the named user"] = ""; +$a->strings["Maximum image size"] = "Taille maximale des images"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"."; +$a->strings["Maximum image length"] = "Longueur maximale des images"; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Longueur maximale (en pixels) du plus long côté des images téléversées. La valeur par défaut est -1, soit une absence de limite."; +$a->strings["JPEG image quality"] = "Qualité JPEG des images"; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale."; +$a->strings["Register policy"] = "Politique d'inscription"; +$a->strings["Maximum Daily Registrations"] = ""; +$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day. If register is set to closed, this setting has no effect."] = ""; +$a->strings["Register text"] = "Texte d'inscription"; +$a->strings["Will be displayed prominently on the registration page."] = "Sera affiché de manière bien visible sur la page d'accueil."; +$a->strings["Accounts abandoned after x days"] = "Les comptes sont abandonnés après x jours"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction."; +$a->strings["Allowed friend domains"] = "Domaines autorisés"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines"; +$a->strings["Allowed email domains"] = "Domaines courriel autorisés"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines"; +$a->strings["Block public"] = "Interdire la publication globale"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques."; +$a->strings["Force publish"] = "Forcer la publication globale"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site."; +$a->strings["Global directory update URL"] = "URL de mise-à-jour de l'annuaire global"; +$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible."; +$a->strings["Allow threaded items"] = "Activer les commentaires imbriqués"; +$a->strings["Allow infinite level threading for items on this site."] = "Permettre une imbrication infinie des commentaires."; +$a->strings["Private posts by default for new users"] = "Publications privées par défaut pour les nouveaux utilisateurs"; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Rendre les posts de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde."; +$a->strings["Don't include post content in email notifications"] = ""; +$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = ""; +$a->strings["Disallow public access to addons listed in the apps menu."] = ""; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = ""; +$a->strings["Don't embed private images in posts"] = ""; +$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = ""; +$a->strings["Block multiple registrations"] = "Interdire les inscriptions multiples"; +$a->strings["Disallow users to register additional accounts for use as pages."] = "Ne pas permettre l'inscription de comptes multiples comme des pages."; +$a->strings["OpenID support"] = "Support OpenID"; +$a->strings["OpenID support for registration and logins."] = "Supporter OpenID pour les inscriptions et connexions."; +$a->strings["Fullname check"] = "Vérification du \"Prénom Nom\""; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus"; +$a->strings["UTF-8 Regular expressions"] = "Regex UTF-8"; +$a->strings["Use PHP UTF8 regular expressions"] = "Utiliser les expressions rationnelles de PHP en UTF8"; +$a->strings["Show Community Page"] = "Montrer la \"Place publique\""; +$a->strings["Display a Community page showing all recent public postings on this site."] = "Afficher une page Communauté avec toutes les publications publiques récentes du site."; +$a->strings["Enable OStatus support"] = "Activer le support d'OStatus"; +$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fournir une compatibilité OStatus (identi.ca, status.net, etc.). Toutes les communications d'OStatus sont publiques, des avertissements liés à la vie privée seront affichés si utile."; +$a->strings["OStatus conversation completion interval"] = ""; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = ""; +$a->strings["Enable Diaspora support"] = "Activer le support de Diaspora"; +$a->strings["Provide built-in Diaspora network compatibility."] = "Fournir une compatibilité Diaspora intégrée."; +$a->strings["Only allow Friendica contacts"] = "N'autoriser que les contacts Friendica"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés."; +$a->strings["Verify SSL"] = "Vérifier SSL"; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé."; +$a->strings["Proxy user"] = "Utilisateur du proxy"; +$a->strings["Proxy URL"] = "URL du proxy"; +$a->strings["Network timeout"] = "Dépassement du délai d'attente du réseau"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)."; +$a->strings["Delivery interval"] = "Intervalle de transmission"; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Rallonge le processus de transmissions pour réduire la charge système (en secondes). Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS, 0-1 pour les gros servers dédiés."; +$a->strings["Poll interval"] = "Intervalle de réception"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission."; +$a->strings["Maximum Load Average"] = "Plafond de la charge moyenne"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50."; +$a->strings["Use MySQL full text engine"] = "Utiliser le moteur de recherche plein texte de MySQL"; +$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus."; +$a->strings["Path to item cache"] = "Chemin vers le cache des objets."; +$a->strings["Cache duration in seconds"] = "Durée du cache en secondes"; +$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = ""; +$a->strings["Path for lock file"] = "Chemin vers le ficher de verrouillage"; +$a->strings["Temp path"] = "Chemin des fichiers temporaires"; +$a->strings["Base path to installation"] = "Chemin de base de l'installation"; +$a->strings["Update has been marked successful"] = "Mise-à-jour validée comme 'réussie'"; +$a->strings["Executing %s failed. Check system logs."] = "L'éxecution de %s a échoué. Vérifiez les journaux du système."; +$a->strings["Update %s was successfully applied."] = "Mise-à-jour %s appliquée avec succès."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi."; +$a->strings["Update function %s could not be found."] = "La fonction %s de la mise-à-jour n'a pu être trouvée."; +$a->strings["No failed updates."] = "Pas de mises-à-jour échouées."; +$a->strings["Failed Updates"] = "Mises-à-jour échouées"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails."; +$a->strings["Mark success (if update was manually applied)"] = "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)"; +$a->strings["Attempt to execute this update step automatically"] = "Tenter d'éxecuter cette étape automatiquement"; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "%s utilisateur a (dé)bloqué", + 1 => "%s utilisateurs ont (dé)bloqué", +); +$a->strings["%s user deleted"] = array( + 0 => "%s utilisateur supprimé", + 1 => "%s utilisateurs supprimés", +); +$a->strings["User '%s' deleted"] = "Utilisateur '%s' supprimé"; +$a->strings["User '%s' unblocked"] = "Utilisateur '%s' débloqué"; +$a->strings["User '%s' blocked"] = "Utilisateur '%s' bloqué"; +$a->strings["select all"] = "tout sélectionner"; +$a->strings["User registrations waiting for confirm"] = "Inscriptions d'utilisateurs en attente de confirmation"; +$a->strings["Request date"] = "Date de la demande"; +$a->strings["Name"] = "Nom"; +$a->strings["No registrations."] = "Pas d'inscriptions."; +$a->strings["Approve"] = "Approuver"; +$a->strings["Deny"] = "Rejetter"; +$a->strings["Block"] = "Bloquer"; +$a->strings["Unblock"] = "Débloquer"; +$a->strings["Site admin"] = "Administration du Site"; +$a->strings["Account expired"] = "Compte expiré"; +$a->strings["Register date"] = "Date d'inscription"; +$a->strings["Last login"] = "Dernière connexion"; +$a->strings["Last item"] = "Dernier élément"; +$a->strings["Account"] = "Compte"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"; +$a->strings["Plugin %s disabled."] = "Extension %s désactivée."; +$a->strings["Plugin %s enabled."] = "Extension %s activée."; +$a->strings["Disable"] = "Désactiver"; +$a->strings["Enable"] = "Activer"; +$a->strings["Toggle"] = "Activer/Désactiver"; +$a->strings["Author: "] = "Auteur: "; +$a->strings["Maintainer: "] = "Mainteneur: "; +$a->strings["No themes found."] = "Aucun thème trouvé."; +$a->strings["Screenshot"] = "Capture d'écran"; +$a->strings["[Experimental]"] = "[Expérimental]"; +$a->strings["[Unsupported]"] = "[Non supporté]"; +$a->strings["Log settings updated."] = "Réglages des journaux mis-à-jour."; +$a->strings["Clear"] = "Effacer"; +$a->strings["Enable Debugging"] = ""; +$a->strings["Log file"] = "Fichier de journaux"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica."; +$a->strings["Log level"] = "Niveau de journalisaton"; +$a->strings["Update now"] = "Mettre à jour"; +$a->strings["Close"] = "Fermer"; +$a->strings["FTP Host"] = "Hôte FTP"; +$a->strings["FTP Path"] = "Chemin FTP"; +$a->strings["FTP User"] = "Utilisateur FTP"; +$a->strings["FTP Password"] = "Mot de passe FTP"; +$a->strings["Unable to locate original post."] = "Impossible de localiser l'article original."; +$a->strings["Empty post discarded."] = "Article vide défaussé."; +$a->strings["System error. Post not saved."] = "Erreur système. Publication non sauvée."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Ce message vous a été envoyé par %s, membre du réseau social Friendica."; +$a->strings["You may visit them online at %s"] = "Vous pouvez leur rendre visite sur %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages."; +$a->strings["%s posted an update."] = "%s a publié une mise à jour."; +$a->strings["Friends of %s"] = "Amis de %s"; +$a->strings["No friends to display."] = "Pas d'amis à afficher."; +$a->strings["Remove term"] = "Retirer le terme"; +$a->strings["No results."] = "Aucun résultat."; +$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter"; +$a->strings["Return to your app and insert this Securty Code:"] = "Retournez à votre application et saisissez ce Code de Sécurité : "; +$a->strings["Please login to continue."] = "Merci de vous connecter pour continuer."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos notices et contacts, et/ou à créer des notices à votre place?"; +$a->strings["Registration details for %s"] = "Détails d'inscription pour %s"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions."; +$a->strings["Failed to send email message. Here is the message that failed."] = "Impossible d'envoyer un email. Voici le message qui a échoué."; +$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée."; +$a->strings["Registration request at %s"] = "Demande d'inscription à %s"; +$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste."; +$a->strings["Your OpenID (optional): "] = "Votre OpenID (facultatif): "; +$a->strings["Include your profile in member directory?"] = "Inclure votre profil dans l'annuaire des membres?"; +$a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation."; +$a->strings["Your invitation ID: "] = "Votre ID d'invitation: "; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Votre nom complet (p.ex. Michel Dupont): "; +$a->strings["Your Email Address: "] = "Votre adresse courriel: "; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@\$sitename</strong>'."; +$a->strings["Choose a nickname: "] = "Choisir un pseudo: "; +$a->strings["Account approved."] = "Inscription validée."; +$a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s"; +$a->strings["Please login."] = "Merci de vous connecter."; +$a->strings["Item not available."] = "Elément non disponible."; +$a->strings["Item was not found."] = "Element introuvable."; +$a->strings["Remove My Account"] = "Supprimer mon compte"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Ceci supprimera totalement votre compte. Cette opération est irréversible."; +$a->strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification:"; +$a->strings["Source (bbcode) text:"] = "Texte source (bbcode) :"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texte source (Diaspora) à convertir en BBcode :"; +$a->strings["Source input: "] = "Source input: "; +$a->strings["bb2html (raw HTML): "] = ""; +$a->strings["bb2html: "] = "bb2html: "; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Texte source (format Diaspora) :"; +$a->strings["diaspora2bb: "] = "diaspora2bb :"; +$a->strings["Common Friends"] = "Amis communs"; +$a->strings["No contacts in common."] = "Pas de contacts en commun."; +$a->strings["You must be logged in to use addons. "] = ""; +$a->strings["Applications"] = "Applications"; +$a->strings["No installed applications."] = "Pas d'application installée."; +$a->strings["Could not access contact record."] = "Impossible d'accéder à l'enregistrement du contact."; +$a->strings["Could not locate selected profile."] = "Impossible de localiser le profil séléctionné."; +$a->strings["Contact updated."] = "Contact mis-à-jour."; +$a->strings["Failed to update contact record."] = "Échec de mise-à-jour du contact."; +$a->strings["Contact has been blocked"] = "Le contact a été bloqué"; +$a->strings["Contact has been unblocked"] = "Le contact n'est plus bloqué"; +$a->strings["Contact has been ignored"] = "Le contact a été ignoré"; +$a->strings["Contact has been unignored"] = "Le contact n'est plus ignoré"; +$a->strings["Contact has been archived"] = "Contact archivé"; +$a->strings["Contact has been unarchived"] = "Contact désarchivé"; +$a->strings["Do you really want to delete this contact?"] = ""; +$a->strings["Contact has been removed."] = "Ce contact a été retiré."; +$a->strings["You are mutual friends with %s"] = "Vous êtes ami (et réciproquement) avec %s"; +$a->strings["You are sharing with %s"] = "Vous partagez avec %s"; +$a->strings["%s is sharing with you"] = "%s partage avec vous"; +$a->strings["Private communications are not available for this contact."] = "Les communications privées ne sont pas disponibles pour ce contact."; +$a->strings["(Update was successful)"] = "(Mise à jour effectuée avec succès)"; +$a->strings["(Update was not successful)"] = "(Mise à jour échouée)"; +$a->strings["Suggest friends"] = "Suggérer amitié/contact"; +$a->strings["Network type: %s"] = "Type de réseau %s"; +$a->strings["View all contacts"] = "Voir tous les contacts"; +$a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\""; +$a->strings["Unignore"] = "Ne plus ignorer"; +$a->strings["Ignore"] = "Ignorer"; +$a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\""; +$a->strings["Unarchive"] = "Désarchiver"; +$a->strings["Archive"] = "Archiver"; +$a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\""; +$a->strings["Repair"] = "Réparer"; +$a->strings["Advanced Contact Settings"] = "Réglages avancés du contact"; +$a->strings["Communications lost with this contact!"] = "Communications perdues avec ce contact !"; +$a->strings["Contact Editor"] = "Éditeur de contact"; +$a->strings["Profile Visibility"] = "Visibilité du profil"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée."; +$a->strings["Contact Information / Notes"] = "Informations de contact / Notes"; +$a->strings["Edit contact notes"] = "Éditer les notes des contacts"; +$a->strings["Block/Unblock contact"] = "Bloquer/débloquer ce contact"; +$a->strings["Ignore contact"] = "Ignorer ce contact"; +$a->strings["Repair URL settings"] = "Réparer les réglages d'URL"; +$a->strings["View conversations"] = "Voir les conversations"; +$a->strings["Delete contact"] = "Effacer ce contact"; +$a->strings["Last update:"] = "Dernière mise-à-jour :"; +$a->strings["Update public posts"] = "Met ses entrées publiques à jour: "; +$a->strings["Currently blocked"] = "Actuellement bloqué"; +$a->strings["Currently ignored"] = "Actuellement ignoré"; +$a->strings["Currently archived"] = "Actuellement archivé"; +$a->strings["Hide this contact from others"] = "Cacher ce contact aux autres"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Les réponses et \"j'aime\" à vos contenus publics peuvent être toujours visibles"; +$a->strings["Suggestions"] = "Suggestions"; +$a->strings["Suggest potential friends"] = "Suggérer des amis potentiels"; +$a->strings["All Contacts"] = "Tous les contacts"; +$a->strings["Show all contacts"] = "Montrer tous les contacts"; +$a->strings["Unblocked"] = "Non-bloqués"; +$a->strings["Only show unblocked contacts"] = "Ne montrer que les contacts non-bloqués"; +$a->strings["Blocked"] = "Bloqués"; +$a->strings["Only show blocked contacts"] = "Ne montrer que les contacts bloqués"; +$a->strings["Ignored"] = "Ignorés"; +$a->strings["Only show ignored contacts"] = "Ne montrer que les contacts ignorés"; +$a->strings["Archived"] = "Archivés"; +$a->strings["Only show archived contacts"] = "Ne montrer que les contacts archivés"; +$a->strings["Hidden"] = "Cachés"; +$a->strings["Only show hidden contacts"] = "Ne montrer que les contacts masqués"; +$a->strings["Mutual Friendship"] = "Relation réciproque"; +$a->strings["is a fan of yours"] = "Vous suit"; +$a->strings["you are a fan of"] = "Vous le/la suivez"; +$a->strings["Search your contacts"] = "Rechercher dans vos contacts"; +$a->strings["Finding: "] = "Trouvé: "; +$a->strings["everybody"] = "tout le monde"; +$a->strings["Additional features"] = ""; +$a->strings["Display settings"] = "Affichage"; +$a->strings["Connector settings"] = "Connecteurs"; +$a->strings["Plugin settings"] = "Extensions"; +$a->strings["Connected apps"] = "Applications connectées"; +$a->strings["Export personal data"] = "Exporter"; +$a->strings["Remove account"] = "Supprimer le compte"; +$a->strings["Missing some important data!"] = "Il manque certaines informations importantes!"; +$a->strings["Update"] = "Mises-à-jour"; +$a->strings["Failed to connect with email account using the settings provided."] = "Impossible de se connecter au compte courriel configuré."; +$a->strings["Email settings updated."] = "Réglages de courriel mis-à-jour."; +$a->strings["Features updated"] = ""; +$a->strings["Passwords do not match. Password unchanged."] = "Les mots de passe ne correspondent pas. Aucun changement appliqué."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Les mots de passe vides sont interdits. Aucun changement appliqué."; +$a->strings["Wrong password."] = ""; +$a->strings["Password changed."] = "Mots de passe changés."; +$a->strings["Password update failed. Please try again."] = "Le changement de mot de passe a échoué. Merci de recommencer."; +$a->strings[" Please use a shorter name."] = " Merci d'utiliser un nom plus court."; +$a->strings[" Name too short."] = " Nom trop court."; +$a->strings["Wrong Password"] = ""; +$a->strings[" Not valid email."] = " Email invalide."; +$a->strings[" Cannot change to that email."] = " Impossible de changer pour cet email."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut."; +$a->strings["Settings updated."] = "Réglages mis à jour."; +$a->strings["Add application"] = "Ajouter une application"; +$a->strings["Consumer Key"] = "Clé utilisateur"; +$a->strings["Consumer Secret"] = "Secret utilisateur"; +$a->strings["Redirect"] = "Rediriger"; +$a->strings["Icon url"] = "URL de l'icône"; +$a->strings["You can't edit this application."] = "Vous ne pouvez pas éditer cette application."; +$a->strings["Connected Apps"] = "Applications connectées"; +$a->strings["Edit"] = "Éditer"; +$a->strings["Client key starts with"] = "La clé cliente commence par"; +$a->strings["No name"] = "Sans nom"; +$a->strings["Remove authorization"] = "Révoquer l'autorisation"; +$a->strings["No Plugin settings configured"] = "Pas de réglages d'extensions configurés"; +$a->strings["Plugin Settings"] = "Extensions"; +$a->strings["Off"] = ""; +$a->strings["On"] = ""; +$a->strings["Additional Features"] = ""; +$a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s"; +$a->strings["enabled"] = "activé"; +$a->strings["disabled"] = "désactivé"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "L'accès courriel est désactivé sur ce site."; +$a->strings["Connector Settings"] = "Connecteurs"; +$a->strings["Email/Mailbox Setup"] = "Réglages de courriel/boîte à lettre"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte."; +$a->strings["Last successful email check:"] = "Dernière vérification réussie des courriels:"; +$a->strings["IMAP server name:"] = "Nom du serveur IMAP:"; +$a->strings["IMAP port:"] = "Port IMAP:"; +$a->strings["Security:"] = "Sécurité:"; +$a->strings["None"] = "Aucun(e)"; +$a->strings["Email login name:"] = "Nom de connexion:"; +$a->strings["Email password:"] = "Mot de passe:"; +$a->strings["Reply-to address:"] = "Adresse de réponse:"; +$a->strings["Send public posts to all email contacts:"] = "Les notices publiques vont à tous les contacts courriel:"; +$a->strings["Action after import:"] = "Action après import:"; +$a->strings["Mark as seen"] = "Marquer comme vu"; +$a->strings["Move to folder"] = "Déplacer vers"; +$a->strings["Move to folder:"] = "Déplacer vers:"; +$a->strings["Display Settings"] = "Affichage"; +$a->strings["Display Theme:"] = "Thème d'affichage:"; +$a->strings["Mobile Theme:"] = "Thème mobile:"; +$a->strings["Update browser every xx seconds"] = "Mettre-à-jour l'affichage toutes les xx secondes"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Délai minimum de 10 secondes, pas de maximum"; +$a->strings["Number of items to display per page:"] = "Nombre d’éléments par page:"; +$a->strings["Maximum of 100 items"] = "Maximum de 100 éléments"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = ""; +$a->strings["Don't show emoticons"] = "Ne pas afficher les émoticônes (smileys grahiques)"; +$a->strings["Normal Account Page"] = "Compte normal"; +$a->strings["This account is a normal personal profile"] = "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)"; +$a->strings["Soapbox Page"] = "Compte \"boîte à savon\""; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'"; +$a->strings["Community Forum/Celebrity Account"] = "Compte de communauté/célébrité"; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'"; +$a->strings["Automatic Friend Page"] = "Compte d'\"amitié automatique\""; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis"; +$a->strings["Private Forum [Experimental]"] = "Forum privé [expérimental]"; +$a->strings["Private forum - approved members only"] = "Forum privé - modéré en inscription"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte."; +$a->strings["Publish your default profile in your local site directory?"] = "Publier votre profil par défaut sur l'annuaire local de ce site?"; +$a->strings["Publish your default profile in the global social directory?"] = "Publier votre profil par défaut sur l'annuaire social global?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?"; +$a->strings["Hide your profile details from unknown viewers?"] = "Cacher les détails du profil aux visiteurs inconnus?"; +$a->strings["Allow friends to post to your profile page?"] = "Autoriser vos amis à publier sur votre profil?"; +$a->strings["Allow friends to tag your posts?"] = "Autoriser vos amis à tagguer vos notices?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?"; +$a->strings["Permit unknown people to send you private mail?"] = "Autoriser les messages privés d'inconnus?"; +$a->strings["Profile is not published."] = "Ce profil n'est pas publié."; +$a->strings["or"] = "ou"; +$a->strings["Your Identity Address is"] = "L'adresse de votre identité est"; +$a->strings["Automatically expire posts after this many days:"] = "Les publications expirent automatiquement après (en jours) :"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si ce champ est vide, les notices n'expireront pas. Les notices expirées seront supprimées"; +$a->strings["Advanced expiration settings"] = "Réglages avancés de l'expiration"; +$a->strings["Advanced Expiration"] = "Expiration (avancé)"; +$a->strings["Expire posts:"] = "Faire expirer les contenus:"; +$a->strings["Expire personal notes:"] = "Faire expirer les notes personnelles:"; +$a->strings["Expire starred posts:"] = "Faire expirer les contenus marqués:"; +$a->strings["Expire photos:"] = "Faire expirer les photos:"; +$a->strings["Only expire posts by others:"] = "Faire expirer seulement les messages des autres :"; +$a->strings["Account Settings"] = "Compte"; +$a->strings["Password Settings"] = "Réglages de mot de passe"; +$a->strings["New Password:"] = "Nouveau mot de passe:"; +$a->strings["Confirm:"] = "Confirmer:"; +$a->strings["Leave password fields blank unless changing"] = "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer"; +$a->strings["Current Password:"] = ""; +$a->strings["Your current password to confirm the changes"] = ""; +$a->strings["Password:"] = ""; +$a->strings["Basic Settings"] = "Réglages basiques"; +$a->strings["Email Address:"] = "Adresse courriel:"; +$a->strings["Your Timezone:"] = "Votre fuseau horaire:"; +$a->strings["Default Post Location:"] = "Publication par défaut depuis :"; +$a->strings["Use Browser Location:"] = "Utiliser la localisation géographique du navigateur:"; +$a->strings["Security and Privacy Settings"] = "Réglages de sécurité et vie privée"; +$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximal de requêtes d'amitié/jour:"; +$a->strings["(to prevent spam abuse)"] = "(pour limiter l'impact du spam)"; +$a->strings["Default Post Permissions"] = "Permissions par défaut sur les articles"; +$a->strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)"; +$a->strings["Show to Groups"] = "Montrer aux groupes"; +$a->strings["Show to Contacts"] = "Montrer aux Contacts"; +$a->strings["Default Private Post"] = ""; +$a->strings["Default Public Post"] = ""; +$a->strings["Default Permissions for New Posts"] = ""; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximum de messages privés d'inconnus par jour:"; +$a->strings["Notification Settings"] = "Réglages de notification"; +$a->strings["By default post a status message when:"] = "Par défaut, poster un statut quand:"; +$a->strings["accepting a friend request"] = "j'accepte un ami"; +$a->strings["joining a forum/community"] = "joignant un forum/une communauté"; +$a->strings["making an interesting profile change"] = "je fais une modification intéressante de mon profil"; +$a->strings["Send a notification email when:"] = "Envoyer un courriel de notification quand:"; +$a->strings["You receive an introduction"] = "Vous recevez une introduction"; +$a->strings["Your introductions are confirmed"] = "Vos introductions sont confirmées"; +$a->strings["Someone writes on your profile wall"] = "Quelqu'un écrit sur votre mur"; +$a->strings["Someone writes a followup comment"] = "Quelqu'un vous commente"; +$a->strings["You receive a private message"] = "Vous recevez un message privé"; +$a->strings["You receive a friend suggestion"] = "Vous avez reçu une suggestion d'ami"; +$a->strings["You are tagged in a post"] = "Vous avez été repéré dans une publication"; +$a->strings["You are poked/prodded/etc. in a post"] = "Vous avez été sollicité dans une publication"; +$a->strings["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/page"; +$a->strings["Change the behaviour of this account for special situations"] = "Modifier le comportement de ce compte dans certaines situations"; +$a->strings["link"] = "lien"; +$a->strings["Contact settings applied."] = "Réglages du contact appliqués."; +$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages."; +$a->strings["Contact not found."] = "Contact introuvable."; +$a->strings["Repair Contact Settings"] = "Réglages du réparateur de contacts"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "une photo"; +$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact"; +$a->strings["Account Nickname"] = "Pseudo du compte"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@NomDuTag - prend le pas sur Nom/Pseudo"; +$a->strings["Account URL"] = "URL du compte"; +$a->strings["Friend Request URL"] = "Echec du téléversement de l'image."; +$a->strings["Friend Confirm URL"] = "Accès public refusé."; +$a->strings["Notification Endpoint URL"] = "Aucune photo sélectionnée"; +$a->strings["Poll/Feed URL"] = "Téléverser des photos"; +$a->strings["New photo from this URL"] = "Nouvelle photo depuis cette URL"; +$a->strings["No potential page delegates located."] = "Pas de délégataire potentiel."; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue."; +$a->strings["Existing Page Managers"] = "Gestionnaires existants"; +$a->strings["Existing Page Delegates"] = "Délégataires existants"; +$a->strings["Potential Delegates"] = "Délégataires potentiels"; +$a->strings["Remove"] = "Utiliser comme photo de profil"; +$a->strings["Add"] = "Ajouter"; +$a->strings["No entries."] = "Aucune entrée."; +$a->strings["Poke/Prod"] = "Solliciter"; +$a->strings["poke, prod or do other things to somebody"] = "solliciter (poke/...) quelqu'un"; +$a->strings["Recipient"] = "Destinataire"; +$a->strings["Choose what you wish to do to recipient"] = "Choisissez ce que vous voulez faire au destinataire"; +$a->strings["Make this post private"] = "Rendez ce message privé"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé."; +$a->strings["Response from remote site was not understood."] = "Réponse du site distant incomprise."; +$a->strings["Unexpected response from remote site: "] = "Réponse inattendue du site distant: "; +$a->strings["Confirmation completed successfully."] = "Confirmation achevée avec succès."; +$a->strings["Remote site reported: "] = "Alerte du site distant: "; +$a->strings["Temporary failure. Please wait and try again."] = "Échec temporaire. Merci de recommencer ultérieurement."; +$a->strings["Introduction failed or was revoked."] = "Introduction échouée ou annulée."; +$a->strings["Unable to set contact photo."] = "Impossible de définir la photo du contact."; +$a->strings["No user record found for '%s' "] = "Pas d'utilisateur trouvé pour '%s' "; +$a->strings["Our site encryption key is apparently messed up."] = "Notre clé de chiffrement de site est apparemment corrompue."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "URL de site absente ou indéchiffrable."; +$a->strings["Contact record was not found for you on our site."] = "Pas d'entrée pour ce contact sur notre site."; +$a->strings["Site public key not available in contact record for URL %s."] = "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez."; +$a->strings["Unable to set your contact credentials on our system."] = "Impossible de vous définir des permissions sur notre système."; +$a->strings["Unable to update your contact profile details on our system"] = "Impossible de mettre les détails de votre profil à jour sur notre système"; +$a->strings["Connection accepted at %s"] = "Connexion acceptée chez %s"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s a rejoint %2\$s"; +$a->strings["%1\$s welcomes %2\$s"] = ""; +$a->strings["This introduction has already been accepted."] = "Cette introduction a déjà été acceptée."; +$a->strings["Profile location is not valid or does not contain profile information."] = "L'emplacement du profil est invalide ou ne contient pas de profil valide."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Attention: l'emplacement du profil n'a pas de nom identifiable."; +$a->strings["Warning: profile location has no profile photo."] = "Attention: l'emplacement du profil n'a pas de photo de profil."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d paramètre requis n'a pas été trouvé à l'endroit indiqué", + 1 => "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué", +); +$a->strings["Introduction complete."] = "Phase d'introduction achevée."; +$a->strings["Unrecoverable protocol error."] = "Erreur de protocole non-récupérable."; +$a->strings["Profile unavailable."] = "Profil indisponible."; +$a->strings["%s has received too many connection requests today."] = "%s a reçu trop de demandes d'introduction aujourd'hui."; +$a->strings["Spam protection measures have been invoked."] = "Des mesures de protection contre le spam ont été déclenchées."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Les relations sont encouragées à attendre 24 heures pour recommencer."; +$a->strings["Invalid locator"] = "Localisateur invalide"; +$a->strings["Invalid email address."] = "Adresse courriel invalide."; +$a->strings["This account has not been configured for email. Request failed."] = "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée."; +$a->strings["Unable to resolve your name at the provided location."] = "Impossible de résoudre votre nom à l'emplacement fourni."; +$a->strings["You have already introduced yourself here."] = "Vous vous êtes déjà présenté ici."; +$a->strings["Apparently you are already friends with %s."] = "Il semblerait que vous soyez déjà ami avec %s."; +$a->strings["Invalid profile URL."] = "URL de profil invalide."; +$a->strings["Your introduction has been sent."] = "Votre introduction a été envoyée."; +$a->strings["Please login to confirm introduction."] = "Connectez-vous pour confirmer l'introduction."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Identité incorrecte actuellement connectée. Merci de vous connecter à ce profil."; +$a->strings["Hide this contact"] = "Cacher ce contact"; +$a->strings["Welcome home %s."] = "Bienvenue chez vous, %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Merci de confirmer votre demande d'introduction auprès de %s."; +$a->strings["Confirm"] = "Confirmer"; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:"; +$a->strings["Connect as an email follower (Coming soon)"] = "Connecter un utilisateur de courriel (bientôt)"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Si vous n'êtes pas encore membre du web social libre, suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui."; +$a->strings["Friend/Connection Request"] = "Requête de relation/amitié"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Merci de répondre à ce qui suit:"; +$a->strings["Does %s know you?"] = "Est-ce que %s vous connaît?"; +$a->strings["Add a personal note:"] = "Ajouter une note personnelle:"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de recherche Diaspora."; +$a->strings["Your Identity Address:"] = "Votre adresse d'identité:"; +$a->strings["Submit Request"] = "Envoyer la requête"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; +$a->strings["Global Directory"] = "Annuaire global"; +$a->strings["Find on this site"] = "Trouver sur ce site"; +$a->strings["Site Directory"] = "Annuaire local"; +$a->strings["Gender: "] = "Genre: "; +$a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées)."; +$a->strings["Do you really want to delete this suggestion?"] = ""; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h."; +$a->strings["Ignore/Hide"] = "Ignorer/cacher"; +$a->strings["People Search"] = "Recherche de personnes"; +$a->strings["No matches"] = "Aucune correspondance"; +$a->strings["No videos selected"] = ""; +$a->strings["Access to this item is restricted."] = "Accès restreint à cet élément."; +$a->strings["View Album"] = "Voir l'album"; +$a->strings["Recent Videos"] = ""; +$a->strings["Upload New Videos"] = ""; +$a->strings["Tag removed"] = "Étiquette enlevée"; +$a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément"; +$a->strings["Select a tag to remove: "] = "Choisir une étiquette à enlever: "; +$a->strings["Item not found"] = "Élément introuvable"; +$a->strings["Edit post"] = "Éditer la publication"; +$a->strings["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement."; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Editer l'événement"; +$a->strings["Create New Event"] = "Créer un nouvel événement"; +$a->strings["Previous"] = "Précédent"; +$a->strings["Next"] = "Suivant"; +$a->strings["hour:minute"] = "heures:minutes"; +$a->strings["Event details"] = "Détails de l'événement"; +$a->strings["Format is %s %s. Starting date and Title are required."] = "Le format est %s %s. La date de début et le nom sont nécessaires."; +$a->strings["Event Starts:"] = "Début de l'événement:"; +$a->strings["Required"] = "Requis"; +$a->strings["Finish date/time is not known or not relevant"] = "Date/heure de fin inconnue ou sans objet"; +$a->strings["Event Finishes:"] = "Fin de l'événement:"; +$a->strings["Adjust for viewer timezone"] = "Ajuster à la zone horaire du visiteur"; +$a->strings["Description:"] = "Description:"; +$a->strings["Title:"] = "Titre :"; +$a->strings["Share this event"] = "Partager cet événement"; +$a->strings["Files"] = "Fichiers"; +$a->strings["Export account"] = "Exporter le compte"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur."; +$a->strings["Export all"] = "Tout exporter"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)."; +$a->strings["- select -"] = "- choisir -"; +$a->strings["Import"] = "Importer"; +$a->strings["Move account"] = "Migrer le compte"; +$a->strings["You can import an account from another Friendica server."] = ""; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = ""; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = ""; +$a->strings["Account file"] = "Fichier du compte"; +$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = ""; +$a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]"; +$a->strings["Contact added"] = "Contact ajouté"; +$a->strings["This is Friendica, version"] = "Motorisé par Friendica version"; +$a->strings["running at web location"] = "hébergé sur"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Merci de vous rendre sur Friendica.com si vous souhaitez en savoir plus sur le projet Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Pour les rapports de bugs: rendez vous sur"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com"; +$a->strings["Installed plugins/addons/apps:"] = "Extensions/applications installées:"; +$a->strings["No installed plugins/addons/apps"] = "Aucune extension/greffon/application installée"; +$a->strings["Friend suggestion sent."] = "Suggestion d'amitié/contact envoyée."; +$a->strings["Suggest Friends"] = "Suggérer des amis/contacts"; +$a->strings["Suggest a friend for %s"] = "Suggérer un ami/contact pour %s"; +$a->strings["Group created."] = "Groupe créé."; +$a->strings["Could not create group."] = "Impossible de créer le groupe."; +$a->strings["Group not found."] = "Groupe introuvable."; +$a->strings["Group name changed."] = "Groupe renommé."; +$a->strings["Create a group of contacts/friends."] = "Créez un groupe de contacts/amis."; +$a->strings["Group Name: "] = "Nom du groupe: "; +$a->strings["Group removed."] = "Groupe enlevé."; +$a->strings["Unable to remove group."] = "Impossible d'enlever le groupe."; +$a->strings["Group Editor"] = "Éditeur de groupe"; +$a->strings["Members"] = "Membres"; +$a->strings["No profile"] = "Aucun profil"; +$a->strings["Help:"] = "Aide:"; +$a->strings["Not Found"] = "Non trouvé"; +$a->strings["Page not found."] = "Page introuvable."; +$a->strings["No contacts."] = "Aucun contact."; +$a->strings["Welcome to %s"] = "Bienvenue sur %s"; +$a->strings["Access denied."] = "Accès refusé."; +$a->strings["File exceeds size limit of %d"] = "La taille du fichier dépasse la limite de %d"; +$a->strings["File upload failed."] = "Le téléversement a échoué."; +$a->strings["Image exceeds size limit of %d"] = "L'image dépasse la taille limite de %d"; +$a->strings["Unable to process image."] = "Impossible de traiter l'image."; +$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué."; +$a->strings["Total invitation limit exceeded."] = ""; +$a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide."; +$a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; +$a->strings["%s : Message delivery failed."] = "%s : L'envoi du message a échoué."; +$a->strings["%d message sent."] = array( + 0 => "%d message envoyé.", + 1 => "%d messages envoyés.", +); +$a->strings["You have no more invitations available"] = "Vous n'avez plus d'invitations disponibles"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres."; +$a->strings["Send invitations"] = "Envoyer des invitations"; +$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses email, une par ligne:"; +$a->strings["Your message:"] = "Votre message:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Une fois inscrit, connectez-vous à la page de mon profil sur:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message."; +$a->strings["No recipient selected."] = "Pas de destinataire sélectionné."; +$a->strings["Unable to check your home location."] = "Impossible de vérifier votre localisation."; +$a->strings["Message could not be sent."] = "Impossible d'envoyer le message."; +$a->strings["Message collection failure."] = "Récupération des messages infructueuse."; +$a->strings["Message sent."] = "Message envoyé."; +$a->strings["No recipient."] = "Pas de destinataire."; +$a->strings["Send Private Message"] = "Envoyer un message privé"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus."; +$a->strings["To:"] = "À:"; +$a->strings["Subject:"] = "Sujet:"; +$a->strings["Time Conversion"] = "Conversion temporelle"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire."; +$a->strings["UTC time: %s"] = "Temps UTC : %s"; +$a->strings["Current timezone: %s"] = "Zone de temps courante : %s"; +$a->strings["Converted localtime: %s"] = "Temps local converti : %s"; +$a->strings["Please select your timezone:"] = "Sélectionner votre zone :"; +$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles."; +$a->strings["Visible to:"] = "Visible par:"; +$a->strings["No valid account found."] = "Impossible de trouver un compte valide."; +$a->strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe en cours. Vérifiez votre courriel."; +$a->strings["Password reset requested at %s"] = "Requête de réinitialisation de mot de passe à %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué."; +$a->strings["Password Reset"] = "Réinitialiser le mot de passe"; +$a->strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé."; +$a->strings["Your new password is"] = "Votre nouveau mot de passe est "; +$a->strings["Save or copy your new password - and then"] = "Sauvez ou copiez ce nouveau mot de passe - puis"; +$a->strings["click here to login"] = "cliquez ici pour vous connecter"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Votre mot de passe peut être changé depuis la page <em>Réglages</em>, une fois que vous serez connecté."; +$a->strings["Your password has been changed at %s"] = ""; +$a->strings["Forgot your Password?"] = "Mot de passe oublié?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel."; +$a->strings["Nickname or Email: "] = "Pseudo ou Courriel: "; +$a->strings["Reset"] = "Réinitialiser"; +$a->strings["System down for maintenance"] = ""; +$a->strings["Manage Identities and/or Pages"] = "Gérer les identités et/ou les pages"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer."; +$a->strings["Select an identity to manage: "] = "Choisir une identité à gérer: "; +$a->strings["Profile Match"] = "Correpondance de profils"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."; +$a->strings["is interested in:"] = "s'intéresse à:"; +$a->strings["Unable to locate contact information."] = "Impossible de localiser les informations du contact."; +$a->strings["Do you really want to delete this message?"] = "Voulez-vous vraiment supprimer ce message ?"; +$a->strings["Message deleted."] = "Message supprimé."; +$a->strings["Conversation removed."] = "Conversation supprimée."; +$a->strings["No messages."] = "Aucun message."; +$a->strings["Unknown sender - %s"] = "Émetteur inconnu - %s"; +$a->strings["You and %s"] = "Vous et %s"; +$a->strings["%s and You"] = "%s et vous"; +$a->strings["Delete conversation"] = "Effacer conversation"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d message", + 1 => "%d messages", +); +$a->strings["Message not available."] = "Message indisponible."; +$a->strings["Delete message"] = "Effacer message"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur."; +$a->strings["Send Reply"] = "Répondre"; +$a->strings["Mood"] = "Humeur"; +$a->strings["Set your current mood and tell your friends"] = "Spécifiez votre humeur du moment, et informez vos amis"; +$a->strings["Search Results For:"] = "Résultats pour:"; +$a->strings["Commented Order"] = "Tri par commentaires"; +$a->strings["Sort by Comment Date"] = "Trier par date de commentaire"; +$a->strings["Posted Order"] = "Tri par publications"; +$a->strings["Sort by Post Date"] = "Trier par date de publication"; +$a->strings["Personal"] = "Personnel"; +$a->strings["Posts that mention or involve you"] = "Publications qui vous concernent"; +$a->strings["New"] = "Nouveau"; +$a->strings["Activity Stream - by date"] = "Flux d'activités - par date"; +$a->strings["Shared Links"] = "Liens partagés"; +$a->strings["Interesting Links"] = "Liens intéressants"; +$a->strings["Starred"] = "Mis en avant"; +$a->strings["Favourite Posts"] = "Publications favorites"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Attention: Ce groupe contient %s membre d'un réseau non-sûr.", + 1 => "Attention: Ce groupe contient %s membres d'un réseau non-sûr.", +); +$a->strings["Private messages to this group are at risk of public disclosure."] = "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée."; +$a->strings["No such group"] = "Groupe inexistant"; +$a->strings["Group is empty"] = "Groupe vide"; +$a->strings["Group: "] = "Groupe: "; +$a->strings["Contact: "] = "Contact: "; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée."; +$a->strings["Invalid contact."] = "Contact invalide."; +$a->strings["Invalid request identifier."] = "Identifiant de demande invalide."; +$a->strings["Discard"] = "Rejeter"; +$a->strings["System"] = "Système"; +$a->strings["Show Ignored Requests"] = "Voir les demandes ignorées"; +$a->strings["Hide Ignored Requests"] = "Cacher les demandes ignorées"; +$a->strings["Notification type: "] = "Type de notification: "; +$a->strings["Friend Suggestion"] = "Suggestion d'amitié/contact"; +$a->strings["suggested by %s"] = "suggéré(e) par %s"; +$a->strings["Post a new friend activity"] = "Poster concernant les nouvelles amitiés"; +$a->strings["if applicable"] = "si possible"; +$a->strings["Claims to be known to you: "] = "Prétend que vous le connaissez: "; +$a->strings["yes"] = "oui"; +$a->strings["no"] = "non"; +$a->strings["Approve as: "] = "Approuver en tant que: "; +$a->strings["Friend"] = "Ami"; +$a->strings["Sharer"] = "Initiateur du partage"; +$a->strings["Fan/Admirer"] = "Fan/Admirateur"; +$a->strings["Friend/Connect Request"] = "Demande de connexion/relation"; +$a->strings["New Follower"] = "Nouvel abonné"; +$a->strings["No introductions."] = "Aucune demande d'introduction."; +$a->strings["%s liked %s's post"] = "%s a aimé la notice de %s"; +$a->strings["%s disliked %s's post"] = "%s n'a pas aimé la notice de %s"; +$a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s"; +$a->strings["%s created a new post"] = "%s a publié une notice"; +$a->strings["%s commented on %s's post"] = "%s a commenté une notice de %s"; +$a->strings["No more network notifications."] = "Aucune notification du réseau."; +$a->strings["Network Notifications"] = "Notifications du réseau"; +$a->strings["No more system notifications."] = "Pas plus de notifications système."; +$a->strings["System Notifications"] = "Notifications du système"; +$a->strings["No more personal notifications."] = "Aucun notification personnelle."; +$a->strings["Personal Notifications"] = "Notifications personnelles"; +$a->strings["No more home notifications."] = "Aucune notification de la page d'accueil."; +$a->strings["Home Notifications"] = "Notifications de page d'accueil"; +$a->strings["Photo Albums"] = "Albums photo"; +$a->strings["Contact Photos"] = "Photos du contact"; +$a->strings["Upload New Photos"] = "Téléverser de nouvelles photos"; +$a->strings["Contact information unavailable"] = "Informations de contact indisponibles"; +$a->strings["Album not found."] = "Album introuvable."; +$a->strings["Delete Album"] = "Effacer l'album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?"; +$a->strings["Delete Photo"] = "Effacer la photo"; +$a->strings["Do you really want to delete this photo?"] = "Voulez-vous vraiment supprimer cette photo ?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; +$a->strings["a photo"] = "une photo"; +$a->strings["Image exceeds size limit of "] = "L'image dépasse la taille maximale de "; +$a->strings["Image file is empty."] = "Fichier image vide."; +$a->strings["No photos selected"] = "Aucune photo sélectionnée"; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos."; +$a->strings["Upload Photos"] = "Téléverser des photos"; +$a->strings["New album name: "] = "Nom du nouvel album: "; +$a->strings["or existing album name: "] = "ou nom d'un album existant: "; +$a->strings["Do not show a status post for this upload"] = "Ne pas publier de notice pour cet envoi"; +$a->strings["Permissions"] = "Permissions"; +$a->strings["Private Photo"] = "Photo privée"; +$a->strings["Public Photo"] = ""; +$a->strings["Edit Album"] = "Éditer l'album"; +$a->strings["Show Newest First"] = "Plus récent d'abord"; +$a->strings["Show Oldest First"] = "Plus ancien d'abord"; +$a->strings["View Photo"] = "Voir la photo"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Interdit. L'accès à cet élément peut avoir été restreint."; +$a->strings["Photo not available"] = "Photo indisponible"; +$a->strings["View photo"] = "Voir photo"; +$a->strings["Edit photo"] = "Éditer la photo"; +$a->strings["Use as profile photo"] = "Utiliser comme photo de profil"; +$a->strings["Private Message"] = "Message privé"; +$a->strings["View Full Size"] = "Voir en taille réelle"; +$a->strings["Tags: "] = "Étiquettes: "; +$a->strings["[Remove any tag]"] = "[Retirer toutes les étiquettes]"; +$a->strings["Rotate CW (right)"] = "Tourner dans le sens des aiguilles d'une montre (vers la droite)"; +$a->strings["Rotate CCW (left)"] = "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"; +$a->strings["New album name"] = "Nom du nouvel album"; +$a->strings["Caption"] = "Titre"; +$a->strings["Add a Tag"] = "Ajouter une étiquette"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"; +$a->strings["Private photo"] = ""; +$a->strings["Public photo"] = ""; +$a->strings["I like this (toggle)"] = "J'aime (bascule)"; +$a->strings["I don't like this (toggle)"] = "Je n'aime pas (bascule)"; +$a->strings["This is you"] = "C'est vous"; +$a->strings["Comment"] = "Commenter"; +$a->strings["Recent Photos"] = "Photos récentes"; +$a->strings["Welcome to Friendica"] = "Bienvenue sur Friendica"; +$a->strings["New Member Checklist"] = "Checklist du nouvel utilisateur"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement."; +$a->strings["Getting Started"] = "Bien démarrer"; +$a->strings["Friendica Walk-Through"] = "Friendica pas-à-pas"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sur votre page d'accueil, dans Conseils aux nouveaux venus - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre."; +$a->strings["Go to Your Settings"] = "Éditer vos Réglages"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Sur la page des Réglages - changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver."; +$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis."; +$a->strings["Edit Your Profile"] = "Éditer votre Profil"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Éditez votre profil par défaut à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus."; +$a->strings["Profile Keywords"] = "Mots-clés du profil"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent."; +$a->strings["Connecting"] = "Connexions"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Si ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre."; +$a->strings["Importing Emails"] = "Importer courriels"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception."; +$a->strings["Go to Your Contacts Page"] = "Consulter vos Contacts"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire Ajouter un nouveau contact."; +$a->strings["Go to Your Site's Directory"] = "Consulter l'Annuaire de votre Site"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien Relier ou Suivre sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité."; +$a->strings["Finding New People"] = "Trouver de nouvelles personnes"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures."; +$a->strings["Group Your Contacts"] = "Grouper vos contacts"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau."; +$a->strings["Why Aren't My Posts Public?"] = "Pourquoi mes éléments ne sont pas publics?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecte votre vie privée. Par défaut, tous vos éléments seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus."; +$a->strings["Getting Help"] = "Obtenir de l'aide"; +$a->strings["Go to the Help Section"] = "Aller à la section Aide"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Nos pages d'aide peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources."; +$a->strings["Requested profile is not available."] = "Le profil demandé n'est pas disponible."; +$a->strings["Tips for New Members"] = "Conseils aux nouveaux venus"; +$a->strings["Friendica Communications Server - Setup"] = ""; +$a->strings["Could not connect to database."] = "Impossible de se connecter à la base."; +$a->strings["Could not create table."] = "Impossible de créer une table."; +$a->strings["Your Friendica site database has been installed."] = "La base de données de votre site Friendica a bien été installée."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Référez-vous au fichier \"INSTALL.txt\"."; +$a->strings["System check"] = "Vérifications système"; +$a->strings["Check again"] = "Vérifier à nouveau"; +$a->strings["Database connection"] = "Connexion à la base de données"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer."; +$a->strings["Database Server Name"] = "Serveur de base de données"; +$a->strings["Database Login Name"] = "Nom d'utilisateur de la base"; +$a->strings["Database Login Password"] = "Mot de passe de la base"; +$a->strings["Database Name"] = "Nom de la base"; +$a->strings["Site administrator email address"] = "Adresse électronique de l'administrateur du site"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration."; +$a->strings["Please select a default timezone for your website"] = "Sélectionner un fuseau horaire par défaut pour votre site"; +$a->strings["Site settings"] = "Réglages du site"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir 'Activating scheduled tasks'"; +$a->strings["PHP executable path"] = "Chemin vers l'exécutable de PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation."; +$a->strings["Command line PHP"] = "Version \"ligne de commande\" de PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = ""; +$a->strings["Found PHP version: "] = ""; +$a->strings["PHP cli binary"] = ""; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé."; +$a->strings["This is required for message delivery to work."] = "Ceci est requis pour que la livraison des messages fonctionne."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Générer les clés de chiffrement"; +$a->strings["libCurl PHP module"] = "Module libCurl de PHP"; +$a->strings["GD graphics PHP module"] = "Module GD (graphiques) de PHP"; +$a->strings["OpenSSL PHP module"] = "Module OpenSSL de PHP"; +$a->strings["mysqli PHP module"] = "Module Mysqli de PHP"; +$a->strings["mb_string PHP module"] = "Module mb_string de PHP"; +$a->strings["Apache mod_rewrite module"] = "Module mod_rewrite Apache"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Erreur: Le module PHP \"libCURL\" est requis mais pas installé."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé."; +$a->strings["Error: openssl PHP module required but not installed."] = "Erreur: Le module PHP \"openssl\" est requis mais pas installé."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Erreur: Le module PHP \"mysqli\" est requis mais pas installé."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Erreur: le module PHP mb_string est requis mais pas installé."; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"."; +$a->strings[".htconfig.php is writable"] = "Fichier .htconfig.php accessible en écriture"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = ""; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = ""; +$a->strings["view/smarty3 is writable"] = ""; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur."; +$a->strings["Url rewrite is working"] = "La réécriture d'URL fonctionne."; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement."; +$a->strings["Errors encountered creating database tables."] = "Des erreurs ont été signalées lors de la création des tables."; +$a->strings["

What next

"] = "

Ensuite

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'."; +$a->strings["Post successful."] = "Publication réussie."; +$a->strings["OpenID protocol error. No ID returned."] = "Erreur de protocole OpenID. Pas d'ID en retour."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site."; +$a->strings["Image uploaded but image cropping failed."] = "Image envoyée, mais impossible de la retailler."; +$a->strings["Image size reduction [%s] failed."] = "Réduction de la taille de l'image [%s] échouée."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement."; +$a->strings["Unable to process image"] = "Impossible de traiter l'image"; +$a->strings["Upload File:"] = "Fichier à téléverser:"; +$a->strings["Select a profile:"] = "Choisir un profil:"; +$a->strings["Upload"] = "Téléverser"; +$a->strings["skip this step"] = "ignorer cette étape"; +$a->strings["select a photo from your photo albums"] = "choisissez une photo depuis vos albums"; +$a->strings["Crop Image"] = "(Re)cadrer l'image"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Ajustez le cadre de l'image pour une visualisation optimale."; +$a->strings["Done Editing"] = "Édition terminée"; +$a->strings["Image uploaded successfully."] = "Image téléversée avec succès."; +$a->strings["Not available."] = "Indisponible."; +$a->strings["%d comment"] = array( + 0 => "%d commentaire", + 1 => "%d commentaires", +); +$a->strings["like"] = "aime"; +$a->strings["dislike"] = "n'aime pas"; +$a->strings["Share this"] = "Partager"; +$a->strings["share"] = "partager"; +$a->strings["Bold"] = "Gras"; +$a->strings["Italic"] = "Italique"; +$a->strings["Underline"] = "Souligné"; +$a->strings["Quote"] = "Citation"; +$a->strings["Code"] = "Code"; +$a->strings["Image"] = "Image"; +$a->strings["Link"] = "Lien"; +$a->strings["Video"] = "Vidéo"; +$a->strings["add star"] = "mett en avant"; +$a->strings["remove star"] = "ne plus mettre en avant"; +$a->strings["toggle star status"] = "mettre en avant"; +$a->strings["starred"] = "mis en avant"; +$a->strings["add tag"] = "ajouter un tag"; +$a->strings["save to folder"] = "sauver vers dossier"; +$a->strings["to"] = "à"; +$a->strings["Wall-to-Wall"] = "Inter-mur"; +$a->strings["via Wall-To-Wall:"] = "en Inter-mur:"; +$a->strings["This entry was edited"] = ""; +$a->strings["via"] = ""; +$a->strings["Theme settings"] = "Réglages du thème graphique"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)"; +$a->strings["Set font-size for posts and comments"] = "Réglez 'font-size' (taille de police) pour publications et commentaires"; +$a->strings["Set theme width"] = "Largeur du thème"; +$a->strings["Color scheme"] = "Palette de couleurs"; +$a->strings["Set line-height for posts and comments"] = "Réglez 'line-height' (hauteur de police) pour publications et commentaires"; +$a->strings["Set resolution for middle column"] = "Réglez la résolution de la colonne centrale"; +$a->strings["Set color scheme"] = "Choisir le schéma de couleurs"; +$a->strings["Set twitter search term"] = "Rechercher un terme twitter"; +$a->strings["Set zoomfactor for Earth Layer"] = "Niveau de zoom"; +$a->strings["Set longitude (X) for Earth Layers"] = "Régler la longitude (X) pour la géolocalisation"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Régler la latitude (Y) pour la géolocalisation"; +$a->strings["Community Pages"] = "Pages de Communauté"; +$a->strings["Earth Layers"] = "Géolocalisation"; +$a->strings["Community Profiles"] = "Profils communautaires"; +$a->strings["Help or @NewHere ?"] = "Aide ou @NewHere?"; +$a->strings["Connect Services"] = "Connecter des services"; +$a->strings["Find Friends"] = "Trouver des amis"; +$a->strings["Last tweets"] = "Derniers tweets"; +$a->strings["Last users"] = "Derniers utilisateurs"; +$a->strings["Last photos"] = "Dernières photos"; +$a->strings["Last likes"] = "Dernièrement aimé"; +$a->strings["Your contacts"] = "Vos contacts"; +$a->strings["Local Directory"] = "Annuaire local"; +$a->strings["Set zoomfactor for Earth Layers"] = "Régler le niveau de zoom pour la géolocalisation"; +$a->strings["Last Tweets"] = "Derniers tweets"; +$a->strings["Show/hide boxes at right-hand column:"] = "Montrer/cacher les boîtes dans la colonne de droite :"; +$a->strings["Set colour scheme"] = "Choisir le schéma de couleurs"; +$a->strings["Alignment"] = "Alignement"; +$a->strings["Left"] = "Gauche"; +$a->strings["Center"] = "Centre"; +$a->strings["Posts font size"] = "Taille de texte des messages"; +$a->strings["Textareas font size"] = ""; +$a->strings["toggle mobile"] = "activ. mobile"; $a->strings["Delete this item?"] = "Effacer cet élément?"; $a->strings["show fewer"] = "montrer moins"; $a->strings["Update %s failed. See error logs."] = "Mise-à-jour %s échouée. Voir les journaux d'erreur."; @@ -2050,6 +1628,10 @@ $a->strings["Password: "] = "Mot de passe: "; $a->strings["Remember me"] = ""; $a->strings["Or login using OpenID: "] = "Ou connectez-vous via OpenID: "; $a->strings["Forgot your password?"] = "Mot de passe oublié?"; +$a->strings["Website Terms of Service"] = ""; +$a->strings["terms of service"] = ""; +$a->strings["Website Privacy Policy"] = ""; +$a->strings["privacy policy"] = ""; $a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible."; $a->strings["Edit profile"] = "Editer le profil"; $a->strings["Message"] = "Message"; @@ -2064,21 +1646,6 @@ $a->strings["Event Reminders"] = "Rappels d'événements"; $a->strings["Events this week:"] = "Evénements cette semaine:"; $a->strings["Status Messages and Posts"] = "Messages d'état et publications"; $a->strings["Profile Details"] = "Détails du profil"; +$a->strings["Videos"] = ""; $a->strings["Events and Calendar"] = "Événements et agenda"; $a->strings["Only You Can See This"] = "Vous seul pouvez voir ça"; -$a->strings["via"] = ""; -$a->strings["toggle mobile"] = "activ. mobile"; -$a->strings["Bg settings updated."] = "Réglages d'arrière-plan mis à jour."; -$a->strings["Bg Settings"] = "Réglages d'arrière-plan"; -$a->strings["Post to Drupal"] = "Poster vers Drupal"; -$a->strings["Drupal Post Settings"] = "Réglages Drupal"; -$a->strings["Enable Drupal Post Plugin"] = "Activer \"Poster vers Drupal\""; -$a->strings["Drupal username"] = "Nom d'utilisateur Drupal"; -$a->strings["Drupal password"] = "Mot de passe Drupal"; -$a->strings["Post Type - article,page,or blog"] = "Type de publication - article, page ou blog"; -$a->strings["Drupal site URL"] = "URL du site Drupal"; -$a->strings["Drupal site uses clean URLS"] = "Ce site utilise des URLs propres"; -$a->strings["Post to Drupal by default"] = "Poster vers Drupal par défaut"; -$a->strings["OEmbed settings updated"] = "Réglage OEmbed mis-à-jour"; -$a->strings["Use OEmbed for YouTube videos"] = "Utiliser OEmbed pour les vidéos Youtube"; -$a->strings["URL to embed:"] = "URL à incorporer:";