From: Fabrixxm Date: Tue, 24 Feb 2015 08:03:21 +0000 (+0100) Subject: Merge branch 'release-3.3.3' X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=86b41eec77de47c50a9d88afca604ccaea945159;hp=d10c8ddf570b880cdf0f5d391e98d144171bec64;p=friendica.git Merge branch 'release-3.3.3' --- diff --git a/.gitignore b/.gitignore index 06dc807bd5..3c0570c67d 100644 --- a/.gitignore +++ b/.gitignore @@ -34,7 +34,11 @@ report/ #ignore cache folders /privacy_image_cache/ /photo/ +/proxy/ nbproject #ignore vagrant dir .vagrant/ + +#ignore local folder +/local/ diff --git a/CHANGELOG b/CHANGELOG index 33a1c58bb8..4f0c232333 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,37 @@ +Version 3.3.3 + + More separation between php and html in photo album (issue #1258) (rabuzarus) + Enhanced community page shows public posts from public contacts of public profiles (annando) + Support for IndieAuth/Web-sign-in (hauke) + New hooks "emailer_send_prepare" and "emailer_send" (fabrixxm) + New hook "oembed_fetch_url" (annando) + Add un/ignore function to quattro theme (tobiasd) + Enhanced POCO data (annando) + Use HTML5 features to validate inputs in install wizard and in some settings fields (tobiasd) + Option to receive text-only notification emails (fabrixxm) + Better OStatus support (annando) + Share-it button support (annando) + More reliable reshare from Diaspora (annando) + Load more images via proxy (annando) + util/typo.php uses "php -l" insead of "eval()" to validate code (fabrixxm) + Use $_SERVER array in cli script instead of $argv/$argc (issue #1218) (annando) + Updated vagrant setup script (silke) + API: support to star/unstar items (fabrixxm) + API: attachments for better AndStatus support (annando) + Fix missing spaces in photo URLs (issue #920) (annando) + Fix avatar for "remote-self" items (annando) + Fix encodings issues with scrape functionality (annando) + Fix site info scraping when URL points to big file (annando) + Fix tools for translations (ddorian1) + Fix API login via LDAP (issue #1286) (fabrixxm) + Fix to link URL in tabs, pager (issues #1341, #1190) (ddorian1) + Fix poke activities translation (fabrixxm) + Fix html escaping in templates (fabrixxm) + Fix Friendica contacts shown as Diaspora contacts via Poco (annando) + Fix shared contacts wrong linking (issue #1388) (annando) + Fix email validation (ddorian1) + Better documentation for developers (silke) + Version 3.3.2 Set default value for all not-null fields (fixes SQL warinigs) (annando) diff --git a/boot.php b/boot.php index 34836a97aa..d74f38914c 100644 --- a/boot.php +++ b/boot.php @@ -16,9 +16,9 @@ require_once('include/dbstructure.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Ginger'); -define ( 'FRIENDICA_VERSION', '3.3.2' ); +define ( 'FRIENDICA_VERSION', '3.3.3' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); -define ( 'DB_UPDATE_VERSION', 1175 ); +define ( 'DB_UPDATE_VERSION', 1178 ); define ( 'EOL', "
\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); @@ -435,7 +435,7 @@ if(! class_exists('App')) { function __construct() { - global $default_timezone, $argv, $argc; + global $default_timezone; $hostname = ""; @@ -504,9 +504,9 @@ if(! class_exists('App')) { if ($hostname != "") $this->hostname = $hostname; - if (is_array($argv) && $argc>1 && substr(end($argv), 0, 4)=="http" ) { - $this->set_baseurl(array_pop($argv) ); - $argc --; + if (is_array($_SERVER["argv"]) && $_SERVER["argc"]>1 && substr(end($_SERVER["argv"]), 0, 4)=="http" ) { + $this->set_baseurl(array_pop($_SERVER["argv"]) ); + $_SERVER["argc"] --; } #set_include_path("include/$this->hostname" . PATH_SEPARATOR . get_include_path()); @@ -1649,8 +1649,10 @@ if(! function_exists('profile_sidebar')) { $homepage = ((x($profile,'homepage') == 1) ? t('Homepage:') : False); + $about = ((x($profile,'about') == 1) ? t('About:') : False); + if(($profile['hidewall'] || $block) && (! local_user()) && (! remote_user())) { - $location = $pdesc = $gender = $marital = $homepage = False; + $location = $pdesc = $gender = $marital = $homepage = $about = False; } $firstname = ((strpos($profile['name'],' ')) @@ -1695,6 +1697,7 @@ if(! function_exists('profile_sidebar')) { '$pdesc' => $pdesc, '$marital' => $marital, '$homepage' => $homepage, + '$about' => $about, '$network' => t('Network:'), '$diaspora' => $diaspora, '$contact_block' => $contact_block, @@ -2071,7 +2074,7 @@ if(! function_exists('load_contact_links')) { if(! $uid || x($a->contacts,'empty')) return; - $r = q("SELECT `id`,`network`,`url`,`thumb` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 ", + $r = q("SELECT `id`,`network`,`url`,`thumb` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `thumb` != ''", intval($uid) ); if(count($r)) { diff --git a/doc/Account-Basics.md b/doc/Account-Basics.md index 2c3c05e8bf..91e19b6493 100644 --- a/doc/Account-Basics.md +++ b/doc/Account-Basics.md @@ -59,7 +59,7 @@ After your first login, please visit the 'Settings' page from the top menu bar a **Getting Started** -A ['Tips for New Members'](newmember) link will show up on your home page for two weeks to provide some important Getting Started information. +A ['Tips for New Members'](newmember) link will show up on your network and home pages for two weeks to provide some important Getting Started information. **Retrieving Personal Data** diff --git a/doc/Bugs-and-Issues.md b/doc/Bugs-and-Issues.md index 251f91e936..c9f845c001 100644 --- a/doc/Bugs-and-Issues.md +++ b/doc/Bugs-and-Issues.md @@ -11,21 +11,3 @@ If you're a technical user, or your site doesn't have a support page, you'll nee Try to provide as much information as you can about the bug, including the **full** text of any error messages or notices, and any steps required to replicate the problem in as much detail as possible. It's generally better to provide too much information than not enough. See this article to learn more about submitting **good** bug reports. - - -**Bug Sponsorship** - -If you find a bug, and it is caused by a problem in main branch (ie, is not specific to our site), you may sponsor it. - -The bug/issue database allows you to sponsor issues. This provides an incentive for developers to work on your issue. This isn't necessary - we don't like bugs and will try to fix them. This has more importance for future development projects and feature requests. - -Bug sponsorship works on the honour system. If you agree to pay $10 to fix a bug, when the fix has been checked in and verified you should send a paypal payment to the developer assigned to the bug. Don't ever think you can get away with not paying a developer for work performed. Some of these guys could hack into your credit card account if you make them mad. - -At the present time, one has to be approved as a "developer" to be able to assign themselves to a sponsored bug. This requires the developer to have some history fixing Friendica bugs. This is for everybody's assurance that the bug fix will work well with Friendica. If you wish to become approved as a developer, work on and check in some non-sponsored issues or your own projects and we will move you up the ladder. - -If you truly feel you have the solution to a sponsored bug but aren't an approved developer, you risk a sponsored developer assigning the bug to themselves before you check it in, but if they haven't done so - include a short note with your pull request. Assuming that it meets our code standards, we'll see that you get credit. - -If you sponsor a project at greater than a $50 level, you may be requested by the developer for payment up front before work has begun (typically half). Again this is on the honour system - and is mostly to avoid payment issues and disagreements later. You should also expect to see some progress updates or demonstrations if the work takes more than a week or two. If the work is not completed within a reasonable time (as decided by those involved), you are entitled to get your money back. - -Friendica is not involved in these transactions. It is purely a personal agreement between sponsors and developers. If there are any issues, the parties will need to work it out between themselves. We're just providing some guidelines to help avoid potential problems. - diff --git a/doc/Developers-Intro.md b/doc/Developers-Intro.md new file mode 100644 index 0000000000..727d3be92e --- /dev/null +++ b/doc/Developers-Intro.md @@ -0,0 +1,50 @@ +Where to get started to help improve Friendica? +=============================================== + +* [Home](help) + +Do you want to help us improve Friendica? Here we have compiled some hints on how to get started and some tasks to help you choose. A project like Friendica is the sum of many different contributions. **Very different skills are required to make good software. Some of them involve coding, others do not.** We are looking for helpers in all areas, whether you write text or code, whether you spread the word to convince people or design new icons. Whether you feel like an expert or like a newbie - join us with your ideas! + +**Contact us** + +The discussion of Friendica development takes place in the following Friendica forums: + +* The main [forum for Friendica development](https://friendika.openmindspace.org/profile/friendicadevelopers) +* The [forum for Friendica theme development](https://friendica.eu/profile/ftdevs) + +**Help other users** + +Remember the questions you had when you first tried Friendica? A good place to start can be to help new people find their way around Friendica in the [general support forum](https://helpers.pyxis.uberspace.de/profile/helpers). Welcome them, answer their questions, point them to documentation or ping other helpers directly if you can't help but think you know who can. + +**Translations** + +The documentation contains help on how to translate Friendica in the /help/translations page. + +* Check if the user interface has already been translated to your language. +* If not, we might want to start with translating the /help pages. + +**Design** + +Are you good at designing things? If you have seen Friendica you probably have ideas to improve it, haven't you? + +* Make plans for a better Friendica interface design and share them with us. +* Tell us if you are able to realize your ideas or what kind of help you need. We can't promise we have the right skills in the group but we'll try. +* Choose a thing to start with, e.g. work on the icon set of your favourite theme + +**Programming** + +* **Issues:** Have a look at our issue tracker on gihub! + * Try to reproduce a bug that needs more inquries and write down what you find out. + * If a bug looks fixed, ask the bug reporters for feedback to find out if the bug can be closed. + * Fix a bug if you can. + +* **Web interface:** The thing many people want most is a better interface, preferably a responsive Friendica theme. This is a piece of work! If you want to get involved here: + * Look at the first steps that were made (e.g. the clean theme). Ask us to find out whom to talk to about their experiences. + * Talk to design people if you know any. + * Let us know about your plans [in the dev forum](https://friendika.openmindspace.org/profile/friendicadevelopers) and the [theme developer forum](https://friendica.eu/profile/ftdevs). Do not worry about cross-posting. + +* **Client software:** There are free software clients that do somehow work with Friendica but most of them need love and maintenance. Also, they were mostly made for other platforms using the StatusNet API. This means they lack:w + the features that are really specific to Friendica. Popular clients you might want to have a look at are: + * [Hotot (Linux)](http://hotot.org/) - abandoned + * [Friendica for Android](https://github.com/max-weller/friendica-for-android) - abandoned + * You can find more working client software in [Wikipedia](https://en.wikipedia.org/wiki/Friendica). diff --git a/doc/Developers.md b/doc/Developers.md deleted file mode 100644 index b0fce47b52..0000000000 --- a/doc/Developers.md +++ /dev/null @@ -1,23 +0,0 @@ -Friendica Developer Guide -=================== - -**Here is how you can join us.** - -First, get yourself a working git package on the system where you will be -doing development. - -Create your own github account. - -You may fork/clone the Friendica repository from [https://github.com/friendica/friendica.git](https://github.com/friendica/friendica.git). - -Follow the instructions provided here: [http://help.github.com/fork-a-repo/](http://help.github.com/fork-a-repo/) -to create and use your own tracking fork on github - -Then go to your github page and create a "Pull request" when you are ready -to notify us to merge your work. - -**Important** - -Please pull in any changes from the project repository and merge them with your work **before** issuing a pull request. We reserve the right to reject any patch which results in a large number of merge conflicts. This is especially true in the case of language translations - where we may not be able to understand the subtle differences between conflicting versions. - -Also - **test your changes**. Don't assume that a simple fix won't break something else. If possible get an experienced Friendica developer to review the code. \ No newline at end of file diff --git a/doc/Github.md b/doc/Github.md new file mode 100644 index 0000000000..efee32d5ba --- /dev/null +++ b/doc/Github.md @@ -0,0 +1,28 @@ +Friendica on Github +=================== + +* [Home](help) + +**Here is how you can work on the code with us** + +1. Install git on the system you will be developing on. +2. Create your own [github](https://github.com) account. +3. Fork the Friendica repository from [https://github.com/friendica/friendica.git](https://github.com/friendica/friendica.git). +4. Clone your fork from your Github account to your machine. Follow the instructions provided here: [http://help.github.com/fork-a-repo/](http://help.github.com/fork-a-repo/) to create and use your own tracking fork on github +5. Commit your changes to your fork. Then go to your github page and create a "Pull request" to notify us to merge your work. + +**Branches** + +There are two branches in the main repo on Github: + +1. master: This branch contains stable releases only. +2. develop: This branch contains the latest code. This is what you want to work with. + +**Important** + +Please pull in any changes from the project repository and merge them with your work **before** issuing a pull request. We reserve the right to reject any patch which results in a large number of merge conflicts. This is especially true in the case of language translations - where we may not be able to understand the subtle differences between conflicting versions. + +Also - **test your changes**. Don't assume that a simple fix won't break something else. If possible get an experienced Friendica developer to review the code. + +Check out how to work with [our Vagrant](help/Vagrant) to save a lot of setup time! + diff --git a/doc/Home.md b/doc/Home.md index 6020f2c01c..592ee977b2 100644 --- a/doc/Home.md +++ b/doc/Home.md @@ -1,7 +1,7 @@ Friendica Documentation and Resources ===================================== -**Contents** +**User Manual** * General functions - first steps * [Account Basics](help/Account-Basics) @@ -10,7 +10,7 @@ Friendica Documentation and Resources * [BBCode tag reference](help/BBCode) * [Comment, sort and delete posts](help/Text_comment) * [Profiles](help/Profiles) -* You and other user +* You and other users * [Connectors](help/Connectors) * [Making Friends](help/Making-Friends) * [Groups and Privacy](help/Groups-and-Privacy) @@ -19,12 +19,11 @@ Friendica Documentation and Resources * [Chats](help/Chats) * Further information * [Improve Performance](help/Improve-Performance) - * [Move Account](help/Move-Account) - * [Remove Account](help/Remove-Account) - * [Bugs and Issues](help/Bugs-and-Issues) + * [Move your account](help/Move-Account) + * [Delete your account](help/Remove-Account) * [Frequently asked questions (FAQ)](help/FAQ) -**Technical Documentation** +**Admin Manual** * [Install](help/Install) * [Settings](help/Settings) @@ -32,10 +31,16 @@ Friendica Documentation and Resources * [Installing Connectors (Facebook/Twitter/StatusNet)](help/Installing-Connectors) * [Message Flow](help/Message-Flow) * [Using SSL with Friendica](help/SSL) -* [Developers](help/Developers) * [Twitter/StatusNet API Functions](help/api) -* [Translation of Friendica](help/translations) +**Developer Manual** + +* [Where to get started?](help/Developers-Intro) +* [Help on Github](help/Github) +* [Help on Vagrant](help/Vagrant) +* [How to translate Friendica](help/translations) +* [Bugs and Issues](help/Bugs-and-Issues) +* [Smarty 3 Templates](help/smarty3-templates) **External Resources** diff --git a/doc/Plugins.md b/doc/Plugins.md index 2ae942eae5..833c1d200e 100644 --- a/doc/Plugins.md +++ b/doc/Plugins.md @@ -196,6 +196,24 @@ Current hooks: 'email' => email to look up the avatar for 'url' => the (string) generated URL of the avatar +**'emailer_send_prepare'** - called from Emailer::send() before building the mime message + $b is (array) , params to Emailer::send() + 'fromName' => name of the sender + 'fromEmail' => email fo the sender + 'replyTo' => replyTo address to direct responses + 'toEmail' => destination email address + 'messageSubject' => subject of the message + 'htmlVersion' => html version of the message + 'textVersion' => text only version of the message + 'additionalMailHeader' => additions to the smtp mail header + +**'emailer_send'** - called before calling PHP's mail() + $b is (array) , params to mail() + 'to' + 'subject' + 'body' + 'headers' + A complete list of all hook callbacks with file locations (generated 14-Feb-2012): Please see the source for details of any hooks not documented above. diff --git a/doc/Vagrant.md b/doc/Vagrant.md new file mode 100644 index 0000000000..fd6b818e78 --- /dev/null +++ b/doc/Vagrant.md @@ -0,0 +1,23 @@ +Vagrant for Friendica Developers +=================== + +* [Home](help) + +[Vagrant](https://www.vagrantup.com/) is a virtualization solution for developers. No need to setup up a webserver, database etc. before actually starting. Vagrant creates a virtual machine (an Ubuntu 12.04) for you that you can just run inside VirtualBox and start to work directly on Friendica. What you need to do: + +1. Install VirtualBox and vagrant. +2. Git clone your Friendica repository. Inside, you'll find a "Vagrantfile" and some scripts in the utils folder. +3. Run "vagrant up" from inside the friendica clone. Be patient: When it runs for the first time, it downloads an Ubuntu Server image. +4. Run "vagrant ssh" to log into the virtual machine to log in to the VM. +5. Open 192.168.22.10 in a browser to finish the Friendica installation. The mysql database is called "friendica", the mysql user and password both are "root". +6. Work on Friendica's code in your git clone on your machine (not in the VM). +7. Check the changes in your browser in the VM. Debug via the "vagrant ssh" login. +8. Commit and push your changes directly back to Github. + +If you want to stop vagrant after finishing your work, run the following command + + $> vagrant halt + +in the development directory. + +For further documentation of vagrant, please see [the vagrant*docs*](https://docs.vagrantup.com/v2/). diff --git a/doc/snarty3-templates.md b/doc/snarty3-templates.md new file mode 100644 index 0000000000..751ef20b31 --- /dev/null +++ b/doc/snarty3-templates.md @@ -0,0 +1,173 @@ +Friendica Templating Documentation +================================== + +* [Home](help) + +Friendica uses [Smarty 3](http://www.smarty.net/) as PHP templating engine. The main templates are found in + + /view/templates + +theme authors may overwrite the default templates by putting a files with the same name into the + + /view/themes/$themename/templates + +directory. + +Templates that are only used by addons shall be placed in the + + /addon/$addonname/templates + +directory. + +To render a template use the function *get_markup_template* to load the template and *replace_macros* to replace the macros/variables in the just loaded template file. + + $tpl = get_markup_template('install_settings.tpl'); + $o .= replace_macros($tpl, array( ... )); + +the array consists of an association of an identifier and the value for that identifier, i.e. + + '$title' => $install_title, + +where the value may as well be an array by its own. + +Form Templates +-------------- + +To guarantee a consistent look and feel for input forms, i.e. in the settings sections, there are templates for the basic form fields. They are initialized with an array of data, depending on the tyle of the field. + +All of these take an array for holding the values, i.e. for an one line text input field, which is required and should be used to type email addesses use something along + + '$adminmail' => array('adminmail', t('Site administrator email address'), $adminmail, t('Your account email address must match this in order to use the web admin panel.'), 'required', '', 'email'), + +To evaluate the input value, you can then use the $_POST array, more precisely the $_POST['adminemail'] variable. + +Listed below are the template file names, the general purpose of the template and their field parameters. + +### field_checkbox.tpl + +A checkbox. If the checkbox is checked its value is **1**. Field parameter: + +0. Name of the checkbox, +1. Label for the checkbox, +2. State checked? if true then the checkbox will be marked as checked, +3. Help text for the checkbox. + +### field_combobox.tpl + +A combobox, combining a pull down selection and a textual input field. Field parameter: + +0. Name of the combobox, +1. Label for the combobox, +2. Current value of the variable, +3. Help text for the combobox, +4. Array holding the possible values for the textual input, +5. Array holding the possible values for the pull down selection. + +### field_custom.tpl + +A customizeable template to include a custom element in the form with the usual surroundings, Field parameter: + +0. Name of the field, +1. Label for the field, +2. the field, +3. Help text for the field. + +### field_input.tpl + +A single line input field for textual input. Field parameter: + +0. Name of the field, +1. Label for the input box, +2. Current value of the variable, +3. Help text for the input box, +4. if set to "required" modern browser will check that this input box is filled when submitting the form, +5. if set to "autofocus" modern browser will put the cursur into this box once the page is loaded, +6. if set to "email" or "url" modern browser will check that the filled in value corresponds to an email address or URL. + +### field_intcheckbox.tpl + +A checkbox (see above) but you can define the value of it. Field parameter: + +0. Name of the checkbox, +1. Label for the checkbox, +2. State checked? if true then the checkbox will be marked as checked, +3. Value of the checkbox, +4. Help text for the checkbox. + +### field_openid.tpl + +An input box (see above) but prepared for special CSS styling for openID input. Field parameter: + +0. Name of the field, +1. Label for the input box, +2. Current value of the variable, +3. Help text for the input field. + +### field_password.tpl + +A single line input field (see above) for textual input. The characters typed in will not be shown by the browser. Field parameter: + +0. Name of the field, +1. Label for the field, +2. Value for the field, e.g. the old password, +3. Help text for the input field, +4. if set to "required" modern browser will check that this field is filled out, +5. if set to "autofocus" modern browser will put the cursor automatically into this input field. + +### field_radio.tpl + +A radio button. Field parameter: + +0. Name of the radio button, +1. Label for the radio button, +2. Current value of the variable, +3. Help text for the button, +4. if set, the radio button will be checked. + +### field_richtext.tpl + +A multi-line input field for *rich* textual content. Field parameter: + +0. Name of the input field, +1. Label for the input box, +2. Current text for the box, +3. Help text for the input box. + +### field_select.tpl + +A drop down selection box. Field parameter: + +0. Name of the field, +1. Label of the selection box, +2. Current selected value, +3. Help text for the selection box, +4. Array holding the possible values of the selection drop down. + +### field_select_raw.tpl + +A drop down selection box (see above) but you have to prepare the values yourself. Field parameter: + +0. Name of the field, +1. Label of the selection box, +2. Current selected value, +3. Help text for the selection box, +4. Possible values of the selection drop down. + +### field_textarea.tpl + +A multi-line input field for (plain) textual content. Field parameter: + +0. Name of the input field, +1. Label for the input box, +2. Current text for the box, +3. Help text for the input box. + +### field_yesno.tpl + +A button that has two states *yes* or *no*. Field parameter: + +0. Name of the input field, +1. Label for the button, +2. Current value, +3. Help text for the button +4. if set to an array of two values, these two will be used, otherwise "off" and "on". diff --git a/include/Emailer.php b/include/Emailer.php index 535a054289..d0568f6001 100644 --- a/include/Emailer.php +++ b/include/Emailer.php @@ -14,16 +14,24 @@ class Emailer { * @param htmlVersion html version of the message * @param textVersion text only version of the message * @param additionalMailHeader additions to the smtp mail header + * @param optional uid user id of the destination user */ static public function send($params) { + call_hooks('emailer_send_prepare', $params); + + $email_textonly = False; + if (x($params,"uid")) { + $email_textonly = get_pconfig($params['uid'], "system", "email_textonly"); + } + $fromName = email_header_encode(html_entity_decode($params['fromName'],ENT_QUOTES,'UTF-8'),'UTF-8'); $messageSubject = email_header_encode(html_entity_decode($params['messageSubject'],ENT_QUOTES,'UTF-8'),'UTF-8'); // generate a mime boundary $mimeBoundary =rand(0,9)."-" - .rand(10000000000,9999999999)."-" - .rand(10000000000,9999999999)."=:" + .rand(10000000000,99999999999)."-" + .rand(10000000000,99999999999)."=:" .rand(10000,99999); // generate a multipart/alternative message header @@ -41,19 +49,32 @@ class Emailer { "--" . $mimeBoundary . "\n" . // plain text section "Content-Type: text/plain; charset=UTF-8\n" . "Content-Transfer-Encoding: base64\n\n" . - $textBody . "\n" . - "--" . $mimeBoundary . "\n" . // text/html section - "Content-Type: text/html; charset=UTF-8\n" . - "Content-Transfer-Encoding: base64\n\n" . - $htmlBody . "\n" . + $textBody . "\n"; + + if (!$email_textonly && !is_null($params['htmlVersion'])){ + $multipartMessageBody .= + "--" . $mimeBoundary . "\n" . // text/html section + "Content-Type: text/html; charset=UTF-8\n" . + "Content-Transfer-Encoding: base64\n\n" . + $htmlBody . "\n"; + } + $multipartMessageBody .= "--" . $mimeBoundary . "--\n"; // message ending // send the message + $hookdata = array( + 'to' => $params['toEmail'], + 'subject' => $messageSubject, + 'body' => $multipartMessageBody, + 'headers' => $messageHeader + ); + //echo "
"; var_dump($hookdata); killme();
+		call_hooks("emailer_send", $hookdata);
 		$res = mail(
-			$params['toEmail'],	 									// send to address
-			$messageSubject,								// subject
-			$multipartMessageBody,	 						// message body
-			$messageHeader									// message headers
+			$hookdata['to'],							// send to address
+			$hookdata['subject'],						// subject
+			$hookdata['body'], 	 						// message body
+			$hookdata['headers']						// message headers
 		);
 		logger("header " . 'To: ' . $params['toEmail'] . "\n" . $messageHeader, LOGGER_DEBUG);
 		logger("return value " . (($res)?"true":"false"), LOGGER_DEBUG);
diff --git a/include/Photo.php b/include/Photo.php
index 580fd25b6a..2f7c990256 100644
--- a/include/Photo.php
+++ b/include/Photo.php
@@ -764,11 +764,16 @@ function get_photo_info($url) {
 	if (is_null($data)) {
 		$img_str = fetch_url($url, true, $redirects, 4);
 
+		$filesize = strlen($img_str);
+
 		$tempfile = tempnam(get_temppath(), "cache");
 		file_put_contents($tempfile, $img_str);
 		$data = getimagesize($tempfile);
 		unlink($tempfile);
 
+		if ($data)
+			$data["size"] = $filesize;
+
 		Cache::set($url, serialize($data));
 	} else
 		$data = unserialize($data);
diff --git a/include/Scrape.php b/include/Scrape.php
index 99784af336..7df86d9f2d 100644
--- a/include/Scrape.php
+++ b/include/Scrape.php
@@ -343,6 +343,12 @@ function probe_url($url, $mode = PROBE_NORMAL) {
 	if(! $url)
 		return $result;
 
+	$result = Cache::get("probe_url:".$mode.":".$url);
+	if (!is_null($result)) {
+		$result = unserialize($result);
+		return $result;
+	}
+
 	$network = null;
 	$diaspora = false;
 	$diaspora_base = '';
@@ -350,6 +356,23 @@ function probe_url($url, $mode = PROBE_NORMAL) {
 	$diaspora_key = '';
 	$has_lrdd = false;
 	$email_conversant = false;
+	$connectornetworks = false;
+	$appnet = false;
+
+	if (strpos($url,'twitter.com')) {
+		$connectornetworks = true;
+		$network = NETWORK_TWITTER;
+	}
+
+	if (strpos($url,'www.facebook.com')) {
+		$connectornetworks = true;
+		$network = NETWORK_FACEBOOK;
+	}
+
+	if (strpos($url,'alpha.app.net')) {
+		$appnet = true;
+		$network = NETWORK_APPNET;
+	}
 
 	// Twitter is deactivated since twitter closed its old API
 	//$twitter = ((strpos($url,'twitter.com') !== false) ? true : false);
@@ -357,7 +380,7 @@ function probe_url($url, $mode = PROBE_NORMAL) {
 
 	$at_addr = ((strpos($url,'@') !== false) ? true : false);
 
-	if((! $twitter) && (! $lastfm)) {
+	if((!$appnet) && (!$lastfm) && !$connectornetworks) {
 
 		if(strpos($url,'mailto:') !== false && $at_addr) {
 			$url = str_replace('mailto:','',$url);
@@ -401,6 +424,9 @@ function probe_url($url, $mode = PROBE_NORMAL) {
 						$pubkey = $diaspora_key;
 					$diaspora = true;
 				}
+				if($link['@attributes']['rel'] === 'http://ostatus.org/schema/1.0/subscribe') {
+					$diaspora = false;
+				}
 			}
 
 			// Status.Net can have more than one profile URL. We need to match the profile URL
@@ -597,13 +623,16 @@ function probe_url($url, $mode = PROBE_NORMAL) {
 			// Will leave it to others to figure out how to grab the avatar, which is on the $url page in the open graph meta links
 		}
 
-		if($twitter || ! $poll)
+		if($appnet || ! $poll)
 			$check_feed = true;
 		if((! isset($vcard)) || (! x($vcard,'fn')) || (! $profile))
 			$check_feed = true;
 		if(($at_addr) && (! count($links)))
 			$check_feed = false;
 
+		if ($connectornetworks)
+			$check_feed = false;
+
 		if($check_feed) {
 
 			$feedret = scrape_feed(($poll) ? $poll : $url);
@@ -750,5 +779,16 @@ function probe_url($url, $mode = PROBE_NORMAL) {
 
 	logger('probe_url: ' . print_r($result,true), LOGGER_DEBUG);
 
+	// Trying if it maybe a diaspora account
+	if ($result['network'] == NETWORK_FEED) {
+		require_once('include/bbcode.php');
+		$address = GetProfileUsername($url, "", true);
+		$result2 = probe_url($address, $mode);
+		if ($result2['network'] != "")
+			$result = $result2;
+	}
+
+	Cache::set("probe_url:".$mode.":".$url,serialize($result));
+
 	return $result;
 }
diff --git a/include/acl_selectors.php b/include/acl_selectors.php
index 0a9b2c90ae..668544b0bc 100644
--- a/include/acl_selectors.php
+++ b/include/acl_selectors.php
@@ -2,13 +2,14 @@
 
 require_once("include/contact_selectors.php");
 require_once("include/features.php");
+require_once("mod/proxy.php");
 
 /**
- * 
+ *
  */
 
 /**
- * @package acl_selectors 
+ * @package acl_selectors
  */
 function group_select($selname,$selclass,$preselected = false,$size = 4) {
 
@@ -35,11 +36,12 @@ function group_select($selname,$selclass,$preselected = false,$size = 4) {
 				$selected = " selected=\"selected\" ";
 			else
 				$selected = '';
+
 			$trimmed = mb_substr($rr['name'],0,12);
 
 			$o .= "\r\n";
 		}
-	
+
 	}
 	$o .= "\r\n";
 
@@ -89,13 +91,13 @@ function contact_selector($selname, $selclass, $preselected = false, $options) {
 						$networks = array('dfrn','mail','dspr');
 					else
 						$networks = array('dfrn','face','mail','dspr','stat');
-					break;					
+					break;
 				default:
 					break;
 			}
 		}
 	}
-		
+
 	$x = array('options' => $options, 'size' => $size, 'single' => $single, 'mutual' => $mutual, 'exclude' => $exclude, 'networks' => $networks);
 
 	call_hooks('contact_select_options', $x);
@@ -117,15 +119,15 @@ function contact_selector($selname, $selclass, $preselected = false, $options) {
 		$str_nets = implode(',',$x['networks']);
 		$sql_extra .= " AND `network` IN ( $str_nets ) ";
 	}
-	
+
 	$tabindex = (x($options, 'tabindex') ? "tabindex=\"" . $options["tabindex"] . "\"" : "");
 
 	if($x['single'])
 		$o .= "\r\n";
 
-	$r = q("SELECT `id`, `name`, `url`, `network` FROM `contact` 
+	$r = q("SELECT `id`, `name`, `url`, `network` FROM `contact`
 		WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0 AND `notify` != ''
 		$sql_extra
 		ORDER BY `name` ASC ",
@@ -150,7 +152,7 @@ function contact_selector($selname, $selclass, $preselected = false, $options) {
 
 			$o .= "\r\n";
 		}
-	
+
 	}
 
 	$o .= "\r\n";
@@ -164,6 +166,8 @@ function contact_selector($selname, $selclass, $preselected = false, $options) {
 
 function contact_select($selname, $selclass, $preselected = false, $size = 4, $privmail = false, $celeb = false, $privatenet = false, $tabindex = null) {
 
+	require_once("include/bbcode.php");
+
 	$a = get_app();
 
 	$o = '';
@@ -180,7 +184,7 @@ function contact_select($selname, $selclass, $preselected = false, $size = 4, $p
 	if($privmail) {
 		$sql_extra .= " AND `network` IN ( 'dfrn', 'dspr' ) ";
 	}
-	elseif($privatenet) {	
+	elseif($privatenet) {
 		$sql_extra .= " AND `network` IN ( 'dfrn', 'mail', 'face', 'dspr' ) ";
 	}
 
@@ -188,10 +192,10 @@ function contact_select($selname, $selclass, $preselected = false, $size = 4, $p
 
 	if($privmail)
 		$o .= "\r\n";
 
-	$r = q("SELECT `id`, `name`, `url`, `network` FROM `contact` 
+	$r = q("SELECT `id`, `name`, `url`, `network` FROM `contact`
 		WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0 AND `notify` != ''
 		$sql_extra
 		ORDER BY `name` ASC ",
@@ -212,11 +216,14 @@ function contact_select($selname, $selclass, $preselected = false, $size = 4, $p
 			else
 				$selected = '';
 
-			$trimmed = mb_substr($rr['name'],0,20);
+			if($privmail)
+				$trimmed = GetProfileUsername($rr['url'], $rr['name'], false);
+			else
+				$trimmed = mb_substr($rr['name'],0,20);
 
 			$o .= "\r\n";
 		}
-	
+
 	}
 
 	$o .= "\r\n";
@@ -239,7 +246,7 @@ function prune_deadguys($arr) {
 	$r = q("select id from contact where id in ( " . $str . ") and blocked = 0 and pending = 0 and archive = 0 ");
 	if($r) {
 		$ret = array();
-		foreach($r as $rr) 
+		foreach($r as $rr)
 			$ret[] = intval($rr['id']);
 		return $ret;
 	}
@@ -251,7 +258,7 @@ function get_acl_permissions($user = null) {
 	$allow_cid = $allow_gid = $deny_cid = $deny_gid = false;
 
 	if(is_array($user)) {
-		$allow_cid = ((strlen($user['allow_cid'])) 
+		$allow_cid = ((strlen($user['allow_cid']))
 			? explode('><', $user['allow_cid']) : array() );
 		$allow_gid = ((strlen($user['allow_gid']))
 			? explode('><', $user['allow_gid']) : array() );
@@ -411,21 +418,21 @@ function acl_lookup(&$a, $out_type = 'json') {
 	}
 
 	if ($type=='' || $type=='c'){
-		$r = q("SELECT COUNT(*) AS c FROM `contact` 
-				WHERE `uid` = %d AND `self` = 0 
+		$r = q("SELECT COUNT(*) AS c FROM `contact`
+				WHERE `uid` = %d AND `self` = 0
 				AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0
 				AND `notify` != '' $sql_extra2" ,
 			intval(local_user())
 		);
 		$contact_count = (int)$r[0]['c'];
-	} 
+	}
 	elseif ($type == 'm') {
 
 		// autocomplete for Private Messages
 
-		$r = q("SELECT COUNT(*) AS c FROM `contact` 
-				WHERE `uid` = %d AND `self` = 0 
-				AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0 
+		$r = q("SELECT COUNT(*) AS c FROM `contact`
+				WHERE `uid` = %d AND `self` = 0
+				AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0
 				AND `network` IN ('%s','%s','%s') $sql_extra2" ,
 			intval(local_user()),
 			dbesc(NETWORK_DFRN),
@@ -439,8 +446,8 @@ function acl_lookup(&$a, $out_type = 'json') {
 
 		// autocomplete for Contacts
 
-		$r = q("SELECT COUNT(*) AS c FROM `contact` 
-				WHERE `uid` = %d AND `self` = 0 
+		$r = q("SELECT COUNT(*) AS c FROM `contact`
+				WHERE `uid` = %d AND `self` = 0
 				AND `pending` = 0 $sql_extra2" ,
 			intval(local_user())
 		);
@@ -449,22 +456,22 @@ function acl_lookup(&$a, $out_type = 'json') {
 	} else {
 		$contact_count = 0;
 	}
-	
-	
+
+
 	$tot = $group_count+$contact_count;
-	
+
 	$groups = array();
 	$contacts = array();
-	
+
 	if ($type=='' || $type=='g'){
-		
+
 		$r = q("SELECT `group`.`id`, `group`.`name`, GROUP_CONCAT(DISTINCT `group_member`.`contact-id` SEPARATOR ',') as uids
-				FROM `group`,`group_member` 
-				WHERE `group`.`deleted` = 0 AND `group`.`uid` = %d 
+				FROM `group`,`group_member`
+				WHERE `group`.`deleted` = 0 AND `group`.`uid` = %d
 					AND `group_member`.`gid`=`group`.`id`
 					$sql_extra
 				GROUP BY `group`.`id`
-				ORDER BY `group`.`name` 
+				ORDER BY `group`.`name`
 				LIMIT %d,%d",
 			intval(local_user()),
 			intval($start),
@@ -472,7 +479,7 @@ function acl_lookup(&$a, $out_type = 'json') {
 		);
 
 		foreach($r as $g){
-//		logger('acl: group: ' . $g['name'] . ' members: ' . $g['uids']);		
+//		logger('acl: group: ' . $g['name'] . ' members: ' . $g['uids']);
 			$groups[] = array(
 				"type"  => "g",
 				"photo" => "images/twopeople.png",
@@ -484,10 +491,10 @@ function acl_lookup(&$a, $out_type = 'json') {
 			);
 		}
 	}
-	
+
 	if ($type=='' || $type=='c'){
-	
-		$r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, forum FROM `contact` 
+
+		$r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, forum FROM `contact`
 			WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0 AND `notify` != ''
 			$sql_extra2
 			ORDER BY `name` ASC ",
@@ -495,7 +502,7 @@ function acl_lookup(&$a, $out_type = 'json') {
 		);
 	}
 	elseif($type == 'm') {
-		$r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag` FROM `contact` 
+		$r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag` FROM `contact`
 			WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0
 			AND `network` IN ('%s','%s','%s')
 			$sql_extra2
@@ -507,7 +514,7 @@ function acl_lookup(&$a, $out_type = 'json') {
 		);
 	}
 	elseif($type == 'a') {
-		$r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag` FROM `contact` 
+		$r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag` FROM `contact`
 			WHERE `uid` = %d AND `pending` = 0
 			$sql_extra2
 			ORDER BY `name` ASC ",
@@ -527,7 +534,7 @@ function acl_lookup(&$a, $out_type = 'json') {
 		$x['data'] = array();
 		if(count($r)) {
 			foreach($r as $g) {
-				$x['photos'][] = $g['micro'];
+				$x['photos'][] = proxy_url($g['micro']);
 				$x['links'][] = $g['url'];
 				$x['suggestions'][] = $g['name'];
 				$x['data'][] = intval($g['id']);
@@ -541,7 +548,7 @@ function acl_lookup(&$a, $out_type = 'json') {
 		foreach($r as $g){
 			$contacts[] = array(
 				"type"  => "c",
-				"photo" => $g['micro'],
+				"photo" => proxy_url($g['micro']),
 				"name"  => $g['name'],
 				"id"	=> intval($g['id']),
 				"network" => $g['network'],
@@ -549,28 +556,28 @@ function acl_lookup(&$a, $out_type = 'json') {
 				"nick" => ($g['attag']) ? $g['attag'] : $g['nick'],
 				"forum" => $g['forum']
 			);
-		}			
+		}
 	}
-		
+
 	$items = array_merge($groups, $contacts);
 
 	if ($conv_id) {
-		/* if $conv_id is set, get unknow contacts in thread */ 
+		/* if $conv_id is set, get unknow contacts in thread */
 		/* but first get know contacts url to filter them out */
 		function _contact_link($i){ return dbesc($i['link']); }
 		$known_contacts = array_map(_contact_link, $contacts);
 		$unknow_contacts=array();
-		$r = q("select 
+		$r = q("select
 					`author-avatar`,`author-name`,`author-link`
 				from item where parent=%d
 				and (
 					`author-name` LIKE '%%%s%%' OR
 					`author-link` LIKE '%%%s%%'
-				) and 
+				) and
 				`author-link` NOT IN ('%s')
 				GROUP BY `author-link`
 				ORDER BY `author-name` ASC
-				", 
+				",
 				intval($conv_id),
 				dbesc($search),
 				dbesc($search),
@@ -586,7 +593,7 @@ function acl_lookup(&$a, $out_type = 'json') {
 				// /nickname
 				$unknow_contacts[] = array(
 					"type"  => "c",
-					"photo" => $row['author-avatar'],
+					"photo" => proxy_url($row['author-avatar']),
 					"name"  => $row['author-name'],
 					"id"	=> '',
 					"network" => "unknown",
@@ -611,14 +618,14 @@ function acl_lookup(&$a, $out_type = 'json') {
 		);
 		return $o;
 	}
-	
+
 	$o = array(
 		'tot'	=> $tot,
 		'start' => $start,
 		'count'	=> $count,
 		'items'	=> $items,
 	);
-	
+
 	echo json_encode($o);
 
 	killme();
diff --git a/include/api.php b/include/api.php
index ffa5d0e9df..2d3c31af0c 100644
--- a/include/api.php
+++ b/include/api.php
@@ -96,24 +96,49 @@
 		}
 
 		$user = $_SERVER['PHP_AUTH_USER'];
-		$encrypted = hash('whirlpool',trim($_SERVER['PHP_AUTH_PW']));
+		$password = $_SERVER['PHP_AUTH_PW'];
+		$encrypted = hash('whirlpool',trim($password));
 
 
 		/**
 		 *  next code from mod/auth.php. needs better solution
 		 */
+		$record = null;
 
-		// process normal login request
-
-		$r = q("SELECT * FROM `user` WHERE ( `email` = '%s' OR `nickname` = '%s' )
-			AND `password` = '%s' AND `blocked` = 0 AND `account_expired` = 0 AND `account_removed` = 0 AND `verified` = 1 LIMIT 1",
-			dbesc(trim($user)),
-			dbesc(trim($user)),
-			dbesc($encrypted)
+		$addon_auth = array(
+			'username' => trim($user), 
+			'password' => trim($password),
+			'authenticated' => 0,
+			'user_record' => null
 		);
-		if(count($r)){
-			$record = $r[0];
-		} else {
+
+		/**
+		 *
+		 * A plugin indicates successful login by setting 'authenticated' to non-zero value and returning a user record
+		 * Plugins should never set 'authenticated' except to indicate success - as hooks may be chained
+		 * and later plugins should not interfere with an earlier one that succeeded.
+		 *
+		 */
+
+		call_hooks('authenticate', $addon_auth);
+
+		if(($addon_auth['authenticated']) && (count($addon_auth['user_record']))) {
+			$record = $addon_auth['user_record'];
+		}
+		else {
+			// process normal login request
+
+			$r = q("SELECT * FROM `user` WHERE ( `email` = '%s' OR `nickname` = '%s' )
+				AND `password` = '%s' AND `blocked` = 0 AND `account_expired` = 0 AND `account_removed` = 0 AND `verified` = 1 LIMIT 1",
+				dbesc(trim($user)),
+				dbesc(trim($user)),
+				dbesc($encrypted)
+			);
+			if(count($r))
+				$record = $r[0];
+		}
+
+		if((! $record) || (! count($record))) {
 			logger('API_login failure: ' . print_r($_SERVER,true), LOGGER_DEBUG);
 			header('WWW-Authenticate: Basic realm="Friendica"');
 			header('HTTP/1.0 401 Unauthorized');
@@ -197,6 +222,7 @@
 	}
 
 	function api_error(&$a, $type, $error) {
+		# TODO:  https://dev.twitter.com/overview/api/response-codes
 		$r = "".$error."".$a->query_string."";
 		switch($type){
 			case "xml":
@@ -871,8 +897,10 @@
 				$in_reply_to_screen_name = NULL;
 			}
 
+			$converted = api_convert_item($item);
+
 			$status_info = array(
-				'text' => trim(html2plain(bbcode(api_clean_plain_items($lastwall['body']), false, false, 2, true), 0)),
+				'text' => $converted["text"],
 				'truncated' => false,
 				'created_at' => api_date($lastwall['created']),
 				'in_reply_to_status_id' => $in_reply_to_status_id,
@@ -884,19 +912,17 @@
 				'in_reply_to_user_id_str' => $in_reply_to_user_id_str,
 				'in_reply_to_screen_name' => $in_reply_to_screen_name,
 				'geo' => NULL,
-				'favorited' => false,
-				// attachments
+				'favorited' => $lastwall['starred'] ? true : false,
 				'user' => $user_info,
-				'statusnet_html'		=> trim(bbcode($lastwall['body'], false, false)),
+				'statusnet_html'		=> $converted["html"],
 				'statusnet_conversation_id'	=> $lastwall['parent'],
 			);
 
-			if ($lastwall['title'] != "")
-				$status_info['statusnet_html'] = "

".bbcode($lastwall['title'])."

\n".$status_info['statusnet_html']; + if (count($converted["attachments"]) > 0) + $status_info["attachments"] = $converted["attachments"]; - $entities = api_get_entitities($status_info['text'], $lastwall['body']); - if (count($entities) > 0) - $status_info['entities'] = $entities; + if (count($converted["entities"]) > 0) + $status_info["entities"] = $converted["entities"]; if (($lastwall['item_network'] != "") AND ($status["source"] == 'web')) $status_info["source"] = network_to_name($lastwall['item_network']); @@ -970,8 +996,11 @@ } } } + + $converted = api_convert_item($item); + $user_info['status'] = array( - 'text' => trim(html2plain(bbcode(api_clean_plain_items($lastwall['body']), false, false, 2, true), 0)), + 'text' => $converted["text"], 'truncated' => false, 'created_at' => api_date($lastwall['created']), 'in_reply_to_status_id' => $in_reply_to_status_id, @@ -983,17 +1012,16 @@ 'in_reply_to_user_id_str' => $in_reply_to_user_id_str, 'in_reply_to_screen_name' => $in_reply_to_screen_name, 'geo' => NULL, - 'favorited' => false, - 'statusnet_html' => trim(bbcode($lastwall['body'], false, false)), + 'favorited' => $lastwall['starred'] ? true : false, + 'statusnet_html' => $converted["html"], 'statusnet_conversation_id' => $lastwall['parent'], ); - if ($lastwall['title'] != "") - $user_info['statusnet_html'] = "

".bbcode($lastwall['title'])."

\n".$user_info['statusnet_html']; + if (count($converted["attachments"]) > 0) + $user_info["status"]["attachments"] = $converted["attachments"]; - $entities = api_get_entitities($user_info['text'], $lastwall['body']); - if (count($entities) > 0) - $user_info['entities'] = $entities; + if (count($converted["entities"]) > 0) + $user_info["status"]["entities"] = $converted["entities"]; if (($lastwall['item_network'] != "") AND ($user_info["status"]["source"] == 'web')) $user_info["status"]["source"] = network_to_name($lastwall['item_network']); @@ -1102,9 +1130,9 @@ // We aren't going to try to figure out at the item, group, and page // level which items you've seen and which you haven't. If you're looking - // at the network timeline just mark everything seen. + // at the network timeline just mark everything seen. - $r = q("UPDATE `item` SET `unseen` = 0 + $r = q("UPDATE `item` SET `unseen` = 0 WHERE `unseen` = 1 AND `uid` = %d", //intval($user_info['uid']) intval(api_user()) @@ -1198,7 +1226,7 @@ api_register_func('api/statuses/public_timeline','api_statuses_public_timeline', true); /** - * + * */ function api_statuses_show(&$a, $type){ if (api_user()===false) return false; @@ -1419,9 +1447,9 @@ api_register_func('api/statuses/destroy','api_statuses_destroy', true); /** - * + * * http://developer.twitter.com/doc/get/statuses/mentions - * + * */ function api_statuses_mentions(&$a, $type){ if (api_user()===false) return false; @@ -1568,6 +1596,69 @@ api_register_func('api/statuses/user_timeline','api_statuses_user_timeline', true); + /** + * Star/unstar an item + * param: id : id of the item + * + * api v1 : https://web.archive.org/web/20131019055350/https://dev.twitter.com/docs/api/1/post/favorites/create/%3Aid + */ + function api_favorites_create_destroy(&$a, $type){ + if (api_user()===false) return false; + + # for versioned api. + # TODO: we need a better global soluton + $action_argv_id=2; + if ($a->argv[1]=="1.1") $action_argv_id=3; + + if ($a->argc<=$action_argv_id) die(api_error($a, $type, t("Invalid request."))); + $action = str_replace(".".$type,"",$a->argv[$action_argv_id]); + if ($a->argc==$action_argv_id+2) { + $itemid = intval($a->argv[$action_argv_id+1]); + } else { + $itemid = intval($_REQUEST['id']); + } + + $item = q("SELECT * FROM item WHERE id=%d AND uid=%d", + $itemid, api_user()); + + if ($item===false || count($item)==0) die(api_error($a, $type, t("Invalid item."))); + + switch($action){ + case "create": + $item[0]['starred']=1; + break; + case "destroy": + $item[0]['starred']=0; + break; + default: + die(api_error($a, $type, t("Invalid action. ".$action))); + } + $r = q("UPDATE item SET starred=%d WHERE id=%d AND uid=%d", + $item[0]['starred'], $itemid, api_user()); + + q("UPDATE thread SET starred=%d WHERE iid=%d AND uid=%d", + $item[0]['starred'], $itemid, api_user()); + + if ($r===false) die(api_error($a, $type, t("DB error"))); + + + $user_info = api_get_user($a); + $rets = api_format_items($item,$user_info); + $ret = $rets[0]; + + $data = array('$status' => $ret); + switch($type){ + case "atom": + case "rss": + $data = api_rss_extra($a, $data, $user_info); + } + + return api_apply_template("status", $type, $data); + } + + api_register_func('api/favorites/create', 'api_favorites_create_destroy', true); + api_register_func('api/favorites/destroy', 'api_favorites_create_destroy', true); + function api_favorites(&$a, $type){ global $called_api; @@ -1603,7 +1694,7 @@ `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid` FROM `item`, `contact` - WHERE `item`.`uid` = %d AND `verb` = '%s' + WHERE `item`.`uid` = %d AND `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`deleted` = 0 AND `item`.`starred` = 1 AND `contact`.`id` = `item`.`contact-id` @@ -1612,7 +1703,6 @@ AND `item`.`id`>%d ORDER BY `item`.`id` DESC LIMIT %d ,%d ", intval(api_user()), - dbesc(ACTIVITY_POST), intval($since_id), intval($start), intval($count) ); @@ -1633,6 +1723,9 @@ api_register_func('api/favorites','api_favorites', true); + + + function api_format_as($a, $ret, $user_info) { $as = array(); @@ -1740,6 +1833,67 @@ return $ret; } + function api_convert_item($item) { + + $body = $item['body']; + $attachments = api_get_attachments($body); + + // Workaround for ostatus messages where the title is identically to the body + $html = bbcode(api_clean_plain_items($body), false, false, 2, true); + $statusbody = trim(html2plain($html, 0)); + + // handle data: images + $statusbody = api_format_items_embeded_images($item,$statusbody); + + $statustitle = trim($item['title']); + + if (($statustitle != '') and (strpos($statusbody, $statustitle) !== false)) + $statustext = trim($statusbody); + else + $statustext = trim($statustitle."\n\n".$statusbody); + + if (($item["network"] == NETWORK_FEED) and (strlen($statustext)> 1000)) + $statustext = substr($statustext, 0, 1000)."... \n".$item["plink"]; + + $statushtml = trim(bbcode($body, false, false)); + + if ($item['title'] != "") + $statushtml = "

".bbcode($item['title'])."

\n".$statushtml; + + $entities = api_get_entitities($statustext, $body); + + return(array("text" => $statustext, "html" => $statushtml, "attachments" => $attachments, "entities" => $entities)); + } + + function api_get_attachments(&$body) { + + $text = $body; + $text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $text); + + $URLSearchString = "^\[\]"; + $ret = preg_match_all("/\[img\]([$URLSearchString]*)\[\/img\]/ism", $text, $images); + + if (!$ret) + return false; + + require_once("include/Photo.php"); + + $attachments = array(); + + foreach ($images[1] AS $image) { + $imagedata = get_photo_info($image); + + if ($imagedata) + $attachments[] = array("url" => $image, "mimetype" => $imagedata["mime"], "size" => $imagedata["size"]); + } + + if (strstr($_SERVER['HTTP_USER_AGENT'], "AndStatus")) + foreach ($images[0] AS $orig) + $body = str_replace($orig, "", $body); + + return $attachments; + } + function api_get_entitities(&$text, $bbcode) { /* To-Do: @@ -1907,14 +2061,14 @@ $text); return $text; } - + function api_format_items($r,$user_info, $filter_user = false) { $a = get_app(); $ret = Array(); foreach($r as $item) { - api_share_as_retweet($a, api_user(), $item); + api_share_as_retweet($item); localize_item($item); $status_user = api_item_get_user($a,$item); @@ -1961,29 +2115,10 @@ $in_reply_to_status_id_str = NULL; } - // Workaround for ostatus messages where the title is identically to the body - //$statusbody = trim(html2plain(bbcode(api_clean_plain_items($item['body']), false, false, 5, true), 0)); - $html = bbcode(api_clean_plain_items($item['body']), false, false, 2, true); - $statusbody = trim(html2plain($html, 0)); - - // handle data: images - $statusbody = api_format_items_embeded_images($item,$statusbody); - - $statustitle = trim($item['title']); - - if (($statustitle != '') and (strpos($statusbody, $statustitle) !== false)) - $statustext = trim($statusbody); - else - $statustext = trim($statustitle."\n\n".$statusbody); - - if (($item["network"] == NETWORK_FEED) and (strlen($statustext)> 1000)) - $statustext = substr($statustext, 0, 1000)."... \n".$item["plink"]; - - $statushtml = trim(bbcode($item['body'], false, false)); - - + $converted = api_convert_item($item); + $status = array( - 'text' => $statustext, + 'text' => $converted["text"], 'truncated' => False, 'created_at'=> api_date($item['created']), 'in_reply_to_status_id' => $in_reply_to_status_id, @@ -1996,19 +2131,17 @@ 'in_reply_to_screen_name' => $in_reply_to_screen_name, 'geo' => NULL, 'favorited' => $item['starred'] ? true : false, - //'attachments' => array(), 'user' => $status_user , //'entities' => NULL, - 'statusnet_html' => $statushtml, + 'statusnet_html' => $converted["html"], 'statusnet_conversation_id' => $item['parent'], ); - if ($item['title'] != "") - $status['statusnet_html'] = "

".bbcode($item['title'])."

\n".$status['statusnet_html']; + if (count($converted["attachments"]) > 0) + $status["attachments"] = $converted["attachments"]; - $entities = api_get_entitities($status['text'], $item['body']); - if (count($entities) > 0) - $status['entities'] = $entities; + if (count($converted["entities"]) > 0) + $status["entities"] = $converted["entities"]; if (($item['item_network'] != "") AND ($status["source"] == 'web')) $status["source"] = network_to_name($item['item_network']); @@ -2367,7 +2500,7 @@ if ($user_id !="") { $sql_extra .= ' AND `mail`.`contact-id` = ' . intval($user_id); - } + } elseif($screen_name !=""){ $sql_extra .= " AND `contact`.`nick` = '" . dbesc($screen_name). "'"; } @@ -2377,7 +2510,7 @@ intval($since_id), intval($start), intval($count) ); - + $ret = Array(); foreach($r as $item) { @@ -2479,7 +2612,7 @@ echo json_encode($r[0]); } - killme(); + killme(); } api_register_func('api/friendica/photos/list', 'api_fr_photos_list', true); @@ -2487,7 +2620,7 @@ -function api_share_as_retweet($a, $uid, &$item) { +function api_share_as_retweet(&$item) { $body = trim($item["body"]); // Skip if it isn't a pure repeated messages @@ -2531,6 +2664,15 @@ function api_share_as_retweet($a, $uid, &$item) { if ($matches[1] != "") $avatar = $matches[1]; + $link = ""; + preg_match("/link='(.*?)'/ism", $attributes, $matches); + if ($matches[1] != "") + $link = $matches[1]; + + preg_match('/link="(.*?)"/ism', $attributes, $matches); + if ($matches[1] != "") + $link = $matches[1]; + $shared_body = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$2",$body); if (($shared_body == "") OR ($profile == "") OR ($author == "") OR ($avatar == "")) @@ -2540,6 +2682,7 @@ function api_share_as_retweet($a, $uid, &$item) { $item["author-name"] = $author; $item["author-link"] = $profile; $item["author-avatar"] = $avatar; + $item["plink"] = $link; return(true); @@ -2697,9 +2840,6 @@ function api_best_nickname(&$contacts) { /* Not implemented by now: -favorites -favorites/create -favorites/destroy statuses/retweets_of_me friendships/create friendships/destroy diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php index d836f325e8..7107c49139 100644 --- a/include/bb2diaspora.php +++ b/include/bb2diaspora.php @@ -90,8 +90,9 @@ function bb2diaspora($Text,$preserve_nl = false, $fordiaspora = true) { } else { $Text = bbcode($Text, $preserve_nl, false, 4); + // Libertree doesn't convert a harizontal rule if there isn't a linefeed - $Text = str_replace("
", "

", $Text); + $Text = str_replace(array("
", "
"), array("

", "

"), $Text); } // Now convert HTML to Markdown diff --git a/include/bbcode.php b/include/bbcode.php index 724b8e2fdd..c2ebf35e63 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -41,7 +41,9 @@ function bb_attachment($Text, $plaintext = false, $tryoembed = true) { if ($matches[1] != "") $title = $matches[1]; - $title = htmlentities($title, ENT_QUOTES, 'UTF-8', false); + //$title = htmlentities($title, ENT_QUOTES, 'UTF-8', false); + $title = bbcode(html_entity_decode($title), false, false, true); + $title = str_replace(array("[", "]"), array("[", "]"), $title); $image = ""; if ($type != "video") { @@ -617,6 +619,17 @@ function GetProfileUsername($profile, $username, $compact = false, $getnetwork = return($username." (".$diaspora.")"); } + $red = preg_replace("=https?://(.*)/channel/(.*)=ism", "$2@$1", $profile); + if ($red != $profile) { + if ($getnetwork) + // red is identified as Diaspora - friendica can't connect directly to it + return(NETWORK_DIASPORA); + elseif ($compact) + return($red); + else + return($username." (".$red.")"); + } + $StatusnetHost = preg_replace("=https?://(.*)/user/(.*)=ism", "$1", $profile); if ($StatusnetHost != $profile) { $StatusnetUser = preg_replace("=https?://(.*)/user/(.*)=ism", "$2", $profile); @@ -695,7 +708,7 @@ function bb_RemovePictureLinks($match) { } function bb_expand_links($match) { - if (stristr($match[2], $match[3]) OR ($match[2] == $match[3])) + if (($match[3] == "") OR ($match[2] == $match[3]) OR stristr($match[2], $match[3])) return ($match[1]."[url]".$match[2]."[/url]"); else return ($match[1].$match[3]." [url]".$match[2]."[/url]"); @@ -1171,6 +1184,6 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal $a->save_timestamp($stamp1, "parser"); - return $Text; + return trim($Text); } ?> diff --git a/include/conversation.php b/include/conversation.php index 558942063f..20b54728c9 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -203,12 +203,11 @@ function localize_item(&$item){ // we can't have a translation string with three positions but no distinguishable text // So here is the translate string. - $txt = t('%1$s poked %2$s'); - + // now translate the verb - - $txt = str_replace( t('poked'), t($verb), $txt); + $poked_t = trim(sprintf($txt, "","")); + $txt = str_replace( $poked_t, t($verb), $txt); // then do the sprintf on the translation string @@ -1102,16 +1101,16 @@ function status_editor($a,$x, $notes_cid = 0, $popup=false) { '$shortsetloc' => t('set location'), '$noloc' => t('Clear browser location'), '$shortnoloc' => t('clear location'), - '$title' => "", + '$title' => $x['title'], '$placeholdertitle' => t('Set title'), - '$category' => "", + '$category' => $x['category'], '$placeholdercategory' => (feature_enabled(local_user(),'categories') ? t('Categories (comma-separated list)') : ''), '$wait' => t('Please wait'), '$permset' => t('Permission settings'), '$shortpermset' => t('permissions'), '$ptyp' => (($notes_cid) ? 'note' : 'wall'), - '$content' => '', - '$post_id' => '', + '$content' => $x['content'], + '$post_id' => $x['post_id'], '$baseurl' => $a->get_baseurl(true), '$defloc' => $x['default_location'], '$visitor' => $x['visitor'], diff --git a/include/cronhooks.php b/include/cronhooks.php index c0549dfff8..3a09da48ce 100644 --- a/include/cronhooks.php +++ b/include/cronhooks.php @@ -66,6 +66,6 @@ function cronhooks_run(&$argv, &$argc){ } if (array_search(__file__,get_included_files())===0){ - cronhooks_run($argv,$argc); + cronhooks_run($_SERVER["argv"],$_SERVER["argc"]); killme(); } diff --git a/include/dbstructure.php b/include/dbstructure.php index 66e67c0a9a..adb826c8b4 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -413,6 +413,10 @@ function db_definition() { "network" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "about" => array("type" => "text", "not null" => "1"), + "keywords" => array("type" => "text", "not null" => "1"), + "gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""), "attag" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "photo" => array("type" => "text", "not null" => "1"), "thumb" => array("type" => "text", "not null" => "1"), @@ -616,6 +620,12 @@ function db_definition() { "nurl" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "photo" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "connect" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "updated" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"), + "location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "about" => array("type" => "text", "not null" => "1"), + "keywords" => array("type" => "text", "not null" => "1"), + "gender" => array("type" => "varchar(32)", "not null" => "1", "default" => ""), + "network" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), ), "indexes" => array( "PRIMARY" => array("id"), @@ -823,6 +833,7 @@ function db_definition() { "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"), "name" => array("type" => "varchar(128)", "not null" => "1", "default" => ""), "locked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"), + "created" => array("type" => "datetime", "default" => "0000-00-00 00:00:00"), ), "indexes" => array( "PRIMARY" => array("id"), @@ -1247,6 +1258,8 @@ function db_definition() { "nick" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "name" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "avatar" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "location" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), + "about" => array("type" => "text", "not null" => "1"), ), "indexes" => array( "PRIMARY" => array("id"), @@ -1339,6 +1352,6 @@ function dbstructure_run(&$argv, &$argc) { } if (array_search(__file__,get_included_files())===0){ - dbstructure_run($argv,$argc); + dbstructure_run($_SERVER["argv"],$_SERVER["argc"]); killme(); } diff --git a/include/dbupdate.php b/include/dbupdate.php index eb2eda48da..28f1de340b 100644 --- a/include/dbupdate.php +++ b/include/dbupdate.php @@ -8,7 +8,7 @@ function dbupdate_run(&$argv, &$argc) { if(is_null($a)){ $a = new App; } - + if(is_null($db)) { @include(".htconfig.php"); require_once("include/dba.php"); @@ -23,7 +23,6 @@ function dbupdate_run(&$argv, &$argc) { } if (array_search(__file__,get_included_files())===0){ - dbupdate_run($argv,$argc); + dbupdate_run($_SERVER["argv"],$_SERVER["argc"]); killme(); } - diff --git a/include/delivery.php b/include/delivery.php index bf41b3d13a..1def8ad2cc 100644 --- a/include/delivery.php +++ b/include/delivery.php @@ -565,6 +565,6 @@ function delivery_run(&$argv, &$argc){ } if (array_search(__file__,get_included_files())===0){ - delivery_run($argv,$argc); + delivery_run($_SERVER["argv"],$_SERVER["argc"]); killme(); } diff --git a/include/diaspora.php b/include/diaspora.php index 8b85e7b955..affd59d489 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -908,6 +908,110 @@ function diaspora_post($importer,$xml,$msg) { } +function diaspora_fetch_message($guid, $server, $level = 0) { + + if ($level > 5) + return false; + + $a = get_app(); + + // This will not work if the server is not a Diaspora server + $source_url = $server.'/p/'.$guid.'.xml'; + $x = fetch_url($source_url); + if(!$x) + return false; + + $x = str_replace(array('',''),array('',''),$x); + $source_xml = parse_xml_string($x,false); + + $item = array(); + $item["app"] = 'Diaspora'; + $item["guid"] = $guid; + $body = ""; + + if ($source_xml->post->status_message->created_at) + $item["created"] = unxmlify($source_xml->post->status_message->created_at); + + if ($source_xml->post->status_message->provider_display_name) + $item["app"] = unxmlify($source_xml->post->status_message->provider_display_name); + + if ($source_xml->post->status_message->diaspora_handle) + $item["author"] = unxmlify($source_xml->post->status_message->diaspora_handle); + + if ($source_xml->post->status_message->guid) + $item["guid"] = unxmlify($source_xml->post->status_message->guid); + + $item["private"] = (unxmlify($source_xml->post->status_message->public) == 'false'); + + if(strlen($source_xml->post->asphoto->objectId) && ($source_xml->post->asphoto->objectId != 0) && ($source_xml->post->asphoto->image_url)) { + $body = '[url=' . notags(unxmlify($source_xml->post->asphoto->image_url)) . '][img]' . notags(unxmlify($source_xml->post->asphoto->objectId)) . '[/img][/url]' . "\n"; + $body = scale_external_images($body,false); + } elseif($source_xml->post->asphoto->image_url) { + $body = '[img]' . notags(unxmlify($source_xml->post->asphoto->image_url)) . '[/img]' . "\n"; + $body = scale_external_images($body); + } elseif($source_xml->post->status_message) { + $body = diaspora2bb($source_xml->post->status_message->raw_message); + + // Checking for embedded pictures + if($source_xml->post->status_message->photo->remote_photo_path AND + $source_xml->post->status_message->photo->remote_photo_name) { + + $remote_photo_path = notags(unxmlify($source_xml->post->status_message->photo->remote_photo_path)); + $remote_photo_name = notags(unxmlify($source_xml->post->status_message->photo->remote_photo_name)); + + $body = '[img]'.$remote_photo_path.$remote_photo_name.'[/img]'."\n".$body; + + logger('embedded picture link found: '.$body, LOGGER_DEBUG); + } + + $body = scale_external_images($body); + + // Add OEmbed and other information to the body + $body = add_page_info_to_body($body, false, true); + } elseif($source_xml->post->reshare) { + // Reshare of a reshare + return diaspora_fetch_message($source_xml->post->reshare->root_guid, $server, ++$level); + } else { + // Maybe it is a reshare of a photo that will be delivered at a later time (testing) + logger('no content found: '.print_r($source_xml,true)); + $body = ""; + } + + if ($body == "") + return false; + + $item["tag"] = ''; + + $tags = get_tags($body); + + if(count($tags)) { + foreach($tags as $tag) { + if(strpos($tag,'#') === 0) { + if(strpos($tag,'[url=')) + continue; + + // don't link tags that are already embedded in links + + if(preg_match('/\[(.*?)' . preg_quote($tag,'/') . '(.*?)\]/',$body)) + continue; + if(preg_match('/\[(.*?)\]\((.*?)' . preg_quote($tag,'/') . '(.*?)\)/',$body)) + continue; + + + $basetag = str_replace('_',' ',substr($tag,1)); + $body = str_replace($tag,'#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body); + if(strlen($item["tag"])) + $item["tag"] .= ','; + $item["tag"] .= '#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]'; + continue; + } + } + } + + $item["body"] = $body; + return $item; +} + function diaspora_reshare($importer,$xml,$msg) { logger('diaspora_reshare: init: ' . print_r($xml,true)); @@ -945,70 +1049,65 @@ function diaspora_reshare($importer,$xml,$msg) { $orig_author = notags(unxmlify($xml->root_diaspora_id)); $orig_guid = notags(unxmlify($xml->root_guid)); - $source_url = 'https://' . substr($orig_author,strpos($orig_author,'@')+1) . '/p/' . $orig_guid . '.xml'; - $orig_url = 'https://'.substr($orig_author,strpos($orig_author,'@')+1).'/posts/'.$orig_guid; - $x = fetch_url($source_url); - if(! $x) - $x = fetch_url(str_replace('https://','http://',$source_url)); - if(! $x) { - logger('diaspora_reshare: unable to fetch source url ' . $source_url); - return; - } - logger('diaspora_reshare: source: ' . $x); + $create_original_post = false; - $x = str_replace(array('',''),array('',''),$x); - $source_xml = parse_xml_string($x,false); + // Do we already have this item? + $r = q("SELECT `body`, `tag`, `app`, `author-link`, `plink` FROM `item` WHERE `guid` = '%s' AND `visible` AND NOT `deleted` AND `body` != '' LIMIT 1", + dbesc($orig_guid), + dbesc(NETWORK_DIASPORA) + ); + if(count($r)) { + logger('reshared message '.orig_guid." reshared by ".$guid.' already exists on system: '.$orig_url); - if(strlen($source_xml->post->asphoto->objectId) && ($source_xml->post->asphoto->objectId != 0) && ($source_xml->post->asphoto->image_url)) { - $body = '[url=' . notags(unxmlify($source_xml->post->asphoto->image_url)) . '][img]' . notags(unxmlify($source_xml->post->asphoto->objectId)) . '[/img][/url]' . "\n"; - $body = scale_external_images($body,false); - } - elseif($source_xml->post->asphoto->image_url) { - $body = '[img]' . notags(unxmlify($source_xml->post->asphoto->image_url)) . '[/img]' . "\n"; - $body = scale_external_images($body); + // Maybe it is already a reshared item? + // Then refetch the content, since there can be many side effects with reshared posts from other networks or reshares from reshares + require_once('include/api.php'); + if (api_share_as_retweet($r[0])) + $r = array(); + else + $orig_url = $a->get_baseurl().'/display/'.$orig_guid; } - elseif($source_xml->post->status_message) { - $body = diaspora2bb($source_xml->post->status_message->raw_message); - // Checking for embedded pictures - if($source_xml->post->status_message->photo->remote_photo_path AND - $source_xml->post->status_message->photo->remote_photo_name) { + if (!count($r)) { + $body = ""; + $str_tags = ""; + $app = ""; - $remote_photo_path = notags(unxmlify($source_xml->post->status_message->photo->remote_photo_path)); - $remote_photo_name = notags(unxmlify($source_xml->post->status_message->photo->remote_photo_name)); + $orig_url = 'https://'.substr($orig_author,strpos($orig_author,'@')+1).'/posts/'.$orig_guid; - $body = '[img]'.$remote_photo_path.$remote_photo_name.'[/img]'."\n".$body; + $server = 'https://'.substr($orig_author,strpos($orig_author,'@')+1); + logger('1st try: reshared message '.$orig_guid." reshared by ".$guid.' will be fetched from original server: '.$server); + $item = diaspora_fetch_message($orig_guid, $server); - logger('diaspora_reshare: embedded picture link found: '.$body, LOGGER_DEBUG); + if (!$item) { + $server = 'https://'.substr($diaspora_handle,strpos($diaspora_handle,'@')+1); + logger('2nd try: reshared message '.$orig_guid." reshared by ".$guid." will be fetched from sharer's server: ".$server); + $item = diaspora_fetch_message($orig_guid, $server); + } + if (!$item) { + $server = 'http://'.substr($orig_author,strpos($orig_author,'@')+1); + logger('3rd try: reshared message '.$orig_guid." reshared by ".$guid.' will be fetched from original server: '.$server); + $item = diaspora_fetch_message($orig_guid, $server); + } + if (!$item) { + $server = 'http://'.substr($diaspora_handle,strpos($diaspora_handle,'@')+1); + logger('4th try: reshared message '.$orig_guid." reshared by ".$guid." will be fetched from sharer's server: ".$server); + $item = diaspora_fetch_message($orig_guid, $server); } - $body = scale_external_images($body); - - // Add OEmbed and other information to the body - $body = add_page_info_to_body($body, false, true); - } - else { - // Maybe it is a reshare of a photo that will be delivered at a later time (testing) - logger('diaspora_reshare: no reshare content found: ' . print_r($source_xml,true)); - $body = ""; - //return; + if ($item) { + $body = $item["body"]; + $str_tags = $item["tag"]; + $app = $item["app"]; + $orig_created = $item["created"]; + $orig_author = $item["author"]; + $orig_guid = $item["guid"]; + //$create_original_post = ($body != ""); + } } - //if(! $body) { - // logger('diaspora_reshare: empty body: source= ' . $x); - // return; - //} - $person = find_diaspora_person_by_handle($orig_author); - /*if(is_array($person) && x($person,'name') && x($person,'url')) - $details = '[url=' . $person['url'] . ']' . $person['name'] . '[/url]'; - else - $details = $orig_author; - - $prefix = html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8') . $details . "\n";*/ - - // allocate a guid on our system - we aren't fixing any collisions. // we're ignoring them @@ -1026,34 +1125,6 @@ function diaspora_reshare($importer,$xml,$msg) { $datarray = array(); - $str_tags = ''; - - $tags = get_tags($body); - - if(count($tags)) { - foreach($tags as $tag) { - if(strpos($tag,'#') === 0) { - if(strpos($tag,'[url=')) - continue; - - // don't link tags that are already embedded in links - - if(preg_match('/\[(.*?)' . preg_quote($tag,'/') . '(.*?)\]/',$body)) - continue; - if(preg_match('/\[(.*?)\]\((.*?)' . preg_quote($tag,'/') . '(.*?)\)/',$body)) - continue; - - - $basetag = str_replace('_',' ',substr($tag,1)); - $body = str_replace($tag,'#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]',$body); - if(strlen($str_tags)) - $str_tags .= ','; - $str_tags .= '#[url=' . $a->get_baseurl() . '/search?tag=' . rawurlencode($basetag) . ']' . $basetag . '[/url]'; - continue; - } - } - } - $plink = 'https://'.substr($diaspora_handle,strpos($diaspora_handle,'@')+1).'/posts/'.$guid; $datarray['uid'] = $importer['uid']; @@ -1087,19 +1158,37 @@ function diaspora_reshare($importer,$xml,$msg) { } $datarray['tag'] = $str_tags; - $datarray['app'] = 'Diaspora'; + $datarray['app'] = $app; // if empty content it might be a photo that hasn't arrived yet. If a photo arrives, we'll make it visible. (testing) $datarray['visible'] = ((strlen($body)) ? 1 : 0); - $message_id = item_store($datarray); + // Store the original item of a reshare + // Deactivated by now. Items without a matching contact can't be shown via "mod/display.php" by now. + if ($create_original_post) { + $datarray2 = $datarray; - //if($message_id) { - // q("update item set plink = '%s' where id = %d", - // dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id), - // intval($message_id) - // ); - //} + $datarray2['uid'] = 0; + $datarray2['contact-id'] = 0; + $datarray2['guid'] = $orig_guid; + $datarray2['uri'] = $datarray2['parent-uri'] = $orig_author.':'.$orig_guid; + $datarray2['changed'] = $datarray2['created'] = $datarray2['edited'] = datetime_convert('UTC','UTC',$orig_created); + $datarray2['plink'] = 'https://'.substr($orig_author,strpos($orig_author,'@')+1).'/posts/'.$orig_guid; + + $datarray2['author-name'] = $person['name']; + $datarray2['author-link'] = $person['url']; + $datarray2['author-avatar'] = ((x($person,'thumb')) ? $person['thumb'] : $person['photo']); + $datarray2['owner-name'] = $datarray2['author-name']; + $datarray2['owner-link'] = $datarray2['author-link']; + $datarray2['owner-avatar'] = $datarray2['author-avatar']; + $datarray2['body'] = $body; + + $message_id = item_store($datarray2); + + logger("Store original item ".$orig_guid." under message id ".$message_id); + } + + $message_id = item_store($datarray); return; @@ -2028,6 +2117,7 @@ function diaspora_retraction($importer,$xml) { dbesc(datetime_convert()), intval($r[0]['id']) ); + delete_thread($r[0]['id'], $r[0]['parent-uri']); } } } @@ -2100,6 +2190,7 @@ function diaspora_signed_retraction($importer,$xml,$msg) { dbesc(datetime_convert()), intval($r[0]['id']) ); + delete_thread($r[0]['id'], $r[0]['parent-uri']); // Now check if the retraction needs to be relayed by us // @@ -2159,14 +2250,27 @@ function diaspora_profile($importer,$xml,$msg) { $name = unxmlify($xml->first_name) . ((strlen($xml->last_name)) ? ' ' . unxmlify($xml->last_name) : ''); $image_url = unxmlify($xml->image_url); $birthday = unxmlify($xml->birthday); + $location = diaspora2bb(unxmlify($xml->location)); + $about = diaspora2bb(unxmlify($xml->bio)); + $gender = unxmlify($xml->gender); + $tags = unxmlify($xml->tag_string); + + $tags = explode("#", $tags); + + $keywords = array(); + foreach ($tags as $tag) { + $tag = trim(strtolower($tag)); + if ($tag != "") + $keywords[] = $tag; + } + $keywords = implode(", ", $keywords); $handle_parts = explode("@", $diaspora_handle); if($name === '') { $name = $handle_parts[0]; } - - + if( preg_match("|^https?://|", $image_url) === 0) { $image_url = "http://" . $handle_parts[1] . $image_url; } @@ -2180,8 +2284,8 @@ function diaspora_profile($importer,$xml,$msg) { require_once('include/Photo.php'); $images = import_profile_photo($image_url,$importer['uid'],$contact['id']); - - // Generic birthday. We don't know the timezone. The year is irrelevant. + + // Generic birthday. We don't know the timezone. The year is irrelevant. $birthday = str_replace('1000','1901',$birthday); @@ -2194,9 +2298,9 @@ function diaspora_profile($importer,$xml,$msg) { $birthday = $contact['bd']; // TODO: update name on item['author-name'] if the name changed. See consume_feed() - // Not doing this currently because D* protocol is scheduled for revision soon. + // Not doing this currently because D* protocol is scheduled for revision soon. - $r = q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s', `avatar-date` = '%s' , `bd` = '%s' WHERE `id` = %d AND `uid` = %d", + $r = q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s', `photo` = '%s', `thumb` = '%s', `micro` = '%s', `avatar-date` = '%s' , `bd` = '%s', `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `id` = %d AND `uid` = %d", dbesc($name), dbesc(datetime_convert()), dbesc($images[0]), @@ -2204,9 +2308,34 @@ function diaspora_profile($importer,$xml,$msg) { dbesc($images[2]), dbesc(datetime_convert()), dbesc($birthday), + dbesc($location), + dbesc($about), + dbesc($keywords), + dbesc($gender), intval($contact['id']), intval($importer['uid']) - ); + ); + + if (unxmlify($xml->searchable) == "true") { + require_once('include/socgraph.php'); + poco_check($contact['url'], $name, NETWORK_DIASPORA, $images[0], $about, $location, $gender, $keywords, "", + datetime_convert(), $contact['id'], $importer['uid']); + } + + $profileurl = ""; + $author = q("SELECT * FROM `unique_contacts` WHERE `url`='%s' LIMIT 1", + dbesc(normalise_link($contact['url']))); + + if (count($author) == 0) { + q("INSERT INTO `unique_contacts` (`url`, `name`, `avatar`, `location`, `about`) VALUES ('%s', '%s', '%s', '%s', '%s')", + dbesc(normalise_link($contact['url'])), dbesc($name), dbesc($location), dbesc($about), dbesc($images[0])); + + $author = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1", + dbesc(normalise_link($contact['url']))); + } else if (normalise_link($contact['url']).$name.$location.$about != normalise_link($author[0]["url"]).$author[0]["name"].$author[0]["location"].$author[0]["about"]) { + q("UPDATE unique_contacts SET name = '%s', avatar = '%s', `location` = '%s', `about` = '%s' WHERE url = '%s'", + dbesc($name), dbesc($images[0]), dbesc($location), dbesc($about), dbesc(normalise_link($contact['url']))); + } /* if($r) { if($oldphotos) { diff --git a/include/directory.php b/include/directory.php index 5c1a7c4b4c..aed700fa8a 100644 --- a/include/directory.php +++ b/include/directory.php @@ -46,6 +46,6 @@ function directory_run(&$argv, &$argc){ } if (array_search(__file__,get_included_files())===0){ - directory_run($argv,$argc); + directory_run($_SERVER["argv"],$_SERVER["argc"]); killme(); } diff --git a/include/dsprphotoq.php b/include/dsprphotoq.php index 47592006d7..7e252cd843 100644 --- a/include/dsprphotoq.php +++ b/include/dsprphotoq.php @@ -45,6 +45,6 @@ function dsprphotoq_run($argv, $argc){ if (array_search(__file__,get_included_files())===0){ - dsprphotoq_run($argv,$argc); + dsprphotoq_run($_SERVER["argv"],$_SERVER["argc"]); killme(); } diff --git a/include/enotify.php b/include/enotify.php index 51263871b6..99bc0fd324 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -21,6 +21,7 @@ function notification($params) { $thanks = t('Thank You,'); $sitename = $a->config['sitename']; $site_admin = sprintf( t('%s Administrator'), $sitename); + $nickname = ""; $sender_name = $product; $hostname = $a->get_hostname(); @@ -29,6 +30,10 @@ function notification($params) { $sender_email = t('noreply') . '@' . $hostname; + $user = q("SELECT `nickname` FROM `user` WHERE `uid` = %d", intval($params['uid'])); + if ($user) + $nickname = $user[0]["nickname"]; + // with $params['show_in_notification_page'] == false, the notification isn't inserted into // the database, and an email is sent if applicable. // default, if not specified: true @@ -37,6 +42,7 @@ function notification($params) { $additional_mail_header = ""; $additional_mail_header .= "Precedence: list\n"; $additional_mail_header .= "X-Friendica-Host: ".$hostname."\n"; + $additional_mail_header .= "X-Friendica-Account: <".$nickname."@".$hostname.">\n"; $additional_mail_header .= "X-Friendica-Platform: ".FRIENDICA_PLATFORM."\n"; $additional_mail_header .= "X-Friendica-Version: ".FRIENDICA_VERSION."\n"; $additional_mail_header .= "List-ID: \n"; @@ -344,7 +350,7 @@ function notification($params) { $show_in_notification_page = false; } - + $subject .= " (".$nickname."@".$hostname.")"; $h = array( 'params' => $params, @@ -592,6 +598,7 @@ function notification($params) { // use the Emailer class to send the message return Emailer::send(array( + 'uid' => $params['uid'], 'fromName' => $sender_name, 'fromEmail' => $sender_email, 'replyTo' => $sender_email, diff --git a/include/expire.php b/include/expire.php index a7b561bf0c..3086804216 100644 --- a/include/expire.php +++ b/include/expire.php @@ -55,6 +55,6 @@ function expire_run(&$argv, &$argc){ } if (array_search(__file__,get_included_files())===0){ - expire_run($argv,$argc); + expire_run($_SERVER["argv"],$_SERVER["argc"]); killme(); } diff --git a/include/follow.php b/include/follow.php index 285f864b94..ba036cd48d 100644 --- a/include/follow.php +++ b/include/follow.php @@ -37,7 +37,7 @@ function new_contact($uid,$url,$interactive = false) { call_hooks('follow', $arr); - if(x($arr['contact'],'name')) + if(x($arr['contact'],'name')) $ret = $arr['contact']; else $ret = probe_url($url); @@ -73,7 +73,7 @@ function new_contact($uid,$url,$interactive = false) { // do we have enough information? - + if(! ((x($ret,'name')) && (x($ret,'poll')) && ((x($ret,'url')) || (x($ret,'addr'))))) { $result['message'] .= t('The profile address specified does not provide adequate information.') . EOL; if(! x($ret,'poll')) @@ -120,12 +120,12 @@ function new_contact($uid,$url,$interactive = false) { // the poll url is more reliable than the profile url, as we may have // indirect links or webfinger links - $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `poll` = '%s' LIMIT 1", + $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `poll` = '%s' AND `network` = '%s' LIMIT 1", intval($uid), - dbesc($ret['poll']) + dbesc($ret['poll']), + dbesc($ret['network']) ); - if(count($r)) { // update contact if($r[0]['rel'] == CONTACT_IS_FOLLOWER || ($network === NETWORK_DIASPORA && $r[0]['rel'] == CONTACT_IS_SHARING)) { @@ -169,10 +169,10 @@ function new_contact($uid,$url,$interactive = false) { if($ret['network'] === NETWORK_DIASPORA) $new_relation = CONTACT_IS_FOLLOWER; - // create contact record - $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `addr`, `alias`, `batch`, `notify`, `poll`, `poco`, `name`, `nick`, `photo`, `network`, `pubkey`, `rel`, `priority`, + // create contact record + $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `addr`, `alias`, `batch`, `notify`, `poll`, `poco`, `name`, `nick`, `network`, `pubkey`, `rel`, `priority`, `writable`, `hidden`, `blocked`, `readonly`, `pending`, `subhub` ) - VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, %d, 0, 0, 0, %d ) ", + VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, %d, 0, 0, 0, %d ) ", intval($uid), dbesc(datetime_convert()), dbesc($ret['url']), @@ -185,7 +185,6 @@ function new_contact($uid,$url,$interactive = false) { dbesc($ret['poco']), dbesc($ret['name']), dbesc($ret['nick']), - dbesc($ret['photo']), dbesc($ret['network']), dbesc($ret['pubkey']), intval($new_relation), @@ -196,8 +195,9 @@ function new_contact($uid,$url,$interactive = false) { ); } - $r = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d LIMIT 1", + $r = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `network` = '%s' AND `uid` = %d LIMIT 1", dbesc($ret['url']), + dbesc($ret['network']), intval($uid) ); @@ -228,8 +228,7 @@ function new_contact($uid,$url,$interactive = false) { `name-date` = '%s', `uri-date` = '%s', `avatar-date` = '%s' - WHERE `id` = %d - ", + WHERE `id` = %d", dbesc($photos[0]), dbesc($photos[1]), dbesc($photos[2]), diff --git a/include/gprobe.php b/include/gprobe.php index 36650eb9ae..52c5483c87 100644 --- a/include/gprobe.php +++ b/include/gprobe.php @@ -63,6 +63,6 @@ function gprobe_run(&$argv, &$argc){ } if (array_search(__file__,get_included_files())===0){ - gprobe_run($argv,$argc); + gprobe_run($_SERVER["argv"],$_SERVER["argc"]); killme(); } diff --git a/include/html2bbcode.php b/include/html2bbcode.php index 6e9532c92f..650bbdcae8 100644 --- a/include/html2bbcode.php +++ b/include/html2bbcode.php @@ -16,7 +16,7 @@ function node2bbcode(&$doc, $oldnode, $attributes, $startbb, $endbb) function node2bbcodesub(&$doc, $oldnode, $attributes, $startbb, $endbb) { - $savestart = str_replace('$', '%', $startbb); + $savestart = str_replace('$', '\x01', $startbb); $replace = false; $xpath = new DomXPath($doc); @@ -37,7 +37,7 @@ function node2bbcodesub(&$doc, $oldnode, $attributes, $startbb, $endbb) foreach ($attributes as $attribute => $value) { - $startbb = str_replace('%'.++$i, '$1', $startbb); + $startbb = str_replace('\x01'.++$i, '$1', $startbb); if (strpos('*'.$startbb, '$1') > 0) { @@ -76,13 +76,14 @@ function node2bbcodesub(&$doc, $oldnode, $attributes, $startbb, $endbb) return($replace); } +if(!function_exists('deletenode')) { function deletenode(&$doc, $node) { $xpath = new DomXPath($doc); $list = $xpath->query("//".$node); foreach ($list as $child) $child->parentNode->removeChild($child); -} +}} function html2bbcode($message) { diff --git a/include/items.php b/include/items.php index 0398f54588..344b06ec8b 100644 --- a/include/items.php +++ b/include/items.php @@ -11,6 +11,7 @@ require_once('include/text.php'); require_once('include/email.php'); require_once('include/ostatus_conversation.php'); require_once('include/threads.php'); +require_once('include/socgraph.php'); function get_feed_for(&$a, $dfrn_id, $owner_nick, $last_update, $direction = 0) { @@ -872,9 +873,19 @@ function get_atom_elements($feed, $item, $contact = array()) { } if (isset($contact["network"]) AND ($contact["network"] == NETWORK_FEED) AND $contact['fetch_further_information']) { - $res["body"] = $res["title"].add_page_info($res['plink'], false, "", ($contact['fetch_further_information'] == 2), $contact['ffi_keyword_blacklist']); + $preview = ""; + + // Handle enclosures and treat them as preview picture + if (isset($attach)) + foreach ($attach AS $attachment) + if ($attachment->type == "image/jpeg") + $preview = $attachment->link; + + $res["body"] = $res["title"].add_page_info($res['plink'], false, $preview, ($contact['fetch_further_information'] == 2), $contact['ffi_keyword_blacklist']); + $res["tag"] = add_page_keywords($res['plink'], false, $preview, ($contact['fetch_further_information'] == 2), $contact['ffi_keyword_blacklist']); $res["title"] = ""; $res["object-type"] = ACTIVITY_OBJ_BOOKMARK; + unset($res["attach"]); } elseif (isset($contact["network"]) AND ($contact["network"] == NETWORK_OSTATUS)) $res["body"] = add_page_info_to_body($res["body"]); elseif (isset($contact["network"]) AND ($contact["network"] == NETWORK_FEED) AND strstr($res['plink'], ".app.net/")) { @@ -936,12 +947,20 @@ function add_page_info_data($data) { return("\n[class=type-".$data["type"]."]".$text."[/class]".$hashtags); } -function add_page_info($url, $no_photos = false, $photo = "", $keywords = false, $keyword_blacklist = "") { +function query_page_info($url, $no_photos = false, $photo = "", $keywords = false, $keyword_blacklist = "") { require_once("mod/parse_url.php"); - $data = parseurl_getsiteinfo($url, true); + $data = Cache::get("parse_url:".$url); + if (is_null($data)){ + $data = parseurl_getsiteinfo($url, true); + Cache::set("parse_url:".$url,serialize($data)); + } else + $data = unserialize($data); + + if ($photo != "") + $data["images"][0]["src"] = $photo; - logger('add_page_info: fetch page info for '.$url.' '.print_r($data, true), LOGGER_DEBUG); + logger('fetch page info for '.$url.' '.print_r($data, true), LOGGER_DEBUG); if (!$keywords AND isset($data["keywords"])) unset($data["keywords"]); @@ -956,6 +975,32 @@ function add_page_info($url, $no_photos = false, $photo = "", $keywords = false, } } + return($data); +} + +function add_page_keywords($url, $no_photos = false, $photo = "", $keywords = false, $keyword_blacklist = "") { + $data = query_page_info($url, $no_photos, $photo, $keywords, $keyword_blacklist); + + $tags = ""; + if (isset($data["keywords"]) AND count($data["keywords"])) { + $a = get_app(); + foreach ($data["keywords"] AS $keyword) { + $hashtag = str_replace(array(" ", "+", "/", ".", "#", "'"), + array("","", "", "", "", ""), $keyword); + + if ($tags != "") + $tags .= ","; + + $tags .= "#[url=".$a->get_baseurl()."/search?tag=".rawurlencode($hashtag)."]".$hashtag."[/url]"; + } + } + + return($tags); +} + +function add_page_info($url, $no_photos = false, $photo = "", $keywords = false, $keyword_blacklist = "") { + $data = query_page_info($url, $no_photos, $photo, $keywords, $keyword_blacklist); + $text = add_page_info_data($data); return($text); @@ -1027,7 +1072,7 @@ function encode_rel_links($links) { -function item_store($arr,$force_parent = false, $notify = false) { +function item_store($arr,$force_parent = false, $notify = false, $dontcache = false) { // If it is a posting where users should get notifications, then define it as wall posting if ($notify) { @@ -1305,6 +1350,9 @@ function item_store($arr,$force_parent = false, $notify = false) { return 0; } + // Store the unescaped version + $unescaped = $arr; + dbesc_array($arr); logger('item_store: ' . print_r($arr,true), LOGGER_DATA); @@ -1315,10 +1363,12 @@ function item_store($arr,$force_parent = false, $notify = false) { . implode("', '", array_values($arr)) . "')" ); - // find the item we just created + // And restore it + $arr = $unescaped; + // find the item we just created $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d ORDER BY `id` ASC ", - $arr['uri'], // already dbesc'd + dbesc($arr['uri']), intval($arr['uid']) ); @@ -1326,6 +1376,26 @@ function item_store($arr,$force_parent = false, $notify = false) { $current_post = $r[0]['id']; logger('item_store: created item ' . $current_post); + // Add every contact to the global contact table + // Contacts from the statusnet connector are also added since you could add them in OStatus as well. + if (!$arr['private'] AND in_array($arr["network"], + array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, NETWORK_STATUSNET, ""))) { + poco_check($arr["author-link"], $arr["author-name"], $arr["network"], $arr["author-avatar"], "", "", "", "", "", $arr["received"], $arr["contact-id"], $arr["uid"]); + + // Maybe its a body with a shared item? Then extract a global contact from it. + poco_contact_from_body($arr["body"], $arr["received"], $arr["contact-id"], $arr["uid"]); + } + + // Set "success_update" to the date of the last time we heard from this contact + // This can be used to filter for inactive contacts and poco. + // Only do this for public postings to avoid privacy problems, since poco data is public. + // Don't set this value if it isn't from the owner (could be an author that we don't know) + if (!$arr['private'] AND (($arr["author-link"] === $arr["owner-link"]) OR ($arr["parent-uri"] === $arr["uri"]))) + q("UPDATE `contact` SET `success_update` = '%s' WHERE `id` = %d", + dbesc($arr['received']), + intval($arr['contact-id']) + ); + // Only check for notifications on start posts if ($arr['parent-uri'] === $arr['uri']) { add_thread($r[0]['id']); @@ -1376,7 +1446,7 @@ function item_store($arr,$force_parent = false, $notify = false) { if(count($r) > 1) { logger('item_store: duplicated post occurred. Removing duplicates.'); q("DELETE FROM `item` WHERE `uri` = '%s' AND `uid` = %d AND `id` != %d ", - $arr['uri'], + dbesc($arr['uri']), intval($arr['uid']), intval($current_post) ); @@ -1452,7 +1522,7 @@ function item_store($arr,$force_parent = false, $notify = false) { // current post can be deleted if is for a communuty page and no mention are // in it. - if (!$deleted) { + if (!$deleted AND !$dontcache) { // Store the fresh generated item into the cache $cachefile = get_cachefile(urlencode($arr["guid"])."-".hash("md5", $arr['body'])); @@ -1474,7 +1544,7 @@ function item_store($arr,$force_parent = false, $notify = false) { } } - create_tags_from_item($current_post); + create_tags_from_item($current_post, $dontcache); create_files_from_item($current_post); if ($notify) @@ -2651,14 +2721,14 @@ function item_is_remote_self($contact, &$datarray) { $datarray2 = $datarray; logger('remote-self start - Contact '.$contact['url'].' - '.$contact['remote_self'].' Item '.print_r($datarray, true), LOGGER_DEBUG); if ($contact['remote_self'] == 2) { - $r = q("SELECT `id`,`url`,`name`,`photo`,`network` FROM `contact` WHERE `uid` = %d AND `self`", + $r = q("SELECT `id`,`url`,`name`,`thumb` FROM `contact` WHERE `uid` = %d AND `self`", intval($contact['uid'])); if (count($r)) { $datarray['contact-id'] = $r[0]["id"]; $datarray['owner-name'] = $r[0]["name"]; $datarray['owner-link'] = $r[0]["url"]; - $datarray['owner-avatar'] = $r[0]["avatar"]; + $datarray['owner-avatar'] = $r[0]["thumb"]; $datarray['author-name'] = $datarray['owner-name']; $datarray['author-link'] = $datarray['owner-link']; @@ -4037,6 +4107,7 @@ function atom_entry($item,$type,$author,$owner,$comment = false,$cid = 0) { else $body = $item['body']; + $o = "\r\n\r\n\r\n"; if(is_array($author)) @@ -4051,13 +4122,22 @@ function atom_entry($item,$type,$author,$owner,$comment = false,$cid = 0) { $o .= '' . "\r\n"; } + $htmlbody = $body; + + if ($item['title'] != "") + $htmlbody = "[b]".$item['title']."[/b]\n\n".$htmlbody; + + $htmlbody = bbcode(bb_remove_share_information($htmlbody), false, false, 7); + $o .= '' . xmlify($item['uri']) . '' . "\r\n"; $o .= '' . xmlify($item['title']) . '' . "\r\n"; $o .= '' . xmlify(datetime_convert('UTC','UTC',$item['created'] . '+00:00',ATOM_TIME)) . '' . "\r\n"; $o .= '' . xmlify(datetime_convert('UTC','UTC',$item['edited'] . '+00:00',ATOM_TIME)) . '' . "\r\n"; $o .= '' . base64url_encode($body, true) . '' . "\r\n"; - $o .= '' . xmlify((($type === 'html') ? bbcode($body) : $body)) . '' . "\r\n"; + $o .= '' . xmlify((($type === 'html') ? $htmlbody : $body)) . '' . "\r\n"; $o .= '' . "\r\n"; + + if($comment) $o .= '' . intval($item['last-child']) . '' . "\r\n"; @@ -4475,7 +4555,7 @@ function drop_item($id,$interactive = true) { ); create_tags_from_item($item['id']); create_files_from_item($item['id']); - delete_thread($item['id']); + delete_thread($item['id'], $item['parent-uri']); // clean up categories and tags so they don't end up as orphans diff --git a/include/lock.php b/include/lock.php index caf1f855ab..70cf4b787b 100644 --- a/include/lock.php +++ b/include/lock.php @@ -11,20 +11,22 @@ function lock_function($fn_name, $block = true, $wait_sec = 2, $timeout = 30) { $start = time(); do { - q("LOCK TABLE locks WRITE"); - $r = q("SELECT locked FROM locks WHERE name = '%s' LIMIT 1", + q("LOCK TABLE `locks` WRITE"); + $r = q("SELECT `locked`, `created` FROM `locks` WHERE `name` = '%s' LIMIT 1", dbesc($fn_name) ); - if((count($r)) && (! $r[0]['locked'])) { - q("UPDATE locks SET locked = 1 WHERE name = '%s'", + if((count($r)) AND (!$r[0]['locked'] OR (strtotime($r[0]['created']) < time() - 3600))) { + q("UPDATE `locks` SET `locked` = 1, `created` = '%s' WHERE `name` = '%s'", + dbesc(datetime_convert()), dbesc($fn_name) ); $got_lock = true; } elseif(! $r) { // the Boolean value for count($r) should be equivalent to the Boolean value of $r - q("INSERT INTO locks ( name, locked ) VALUES ( '%s', 1 )", - dbesc($fn_name) + q("INSERT INTO `locks` (`name`, `created`, `locked`) VALUES ('%s', '%s', 1)", + dbesc($fn_name), + dbesc(datetime_convert()) ); $got_lock = true; } @@ -37,7 +39,7 @@ function lock_function($fn_name, $block = true, $wait_sec = 2, $timeout = 30) { } while(($block) && (! $got_lock) && ((time() - $start) < $timeout)); logger('lock_function: function ' . $fn_name . ' with blocking = ' . $block . ' got_lock = ' . $got_lock . ' time = ' . (time() - $start), LOGGER_DEBUG); - + return $got_lock; }} @@ -65,7 +67,7 @@ function block_on_function_lock($fn_name, $wait_sec = 2, $timeout = 30) { if(! function_exists('unlock_function')) { function unlock_function($fn_name) { - $r = q("UPDATE locks SET locked = 0 WHERE name = '%s'", + $r = q("UPDATE `locks` SET `locked` = 0, `created` = '0000-00-00 00:00:00' WHERE `name` = '%s'", dbesc($fn_name) ); diff --git a/include/network.php b/include/network.php index 6a37f4a549..1fa7486b0a 100644 --- a/include/network.php +++ b/include/network.php @@ -651,7 +651,7 @@ function validate_email($addr) { return false; $h = substr($addr,strpos($addr,'@') + 1); - if(($h) && (dns_get_record($h, DNS_A + DNS_CNAME + DNS_PTR + DNS_MX) || filter_var($h['host'], FILTER_VALIDATE_IP) )) { + if(($h) && (dns_get_record($h, DNS_A + DNS_CNAME + DNS_PTR + DNS_MX) || filter_var($h, FILTER_VALIDATE_IP) )) { return true; } return false; @@ -1159,13 +1159,8 @@ function original_url($url, $depth=1, $fetchbody = false) { $siteinfo = array(); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); - curl_setopt($ch, CURLOPT_HEADER, 1); - - if ($fetchbody) - curl_setopt($ch, CURLOPT_NOBODY, 0); - else - curl_setopt($ch, CURLOPT_NOBODY, 1); - + curl_setopt($ch, CURLOPT_HEADER, 1); + curl_setopt($ch, CURLOPT_NOBODY, 1); curl_setopt($ch, CURLOPT_TIMEOUT, 10); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent()); @@ -1183,16 +1178,33 @@ function original_url($url, $depth=1, $fetchbody = false) { return(original_url($curl_info['location'], ++$depth, $fetchbody)); } - $pos = strpos($header, "\r\n\r\n"); + // Check for redirects in the meta elements of the body if there are no redirects in the header. + if (!$fetchbody) + return(original_url($url, ++$depth, true)); + + // if the file is too large then exit + if ($curl_info["download_content_length"] > 1000000) + return($url); + + // if it isn't a HTML file then exit + if (($curl_info["content_type"] != "") AND !strstr(strtolower($curl_info["content_type"]),"html")) + return($url); - if ($pos) - $body = trim(substr($header, $pos)); - else - $body = $header; + $ch = curl_init(); + curl_setopt($ch, CURLOPT_URL, $url); + curl_setopt($ch, CURLOPT_HEADER, 0); + curl_setopt($ch, CURLOPT_NOBODY, 0); + curl_setopt($ch, CURLOPT_TIMEOUT, 10); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent()); + + $body = curl_exec($ch); + curl_close($ch); if (trim($body) == "") - return(original_url($url, ++$depth, true)); + return($url); + // Check for redirect in meta elements $doc = new DOMDocument(); @$doc->loadHTML($body); diff --git a/include/notifier.php b/include/notifier.php index d222fd9426..067251b429 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -5,16 +5,16 @@ require_once('include/html2plain.php'); /* * This file was at one time responsible for doing all deliveries, but this caused - * big problems on shared hosting systems, where the process might get killed by the - * hosting provider and nothing would get delivered. + * big problems on shared hosting systems, where the process might get killed by the + * hosting provider and nothing would get delivered. * It now only delivers one message under certain cases, and invokes a queued - * delivery mechanism (include/deliver.php) to deliver individual contacts at + * delivery mechanism (include/deliver.php) to deliver individual contacts at * controlled intervals. * This has a much better chance of surviving random processes getting killed - * by the hosting provider. + * by the hosting provider. * A lot of this code is duplicated in include/deliver.php until we have time to go back - * and re-structure the delivery procedure based on the obstacles that have been thrown at - * us by hosting providers. + * and re-structure the delivery procedure based on the obstacles that have been thrown at + * us by hosting providers. */ /* @@ -50,12 +50,12 @@ function notifier_run(&$argv, &$argc){ if(is_null($a)){ $a = new App; } - + if(is_null($db)) { @include(".htconfig.php"); require_once("include/dba.php"); $db = new dba($db_host, $db_user, $db_pass, $db_data); - unset($db_host, $db_user, $db_pass, $db_data); + unset($db_host, $db_user, $db_pass, $db_data); } require_once("include/session.php"); @@ -90,7 +90,7 @@ function notifier_run(&$argv, &$argc){ $expire = false; $mail = false; $fsuggest = false; - $relocate = false; + $relocate = false; $top_level = false; $recipients = array(); $url_recipients = array(); @@ -135,8 +135,7 @@ function notifier_run(&$argv, &$argc){ $uid = $suggest[0]['uid']; $recipients[] = $suggest[0]['cid']; $item = $suggest[0]; - } - elseif($cmd === 'removeme') { + } elseif($cmd === 'removeme') { $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($item_id)); if (! $r) return; @@ -156,13 +155,11 @@ function notifier_run(&$argv, &$argc){ terminate_friendship($user, $self, $contact); } return; - } - elseif($cmd === 'relocate') { - $normal_mode = false; + } elseif($cmd === 'relocate') { + $normal_mode = false; $relocate = true; - $uid = $item_id; - } - else { + $uid = $item_id; + } else { // find ancestors $r = q("SELECT * FROM `item` WHERE `id` = %d and visible = 1 and moderated = 0 LIMIT 1", intval($item_id) @@ -204,10 +201,10 @@ function notifier_run(&$argv, &$argc){ } - $r = q("SELECT `contact`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey`, - `user`.`timezone`, `user`.`nickname`, `user`.`sprvkey`, `user`.`spubkey`, + $r = q("SELECT `contact`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey`, + `user`.`timezone`, `user`.`nickname`, `user`.`sprvkey`, `user`.`spubkey`, `user`.`page-flags`, `user`.`prvnets` - FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid` + FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid` WHERE `contact`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1", intval($uid) ); @@ -295,8 +292,28 @@ function notifier_run(&$argv, &$argc){ $followup = true; $public_message = false; // not public $conversant_str = dbesc($parent['contact-id']); - } - else { + $recipients = array($parent['contact-id']); + + if ($parent['network'] == NETWORK_OSTATUS) { + + // Check if the recipient isn't in your contact list + $r = q("SELECT `url` FROM `contact` WHERE `id` = %d", $parent['contact-id']); + if (count($r)) { + $url_recipients = array(); + + $thrparent = q("SELECT `author-link` FROM `item` WHERE `uri` = '%s'", dbesc($target_item["thr-parent"])); + if (count($thrparent) AND (normalise_link($r[0]["url"]) != normalise_link($thrparent[0]["author-link"]))) { + require_once("include/Scrape.php"); + $probed_contact = probe_url($thrparent[0]["author-link"]); + if ($probed_contact["notify"] != "") { + logger('scrape data for slapper: '.print_r($probed_contact, true)); + $url_recipients[$probed_contact["notify"]] = $probed_contact["notify"]; + } + } + } + logger("url_recipients".print_r($url_recipients,true)); + } + } else { $followup = false; // don't send deletions onward for other people's stuff @@ -306,9 +323,9 @@ function notifier_run(&$argv, &$argc){ return; } - if((strlen($parent['allow_cid'])) - || (strlen($parent['allow_gid'])) - || (strlen($parent['deny_cid'])) + if((strlen($parent['allow_cid'])) + || (strlen($parent['allow_gid'])) + || (strlen($parent['deny_cid'])) || (strlen($parent['deny_gid']))) { $public_message = false; // private recipients, not public } @@ -410,8 +427,7 @@ function notifier_run(&$argv, &$argc){ '$content' => xmlify($body), '$parent_id' => xmlify($item['parent-uri']) )); - } - elseif($fsuggest) { + } elseif($fsuggest) { $public_message = false; // suggestions are not public $sugg_template = get_markup_template('atom_suggest.tpl'); @@ -430,9 +446,8 @@ function notifier_run(&$argv, &$argc){ intval($item['id']) ); - } - elseif($relocate) { - $public_message = false; // suggestions are not public + } elseif($relocate) { + $public_message = false; // suggestions are not public $sugg_template = get_markup_template('atom_relocate.tpl'); @@ -453,24 +468,23 @@ function notifier_run(&$argv, &$argc){ } unset($rp, $ext); - $atom .= replace_macros($sugg_template, array( - '$name' => xmlify($owner['name']), - '$photo' => xmlify($photos[4]), - '$thumb' => xmlify($photos[5]), - '$micro' => xmlify($photos[6]), - '$url' => xmlify($owner['url']), - '$request' => xmlify($owner['request']), - '$confirm' => xmlify($owner['confirm']), - '$notify' => xmlify($owner['notify']), - '$poll' => xmlify($owner['poll']), - '$sitepubkey' => xmlify(get_config('system','site_pubkey')), - //'$pubkey' => xmlify($owner['pubkey']), - //'$prvkey' => xmlify($owner['prvkey']), - )); - $recipients_relocate = q("SELECT * FROM contact WHERE uid = %d AND self = 0 AND network = '%s'" , intval($uid), NETWORK_DFRN); + $atom .= replace_macros($sugg_template, array( + '$name' => xmlify($owner['name']), + '$photo' => xmlify($photos[4]), + '$thumb' => xmlify($photos[5]), + '$micro' => xmlify($photos[6]), + '$url' => xmlify($owner['url']), + '$request' => xmlify($owner['request']), + '$confirm' => xmlify($owner['confirm']), + '$notify' => xmlify($owner['notify']), + '$poll' => xmlify($owner['poll']), + '$sitepubkey' => xmlify(get_config('system','site_pubkey')), + //'$pubkey' => xmlify($owner['pubkey']), + //'$prvkey' => xmlify($owner['prvkey']), + )); + $recipients_relocate = q("SELECT * FROM contact WHERE uid = %d AND self = 0 AND network = '%s'" , intval($uid), NETWORK_DFRN); unset($photos); - } - else { + } else { if($followup) { foreach($items as $item) { // there is only one item if(! $item['parent']) @@ -481,8 +495,7 @@ function notifier_run(&$argv, &$argc){ $atom .= atom_entry($item,'text',null,$owner,false); } } - } - else { + } else { foreach($items as $item) { if(! $item['parent']) @@ -506,11 +519,10 @@ function notifier_run(&$argv, &$argc){ if($item_id == $item['id'] || $item['id'] == $item['parent']) $atom .= atom_entry($item,'text',null,$owner,true); - } - else + } else $atom .= atom_entry($item,'text',null,$owner,true); - if(($top_level) && ($public_message) && ($item['author-link'] === $item['owner-link']) && (! $expire)) + if(($top_level) && ($public_message) && ($item['author-link'] === $item['owner-link']) && (! $expire)) $slaps[] = atom_entry($item,'html',null,$owner,true); } } @@ -526,8 +538,8 @@ function notifier_run(&$argv, &$argc){ $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1); if(! $mail_disabled) { - if((! strlen($target_item['allow_cid'])) && (! strlen($target_item['allow_gid'])) - && (! strlen($target_item['deny_cid'])) && (! strlen($target_item['deny_gid'])) + if((! strlen($target_item['allow_cid'])) && (! strlen($target_item['allow_gid'])) + && (! strlen($target_item['deny_cid'])) && (! strlen($target_item['deny_gid'])) && (intval($target_item['pubmail']))) { $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `network` = '%s'", intval($uid), @@ -545,12 +557,12 @@ function notifier_run(&$argv, &$argc){ else $recip_str = implode(', ', $recipients); - if ($relocate) - $r = $recipients_relocate; - else - $r = q("SELECT * FROM `contact` WHERE `id` IN ( %s ) AND `blocked` = 0 AND `pending` = 0 ", - dbesc($recip_str) - ); + if ($relocate) + $r = $recipients_relocate; + else + $r = q("SELECT * FROM `contact` WHERE `id` IN ( %s ) AND `blocked` = 0 AND `pending` = 0 ", + dbesc($recip_str) + ); require_once('include/salmon.php'); @@ -946,7 +958,7 @@ function notifier_run(&$argv, &$argc){ } if((! $mail) && (! $fsuggest) && (! $followup)) { - logger('notifier: delivery agent: ' . $rr['name'] . ' ' . $rr['id']); + logger('notifier: delivery agent: ' . $rr['name'] . ' ' . $rr['id']); proc_run('php','include/delivery.php',$cmd,$item_id,$rr['id']); if($interval) @time_sleep_until(microtime(true) + (float) $interval); @@ -966,7 +978,7 @@ function notifier_run(&$argv, &$argc){ if ($h === '[internal]') { // Set push flag for PuSH subscribers to this topic, // they will be notified in queue.php - q("UPDATE `push_subscriber` SET `push` = 1 " . + q("UPDATE `push_subscriber` SET `push` = 1 " . "WHERE `nickname` = '%s'", dbesc($owner['nickname'])); } else { @@ -1001,6 +1013,6 @@ function notifier_run(&$argv, &$argc){ if (array_search(__file__,get_included_files())===0){ - notifier_run($argv,$argc); - killme(); + notifier_run($_SERVER["argv"],$_SERVER["argc"]); + killme(); } diff --git a/include/oembed.php b/include/oembed.php index 2ecb11e1f5..00489193f3 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -78,6 +78,11 @@ function oembed_fetch_url($embedurl, $no_rich_type = false){ if (!is_object($j)) return false; + // Always embed the SSL version + if (isset($j->html)) + $j->html = str_replace(array("http://www.youtube.com/", "http://player.vimeo.com/"), + array("https://www.youtube.com/", "https://player.vimeo.com/"), $j->html); + $j->embedurl = $embedurl; // If fetching information doesn't work, then improve via internal functions @@ -105,6 +110,8 @@ function oembed_fetch_url($embedurl, $no_rich_type = false){ } } + call_hooks('oembed_fetch_url', $embedurl, $j); + return $j; } diff --git a/include/onepoll.php b/include/onepoll.php index 9052937fdc..72c1d65c00 100644 --- a/include/onepoll.php +++ b/include/onepoll.php @@ -15,7 +15,7 @@ function onepoll_run(&$argv, &$argc){ if(is_null($a)) { $a = new App; } - + if(is_null($db)) { @include(".htconfig.php"); require_once("include/dba.php"); @@ -57,28 +57,30 @@ function onepoll_run(&$argv, &$argc){ return; } - // Test $lockpath = get_lockpath(); if ($lockpath != '') { $pidfile = new pidfile($lockpath, 'onepoll'.$contact_id); - if($pidfile->is_already_running()) { + if ($pidfile->is_already_running()) { logger("onepoll: Already running for contact ".$contact_id); + if ($pidfile->running_time() > 9*60) { + $pidfile->kill(); + logger("killed stale process"); + } exit; } } - $d = datetime_convert(); // Only poll from those with suitable relationships, - // and which have a polling address and ignore Diaspora since + // and which have a polling address and ignore Diaspora since // we are unable to match those posts with a Diaspora GUID and prevent duplicates. - $contacts = q("SELECT `contact`.* FROM `contact` + $contacts = q("SELECT `contact`.* FROM `contact` WHERE ( `rel` = %d OR `rel` = %d ) AND `poll` != '' AND NOT `network` IN ( '%s', '%s', '%s' ) AND `contact`.`id` = %d - AND `self` = 0 AND `contact`.`blocked` = 0 AND `contact`.`readonly` = 0 + AND `self` = 0 AND `contact`.`blocked` = 0 AND `contact`.`readonly` = 0 AND `contact`.`archive` = 0 LIMIT 1", intval(CONTACT_IS_SHARING), intval(CONTACT_IS_FRIEND), @@ -584,8 +586,8 @@ function onepoll_run(&$argv, &$argc){ // load current friends if possible. - if($contact['poco']) { - $r = q("SELECT count(*) as total from glink + if($contact['poco']) { + $r = q("SELECT count(*) as total from glink where `cid` = %d and updated > UTC_TIMESTAMP() - INTERVAL 1 DAY", intval($contact['id']) ); @@ -600,6 +602,6 @@ function onepoll_run(&$argv, &$argc){ } if (array_search(__file__,get_included_files())===0){ - onepoll_run($argv,$argc); + onepoll_run($_SERVER["argv"],$_SERVER["argc"]); killme(); } diff --git a/include/ostatus_conversation.php b/include/ostatus_conversation.php index 2fa7d7a544..403f95f4b0 100644 --- a/include/ostatus_conversation.php +++ b/include/ostatus_conversation.php @@ -20,12 +20,12 @@ function check_conversations() { if($last) { $next = $last + ($poll_interval * 60); if($next > time()) { - logger('complete_conversation: poll interval not reached'); + logger('poll interval not reached'); return; } } - logger('complete_conversation: cron_start'); + logger('cron_start'); $start = date("Y-m-d H:i:s", time() - ($poll_timeframe * 60)); $conversations = q("SELECT * FROM `term` WHERE `type` = 7 AND `term` > '%s'", @@ -36,7 +36,7 @@ function check_conversations() { complete_conversation($id, $url); } - logger('complete_conversation: cron_end'); + logger(' cron_end'); set_config('system','ostatus_last_poll', time()); } @@ -52,8 +52,6 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio $a->last_ostatus_conversation_url = $conversation_url; - //logger('complete_conversation: completing conversation url '.$conversation_url.' for id '.$itemid); - $messages = q("SELECT `uid`, `parent`, `created` FROM `item` WHERE `id` = %d LIMIT 1", intval($itemid)); if (!$messages) return; @@ -90,8 +88,6 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio do { $conv_as = fetch_url($conv."?page=".$pageno); - //$conv_as = fetch_url($conv."?page=".$pageno, false, 0, 10); - //$conv_as = file_get_contents($conv."?page=".$pageno); $conv_as = str_replace(',"statusnet:notice_info":', ',"statusnet_notice_info":', $conv_as); $conv_as = json_decode($conv_as); @@ -110,7 +106,7 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio $items = array_reverse($items); foreach ($items as $single_conv) { - // identi.ca just changed the format of the activity streams. This is a quick fix. + // status.net changed the format of the activity streams. This is a quick fix. if (@is_string($single_conv->object->id)) $single_conv->id = $single_conv->object->id; @@ -127,7 +123,7 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio intval($message["uid"]), dbesc($first_id)); if ($new_parents) { $parent = $new_parents[0]; - logger('complete_conversation: adopting new parent '.$parent["id"].' for '.$itemid); + logger('adopting new parent '.$parent["id"].' for '.$itemid); } else { $parent["id"] = 0; $parent["uri"] = $first_id; @@ -144,6 +140,8 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio if ($message_exists) { if ($parent["id"] != 0) { $existing_message = $message_exists[0]; + + // This is partly bad, since the entry in the thread table isn't updated $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s', `thr-parent` = '%s' WHERE `id` = %d", intval($parent["id"]), dbesc($parent["uri"]), @@ -153,12 +151,23 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio continue; } + $contact = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `network` != '%s'", + $message["uid"], normalise_link($single_conv->actor->id), NETWORK_STATUSNET); + + if (count($contact)) { + logger("Found contact for url ".$single_conv->actor->id, LOGGER_DEBUG); + $contact_id = $contact[0]["id"]; + } else { + logger("No contact found for url ".$single_conv->actor->id, LOGGER_DEBUG); + $contact_id = $parent["contact-id"]; + } + $arr = array(); $arr["network"] = NETWORK_OSTATUS; $arr["uri"] = $single_conv->id; $arr["plink"] = $single_conv->id; $arr["uid"] = $message["uid"]; - $arr["contact-id"] = $parent["contact-id"]; // To-Do + $arr["contact-id"] = $contact_id; if ($parent["id"] != 0) $arr["parent"] = $parent["id"]; $arr["parent-uri"] = $parent["uri"]; @@ -201,20 +210,13 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio // If the newly created item is the top item then change the parent settings of the thread if ($newitem AND ($arr["uri"] == $first_id)) { - logger('complete_conversation: setting new parent to id '.$newitem); + logger('setting new parent to id '.$newitem); $new_parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1", intval($message["uid"]), intval($newitem)); if ($new_parents) { $parent = $new_parents[0]; - logger('complete_conversation: done changing parents to parent '.$newitem); + logger('done changing parents to parent '.$newitem); } - - /*logger('complete_conversation: changing parents to parent '.$newitem.' old parent: '.$parent["id"].' new uri: '.$arr["uri"]); - $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s' WHERE `parent` = %d", - intval($newitem), - dbesc($arr["uri"]), - intval($parent["id"])); - logger('complete_conversation: done changing parents to parent '.$newitem.' '.print_r($r, true));*/ } } } diff --git a/include/poller.php b/include/poller.php index e94ab8746f..68f65999e3 100644 --- a/include/poller.php +++ b/include/poller.php @@ -240,14 +240,14 @@ function poller_run(&$argv, &$argc){ // We should be getting everything via a hub. But just to be sure, let's check once a day. // (You can make this more or less frequent if desired by setting 'pushpoll_frequency' appropriately) // This also lets us update our subscription to the hub, and add or replace hubs in case it - // changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'. + // changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'. if($contact['subhub']) { $poll_interval = get_config('system','pushpoll_frequency'); $contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3); $hub_update = false; - + if((datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day")) || $force) $hub_update = true; } @@ -256,13 +256,13 @@ function poller_run(&$argv, &$argc){ /** * Based on $contact['priority'], should we poll this site now? Or later? - */ + */ switch ($contact['priority']) { case 5: if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 month")) $update = true; - break; + break; case 4: if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 week")) $update = true; @@ -285,7 +285,13 @@ function poller_run(&$argv, &$argc){ continue; } - proc_run('php','include/onepoll.php',$contact['id']); + // Don't run onepoll.php if the contact isn't pollable + // This check also is inside the onepoll.php - but this will reduce the load + if (in_array($contact["rel"], array(CONTACT_IS_SHARING, CONTACT_IS_FRIEND)) AND ($contact["poll"] != "") + AND !in_array($contact['network'], array(NETWORK_DIASPORA, NETWORK_FACEBOOK, NETWORK_PUMPIO, NETWORK_TWITTER, NETWORK_APPNET)) + AND !$contact["self"] AND !$contact["blocked"] AND !$contact["readonly"] AND !$contact["archive"]) + proc_run('php','include/onepoll.php',$contact['id']); + if($interval) @time_sleep_until(microtime(true) + (float) $interval); } @@ -295,6 +301,6 @@ function poller_run(&$argv, &$argc){ } if (array_search(__file__,get_included_files())===0){ - poller_run($argv,$argc); + poller_run($_SERVER["argv"],$_SERVER["argc"]); killme(); } diff --git a/include/queue.php b/include/queue.php index 3c28cefaf2..128dfcba57 100644 --- a/include/queue.php +++ b/include/queue.php @@ -265,6 +265,6 @@ function queue_run(&$argv, &$argc){ } if (array_search(__file__,get_included_files())===0){ - queue_run($argv,$argc); + queue_run($_SERVER["argv"],$_SERVER["argc"]); killme(); } diff --git a/include/shadowupdate.php b/include/shadowupdate.php new file mode 100644 index 0000000000..74c2a43ebd --- /dev/null +++ b/include/shadowupdate.php @@ -0,0 +1,22 @@ + diff --git a/include/socgraph.php b/include/socgraph.php index daec03726e..fc9d3aecb0 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -12,14 +12,17 @@ require_once('include/datetime.php'); * * Once the global contact is stored add (if necessary) the contact linkage which associates * the given uid, cid to the global contact entry. There can be many uid/cid combinations - * pointing to the same global contact id. + * pointing to the same global contact id. * */ - + function poco_load($cid,$uid = 0,$zcid = 0,$url = null) { + + require_once("include/html2bbcode.php"); + $a = get_app(); if($cid) { @@ -39,7 +42,7 @@ function poco_load($cid,$uid = 0,$zcid = 0,$url = null) { if(! $url) return; - $url = $url . (($uid) ? '/@me/@all?fields=displayName,urls,photos' : '?fields=displayName,urls,photos') ; + $url = $url . (($uid) ? '/@me/@all?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender' : '?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender') ; logger('poco_load: ' . $url, LOGGER_DEBUG); @@ -67,6 +70,12 @@ function poco_load($cid,$uid = 0,$zcid = 0,$url = null) { $profile_photo = ''; $connect_url = ''; $name = ''; + $network = ''; + $updated = '0000-00-00 00:00:00'; + $location = ''; + $about = ''; + $keywords = ''; + $gender = ''; $name = $entry->displayName; @@ -82,7 +91,7 @@ function poco_load($cid,$uid = 0,$zcid = 0,$url = null) { } } } - if(isset($entry->photos)) { + if(isset($entry->photos)) { foreach($entry->photos as $photo) { if($photo->type == 'profile') { $profile_photo = $photo->value; @@ -91,81 +100,198 @@ function poco_load($cid,$uid = 0,$zcid = 0,$url = null) { } } - if((! $name) || (! $profile_url) || (! $profile_photo)) - continue; + if(isset($entry->updated)) + $updated = date("Y-m-d H:i:s", strtotime($entry->updated)); + + if(isset($entry->network)) + $network = $entry->network; + + if(isset($entry->currentLocation)) + $location = $entry->currentLocation; + + if(isset($entry->aboutMe)) + $about = html2bbcode($entry->aboutMe); + + if(isset($entry->gender)) + $gender = $entry->gender; + + if(isset($entry->tags)) + foreach($entry->tags as $tag) + $keywords = implode(", ", $tag); + + poco_check($profile_url, $name, $network, $profile_photo, $about, $location, $gender, $keywords, $connect_url, $updated, $cid, $uid, $zcid); + + // Update the Friendica contacts. Diaspora is doing it via a message. (See include/diaspora.php) + if (($location != "") OR ($about != "") OR ($keywords != "") OR ($gender != "")) + q("UPDATE `contact` SET `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s' + WHERE `nurl` = '%s' AND NOT `self` AND `network` = '%s'", + dbesc($location), + dbesc($about), + dbesc($keywords), + dbesc($gender), + dbesc(normalise_link($profile_url)), + dbesc(NETWORK_DFRN)); + } + logger("poco_load: loaded $total entries",LOGGER_DEBUG); + + q("DELETE FROM `glink` WHERE `cid` = %d AND `uid` = %d AND `zcid` = %d AND `updated` < UTC_TIMESTAMP - INTERVAL 2 DAY", + intval($cid), + intval($uid), + intval($zcid) + ); + +} + +function poco_check($profile_url, $name, $network, $profile_photo, $about, $location, $gender, $keywords, $connect_url, $updated, $cid = 0, $uid = 0, $zcid = 0) { + $gcid = ""; + + if ($profile_url == "") + return $gcid; + + $x = q("SELECT * FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1", + dbesc(normalise_link($profile_url)) + ); + if(count($x)) + $network = $x[0]["network"]; + + if (($network == "") OR ($name == "") OR ($profile_photo == "")) { + require_once("include/Scrape.php"); - $x = q("select * from `gcontact` where `nurl` = '%s' limit 1", + $data = probe_url($profile_url); + $network = $data["network"]; + $name = $data["name"]; + $profile_photo = $data["photo"]; + } + + if (count($x) AND ($x[0]["network"] == "") AND ($network != "")) { + q("UPDATE `gcontact` SET `network` = '%s' WHERE `nurl` = '%s'", + dbesc($network), dbesc(normalise_link($profile_url)) ); + } - if(count($x)) { - $gcid = $x[0]['id']; + if (($name == "") OR ($profile_photo == "")) + return $gcid; - if($x[0]['name'] != $name || $x[0]['photo'] != $profile_photo) { - q("update gcontact set `name` = '%s', `photo` = '%s', `connect` = '%s', `url` = '%s' - where `nurl` = '%s'", - dbesc($name), - dbesc($profile_photo), - dbesc($connect_url), - dbesc($profile_url), - dbesc(normalise_link($profile_url)) - ); - } - } - else { - q("insert into `gcontact` (`name`,`url`,`nurl`,`photo`,`connect`) - values ( '%s', '%s', '%s', '%s','%s') ", + if (!in_array($network, array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA, NETWORK_STATUSNET))) + return $gcid; + + logger("profile-check URL: ".$profile_url." name: ".$name." avatar: ".$profile_photo, LOGGER_DEBUG); + + if(count($x)) { + $gcid = $x[0]['id']; + + if (($location == "") AND ($x[0]['location'] != "")) + $location = $x[0]['location']; + + if (($about == "") AND ($x[0]['about'] != "")) + $about = $x[0]['about']; + + if (($gender == "") AND ($x[0]['gender'] != "")) + $gender = $x[0]['gender']; + + if (($keywords == "") AND ($x[0]['keywords'] != "")) + $keywords = $x[0]['keywords']; + + if($x[0]['name'] != $name || $x[0]['photo'] != $profile_photo || $x[0]['updated'] < $updated) { + q("update gcontact set `name` = '%s', `network` = '%s', `photo` = '%s', `connect` = '%s', `url` = '%s', + `updated` = '%s', `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s' + where `nurl` = '%s'", dbesc($name), - dbesc($profile_url), - dbesc(normalise_link($profile_url)), + dbesc($network), dbesc($profile_photo), - dbesc($connect_url) - ); - $x = q("select * from `gcontact` where `nurl` = '%s' limit 1", + dbesc($connect_url), + dbesc($profile_url), + dbesc($updated), + dbesc($location), + dbesc($about), + dbesc($keywords), + dbesc($gender), dbesc(normalise_link($profile_url)) ); - if(count($x)) - $gcid = $x[0]['id']; } - if(! $gcid) - return; + } else { + q("insert into `gcontact` (`name`,`network`, `url`,`nurl`,`photo`,`connect`, `updated`, `location`, `about`, `keywords`, `gender`) + values ('%s', '%s', '%s', '%s', '%s','%s', '%s', '%s', '%s', '%s', '%s')", + dbesc($name), + dbesc($network), + dbesc($profile_url), + dbesc(normalise_link($profile_url)), + dbesc($profile_photo), + dbesc($connect_url), + dbesc($updated), + dbesc($location), + dbesc($about), + dbesc($keywords), + dbesc($gender) + ); + $x = q("SELECT * FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1", + dbesc(normalise_link($profile_url)) + ); + if(count($x)) + $gcid = $x[0]['id']; + } - $r = q("select * from glink where `cid` = %d and `uid` = %d and `gcid` = %d and `zcid` = %d limit 1", + if(! $gcid) + return $gcid; + + $r = q("SELECT * FROM `glink` WHERE `cid` = %d AND `uid` = %d AND `gcid` = %d AND `zcid` = %d LIMIT 1", + intval($cid), + intval($uid), + intval($gcid), + intval($zcid) + ); + if(! count($r)) { + q("INSERT INTO `glink` (`cid`,`uid`,`gcid`,`zcid`, `updated`) VALUES (%d,%d,%d,%d, '%s') ", + intval($cid), + intval($uid), + intval($gcid), + intval($zcid), + dbesc(datetime_convert()) + ); + } else { + q("UPDATE `glink` SET `updated` = '%s' WHERE `cid` = %d AND `uid` = %d AND `gcid` = %d AND `zcid` = %d", + dbesc(datetime_convert()), intval($cid), intval($uid), intval($gcid), intval($zcid) ); - if(! count($r)) { - q("insert into glink ( `cid`,`uid`,`gcid`,`zcid`, `updated`) values (%d,%d,%d,%d, '%s') ", - intval($cid), - intval($uid), - intval($gcid), - intval($zcid), - dbesc(datetime_convert()) - ); - } - else { - q("update glink set updated = '%s' where `cid` = %d and `uid` = %d and `gcid` = %d and zcid = %d", - dbesc(datetime_convert()), - intval($cid), - intval($uid), - intval($gcid), - intval($zcid) - ); - } - } - logger("poco_load: loaded $total entries",LOGGER_DEBUG); - q("delete from glink where `cid` = %d and `uid` = %d and `zcid` = %d and `updated` < UTC_TIMESTAMP - INTERVAL 2 DAY", - intval($cid), - intval($uid), - intval($zcid) + // For unknown reasons there are sometimes duplicates + q("DELETE FROM `gcontact` WHERE `nurl` = '%s' AND `id` != %d AND + NOT EXISTS (SELECT `gcid` FROM `glink` WHERE `gcid` = `gcontact`.`id`)", + dbesc(normalise_link($profile_url)), + intval($gcid) ); + return $gcid; +} + +function poco_contact_from_body($body, $created, $cid, $uid) { + preg_replace_callback("/\[share(.*?)\].*?\[\/share\]/ism", + function ($match) use ($created, $cid, $uid){ + return(sub_poco_from_share($match, $created, $cid, $uid)); + }, $body); } +function sub_poco_from_share($share, $created, $cid, $uid) { + $profile = ""; + preg_match("/profile='(.*?)'/ism", $share[1], $matches); + if ($matches[1] != "") + $profile = $matches[1]; + + preg_match('/profile="(.*?)"/ism', $share[1], $matches); + if ($matches[1] != "") + $profile = $matches[1]; + + if ($profile == "") + return; + + logger("prepare poco_check for profile ".$profile, LOGGER_DEBUG); + poco_check($profile, "", "", "", "", "", "", "", "", $created, $cid, $uid); +} function count_common_friends($uid,$cid) { @@ -192,9 +318,9 @@ function common_friends($uid,$cid,$start = 0,$limit=9999,$shuffle = false) { if($shuffle) $sql_extra = " order by rand() "; else - $sql_extra = " order by `gcontact`.`name` asc "; + $sql_extra = " order by `gcontact`.`name` asc "; - $r = q("SELECT `gcontact`.* + $r = q("SELECT `gcontact`.* FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id` where `glink`.`cid` = %d and `glink`.`uid` = %d and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 and id != %d ) @@ -214,7 +340,7 @@ function common_friends($uid,$cid,$start = 0,$limit=9999,$shuffle = false) { function count_common_friends_zcid($uid,$zcid) { - $r = q("SELECT count(*) as `total` + $r = q("SELECT count(*) as `total` FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id` where `glink`.`zcid` = %d and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 ) ", @@ -233,9 +359,9 @@ function common_friends_zcid($uid,$zcid,$start = 0, $limit = 9999,$shuffle = fal if($shuffle) $sql_extra = " order by rand() "; else - $sql_extra = " order by `gcontact`.`name` asc "; + $sql_extra = " order by `gcontact`.`name` asc "; - $r = q("SELECT `gcontact`.* + $r = q("SELECT `gcontact`.* FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id` where `glink`.`zcid` = %d and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 ) @@ -269,9 +395,9 @@ function count_all_friends($uid,$cid) { function all_friends($uid,$cid,$start = 0, $limit = 80) { - $r = q("SELECT `gcontact`.* + $r = q("SELECT `gcontact`.* FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id` - where `glink`.`cid` = %d and `glink`.`uid` = %d + where `glink`.`cid` = %d and `glink`.`uid` = %d order by `gcontact`.`name` asc LIMIT %d, %d ", intval($cid), intval($uid), @@ -289,16 +415,31 @@ function suggestion_query($uid, $start = 0, $limit = 80) { if(! $uid) return array(); - $r = q("SELECT count(glink.gcid) as `total`, gcontact.* from gcontact - INNER JOIN glink on glink.gcid = gcontact.id + $network = array(NETWORK_DFRN); + + if (get_config('system','diaspora_enabled')) + $network[] = NETWORK_DIASPORA; + + if (!get_config('system','ostatus_disabled')) + $network[] = NETWORK_OSTATUS; + + $sql_network = implode("', '", $network); + //$sql_network = "'".$sql_network."', ''"; + $sql_network = "'".$sql_network."'"; + + $r = q("SELECT count(glink.gcid) as `total`, gcontact.* from gcontact + INNER JOIN glink on glink.gcid = gcontact.id where uid = %d and not gcontact.nurl in ( select nurl from contact where uid = %d ) and not gcontact.name in ( select name from contact where uid = %d ) and not gcontact.id in ( select gcid from gcign where uid = %d ) - group by glink.gcid order by total desc limit %d, %d ", + AND `gcontact`.`updated` != '0000-00-00 00:00:00' + AND `gcontact`.`network` IN (%s) + group by glink.gcid order by gcontact.updated desc,total desc limit %d, %d ", intval($uid), intval($uid), intval($uid), intval($uid), + $sql_network, intval($start), intval($limit) ); @@ -306,22 +447,30 @@ function suggestion_query($uid, $start = 0, $limit = 80) { if(count($r) && count($r) >= ($limit -1)) return $r; - $r2 = q("SELECT gcontact.* from gcontact - INNER JOIN glink on glink.gcid = gcontact.id + $r2 = q("SELECT gcontact.* from gcontact + INNER JOIN glink on glink.gcid = gcontact.id where glink.uid = 0 and glink.cid = 0 and glink.zcid = 0 and not gcontact.nurl in ( select nurl from contact where uid = %d ) and not gcontact.name in ( select name from contact where uid = %d ) and not gcontact.id in ( select gcid from gcign where uid = %d ) + AND `gcontact`.`updated` != '0000-00-00 00:00:00' + AND `gcontact`.`network` IN (%s) order by rand() limit %d, %d ", intval($uid), intval($uid), intval($uid), + $sql_network, intval($start), intval($limit) ); + $list = array(); + foreach ($r2 AS $suggestion) + $list[$suggestion["nurl"]] = $suggestion; - return array_merge($r,$r2); + foreach ($r AS $suggestion) + $list[$suggestion["nurl"]] = $suggestion; + return $list; } function update_suggestions() { diff --git a/include/tags.php b/include/tags.php index ea7eed84c3..05e11b47ed 100644 --- a/include/tags.php +++ b/include/tags.php @@ -1,5 +1,5 @@ get_baseurl(); @@ -26,14 +26,16 @@ function create_tags_from_item($itemid) { if ($message["deleted"]) return; - $cachefile = get_cachefile(urlencode($message["guid"])."-".hash("md5", $message['body'])); + if (!$dontcache) { + $cachefile = get_cachefile(urlencode($message["guid"])."-".hash("md5", $message['body'])); - if (($cachefile != '') AND !file_exists($cachefile)) { - $s = prepare_text($message['body']); - $stamp1 = microtime(true); - file_put_contents($cachefile, $s); - $a->save_timestamp($stamp1, "file"); - logger('create_tags_from_item: put item '.$message["id"].' into cachefile '.$cachefile); + if (($cachefile != '') AND !file_exists($cachefile)) { + $s = prepare_text($message['body']); + $stamp1 = microtime(true); + file_put_contents($cachefile, $s); + $a->save_timestamp($stamp1, "file"); + logger('create_tags_from_item: put item '.$message["id"].' into cachefile '.$cachefile); + } } $taglist = explode(",", $message["tag"]); diff --git a/include/text.php b/include/text.php index 9fef4aebb5..c664fd7d37 100644 --- a/include/text.php +++ b/include/text.php @@ -2,6 +2,7 @@ require_once("include/template_processor.php"); require_once("include/friendica_smarty.php"); +require_once("mod/proxy.php"); if(! function_exists('replace_macros')) { /** @@ -275,17 +276,17 @@ function paginate_data(&$a, $count=null) { $stripped = trim($stripped,'/'); $pagenum = $a->pager['page']; - if (($a->page_offset != "") AND !strstr($stripped, "&offset=")) + if (($a->page_offset != "") AND !preg_match('/[?&].offset=/', $stripped)) $stripped .= "&offset=".urlencode($a->page_offset); - if (!strpos($stripped, "?")) { - if ($pos = strpos($stripped, "&")) - $stripped = substr($stripped, 0, $pos)."?".substr($stripped, $pos + 1); - } $url = $a->get_baseurl() . '/' . $stripped; $data = array(); function _l(&$d, $name, $url, $text, $class="") { + if (!strpos($url, "?")) { + if ($pos = strpos($url, "&")) + $url = substr($url, 0, $pos)."?".substr($url, $pos + 1); + } $d[$name] = array('url'=>$url, 'text'=>$text, 'class'=>$class); } @@ -928,7 +929,7 @@ function micropro($contact, $redirect = false, $class = '', $textmode = false) { . (($click) ? ' fakelink' : '') . '" ' . (($redir) ? ' target="redir" ' : '') . (($url) ? ' href="' . $url . '"' : '') . $click . ' >' . $contact['name']
+			. proxy_url($contact['micro']) . '' . "\r\n"; } }} diff --git a/include/threads.php b/include/threads.php index 6b1c4342f7..e9a0d7f1f2 100644 --- a/include/threads.php +++ b/include/threads.php @@ -1,5 +1,5 @@ $data) { - if ($sql != "") - $sql .= ", "; + foreach ($item AS $field => $data) + if ($field != "uri") { + if ($sql != "") + $sql .= ", "; - $sql .= "`".$field."` = '".$data."'"; - } + $sql .= "`".$field."` = '".dbesc($data)."'"; + } - $result = q("UPDATE `thread` SET ".$sql." WHERE `iid` = %d", $itemid); + $result = q("UPDATE `thread` SET ".$sql." WHERE `iid` = %d", intval($itemid)); logger("update_thread: Update thread for item ".$itemid." - ".print_r($result, true)." ".print_r($item, true), LOGGER_DEBUG); + + // Updating a shadow item entry + $items = q("SELECT `id`, `title`, `body`, `created`, `edited`, `commented`, `received`, `changed`, `wall`, `private`, `pubmail`, + `moderated`, `visible`, `spam`, `starred`, `bookmark`, `deleted`, `origin`, `forum_mode`, `network` + FROM `item` WHERE `uri` = '%s' AND `uid` = 0 LIMIT 1", dbesc($item["uri"])); + + if (!$items) + return; + + $item = $items[0]; + + $result = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `network` = '%s' WHERE `id` = %d", + dbesc($item["title"]), + dbesc($item["body"]), + dbesc($item["network"]), + intval($item["id"]) + ); + logger("update_thread: Updating public shadow for post ".$item["id"]." Result: ".print_r($result, true), LOGGER_DEBUG); + + /* + $sql = ""; + + foreach ($item AS $field => $data) + if ($field != "id") { + if ($sql != "") + $sql .= ", "; + + $sql .= "`".$field."` = '".dbesc($data)."'"; + } + //logger("update_thread: Updating public shadow for post ".$item["id"]." SQL: ".$sql, LOGGER_DEBUG); + $result = q("UPDATE `item` SET ".$sql." WHERE `id` = %d", intval($item["id"])); + logger("update_thread: Updating public shadow for post ".$item["id"]." Result: ".print_r($result, true), LOGGER_DEBUG); + */ } function delete_thread_uri($itemuri, $uid) { @@ -57,17 +149,32 @@ function delete_thread_uri($itemuri, $uid) { if(count($messages)) foreach ($messages as $message) - delete_thread($message["id"]); + delete_thread($message["id"], $itemuri); } -function delete_thread($itemid) { +function delete_thread($itemid, $itemuri = "") { + $item = q("SELECT `uid` FROM `thread` WHERE `iid` = %d", intval($itemid)); + $result = q("DELETE FROM `thread` WHERE `iid` = %d", intval($itemid)); logger("delete_thread: Deleted thread for item ".$itemid." - ".print_r($result, true), LOGGER_DEBUG); + + if ($itemuri != "") { + $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND NOT (`uid` IN (%d, 0))", + dbesc($itemuri), + intval($item["uid"]) + ); + if (!count($r)) { + $r = q("DELETE FROM `item` WHERE `uri` = '%s' AND `uid` = 0)", + dbesc($itemuri) + ); + logger("delete_thread: Deleted shadow for item ".$itemuri." - ".print_r($result, true), LOGGER_DEBUG); + } + } } function update_threads() { - global $db; + global $db; logger("update_threads: start"); @@ -96,4 +203,21 @@ function update_threads_mention() { q("UPDATE `thread` SET `mention` = 1 WHERE `iid` = %d", $parent["parent"]); } } + + +function update_shadow_copy() { + global $db; + + logger("start"); + + $messages = $db->q(sprintf("SELECT `iid` FROM `thread` WHERE `uid` != 0 AND `network` IN ('', '%s', '%s', '%s') + AND `visible` AND NOT `deleted` AND NOT `moderated` AND NOT `private` ORDER BY `created`", + NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS), true); + + logger("fetched messages: ".count($messages)); + while ($message = $db->qfetch()) + add_thread($message["iid"], true); + + $db->qclose(); +} ?> diff --git a/library/HTML5/Parser.php b/library/HTML5/Parser.php index c7faf875ad..e101d3e545 100644 --- a/library/HTML5/Parser.php +++ b/library/HTML5/Parser.php @@ -20,7 +20,12 @@ class HTML5_Parser // Cleanup invalid HTML $doc = new DOMDocument(); - @$doc->loadHTML($text); + + if (mb_detect_encoding($text, "UTF-8", true) == "UTF-8") + @$doc->loadHTML(''.$text); + else + @$doc->loadHTML($text); + $text = $doc->saveHTML(); $tokenizer = new HTML5_Tokenizer($text, $builder); diff --git a/mod/admin.php b/mod/admin.php index 8bddd8ce88..bf74d3ef3c 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -1000,7 +1000,7 @@ function admin_page_users(&$a){ '$users' => $users, '$newusername' => array('new_user_name', t("Name"), '', t("Name of the new user.")), '$newusernickname' => array('new_user_nickname', t("Nickname"), '', t("Nickname of the new user.")), - '$newuseremail' => array('new_user_email', t("Email"), '', t("Email address of the new user.")), + '$newuseremail' => array('new_user_email', t("Email"), '', t("Email address of the new user."), '', '', 'email'), )); $o .= paginate($a); return $o; diff --git a/mod/bookmarklet.php b/mod/bookmarklet.php new file mode 100644 index 0000000000..96eb370287 --- /dev/null +++ b/mod/bookmarklet.php @@ -0,0 +1,46 @@ +'.t('Login').''; + $o .= login(($a->config['register_policy'] == REGISTER_CLOSED) ? false : true); + return $o; + } + + $referer = normalise_link($_SERVER["HTTP_REFERER"]); + $page = normalise_link($a->get_baseurl()."/bookmarklet"); + + if (!strstr($referer, $page)) { + $content = add_page_info($_REQUEST["url"]); + + $x = array( + 'is_owner' => true, + 'allow_location' => $a->user['allow_location'], + 'default_location' => $a->user['default-location'], + 'nickname' => $a->user['nickname'], + 'lockstate' => ((is_array($a->user) && ((strlen($a->user['allow_cid'])) || (strlen($a->user['allow_gid'])) || (strlen($a->user['deny_cid'])) || (strlen($a->user['deny_gid'])))) ? 'lock' : 'unlock'), + 'default_perms' => get_acl_permissions($a->user), + 'acl' => populate_acl($a->user, $celeb), + 'bang' => '', + 'visitor' => 'block', + 'profile_uid' => local_user(), + 'acl_data' => construct_acl_data($a, $a->user), // For non-Javascript ACL selector + 'title' => $_REQUEST["title"], + 'content' => $content + ); + $o = status_editor($a,$x, 0, false); + $o .= ""; + } else { + $o = '

'.t('The post was created').'

'; + $o .= ""; + } + + return $o; +} diff --git a/mod/community.php b/mod/community.php index 8d23c4af28..e231151579 100644 --- a/mod/community.php +++ b/mod/community.php @@ -114,6 +114,10 @@ function community_content(&$a, $update = 0) { } function community_getitems($start, $itemspage) { + // Work in progress + if (get_config('system', 'global_community')) + return(community_getpublicitems($start, $itemspage)); + $r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`, `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`rel`, `contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`, @@ -136,3 +140,19 @@ function community_getitems($start, $itemspage) { return($r); } + +function community_getpublicitems($start, $itemspage) { + $r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`, + `author-name` AS `name`, `owner-avatar` AS `photo`, + `owner-link` AS `url`, `owner-avatar` AS `thumb` + FROM `item` WHERE `item`.`uid` = 0 + AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' + AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = '' + ORDER BY `item`.`received` DESC LIMIT %d, %d", + intval($start), + intval($itemspage) + ); + + return($r); + +} diff --git a/mod/contacts.php b/mod/contacts.php index fbab84f562..300331a9dc 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -3,6 +3,7 @@ require_once('include/Contact.php'); require_once('include/socgraph.php'); require_once('include/contact_selectors.php'); +require_once('mod/proxy.php'); function contacts_init(&$a) { if(! local_user()) @@ -73,12 +74,12 @@ function contacts_init(&$a) { function contacts_batch_actions(&$a){ $contacts_id = $_POST['contact_batch']; if (!is_array($contacts_id)) return; - + $orig_records = q("SELECT * FROM `contact` WHERE `id` IN (%s) AND `uid` = %d AND `self` = 0", implode(",", $contacts_id), intval(local_user()) ); - + $count_actions=0; foreach($orig_records as $orig_record) { $contact_id = $orig_record['id']; @@ -106,7 +107,7 @@ function contacts_batch_actions(&$a){ if ($count_actions>0) { info ( sprintf( tt("%d contact edited.", "%d contacts edited", $count_actions), $count_actions) ); } - + if(x($_SESSION,'return_url')) goaway($a->get_baseurl(true) . '/' . $_SESSION['return_url']); else @@ -407,19 +408,19 @@ function contacts_content(&$a) { $url = "redir/{$contact['id']}"; $sparkle = ' class="sparkle" '; } - else { + else { $url = $contact['url']; $sparkle = ''; } $insecure = t('Private communications are not available for this contact.'); - $last_update = (($contact['last-update'] == '0000-00-00 00:00:00') - ? t('Never') + $last_update = (($contact['last-update'] == '0000-00-00 00:00:00') + ? t('Never') : datetime_convert('UTC',date_default_timezone_get(),$contact['last-update'],'D, j M Y, g:i A')); if($contact['last-update'] !== '0000-00-00 00:00:00') - $last_update .= ' ' . (($contact['last-update'] == $contact['success_update']) ? t("\x28Update was successful\x29") : t("\x28Update was not successful\x29")); + $last_update .= ' ' . (($contact['last-update'] <= $contact['success_update']) ? t("\x28Update was successful\x29") : t("\x28Update was not successful\x29")); $lblsuggest = (($contact['network'] === NETWORK_DFRN) ? t('Suggest friends') : ''); @@ -430,7 +431,7 @@ function contacts_content(&$a) { $common = count_common_friends(local_user(),$contact['id']); $common_text = (($common) ? sprintf( tt('%d contact in common','%d contacts in common', $common),$common) : ''); - $polling = (($contact['network'] === NETWORK_MAIL | $contact['network'] === NETWORK_FEED) ? 'polling' : ''); + $polling = (($contact['network'] === NETWORK_MAIL | $contact['network'] === NETWORK_FEED) ? 'polling' : ''); $x = count_all_friends(local_user(), $contact['id']); $all_friends = (($x) ? t('View all contacts') : ''); @@ -623,11 +624,11 @@ function contacts_content(&$a) { if($nets) $sql_extra .= sprintf(" AND network = '%s' ", dbesc($nets)); - - $sql_extra2 = ((($sort_type > 0) && ($sort_type <= CONTACT_IS_FRIEND)) ? sprintf(" AND `rel` = %d ",intval($sort_type)) : ''); - - $r = q("SELECT COUNT(*) AS `total` FROM `contact` + $sql_extra2 = ((($sort_type > 0) && ($sort_type <= CONTACT_IS_FRIEND)) ? sprintf(" AND `rel` = %d ",intval($sort_type)) : ''); + + + $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `pending` = 0 $sql_extra $sql_extra2 ", intval($_SESSION['uid'])); if(count($r)) { @@ -668,7 +669,7 @@ function contacts_content(&$a) { $url = "redir/{$rr['id']}"; $sparkle = ' class="sparkle" '; } - else { + else { $url = $rr['url']; $sparkle = ''; } @@ -681,7 +682,7 @@ function contacts_content(&$a) { 'id' => $rr['id'], 'alt_text' => $alt_text, 'dir_icon' => $dir_icon, - 'thumb' => $rr['thumb'], + 'thumb' => proxy_url($rr['thumb']), 'name' => $rr['name'], 'username' => $rr['name'], 'sparkle' => $sparkle, diff --git a/mod/display.php b/mod/display.php index abb03b6d5b..374de6cacc 100644 --- a/mod/display.php +++ b/mod/display.php @@ -16,7 +16,7 @@ function display_init(&$a) { // Does the local user have this item? if (local_user()) { - $r = q("SELECT `id`, `parent`, `author-name`, `author-link`, `author-avatar`, `network`, `body` FROM `item` + $r = q("SELECT `id`, `parent`, `author-name`, `author-link`, `author-avatar`, `network`, `body`, `uid` FROM `item` WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0 AND `guid` = '%s' AND `uid` = %d", $a->argv[1], local_user()); if (count($r)) { @@ -43,7 +43,7 @@ function display_init(&$a) { } if (count($r)) { if ($r[0]["id"] != $r[0]["parent"]) - $r = q("SELECT `id`, `author-name`, `author-link`, `author-avatar`, `network`, `body` FROM `item` + $r = q("SELECT `id`, `author-name`, `author-link`, `author-avatar`, `network`, `body`, `uid` FROM `item` WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0 AND `id` = %d", $r[0]["parent"]); @@ -89,23 +89,28 @@ function display_fetchauthor($a, $item) { $profiledata["url"] = $item["author-link"]; $profiledata["network"] = $item["network"]; - // Fetching profile data from unique contacts - // To-do: Extend "unique contacts" table for further contact data like location, ... - $r = q("SELECT `avatar`, `nick` FROM `unique_contacts` WHERE `url` = '%s'", normalise_link($profiledata["url"])); + // Fetching further contact data from the contact table + $r = q("SELECT `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d", + normalise_link($profiledata["url"]), $item["uid"]); if (count($r)) { - $profiledata["photo"] = proxy_url($r[0]["avatar"]); + $profiledata["photo"] = proxy_url($r[0]["photo"]); + $profiledata["address"] = proxy_parse_html(bbcode($r[0]["location"])); + $profiledata["about"] = proxy_parse_html(bbcode($r[0]["about"])); if ($r[0]["nick"] != "") $profiledata["nickname"] = $r[0]["nick"]; - } else { - // Is this case possible? - // Fetching further contact data from the contact table, when it isn't available in the "unique contacts" - $r = q("SELECT `photo`, `nick` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d", - normalise_link($profiledata["url"]), $itemuid); - if (count($r)) { - $profiledata["photo"] = proxy_url($r[0]["photo"]); - if ($r[0]["nick"] != "") - $profiledata["nickname"] = $r[0]["nick"]; - } + } + + // Fetching profile data from unique contacts + $r = q("SELECT `avatar`, `nick`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", normalise_link($profiledata["url"])); + if (count($r)) { + if ($profiledata["photo"] == "") + $profiledata["photo"] = proxy_url($r[0]["avatar"]); + if ($profiledata["address"] == "") + $profiledata["address"] = proxy_parse_html(bbcode($r[0]["location"])); + if ($profiledata["about"] == "") + $profiledata["about"] = proxy_parse_html(bbcode($r[0]["about"])); + if (($profiledata["nickname"] == "") AND ($r[0]["nick"] != "")) + $profiledata["nickname"] = $r[0]["nick"]; } // Check for a repeated message @@ -158,6 +163,21 @@ function display_fetchauthor($a, $item) { $profiledata["nickname"] = $profiledata["name"]; $profiledata["network"] = GetProfileUsername($profiledata["url"], "", false, true); + + $profiledata["address"] = ""; + $profiledata["about"] = ""; + + // Fetching profile data from unique contacts + if ($profiledata["url"] != "") { + $r = q("SELECT `avatar`, `nick`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", normalise_link($profiledata["url"])); + if (count($r)) { + $profiledata["photo"] = proxy_url($r[0]["avatar"]); + $profiledata["address"] = proxy_parse_html(bbcode($r[0]["location"])); + $profiledata["about"] = proxy_parse_html(bbcode($r[0]["about"])); + if ($r[0]["nick"] != "") + $profiledata["nickname"] = $r[0]["nick"]; + } + } } if (local_user()) { diff --git a/mod/install.php b/mod/install.php index 484846ccd6..c6fe708362 100755 --- a/mod/install.php +++ b/mod/install.php @@ -231,11 +231,11 @@ function install_content(&$a) { '$status' => $wizard_status, - '$dbhost' => array('dbhost', t('Database Server Name'), $dbhost, ''), - '$dbuser' => array('dbuser', t('Database Login Name'), $dbuser, ''), - '$dbpass' => array('dbpass', t('Database Login Password'), $dbpass, ''), - '$dbdata' => array('dbdata', t('Database Name'), $dbdata, ''), - '$adminmail' => array('adminmail', t('Site administrator email address'), $adminmail, t('Your account email address must match this in order to use the web admin panel.')), + '$dbhost' => array('dbhost', t('Database Server Name'), $dbhost, '', 'required'), + '$dbuser' => array('dbuser', t('Database Login Name'), $dbuser, '', 'required', 'autofocus'), + '$dbpass' => array('dbpass', t('Database Login Password'), $dbpass, '', 'required'), + '$dbdata' => array('dbdata', t('Database Name'), $dbdata, '', 'required'), + '$adminmail' => array('adminmail', t('Site administrator email address'), $adminmail, t('Your account email address must match this in order to use the web admin panel.'), 'required', 'autofocus', 'email'), @@ -274,7 +274,7 @@ function install_content(&$a) { '$dbdata' => $dbdata, '$phpath' => $phpath, - '$adminmail' => array('adminmail', t('Site administrator email address'), $adminmail, t('Your account email address must match this in order to use the web admin panel.')), + '$adminmail' => array('adminmail', t('Site administrator email address'), $adminmail, t('Your account email address must match this in order to use the web admin panel.'), 'required', 'autofocus', 'email'), '$timezone' => field_timezone('timezone', t('Please select a default timezone for your website'), $timezone, ''), diff --git a/mod/item.php b/mod/item.php index 0f4e3db0c0..a66535d7de 100644 --- a/mod/item.php +++ b/mod/item.php @@ -90,14 +90,14 @@ function item_post(&$a) { $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1", intval($parent) ); - } - elseif($parent_uri && local_user()) { + } elseif($parent_uri && local_user()) { // This is coming from an API source, and we are logged in $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1", dbesc($parent_uri), intval(local_user()) ); } + // if this isn't the real parent of the conversation, find it if($r !== false && count($r)) { $parid = $r[0]['parent']; @@ -127,8 +127,27 @@ function item_post(&$a) { intval($parent_item['contact-id']), intval($uid) ); - if(count($r)) + if(count($r)) { $parent_contact = $r[0]; + + // If the contact id doesn't fit with the contact, then set the contact to null + $thrparent = q("SELECT `author-link`, `network` FROM `item` WHERE `uri` = '%s' LIMIT 1", dbesc($thr_parent)); + if (count($thrparent) AND ($thrparent[0]["network"] === NETWORK_OSTATUS) + AND (normalise_link($parent_contact["url"]) != normalise_link($thrparent[0]["author-link"]))) { + $parent_contact = null; + + require_once("include/Scrape.php"); + $probed_contact = probe_url($thrparent[0]["author-link"]); + if ($probed_contact["network"] != NETWORK_FEED) { + $parent_contact = $probed_contact; + $parent_contact["nurl"] = normalise_link($probed_contact["url"]); + $parent_contact["thumb"] = $probed_contact["photo"]; + $parent_contact["micro"] = $probed_contact["photo"]; + } + logger('parent contact: '.print_r($parent_contact, true), LOGGER_DEBUG); + } else + logger('no contact found: '.print_r($thrparent, true), LOGGER_DEBUG); + } } } diff --git a/mod/message.php b/mod/message.php index 0a54f9428d..178d99bba5 100644 --- a/mod/message.php +++ b/mod/message.php @@ -139,7 +139,7 @@ function item_redir_and_replace_images($body, $images, $cid) { for($i = 0; $i < count($images); $i++) { $search = '/\[url\=(.*?)\]\[!#saved_image' . $i . '#!\]\[\/url\]' . '/is'; - $replace = '[url=' . z_path() . '/redir/' . $cid + $replace = '[url=' . z_path() . '/redir/' . $cid . '?f=1&url=' . '$1' . '][!#saved_image' . $i . '#!][/url]' ; $img_end = strpos($origbody, '[!#saved_image' . $i . '#!][/url]') + strlen('[!#saved_image' . $i . '#!][/url]'); @@ -256,17 +256,17 @@ function message_content(&$a) { if($r) info( t('Conversation removed.') . EOL ); - } + } //goaway($a->get_baseurl(true) . '/message' ); goaway($a->get_baseurl(true) . '/' . $_SESSION['return_url']); - } - + } + } if(($a->argc > 1) && ($a->argv[1] === 'new')) { - + $o .= $header; - + /* $plaintext = false; if(intval(get_pconfig(local_user(),'system','plaintext'))) $plaintext = true;*/ @@ -282,7 +282,7 @@ function message_content(&$a) { '$nickname' => $a->user['nickname'], '$linkurl' => t('Please enter a link URL:') )); - + $tpl = get_markup_template('msg-end.tpl'); $a->page['end'] .= replace_macros($tpl, array( '$baseurl' => $a->get_baseurl(true), @@ -290,9 +290,9 @@ function message_content(&$a) { '$nickname' => $a->user['nickname'], '$linkurl' => t('Please enter a link URL:') )); - + $preselect = (isset($a->argv[2])?array($a->argv[2]):false); - + $prename = $preurl = $preid = ''; @@ -306,19 +306,19 @@ function message_content(&$a) { $preurl = $r[0]['url']; $preid = $r[0]['id']; } - } + } $prefill = (($preselect) ? $prename : ''); // the ugly select box - + $select = contact_select('messageto','message-to-select', $preselect, 4, true, false, false, 10); $tpl = get_markup_template('prv_message.tpl'); $o .= replace_macros($tpl,array( '$header' => t('Send Private Message'), '$to' => t('To:'), - '$showinputs' => 'true', + '$showinputs' => 'true', '$prefill' => $prefill, '$autocomp' => $autocomp, '$preid' => $preid, @@ -347,8 +347,8 @@ function message_content(&$a) { $o .= $header; - - $r = q("SELECT count(*) AS `total` FROM `mail` + + $r = q("SELECT count(*) AS `total` FROM `mail` WHERE `mail`.`uid` = %d GROUP BY `parent-uri` ORDER BY `created` DESC", intval(local_user()), dbesc($myprofile) @@ -356,10 +356,10 @@ function message_content(&$a) { if(count($r)) $a->set_pager_total($r[0]['total']); - $r = q("SELECT max(`mail`.`created`) AS `mailcreated`, min(`mail`.`seen`) AS `mailseen`, + $r = q("SELECT max(`mail`.`created`) AS `mailcreated`, min(`mail`.`seen`) AS `mailseen`, `mail`.* , `contact`.`name`, `contact`.`url`, `contact`.`thumb` , `contact`.`network`, count( * ) as count - FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id` + FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id` WHERE `mail`.`uid` = %d GROUP BY `parent-uri` ORDER BY `mailcreated` DESC LIMIT %d , %d ", intval(local_user()), // @@ -394,7 +394,7 @@ function message_content(&$a) { $body_e = $rr['body']; $to_name_e = $rr['name']; } - + $o .= replace_macros($tpl, array( '$id' => $rr['id'], '$from_name' => $partecipants, @@ -411,7 +411,7 @@ function message_content(&$a) { '$count' => sprintf( tt('%d message', '%d messages', $rr['count']), $rr['count']), )); } - $o .= paginate($a); + $o .= paginate($a); return $o; } @@ -423,13 +423,13 @@ function message_content(&$a) { if( local_user() && feature_enabled(local_user(),'richtext') ) $plaintext = false; - $r = q("SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb` - FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id` + $r = q("SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb` + FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id` WHERE `mail`.`uid` = %d AND `mail`.`id` = %d LIMIT 1", intval(local_user()), intval($a->argv[1]) ); - if(count($r)) { + if(count($r)) { $contact_id = $r[0]['contact-id']; $convid = $r[0]['convid']; @@ -438,10 +438,10 @@ function message_content(&$a) { $sql_extra = sprintf(" and ( `mail`.`parent-uri` = '%s' OR `mail`.`convid` = '%d' ) ", dbesc($r[0]['parent-uri']), intval($convid) - ); + ); - $messages = q("SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb` - FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id` + $messages = q("SELECT `mail`.*, `contact`.`name`, `contact`.`url`, `contact`.`thumb` + FROM `mail` LEFT JOIN `contact` ON `mail`.`contact-id` = `contact`.`id` WHERE `mail`.`uid` = %d $sql_extra ORDER BY `mail`.`created` ASC", intval(local_user()) ); @@ -522,7 +522,7 @@ function message_content(&$a) { 'date' => datetime_convert('UTC',date_default_timezone_get(),$message['created'],'D, d M Y - g:i A'), 'ago' => relative_date($message['created']), ); - + $seen = $message['seen']; } @@ -545,9 +545,9 @@ function message_content(&$a) { '$thread_seen' => $seen, '$delete' => t('Delete conversation'), '$canreply' => (($unknown) ? false : '1'), - '$unknown_text' => t("No secure communications available. You may be able to respond from the sender's profile page."), + '$unknown_text' => t("No secure communications available. You may be able to respond from the sender's profile page."), '$mails' => $mails, - + // reply '$header' => t('Send Reply'), '$to' => t('To:'), diff --git a/mod/network.php b/mod/network.php index 1cb72aebab..355f6edcdb 100644 --- a/mod/network.php +++ b/mod/network.php @@ -369,7 +369,7 @@ function network_content(&$a, $update = 0) { if(feature_enabled(local_user(),'personal_tab')) { $tabs[] = array( 'label' => t('Personal'), - 'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '') . '&conv=1', + 'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&conv=1', 'sel' => $conv_active, 'title' => t('Posts that mention or involve you'), ); @@ -387,7 +387,7 @@ function network_content(&$a, $update = 0) { if(feature_enabled(local_user(),'link_tab')) { $tabs[] = array( 'label' => t('Shared Links'), - 'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '') . '&bmark=1', + 'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&bmark=1', 'sel'=>$bookmarked_active, 'title'=> t('Interesting Links'), ); @@ -396,7 +396,7 @@ function network_content(&$a, $update = 0) { if(feature_enabled(local_user(),'star_posts')) { $tabs[] = array( 'label' => t('Starred'), - 'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '') . '&star=1', + 'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&star=1', 'sel'=>$starred_active, 'title' => t('Favourite Posts'), ); diff --git a/mod/oembed.php b/mod/oembed.php index 236625f68a..f79f66a483 100644 --- a/mod/oembed.php +++ b/mod/oembed.php @@ -9,17 +9,18 @@ function oembed_content(&$a){ echo oembed_replacecb($url); killme(); } - + if ($a->argv[1]=='h2b'){ $text = trim(hex2bin($_REQUEST['text'])); echo oembed_html2bbcode($text); killme(); } - + if ($a->argc == 2){ echo ""; $url = base64url_decode($a->argv[1]); $j = oembed_fetch_url($url); + echo $j->html; // logger('mod-oembed ' . $j->html, LOGGER_ALL); echo ""; diff --git a/mod/parse_url.php b/mod/parse_url.php index 06e59b8691..9f7b31be30 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -73,7 +73,7 @@ function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $co $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, 1); - curl_setopt($ch, CURLOPT_NOBODY, 0); + curl_setopt($ch, CURLOPT_NOBODY, 1); curl_setopt($ch, CURLOPT_TIMEOUT, 3); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); //curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); @@ -102,6 +102,28 @@ function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $co $siteinfo["type"] = $oembed_data->type; } + // if the file is too large then exit + if ($curl_info["download_content_length"] > 1000000) + return($siteinfo); + + // if it isn't a HTML file then exit + if (($curl_info["content_type"] != "") AND !strstr(strtolower($curl_info["content_type"]),"html")) + return($siteinfo); + + // Now fetch the body as well + $ch = curl_init(); + curl_setopt($ch, CURLOPT_URL, $url); + curl_setopt($ch, CURLOPT_HEADER, 1); + curl_setopt($ch, CURLOPT_NOBODY, 0); + curl_setopt($ch, CURLOPT_TIMEOUT, 10); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent()); + + $header = curl_exec($ch); + $curl_info = @curl_getinfo($ch); + $http_code = $curl_info['http_code']; + curl_close($ch); + // Fetch the first mentioned charset. Can be in body or header $charset = ""; if (preg_match('/charset=(.*?)['."'".'"\s\n]/', $header, $matches)) diff --git a/mod/photos.php b/mod/photos.php index 605f6153ae..003bcd9150 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -1183,8 +1183,6 @@ function photos_content(&$a) { intval($a->pager['itemspage']) ); - $o .= '

' . $album . '

'; - if($cmd === 'edit') { if(($album !== t('Profile Photos')) && ($album !== 'Contact Photos') && ($album !== t('Contact Photos'))) { if($can_post) { @@ -1211,25 +1209,18 @@ function photos_content(&$a) { else { if(($album !== t('Profile Photos')) && ($album !== 'Contact Photos') && ($album !== t('Contact Photos'))) { if($can_post) { - $o .= ''; + $edit = array(t('Edit Album'), $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album) . '/edit'); } } } if($_GET['order'] === 'posted') - $o .= ''; + $order = array(t('Show Newest First'), $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album)); else - $o .= ''; - - - if($can_post) { - $o .= ''; - } + $order = array(t('Show Oldest First'), $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album) . '?f=&order=posted'); + $photos = array(); - $tpl = get_markup_template('photo_album.tpl'); if(count($r)) $twist = 'rotright'; foreach($r as $rr) { @@ -1248,20 +1239,31 @@ function photos_content(&$a) { $imgalt_e = $rr['filename']; $desc_e = $rr['desc']; } - - $o .= replace_macros($tpl,array( - '$id' => $rr['id'], - '$twist' => ' ' . $twist . rand(2,4), - '$photolink' => $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $rr['resource-id'] + + $photos[] = array( + 'id' => $rr['id'], + 'twist' => ' ' . $twist . rand(2,4), + 'link' => $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $rr['resource-id'] . (($_GET['order'] === 'posted') ? '?f=&order=posted' : ''), - '$phototitle' => t('View Photo'), - '$imgsrc' => $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['scale'] . '.' .$ext, - '$imgalt' => $imgalt_e, - '$desc'=> $desc_e - )); - + 'title' => t('View Photo'), + 'src' => $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['scale'] . '.' .$ext, + 'alt' => $imgalt_e, + 'desc'=> $desc_e, + 'ext' => $ext, + 'hash'=> $rr['resource_id'], + ); } - $o .= '
'; + + $tpl = get_markup_template('photo_album.tpl'); + $o .= replace_macros($tpl, array( + '$photos' => $photos, + '$album' => $album, + '$can_post' => $can_post, + '$upload' => array(t('Upload New Photos'), $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/upload/' . bin2hex($album)), + '$order' => $order, + '$edit' => $edit + )); + $o .= paginate($a); return $o; diff --git a/mod/poco.php b/mod/poco.php index 624a48d9ff..c8d8f72e83 100644 --- a/mod/poco.php +++ b/mod/poco.php @@ -1,6 +1,7 @@ argv[1])); } if(! x($user)) { - $c = q("select * from pconfig where cat = 'system' and k = 'suggestme' and v = 1"); + $c = q("SELECT * FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1"); if(! count($c)) http_status_exit(401); $system_mode = true; @@ -21,7 +22,12 @@ function poco_init(&$a) { $format = (($_GET['format']) ? $_GET['format'] : 'json'); $justme = false; + $global = false; + if($a->argc > 1 && $a->argv[1] === '@global') { + $global = true; + $update_limit = date("Y-m-d H:i:s", time() - 30 * 86400); + } if($a->argc > 2 && $a->argv[2] === '@me') $justme = true; if($a->argc > 3 && $a->argv[3] === '@all') @@ -30,9 +36,9 @@ function poco_init(&$a) { $justme = true; if($a->argc > 4 && intval($a->argv[4]) && $justme == false) $cid = intval($a->argv[4]); - - if(! $system_mode) { + + if(!$system_mode AND !$global) { $r = q("SELECT `user`.*,`profile`.`hide-friends` from user left join profile on `user`.`uid` = `profile`.`uid` where `user`.`nickname` = '%s' and `profile`.`is-default` = 1 limit 1", dbesc($user) @@ -44,21 +50,37 @@ function poco_init(&$a) { } if($justme) - $sql_extra = " and `contact`.`self` = 1 "; - else - $sql_extra = " and `contact`.`self` = 0 "; + $sql_extra = " AND `contact`.`self` = 1 "; +// else +// $sql_extra = " AND `contact`.`self` = 0 "; if($cid) - $sql_extra = sprintf(" and `contact`.`id` = %d ",intval($cid)); + $sql_extra = sprintf(" AND `contact`.`id` = %d ",intval($cid)); - if($system_mode) { - $r = q("SELECT count(*) as `total` from `contact` where self = 1 - and uid in (select uid from pconfig where cat = 'system' and k = 'suggestme' and v = 1) "); - } - else { - $r = q("SELECT count(*) as `total` from `contact` where `uid` = %d and blocked = 0 and pending = 0 and hidden = 0 and archive = 0 - $sql_extra ", - intval($user['uid']) + if(x($_GET,'updatedSince')) + $update_limit = date("Y-m-d H:i:s",strtotime($_GET['updatedSince'])); + + if ($global) { + $r = q("SELECT count(*) AS `total` FROM `gcontact` WHERE `updated` >= '%s' AND `network` IN ('%s')", + dbesc($update_limit), + dbesc(NETWORK_DFRN) + ); + } elseif($system_mode) { + $r = q("SELECT count(*) AS `total` FROM `contact` WHERE `self` = 1 AND `network` IN ('%s', '%s', '%s', '%s', '') + AND `uid` IN (SELECT `uid` FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1) ", + dbesc(NETWORK_DFRN), + dbesc(NETWORK_DIASPORA), + dbesc(NETWORK_OSTATUS), + dbesc(NETWORK_STATUSNET) + ); + } else { + $r = q("SELECT count(*) AS `total` FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 + AND `network` IN ('%s', '%s', '%s', '%s', '') $sql_extra", + intval($user['uid']), + dbesc(NETWORK_DFRN), + dbesc(NETWORK_DIASPORA), + dbesc(NETWORK_OSTATUS), + dbesc(NETWORK_STATUSNET) ); } if(count($r)) @@ -72,29 +94,45 @@ function poco_init(&$a) { $itemsPerPage = ((x($_GET,'count') && intval($_GET['count'])) ? intval($_GET['count']) : $totalResults); - if($system_mode) { - $r = q("SELECT * from contact where self = 1 - and uid in (select uid from pconfig where cat = 'system' and k = 'suggestme' and v = 1) limit %d, %d ", + if ($global) { + $r = q("SELECT * FROM `gcontact` WHERE `updated` > '%s' AND `network` IN ('%s') LIMIT %d, %d", + dbesc($update_limit), + dbesc(NETWORK_DFRN), intval($startIndex), intval($itemsPerPage) ); - } - else { - - $r = q("SELECT * from `contact` where `uid` = %d and blocked = 0 and pending = 0 and hidden = 0 and archive = 0 - $sql_extra LIMIT %d, %d", + } elseif($system_mode) { + $r = q("SELECT `contact`.*, `profile`.`about` AS `pabout`, `profile`.`locality` AS `plocation`, `profile`.`pub_keywords`, `profile`.`gender` AS `pgender` + FROM `contact` INNER JOIN `profile` ON `profile`.`uid` = `contact`.`uid` + WHERE `self` = 1 AND `network` IN ('%s', '%s', '%s', '%s', '') AND `profile`.`is-default` + AND `contact`.`uid` IN (SELECT `uid` FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1) LIMIT %d, %d", + dbesc(NETWORK_DFRN), + dbesc(NETWORK_DIASPORA), + dbesc(NETWORK_OSTATUS), + dbesc(NETWORK_STATUSNET), + intval($startIndex), + intval($itemsPerPage) + ); + } else { + $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 + AND `network` IN ('%s', '%s', '%s', '%s', '') $sql_extra LIMIT %d, %d", intval($user['uid']), + dbesc(NETWORK_DFRN), + dbesc(NETWORK_DIASPORA), + dbesc(NETWORK_OSTATUS), + dbesc(NETWORK_STATUSNET), intval($startIndex), intval($itemsPerPage) ); } + $ret = array(); if(x($_GET,'sorted')) - $ret['sorted'] = 'false'; + $ret['sorted'] = false; if(x($_GET,'filtered')) - $ret['filtered'] = 'false'; - if(x($_GET,'updatedSince')) - $ret['updateSince'] = 'false'; + $ret['filtered'] = false; + if(x($_GET,'updatedSince') AND !$global) + $ret['updatedSince'] = false; $ret['startIndex'] = (string) $startIndex; $ret['itemsPerPage'] = (string) $itemsPerPage; @@ -106,8 +144,14 @@ function poco_init(&$a) { 'id' => false, 'displayName' => false, 'urls' => false, + 'updated' => false, 'preferredUsername' => false, - 'photos' => false + 'photos' => false, + 'aboutMe' => false, + 'currentLocation' => false, + 'network' => false, + 'gender' => false, + 'tags' => false ); if((! x($_GET,'fields')) || ($_GET['fields'] === '@all')) @@ -122,20 +166,76 @@ function poco_init(&$a) { if(is_array($r)) { if(count($r)) { foreach($r as $rr) { + if (($rr['about'] == "") AND isset($rr['pabout'])) + $rr['about'] = $rr['pabout']; + + if (($rr['location'] == "") AND isset($rr['plocation'])) + $rr['location'] = $rr['plocation']; + + if (($rr['gender'] == "") AND isset($rr['pgender'])) + $rr['gender'] = $rr['pgender']; + + if (($rr['keywords'] == "") AND isset($rr['pub_keywords'])) + $rr['keywords'] = $rr['pub_keywords']; + $entry = array(); if($fields_ret['id']) $entry['id'] = $rr['id']; if($fields_ret['displayName']) $entry['displayName'] = $rr['name']; + if($fields_ret['aboutMe']) + $entry['aboutMe'] = bbcode($rr['about'], false, false); + if($fields_ret['currentLocation']) + $entry['currentLocation'] = $rr['location']; + if($fields_ret['gender']) + $entry['gender'] = $rr['gender']; if($fields_ret['urls']) { $entry['urls'] = array(array('value' => $rr['url'], 'type' => 'profile')); if($rr['addr'] && ($rr['network'] !== NETWORK_MAIL)) - $entry['urls'][] = array('value' => 'acct:' . $rr['addr'], 'type' => 'webfinger'); + $entry['urls'][] = array('value' => 'acct:' . $rr['addr'], 'type' => 'webfinger'); } if($fields_ret['preferredUsername']) $entry['preferredUsername'] = $rr['nick']; + if($fields_ret['updated']) { + if (!$global) { + $entry['updated'] = $rr['success_update']; + + if ($rr['name-date'] > $entry['updated']) + $entry['updated'] = $rr['name-date']; + + if ($rr['uri-date'] > $entry['updated']) + $entry['updated'] = $rr['uri-date']; + + if ($rr['avatar-date'] > $entry['updated']) + $entry['updated'] = $rr['avatar-date']; + } else + $entry['updated'] = $rr['updated']; + + $entry['updated'] = date("c", strtotime($entry['updated'])); + } if($fields_ret['photos']) $entry['photos'] = array(array('value' => $rr['photo'], 'type' => 'profile')); + if($fields_ret['network']) { + $entry['network'] = $rr['network']; + if ($entry['network'] == NETWORK_STATUSNET) + $entry['network'] = NETWORK_OSTATUS; + if (($entry['network'] == "") AND ($rr['self'])) + $entry['network'] = NETWORK_DFRN; + } + if($fields_ret['tags']) { + $tags = str_replace(","," ",$rr['keywords']); + $tags = explode(" ", $tags); + + $cleaned = array(); + foreach ($tags as $tag) { + $tag = trim(strtolower($tag)); + if ($tag != "") + $cleaned[] = $tag; + } + + $entry['tags'] = array($cleaned); + } + $ret['entry'][] = $entry; } } @@ -153,7 +253,7 @@ function poco_init(&$a) { if($format === 'json') { header('Content-type: application/json'); echo json_encode($ret); - killme(); + killme(); } else http_status_exit(500); diff --git a/mod/profiles.php b/mod/profiles.php index 6187e1c1e2..befeedb2ef 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -137,9 +137,26 @@ function profiles_init(&$a) { profile_load($a,$a->user['nickname'],$r[0]['id']); } - - + + +} + +function profile_clean_keywords($keywords) { + $keywords = str_replace(","," ",$keywords); + $keywords = explode(" ", $keywords); + + $cleaned = array(); + foreach ($keywords as $keyword) { + $keyword = trim(strtolower($keyword)); + $keyword = trim($keyword, "#"); + if ($keyword != "") + $cleaned[] = $keyword; + } + + $keywords = implode(", ", $cleaned); + + return $keywords; } function profiles_post(&$a) { @@ -193,7 +210,7 @@ function profiles_post(&$a) { $dob = '0000-00-00'; $dob = sprintf('%04d-%02d-%02d',$year,$month,$day); - + $name = notags(trim($_POST['name'])); if(! strlen($name)) { @@ -212,8 +229,8 @@ function profiles_post(&$a) { $region = notags(trim($_POST['region'])); $postal_code = notags(trim($_POST['postal_code'])); $country_name = notags(trim($_POST['country_name'])); - $pub_keywords = notags(trim($_POST['pub_keywords'])); - $prv_keywords = notags(trim($_POST['prv_keywords'])); + $pub_keywords = profile_clean_keywords(notags(trim($_POST['pub_keywords']))); + $prv_keywords = profile_clean_keywords(notags(trim($_POST['prv_keywords']))); $marital = notags(trim($_POST['marital'])); $howlong = notags(trim($_POST['howlong'])); @@ -223,7 +240,7 @@ function profiles_post(&$a) { $howlong = '0000-00-00 00:00:00'; else $howlong = datetime_convert(date_default_timezone_get(),'UTC',$howlong); - + // linkify the relationship target if applicable $withchanged = false; @@ -277,7 +294,7 @@ function profiles_post(&$a) { $newname = $r[0]['name']; } } - + if($prf) { $with = str_replace($lookup,'' . $newname . '', $with); if(strpos($with,'@') === 0) @@ -468,6 +485,15 @@ function profiles_post(&$a) { } if($is_default) { + + $r = q("UPDATE `contact` SET `about` = '%s', `location` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `self` = 1 AND `uid` = %d", + dbesc($about), + dbesc($locality), + dbesc($pub_keywords), + dbesc($gender), + intval(local_user()) + ); + // Update global directory in background $url = $_SESSION['my_url']; if($url && strlen(get_config('system','directory_submit_url'))) diff --git a/mod/salmon.php b/mod/salmon.php index 5df1e1c9e5..11e42d9436 100644 --- a/mod/salmon.php +++ b/mod/salmon.php @@ -15,7 +15,7 @@ function salmon_return($val) { if($val >= 200 && $val < 300) $err = 'OK'; - logger('mod-salmon returns ' . $val); + logger('mod-salmon returns ' . $val); header($_SERVER["SERVER_PROTOCOL"] . ' ' . $val . ' ' . $err); killme(); @@ -50,7 +50,7 @@ function salmon_post(&$a) { $base = $dom->env; elseif($dom->data) $base = $dom; - + if(! $base) { logger('mod-salmon: unable to locate salmon data in xml '); http_status_exit(400); @@ -92,7 +92,7 @@ function salmon_post(&$a) { // Create a fake feed wrapper so simplepie doesn't choke $tpl = get_markup_template('fake_feed.tpl'); - + $base = substr($data,strpos($data,''; @@ -100,7 +100,7 @@ function salmon_post(&$a) { logger('mod-salmon: Processed feed: ' . $feedxml); // Now parse it like a normal atom feed to scrape out the author URI - + $feed = new SimplePie(); $feed->set_raw_data($feedxml); $feed->enable_order_by_date(false); @@ -192,7 +192,7 @@ function salmon_post(&$a) { ); } } - } + } // is this a follower? Or have we ignored the person? // If so we can not accept this post. @@ -223,7 +223,3 @@ function salmon_post(&$a) { http_status_exit(200); } - - - - diff --git a/mod/settings.php b/mod/settings.php index b7148bb360..b01c4fabde 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -395,6 +395,8 @@ function settings_post(&$a) { $post_joingroup = (($_POST['post_joingroup'] == 1) ? 1: 0); $post_profilechange = (($_POST['post_profilechange'] == 1) ? 1: 0); + $email_textonly = (($_POST['email_textonly'] == 1) ? 1 : 0); + $notify = 0; if(x($_POST,'notify1')) @@ -495,6 +497,7 @@ function settings_post(&$a) { set_pconfig(local_user(),'system','post_joingroup', $post_joingroup); set_pconfig(local_user(),'system','post_profilechange', $post_profilechange); + set_pconfig(local_user(),'system','email_textonly', $email_textonly); if($page_flags == PAGE_PRVGROUP) { $hidewall = 1; @@ -505,7 +508,7 @@ function settings_post(&$a) { } else { notice( t('Private forum has no privacy permissions and no default privacy group.') . EOL); - } + } } } @@ -656,7 +659,7 @@ function settings_content(&$a) { } - $r = q("SELECT clients.*, tokens.id as oauth_token, (clients.uid=%d) AS my + $r = q("SELECT clients.*, tokens.id as oauth_token, (clients.uid=%d) AS my FROM clients LEFT JOIN tokens ON clients.client_id=tokens.client_id WHERE clients.uid IN (%d,0)", @@ -830,7 +833,7 @@ function settings_content(&$a) { $is_experimental = file_exists('view/theme/' . $th . '/experimental'); $unsupported = file_exists('view/theme/' . $th . '/unsupported'); $is_mobile = file_exists('view/theme/' . $th . '/mobile'); - if (!$is_experimental or ($is_experimental && (get_config('experimentals','exp_themes')==1 or get_config('experimentals','exp_themes')===false))){ + if (!$is_experimental or ($is_experimental && (get_config('experimentals','exp_themes')==1 or get_config('experimentals','exp_themes')===false))){ $theme_name = (($is_experimental) ? sprintf("%s - \x28Experimental\x29", $f) : $f); if($is_mobile) { $mobile_themes[$f]=$theme_name; @@ -1022,7 +1025,7 @@ function settings_content(&$a) { )); $hide_wall = replace_macros($opt_tpl,array( - '$field' => array('hidewall', t('Hide your profile details from unknown viewers?'), $a->user['hidewall'], '', array(t('No'),t('Yes'))), + '$field' => array('hidewall', t('Hide your profile details from unknown viewers?'), $a->user['hidewall'], t("If enabled, posting public messages to Diaspora and other networks isn't possible."), array(t('No'),t('Yes'))), )); @@ -1078,8 +1081,8 @@ function settings_content(&$a) { 'items' => array('expire_items', t("Expire posts:"), $expire_items, '', array(t('No'),t('Yes'))), 'notes' => array('expire_notes', t("Expire personal notes:"), $expire_notes, '', array(t('No'),t('Yes'))), 'starred' => array('expire_starred', t("Expire starred posts:"), $expire_starred, '', array(t('No'),t('Yes'))), - 'photos' => array('expire_photos', t("Expire photos:"), $expire_photos, '', array(t('No'),t('Yes'))), - 'network_only' => array('expire_network_only', t("Only expire posts by others:"), $expire_network_only, '', array(t('No'),t('Yes'))), + 'photos' => array('expire_photos', t("Expire photos:"), $expire_photos, '', array(t('No'),t('Yes'))), + 'network_only' => array('expire_network_only', t("Only expire posts by others:"), $expire_network_only, '', array(t('No'),t('Yes'))), ); require_once('include/group.php'); @@ -1123,7 +1126,7 @@ function settings_content(&$a) { '$h_basic' => t('Basic Settings'), '$username' => array('username', t('Full Name:'), $username,''), - '$email' => array('email', t('Email Address:'), $email, ''), + '$email' => array('email', t('Email Address:'), $email, '', '', '', 'email'), '$timezone' => array('timezone_select' , t('Your Timezone:'), select_timezone($timezone), ''), '$defloc' => array('defloc', t('Default Post Location:'), $defloc, ''), '$allowloc' => array('allow_location', t('Use Browser Location:'), ($a->user['allow_location'] == 1), ''), @@ -1175,10 +1178,13 @@ function settings_content(&$a) { '$notify3' => array('notify3', t('Someone writes on your profile wall'), ($notify & NOTIFY_WALL), NOTIFY_WALL, ''), '$notify4' => array('notify4', t('Someone writes a followup comment'), ($notify & NOTIFY_COMMENT), NOTIFY_COMMENT, ''), '$notify5' => array('notify5', t('You receive a private message'), ($notify & NOTIFY_MAIL), NOTIFY_MAIL, ''), - '$notify6' => array('notify6', t('You receive a friend suggestion'), ($notify & NOTIFY_SUGGEST), NOTIFY_SUGGEST, ''), - '$notify7' => array('notify7', t('You are tagged in a post'), ($notify & NOTIFY_TAGSELF), NOTIFY_TAGSELF, ''), - '$notify8' => array('notify8', t('You are poked/prodded/etc. in a post'), ($notify & NOTIFY_POKE), NOTIFY_POKE, ''), + '$notify6' => array('notify6', t('You receive a friend suggestion'), ($notify & NOTIFY_SUGGEST), NOTIFY_SUGGEST, ''), + '$notify7' => array('notify7', t('You are tagged in a post'), ($notify & NOTIFY_TAGSELF), NOTIFY_TAGSELF, ''), + '$notify8' => array('notify8', t('You are poked/prodded/etc. in a post'), ($notify & NOTIFY_POKE), NOTIFY_POKE, ''), + '$email_textonly' => array('email_textonly', t('Text-only notification emails'), + get_pconfig(local_user(),'system','email_textonly'), + t('Send text only notification emails, without the html part')), '$h_advn' => t('Advanced Account/Page Type Settings'), '$h_descadvn' => t('Change the behaviour of this account for special situations'), diff --git a/mod/suggest.php b/mod/suggest.php index a86b412b32..af16197a04 100644 --- a/mod/suggest.php +++ b/mod/suggest.php @@ -44,13 +44,15 @@ function suggest_init(&$a) { } } - + function suggest_content(&$a) { + require_once("mod/proxy.php"); + $o = ''; if(! local_user()) { notice( t('Permission denied.') . EOL); @@ -82,7 +84,7 @@ function suggest_content(&$a) { $o .= replace_macros($tpl,array( '$url' => zrl($rr['url']), '$name' => $rr['name'], - '$photo' => $rr['photo'], + '$photo' => proxy_url($rr['photo']), '$ignlnk' => $a->get_baseurl() . '/suggest?ignore=' . $rr['id'], '$ignid' => $rr['id'], '$conntxt' => t('Connect'), diff --git a/mod/viewcontacts.php b/mod/viewcontacts.php index 8e261e7115..3a6c48a3b2 100644 --- a/mod/viewcontacts.php +++ b/mod/viewcontacts.php @@ -13,6 +13,8 @@ function viewcontacts_init(&$a) { function viewcontacts_content(&$a) { + require_once("mod/proxy.php"); + if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) { notice( t('Public access denied.') . EOL); return; @@ -21,7 +23,7 @@ function viewcontacts_content(&$a) { if(((! count($a->profile)) || ($a->profile['hide-friends']))) { notice( t('Permission denied.') . EOL); return; - } + } $r = q("SELECT COUNT(*) as `total` FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 ", @@ -60,7 +62,7 @@ function viewcontacts_content(&$a) { $contacts[] = array( 'id' => $rr['id'], 'img_hover' => sprintf( t('Visit %s\'s profile [%s]'), $rr['name'], $rr['url']), - 'thumb' => $rr['thumb'], + 'thumb' => proxy_url($rr['thumb']), 'name' => substr($rr['name'],0,20), 'username' => $rr['name'], 'url' => $url, diff --git a/testargs.php b/testargs.php index 4c9bce4e93..a6042f8eb9 100644 --- a/testargs.php +++ b/testargs.php @@ -8,14 +8,14 @@ * During installation we need to check if register_argc_argv is * enabled for the command line PHP processor, because otherwise * deliveries will fail. So we will do a shell exec of php and - * execute this file with a command line argument, and see if it - * echoes the argument back to us. Otherwise notify the person + * execute this file with a command line argument, and see if it + * echoes the argument back to us. Otherwise notify the person * that their installation doesn't meet the system requirements. * - */ + */ - -if(($argc > 1) && isset($argv[1])) - echo $argv[1]; + +if(($_SERVER["argc"] > 1) && isset($_SERVER["argv"][1])) + echo $_SERVER["argv"][1]; else echo ''; diff --git a/update.php b/update.php index 10195c1baa..e80de3526a 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ /messages.po + Replace with the language you are working on - e.g. 'es', 'fr', 'de', etc. + 3. open view//messages.po with a text editor and fill in infos in "Last-Translator: FULL NAME " "Language-Team: LANGUAGE \n" diff --git a/util/messages.po b/util/messages.po index 1505a05ed7..8870aa2720 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 3.3\n" +"Project-Id-Version: 3.3.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-10-22 10:05+0200\n" +"POT-Creation-Date: 2015-01-22 17:30+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,753 +18,721 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" -#: ../../object/Item.php:94 -msgid "This entry was edited" +#: ../../mod/contacts.php:107 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/contacts.php:138 ../../mod/contacts.php:271 +msgid "Could not access contact record." msgstr "" -#: ../../object/Item.php:116 ../../mod/photos.php:1357 -#: ../../mod/content.php:620 -msgid "Private Message" +#: ../../mod/contacts.php:152 +msgid "Could not locate selected profile." msgstr "" -#: ../../object/Item.php:120 ../../mod/settings.php:673 -#: ../../mod/content.php:728 -msgid "Edit" +#: ../../mod/contacts.php:185 +msgid "Contact updated." msgstr "" -#: ../../object/Item.php:129 ../../mod/photos.php:1651 -#: ../../mod/content.php:437 ../../mod/content.php:740 -#: ../../include/conversation.php:613 -msgid "Select" +#: ../../mod/contacts.php:187 ../../mod/dfrn_request.php:576 +msgid "Failed to update contact record." msgstr "" -#: ../../object/Item.php:130 ../../mod/admin.php:970 ../../mod/photos.php:1652 -#: ../../mod/contacts.php:709 ../../mod/settings.php:674 -#: ../../mod/group.php:171 ../../mod/content.php:438 ../../mod/content.php:741 -#: ../../include/conversation.php:614 -msgid "Delete" +#: ../../mod/contacts.php:253 ../../mod/manage.php:96 +#: ../../mod/display.php:475 ../../mod/profile_photo.php:19 +#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180 +#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9 +#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19 +#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78 +#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:22 +#: ../../mod/notifications.php:66 ../../mod/message.php:38 +#: ../../mod/message.php:174 ../../mod/crepair.php:119 +#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9 +#: ../../mod/events.php:140 ../../mod/install.php:151 +#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 +#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 +#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102 +#: ../../mod/settings.php:596 ../../mod/settings.php:601 +#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114 +#: ../../mod/suggest.php:58 ../../mod/profiles.php:148 +#: ../../mod/profiles.php:584 ../../mod/editpost.php:10 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135 +#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134 +#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23 +#: ../../mod/attach.php:33 ../../include/items.php:4683 ../../index.php:369 +msgid "Permission denied." msgstr "" -#: ../../object/Item.php:133 ../../mod/content.php:763 -msgid "save to folder" +#: ../../mod/contacts.php:286 +msgid "Contact has been blocked" msgstr "" -#: ../../object/Item.php:195 ../../mod/content.php:753 -msgid "add star" +#: ../../mod/contacts.php:286 +msgid "Contact has been unblocked" msgstr "" -#: ../../object/Item.php:196 ../../mod/content.php:754 -msgid "remove star" +#: ../../mod/contacts.php:297 +msgid "Contact has been ignored" msgstr "" -#: ../../object/Item.php:197 ../../mod/content.php:755 -msgid "toggle star status" +#: ../../mod/contacts.php:297 +msgid "Contact has been unignored" msgstr "" -#: ../../object/Item.php:200 ../../mod/content.php:758 -msgid "starred" +#: ../../mod/contacts.php:309 +msgid "Contact has been archived" msgstr "" -#: ../../object/Item.php:208 -msgid "ignore thread" +#: ../../mod/contacts.php:309 +msgid "Contact has been unarchived" msgstr "" -#: ../../object/Item.php:209 -msgid "unignore thread" +#: ../../mod/contacts.php:334 ../../mod/contacts.php:710 +msgid "Do you really want to delete this contact?" msgstr "" -#: ../../object/Item.php:210 -msgid "toggle ignore status" +#: ../../mod/contacts.php:336 ../../mod/message.php:209 +#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 +#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 +#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 +#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 +#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 +#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 +#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 +#: ../../mod/register.php:233 ../../mod/suggest.php:29 +#: ../../mod/profiles.php:627 ../../mod/profiles.php:630 ../../mod/api.php:105 +#: ../../include/items.php:4528 +msgid "Yes" msgstr "" -#: ../../object/Item.php:213 -msgid "ignored" +#: ../../mod/contacts.php:339 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 +#: ../../mod/message.php:212 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615 +#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844 +#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 +#: ../../mod/photos.php:203 ../../mod/photos.php:292 +#: ../../include/conversation.php:1129 ../../include/items.php:4531 +msgid "Cancel" msgstr "" -#: ../../object/Item.php:220 ../../mod/content.php:759 -msgid "add tag" +#: ../../mod/contacts.php:351 +msgid "Contact has been removed." msgstr "" -#: ../../object/Item.php:231 ../../mod/photos.php:1540 -#: ../../mod/content.php:684 -msgid "I like this (toggle)" +#: ../../mod/contacts.php:389 +#, php-format +msgid "You are mutual friends with %s" msgstr "" -#: ../../object/Item.php:231 ../../mod/content.php:684 -msgid "like" +#: ../../mod/contacts.php:393 +#, php-format +msgid "You are sharing with %s" msgstr "" -#: ../../object/Item.php:232 ../../mod/photos.php:1541 -#: ../../mod/content.php:685 -msgid "I don't like this (toggle)" +#: ../../mod/contacts.php:398 +#, php-format +msgid "%s is sharing with you" msgstr "" -#: ../../object/Item.php:232 ../../mod/content.php:685 -msgid "dislike" +#: ../../mod/contacts.php:415 +msgid "Private communications are not available for this contact." msgstr "" -#: ../../object/Item.php:234 ../../mod/content.php:687 -msgid "Share this" +#: ../../mod/contacts.php:418 ../../mod/admin.php:546 +msgid "Never" msgstr "" -#: ../../object/Item.php:234 ../../mod/content.php:687 -msgid "share" +#: ../../mod/contacts.php:422 +msgid "(Update was successful)" msgstr "" -#: ../../object/Item.php:316 ../../include/conversation.php:666 -msgid "Categories:" +#: ../../mod/contacts.php:422 +msgid "(Update was not successful)" msgstr "" -#: ../../object/Item.php:317 ../../include/conversation.php:667 -msgid "Filed under:" +#: ../../mod/contacts.php:424 +msgid "Suggest friends" msgstr "" -#: ../../object/Item.php:326 ../../object/Item.php:327 -#: ../../mod/content.php:471 ../../mod/content.php:852 -#: ../../mod/content.php:853 ../../include/conversation.php:654 +#: ../../mod/contacts.php:428 #, php-format -msgid "View %s's profile @ %s" +msgid "Network type: %s" msgstr "" -#: ../../object/Item.php:328 ../../mod/content.php:854 -msgid "to" -msgstr "" +#: ../../mod/contacts.php:431 ../../include/contact_widgets.php:200 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "" +msgstr[1] "" -#: ../../object/Item.php:329 -msgid "via" +#: ../../mod/contacts.php:436 +msgid "View all contacts" msgstr "" -#: ../../object/Item.php:330 ../../mod/content.php:855 -msgid "Wall-to-Wall" +#: ../../mod/contacts.php:441 ../../mod/contacts.php:500 +#: ../../mod/contacts.php:713 ../../mod/admin.php:981 +msgid "Unblock" msgstr "" -#: ../../object/Item.php:331 ../../mod/content.php:856 -msgid "via Wall-To-Wall:" +#: ../../mod/contacts.php:441 ../../mod/contacts.php:500 +#: ../../mod/contacts.php:713 ../../mod/admin.php:980 +msgid "Block" msgstr "" -#: ../../object/Item.php:340 ../../mod/content.php:481 -#: ../../mod/content.php:864 ../../include/conversation.php:674 -#, php-format -msgid "%s from %s" +#: ../../mod/contacts.php:444 +msgid "Toggle Blocked status" msgstr "" -#: ../../object/Item.php:361 ../../object/Item.php:677 -#: ../../mod/photos.php:1562 ../../mod/photos.php:1606 -#: ../../mod/photos.php:1694 ../../mod/content.php:709 ../../boot.php:724 -msgid "Comment" +#: ../../mod/contacts.php:447 ../../mod/contacts.php:501 +#: ../../mod/contacts.php:714 +msgid "Unignore" msgstr "" -#: ../../object/Item.php:364 ../../mod/message.php:334 -#: ../../mod/message.php:565 ../../mod/editpost.php:124 -#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1543 -#: ../../mod/content.php:499 ../../mod/content.php:883 -#: ../../include/conversation.php:692 ../../include/conversation.php:1109 -msgid "Please wait" +#: ../../mod/contacts.php:447 ../../mod/contacts.php:501 +#: ../../mod/contacts.php:714 ../../mod/notifications.php:51 +#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 +msgid "Ignore" msgstr "" -#: ../../object/Item.php:387 ../../mod/content.php:603 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" - -#: ../../object/Item.php:389 ../../object/Item.php:402 -#: ../../mod/content.php:605 ../../include/text.php:1969 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "" +#: ../../mod/contacts.php:450 +msgid "Toggle Ignored status" +msgstr "" -#: ../../object/Item.php:390 ../../mod/content.php:606 ../../boot.php:725 -#: ../../include/contact_widgets.php:205 -msgid "show more" +#: ../../mod/contacts.php:454 ../../mod/contacts.php:715 +msgid "Unarchive" msgstr "" -#: ../../object/Item.php:675 ../../mod/photos.php:1560 -#: ../../mod/photos.php:1604 ../../mod/photos.php:1692 -#: ../../mod/content.php:707 -msgid "This is you" +#: ../../mod/contacts.php:454 ../../mod/contacts.php:715 +msgid "Archive" msgstr "" -#: ../../object/Item.php:678 ../../mod/fsuggest.php:107 -#: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/events.php:478 ../../mod/photos.php:1084 -#: ../../mod/photos.php:1205 ../../mod/photos.php:1512 -#: ../../mod/photos.php:1563 ../../mod/photos.php:1607 -#: ../../mod/photos.php:1695 ../../mod/contacts.php:470 -#: ../../mod/invite.php:140 ../../mod/profiles.php:645 -#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45 -#: ../../mod/install.php:248 ../../mod/install.php:286 -#: ../../mod/content.php:710 ../../mod/mood.php:137 ../../mod/crepair.php:181 -#: ../../view/theme/diabook/theme.php:633 -#: ../../view/theme/diabook/config.php:148 ../../view/theme/vier/config.php:52 -#: ../../view/theme/dispy/config.php:70 -#: ../../view/theme/duepuntozero/config.php:59 -#: ../../view/theme/quattro/config.php:64 -#: ../../view/theme/cleanzero/config.php:80 -msgid "Submit" +#: ../../mod/contacts.php:457 +msgid "Toggle Archive status" msgstr "" -#: ../../object/Item.php:679 ../../mod/content.php:711 -msgid "Bold" +#: ../../mod/contacts.php:460 +msgid "Repair" msgstr "" -#: ../../object/Item.php:680 ../../mod/content.php:712 -msgid "Italic" +#: ../../mod/contacts.php:463 +msgid "Advanced Contact Settings" msgstr "" -#: ../../object/Item.php:681 ../../mod/content.php:713 -msgid "Underline" +#: ../../mod/contacts.php:469 +msgid "Communications lost with this contact!" msgstr "" -#: ../../object/Item.php:682 ../../mod/content.php:714 -msgid "Quote" +#: ../../mod/contacts.php:472 +msgid "Contact Editor" msgstr "" -#: ../../object/Item.php:683 ../../mod/content.php:715 -msgid "Code" +#: ../../mod/contacts.php:474 ../../mod/manage.php:110 +#: ../../mod/fsuggest.php:107 ../../mod/message.php:335 +#: ../../mod/message.php:564 ../../mod/crepair.php:186 +#: ../../mod/events.php:478 ../../mod/content.php:710 +#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137 +#: ../../mod/profiles.php:652 ../../mod/localtime.php:45 +#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084 +#: ../../mod/photos.php:1203 ../../mod/photos.php:1514 +#: ../../mod/photos.php:1565 ../../mod/photos.php:1609 +#: ../../mod/photos.php:1697 ../../object/Item.php:678 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 +#: ../../view/theme/diabook/config.php:148 +#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53 +#: ../../view/theme/duepuntozero/config.php:59 +msgid "Submit" msgstr "" -#: ../../object/Item.php:684 ../../mod/content.php:716 -msgid "Image" +#: ../../mod/contacts.php:475 +msgid "Profile Visibility" msgstr "" -#: ../../object/Item.php:685 ../../mod/content.php:717 -msgid "Link" +#: ../../mod/contacts.php:476 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." msgstr "" -#: ../../object/Item.php:686 ../../mod/content.php:718 -msgid "Video" +#: ../../mod/contacts.php:477 +msgid "Contact Information / Notes" msgstr "" -#: ../../object/Item.php:687 ../../mod/editpost.php:145 -#: ../../mod/photos.php:1564 ../../mod/photos.php:1608 -#: ../../mod/photos.php:1696 ../../mod/content.php:719 -#: ../../include/conversation.php:1126 -msgid "Preview" +#: ../../mod/contacts.php:478 +msgid "Edit contact notes" msgstr "" -#: ../../index.php:205 ../../mod/apps.php:7 -msgid "You must be logged in to use addons. " +#: ../../mod/contacts.php:483 ../../mod/contacts.php:678 +#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 +#, php-format +msgid "Visit %s's profile [%s]" msgstr "" -#: ../../index.php:249 ../../mod/help.php:90 -msgid "Not Found" +#: ../../mod/contacts.php:484 +msgid "Block/Unblock contact" msgstr "" -#: ../../index.php:252 ../../mod/help.php:93 -msgid "Page not found." +#: ../../mod/contacts.php:485 +msgid "Ignore contact" msgstr "" -#: ../../index.php:361 ../../mod/profperm.php:19 ../../mod/group.php:72 -msgid "Permission denied" +#: ../../mod/contacts.php:486 +msgid "Repair URL settings" msgstr "" -#: ../../index.php:362 ../../mod/fsuggest.php:78 ../../mod/files.php:170 -#: ../../mod/notifications.php:66 ../../mod/message.php:38 -#: ../../mod/message.php:174 ../../mod/editpost.php:10 -#: ../../mod/dfrn_confirm.php:55 ../../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:134 ../../mod/photos.php:1050 -#: ../../mod/register.php:42 ../../mod/attach.php:33 -#: ../../mod/contacts.php:249 ../../mod/follow.php:9 ../../mod/uimport.php:23 -#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101 -#: ../../mod/settings.php:102 ../../mod/settings.php:593 -#: ../../mod/settings.php:598 ../../mod/display.php:455 -#: ../../mod/profiles.php:148 ../../mod/profiles.php:577 -#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56 -#: ../../mod/manage.php:96 ../../mod/delegate.php:12 -#: ../../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:110 -#: ../../mod/item.php:149 ../../mod/item.php:165 ../../mod/mood.php:114 -#: ../../mod/network.php:4 ../../mod/crepair.php:119 -#: ../../include/items.php:4575 -msgid "Permission denied." +#: ../../mod/contacts.php:487 +msgid "View conversations" msgstr "" -#: ../../index.php:421 -msgid "toggle mobile" +#: ../../mod/contacts.php:489 +msgid "Delete contact" msgstr "" -#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41 -#: ../../mod/update_community.php:18 ../../mod/update_network.php:25 -#: ../../mod/update_display.php:22 -msgid "[Embedded content - reload page to view]" +#: ../../mod/contacts.php:493 +msgid "Last update:" msgstr "" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -#: ../../mod/dfrn_confirm.php:120 ../../mod/crepair.php:133 -msgid "Contact not found." +#: ../../mod/contacts.php:495 +msgid "Update public posts" msgstr "" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." +#: ../../mod/contacts.php:497 ../../mod/admin.php:1475 +msgid "Update now" msgstr "" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" +#: ../../mod/contacts.php:504 +msgid "Currently blocked" msgstr "" -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" +#: ../../mod/contacts.php:505 +msgid "Currently ignored" msgstr "" -#: ../../mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." +#: ../../mod/contacts.php:506 +msgid "Currently archived" msgstr "" -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." +#: ../../mod/contacts.php:507 ../../mod/notifications.php:157 +#: ../../mod/notifications.php:204 +msgid "Hide this contact from others" msgstr "" -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." +#: ../../mod/contacts.php:507 +msgid "" +"Replies/likes to your public posts may still be visible" msgstr "" -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." +#: ../../mod/contacts.php:508 +msgid "Notification for new posts" msgstr "" -#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "" -msgstr[1] "" +#: ../../mod/contacts.php:508 +msgid "Send a notification of every new post of this contact" +msgstr "" -#: ../../mod/dfrn_request.php:172 -msgid "Introduction complete." +#: ../../mod/contacts.php:509 +msgid "Fetch further information for feeds" msgstr "" -#: ../../mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." +#: ../../mod/contacts.php:510 +msgid "Disabled" msgstr "" -#: ../../mod/dfrn_request.php:242 -msgid "Profile unavailable." +#: ../../mod/contacts.php:510 +msgid "Fetch information" msgstr "" -#: ../../mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." +#: ../../mod/contacts.php:510 +msgid "Fetch information and keywords" msgstr "" -#: ../../mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." +#: ../../mod/contacts.php:512 +msgid "Blacklisted keywords" msgstr "" -#: ../../mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." +#: ../../mod/contacts.php:512 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" msgstr "" -#: ../../mod/dfrn_request.php:331 -msgid "Invalid locator" +#: ../../mod/contacts.php:563 +msgid "Suggestions" msgstr "" -#: ../../mod/dfrn_request.php:340 -msgid "Invalid email address." +#: ../../mod/contacts.php:566 +msgid "Suggest potential friends" msgstr "" -#: ../../mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." +#: ../../mod/contacts.php:569 ../../mod/group.php:194 +msgid "All Contacts" msgstr "" -#: ../../mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." +#: ../../mod/contacts.php:572 +msgid "Show all contacts" msgstr "" -#: ../../mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." +#: ../../mod/contacts.php:575 +msgid "Unblocked" msgstr "" -#: ../../mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." +#: ../../mod/contacts.php:578 +msgid "Only show unblocked contacts" msgstr "" -#: ../../mod/dfrn_request.php:501 -msgid "Invalid profile URL." +#: ../../mod/contacts.php:582 +msgid "Blocked" msgstr "" -#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27 -msgid "Disallowed profile URL." +#: ../../mod/contacts.php:585 +msgid "Only show blocked contacts" msgstr "" -#: ../../mod/dfrn_request.php:576 ../../mod/contacts.php:183 -msgid "Failed to update contact record." +#: ../../mod/contacts.php:589 +msgid "Ignored" msgstr "" -#: ../../mod/dfrn_request.php:597 -msgid "Your introduction has been sent." +#: ../../mod/contacts.php:592 +msgid "Only show ignored contacts" msgstr "" -#: ../../mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." +#: ../../mod/contacts.php:596 +msgid "Archived" msgstr "" -#: ../../mod/dfrn_request.php:664 -msgid "" -"Incorrect identity currently logged in. Please login to this profile." +#: ../../mod/contacts.php:599 +msgid "Only show archived contacts" msgstr "" -#: ../../mod/dfrn_request.php:675 -msgid "Hide this contact" +#: ../../mod/contacts.php:603 +msgid "Hidden" msgstr "" -#: ../../mod/dfrn_request.php:678 -#, php-format -msgid "Welcome home %s." +#: ../../mod/contacts.php:606 +msgid "Only show hidden contacts" msgstr "" -#: ../../mod/dfrn_request.php:679 -#, php-format -msgid "Please confirm your introduction/connection request to %s." +#: ../../mod/contacts.php:654 +msgid "Mutual Friendship" msgstr "" -#: ../../mod/dfrn_request.php:680 -msgid "Confirm" +#: ../../mod/contacts.php:658 +msgid "is a fan of yours" msgstr "" -#: ../../mod/dfrn_request.php:721 ../../mod/dfrn_confirm.php:752 -#: ../../include/items.php:3881 -msgid "[Name Withheld]" +#: ../../mod/contacts.php:662 +msgid "you are a fan of" msgstr "" -#: ../../mod/dfrn_request.php:766 ../../mod/photos.php:920 -#: ../../mod/videos.php:115 ../../mod/search.php:89 ../../mod/display.php:180 -#: ../../mod/community.php:18 ../../mod/viewcontacts.php:17 -#: ../../mod/directory.php:33 -msgid "Public access denied." +#: ../../mod/contacts.php:679 ../../mod/nogroup.php:41 +msgid "Edit contact" msgstr "" -#: ../../mod/dfrn_request.php:808 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" +#: ../../mod/contacts.php:701 ../../include/nav.php:175 +#: ../../view/theme/diabook/theme.php:125 +msgid "Contacts" 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." +#: ../../mod/contacts.php:705 +msgid "Search your contacts" msgstr "" -#: ../../mod/dfrn_request.php:831 -msgid "Friend/Connection Request" +#: ../../mod/contacts.php:706 ../../mod/directory.php:61 +msgid "Finding: " msgstr "" -#: ../../mod/dfrn_request.php:832 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" +#: ../../mod/contacts.php:707 ../../mod/directory.php:63 +#: ../../include/contact_widgets.php:34 +msgid "Find" msgstr "" -#: ../../mod/dfrn_request.php:833 -msgid "Please answer the following:" +#: ../../mod/contacts.php:712 ../../mod/settings.php:132 +#: ../../mod/settings.php:640 +msgid "Update" msgstr "" -#: ../../mod/dfrn_request.php:834 -#, php-format -msgid "Does %s know you?" +#: ../../mod/contacts.php:716 ../../mod/group.php:171 ../../mod/admin.php:979 +#: ../../mod/content.php:438 ../../mod/content.php:741 +#: ../../mod/settings.php:677 ../../mod/photos.php:1654 +#: ../../object/Item.php:130 ../../include/conversation.php:614 +msgid "Delete" msgstr "" -#: ../../mod/dfrn_request.php:834 ../../mod/api.php:106 -#: ../../mod/register.php:234 ../../mod/settings.php:1007 -#: ../../mod/settings.php:1013 ../../mod/settings.php:1021 -#: ../../mod/settings.php:1025 ../../mod/settings.php:1030 -#: ../../mod/settings.php:1036 ../../mod/settings.php:1042 -#: ../../mod/settings.php:1048 ../../mod/settings.php:1078 -#: ../../mod/settings.php:1079 ../../mod/settings.php:1080 -#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 -#: ../../mod/profiles.php:620 ../../mod/profiles.php:624 -msgid "No" +#: ../../mod/hcard.php:10 +msgid "No profile" msgstr "" -#: ../../mod/dfrn_request.php:834 ../../mod/message.php:209 -#: ../../mod/api.php:105 ../../mod/register.php:233 ../../mod/contacts.php:332 -#: ../../mod/settings.php:1007 ../../mod/settings.php:1013 -#: ../../mod/settings.php:1021 ../../mod/settings.php:1025 -#: ../../mod/settings.php:1030 ../../mod/settings.php:1036 -#: ../../mod/settings.php:1042 ../../mod/settings.php:1048 -#: ../../mod/settings.php:1078 ../../mod/settings.php:1079 -#: ../../mod/settings.php:1080 ../../mod/settings.php:1081 -#: ../../mod/settings.php:1082 ../../mod/profiles.php:620 -#: ../../mod/profiles.php:623 ../../mod/suggest.php:29 -#: ../../include/items.php:4420 -msgid "Yes" +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" msgstr "" -#: ../../mod/dfrn_request.php:838 -msgid "Add a personal note:" +#: ../../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 "" -#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 -msgid "Friendica" +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " msgstr "" -#: ../../mod/dfrn_request.php:841 -msgid "StatusNet/Federated Social Web" +#: ../../mod/oexchange.php:25 +msgid "Post successful." msgstr "" -#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:733 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" +#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368 +msgid "Permission denied" msgstr "" -#: ../../mod/dfrn_request.php:843 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search " -"bar." +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." msgstr "" -#: ../../mod/dfrn_request.php:844 -msgid "Your Identity Address:" +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" msgstr "" -#: ../../mod/dfrn_request.php:847 -msgid "Submit Request" +#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2114 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 +#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 +msgid "Profile" msgstr "" -#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212 -#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../mod/photos.php:203 -#: ../../mod/photos.php:292 ../../mod/contacts.php:335 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 ../../mod/settings.php:612 -#: ../../mod/settings.php:638 ../../mod/suggest.php:32 -#: ../../include/items.php:4423 ../../include/conversation.php:1129 -msgid "Cancel" +#: ../../mod/profperm.php:105 ../../mod/group.php:224 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../mod/files.php:156 ../../mod/videos.php:301 -#: ../../include/text.php:1402 -msgid "View Video" +#: ../../mod/profperm.php:114 +msgid "Visible To" msgstr "" -#: ../../mod/profile.php:21 ../../boot.php:1432 -msgid "Requested profile is not available." +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" msgstr "" -#: ../../mod/profile.php:155 ../../mod/display.php:288 -msgid "Access to this profile has been restricted." +#: ../../mod/display.php:70 ../../mod/display.php:260 +#: ../../mod/display.php:479 ../../mod/viewsrc.php:15 ../../mod/admin.php:166 +#: ../../mod/admin.php:1024 ../../mod/admin.php:1237 ../../mod/notice.php:15 +#: ../../include/items.php:4487 +msgid "Item not found." msgstr "" -#: ../../mod/profile.php:180 -msgid "Tips for New Members" +#: ../../mod/display.php:200 ../../mod/videos.php:115 +#: ../../mod/viewcontacts.php:17 ../../mod/community.php:18 +#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89 +#: ../../mod/directory.php:33 ../../mod/photos.php:920 +msgid "Public access denied." msgstr "" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." +#: ../../mod/display.php:308 ../../mod/profile.php:155 +msgid "Access to this profile has been restricted." msgstr "" -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" +#: ../../mod/display.php:472 +msgid "Item has been removed." msgstr "" -#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:210 ../../mod/contacts.php:443 -#: ../../mod/contacts.php:497 ../../mod/contacts.php:707 -msgid "Ignore" +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" msgstr "" -#: ../../mod/notifications.php:78 -msgid "System" +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" msgstr "" -#: ../../mod/notifications.php:83 ../../include/nav.php:143 -msgid "Network" +#: ../../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/notifications.php:88 ../../mod/network.php:365 -msgid "Personal" +#: ../../mod/newmember.php:14 +msgid "Getting Started" msgstr "" -#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123 -#: ../../include/nav.php:105 ../../include/nav.php:146 -msgid "Home" +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" msgstr "" -#: ../../mod/notifications.php:98 ../../include/nav.php:152 -msgid "Introductions" +#: ../../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/notifications.php:122 -msgid "Show Ignored Requests" +#: ../../mod/newmember.php:22 ../../mod/admin.php:1076 +#: ../../mod/admin.php:1297 ../../mod/settings.php:85 +#: ../../include/nav.php:170 ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 +msgid "Settings" msgstr "" -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" msgstr "" -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " +#: ../../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/notifications.php:150 -msgid "Friend Suggestion" +#: ../../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 "" -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 +#: ../../mod/profiles.php:665 +msgid "Upload Profile Photo" msgstr "" -#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 -#: ../../mod/contacts.php:503 -msgid "Hide this contact from others" +#: ../../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 "" -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" msgstr "" -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" +#: ../../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 "" -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 -#: ../../mod/admin.php:968 -msgid "Approve" +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" msgstr "" -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " +#: ../../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 "" -#: ../../mod/notifications.php:181 -msgid "yes" +#: ../../mod/newmember.php:44 +msgid "Connecting" msgstr "" -#: ../../mod/notifications.php:181 -msgid "no" +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" msgstr "" -#: ../../mod/notifications.php:188 -msgid "Approve as: " +#: ../../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 "" -#: ../../mod/notifications.php:189 -msgid "Friend" +#: ../../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/notifications.php:190 -msgid "Sharer" +#: ../../mod/newmember.php:56 +msgid "Importing Emails" msgstr "" -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" +#: ../../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/notifications.php:196 -msgid "Friend/Connect Request" +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" msgstr "" -#: ../../mod/notifications.php:196 -msgid "New Follower" +#: ../../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/notifications.php:217 -msgid "No introductions." +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" msgstr "" -#: ../../mod/notifications.php:220 ../../include/nav.php:153 -msgid "Notifications" +#: ../../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 "" -#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 -#: ../../mod/notifications.php:478 -#, php-format -msgid "%s liked %s's post" +#: ../../mod/newmember.php:62 +msgid "Finding New People" msgstr "" -#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 -#: ../../mod/notifications.php:488 -#, php-format -msgid "%s disliked %s's post" +#: ../../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/notifications.php:283 ../../mod/notifications.php:412 -#: ../../mod/notifications.php:503 -#, php-format -msgid "%s is now friends with %s" -msgstr "" - -#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 -#, php-format -msgid "%s created a new post" -msgstr "" - -#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 -#: ../../mod/notifications.php:513 -#, php-format -msgid "%s commented on %s's post" -msgstr "" - -#: ../../mod/notifications.php:306 -msgid "No more network notifications." -msgstr "" - -#: ../../mod/notifications.php:310 -msgid "Network Notifications" -msgstr "" - -#: ../../mod/notifications.php:336 ../../mod/notify.php:75 -msgid "No more system notifications." -msgstr "" - -#: ../../mod/notifications.php:340 ../../mod/notify.php:79 -msgid "System Notifications" -msgstr "" - -#: ../../mod/notifications.php:435 -msgid "No more personal notifications." +#: ../../mod/newmember.php:66 ../../include/group.php:270 +msgid "Groups" msgstr "" -#: ../../mod/notifications.php:439 -msgid "Personal Notifications" +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" msgstr "" -#: ../../mod/notifications.php:520 -msgid "No more home notifications." +#: ../../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 "" -#: ../../mod/notifications.php:524 -msgid "Home Notifications" +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" msgstr "" -#: ../../mod/like.php:149 ../../mod/tagger.php:62 ../../mod/subthread.php:87 -#: ../../view/theme/diabook/theme.php:471 ../../include/text.php:1965 -#: ../../include/diaspora.php:1919 ../../include/conversation.php:126 -#: ../../include/conversation.php:254 -msgid "photo" +#: ../../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/like.php:149 ../../mod/like.php:319 ../../mod/tagger.php:62 -#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1919 -#: ../../include/conversation.php:121 ../../include/conversation.php:130 -#: ../../include/conversation.php:249 ../../include/conversation.php:258 -msgid "status" +#: ../../mod/newmember.php:78 +msgid "Getting Help" msgstr "" -#: ../../mod/like.php:166 ../../view/theme/diabook/theme.php:480 -#: ../../include/diaspora.php:1935 ../../include/conversation.php:137 -#, php-format -msgid "%1$s likes %2$s's %3$s" +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" msgstr "" -#: ../../mod/like.php:168 ../../include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program " +"features and resources." msgstr "" #: ../../mod/openid.php:24 @@ -781,2758 +749,2818 @@ msgstr "" msgid "Login failed." msgstr "" -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." msgstr "" -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" +#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81 +#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204 +#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305 +#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../include/user.php:335 +#: ../../include/user.php:342 ../../include/user.php:349 +#: ../../view/theme/diabook/theme.php:500 +msgid "Profile Photos" msgstr "" -#: ../../mod/babel.php:31 -msgid "Source input: " +#: ../../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 "" -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " +#: ../../mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." msgstr "" -#: ../../mod/babel.php:39 -msgid "bb2html: " +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" msgstr "" -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " +#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122 +#, php-format +msgid "Image exceeds size limit of %d" msgstr "" -#: ../../mod/babel.php:47 -msgid "bb2md: " +#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144 +#: ../../mod/photos.php:807 +msgid "Unable to process image." msgstr "" -#: ../../mod/babel.php:51 -msgid "bb2md2html: " +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" msgstr "" -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" msgstr "" -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " +#: ../../mod/profile_photo.php:245 +msgid "Upload" msgstr "" -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " +#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062 +msgid "or" msgstr "" -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " +#: ../../mod/profile_photo.php:248 +msgid "skip this step" msgstr "" -#: ../../mod/admin.php:57 -msgid "Theme settings updated." +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" msgstr "" -#: ../../mod/admin.php:104 ../../mod/admin.php:589 -msgid "Site" +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" msgstr "" -#: ../../mod/admin.php:105 ../../mod/admin.php:961 ../../mod/admin.php:976 -msgid "Users" +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: ../../mod/admin.php:106 ../../mod/admin.php:1065 ../../mod/admin.php:1118 -#: ../../mod/settings.php:57 -msgid "Plugins" +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" msgstr "" -#: ../../mod/admin.php:107 ../../mod/admin.php:1286 ../../mod/admin.php:1320 -msgid "Themes" +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." msgstr "" -#: ../../mod/admin.php:108 -msgid "DB updates" +#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172 +#: ../../mod/photos.php:834 +msgid "Image upload failed." msgstr "" -#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1407 -msgid "Logs" +#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 +#: ../../include/conversation.php:126 ../../include/conversation.php:254 +#: ../../include/text.php:1965 ../../include/diaspora.php:1919 +#: ../../view/theme/diabook/theme.php:471 +msgid "photo" msgstr "" -#: ../../mod/admin.php:128 ../../include/nav.php:182 -msgid "Admin" +#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 +#: ../../mod/like.php:319 ../../include/conversation.php:121 +#: ../../include/conversation.php:130 ../../include/conversation.php:249 +#: ../../include/conversation.php:258 ../../include/diaspora.php:1919 +#: ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 +msgid "status" msgstr "" -#: ../../mod/admin.php:129 -msgid "Plugin Features" +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" msgstr "" -#: ../../mod/admin.php:131 -msgid "User registrations waiting for confirmation" +#: ../../mod/tagrm.php:41 +msgid "Tag removed" msgstr "" -#: ../../mod/admin.php:166 ../../mod/admin.php:1015 ../../mod/admin.php:1228 -#: ../../mod/notice.php:15 ../../mod/display.php:70 ../../mod/display.php:240 -#: ../../mod/display.php:459 ../../mod/viewsrc.php:15 -#: ../../include/items.php:4379 -msgid "Item not found." +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" msgstr "" -#: ../../mod/admin.php:190 ../../mod/admin.php:915 -msgid "Normal Account" +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " msgstr "" -#: ../../mod/admin.php:191 ../../mod/admin.php:916 -msgid "Soapbox Account" +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139 +msgid "Remove" msgstr "" -#: ../../mod/admin.php:192 ../../mod/admin.php:917 -msgid "Community/Celebrity Account" +#: ../../mod/filer.php:30 ../../include/conversation.php:1006 +#: ../../include/conversation.php:1024 +msgid "Save to Folder:" msgstr "" -#: ../../mod/admin.php:193 ../../mod/admin.php:918 -msgid "Automatic Friend Account" +#: ../../mod/filer.php:30 +msgid "- select -" msgstr "" -#: ../../mod/admin.php:194 -msgid "Blog Account" +#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63 +#: ../../include/text.php:955 +msgid "Save" msgstr "" -#: ../../mod/admin.php:195 -msgid "Private Forum" +#: ../../mod/follow.php:27 +msgid "Contact added" msgstr "" -#: ../../mod/admin.php:214 -msgid "Message queues" +#: ../../mod/item.php:113 +msgid "Unable to locate original post." msgstr "" -#: ../../mod/admin.php:219 ../../mod/admin.php:588 ../../mod/admin.php:960 -#: ../../mod/admin.php:1064 ../../mod/admin.php:1117 ../../mod/admin.php:1285 -#: ../../mod/admin.php:1319 ../../mod/admin.php:1406 -msgid "Administration" +#: ../../mod/item.php:345 +msgid "Empty post discarded." msgstr "" -#: ../../mod/admin.php:220 -msgid "Summary" +#: ../../mod/item.php:484 ../../mod/wall_upload.php:169 +#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 +#: ../../include/Photo.php:916 ../../include/Photo.php:931 +#: ../../include/Photo.php:938 ../../include/Photo.php:960 +#: ../../include/message.php:144 +msgid "Wall Photos" msgstr "" -#: ../../mod/admin.php:222 -msgid "Registered users" +#: ../../mod/item.php:938 +msgid "System error. Post not saved." msgstr "" -#: ../../mod/admin.php:224 -msgid "Pending registrations" +#: ../../mod/item.php:964 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social network." msgstr "" -#: ../../mod/admin.php:225 -msgid "Version" +#: ../../mod/item.php:966 +#, php-format +msgid "You may visit them online at %s" msgstr "" -#: ../../mod/admin.php:229 -msgid "Active plugins" +#: ../../mod/item.php:967 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." msgstr "" -#: ../../mod/admin.php:252 -msgid "Can not parse base url. Must have at least ://" +#: ../../mod/item.php:971 +#, php-format +msgid "%s posted an update." msgstr "" -#: ../../mod/admin.php:496 -msgid "Site settings updated." +#: ../../mod/group.php:29 +msgid "Group created." msgstr "" -#: ../../mod/admin.php:525 ../../mod/settings.php:825 -msgid "No special theme for mobile devices" +#: ../../mod/group.php:35 +msgid "Could not create group." msgstr "" -#: ../../mod/admin.php:542 ../../mod/contacts.php:414 -msgid "Never" +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." msgstr "" -#: ../../mod/admin.php:543 -msgid "At post arrival" +#: ../../mod/group.php:60 +msgid "Group name changed." msgstr "" -#: ../../mod/admin.php:544 ../../include/contact_selectors.php:56 -msgid "Frequently" +#: ../../mod/group.php:87 +msgid "Save Group" msgstr "" -#: ../../mod/admin.php:545 ../../include/contact_selectors.php:57 -msgid "Hourly" +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." msgstr "" -#: ../../mod/admin.php:546 ../../include/contact_selectors.php:58 -msgid "Twice daily" +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " msgstr "" -#: ../../mod/admin.php:547 ../../include/contact_selectors.php:59 -msgid "Daily" +#: ../../mod/group.php:113 +msgid "Group removed." msgstr "" -#: ../../mod/admin.php:552 -msgid "Multi user instance" +#: ../../mod/group.php:115 +msgid "Unable to remove group." msgstr "" -#: ../../mod/admin.php:575 -msgid "Closed" +#: ../../mod/group.php:179 +msgid "Group Editor" msgstr "" -#: ../../mod/admin.php:576 -msgid "Requires approval" +#: ../../mod/group.php:192 +msgid "Members" msgstr "" -#: ../../mod/admin.php:577 -msgid "Open" +#: ../../mod/apps.php:7 ../../index.php:212 +msgid "You must be logged in to use addons. " msgstr "" -#: ../../mod/admin.php:581 -msgid "No SSL policy, links will track page SSL state" +#: ../../mod/apps.php:11 +msgid "Applications" msgstr "" -#: ../../mod/admin.php:582 -msgid "Force all links to use SSL" +#: ../../mod/apps.php:14 +msgid "No installed applications." msgstr "" -#: ../../mod/admin.php:583 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" +#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18 +#: ../../mod/profiles.php:133 ../../mod/profiles.php:162 +#: ../../mod/profiles.php:596 +msgid "Profile not found." msgstr "" -#: ../../mod/admin.php:590 ../../mod/admin.php:1119 ../../mod/admin.php:1321 -#: ../../mod/admin.php:1408 ../../mod/settings.php:611 -#: ../../mod/settings.php:721 ../../mod/settings.php:795 -#: ../../mod/settings.php:877 ../../mod/settings.php:1110 -msgid "Save Settings" +#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20 +#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133 +msgid "Contact not found." msgstr "" -#: ../../mod/admin.php:591 ../../mod/register.php:255 -msgid "Registration" -msgstr "" - -#: ../../mod/admin.php:592 -msgid "File upload" +#: ../../mod/dfrn_confirm.php:121 +msgid "" +"This may occasionally happen if contact was requested by both persons and it " +"has already been approved." msgstr "" -#: ../../mod/admin.php:593 -msgid "Policies" +#: ../../mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." msgstr "" -#: ../../mod/admin.php:594 -msgid "Advanced" +#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " msgstr "" -#: ../../mod/admin.php:595 -msgid "Performance" +#: ../../mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." msgstr "" -#: ../../mod/admin.php:596 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." +#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 +#: ../../mod/dfrn_confirm.php:286 +msgid "Remote site reported: " msgstr "" -#: ../../mod/admin.php:599 -msgid "Site name" +#: ../../mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." msgstr "" -#: ../../mod/admin.php:600 -msgid "Banner/Logo" +#: ../../mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." msgstr "" -#: ../../mod/admin.php:601 -msgid "Additional Info" +#: ../../mod/dfrn_confirm.php:429 +msgid "Unable to set contact photo." msgstr "" -#: ../../mod/admin.php:601 -msgid "" -"For public servers: you can add additional information here that will be " -"listed at dir.friendica.com/siteinfo." +#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172 +#: ../../include/diaspora.php:620 +#, php-format +msgid "%1$s is now friends with %2$s" msgstr "" -#: ../../mod/admin.php:602 -msgid "System language" +#: ../../mod/dfrn_confirm.php:571 +#, php-format +msgid "No user record found for '%s' " msgstr "" -#: ../../mod/admin.php:603 -msgid "System theme" +#: ../../mod/dfrn_confirm.php:581 +msgid "Our site encryption key is apparently messed up." msgstr "" -#: ../../mod/admin.php:603 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" +#: ../../mod/dfrn_confirm.php:592 +msgid "Empty site URL was provided or URL could not be decrypted by us." msgstr "" -#: ../../mod/admin.php:604 -msgid "Mobile system theme" +#: ../../mod/dfrn_confirm.php:613 +msgid "Contact record was not found for you on our site." msgstr "" -#: ../../mod/admin.php:604 -msgid "Theme for mobile devices" +#: ../../mod/dfrn_confirm.php:627 +#, php-format +msgid "Site public key not available in contact record for URL %s." msgstr "" -#: ../../mod/admin.php:605 -msgid "SSL link policy" +#: ../../mod/dfrn_confirm.php:647 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." msgstr "" -#: ../../mod/admin.php:605 -msgid "Determines whether generated links should be forced to use SSL" +#: ../../mod/dfrn_confirm.php:658 +msgid "Unable to set your contact credentials on our system." msgstr "" -#: ../../mod/admin.php:606 -msgid "Old style 'Share'" +#: ../../mod/dfrn_confirm.php:725 +msgid "Unable to update your contact profile details on our system" msgstr "" -#: ../../mod/admin.php:606 -msgid "Deactivates the bbcode element 'share' for repeating items." +#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717 +#: ../../include/items.php:3979 +msgid "[Name Withheld]" msgstr "" -#: ../../mod/admin.php:607 -msgid "Hide help entry from navigation menu" +#: ../../mod/dfrn_confirm.php:797 +#, php-format +msgid "%1$s has joined %2$s" msgstr "" -#: ../../mod/admin.php:607 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." +#: ../../mod/profile.php:21 ../../boot.php:1453 +msgid "Requested profile is not available." msgstr "" -#: ../../mod/admin.php:608 -msgid "Single user instance" +#: ../../mod/profile.php:180 +msgid "Tips for New Members" msgstr "" -#: ../../mod/admin.php:608 -msgid "Make this instance multi-user or single-user for the named user" +#: ../../mod/videos.php:125 +msgid "No videos selected" msgstr "" -#: ../../mod/admin.php:609 -msgid "Maximum image size" +#: ../../mod/videos.php:226 ../../mod/photos.php:1031 +msgid "Access to this item is restricted." msgstr "" -#: ../../mod/admin.php:609 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." +#: ../../mod/videos.php:301 ../../include/text.php:1402 +msgid "View Video" msgstr "" -#: ../../mod/admin.php:610 -msgid "Maximum image length" +#: ../../mod/videos.php:308 ../../mod/photos.php:1808 +msgid "View Album" msgstr "" -#: ../../mod/admin.php:610 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." +#: ../../mod/videos.php:317 +msgid "Recent Videos" msgstr "" -#: ../../mod/admin.php:611 -msgid "JPEG image quality" +#: ../../mod/videos.php:319 +msgid "Upload New Videos" msgstr "" -#: ../../mod/admin.php:611 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." +#: ../../mod/tagger.php:95 ../../include/conversation.php:266 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../mod/admin.php:613 -msgid "Register policy" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." msgstr "" -#: ../../mod/admin.php:614 -msgid "Maximum Daily Registrations" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" msgstr "" -#: ../../mod/admin.php:614 -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." +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" msgstr "" -#: ../../mod/admin.php:615 -msgid "Register text" +#: ../../mod/lostpass.php:19 +msgid "No valid account found." msgstr "" -#: ../../mod/admin.php:615 -msgid "Will be displayed prominently on the registration page." +#: ../../mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." msgstr "" -#: ../../mod/admin.php:616 -msgid "Accounts abandoned after x days" +#: ../../mod/lostpass.php:42 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the " +"verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." msgstr "" -#: ../../mod/admin.php:616 +#: ../../mod/lostpass.php:53 +#, php-format msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after " +"logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" msgstr "" -#: ../../mod/admin.php:617 -msgid "Allowed friend domains" +#: ../../mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" msgstr "" -#: ../../mod/admin.php:617 +#: ../../mod/lostpass.php:92 msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: ../../mod/admin.php:618 -msgid "Allowed email domains" +#: ../../mod/lostpass.php:109 ../../boot.php:1275 +msgid "Password Reset" msgstr "" -#: ../../mod/admin.php:618 -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" +#: ../../mod/lostpass.php:110 +msgid "Your password has been reset as requested." msgstr "" -#: ../../mod/admin.php:619 -msgid "Block public" +#: ../../mod/lostpass.php:111 +msgid "Your new password is" msgstr "" -#: ../../mod/admin.php:619 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." +#: ../../mod/lostpass.php:112 +msgid "Save or copy your new password - and then" msgstr "" -#: ../../mod/admin.php:620 -msgid "Force publish" +#: ../../mod/lostpass.php:113 +msgid "click here to login" msgstr "" -#: ../../mod/admin.php:620 +#: ../../mod/lostpass.php:114 msgid "" -"Check to force all profiles on this site to be listed in the site directory." +"Your password may be changed from the Settings page after " +"successful login." msgstr "" -#: ../../mod/admin.php:621 -msgid "Global directory update URL" +#: ../../mod/lostpass.php:125 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately " +"to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" msgstr "" -#: ../../mod/admin.php:621 +#: ../../mod/lostpass.php:131 +#, php-format msgid "" -"URL to update the global directory. If this is not set, the global directory " -"is completely unavailable to the application." +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after " +"logging in.\n" +"\t\t\t" msgstr "" -#: ../../mod/admin.php:622 -msgid "Allow threaded items" +#: ../../mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" msgstr "" -#: ../../mod/admin.php:622 -msgid "Allow infinite level threading for items on this site." +#: ../../mod/lostpass.php:159 +msgid "Forgot your Password?" msgstr "" -#: ../../mod/admin.php:623 -msgid "Private posts by default for new users" +#: ../../mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." msgstr "" -#: ../../mod/admin.php:623 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." +#: ../../mod/lostpass.php:161 +msgid "Nickname or Email: " msgstr "" -#: ../../mod/admin.php:624 -msgid "Don't include post content in email notifications" +#: ../../mod/lostpass.php:162 +msgid "Reset" msgstr "" -#: ../../mod/admin.php:624 -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." +#: ../../mod/like.php:166 ../../include/conversation.php:137 +#: ../../include/diaspora.php:1935 ../../view/theme/diabook/theme.php:480 +#, php-format +msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../mod/admin.php:625 -msgid "Disallow public access to addons listed in the apps menu." +#: ../../mod/like.php:168 ../../include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../mod/admin.php:625 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." +#: ../../mod/ping.php:240 +msgid "{0} wants to be your friend" msgstr "" -#: ../../mod/admin.php:626 -msgid "Don't embed private images in posts" +#: ../../mod/ping.php:245 +msgid "{0} sent you a message" msgstr "" -#: ../../mod/admin.php:626 -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." +#: ../../mod/ping.php:250 +msgid "{0} requested registration" msgstr "" -#: ../../mod/admin.php:627 -msgid "Allow Users to set remote_self" +#: ../../mod/ping.php:256 +#, php-format +msgid "{0} commented %s's post" msgstr "" -#: ../../mod/admin.php:627 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." +#: ../../mod/ping.php:261 +#, php-format +msgid "{0} liked %s's post" msgstr "" -#: ../../mod/admin.php:628 -msgid "Block multiple registrations" +#: ../../mod/ping.php:266 +#, php-format +msgid "{0} disliked %s's post" msgstr "" -#: ../../mod/admin.php:628 -msgid "Disallow users to register additional accounts for use as pages." +#: ../../mod/ping.php:271 +#, php-format +msgid "{0} is now friends with %s" msgstr "" -#: ../../mod/admin.php:629 -msgid "OpenID support" +#: ../../mod/ping.php:276 +msgid "{0} posted" msgstr "" -#: ../../mod/admin.php:629 -msgid "OpenID support for registration and logins." +#: ../../mod/ping.php:281 +#, php-format +msgid "{0} tagged %s's post with #%s" msgstr "" -#: ../../mod/admin.php:630 -msgid "Fullname check" +#: ../../mod/ping.php:287 +msgid "{0} mentioned you in a post" msgstr "" -#: ../../mod/admin.php:630 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." msgstr "" -#: ../../mod/admin.php:631 -msgid "UTF-8 Regular expressions" +#: ../../mod/viewcontacts.php:76 ../../include/text.php:875 +msgid "View Contacts" msgstr "" -#: ../../mod/admin.php:631 -msgid "Use PHP UTF8 regular expressions" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." msgstr "" -#: ../../mod/admin.php:632 -msgid "Show Community Page" +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" msgstr "" -#: ../../mod/admin.php:632 -msgid "" -"Display a Community page showing all recent public postings on this site." +#: ../../mod/notifications.php:78 +msgid "System" msgstr "" -#: ../../mod/admin.php:633 -msgid "Enable OStatus support" +#: ../../mod/notifications.php:83 ../../include/nav.php:143 +msgid "Network" msgstr "" -#: ../../mod/admin.php:633 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." +#: ../../mod/notifications.php:88 ../../mod/network.php:371 +msgid "Personal" msgstr "" -#: ../../mod/admin.php:634 -msgid "OStatus conversation completion interval" +#: ../../mod/notifications.php:93 ../../include/nav.php:105 +#: ../../include/nav.php:146 ../../view/theme/diabook/theme.php:123 +msgid "Home" msgstr "" -#: ../../mod/admin.php:634 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." +#: ../../mod/notifications.php:98 ../../include/nav.php:152 +msgid "Introductions" msgstr "" -#: ../../mod/admin.php:635 -msgid "Enable Diaspora support" +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" msgstr "" -#: ../../mod/admin.php:635 -msgid "Provide built-in Diaspora network compatibility." +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" msgstr "" -#: ../../mod/admin.php:636 -msgid "Only allow Friendica contacts" +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " msgstr "" -#: ../../mod/admin.php:636 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" msgstr "" -#: ../../mod/admin.php:637 -msgid "Verify SSL" +#: ../../mod/notifications.php:152 +#, php-format +msgid "suggested by %s" msgstr "" -#: ../../mod/admin.php:637 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you " -"cannot connect (at all) to self-signed SSL sites." +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" msgstr "" -#: ../../mod/admin.php:638 -msgid "Proxy user" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" msgstr "" -#: ../../mod/admin.php:639 -msgid "Proxy URL" +#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 +#: ../../mod/admin.php:977 +msgid "Approve" msgstr "" -#: ../../mod/admin.php:640 -msgid "Network timeout" +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " msgstr "" -#: ../../mod/admin.php:640 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +#: ../../mod/notifications.php:181 +msgid "yes" msgstr "" -#: ../../mod/admin.php:641 -msgid "Delivery interval" +#: ../../mod/notifications.php:181 +msgid "no" msgstr "" -#: ../../mod/admin.php:641 -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." +#: ../../mod/notifications.php:188 +msgid "Approve as: " msgstr "" -#: ../../mod/admin.php:642 -msgid "Poll interval" +#: ../../mod/notifications.php:189 +msgid "Friend" msgstr "" -#: ../../mod/admin.php:642 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." +#: ../../mod/notifications.php:190 +msgid "Sharer" msgstr "" -#: ../../mod/admin.php:643 -msgid "Maximum Load Average" +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" msgstr "" -#: ../../mod/admin.php:643 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" msgstr "" -#: ../../mod/admin.php:645 -msgid "Use MySQL full text engine" +#: ../../mod/notifications.php:196 +msgid "New Follower" msgstr "" -#: ../../mod/admin.php:645 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." +#: ../../mod/notifications.php:217 +msgid "No introductions." msgstr "" -#: ../../mod/admin.php:646 -msgid "Suppress Language" +#: ../../mod/notifications.php:220 ../../include/nav.php:153 +msgid "Notifications" msgstr "" -#: ../../mod/admin.php:646 -msgid "Suppress language information in meta information about a posting." +#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 +#: ../../mod/notifications.php:478 +#, php-format +msgid "%s liked %s's post" msgstr "" -#: ../../mod/admin.php:647 -msgid "Path to item cache" +#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 +#: ../../mod/notifications.php:488 +#, php-format +msgid "%s disliked %s's post" msgstr "" -#: ../../mod/admin.php:648 -msgid "Cache duration in seconds" +#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 +#: ../../mod/notifications.php:503 +#, php-format +msgid "%s is now friends with %s" msgstr "" -#: ../../mod/admin.php:648 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One " -"day). To disable the item cache, set the value to -1." +#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 +#, php-format +msgid "%s created a new post" msgstr "" -#: ../../mod/admin.php:649 -msgid "Maximum numbers of comments per post" +#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 +#: ../../mod/notifications.php:513 +#, php-format +msgid "%s commented on %s's post" msgstr "" -#: ../../mod/admin.php:649 -msgid "How much comments should be shown for each post? Default value is 100." +#: ../../mod/notifications.php:306 +msgid "No more network notifications." msgstr "" -#: ../../mod/admin.php:650 -msgid "Path for lock file" +#: ../../mod/notifications.php:310 +msgid "Network Notifications" msgstr "" -#: ../../mod/admin.php:651 -msgid "Temp path" +#: ../../mod/notifications.php:336 ../../mod/notify.php:75 +msgid "No more system notifications." msgstr "" -#: ../../mod/admin.php:652 -msgid "Base path to installation" +#: ../../mod/notifications.php:340 ../../mod/notify.php:79 +msgid "System Notifications" msgstr "" -#: ../../mod/admin.php:653 -msgid "Disable picture proxy" +#: ../../mod/notifications.php:435 +msgid "No more personal notifications." msgstr "" -#: ../../mod/admin.php:653 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on " -"systems with very low bandwith." +#: ../../mod/notifications.php:439 +msgid "Personal Notifications" msgstr "" -#: ../../mod/admin.php:655 -msgid "New base url" +#: ../../mod/notifications.php:520 +msgid "No more home notifications." msgstr "" -#: ../../mod/admin.php:657 -msgid "Disable noscrape" +#: ../../mod/notifications.php:524 +msgid "Home Notifications" msgstr "" -#: ../../mod/admin.php:657 -msgid "" -"The noscrape feature speeds up directory submissions by using JSON data " -"instead of HTML scraping. Disabling it will cause higher load on your server " -"and the directory server." +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" msgstr "" -#: ../../mod/admin.php:674 -msgid "Update has been marked successful" +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" msgstr "" -#: ../../mod/admin.php:682 -#, php-format -msgid "Database structure update %s was successfully applied." +#: ../../mod/babel.php:31 +msgid "Source input: " msgstr "" -#: ../../mod/admin.php:685 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " msgstr "" -#: ../../mod/admin.php:697 -#, php-format -msgid "Executing %s failed with error: %s" +#: ../../mod/babel.php:39 +msgid "bb2html: " msgstr "" -#: ../../mod/admin.php:700 -#, php-format -msgid "Update %s was successfully applied." +#: ../../mod/babel.php:43 +msgid "bb2html2bb: " msgstr "" -#: ../../mod/admin.php:704 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." +#: ../../mod/babel.php:47 +msgid "bb2md: " msgstr "" -#: ../../mod/admin.php:706 -#, php-format -msgid "There was no additional update function %s that needed to be called." +#: ../../mod/babel.php:51 +msgid "bb2md2html: " msgstr "" -#: ../../mod/admin.php:725 -msgid "No failed updates." +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " msgstr "" -#: ../../mod/admin.php:726 -msgid "Check database structure" +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " msgstr "" -#: ../../mod/admin.php:731 -msgid "Failed Updates" +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " msgstr "" -#: ../../mod/admin.php:732 -msgid "" -"This does not include updates prior to 1139, which did not return a status." +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " msgstr "" -#: ../../mod/admin.php:733 -msgid "Mark success (if update was manually applied)" +#: ../../mod/navigation.php:20 ../../include/nav.php:34 +msgid "Nothing new here" msgstr "" -#: ../../mod/admin.php:734 -msgid "Attempt to execute this update step automatically" +#: ../../mod/navigation.php:24 ../../include/nav.php:38 +msgid "Clear notifications" msgstr "" -#: ../../mod/admin.php:766 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." +#: ../../mod/message.php:9 ../../include/nav.php:162 +msgid "New Message" msgstr "" -#: ../../mod/admin.php:769 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after " -"logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that " -"page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default " -"profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - " -"and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more " -"specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are " -"necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tThank you and welcome to %4$s." +#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 +msgid "No recipient selected." msgstr "" -#: ../../mod/admin.php:801 ../../include/user.php:413 -#, php-format -msgid "Registration details for %s" +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." msgstr "" -#: ../../mod/admin.php:813 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:820 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "" -msgstr[1] "" +#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "" -#: ../../mod/admin.php:859 -#, php-format -msgid "User '%s' deleted" +#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 +msgid "Message collection failure." msgstr "" -#: ../../mod/admin.php:867 -#, php-format -msgid "User '%s' unblocked" +#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 +msgid "Message sent." msgstr "" -#: ../../mod/admin.php:867 -#, php-format -msgid "User '%s' blocked" +#: ../../mod/message.php:182 ../../include/nav.php:159 +msgid "Messages" msgstr "" -#: ../../mod/admin.php:962 -msgid "Add User" +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" msgstr "" -#: ../../mod/admin.php:963 -msgid "select all" +#: ../../mod/message.php:227 +msgid "Message deleted." msgstr "" -#: ../../mod/admin.php:964 -msgid "User registrations waiting for confirm" +#: ../../mod/message.php:258 +msgid "Conversation removed." msgstr "" -#: ../../mod/admin.php:965 -msgid "User waiting for permanent deletion" +#: ../../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:1002 ../../include/conversation.php:1020 +msgid "Please enter a link URL:" msgstr "" -#: ../../mod/admin.php:966 -msgid "Request date" +#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 +msgid "Send Private Message" msgstr "" -#: ../../mod/admin.php:966 ../../mod/admin.php:978 ../../mod/admin.php:979 -#: ../../mod/admin.php:992 ../../mod/settings.php:613 -#: ../../mod/settings.php:639 ../../mod/crepair.php:160 -msgid "Name" +#: ../../mod/message.php:320 ../../mod/message.php:553 +#: ../../mod/wallmessage.php:144 +msgid "To:" msgstr "" -#: ../../mod/admin.php:966 ../../mod/admin.php:978 ../../mod/admin.php:979 -#: ../../mod/admin.php:994 ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 -msgid "Email" +#: ../../mod/message.php:325 ../../mod/message.php:555 +#: ../../mod/wallmessage.php:145 +msgid "Subject:" msgstr "" -#: ../../mod/admin.php:967 -msgid "No registrations." +#: ../../mod/message.php:329 ../../mod/message.php:558 +#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +msgid "Your message:" msgstr "" -#: ../../mod/admin.php:969 -msgid "Deny" +#: ../../mod/message.php:332 ../../mod/message.php:562 +#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 +#: ../../include/conversation.php:1091 +msgid "Upload photo" msgstr "" -#: ../../mod/admin.php:971 ../../mod/contacts.php:437 -#: ../../mod/contacts.php:496 ../../mod/contacts.php:706 -msgid "Block" +#: ../../mod/message.php:333 ../../mod/message.php:563 +#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 +#: ../../include/conversation.php:1095 +msgid "Insert web link" msgstr "" -#: ../../mod/admin.php:972 ../../mod/contacts.php:437 -#: ../../mod/contacts.php:496 ../../mod/contacts.php:706 -msgid "Unblock" +#: ../../mod/message.php:334 ../../mod/message.php:565 +#: ../../mod/content.php:499 ../../mod/content.php:883 +#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124 +#: ../../mod/photos.php:1545 ../../object/Item.php:364 +#: ../../include/conversation.php:692 ../../include/conversation.php:1109 +msgid "Please wait" msgstr "" -#: ../../mod/admin.php:973 -msgid "Site admin" +#: ../../mod/message.php:371 +msgid "No messages." msgstr "" -#: ../../mod/admin.php:974 -msgid "Account expired" +#: ../../mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" msgstr "" -#: ../../mod/admin.php:977 -msgid "New User" +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" msgstr "" -#: ../../mod/admin.php:978 ../../mod/admin.php:979 -msgid "Register date" +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" msgstr "" -#: ../../mod/admin.php:978 ../../mod/admin.php:979 -msgid "Last login" +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" msgstr "" -#: ../../mod/admin.php:978 ../../mod/admin.php:979 -msgid "Last item" +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" msgstr "" -#: ../../mod/admin.php:978 -msgid "Deleted since" +#: ../../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 "" -#: ../../mod/admin.php:979 ../../mod/settings.php:36 -msgid "Account" +#: ../../mod/message.php:520 +msgid "Delete message" msgstr "" -#: ../../mod/admin.php:981 +#: ../../mod/message.php:548 msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" +"No secure communications available. You may be able to " +"respond from the sender's profile page." msgstr "" -#: ../../mod/admin.php:982 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" +#: ../../mod/message.php:552 +msgid "Send Reply" msgstr "" -#: ../../mod/admin.php:992 -msgid "Name of the new user." +#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 +#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41 +#: ../../mod/update_network.php:25 +msgid "[Embedded content - reload page to view]" msgstr "" -#: ../../mod/admin.php:993 -msgid "Nickname" +#: ../../mod/crepair.php:106 +msgid "Contact settings applied." msgstr "" -#: ../../mod/admin.php:993 -msgid "Nickname of the new user." +#: ../../mod/crepair.php:108 +msgid "Contact update failed." msgstr "" -#: ../../mod/admin.php:994 -msgid "Email address of the new user." +#: ../../mod/crepair.php:139 +msgid "Repair Contact Settings" msgstr "" -#: ../../mod/admin.php:1027 -#, php-format -msgid "Plugin %s disabled." +#: ../../mod/crepair.php:141 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect " +"information your communications with this contact may stop working." msgstr "" -#: ../../mod/admin.php:1031 -#, php-format -msgid "Plugin %s enabled." +#: ../../mod/crepair.php:142 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." msgstr "" -#: ../../mod/admin.php:1041 ../../mod/admin.php:1257 -msgid "Disable" +#: ../../mod/crepair.php:148 +msgid "Return to contact editor" msgstr "" -#: ../../mod/admin.php:1043 ../../mod/admin.php:1259 -msgid "Enable" +#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +msgid "No mirroring" msgstr "" -#: ../../mod/admin.php:1066 ../../mod/admin.php:1287 -msgid "Toggle" +#: ../../mod/crepair.php:159 +msgid "Mirror as forwarded posting" msgstr "" -#: ../../mod/admin.php:1067 ../../mod/admin.php:1288 -#: ../../mod/newmember.php:22 ../../mod/settings.php:85 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:170 -msgid "Settings" +#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +msgid "Mirror as my own posting" msgstr "" -#: ../../mod/admin.php:1074 ../../mod/admin.php:1297 -msgid "Author: " +#: ../../mod/crepair.php:165 ../../mod/admin.php:975 ../../mod/admin.php:987 +#: ../../mod/admin.php:988 ../../mod/admin.php:1001 ../../mod/settings.php:616 +#: ../../mod/settings.php:642 +msgid "Name" msgstr "" -#: ../../mod/admin.php:1075 ../../mod/admin.php:1298 -msgid "Maintainer: " +#: ../../mod/crepair.php:166 +msgid "Account Nickname" msgstr "" -#: ../../mod/admin.php:1217 -msgid "No themes found." +#: ../../mod/crepair.php:167 +msgid "@Tagname - overrides Name/Nickname" msgstr "" -#: ../../mod/admin.php:1279 -msgid "Screenshot" +#: ../../mod/crepair.php:168 +msgid "Account URL" msgstr "" -#: ../../mod/admin.php:1325 -msgid "[Experimental]" +#: ../../mod/crepair.php:169 +msgid "Friend Request URL" msgstr "" -#: ../../mod/admin.php:1326 -msgid "[Unsupported]" +#: ../../mod/crepair.php:170 +msgid "Friend Confirm URL" msgstr "" -#: ../../mod/admin.php:1353 -msgid "Log settings updated." +#: ../../mod/crepair.php:171 +msgid "Notification Endpoint URL" msgstr "" -#: ../../mod/admin.php:1409 -msgid "Clear" +#: ../../mod/crepair.php:172 +msgid "Poll/Feed URL" msgstr "" -#: ../../mod/admin.php:1415 -msgid "Enable Debugging" +#: ../../mod/crepair.php:173 +msgid "New photo from this URL" msgstr "" -#: ../../mod/admin.php:1416 -msgid "Log file" +#: ../../mod/crepair.php:174 +msgid "Remote Self" msgstr "" -#: ../../mod/admin.php:1416 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." +#: ../../mod/crepair.php:176 +msgid "Mirror postings from this contact" msgstr "" -#: ../../mod/admin.php:1417 -msgid "Log level" +#: ../../mod/crepair.php:176 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." msgstr "" -#: ../../mod/admin.php:1466 ../../mod/contacts.php:493 -msgid "Update now" +#: ../../mod/viewsrc.php:7 +msgid "Access denied." msgstr "" -#: ../../mod/admin.php:1467 -msgid "Close" +#: ../../mod/dirfind.php:26 +msgid "People Search" msgstr "" -#: ../../mod/admin.php:1473 -msgid "FTP Host" +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" msgstr "" -#: ../../mod/admin.php:1474 -msgid "FTP Path" +#: ../../mod/fbrowser.php:25 ../../boot.php:2121 ../../include/nav.php:78 +#: ../../view/theme/diabook/theme.php:126 +msgid "Photos" msgstr "" -#: ../../mod/admin.php:1475 -msgid "FTP User" +#: ../../mod/fbrowser.php:113 +msgid "Files" msgstr "" -#: ../../mod/admin.php:1476 -msgid "FTP Password" +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" msgstr "" -#: ../../mod/message.php:9 ../../include/nav.php:162 -msgid "New Message" +#: ../../mod/admin.php:57 +msgid "Theme settings updated." msgstr "" -#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 -msgid "No recipient selected." +#: ../../mod/admin.php:104 ../../mod/admin.php:596 +msgid "Site" msgstr "" -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." +#: ../../mod/admin.php:105 ../../mod/admin.php:970 ../../mod/admin.php:985 +msgid "Users" msgstr "" -#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 -msgid "Message could not be sent." +#: ../../mod/admin.php:106 ../../mod/admin.php:1074 ../../mod/admin.php:1127 +#: ../../mod/settings.php:57 +msgid "Plugins" msgstr "" -#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 -msgid "Message collection failure." +#: ../../mod/admin.php:107 ../../mod/admin.php:1295 ../../mod/admin.php:1329 +msgid "Themes" msgstr "" -#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 -msgid "Message sent." +#: ../../mod/admin.php:108 +msgid "DB updates" msgstr "" -#: ../../mod/message.php:182 ../../include/nav.php:159 -msgid "Messages" +#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1416 +msgid "Logs" msgstr "" -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" +#: ../../mod/admin.php:128 ../../include/nav.php:182 +msgid "Admin" msgstr "" -#: ../../mod/message.php:227 -msgid "Message deleted." +#: ../../mod/admin.php:129 +msgid "Plugin Features" msgstr "" -#: ../../mod/message.php:258 -msgid "Conversation removed." +#: ../../mod/admin.php:131 +msgid "User registrations waiting for confirmation" msgstr "" -#: ../../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:1002 ../../include/conversation.php:1020 -msgid "Please enter a link URL:" +#: ../../mod/admin.php:190 ../../mod/admin.php:924 +msgid "Normal Account" msgstr "" -#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 -msgid "Send Private Message" +#: ../../mod/admin.php:191 ../../mod/admin.php:925 +msgid "Soapbox Account" msgstr "" -#: ../../mod/message.php:320 ../../mod/message.php:553 -#: ../../mod/wallmessage.php:144 -msgid "To:" +#: ../../mod/admin.php:192 ../../mod/admin.php:926 +msgid "Community/Celebrity Account" msgstr "" -#: ../../mod/message.php:325 ../../mod/message.php:555 -#: ../../mod/wallmessage.php:145 -msgid "Subject:" +#: ../../mod/admin.php:193 ../../mod/admin.php:927 +msgid "Automatic Friend Account" msgstr "" -#: ../../mod/message.php:329 ../../mod/message.php:558 -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -msgid "Your message:" +#: ../../mod/admin.php:194 +msgid "Blog Account" msgstr "" -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154 -#: ../../include/conversation.php:1091 -msgid "Upload photo" +#: ../../mod/admin.php:195 +msgid "Private Forum" msgstr "" -#: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155 -#: ../../include/conversation.php:1095 -msgid "Insert web link" +#: ../../mod/admin.php:214 +msgid "Message queues" msgstr "" -#: ../../mod/message.php:371 -msgid "No messages." +#: ../../mod/admin.php:219 ../../mod/admin.php:595 ../../mod/admin.php:969 +#: ../../mod/admin.php:1073 ../../mod/admin.php:1126 ../../mod/admin.php:1294 +#: ../../mod/admin.php:1328 ../../mod/admin.php:1415 +msgid "Administration" msgstr "" -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" +#: ../../mod/admin.php:220 +msgid "Summary" msgstr "" -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" +#: ../../mod/admin.php:222 +msgid "Registered users" msgstr "" -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" +#: ../../mod/admin.php:224 +msgid "Pending registrations" msgstr "" -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" +#: ../../mod/admin.php:225 +msgid "Version" msgstr "" -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" +#: ../../mod/admin.php:229 +msgid "Active plugins" msgstr "" -#: ../../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." +#: ../../mod/admin.php:252 +msgid "Can not parse base url. Must have at least ://" msgstr "" -#: ../../mod/message.php:520 -msgid "Delete message" +#: ../../mod/admin.php:500 +msgid "Site settings updated." msgstr "" -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." +#: ../../mod/admin.php:529 ../../mod/settings.php:828 +msgid "No special theme for mobile devices" msgstr "" -#: ../../mod/message.php:552 -msgid "Send Reply" +#: ../../mod/admin.php:547 +msgid "At post arrival" msgstr "" -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" +#: ../../mod/admin.php:548 ../../include/contact_selectors.php:56 +msgid "Frequently" msgstr "" -#: ../../mod/editpost.php:39 -msgid "Edit post" +#: ../../mod/admin.php:549 ../../include/contact_selectors.php:57 +msgid "Hourly" msgstr "" -#: ../../mod/editpost.php:109 ../../mod/filer.php:31 ../../mod/notes.php:63 -#: ../../include/text.php:955 -msgid "Save" +#: ../../mod/admin.php:550 ../../include/contact_selectors.php:58 +msgid "Twice daily" msgstr "" -#: ../../mod/editpost.php:111 ../../include/conversation.php:1092 -msgid "upload photo" +#: ../../mod/admin.php:551 ../../include/contact_selectors.php:59 +msgid "Daily" msgstr "" -#: ../../mod/editpost.php:112 ../../include/conversation.php:1093 -msgid "Attach file" +#: ../../mod/admin.php:556 +msgid "Multi user instance" msgstr "" -#: ../../mod/editpost.php:113 ../../include/conversation.php:1094 -msgid "attach file" +#: ../../mod/admin.php:579 +msgid "Closed" msgstr "" -#: ../../mod/editpost.php:115 ../../include/conversation.php:1096 -msgid "web link" +#: ../../mod/admin.php:580 +msgid "Requires approval" msgstr "" -#: ../../mod/editpost.php:116 ../../include/conversation.php:1097 -msgid "Insert video link" +#: ../../mod/admin.php:581 +msgid "Open" msgstr "" -#: ../../mod/editpost.php:117 ../../include/conversation.php:1098 -msgid "video link" +#: ../../mod/admin.php:585 +msgid "No SSL policy, links will track page SSL state" msgstr "" -#: ../../mod/editpost.php:118 ../../include/conversation.php:1099 -msgid "Insert audio link" +#: ../../mod/admin.php:586 +msgid "Force all links to use SSL" msgstr "" -#: ../../mod/editpost.php:119 ../../include/conversation.php:1100 -msgid "audio link" +#: ../../mod/admin.php:587 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "" -#: ../../mod/editpost.php:120 ../../include/conversation.php:1101 -msgid "Set your location" +#: ../../mod/admin.php:597 ../../mod/admin.php:1128 ../../mod/admin.php:1330 +#: ../../mod/admin.php:1417 ../../mod/settings.php:614 +#: ../../mod/settings.php:724 ../../mod/settings.php:798 +#: ../../mod/settings.php:880 ../../mod/settings.php:1113 +msgid "Save Settings" msgstr "" -#: ../../mod/editpost.php:121 ../../include/conversation.php:1102 -msgid "set location" +#: ../../mod/admin.php:598 ../../mod/register.php:255 +msgid "Registration" msgstr "" -#: ../../mod/editpost.php:122 ../../include/conversation.php:1103 -msgid "Clear browser location" +#: ../../mod/admin.php:599 +msgid "File upload" msgstr "" -#: ../../mod/editpost.php:123 ../../include/conversation.php:1104 -msgid "clear location" +#: ../../mod/admin.php:600 +msgid "Policies" msgstr "" -#: ../../mod/editpost.php:125 ../../include/conversation.php:1110 -msgid "Permission settings" +#: ../../mod/admin.php:601 +msgid "Advanced" msgstr "" -#: ../../mod/editpost.php:133 ../../include/conversation.php:1119 -msgid "CC: email addresses" +#: ../../mod/admin.php:602 +msgid "Performance" msgstr "" -#: ../../mod/editpost.php:134 ../../include/conversation.php:1120 -msgid "Public post" +#: ../../mod/admin.php:603 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "" -#: ../../mod/editpost.php:137 ../../include/conversation.php:1106 -msgid "Set title" +#: ../../mod/admin.php:606 +msgid "Site name" msgstr "" -#: ../../mod/editpost.php:139 ../../include/conversation.php:1108 -msgid "Categories (comma-separated list)" +#: ../../mod/admin.php:607 +msgid "Host name" msgstr "" -#: ../../mod/editpost.php:140 ../../include/conversation.php:1122 -msgid "Example: bob@example.com, mary@example.com" +#: ../../mod/admin.php:608 +msgid "Banner/Logo" msgstr "" -#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18 -#: ../../mod/profiles.php:133 ../../mod/profiles.php:162 -#: ../../mod/profiles.php:589 -msgid "Profile not found." +#: ../../mod/admin.php:609 +msgid "Additional Info" msgstr "" -#: ../../mod/dfrn_confirm.php:121 +#: ../../mod/admin.php:609 msgid "" -"This may occasionally happen if contact was requested by both persons and it " -"has already been approved." +"For public servers: you can add additional information here that will be " +"listed at dir.friendica.com/siteinfo." msgstr "" -#: ../../mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." +#: ../../mod/admin.php:610 +msgid "System language" msgstr "" -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " +#: ../../mod/admin.php:611 +msgid "System theme" msgstr "" -#: ../../mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." +#: ../../mod/admin.php:611 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 -msgid "Remote site reported: " +#: ../../mod/admin.php:612 +msgid "Mobile system theme" msgstr "" -#: ../../mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." +#: ../../mod/admin.php:612 +msgid "Theme for mobile devices" msgstr "" -#: ../../mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." +#: ../../mod/admin.php:613 +msgid "SSL link policy" msgstr "" -#: ../../mod/dfrn_confirm.php:429 -msgid "Unable to set contact photo." +#: ../../mod/admin.php:613 +msgid "Determines whether generated links should be forced to use SSL" msgstr "" -#: ../../mod/dfrn_confirm.php:486 ../../include/diaspora.php:620 -#: ../../include/conversation.php:172 -#, php-format -msgid "%1$s is now friends with %2$s" +#: ../../mod/admin.php:614 +msgid "Force SSL" msgstr "" -#: ../../mod/dfrn_confirm.php:571 -#, php-format -msgid "No user record found for '%s' " +#: ../../mod/admin.php:614 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead " +"to endless loops." msgstr "" -#: ../../mod/dfrn_confirm.php:581 -msgid "Our site encryption key is apparently messed up." +#: ../../mod/admin.php:615 +msgid "Old style 'Share'" msgstr "" -#: ../../mod/dfrn_confirm.php:592 -msgid "Empty site URL was provided or URL could not be decrypted by us." +#: ../../mod/admin.php:615 +msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "" -#: ../../mod/dfrn_confirm.php:613 -msgid "Contact record was not found for you on our site." +#: ../../mod/admin.php:616 +msgid "Hide help entry from navigation menu" msgstr "" -#: ../../mod/dfrn_confirm.php:627 -#, php-format -msgid "Site public key not available in contact record for URL %s." +#: ../../mod/admin.php:616 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." msgstr "" -#: ../../mod/dfrn_confirm.php:647 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." +#: ../../mod/admin.php:617 +msgid "Single user instance" msgstr "" -#: ../../mod/dfrn_confirm.php:658 -msgid "Unable to set your contact credentials on our system." +#: ../../mod/admin.php:617 +msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: ../../mod/dfrn_confirm.php:725 -msgid "Unable to update your contact profile details on our system" +#: ../../mod/admin.php:618 +msgid "Maximum image size" msgstr "" -#: ../../mod/dfrn_confirm.php:797 -#, php-format -msgid "%1$s has joined %2$s" +#: ../../mod/admin.php:618 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." msgstr "" -#: ../../mod/events.php:66 -msgid "Event title and start time are required." +#: ../../mod/admin.php:619 +msgid "Maximum image length" msgstr "" -#: ../../mod/events.php:291 -msgid "l, F j" +#: ../../mod/admin.php:619 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." msgstr "" -#: ../../mod/events.php:313 -msgid "Edit event" +#: ../../mod/admin.php:620 +msgid "JPEG image quality" msgstr "" -#: ../../mod/events.php:335 ../../include/text.php:1644 -#: ../../include/text.php:1654 -msgid "link to source" +#: ../../mod/admin.php:620 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." msgstr "" -#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:127 -#: ../../boot.php:2114 ../../include/nav.php:80 -msgid "Events" +#: ../../mod/admin.php:622 +msgid "Register policy" msgstr "" -#: ../../mod/events.php:371 -msgid "Create New Event" +#: ../../mod/admin.php:623 +msgid "Maximum Daily Registrations" msgstr "" -#: ../../mod/events.php:372 -msgid "Previous" +#: ../../mod/admin.php:623 +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/events.php:373 ../../mod/install.php:207 -msgid "Next" +#: ../../mod/admin.php:624 +msgid "Register text" msgstr "" -#: ../../mod/events.php:446 -msgid "hour:minute" +#: ../../mod/admin.php:624 +msgid "Will be displayed prominently on the registration page." msgstr "" -#: ../../mod/events.php:456 -msgid "Event details" +#: ../../mod/admin.php:625 +msgid "Accounts abandoned after x days" msgstr "" -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." +#: ../../mod/admin.php:625 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." msgstr "" -#: ../../mod/events.php:459 -msgid "Event Starts:" +#: ../../mod/admin.php:626 +msgid "Allowed friend domains" msgstr "" -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" +#: ../../mod/admin.php:626 +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/events.php:462 -msgid "Finish date/time is not known or not relevant" +#: ../../mod/admin.php:627 +msgid "Allowed email domains" msgstr "" -#: ../../mod/events.php:464 -msgid "Event Finishes:" +#: ../../mod/admin.php:627 +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/events.php:467 -msgid "Adjust for viewer timezone" +#: ../../mod/admin.php:628 +msgid "Block public" msgstr "" -#: ../../mod/events.php:469 -msgid "Description:" +#: ../../mod/admin.php:628 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." msgstr "" -#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1622 -#: ../../include/event.php:40 ../../include/bb2diaspora.php:156 -msgid "Location:" +#: ../../mod/admin.php:629 +msgid "Force publish" msgstr "" -#: ../../mod/events.php:473 -msgid "Title:" +#: ../../mod/admin.php:629 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../mod/events.php:475 -msgid "Share this event" +#: ../../mod/admin.php:630 +msgid "Global directory update URL" msgstr "" -#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:126 -#: ../../boot.php:2097 ../../include/nav.php:78 -msgid "Photos" +#: ../../mod/admin.php:630 +msgid "" +"URL to update the global directory. If this is not set, the global directory " +"is completely unavailable to the application." msgstr "" -#: ../../mod/fbrowser.php:113 -msgid "Files" +#: ../../mod/admin.php:631 +msgid "Allow threaded items" msgstr "" -#: ../../mod/home.php:35 -#, php-format -msgid "Welcome to %s" +#: ../../mod/admin.php:631 +msgid "Allow infinite level threading for items on this site." msgstr "" -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." +#: ../../mod/admin.php:632 +msgid "Private posts by default for new users" msgstr "" -#: ../../mod/lockview.php:48 -msgid "Visible to:" +#: ../../mod/admin.php:632 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." msgstr "" -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." +#: ../../mod/admin.php:633 +msgid "Don't include post content in email notifications" msgstr "" -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." +#: ../../mod/admin.php:633 +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/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." +#: ../../mod/admin.php:634 +msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: ../../mod/wallmessage.php:143 -#, php-format +#: ../../mod/admin.php:634 msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." +"Checking this box will restrict addons listed in the apps menu to members " +"only." msgstr "" -#: ../../mod/nogroup.php:40 ../../mod/contacts.php:479 -#: ../../mod/contacts.php:671 ../../mod/viewcontacts.php:62 -#, php-format -msgid "Visit %s's profile [%s]" +#: ../../mod/admin.php:635 +msgid "Don't embed private images in posts" msgstr "" -#: ../../mod/nogroup.php:41 ../../mod/contacts.php:672 -msgid "Edit contact" +#: ../../mod/admin.php:635 +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/nogroup.php:59 -msgid "Contacts who are not members of a group" +#: ../../mod/admin.php:636 +msgid "Allow Users to set remote_self" msgstr "" -#: ../../mod/friendica.php:62 -msgid "This is Friendica, version" +#: ../../mod/admin.php:636 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." msgstr "" -#: ../../mod/friendica.php:63 -msgid "running at web location" +#: ../../mod/admin.php:637 +msgid "Block multiple registrations" msgstr "" -#: ../../mod/friendica.php:65 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "" - -#: ../../mod/friendica.php:67 -msgid "Bug reports and issues: please visit" -msgstr "" - -#: ../../mod/friendica.php:68 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" +#: ../../mod/admin.php:637 +msgid "Disallow users to register additional accounts for use as pages." msgstr "" -#: ../../mod/friendica.php:82 -msgid "Installed plugins/addons/apps:" +#: ../../mod/admin.php:638 +msgid "OpenID support" msgstr "" -#: ../../mod/friendica.php:95 -msgid "No installed plugins/addons/apps" +#: ../../mod/admin.php:638 +msgid "OpenID support for registration and logins." msgstr "" -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" +#: ../../mod/admin.php:639 +msgid "Fullname check" msgstr "" -#: ../../mod/removeme.php:47 +#: ../../mod/admin.php:639 msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "" - -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "" - -#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "" - -#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807 -#: ../../mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "" - -#: ../../mod/wall_upload.php:169 ../../mod/wall_upload.php:178 -#: ../../mod/wall_upload.php:185 ../../mod/item.php:465 -#: ../../include/message.php:144 ../../include/Photo.php:911 -#: ../../include/Photo.php:926 ../../include/Photo.php:933 -#: ../../include/Photo.php:955 -msgid "Wall Photos" -msgstr "" - -#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" msgstr "" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" +#: ../../mod/admin.php:640 +msgid "UTF-8 Regular expressions" msgstr "" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" +#: ../../mod/admin.php:640 +msgid "Use PHP UTF8 regular expressions" msgstr "" -#: ../../mod/api.php:89 -msgid "Please login to continue." +#: ../../mod/admin.php:641 +msgid "Show Community Page" msgstr "" -#: ../../mod/api.php:104 +#: ../../mod/admin.php:641 msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" +"Display a Community page showing all recent public postings on this site." msgstr "" -#: ../../mod/tagger.php:95 ../../include/conversation.php:266 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" +#: ../../mod/admin.php:642 +msgid "Enable OStatus support" msgstr "" -#: ../../mod/photos.php:52 ../../boot.php:2100 -msgid "Photo Albums" +#: ../../mod/admin.php:642 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." msgstr "" -#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064 -#: ../../mod/photos.php:1189 ../../mod/photos.php:1212 -#: ../../mod/photos.php:1758 ../../mod/photos.php:1770 -#: ../../view/theme/diabook/theme.php:499 -msgid "Contact Photos" +#: ../../mod/admin.php:643 +msgid "OStatus conversation completion interval" msgstr "" -#: ../../mod/photos.php:67 ../../mod/photos.php:1228 ../../mod/photos.php:1817 -msgid "Upload New Photos" +#: ../../mod/admin.php:643 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." msgstr "" -#: ../../mod/photos.php:80 ../../mod/settings.php:29 -msgid "everybody" +#: ../../mod/admin.php:644 +msgid "Enable Diaspora support" msgstr "" -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" +#: ../../mod/admin.php:644 +msgid "Provide built-in Diaspora network compatibility." msgstr "" -#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1189 -#: ../../mod/photos.php:1212 ../../mod/profile_photo.php:74 -#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 -#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 -#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:500 -#: ../../include/user.php:335 ../../include/user.php:342 -#: ../../include/user.php:349 -msgid "Profile Photos" +#: ../../mod/admin.php:645 +msgid "Only allow Friendica contacts" msgstr "" -#: ../../mod/photos.php:165 -msgid "Album not found." +#: ../../mod/admin.php:645 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." msgstr "" -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1206 -msgid "Delete Album" +#: ../../mod/admin.php:646 +msgid "Verify SSL" msgstr "" -#: ../../mod/photos.php:198 -msgid "Do you really want to delete this photo album and all its photos?" +#: ../../mod/admin.php:646 +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/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1513 -msgid "Delete Photo" +#: ../../mod/admin.php:647 +msgid "Proxy user" msgstr "" -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" +#: ../../mod/admin.php:648 +msgid "Proxy URL" msgstr "" -#: ../../mod/photos.php:662 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" +#: ../../mod/admin.php:649 +msgid "Network timeout" msgstr "" -#: ../../mod/photos.php:662 -msgid "a photo" +#: ../../mod/admin.php:649 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " +#: ../../mod/admin.php:650 +msgid "Delivery interval" msgstr "" -#: ../../mod/photos.php:775 -msgid "Image file is empty." +#: ../../mod/admin.php:650 +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/photos.php:930 -msgid "No photos selected" +#: ../../mod/admin.php:651 +msgid "Poll interval" msgstr "" -#: ../../mod/photos.php:1031 ../../mod/videos.php:226 -msgid "Access to this item is restricted." +#: ../../mod/admin.php:651 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." msgstr "" -#: ../../mod/photos.php:1094 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +#: ../../mod/admin.php:652 +msgid "Maximum Load Average" msgstr "" -#: ../../mod/photos.php:1129 -msgid "Upload Photos" +#: ../../mod/admin.php:652 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." msgstr "" -#: ../../mod/photos.php:1133 ../../mod/photos.php:1201 -msgid "New album name: " +#: ../../mod/admin.php:654 +msgid "Use MySQL full text engine" msgstr "" -#: ../../mod/photos.php:1134 -msgid "or existing album name: " +#: ../../mod/admin.php:654 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." msgstr "" -#: ../../mod/photos.php:1135 -msgid "Do not show a status post for this upload" +#: ../../mod/admin.php:655 +msgid "Suppress Language" msgstr "" -#: ../../mod/photos.php:1137 ../../mod/photos.php:1508 -msgid "Permissions" +#: ../../mod/admin.php:655 +msgid "Suppress language information in meta information about a posting." msgstr "" -#: ../../mod/photos.php:1146 ../../mod/photos.php:1517 -#: ../../mod/settings.php:1145 -msgid "Show to Groups" +#: ../../mod/admin.php:656 +msgid "Path to item cache" msgstr "" -#: ../../mod/photos.php:1147 ../../mod/photos.php:1518 -#: ../../mod/settings.php:1146 -msgid "Show to Contacts" +#: ../../mod/admin.php:657 +msgid "Cache duration in seconds" msgstr "" -#: ../../mod/photos.php:1148 -msgid "Private Photo" +#: ../../mod/admin.php:657 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One " +"day). To disable the item cache, set the value to -1." msgstr "" -#: ../../mod/photos.php:1149 -msgid "Public Photo" +#: ../../mod/admin.php:658 +msgid "Maximum numbers of comments per post" msgstr "" -#: ../../mod/photos.php:1216 -msgid "Edit Album" +#: ../../mod/admin.php:658 +msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: ../../mod/photos.php:1222 -msgid "Show Newest First" +#: ../../mod/admin.php:659 +msgid "Path for lock file" msgstr "" -#: ../../mod/photos.php:1224 -msgid "Show Oldest First" +#: ../../mod/admin.php:660 +msgid "Temp path" msgstr "" -#: ../../mod/photos.php:1257 ../../mod/photos.php:1800 -msgid "View Photo" +#: ../../mod/admin.php:661 +msgid "Base path to installation" msgstr "" -#: ../../mod/photos.php:1292 -msgid "Permission denied. Access to this item may be restricted." +#: ../../mod/admin.php:662 +msgid "Disable picture proxy" msgstr "" -#: ../../mod/photos.php:1294 -msgid "Photo not available" +#: ../../mod/admin.php:662 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on " +"systems with very low bandwith." msgstr "" -#: ../../mod/photos.php:1350 -msgid "View photo" +#: ../../mod/admin.php:664 +msgid "New base url" msgstr "" -#: ../../mod/photos.php:1350 -msgid "Edit photo" +#: ../../mod/admin.php:666 +msgid "Disable noscrape" msgstr "" -#: ../../mod/photos.php:1351 -msgid "Use as profile photo" +#: ../../mod/admin.php:666 +msgid "" +"The noscrape feature speeds up directory submissions by using JSON data " +"instead of HTML scraping. Disabling it will cause higher load on your server " +"and the directory server." msgstr "" -#: ../../mod/photos.php:1376 -msgid "View Full Size" +#: ../../mod/admin.php:683 +msgid "Update has been marked successful" msgstr "" -#: ../../mod/photos.php:1455 -msgid "Tags: " +#: ../../mod/admin.php:691 +#, php-format +msgid "Database structure update %s was successfully applied." msgstr "" -#: ../../mod/photos.php:1458 -msgid "[Remove any tag]" +#: ../../mod/admin.php:694 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: ../../mod/photos.php:1498 -msgid "Rotate CW (right)" +#: ../../mod/admin.php:706 +#, php-format +msgid "Executing %s failed with error: %s" msgstr "" -#: ../../mod/photos.php:1499 -msgid "Rotate CCW (left)" +#: ../../mod/admin.php:709 +#, php-format +msgid "Update %s was successfully applied." msgstr "" -#: ../../mod/photos.php:1501 -msgid "New album name" +#: ../../mod/admin.php:713 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../mod/photos.php:1504 -msgid "Caption" +#: ../../mod/admin.php:715 +#, php-format +msgid "There was no additional update function %s that needed to be called." msgstr "" -#: ../../mod/photos.php:1506 -msgid "Add a Tag" +#: ../../mod/admin.php:734 +msgid "No failed updates." msgstr "" -#: ../../mod/photos.php:1510 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +#: ../../mod/admin.php:735 +msgid "Check database structure" msgstr "" -#: ../../mod/photos.php:1519 -msgid "Private photo" +#: ../../mod/admin.php:740 +msgid "Failed Updates" msgstr "" -#: ../../mod/photos.php:1520 -msgid "Public photo" +#: ../../mod/admin.php:741 +msgid "" +"This does not include updates prior to 1139, which did not return a status." msgstr "" -#: ../../mod/photos.php:1542 ../../include/conversation.php:1090 -msgid "Share" +#: ../../mod/admin.php:742 +msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../mod/photos.php:1806 ../../mod/videos.php:308 -msgid "View Album" +#: ../../mod/admin.php:743 +msgid "Attempt to execute this update step automatically" msgstr "" -#: ../../mod/photos.php:1815 -msgid "Recent Photos" +#: ../../mod/admin.php:775 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: ../../mod/hcard.php:10 -msgid "No profile" +#: ../../mod/admin.php:778 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after " +"logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that " +"page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default " +"profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - " +"and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more " +"specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are " +"necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tThank you and welcome to %4$s." msgstr "" -#: ../../mod/register.php:90 -msgid "" -"Registration successful. Please check your email for further instructions." +#: ../../mod/admin.php:810 ../../include/user.php:413 +#, php-format +msgid "Registration details for %s" msgstr "" -#: ../../mod/register.php:96 +#: ../../mod/admin.php:822 #, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:829 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:868 +#, php-format +msgid "User '%s' deleted" msgstr "" -#: ../../mod/register.php:105 -msgid "Your registration can not be processed." +#: ../../mod/admin.php:876 +#, php-format +msgid "User '%s' unblocked" msgstr "" -#: ../../mod/register.php:148 -msgid "Your registration is pending approval by the site owner." +#: ../../mod/admin.php:876 +#, php-format +msgid "User '%s' blocked" msgstr "" -#: ../../mod/register.php:186 ../../mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." +#: ../../mod/admin.php:971 +msgid "Add User" msgstr "" -#: ../../mod/register.php:214 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." +#: ../../mod/admin.php:972 +msgid "select all" msgstr "" -#: ../../mod/register.php:215 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." +#: ../../mod/admin.php:973 +msgid "User registrations waiting for confirm" msgstr "" -#: ../../mod/register.php:216 -msgid "Your OpenID (optional): " +#: ../../mod/admin.php:974 +msgid "User waiting for permanent deletion" msgstr "" -#: ../../mod/register.php:230 -msgid "Include your profile in member directory?" +#: ../../mod/admin.php:975 +msgid "Request date" msgstr "" -#: ../../mod/register.php:251 -msgid "Membership on this site is by invitation only." +#: ../../mod/admin.php:975 ../../mod/admin.php:987 ../../mod/admin.php:988 +#: ../../mod/admin.php:1003 ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 +msgid "Email" msgstr "" -#: ../../mod/register.php:252 -msgid "Your invitation ID: " +#: ../../mod/admin.php:976 +msgid "No registrations." msgstr "" -#: ../../mod/register.php:263 -msgid "Your Full Name (e.g. Joe Smith): " +#: ../../mod/admin.php:978 +msgid "Deny" msgstr "" -#: ../../mod/register.php:264 -msgid "Your Email Address: " +#: ../../mod/admin.php:982 +msgid "Site admin" msgstr "" -#: ../../mod/register.php:265 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be 'nickname@$sitename'." +#: ../../mod/admin.php:983 +msgid "Account expired" msgstr "" -#: ../../mod/register.php:266 -msgid "Choose a nickname: " +#: ../../mod/admin.php:986 +msgid "New User" msgstr "" -#: ../../mod/register.php:269 ../../boot.php:1215 ../../include/nav.php:109 -msgid "Register" +#: ../../mod/admin.php:987 ../../mod/admin.php:988 +msgid "Register date" msgstr "" -#: ../../mod/register.php:275 ../../mod/uimport.php:64 -msgid "Import" +#: ../../mod/admin.php:987 ../../mod/admin.php:988 +msgid "Last login" msgstr "" -#: ../../mod/register.php:276 -msgid "Import your profile to this friendica instance" +#: ../../mod/admin.php:987 ../../mod/admin.php:988 +msgid "Last item" msgstr "" -#: ../../mod/lostpass.php:19 -msgid "No valid account found." +#: ../../mod/admin.php:987 +msgid "Deleted since" msgstr "" -#: ../../mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." +#: ../../mod/admin.php:988 ../../mod/settings.php:36 +msgid "Account" msgstr "" -#: ../../mod/lostpass.php:42 -#, php-format +#: ../../mod/admin.php:990 msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the " -"verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/lostpass.php:53 -#, php-format +#: ../../mod/admin.php:991 msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after " -"logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/lostpass.php:72 +#: ../../mod/admin.php:1001 +msgid "Name of the new user." +msgstr "" + +#: ../../mod/admin.php:1002 +msgid "Nickname" +msgstr "" + +#: ../../mod/admin.php:1002 +msgid "Nickname of the new user." +msgstr "" + +#: ../../mod/admin.php:1003 +msgid "Email address of the new user." +msgstr "" + +#: ../../mod/admin.php:1036 #, php-format -msgid "Password reset requested at %s" +msgid "Plugin %s disabled." msgstr "" -#: ../../mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +#: ../../mod/admin.php:1040 +#, php-format +msgid "Plugin %s enabled." msgstr "" -#: ../../mod/lostpass.php:109 ../../boot.php:1254 -msgid "Password Reset" +#: ../../mod/admin.php:1050 ../../mod/admin.php:1266 +msgid "Disable" msgstr "" -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." +#: ../../mod/admin.php:1052 ../../mod/admin.php:1268 +msgid "Enable" msgstr "" -#: ../../mod/lostpass.php:111 -msgid "Your new password is" +#: ../../mod/admin.php:1075 ../../mod/admin.php:1296 +msgid "Toggle" msgstr "" -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" +#: ../../mod/admin.php:1083 ../../mod/admin.php:1306 +msgid "Author: " msgstr "" -#: ../../mod/lostpass.php:113 -msgid "click here to login" +#: ../../mod/admin.php:1084 ../../mod/admin.php:1307 +msgid "Maintainer: " msgstr "" -#: ../../mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." +#: ../../mod/admin.php:1226 +msgid "No themes found." msgstr "" -#: ../../mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately " -"to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" +#: ../../mod/admin.php:1288 +msgid "Screenshot" msgstr "" -#: ../../mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after " -"logging in.\n" -"\t\t\t" +#: ../../mod/admin.php:1334 +msgid "[Experimental]" msgstr "" -#: ../../mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" +#: ../../mod/admin.php:1335 +msgid "[Unsupported]" msgstr "" -#: ../../mod/lostpass.php:159 -msgid "Forgot your Password?" +#: ../../mod/admin.php:1362 +msgid "Log settings updated." msgstr "" -#: ../../mod/lostpass.php:160 +#: ../../mod/admin.php:1418 +msgid "Clear" +msgstr "" + +#: ../../mod/admin.php:1424 +msgid "Enable Debugging" +msgstr "" + +#: ../../mod/admin.php:1425 +msgid "Log file" +msgstr "" + +#: ../../mod/admin.php:1425 msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +"Must be writable by web server. Relative to your Friendica top-level " +"directory." msgstr "" -#: ../../mod/lostpass.php:161 -msgid "Nickname or Email: " +#: ../../mod/admin.php:1426 +msgid "Log level" msgstr "" -#: ../../mod/lostpass.php:162 -msgid "Reset" +#: ../../mod/admin.php:1476 +msgid "Close" msgstr "" -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" +#: ../../mod/admin.php:1482 +msgid "FTP Host" msgstr "" -#: ../../mod/attach.php:8 -msgid "Item not available." +#: ../../mod/admin.php:1483 +msgid "FTP Path" msgstr "" -#: ../../mod/attach.php:20 -msgid "Item was not found." +#: ../../mod/admin.php:1484 +msgid "FTP User" msgstr "" -#: ../../mod/apps.php:11 -msgid "Applications" +#: ../../mod/admin.php:1485 +msgid "FTP Password" msgstr "" -#: ../../mod/apps.php:14 -msgid "No installed applications." +#: ../../mod/network.php:142 +msgid "Search Results For:" msgstr "" -#: ../../mod/help.php:79 -msgid "Help:" +#: ../../mod/network.php:185 ../../mod/search.php:21 +msgid "Remove term" msgstr "" -#: ../../mod/help.php:84 ../../include/nav.php:114 -msgid "Help" +#: ../../mod/network.php:194 ../../mod/search.php:30 +#: ../../include/features.php:42 +msgid "Saved Searches" msgstr "" -#: ../../mod/contacts.php:107 +#: ../../mod/network.php:195 ../../include/group.php:275 +msgid "add" +msgstr "" + +#: ../../mod/network.php:356 +msgid "Commented Order" +msgstr "" + +#: ../../mod/network.php:359 +msgid "Sort by Comment Date" +msgstr "" + +#: ../../mod/network.php:362 +msgid "Posted Order" +msgstr "" + +#: ../../mod/network.php:365 +msgid "Sort by Post Date" +msgstr "" + +#: ../../mod/network.php:374 +msgid "Posts that mention or involve you" +msgstr "" + +#: ../../mod/network.php:380 +msgid "New" +msgstr "" + +#: ../../mod/network.php:383 +msgid "Activity Stream - by date" +msgstr "" + +#: ../../mod/network.php:389 +msgid "Shared Links" +msgstr "" + +#: ../../mod/network.php:392 +msgid "Interesting Links" +msgstr "" + +#: ../../mod/network.php:398 +msgid "Starred" +msgstr "" + +#: ../../mod/network.php:401 +msgid "Favourite Posts" +msgstr "" + +#: ../../mod/network.php:463 #, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" +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] "" msgstr[1] "" -#: ../../mod/contacts.php:138 ../../mod/contacts.php:267 -msgid "Could not access contact record." +#: ../../mod/network.php:466 +msgid "Private messages to this group are at risk of public disclosure." msgstr "" -#: ../../mod/contacts.php:152 -msgid "Could not locate selected profile." +#: ../../mod/network.php:520 ../../mod/content.php:119 +msgid "No such group" msgstr "" -#: ../../mod/contacts.php:181 -msgid "Contact updated." +#: ../../mod/network.php:537 ../../mod/content.php:130 +msgid "Group is empty" msgstr "" -#: ../../mod/contacts.php:282 -msgid "Contact has been blocked" +#: ../../mod/network.php:544 ../../mod/content.php:134 +msgid "Group: " msgstr "" -#: ../../mod/contacts.php:282 -msgid "Contact has been unblocked" +#: ../../mod/network.php:554 +msgid "Contact: " msgstr "" -#: ../../mod/contacts.php:293 -msgid "Contact has been ignored" +#: ../../mod/network.php:556 +msgid "Private messages to this person are at risk of public disclosure." msgstr "" -#: ../../mod/contacts.php:293 -msgid "Contact has been unignored" +#: ../../mod/network.php:561 +msgid "Invalid contact." msgstr "" -#: ../../mod/contacts.php:305 -msgid "Contact has been archived" +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" msgstr "" -#: ../../mod/contacts.php:305 -msgid "Contact has been unarchived" +#: ../../mod/allfriends.php:40 +msgid "No friends to display." msgstr "" -#: ../../mod/contacts.php:330 ../../mod/contacts.php:703 -msgid "Do you really want to delete this contact?" +#: ../../mod/events.php:66 +msgid "Event title and start time are required." msgstr "" -#: ../../mod/contacts.php:347 -msgid "Contact has been removed." +#: ../../mod/events.php:291 +msgid "l, F j" msgstr "" -#: ../../mod/contacts.php:385 -#, php-format -msgid "You are mutual friends with %s" +#: ../../mod/events.php:313 +msgid "Edit event" msgstr "" -#: ../../mod/contacts.php:389 -#, php-format -msgid "You are sharing with %s" +#: ../../mod/events.php:335 ../../include/text.php:1644 +#: ../../include/text.php:1654 +msgid "link to source" msgstr "" -#: ../../mod/contacts.php:394 -#, php-format -msgid "%s is sharing with you" +#: ../../mod/events.php:370 ../../boot.php:2138 ../../include/nav.php:80 +#: ../../view/theme/diabook/theme.php:127 +msgid "Events" msgstr "" -#: ../../mod/contacts.php:411 -msgid "Private communications are not available for this contact." +#: ../../mod/events.php:371 +msgid "Create New Event" msgstr "" -#: ../../mod/contacts.php:418 -msgid "(Update was successful)" +#: ../../mod/events.php:372 +msgid "Previous" msgstr "" -#: ../../mod/contacts.php:418 -msgid "(Update was not successful)" +#: ../../mod/events.php:373 ../../mod/install.php:207 +msgid "Next" msgstr "" -#: ../../mod/contacts.php:420 -msgid "Suggest friends" +#: ../../mod/events.php:446 +msgid "hour:minute" msgstr "" -#: ../../mod/contacts.php:424 -#, php-format -msgid "Network type: %s" +#: ../../mod/events.php:456 +msgid "Event details" msgstr "" -#: ../../mod/contacts.php:427 ../../include/contact_widgets.php:200 +#: ../../mod/events.php:457 #, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "" -msgstr[1] "" +msgid "Format is %s %s. Starting date and Title are required." +msgstr "" + +#: ../../mod/events.php:459 +msgid "Event Starts:" +msgstr "" -#: ../../mod/contacts.php:432 -msgid "View all contacts" +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" msgstr "" -#: ../../mod/contacts.php:440 -msgid "Toggle Blocked status" +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" msgstr "" -#: ../../mod/contacts.php:443 ../../mod/contacts.php:497 -#: ../../mod/contacts.php:707 -msgid "Unignore" +#: ../../mod/events.php:464 +msgid "Event Finishes:" msgstr "" -#: ../../mod/contacts.php:446 -msgid "Toggle Ignored status" +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" msgstr "" -#: ../../mod/contacts.php:450 ../../mod/contacts.php:708 -msgid "Unarchive" +#: ../../mod/events.php:469 +msgid "Description:" msgstr "" -#: ../../mod/contacts.php:450 ../../mod/contacts.php:708 -msgid "Archive" +#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1643 +#: ../../include/bb2diaspora.php:170 ../../include/event.php:40 +msgid "Location:" msgstr "" -#: ../../mod/contacts.php:453 -msgid "Toggle Archive status" +#: ../../mod/events.php:473 +msgid "Title:" msgstr "" -#: ../../mod/contacts.php:456 -msgid "Repair" +#: ../../mod/events.php:475 +msgid "Share this event" msgstr "" -#: ../../mod/contacts.php:459 -msgid "Advanced Contact Settings" +#: ../../mod/content.php:437 ../../mod/content.php:740 +#: ../../mod/photos.php:1653 ../../object/Item.php:129 +#: ../../include/conversation.php:613 +msgid "Select" msgstr "" -#: ../../mod/contacts.php:465 -msgid "Communications lost with this contact!" +#: ../../mod/content.php:471 ../../mod/content.php:852 +#: ../../mod/content.php:853 ../../object/Item.php:326 +#: ../../object/Item.php:327 ../../include/conversation.php:654 +#, php-format +msgid "View %s's profile @ %s" msgstr "" -#: ../../mod/contacts.php:468 -msgid "Contact Editor" +#: ../../mod/content.php:481 ../../mod/content.php:864 +#: ../../object/Item.php:340 ../../include/conversation.php:674 +#, php-format +msgid "%s from %s" msgstr "" -#: ../../mod/contacts.php:471 -msgid "Profile Visibility" +#: ../../mod/content.php:497 ../../include/conversation.php:690 +msgid "View in context" msgstr "" -#: ../../mod/contacts.php:472 +#: ../../mod/content.php:603 ../../object/Item.php:387 #, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/content.php:605 ../../object/Item.php:389 +#: ../../object/Item.php:402 ../../include/text.php:1969 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/content.php:606 ../../boot.php:746 ../../object/Item.php:390 +#: ../../include/contact_widgets.php:205 +msgid "show more" msgstr "" -#: ../../mod/contacts.php:473 -msgid "Contact Information / Notes" +#: ../../mod/content.php:620 ../../mod/photos.php:1359 +#: ../../object/Item.php:116 +msgid "Private Message" msgstr "" -#: ../../mod/contacts.php:474 -msgid "Edit contact notes" +#: ../../mod/content.php:684 ../../mod/photos.php:1542 +#: ../../object/Item.php:231 +msgid "I like this (toggle)" msgstr "" -#: ../../mod/contacts.php:480 -msgid "Block/Unblock contact" +#: ../../mod/content.php:684 ../../object/Item.php:231 +msgid "like" msgstr "" -#: ../../mod/contacts.php:481 -msgid "Ignore contact" +#: ../../mod/content.php:685 ../../mod/photos.php:1543 +#: ../../object/Item.php:232 +msgid "I don't like this (toggle)" msgstr "" -#: ../../mod/contacts.php:482 -msgid "Repair URL settings" +#: ../../mod/content.php:685 ../../object/Item.php:232 +msgid "dislike" msgstr "" -#: ../../mod/contacts.php:483 -msgid "View conversations" +#: ../../mod/content.php:687 ../../object/Item.php:234 +msgid "Share this" msgstr "" -#: ../../mod/contacts.php:485 -msgid "Delete contact" +#: ../../mod/content.php:687 ../../object/Item.php:234 +msgid "share" msgstr "" -#: ../../mod/contacts.php:489 -msgid "Last update:" +#: ../../mod/content.php:707 ../../mod/photos.php:1562 +#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 +#: ../../object/Item.php:675 +msgid "This is you" msgstr "" -#: ../../mod/contacts.php:491 -msgid "Update public posts" +#: ../../mod/content.php:709 ../../mod/photos.php:1564 +#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:745 +#: ../../object/Item.php:361 ../../object/Item.php:677 +msgid "Comment" msgstr "" -#: ../../mod/contacts.php:500 -msgid "Currently blocked" +#: ../../mod/content.php:711 ../../object/Item.php:679 +msgid "Bold" msgstr "" -#: ../../mod/contacts.php:501 -msgid "Currently ignored" +#: ../../mod/content.php:712 ../../object/Item.php:680 +msgid "Italic" msgstr "" -#: ../../mod/contacts.php:502 -msgid "Currently archived" +#: ../../mod/content.php:713 ../../object/Item.php:681 +msgid "Underline" msgstr "" -#: ../../mod/contacts.php:503 -msgid "" -"Replies/likes to your public posts may still be visible" +#: ../../mod/content.php:714 ../../object/Item.php:682 +msgid "Quote" msgstr "" -#: ../../mod/contacts.php:504 -msgid "Notification for new posts" +#: ../../mod/content.php:715 ../../object/Item.php:683 +msgid "Code" msgstr "" -#: ../../mod/contacts.php:504 -msgid "Send a notification of every new post of this contact" +#: ../../mod/content.php:716 ../../object/Item.php:684 +msgid "Image" msgstr "" -#: ../../mod/contacts.php:505 -msgid "Fetch further information for feeds" +#: ../../mod/content.php:717 ../../object/Item.php:685 +msgid "Link" msgstr "" -#: ../../mod/contacts.php:556 -msgid "Suggestions" +#: ../../mod/content.php:718 ../../object/Item.php:686 +msgid "Video" msgstr "" -#: ../../mod/contacts.php:559 -msgid "Suggest potential friends" +#: ../../mod/content.php:719 ../../mod/editpost.php:145 +#: ../../mod/photos.php:1566 ../../mod/photos.php:1610 +#: ../../mod/photos.php:1698 ../../object/Item.php:687 +#: ../../include/conversation.php:1126 +msgid "Preview" msgstr "" -#: ../../mod/contacts.php:562 ../../mod/group.php:194 -msgid "All Contacts" +#: ../../mod/content.php:728 ../../mod/settings.php:676 +#: ../../object/Item.php:120 +msgid "Edit" msgstr "" -#: ../../mod/contacts.php:565 -msgid "Show all contacts" +#: ../../mod/content.php:753 ../../object/Item.php:195 +msgid "add star" msgstr "" -#: ../../mod/contacts.php:568 -msgid "Unblocked" +#: ../../mod/content.php:754 ../../object/Item.php:196 +msgid "remove star" msgstr "" -#: ../../mod/contacts.php:571 -msgid "Only show unblocked contacts" +#: ../../mod/content.php:755 ../../object/Item.php:197 +msgid "toggle star status" msgstr "" -#: ../../mod/contacts.php:575 -msgid "Blocked" +#: ../../mod/content.php:758 ../../object/Item.php:200 +msgid "starred" msgstr "" -#: ../../mod/contacts.php:578 -msgid "Only show blocked contacts" +#: ../../mod/content.php:759 ../../object/Item.php:220 +msgid "add tag" msgstr "" -#: ../../mod/contacts.php:582 -msgid "Ignored" +#: ../../mod/content.php:763 ../../object/Item.php:133 +msgid "save to folder" msgstr "" -#: ../../mod/contacts.php:585 -msgid "Only show ignored contacts" +#: ../../mod/content.php:854 ../../object/Item.php:328 +msgid "to" msgstr "" -#: ../../mod/contacts.php:589 -msgid "Archived" +#: ../../mod/content.php:855 ../../object/Item.php:330 +msgid "Wall-to-Wall" msgstr "" -#: ../../mod/contacts.php:592 -msgid "Only show archived contacts" +#: ../../mod/content.php:856 ../../object/Item.php:331 +msgid "via Wall-To-Wall:" msgstr "" -#: ../../mod/contacts.php:596 -msgid "Hidden" +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +msgid "Remove My Account" msgstr "" -#: ../../mod/contacts.php:599 -msgid "Only show hidden contacts" +#: ../../mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." msgstr "" -#: ../../mod/contacts.php:647 -msgid "Mutual Friendship" +#: ../../mod/removeme.php:48 +msgid "Please enter your password for verification:" msgstr "" -#: ../../mod/contacts.php:651 -msgid "is a fan of yours" +#: ../../mod/install.php:117 +msgid "Friendica Communications Server - Setup" msgstr "" -#: ../../mod/contacts.php:655 -msgid "you are a fan of" +#: ../../mod/install.php:123 +msgid "Could not connect to database." msgstr "" -#: ../../mod/contacts.php:694 ../../view/theme/diabook/theme.php:125 -#: ../../include/nav.php:175 -msgid "Contacts" +#: ../../mod/install.php:127 +msgid "Could not create table." msgstr "" -#: ../../mod/contacts.php:698 -msgid "Search your contacts" +#: ../../mod/install.php:133 +msgid "Your Friendica site database has been installed." msgstr "" -#: ../../mod/contacts.php:699 ../../mod/directory.php:61 -msgid "Finding: " +#: ../../mod/install.php:138 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." msgstr "" -#: ../../mod/contacts.php:700 ../../mod/directory.php:63 -#: ../../include/contact_widgets.php:34 -msgid "Find" +#: ../../mod/install.php:139 ../../mod/install.php:206 +#: ../../mod/install.php:525 +msgid "Please see the file \"INSTALL.txt\"." msgstr "" -#: ../../mod/contacts.php:705 ../../mod/settings.php:132 -#: ../../mod/settings.php:637 -msgid "Update" +#: ../../mod/install.php:203 +msgid "System check" msgstr "" -#: ../../mod/videos.php:125 -msgid "No videos selected" +#: ../../mod/install.php:208 +msgid "Check again" msgstr "" -#: ../../mod/videos.php:317 -msgid "Recent Videos" +#: ../../mod/install.php:227 +msgid "Database connection" msgstr "" -#: ../../mod/videos.php:319 -msgid "Upload New Videos" +#: ../../mod/install.php:228 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." msgstr "" -#: ../../mod/common.php:42 -msgid "Common Friends" +#: ../../mod/install.php:229 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" -#: ../../mod/common.php:78 -msgid "No contacts in common." +#: ../../mod/install.php:230 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." msgstr "" -#: ../../mod/follow.php:27 -msgid "Contact added" +#: ../../mod/install.php:234 +msgid "Database Server Name" msgstr "" -#: ../../mod/uimport.php:66 -msgid "Move account" +#: ../../mod/install.php:235 +msgid "Database Login Name" msgstr "" -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." +#: ../../mod/install.php:236 +msgid "Database Login Password" 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." +#: ../../mod/install.php:237 +msgid "Database Name" msgstr "" -#: ../../mod/uimport.php:69 +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "Site administrator email address" +msgstr "" + +#: ../../mod/install.php:238 ../../mod/install.php:277 msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" +"Your account email address must match this in order to use the web admin " +"panel." msgstr "" -#: ../../mod/uimport.php:70 -msgid "Account file" +#: ../../mod/install.php:242 ../../mod/install.php:280 +msgid "Please select a default timezone for your website" msgstr "" -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" +#: ../../mod/install.php:267 +msgid "Site settings" msgstr "" -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" +#: ../../mod/install.php:321 +msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" +#: ../../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/allfriends.php:40 -msgid "No friends to display." +#: ../../mod/install.php:326 +msgid "PHP executable path" msgstr "" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" +#: ../../mod/install.php:326 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." msgstr "" -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" +#: ../../mod/install.php:331 +msgid "Command line PHP" msgstr "" -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " +#: ../../mod/install.php:340 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "" -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139 -msgid "Remove" +#: ../../mod/install.php:341 +msgid "Found PHP version: " msgstr "" -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" +#: ../../mod/install.php:343 +msgid "PHP cli binary" msgstr "" -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" +#: ../../mod/install.php:354 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." msgstr "" -#: ../../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." +#: ../../mod/install.php:355 +msgid "This is required for message delivery to work." msgstr "" -#: ../../mod/newmember.php:14 -msgid "Getting Started" +#: ../../mod/install.php:357 +msgid "PHP register_argc_argv" msgstr "" -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" +#: ../../mod/install.php:378 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" msgstr "" -#: ../../mod/newmember.php:18 +#: ../../mod/install.php:379 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." +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." msgstr "" -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" +#: ../../mod/install.php:381 +msgid "Generate encryption keys" 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." +#: ../../mod/install.php:388 +msgid "libCurl PHP module" 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." +#: ../../mod/install.php:389 +msgid "GD graphics PHP module" msgstr "" -#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2090 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 -#: ../../include/nav.php:77 -msgid "Profile" +#: ../../mod/install.php:390 +msgid "OpenSSL PHP module" msgstr "" -#: ../../mod/newmember.php:36 ../../mod/profiles.php:658 -#: ../../mod/profile_photo.php:244 -msgid "Upload Profile Photo" +#: ../../mod/install.php:391 +msgid "mysqli PHP module" msgstr "" -#: ../../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." +#: ../../mod/install.php:392 +msgid "mb_string PHP module" msgstr "" -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" +#: ../../mod/install.php:397 ../../mod/install.php:399 +msgid "Apache mod_rewrite module" msgstr "" -#: ../../mod/newmember.php:38 +#: ../../mod/install.php:397 msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown " -"visitors." +"Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" +#: ../../mod/install.php:405 +msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: ../../mod/newmember.php:40 +#: ../../mod/install.php:409 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." +"Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: ../../mod/newmember.php:44 -msgid "Connecting" +#: ../../mod/install.php:413 +msgid "Error: openssl PHP module required but not installed." msgstr "" -#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../include/contact_selectors.php:81 -msgid "Facebook" +#: ../../mod/install.php:417 +msgid "Error: mysqli PHP module required but not installed." msgstr "" -#: ../../mod/newmember.php:49 +#: ../../mod/install.php:421 +msgid "Error: mb_string PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:438 msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." msgstr "" -#: ../../mod/newmember.php:51 +#: ../../mod/install.php:439 msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." msgstr "" -#: ../../mod/newmember.php:56 -msgid "Importing Emails" +#: ../../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/newmember.php:56 +#: ../../mod/install.php:441 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" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"INSTALL.txt\" for instructions." msgstr "" -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" +#: ../../mod/install.php:444 +msgid ".htconfig.php is writable" msgstr "" -#: ../../mod/newmember.php:58 +#: ../../mod/install.php:454 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." +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." msgstr "" -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" +#: ../../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/newmember.php:60 +#: ../../mod/install.php:456 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." +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." msgstr "" -#: ../../mod/newmember.php:62 -msgid "Finding New People" +#: ../../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/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." +#: ../../mod/install.php:460 +msgid "view/smarty3 is writable" msgstr "" -#: ../../mod/newmember.php:66 ../../include/group.php:270 -msgid "Groups" +#: ../../mod/install.php:472 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." msgstr "" -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" +#: ../../mod/install.php:474 +msgid "Url rewrite is working" msgstr "" -#: ../../mod/newmember.php:70 +#: ../../mod/install.php:484 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." +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." msgstr "" -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" +#: ../../mod/install.php:523 +msgid "

What next

" msgstr "" -#: ../../mod/newmember.php:73 +#: ../../mod/install.php:524 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." +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../mod/newmember.php:78 -msgid "Getting Help" +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." msgstr "" -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." msgstr "" -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program " -"features and resources." +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." msgstr "" -#: ../../mod/search.php:21 ../../mod/network.php:179 -msgid "Remove term" +#: ../../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 "" -#: ../../mod/search.php:30 ../../mod/network.php:188 -#: ../../include/features.php:42 -msgid "Saved Searches" +#: ../../mod/help.php:79 +msgid "Help:" msgstr "" -#: ../../mod/search.php:99 ../../include/text.php:952 -#: ../../include/text.php:953 ../../include/nav.php:119 -msgid "Search" +#: ../../mod/help.php:84 ../../include/nav.php:114 +msgid "Help" msgstr "" -#: ../../mod/search.php:170 ../../mod/search.php:196 -#: ../../mod/community.php:62 ../../mod/community.php:71 -msgid "No results." +#: ../../mod/help.php:90 ../../index.php:256 +msgid "Not Found" msgstr "" -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." +#: ../../mod/help.php:93 ../../index.php:259 +msgid "Page not found." msgstr "" -#: ../../mod/invite.php:49 +#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #, php-format -msgid "%s : Not a valid email address." +msgid "%1$s welcomes %2$s" msgstr "" -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" +#: ../../mod/home.php:35 +#, php-format +msgid "Welcome to %s" msgstr "" -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." +#: ../../mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "" - -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." + +#: ../../mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" msgstr "" -#: ../../mod/invite.php:93 +#: ../../mod/wall_attach.php:81 #, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" +msgid "File exceeds size limit of %d" msgstr "" -#: ../../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." +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +msgid "File upload failed." msgstr "" -#: ../../mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." +#: ../../mod/match.php:12 +msgid "Profile Match" 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." +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." msgstr "" -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other " -"public sites or invite members." +#: ../../mod/match.php:57 +msgid "is interested in:" msgstr "" -#: ../../mod/invite.php:132 -msgid "Send invitations" +#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1563 +#: ../../include/contact_widgets.php:10 +msgid "Connect" msgstr "" -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" +#: ../../mod/share.php:44 +msgid "link" msgstr "" -#: ../../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." +#: ../../mod/community.php:23 +msgid "Not available." msgstr "" -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" +#: ../../mod/community.php:32 ../../include/nav.php:129 +#: ../../view/theme/diabook/theme.php:129 +msgid "Community" msgstr "" -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" +#: ../../mod/community.php:62 ../../mod/community.php:71 +#: ../../mod/search.php:170 ../../mod/search.php:196 +msgid "No results." msgstr "" -#: ../../mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" +#: ../../mod/settings.php:29 ../../mod/photos.php:80 +msgid "everybody" msgstr "" #: ../../mod/settings.php:41 @@ -3543,7 +3571,7 @@ msgstr "" msgid "Display" msgstr "" -#: ../../mod/settings.php:52 ../../mod/settings.php:777 +#: ../../mod/settings.php:52 ../../mod/settings.php:780 msgid "Social Networks" msgstr "" @@ -3603,1606 +3631,1772 @@ msgstr "" msgid "Password update failed. Please try again." msgstr "" -#: ../../mod/settings.php:426 +#: ../../mod/settings.php:428 msgid " Please use a shorter name." msgstr "" -#: ../../mod/settings.php:428 +#: ../../mod/settings.php:430 msgid " Name too short." msgstr "" -#: ../../mod/settings.php:437 +#: ../../mod/settings.php:439 msgid "Wrong Password" msgstr "" -#: ../../mod/settings.php:442 +#: ../../mod/settings.php:444 msgid " Not valid email." msgstr "" -#: ../../mod/settings.php:448 +#: ../../mod/settings.php:450 msgid " Cannot change to that email." msgstr "" -#: ../../mod/settings.php:503 +#: ../../mod/settings.php:506 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "" -#: ../../mod/settings.php:507 +#: ../../mod/settings.php:510 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "" -#: ../../mod/settings.php:537 +#: ../../mod/settings.php:540 msgid "Settings updated." msgstr "" -#: ../../mod/settings.php:610 ../../mod/settings.php:636 -#: ../../mod/settings.php:672 +#: ../../mod/settings.php:613 ../../mod/settings.php:639 +#: ../../mod/settings.php:675 msgid "Add application" msgstr "" -#: ../../mod/settings.php:614 ../../mod/settings.php:640 +#: ../../mod/settings.php:617 ../../mod/settings.php:643 msgid "Consumer Key" msgstr "" -#: ../../mod/settings.php:615 ../../mod/settings.php:641 +#: ../../mod/settings.php:618 ../../mod/settings.php:644 msgid "Consumer Secret" msgstr "" -#: ../../mod/settings.php:616 ../../mod/settings.php:642 +#: ../../mod/settings.php:619 ../../mod/settings.php:645 msgid "Redirect" msgstr "" -#: ../../mod/settings.php:617 ../../mod/settings.php:643 +#: ../../mod/settings.php:620 ../../mod/settings.php:646 msgid "Icon url" msgstr "" -#: ../../mod/settings.php:628 +#: ../../mod/settings.php:631 msgid "You can't edit this application." msgstr "" -#: ../../mod/settings.php:671 +#: ../../mod/settings.php:674 msgid "Connected Apps" msgstr "" -#: ../../mod/settings.php:675 +#: ../../mod/settings.php:678 msgid "Client key starts with" msgstr "" -#: ../../mod/settings.php:676 +#: ../../mod/settings.php:679 msgid "No name" msgstr "" -#: ../../mod/settings.php:677 +#: ../../mod/settings.php:680 msgid "Remove authorization" msgstr "" -#: ../../mod/settings.php:689 +#: ../../mod/settings.php:692 msgid "No Plugin settings configured" msgstr "" -#: ../../mod/settings.php:697 +#: ../../mod/settings.php:700 msgid "Plugin Settings" msgstr "" -#: ../../mod/settings.php:711 +#: ../../mod/settings.php:714 msgid "Off" msgstr "" -#: ../../mod/settings.php:711 +#: ../../mod/settings.php:714 msgid "On" msgstr "" -#: ../../mod/settings.php:719 +#: ../../mod/settings.php:722 msgid "Additional Features" msgstr "" -#: ../../mod/settings.php:733 ../../mod/settings.php:734 +#: ../../mod/settings.php:736 ../../mod/settings.php:737 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "" -#: ../../mod/settings.php:733 ../../mod/settings.php:734 +#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "" + +#: ../../mod/settings.php:736 ../../mod/settings.php:737 msgid "enabled" msgstr "" -#: ../../mod/settings.php:733 ../../mod/settings.php:734 +#: ../../mod/settings.php:736 ../../mod/settings.php:737 msgid "disabled" msgstr "" -#: ../../mod/settings.php:734 +#: ../../mod/settings.php:737 msgid "StatusNet" msgstr "" -#: ../../mod/settings.php:770 +#: ../../mod/settings.php:773 msgid "Email access is disabled on this site." msgstr "" -#: ../../mod/settings.php:782 +#: ../../mod/settings.php:785 msgid "Email/Mailbox Setup" msgstr "" -#: ../../mod/settings.php:783 +#: ../../mod/settings.php:786 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "" -#: ../../mod/settings.php:784 +#: ../../mod/settings.php:787 msgid "Last successful email check:" msgstr "" -#: ../../mod/settings.php:786 +#: ../../mod/settings.php:789 msgid "IMAP server name:" msgstr "" -#: ../../mod/settings.php:787 +#: ../../mod/settings.php:790 msgid "IMAP port:" msgstr "" -#: ../../mod/settings.php:788 +#: ../../mod/settings.php:791 msgid "Security:" msgstr "" -#: ../../mod/settings.php:788 ../../mod/settings.php:793 +#: ../../mod/settings.php:791 ../../mod/settings.php:796 msgid "None" msgstr "" -#: ../../mod/settings.php:789 +#: ../../mod/settings.php:792 msgid "Email login name:" msgstr "" -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:793 msgid "Email password:" msgstr "" -#: ../../mod/settings.php:791 +#: ../../mod/settings.php:794 msgid "Reply-to address:" msgstr "" -#: ../../mod/settings.php:792 +#: ../../mod/settings.php:795 msgid "Send public posts to all email contacts:" msgstr "" -#: ../../mod/settings.php:793 +#: ../../mod/settings.php:796 msgid "Action after import:" msgstr "" -#: ../../mod/settings.php:793 +#: ../../mod/settings.php:796 msgid "Mark as seen" msgstr "" -#: ../../mod/settings.php:793 +#: ../../mod/settings.php:796 msgid "Move to folder" msgstr "" -#: ../../mod/settings.php:794 +#: ../../mod/settings.php:797 msgid "Move to folder:" msgstr "" -#: ../../mod/settings.php:875 +#: ../../mod/settings.php:878 msgid "Display Settings" msgstr "" -#: ../../mod/settings.php:881 ../../mod/settings.php:896 +#: ../../mod/settings.php:884 ../../mod/settings.php:899 msgid "Display Theme:" msgstr "" -#: ../../mod/settings.php:882 +#: ../../mod/settings.php:885 msgid "Mobile Theme:" msgstr "" -#: ../../mod/settings.php:883 +#: ../../mod/settings.php:886 msgid "Update browser every xx seconds" msgstr "" -#: ../../mod/settings.php:883 +#: ../../mod/settings.php:886 msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../mod/settings.php:884 +#: ../../mod/settings.php:887 msgid "Number of items to display per page:" msgstr "" -#: ../../mod/settings.php:884 ../../mod/settings.php:885 +#: ../../mod/settings.php:887 ../../mod/settings.php:888 msgid "Maximum of 100 items" msgstr "" -#: ../../mod/settings.php:885 +#: ../../mod/settings.php:888 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: ../../mod/settings.php:886 +#: ../../mod/settings.php:889 msgid "Don't show emoticons" msgstr "" -#: ../../mod/settings.php:887 +#: ../../mod/settings.php:890 msgid "Don't show notices" msgstr "" -#: ../../mod/settings.php:888 +#: ../../mod/settings.php:891 msgid "Infinite scroll" msgstr "" -#: ../../mod/settings.php:889 +#: ../../mod/settings.php:892 msgid "Automatic updates only at the top of the network page" msgstr "" -#: ../../mod/settings.php:966 +#: ../../mod/settings.php:969 msgid "User Types" msgstr "" -#: ../../mod/settings.php:967 +#: ../../mod/settings.php:970 msgid "Community Types" msgstr "" -#: ../../mod/settings.php:968 +#: ../../mod/settings.php:971 msgid "Normal Account Page" msgstr "" -#: ../../mod/settings.php:969 +#: ../../mod/settings.php:972 msgid "This account is a normal personal profile" msgstr "" -#: ../../mod/settings.php:972 +#: ../../mod/settings.php:975 msgid "Soapbox Page" msgstr "" -#: ../../mod/settings.php:973 +#: ../../mod/settings.php:976 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "" -#: ../../mod/settings.php:976 +#: ../../mod/settings.php:979 msgid "Community Forum/Celebrity Account" msgstr "" -#: ../../mod/settings.php:977 +#: ../../mod/settings.php:980 msgid "Automatically approve all connection/friend requests as read-write fans" msgstr "" -#: ../../mod/settings.php:980 +#: ../../mod/settings.php:983 msgid "Automatic Friend Page" msgstr "" -#: ../../mod/settings.php:981 +#: ../../mod/settings.php:984 msgid "Automatically approve all connection/friend requests as friends" msgstr "" -#: ../../mod/settings.php:984 +#: ../../mod/settings.php:987 msgid "Private Forum [Experimental]" msgstr "" -#: ../../mod/settings.php:985 +#: ../../mod/settings.php:988 msgid "Private forum - approved members only" msgstr "" -#: ../../mod/settings.php:997 +#: ../../mod/settings.php:1000 msgid "OpenID:" msgstr "" -#: ../../mod/settings.php:997 +#: ../../mod/settings.php:1000 msgid "(Optional) Allow this OpenID to login to this account." msgstr "" -#: ../../mod/settings.php:1007 +#: ../../mod/settings.php:1010 msgid "Publish your default profile in your local site directory?" msgstr "" -#: ../../mod/settings.php:1013 +#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 +#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 +#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 +#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 +#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 +#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 +#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 +#: ../../mod/register.php:234 ../../mod/profiles.php:627 +#: ../../mod/profiles.php:631 ../../mod/api.php:106 +msgid "No" +msgstr "" + +#: ../../mod/settings.php:1016 msgid "Publish your default profile in the global social directory?" msgstr "" -#: ../../mod/settings.php:1021 +#: ../../mod/settings.php:1024 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "" -#: ../../mod/settings.php:1025 ../../include/conversation.php:1057 +#: ../../mod/settings.php:1028 ../../include/conversation.php:1057 msgid "Hide your profile details from unknown viewers?" msgstr "" -#: ../../mod/settings.php:1030 +#: ../../mod/settings.php:1028 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: ../../mod/settings.php:1033 msgid "Allow friends to post to your profile page?" msgstr "" -#: ../../mod/settings.php:1036 +#: ../../mod/settings.php:1039 msgid "Allow friends to tag your posts?" msgstr "" -#: ../../mod/settings.php:1042 +#: ../../mod/settings.php:1045 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../mod/settings.php:1048 +#: ../../mod/settings.php:1051 msgid "Permit unknown people to send you private mail?" msgstr "" -#: ../../mod/settings.php:1056 +#: ../../mod/settings.php:1059 msgid "Profile is not published." msgstr "" -#: ../../mod/settings.php:1059 ../../mod/profile_photo.php:248 -msgid "or" -msgstr "" - -#: ../../mod/settings.php:1064 +#: ../../mod/settings.php:1067 msgid "Your Identity Address is" msgstr "" -#: ../../mod/settings.php:1075 +#: ../../mod/settings.php:1078 msgid "Automatically expire posts after this many days:" msgstr "" -#: ../../mod/settings.php:1075 +#: ../../mod/settings.php:1078 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: ../../mod/settings.php:1076 +#: ../../mod/settings.php:1079 msgid "Advanced expiration settings" msgstr "" -#: ../../mod/settings.php:1077 +#: ../../mod/settings.php:1080 msgid "Advanced Expiration" msgstr "" -#: ../../mod/settings.php:1078 +#: ../../mod/settings.php:1081 msgid "Expire posts:" msgstr "" -#: ../../mod/settings.php:1079 -msgid "Expire personal notes:" +#: ../../mod/settings.php:1082 +msgid "Expire personal notes:" +msgstr "" + +#: ../../mod/settings.php:1083 +msgid "Expire starred posts:" +msgstr "" + +#: ../../mod/settings.php:1084 +msgid "Expire photos:" +msgstr "" + +#: ../../mod/settings.php:1085 +msgid "Only expire posts by others:" +msgstr "" + +#: ../../mod/settings.php:1111 +msgid "Account Settings" +msgstr "" + +#: ../../mod/settings.php:1119 +msgid "Password Settings" +msgstr "" + +#: ../../mod/settings.php:1120 +msgid "New Password:" +msgstr "" + +#: ../../mod/settings.php:1121 +msgid "Confirm:" +msgstr "" + +#: ../../mod/settings.php:1121 +msgid "Leave password fields blank unless changing" +msgstr "" + +#: ../../mod/settings.php:1122 +msgid "Current Password:" +msgstr "" + +#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 +msgid "Your current password to confirm the changes" +msgstr "" + +#: ../../mod/settings.php:1123 +msgid "Password:" +msgstr "" + +#: ../../mod/settings.php:1127 +msgid "Basic Settings" +msgstr "" + +#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "" + +#: ../../mod/settings.php:1129 +msgid "Email Address:" +msgstr "" + +#: ../../mod/settings.php:1130 +msgid "Your Timezone:" +msgstr "" + +#: ../../mod/settings.php:1131 +msgid "Default Post Location:" +msgstr "" + +#: ../../mod/settings.php:1132 +msgid "Use Browser Location:" +msgstr "" + +#: ../../mod/settings.php:1135 +msgid "Security and Privacy Settings" +msgstr "" + +#: ../../mod/settings.php:1137 +msgid "Maximum Friend Requests/Day:" +msgstr "" + +#: ../../mod/settings.php:1137 ../../mod/settings.php:1167 +msgid "(to prevent spam abuse)" +msgstr "" + +#: ../../mod/settings.php:1138 +msgid "Default Post Permissions" +msgstr "" + +#: ../../mod/settings.php:1139 +msgid "(click to open/close)" +msgstr "" + +#: ../../mod/settings.php:1148 ../../mod/photos.php:1146 +#: ../../mod/photos.php:1519 +msgid "Show to Groups" +msgstr "" + +#: ../../mod/settings.php:1149 ../../mod/photos.php:1147 +#: ../../mod/photos.php:1520 +msgid "Show to Contacts" +msgstr "" + +#: ../../mod/settings.php:1150 +msgid "Default Private Post" +msgstr "" + +#: ../../mod/settings.php:1151 +msgid "Default Public Post" +msgstr "" + +#: ../../mod/settings.php:1155 +msgid "Default Permissions for New Posts" +msgstr "" + +#: ../../mod/settings.php:1167 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: ../../mod/settings.php:1170 +msgid "Notification Settings" +msgstr "" + +#: ../../mod/settings.php:1171 +msgid "By default post a status message when:" +msgstr "" + +#: ../../mod/settings.php:1172 +msgid "accepting a friend request" +msgstr "" + +#: ../../mod/settings.php:1173 +msgid "joining a forum/community" +msgstr "" + +#: ../../mod/settings.php:1174 +msgid "making an interesting profile change" +msgstr "" + +#: ../../mod/settings.php:1175 +msgid "Send a notification email when:" +msgstr "" + +#: ../../mod/settings.php:1176 +msgid "You receive an introduction" msgstr "" -#: ../../mod/settings.php:1080 -msgid "Expire starred posts:" +#: ../../mod/settings.php:1177 +msgid "Your introductions are confirmed" msgstr "" -#: ../../mod/settings.php:1081 -msgid "Expire photos:" +#: ../../mod/settings.php:1178 +msgid "Someone writes on your profile wall" msgstr "" -#: ../../mod/settings.php:1082 -msgid "Only expire posts by others:" +#: ../../mod/settings.php:1179 +msgid "Someone writes a followup comment" msgstr "" -#: ../../mod/settings.php:1108 -msgid "Account Settings" +#: ../../mod/settings.php:1180 +msgid "You receive a private message" msgstr "" -#: ../../mod/settings.php:1116 -msgid "Password Settings" +#: ../../mod/settings.php:1181 +msgid "You receive a friend suggestion" msgstr "" -#: ../../mod/settings.php:1117 -msgid "New Password:" +#: ../../mod/settings.php:1182 +msgid "You are tagged in a post" msgstr "" -#: ../../mod/settings.php:1118 -msgid "Confirm:" +#: ../../mod/settings.php:1183 +msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../mod/settings.php:1118 -msgid "Leave password fields blank unless changing" +#: ../../mod/settings.php:1185 +msgid "Text-only notification emails" msgstr "" -#: ../../mod/settings.php:1119 -msgid "Current Password:" +#: ../../mod/settings.php:1187 +msgid "Send text only notification emails, without the html part" msgstr "" -#: ../../mod/settings.php:1119 ../../mod/settings.php:1120 -msgid "Your current password to confirm the changes" +#: ../../mod/settings.php:1189 +msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../mod/settings.php:1120 -msgid "Password:" +#: ../../mod/settings.php:1190 +msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../mod/settings.php:1124 -msgid "Basic Settings" +#: ../../mod/settings.php:1193 +msgid "Relocate" msgstr "" -#: ../../mod/settings.php:1125 ../../include/profile_advanced.php:15 -msgid "Full Name:" +#: ../../mod/settings.php:1194 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." msgstr "" -#: ../../mod/settings.php:1126 -msgid "Email Address:" +#: ../../mod/settings.php:1195 +msgid "Resend relocate message to contacts" msgstr "" -#: ../../mod/settings.php:1127 -msgid "Your Timezone:" +#: ../../mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." msgstr "" -#: ../../mod/settings.php:1128 -msgid "Default Post Location:" +#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." msgstr "" -#: ../../mod/settings.php:1129 -msgid "Use Browser Location:" +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." msgstr "" -#: ../../mod/settings.php:1132 -msgid "Security and Privacy Settings" +#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." msgstr "" -#: ../../mod/settings.php:1134 -msgid "Maximum Friend Requests/Day:" -msgstr "" +#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "" +msgstr[1] "" -#: ../../mod/settings.php:1134 ../../mod/settings.php:1164 -msgid "(to prevent spam abuse)" +#: ../../mod/dfrn_request.php:172 +msgid "Introduction complete." msgstr "" -#: ../../mod/settings.php:1135 -msgid "Default Post Permissions" +#: ../../mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." msgstr "" -#: ../../mod/settings.php:1136 -msgid "(click to open/close)" +#: ../../mod/dfrn_request.php:242 +msgid "Profile unavailable." msgstr "" -#: ../../mod/settings.php:1147 -msgid "Default Private Post" +#: ../../mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." msgstr "" -#: ../../mod/settings.php:1148 -msgid "Default Public Post" +#: ../../mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." msgstr "" -#: ../../mod/settings.php:1152 -msgid "Default Permissions for New Posts" +#: ../../mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." msgstr "" -#: ../../mod/settings.php:1164 -msgid "Maximum private messages per day from unknown people:" +#: ../../mod/dfrn_request.php:331 +msgid "Invalid locator" msgstr "" -#: ../../mod/settings.php:1167 -msgid "Notification Settings" +#: ../../mod/dfrn_request.php:340 +msgid "Invalid email address." msgstr "" -#: ../../mod/settings.php:1168 -msgid "By default post a status message when:" +#: ../../mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." msgstr "" -#: ../../mod/settings.php:1169 -msgid "accepting a friend request" +#: ../../mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." msgstr "" -#: ../../mod/settings.php:1170 -msgid "joining a forum/community" +#: ../../mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." msgstr "" -#: ../../mod/settings.php:1171 -msgid "making an interesting profile change" +#: ../../mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." msgstr "" -#: ../../mod/settings.php:1172 -msgid "Send a notification email when:" +#: ../../mod/dfrn_request.php:501 +msgid "Invalid profile URL." msgstr "" -#: ../../mod/settings.php:1173 -msgid "You receive an introduction" +#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27 +msgid "Disallowed profile URL." msgstr "" -#: ../../mod/settings.php:1174 -msgid "Your introductions are confirmed" +#: ../../mod/dfrn_request.php:597 +msgid "Your introduction has been sent." msgstr "" -#: ../../mod/settings.php:1175 -msgid "Someone writes on your profile wall" +#: ../../mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." msgstr "" -#: ../../mod/settings.php:1176 -msgid "Someone writes a followup comment" +#: ../../mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to this profile." msgstr "" -#: ../../mod/settings.php:1177 -msgid "You receive a private message" +#: ../../mod/dfrn_request.php:671 +msgid "Hide this contact" msgstr "" -#: ../../mod/settings.php:1178 -msgid "You receive a friend suggestion" +#: ../../mod/dfrn_request.php:674 +#, php-format +msgid "Welcome home %s." msgstr "" -#: ../../mod/settings.php:1179 -msgid "You are tagged in a post" +#: ../../mod/dfrn_request.php:675 +#, php-format +msgid "Please confirm your introduction/connection request to %s." msgstr "" -#: ../../mod/settings.php:1180 -msgid "You are poked/prodded/etc. in a post" +#: ../../mod/dfrn_request.php:676 +msgid "Confirm" msgstr "" -#: ../../mod/settings.php:1183 -msgid "Advanced Account/Page Type Settings" +#: ../../mod/dfrn_request.php:804 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" msgstr "" -#: ../../mod/settings.php:1184 -msgid "Change the behaviour of this account for special situations" +#: ../../mod/dfrn_request.php:824 +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/settings.php:1187 -msgid "Relocate" +#: ../../mod/dfrn_request.php:827 +msgid "Friend/Connection Request" msgstr "" -#: ../../mod/settings.php:1188 +#: ../../mod/dfrn_request.php:828 msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" msgstr "" -#: ../../mod/settings.php:1189 -msgid "Resend relocate message to contacts" +#: ../../mod/dfrn_request.php:829 +msgid "Please answer the following:" msgstr "" -#: ../../mod/display.php:452 -msgid "Item has been removed." +#: ../../mod/dfrn_request.php:830 +#, php-format +msgid "Does %s know you?" msgstr "" -#: ../../mod/dirfind.php:26 -msgid "People Search" +#: ../../mod/dfrn_request.php:834 +msgid "Add a personal note:" msgstr "" -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" +#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76 +msgid "Friendica" msgstr "" -#: ../../mod/profiles.php:37 -msgid "Profile deleted." +#: ../../mod/dfrn_request.php:837 +msgid "StatusNet/Federated Social Web" msgstr "" -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" +#: ../../mod/dfrn_request.php:839 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search " +"bar." msgstr "" -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." +#: ../../mod/dfrn_request.php:840 +msgid "Your Identity Address:" msgstr "" -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." +#: ../../mod/dfrn_request.php:843 +msgid "Submit Request" msgstr "" -#: ../../mod/profiles.php:172 -msgid "Profile Name is required." +#: ../../mod/register.php:90 +msgid "" +"Registration successful. Please check your email for further instructions." msgstr "" -#: ../../mod/profiles.php:323 -msgid "Marital Status" +#: ../../mod/register.php:96 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." msgstr "" -#: ../../mod/profiles.php:327 -msgid "Romantic Partner" +#: ../../mod/register.php:105 +msgid "Your registration can not be processed." msgstr "" -#: ../../mod/profiles.php:331 -msgid "Likes" +#: ../../mod/register.php:148 +msgid "Your registration is pending approval by the site owner." msgstr "" -#: ../../mod/profiles.php:335 -msgid "Dislikes" +#: ../../mod/register.php:186 ../../mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." msgstr "" -#: ../../mod/profiles.php:339 -msgid "Work/Employment" +#: ../../mod/register.php:214 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." msgstr "" -#: ../../mod/profiles.php:342 -msgid "Religion" +#: ../../mod/register.php:215 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." msgstr "" -#: ../../mod/profiles.php:346 -msgid "Political Views" +#: ../../mod/register.php:216 +msgid "Your OpenID (optional): " msgstr "" -#: ../../mod/profiles.php:350 -msgid "Gender" +#: ../../mod/register.php:230 +msgid "Include your profile in member directory?" msgstr "" -#: ../../mod/profiles.php:354 -msgid "Sexual Preference" +#: ../../mod/register.php:251 +msgid "Membership on this site is by invitation only." msgstr "" -#: ../../mod/profiles.php:358 -msgid "Homepage" +#: ../../mod/register.php:252 +msgid "Your invitation ID: " msgstr "" -#: ../../mod/profiles.php:362 ../../mod/profiles.php:657 -msgid "Interests" +#: ../../mod/register.php:263 +msgid "Your Full Name (e.g. Joe Smith): " msgstr "" -#: ../../mod/profiles.php:366 -msgid "Address" +#: ../../mod/register.php:264 +msgid "Your Email Address: " msgstr "" -#: ../../mod/profiles.php:373 ../../mod/profiles.php:653 -msgid "Location" +#: ../../mod/register.php:265 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be 'nickname@$sitename'." msgstr "" -#: ../../mod/profiles.php:456 -msgid "Profile updated." +#: ../../mod/register.php:266 +msgid "Choose a nickname: " msgstr "" -#: ../../mod/profiles.php:527 -msgid " and " +#: ../../mod/register.php:269 ../../boot.php:1236 ../../include/nav.php:109 +msgid "Register" msgstr "" -#: ../../mod/profiles.php:535 -msgid "public profile" +#: ../../mod/register.php:275 ../../mod/uimport.php:64 +msgid "Import" msgstr "" -#: ../../mod/profiles.php:538 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" +#: ../../mod/register.php:276 +msgid "Import your profile to this friendica instance" msgstr "" -#: ../../mod/profiles.php:539 -#, php-format -msgid " - Visit %1$s's %2$s" +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" msgstr "" -#: ../../mod/profiles.php:542 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +#: ../../mod/search.php:99 ../../include/text.php:952 +#: ../../include/text.php:953 ../../include/nav.php:119 +msgid "Search" msgstr "" -#: ../../mod/profiles.php:617 -msgid "Hide contacts and friends:" +#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525 +msgid "Global Directory" msgstr "" -#: ../../mod/profiles.php:622 -msgid "Hide your contact/friend list from viewers of this profile?" +#: ../../mod/directory.php:59 +msgid "Find on this site" msgstr "" -#: ../../mod/profiles.php:644 -msgid "Edit Profile Details" +#: ../../mod/directory.php:62 +msgid "Site Directory" msgstr "" -#: ../../mod/profiles.php:646 -msgid "Change Profile Photo" +#: ../../mod/directory.php:113 ../../mod/profiles.php:716 +msgid "Age: " msgstr "" -#: ../../mod/profiles.php:647 -msgid "View this profile" +#: ../../mod/directory.php:116 +msgid "Gender: " msgstr "" -#: ../../mod/profiles.php:648 -msgid "Create a new profile using these settings" +#: ../../mod/directory.php:138 ../../boot.php:1645 +#: ../../include/profile_advanced.php:17 +msgid "Gender:" msgstr "" -#: ../../mod/profiles.php:649 -msgid "Clone this profile" +#: ../../mod/directory.php:140 ../../boot.php:1648 +#: ../../include/profile_advanced.php:37 +msgid "Status:" msgstr "" -#: ../../mod/profiles.php:650 -msgid "Delete this profile" +#: ../../mod/directory.php:142 ../../boot.php:1650 +#: ../../include/profile_advanced.php:48 +msgid "Homepage:" msgstr "" -#: ../../mod/profiles.php:651 -msgid "Basic information" +#: ../../mod/directory.php:144 ../../boot.php:1652 +#: ../../include/profile_advanced.php:58 +msgid "About:" msgstr "" -#: ../../mod/profiles.php:652 -msgid "Profile picture" +#: ../../mod/directory.php:189 +msgid "No entries (some entries may be hidden)." msgstr "" -#: ../../mod/profiles.php:654 -msgid "Preferences" +#: ../../mod/delegate.php:101 +msgid "No potential page delegates located." msgstr "" -#: ../../mod/profiles.php:655 -msgid "Status information" +#: ../../mod/delegate.php:130 ../../include/nav.php:168 +msgid "Delegate Page Management" msgstr "" -#: ../../mod/profiles.php:656 -msgid "Additional information" +#: ../../mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." msgstr "" -#: ../../mod/profiles.php:659 -msgid "Profile Name:" +#: ../../mod/delegate.php:133 +msgid "Existing Page Managers" msgstr "" -#: ../../mod/profiles.php:660 -msgid "Your Full Name:" +#: ../../mod/delegate.php:135 +msgid "Existing Page Delegates" msgstr "" -#: ../../mod/profiles.php:661 -msgid "Title/Description:" +#: ../../mod/delegate.php:137 +msgid "Potential Delegates" msgstr "" -#: ../../mod/profiles.php:662 -msgid "Your Gender:" +#: ../../mod/delegate.php:140 +msgid "Add" msgstr "" -#: ../../mod/profiles.php:663 -#, php-format -msgid "Birthday (%s):" +#: ../../mod/delegate.php:141 +msgid "No entries." msgstr "" -#: ../../mod/profiles.php:664 -msgid "Street Address:" +#: ../../mod/common.php:42 +msgid "Common Friends" msgstr "" -#: ../../mod/profiles.php:665 -msgid "Locality/City:" +#: ../../mod/common.php:78 +msgid "No contacts in common." msgstr "" -#: ../../mod/profiles.php:666 -msgid "Postal/Zip Code:" +#: ../../mod/uexport.php:77 +msgid "Export account" msgstr "" -#: ../../mod/profiles.php:667 -msgid "Country:" +#: ../../mod/uexport.php:77 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." msgstr "" -#: ../../mod/profiles.php:668 -msgid "Region/State:" +#: ../../mod/uexport.php:78 +msgid "Export all" msgstr "" -#: ../../mod/profiles.php:669 -msgid " Marital Status:" +#: ../../mod/uexport.php:78 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" msgstr "" -#: ../../mod/profiles.php:670 -msgid "Who: (if applicable)" +#: ../../mod/mood.php:62 ../../include/conversation.php:227 +#, php-format +msgid "%1$s is currently %2$s" msgstr "" -#: ../../mod/profiles.php:671 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../mod/mood.php:133 +msgid "Mood" msgstr "" -#: ../../mod/profiles.php:672 -msgid "Since [date]:" +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" msgstr "" -#: ../../mod/profiles.php:673 ../../include/profile_advanced.php:46 -msgid "Sexual Preference:" +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" msgstr "" -#: ../../mod/profiles.php:674 -msgid "Homepage URL:" +#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35 +#: ../../view/theme/diabook/theme.php:527 +msgid "Friend Suggestions" msgstr "" -#: ../../mod/profiles.php:675 ../../include/profile_advanced.php:50 -msgid "Hometown:" +#: ../../mod/suggest.php:74 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: ../../mod/profiles.php:676 ../../include/profile_advanced.php:54 -msgid "Political Views:" +#: ../../mod/suggest.php:92 +msgid "Ignore/Hide" msgstr "" -#: ../../mod/profiles.php:677 -msgid "Religious Views:" +#: ../../mod/profiles.php:37 +msgid "Profile deleted." msgstr "" -#: ../../mod/profiles.php:678 -msgid "Public Keywords:" +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" msgstr "" -#: ../../mod/profiles.php:679 -msgid "Private Keywords:" +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." msgstr "" -#: ../../mod/profiles.php:680 ../../include/profile_advanced.php:62 -msgid "Likes:" +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." msgstr "" -#: ../../mod/profiles.php:681 ../../include/profile_advanced.php:64 -msgid "Dislikes:" +#: ../../mod/profiles.php:172 +msgid "Profile Name is required." msgstr "" -#: ../../mod/profiles.php:682 -msgid "Example: fishing photography software" +#: ../../mod/profiles.php:323 +msgid "Marital Status" msgstr "" -#: ../../mod/profiles.php:683 -msgid "(Used for suggesting potential friends, can be seen by others)" +#: ../../mod/profiles.php:327 +msgid "Romantic Partner" msgstr "" -#: ../../mod/profiles.php:684 -msgid "(Used for searching profiles, never shown to others)" +#: ../../mod/profiles.php:331 +msgid "Likes" msgstr "" -#: ../../mod/profiles.php:685 -msgid "Tell us about yourself..." +#: ../../mod/profiles.php:335 +msgid "Dislikes" msgstr "" -#: ../../mod/profiles.php:686 -msgid "Hobbies/Interests" +#: ../../mod/profiles.php:339 +msgid "Work/Employment" msgstr "" -#: ../../mod/profiles.php:687 -msgid "Contact information and Social Networks" +#: ../../mod/profiles.php:342 +msgid "Religion" msgstr "" -#: ../../mod/profiles.php:688 -msgid "Musical interests" +#: ../../mod/profiles.php:346 +msgid "Political Views" msgstr "" -#: ../../mod/profiles.php:689 -msgid "Books, literature" +#: ../../mod/profiles.php:350 +msgid "Gender" msgstr "" -#: ../../mod/profiles.php:690 -msgid "Television" +#: ../../mod/profiles.php:354 +msgid "Sexual Preference" msgstr "" -#: ../../mod/profiles.php:691 -msgid "Film/dance/culture/entertainment" +#: ../../mod/profiles.php:358 +msgid "Homepage" msgstr "" -#: ../../mod/profiles.php:692 -msgid "Love/romance" +#: ../../mod/profiles.php:362 ../../mod/profiles.php:664 +msgid "Interests" msgstr "" -#: ../../mod/profiles.php:693 -msgid "Work/employment" +#: ../../mod/profiles.php:366 +msgid "Address" msgstr "" -#: ../../mod/profiles.php:694 -msgid "School/education" +#: ../../mod/profiles.php:373 ../../mod/profiles.php:660 +msgid "Location" msgstr "" -#: ../../mod/profiles.php:699 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." +#: ../../mod/profiles.php:456 +msgid "Profile updated." msgstr "" -#: ../../mod/profiles.php:709 ../../mod/directory.php:113 -msgid "Age: " +#: ../../mod/profiles.php:534 +msgid " and " msgstr "" -#: ../../mod/profiles.php:762 -msgid "Edit/Manage Profiles" +#: ../../mod/profiles.php:542 +msgid "public profile" msgstr "" -#: ../../mod/profiles.php:763 ../../boot.php:1585 ../../boot.php:1611 -msgid "Change profile photo" +#: ../../mod/profiles.php:545 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../mod/profiles.php:764 ../../boot.php:1586 -msgid "Create New Profile" +#: ../../mod/profiles.php:546 +#, php-format +msgid " - Visit %1$s's %2$s" msgstr "" -#: ../../mod/profiles.php:775 ../../boot.php:1596 -msgid "Profile Image" +#: ../../mod/profiles.php:549 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../mod/profiles.php:777 ../../boot.php:1599 -msgid "visible to everybody" +#: ../../mod/profiles.php:624 +msgid "Hide contacts and friends:" msgstr "" -#: ../../mod/profiles.php:778 ../../boot.php:1600 -msgid "Edit visibility" +#: ../../mod/profiles.php:629 +msgid "Hide your contact/friend list from viewers of this profile?" msgstr "" -#: ../../mod/share.php:44 -msgid "link" +#: ../../mod/profiles.php:651 +msgid "Edit Profile Details" msgstr "" -#: ../../mod/uexport.php:77 -msgid "Export account" +#: ../../mod/profiles.php:653 +msgid "Change Profile Photo" msgstr "" -#: ../../mod/uexport.php:77 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." +#: ../../mod/profiles.php:654 +msgid "View this profile" msgstr "" -#: ../../mod/uexport.php:78 -msgid "Export all" +#: ../../mod/profiles.php:655 +msgid "Create a new profile using these settings" msgstr "" -#: ../../mod/uexport.php:78 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" +#: ../../mod/profiles.php:656 +msgid "Clone this profile" msgstr "" -#: ../../mod/ping.php:240 -msgid "{0} wants to be your friend" +#: ../../mod/profiles.php:657 +msgid "Delete this profile" msgstr "" -#: ../../mod/ping.php:245 -msgid "{0} sent you a message" +#: ../../mod/profiles.php:658 +msgid "Basic information" msgstr "" -#: ../../mod/ping.php:250 -msgid "{0} requested registration" +#: ../../mod/profiles.php:659 +msgid "Profile picture" msgstr "" -#: ../../mod/ping.php:256 -#, php-format -msgid "{0} commented %s's post" +#: ../../mod/profiles.php:661 +msgid "Preferences" msgstr "" -#: ../../mod/ping.php:261 -#, php-format -msgid "{0} liked %s's post" +#: ../../mod/profiles.php:662 +msgid "Status information" msgstr "" -#: ../../mod/ping.php:266 -#, php-format -msgid "{0} disliked %s's post" +#: ../../mod/profiles.php:663 +msgid "Additional information" msgstr "" -#: ../../mod/ping.php:271 -#, php-format -msgid "{0} is now friends with %s" +#: ../../mod/profiles.php:666 +msgid "Profile Name:" msgstr "" -#: ../../mod/ping.php:276 -msgid "{0} posted" +#: ../../mod/profiles.php:667 +msgid "Your Full Name:" msgstr "" -#: ../../mod/ping.php:281 -#, php-format -msgid "{0} tagged %s's post with #%s" +#: ../../mod/profiles.php:668 +msgid "Title/Description:" msgstr "" -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" +#: ../../mod/profiles.php:669 +msgid "Your Gender:" msgstr "" -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" +#: ../../mod/profiles.php:670 +#, php-format +msgid "Birthday (%s):" msgstr "" -#: ../../mod/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" +#: ../../mod/profiles.php:671 +msgid "Street Address:" msgstr "" -#: ../../mod/community.php:23 -msgid "Not available." +#: ../../mod/profiles.php:672 +msgid "Locality/City:" msgstr "" -#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:129 -#: ../../include/nav.php:129 -msgid "Community" +#: ../../mod/profiles.php:673 +msgid "Postal/Zip Code:" msgstr "" -#: ../../mod/filer.php:30 ../../include/conversation.php:1006 -#: ../../include/conversation.php:1024 -msgid "Save to Folder:" +#: ../../mod/profiles.php:674 +msgid "Country:" msgstr "" -#: ../../mod/filer.php:30 -msgid "- select -" +#: ../../mod/profiles.php:675 +msgid "Region/State:" msgstr "" -#: ../../mod/wall_attach.php:75 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +#: ../../mod/profiles.php:676 +msgid " Marital Status:" msgstr "" -#: ../../mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" +#: ../../mod/profiles.php:677 +msgid "Who: (if applicable)" msgstr "" -#: ../../mod/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %d" +#: ../../mod/profiles.php:678 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." +#: ../../mod/profiles.php:679 +msgid "Since [date]:" msgstr "" -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." +#: ../../mod/profiles.php:680 ../../include/profile_advanced.php:46 +msgid "Sexual Preference:" msgstr "" -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" +#: ../../mod/profiles.php:681 +msgid "Homepage URL:" msgstr "" -#: ../../mod/profperm.php:105 ../../mod/group.php:224 -msgid "Click on a contact to add or remove." +#: ../../mod/profiles.php:682 ../../include/profile_advanced.php:50 +msgid "Hometown:" msgstr "" -#: ../../mod/profperm.php:114 -msgid "Visible To" +#: ../../mod/profiles.php:683 ../../include/profile_advanced.php:54 +msgid "Political Views:" msgstr "" -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" +#: ../../mod/profiles.php:684 +msgid "Religious Views:" msgstr "" -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" +#: ../../mod/profiles.php:685 +msgid "Public Keywords:" msgstr "" -#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:527 -#: ../../include/contact_widgets.php:35 -msgid "Friend Suggestions" +#: ../../mod/profiles.php:686 +msgid "Private Keywords:" msgstr "" -#: ../../mod/suggest.php:72 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +#: ../../mod/profiles.php:687 ../../include/profile_advanced.php:62 +msgid "Likes:" msgstr "" -#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1542 -#: ../../include/contact_widgets.php:10 -msgid "Connect" +#: ../../mod/profiles.php:688 ../../include/profile_advanced.php:64 +msgid "Dislikes:" msgstr "" -#: ../../mod/suggest.php:90 -msgid "Ignore/Hide" +#: ../../mod/profiles.php:689 +msgid "Example: fishing photography software" msgstr "" -#: ../../mod/viewsrc.php:7 -msgid "Access denied." +#: ../../mod/profiles.php:690 +msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "" -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" +#: ../../mod/profiles.php:691 +msgid "(Used for searching profiles, never shown to others)" msgstr "" -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" +#: ../../mod/profiles.php:692 +msgid "Tell us about yourself..." msgstr "" -#: ../../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" +#: ../../mod/profiles.php:693 +msgid "Hobbies/Interests" msgstr "" -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " +#: ../../mod/profiles.php:694 +msgid "Contact information and Social Networks" msgstr "" -#: ../../mod/delegate.php:101 -msgid "No potential page delegates located." +#: ../../mod/profiles.php:695 +msgid "Musical interests" msgstr "" -#: ../../mod/delegate.php:130 ../../include/nav.php:168 -msgid "Delegate Page Management" +#: ../../mod/profiles.php:696 +msgid "Books, literature" msgstr "" -#: ../../mod/delegate.php:132 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." +#: ../../mod/profiles.php:697 +msgid "Television" msgstr "" -#: ../../mod/delegate.php:133 -msgid "Existing Page Managers" +#: ../../mod/profiles.php:698 +msgid "Film/dance/culture/entertainment" msgstr "" -#: ../../mod/delegate.php:135 -msgid "Existing Page Delegates" +#: ../../mod/profiles.php:699 +msgid "Love/romance" msgstr "" -#: ../../mod/delegate.php:137 -msgid "Potential Delegates" +#: ../../mod/profiles.php:700 +msgid "Work/employment" msgstr "" -#: ../../mod/delegate.php:140 -msgid "Add" +#: ../../mod/profiles.php:701 +msgid "School/education" msgstr "" -#: ../../mod/delegate.php:141 -msgid "No entries." +#: ../../mod/profiles.php:706 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." msgstr "" -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." +#: ../../mod/profiles.php:769 +msgid "Edit/Manage Profiles" msgstr "" -#: ../../mod/viewcontacts.php:76 ../../include/text.php:875 -msgid "View Contacts" +#: ../../mod/profiles.php:770 ../../boot.php:1606 ../../boot.php:1632 +msgid "Change profile photo" msgstr "" -#: ../../mod/notes.php:44 ../../boot.php:2121 -msgid "Personal Notes" +#: ../../mod/profiles.php:771 ../../boot.php:1607 +msgid "Create New Profile" msgstr "" -#: ../../mod/poke.php:192 -msgid "Poke/Prod" +#: ../../mod/profiles.php:782 ../../boot.php:1617 +msgid "Profile Image" msgstr "" -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" +#: ../../mod/profiles.php:784 ../../boot.php:1620 +msgid "visible to everybody" msgstr "" -#: ../../mod/poke.php:194 -msgid "Recipient" +#: ../../mod/profiles.php:785 ../../boot.php:1621 +msgid "Edit visibility" msgstr "" -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" msgstr "" -#: ../../mod/poke.php:198 -msgid "Make this post private" +#: ../../mod/editpost.php:39 +msgid "Edit post" msgstr "" -#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525 -msgid "Global Directory" +#: ../../mod/editpost.php:111 ../../include/conversation.php:1092 +msgid "upload photo" msgstr "" -#: ../../mod/directory.php:59 -msgid "Find on this site" +#: ../../mod/editpost.php:112 ../../include/conversation.php:1093 +msgid "Attach file" msgstr "" -#: ../../mod/directory.php:62 -msgid "Site Directory" +#: ../../mod/editpost.php:113 ../../include/conversation.php:1094 +msgid "attach file" msgstr "" -#: ../../mod/directory.php:116 -msgid "Gender: " +#: ../../mod/editpost.php:115 ../../include/conversation.php:1096 +msgid "web link" msgstr "" -#: ../../mod/directory.php:138 ../../boot.php:1624 -#: ../../include/profile_advanced.php:17 -msgid "Gender:" +#: ../../mod/editpost.php:116 ../../include/conversation.php:1097 +msgid "Insert video link" msgstr "" -#: ../../mod/directory.php:140 ../../boot.php:1627 -#: ../../include/profile_advanced.php:37 -msgid "Status:" +#: ../../mod/editpost.php:117 ../../include/conversation.php:1098 +msgid "video link" msgstr "" -#: ../../mod/directory.php:142 ../../boot.php:1629 -#: ../../include/profile_advanced.php:48 -msgid "Homepage:" +#: ../../mod/editpost.php:118 ../../include/conversation.php:1099 +msgid "Insert audio link" msgstr "" -#: ../../mod/directory.php:144 ../../include/profile_advanced.php:58 -msgid "About:" +#: ../../mod/editpost.php:119 ../../include/conversation.php:1100 +msgid "audio link" msgstr "" -#: ../../mod/directory.php:189 -msgid "No entries (some entries may be hidden)." +#: ../../mod/editpost.php:120 ../../include/conversation.php:1101 +msgid "Set your location" msgstr "" -#: ../../mod/localtime.php:12 ../../include/event.php:11 -#: ../../include/bb2diaspora.php:134 -msgid "l F d, Y \\@ g:i A" +#: ../../mod/editpost.php:121 ../../include/conversation.php:1102 +msgid "set location" msgstr "" -#: ../../mod/localtime.php:24 -msgid "Time Conversion" +#: ../../mod/editpost.php:122 ../../include/conversation.php:1103 +msgid "Clear browser location" msgstr "" -#: ../../mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." +#: ../../mod/editpost.php:123 ../../include/conversation.php:1104 +msgid "clear location" msgstr "" -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" +#: ../../mod/editpost.php:125 ../../include/conversation.php:1110 +msgid "Permission settings" msgstr "" -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" +#: ../../mod/editpost.php:133 ../../include/conversation.php:1119 +msgid "CC: email addresses" +msgstr "" + +#: ../../mod/editpost.php:134 ../../include/conversation.php:1120 +msgid "Public post" msgstr "" -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" +#: ../../mod/editpost.php:137 ../../include/conversation.php:1106 +msgid "Set title" msgstr "" -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" +#: ../../mod/editpost.php:139 ../../include/conversation.php:1108 +msgid "Categories (comma-separated list)" msgstr "" -#: ../../mod/oexchange.php:25 -msgid "Post successful." +#: ../../mod/editpost.php:140 ../../include/conversation.php:1122 +msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." +#: ../../mod/friendica.php:62 +msgid "This is Friendica, version" msgstr "" -#: ../../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." +#: ../../mod/friendica.php:63 +msgid "running at web location" msgstr "" -#: ../../mod/profile_photo.php:118 +#: ../../mod/friendica.php:65 msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" - -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" +"Please visit Friendica.com to learn " +"more about the Friendica project." msgstr "" -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" +#: ../../mod/friendica.php:67 +msgid "Bug reports and issues: please visit" msgstr "" -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" +#: ../../mod/friendica.php:68 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" msgstr "" -#: ../../mod/profile_photo.php:245 -msgid "Upload" +#: ../../mod/friendica.php:82 +msgid "Installed plugins/addons/apps:" msgstr "" -#: ../../mod/profile_photo.php:248 -msgid "skip this step" +#: ../../mod/friendica.php:95 +msgid "No installed plugins/addons/apps" msgstr "" -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" msgstr "" -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" msgstr "" -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." +#: ../../mod/api.php:89 +msgid "Please login to continue." msgstr "" -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" +#: ../../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 "" -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." msgstr "" -#: ../../mod/install.php:117 -msgid "Friendica Communications Server - Setup" +#: ../../mod/lockview.php:48 +msgid "Visible to:" msgstr "" -#: ../../mod/install.php:123 -msgid "Could not connect to database." +#: ../../mod/notes.php:44 ../../boot.php:2145 +msgid "Personal Notes" msgstr "" -#: ../../mod/install.php:127 -msgid "Could not create table." +#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148 +#: ../../include/event.php:11 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." +#: ../../mod/localtime.php:24 +msgid "Time Conversion" msgstr "" -#: ../../mod/install.php:138 +#: ../../mod/localtime.php:26 msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." msgstr "" -#: ../../mod/install.php:139 ../../mod/install.php:206 -#: ../../mod/install.php:525 -msgid "Please see the file \"INSTALL.txt\"." +#: ../../mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" msgstr "" -#: ../../mod/install.php:203 -msgid "System check" +#: ../../mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" msgstr "" -#: ../../mod/install.php:208 -msgid "Check again" +#: ../../mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" msgstr "" -#: ../../mod/install.php:227 -msgid "Database connection" +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" msgstr "" -#: ../../mod/install.php:228 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." +#: ../../mod/poke.php:192 +msgid "Poke/Prod" msgstr "" -#: ../../mod/install.php:229 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" msgstr "" -#: ../../mod/install.php:230 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: ../../mod/poke.php:194 +msgid "Recipient" msgstr "" -#: ../../mod/install.php:234 -msgid "Database Server Name" +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" msgstr "" -#: ../../mod/install.php:235 -msgid "Database Login Name" +#: ../../mod/poke.php:198 +msgid "Make this post private" msgstr "" -#: ../../mod/install.php:236 -msgid "Database Login Password" +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." msgstr "" -#: ../../mod/install.php:237 -msgid "Database Name" +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." msgstr "" -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" 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." +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: ../../mod/install.php:242 ../../mod/install.php:280 -msgid "Please select a default timezone for your website" +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." msgstr "" -#: ../../mod/install.php:267 -msgid "Site settings" -msgstr "" +#: ../../mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" -#: ../../mod/install.php:321 -msgid "Could not find a command line version of PHP in the web server PATH." +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" msgstr "" -#: ../../mod/install.php:322 +#: ../../mod/invite.php:120 +#, php-format 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" +"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/install.php:326 +#: ../../mod/invite.php:122 +#, php-format msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." msgstr "" -#: ../../mod/install.php:331 -msgid "Command line PHP" +#: ../../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/install.php:340 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +#: ../../mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other " +"public sites or invite members." msgstr "" -#: ../../mod/install.php:341 -msgid "Found PHP version: " +#: ../../mod/invite.php:132 +msgid "Send invitations" msgstr "" -#: ../../mod/install.php:343 -msgid "PHP cli binary" +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" msgstr "" -#: ../../mod/install.php:354 +#: ../../mod/invite.php:135 msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" - -#: ../../mod/install.php:355 -msgid "This is required for message delivery to work." +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." msgstr "" -#: ../../mod/install.php:357 -msgid "PHP register_argc_argv" +#: ../../mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" msgstr "" -#: ../../mod/install.php:378 +#: ../../mod/invite.php:137 msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +"Once you have registered, please connect with me via my profile page at:" msgstr "" -#: ../../mod/install.php:379 +#: ../../mod/invite.php:139 msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" msgstr "" -#: ../../mod/install.php:381 -msgid "Generate encryption keys" +#: ../../mod/photos.php:52 ../../boot.php:2124 +msgid "Photo Albums" msgstr "" -#: ../../mod/install.php:388 -msgid "libCurl PHP module" +#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1760 ../../mod/photos.php:1772 +#: ../../view/theme/diabook/theme.php:499 +msgid "Contact Photos" msgstr "" -#: ../../mod/install.php:389 -msgid "GD graphics PHP module" +#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 +msgid "Upload New Photos" +msgstr "" + +#: ../../mod/photos.php:144 +msgid "Contact information unavailable" msgstr "" -#: ../../mod/install.php:390 -msgid "OpenSSL PHP module" +#: ../../mod/photos.php:165 +msgid "Album not found." msgstr "" -#: ../../mod/install.php:391 -msgid "mysqli PHP module" +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +msgid "Delete Album" msgstr "" -#: ../../mod/install.php:392 -msgid "mb_string PHP module" +#: ../../mod/photos.php:198 +msgid "Do you really want to delete this photo album and all its photos?" msgstr "" -#: ../../mod/install.php:397 ../../mod/install.php:399 -msgid "Apache mod_rewrite module" +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 +msgid "Delete Photo" msgstr "" -#: ../../mod/install.php:397 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../mod/photos.php:287 +msgid "Do you really want to delete this photo?" msgstr "" -#: ../../mod/install.php:405 -msgid "Error: libCURL PHP module required but not installed." +#: ../../mod/photos.php:662 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" msgstr "" -#: ../../mod/install.php:409 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." +#: ../../mod/photos.php:662 +msgid "a photo" msgstr "" -#: ../../mod/install.php:413 -msgid "Error: openssl PHP module required but not installed." +#: ../../mod/photos.php:767 +msgid "Image exceeds size limit of " msgstr "" -#: ../../mod/install.php:417 -msgid "Error: mysqli PHP module required but not installed." +#: ../../mod/photos.php:775 +msgid "Image file is empty." msgstr "" -#: ../../mod/install.php:421 -msgid "Error: mb_string PHP module required but not installed." +#: ../../mod/photos.php:930 +msgid "No photos selected" msgstr "" -#: ../../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." +#: ../../mod/photos.php:1094 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "" -#: ../../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." +#: ../../mod/photos.php:1129 +msgid "Upload Photos" msgstr "" -#: ../../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." +#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 +msgid "New album name: " 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." +#: ../../mod/photos.php:1134 +msgid "or existing album name: " msgstr "" -#: ../../mod/install.php:444 -msgid ".htconfig.php is writable" +#: ../../mod/photos.php:1135 +msgid "Do not show a status post for this upload" 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." +#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 +msgid "Permissions" 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." +#: ../../mod/photos.php:1148 +msgid "Private Photo" 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." +#: ../../mod/photos.php:1149 +msgid "Public Photo" 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." +#: ../../mod/photos.php:1212 +msgid "Edit Album" msgstr "" -#: ../../mod/install.php:460 -msgid "view/smarty3 is writable" +#: ../../mod/photos.php:1218 +msgid "Show Newest First" msgstr "" -#: ../../mod/install.php:472 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." +#: ../../mod/photos.php:1220 +msgid "Show Oldest First" msgstr "" -#: ../../mod/install.php:474 -msgid "Url rewrite is working" +#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 +msgid "View Photo" 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." +#: ../../mod/photos.php:1294 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../mod/install.php:523 -msgid "

What next

" +#: ../../mod/photos.php:1296 +msgid "Photo not available" msgstr "" -#: ../../mod/install.php:524 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: ../../mod/photos.php:1352 +msgid "View photo" msgstr "" -#: ../../mod/group.php:29 -msgid "Group created." +#: ../../mod/photos.php:1352 +msgid "Edit photo" msgstr "" -#: ../../mod/group.php:35 -msgid "Could not create group." +#: ../../mod/photos.php:1353 +msgid "Use as profile photo" msgstr "" -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." +#: ../../mod/photos.php:1378 +msgid "View Full Size" msgstr "" -#: ../../mod/group.php:60 -msgid "Group name changed." +#: ../../mod/photos.php:1457 +msgid "Tags: " msgstr "" -#: ../../mod/group.php:87 -msgid "Save Group" +#: ../../mod/photos.php:1460 +msgid "[Remove any tag]" msgstr "" -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." +#: ../../mod/photos.php:1500 +msgid "Rotate CW (right)" msgstr "" -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " +#: ../../mod/photos.php:1501 +msgid "Rotate CCW (left)" msgstr "" -#: ../../mod/group.php:113 -msgid "Group removed." +#: ../../mod/photos.php:1503 +msgid "New album name" msgstr "" -#: ../../mod/group.php:115 -msgid "Unable to remove group." +#: ../../mod/photos.php:1506 +msgid "Caption" msgstr "" -#: ../../mod/group.php:179 -msgid "Group Editor" +#: ../../mod/photos.php:1508 +msgid "Add a Tag" msgstr "" -#: ../../mod/group.php:192 -msgid "Members" +#: ../../mod/photos.php:1512 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "" -#: ../../mod/content.php:119 ../../mod/network.php:514 -msgid "No such group" +#: ../../mod/photos.php:1521 +msgid "Private photo" msgstr "" -#: ../../mod/content.php:130 ../../mod/network.php:531 -msgid "Group is empty" +#: ../../mod/photos.php:1522 +msgid "Public photo" msgstr "" -#: ../../mod/content.php:134 ../../mod/network.php:538 -msgid "Group: " +#: ../../mod/photos.php:1544 ../../include/conversation.php:1090 +msgid "Share" msgstr "" -#: ../../mod/content.php:497 ../../include/conversation.php:690 -msgid "View in context" +#: ../../mod/photos.php:1817 +msgid "Recent Photos" msgstr "" #: ../../mod/regmod.php:55 @@ -5218,865 +5412,860 @@ msgstr "" msgid "Please login." msgstr "" -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "" - -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "" - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "" - -#: ../../mod/item.php:113 -msgid "Unable to locate original post." +#: ../../mod/uimport.php:66 +msgid "Move account" msgstr "" -#: ../../mod/item.php:326 -msgid "Empty post discarded." +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." msgstr "" -#: ../../mod/item.php:919 -msgid "System error. Post not saved." +#: ../../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/item.php:945 -#, php-format +#: ../../mod/uimport.php:69 msgid "" -"This message was sent to you by %s, a member of the Friendica social network." +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" msgstr "" -#: ../../mod/item.php:947 -#, php-format -msgid "You may visit them online at %s" +#: ../../mod/uimport.php:70 +msgid "Account file" msgstr "" -#: ../../mod/item.php:948 +#: ../../mod/uimport.php:70 msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" msgstr "" -#: ../../mod/item.php:952 -#, php-format -msgid "%s posted an update." +#: ../../mod/attach.php:8 +msgid "Item not available." msgstr "" -#: ../../mod/mood.php:62 ../../include/conversation.php:227 -#, php-format -msgid "%1$s is currently %2$s" +#: ../../mod/attach.php:20 +msgid "Item was not found." msgstr "" -#: ../../mod/mood.php:133 -msgid "Mood" +#: ../../boot.php:744 +msgid "Delete this item?" msgstr "" -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" +#: ../../boot.php:747 +msgid "show fewer" msgstr "" -#: ../../mod/network.php:136 -msgid "Search Results For:" +#: ../../boot.php:1117 +#, php-format +msgid "Update %s failed. See error logs." msgstr "" -#: ../../mod/network.php:189 ../../include/group.php:275 -msgid "add" +#: ../../boot.php:1235 +msgid "Create a New Account" msgstr "" -#: ../../mod/network.php:350 -msgid "Commented Order" +#: ../../boot.php:1260 ../../include/nav.php:73 +msgid "Logout" msgstr "" -#: ../../mod/network.php:353 -msgid "Sort by Comment Date" +#: ../../boot.php:1261 ../../include/nav.php:92 +msgid "Login" msgstr "" -#: ../../mod/network.php:356 -msgid "Posted Order" +#: ../../boot.php:1263 +msgid "Nickname or Email address: " msgstr "" -#: ../../mod/network.php:359 -msgid "Sort by Post Date" +#: ../../boot.php:1264 +msgid "Password: " msgstr "" -#: ../../mod/network.php:368 -msgid "Posts that mention or involve you" +#: ../../boot.php:1265 +msgid "Remember me" msgstr "" -#: ../../mod/network.php:374 -msgid "New" +#: ../../boot.php:1268 +msgid "Or login using OpenID: " msgstr "" -#: ../../mod/network.php:377 -msgid "Activity Stream - by date" +#: ../../boot.php:1274 +msgid "Forgot your password?" msgstr "" -#: ../../mod/network.php:383 -msgid "Shared Links" +#: ../../boot.php:1277 +msgid "Website Terms of Service" msgstr "" -#: ../../mod/network.php:386 -msgid "Interesting Links" +#: ../../boot.php:1278 +msgid "terms of service" msgstr "" -#: ../../mod/network.php:392 -msgid "Starred" +#: ../../boot.php:1280 +msgid "Website Privacy Policy" msgstr "" -#: ../../mod/network.php:395 -msgid "Favourite Posts" +#: ../../boot.php:1281 +msgid "privacy policy" msgstr "" -#: ../../mod/network.php:457 -#, 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] "" -msgstr[1] "" +#: ../../boot.php:1414 +msgid "Requested account is not available." +msgstr "" -#: ../../mod/network.php:460 -msgid "Private messages to this group are at risk of public disclosure." +#: ../../boot.php:1496 ../../boot.php:1630 +#: ../../include/profile_advanced.php:84 +msgid "Edit profile" msgstr "" -#: ../../mod/network.php:548 -msgid "Contact: " +#: ../../boot.php:1595 +msgid "Message" msgstr "" -#: ../../mod/network.php:550 -msgid "Private messages to this person are at risk of public disclosure." +#: ../../boot.php:1601 ../../include/nav.php:173 +msgid "Profiles" msgstr "" -#: ../../mod/network.php:555 -msgid "Invalid contact." +#: ../../boot.php:1601 +msgid "Manage/edit profiles" msgstr "" -#: ../../mod/crepair.php:106 -msgid "Contact settings applied." +#: ../../boot.php:1701 +msgid "Network:" msgstr "" -#: ../../mod/crepair.php:108 -msgid "Contact update failed." +#: ../../boot.php:1731 ../../boot.php:1817 +msgid "g A l F d" msgstr "" -#: ../../mod/crepair.php:139 -msgid "Repair Contact Settings" +#: ../../boot.php:1732 ../../boot.php:1818 +msgid "F d" msgstr "" -#: ../../mod/crepair.php:141 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect " -"information your communications with this contact may stop working." +#: ../../boot.php:1777 ../../boot.php:1858 +msgid "[today]" msgstr "" -#: ../../mod/crepair.php:142 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." +#: ../../boot.php:1789 +msgid "Birthday Reminders" msgstr "" -#: ../../mod/crepair.php:148 -msgid "Return to contact editor" +#: ../../boot.php:1790 +msgid "Birthdays this week:" msgstr "" -#: ../../mod/crepair.php:161 -msgid "Account Nickname" +#: ../../boot.php:1851 +msgid "[No description]" msgstr "" -#: ../../mod/crepair.php:162 -msgid "@Tagname - overrides Name/Nickname" +#: ../../boot.php:1869 +msgid "Event Reminders" msgstr "" -#: ../../mod/crepair.php:163 -msgid "Account URL" +#: ../../boot.php:1870 +msgid "Events this week:" msgstr "" -#: ../../mod/crepair.php:164 -msgid "Friend Request URL" +#: ../../boot.php:2107 ../../include/nav.php:76 +msgid "Status" msgstr "" -#: ../../mod/crepair.php:165 -msgid "Friend Confirm URL" +#: ../../boot.php:2110 +msgid "Status Messages and Posts" msgstr "" -#: ../../mod/crepair.php:166 -msgid "Notification Endpoint URL" +#: ../../boot.php:2117 +msgid "Profile Details" msgstr "" -#: ../../mod/crepair.php:167 -msgid "Poll/Feed URL" +#: ../../boot.php:2128 ../../boot.php:2131 ../../include/nav.php:79 +msgid "Videos" msgstr "" -#: ../../mod/crepair.php:168 -msgid "New photo from this URL" +#: ../../boot.php:2141 +msgid "Events and Calendar" msgstr "" -#: ../../mod/crepair.php:169 -msgid "Remote Self" +#: ../../boot.php:2148 +msgid "Only You Can See This" msgstr "" -#: ../../mod/crepair.php:171 -msgid "Mirror postings from this contact" +#: ../../object/Item.php:94 +msgid "This entry was edited" msgstr "" -#: ../../mod/crepair.php:171 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." +#: ../../object/Item.php:208 +msgid "ignore thread" msgstr "" -#: ../../mod/crepair.php:171 -msgid "No mirroring" +#: ../../object/Item.php:209 +msgid "unignore thread" msgstr "" -#: ../../mod/crepair.php:171 -msgid "Mirror as forwarded posting" +#: ../../object/Item.php:210 +msgid "toggle ignore status" msgstr "" -#: ../../mod/crepair.php:171 -msgid "Mirror as my own posting" +#: ../../object/Item.php:213 +msgid "ignored" msgstr "" -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:146 -msgid "Your posts and conversations" +#: ../../object/Item.php:316 ../../include/conversation.php:666 +msgid "Categories:" msgstr "" -#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 -msgid "Your profile page" +#: ../../object/Item.php:317 ../../include/conversation.php:667 +msgid "Filed under:" msgstr "" -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" +#: ../../object/Item.php:329 +msgid "via" msgstr "" -#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 -msgid "Your photos" +#: ../../include/dbstructure.php:26 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database " +"might be invalid." msgstr "" -#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80 -msgid "Your events" +#: ../../include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" msgstr "" -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81 -msgid "Personal notes" +#: ../../include/dbstructure.php:162 +msgid "Errors encountered creating database tables." msgstr "" -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" +#: ../../include/dbstructure.php:220 +msgid "Errors encountered performing database changes." msgstr "" -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -#: ../../view/theme/diabook/config.php:158 -msgid "Community Pages" +#: ../../include/auth.php:38 +msgid "Logged out." msgstr "" -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -#: ../../view/theme/diabook/config.php:160 -msgid "Community Profiles" +#: ../../include/auth.php:128 ../../include/user.php:67 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." msgstr "" -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -#: ../../view/theme/diabook/config.php:164 -msgid "Last users" +#: ../../include/auth.php:128 ../../include/user.php:67 +msgid "The error message was:" msgstr "" -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -#: ../../view/theme/diabook/config.php:166 -msgid "Last likes" +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" msgstr "" -#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1963 -#: ../../include/conversation.php:118 ../../include/conversation.php:246 -msgid "event" +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" msgstr "" -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -#: ../../view/theme/diabook/config.php:165 -msgid "Last photos" +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" msgstr "" -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -#: ../../view/theme/diabook/config.php:163 -msgid "Find Friends" +#: ../../include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:30 +msgid "Find People" msgstr "" -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" +#: ../../include/contact_widgets.php:31 +msgid "Enter name or interest" msgstr "" -#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36 -msgid "Similar Interests" +#: ../../include/contact_widgets.php:32 +msgid "Connect/Follow" msgstr "" -#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38 -msgid "Invite Friends" +#: ../../include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -#: ../../view/theme/diabook/config.php:159 -msgid "Earth Layers" +#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526 +msgid "Similar Interests" msgstr "" -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" +#: ../../include/contact_widgets.php:37 +msgid "Random Profile" msgstr "" -#: ../../view/theme/diabook/theme.php:585 -#: ../../view/theme/diabook/config.php:156 -msgid "Set longitude (X) for Earth Layers" +#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528 +msgid "Invite Friends" msgstr "" -#: ../../view/theme/diabook/theme.php:586 -#: ../../view/theme/diabook/config.php:157 -msgid "Set latitude (Y) for Earth Layers" +#: ../../include/contact_widgets.php:71 +msgid "Networks" msgstr "" -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -#: ../../view/theme/diabook/config.php:161 -msgid "Help or @NewHere ?" +#: ../../include/contact_widgets.php:74 +msgid "All Networks" msgstr "" -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -#: ../../view/theme/diabook/config.php:162 -msgid "Connect Services" +#: ../../include/contact_widgets.php:104 ../../include/features.php:60 +msgid "Saved Folders" msgstr "" -#: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 -msgid "don't show" +#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 +msgid "Everything" msgstr "" -#: ../../view/theme/diabook/theme.php:621 -#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 -msgid "show" +#: ../../include/contact_widgets.php:136 +msgid "Categories" msgstr "" -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" +#: ../../include/features.php:23 +msgid "General Features" msgstr "" -#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:54 -#: ../../view/theme/dispy/config.php:72 -#: ../../view/theme/duepuntozero/config.php:61 -#: ../../view/theme/quattro/config.php:66 -#: ../../view/theme/cleanzero/config.php:82 -msgid "Theme settings" +#: ../../include/features.php:25 +msgid "Multiple Profiles" msgstr "" -#: ../../view/theme/diabook/config.php:151 -#: ../../view/theme/dispy/config.php:73 -#: ../../view/theme/cleanzero/config.php:84 -msgid "Set font-size for posts and comments" +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" msgstr "" -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" +#: ../../include/features.php:30 +msgid "Post Composition Features" msgstr "" -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" +#: ../../include/features.php:31 +msgid "Richtext Editor" msgstr "" -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" +#: ../../include/features.php:31 +msgid "Enable richtext editor" msgstr "" -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" +#: ../../include/features.php:32 +msgid "Post Preview" msgstr "" -#: ../../view/theme/vier/config.php:55 -msgid "Set style" +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" msgstr "" -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" +#: ../../include/features.php:33 +msgid "Auto-mention Forums" msgstr "" -#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1699 -#: ../../include/user.php:247 -msgid "default" +#: ../../include/features.php:33 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." msgstr "" -#: ../../view/theme/duepuntozero/config.php:45 -msgid "greenzero" +#: ../../include/features.php:38 +msgid "Network Sidebar Widgets" msgstr "" -#: ../../view/theme/duepuntozero/config.php:46 -msgid "purplezero" +#: ../../include/features.php:39 +msgid "Search by Date" msgstr "" -#: ../../view/theme/duepuntozero/config.php:47 -msgid "easterbunny" +#: ../../include/features.php:39 +msgid "Ability to select posts by date ranges" msgstr "" -#: ../../view/theme/duepuntozero/config.php:48 -msgid "darkzero" +#: ../../include/features.php:40 +msgid "Group Filter" msgstr "" -#: ../../view/theme/duepuntozero/config.php:49 -msgid "comix" +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected group" msgstr "" -#: ../../view/theme/duepuntozero/config.php:50 -msgid "slackr" +#: ../../include/features.php:41 +msgid "Network Filter" msgstr "" -#: ../../view/theme/duepuntozero/config.php:62 -msgid "Variations" +#: ../../include/features.php:41 +msgid "Enable widget to display Network posts only from selected network" msgstr "" -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" +#: ../../include/features.php:42 +msgid "Save search terms for re-use" msgstr "" -#: ../../view/theme/quattro/config.php:67 -msgid "Left" +#: ../../include/features.php:47 +msgid "Network Tabs" msgstr "" -#: ../../view/theme/quattro/config.php:67 -msgid "Center" +#: ../../include/features.php:48 +msgid "Network Personal Tab" msgstr "" -#: ../../view/theme/quattro/config.php:68 -#: ../../view/theme/cleanzero/config.php:86 -msgid "Color scheme" +#: ../../include/features.php:48 +msgid "Enable tab to display only Network posts that you've interacted on" msgstr "" -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" +#: ../../include/features.php:49 +msgid "Network New Tab" msgstr "" -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" +#: ../../include/features.php:49 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" msgstr "" -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" +#: ../../include/features.php:50 +msgid "Network Shared Links Tab" msgstr "" -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" +#: ../../include/features.php:50 +msgid "Enable tab to display only Network posts with links in them" msgstr "" -#: ../../boot.php:723 -msgid "Delete this item?" +#: ../../include/features.php:55 +msgid "Post/Comment Tools" msgstr "" -#: ../../boot.php:726 -msgid "show fewer" +#: ../../include/features.php:56 +msgid "Multiple Deletion" msgstr "" -#: ../../boot.php:1096 -#, php-format -msgid "Update %s failed. See error logs." +#: ../../include/features.php:56 +msgid "Select and delete multiple posts/comments at once" msgstr "" -#: ../../boot.php:1214 -msgid "Create a New Account" +#: ../../include/features.php:57 +msgid "Edit Sent Posts" msgstr "" -#: ../../boot.php:1239 ../../include/nav.php:73 -msgid "Logout" +#: ../../include/features.php:57 +msgid "Edit and correct posts and comments after sending" msgstr "" -#: ../../boot.php:1240 ../../include/nav.php:92 -msgid "Login" +#: ../../include/features.php:58 +msgid "Tagging" msgstr "" -#: ../../boot.php:1242 -msgid "Nickname or Email address: " +#: ../../include/features.php:58 +msgid "Ability to tag existing posts" msgstr "" -#: ../../boot.php:1243 -msgid "Password: " +#: ../../include/features.php:59 +msgid "Post Categories" msgstr "" -#: ../../boot.php:1244 -msgid "Remember me" +#: ../../include/features.php:59 +msgid "Add categories to your posts" msgstr "" -#: ../../boot.php:1247 -msgid "Or login using OpenID: " +#: ../../include/features.php:60 +msgid "Ability to file posts under folders" msgstr "" -#: ../../boot.php:1253 -msgid "Forgot your password?" +#: ../../include/features.php:61 +msgid "Dislike Posts" msgstr "" -#: ../../boot.php:1256 -msgid "Website Terms of Service" +#: ../../include/features.php:61 +msgid "Ability to dislike posts/comments" msgstr "" -#: ../../boot.php:1257 -msgid "terms of service" +#: ../../include/features.php:62 +msgid "Star Posts" msgstr "" -#: ../../boot.php:1259 -msgid "Website Privacy Policy" +#: ../../include/features.php:62 +msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../boot.php:1260 -msgid "privacy policy" +#: ../../include/features.php:63 +msgid "Mute Post Notifications" msgstr "" -#: ../../boot.php:1393 -msgid "Requested account is not available." +#: ../../include/features.php:63 +msgid "Ability to mute notifications for a thread" msgstr "" -#: ../../boot.php:1475 ../../boot.php:1609 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" +#: ../../include/follow.php:32 +msgid "Connect URL missing." msgstr "" -#: ../../boot.php:1574 -msgid "Message" +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." msgstr "" -#: ../../boot.php:1580 ../../include/nav.php:173 -msgid "Profiles" +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." msgstr "" -#: ../../boot.php:1580 -msgid "Manage/edit profiles" +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." msgstr "" -#: ../../boot.php:1677 -msgid "Network:" +#: ../../include/follow.php:82 +msgid "An author or name was not found." msgstr "" -#: ../../boot.php:1707 ../../boot.php:1793 -msgid "g A l F d" +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." msgstr "" -#: ../../boot.php:1708 ../../boot.php:1794 -msgid "F d" +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." msgstr "" -#: ../../boot.php:1753 ../../boot.php:1834 -msgid "[today]" +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." msgstr "" -#: ../../boot.php:1765 -msgid "Birthday Reminders" +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." msgstr "" -#: ../../boot.php:1766 -msgid "Birthdays this week:" +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." msgstr "" -#: ../../boot.php:1827 -msgid "[No description]" +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." msgstr "" -#: ../../boot.php:1845 -msgid "Event Reminders" +#: ../../include/follow.php:258 +msgid "following" msgstr "" -#: ../../boot.php:1846 -msgid "Events this week:" +#: ../../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 "" -#: ../../boot.php:2083 ../../include/nav.php:76 -msgid "Status" +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" msgstr "" -#: ../../boot.php:2086 -msgid "Status Messages and Posts" +#: ../../include/group.php:226 +msgid "Everybody" msgstr "" -#: ../../boot.php:2093 -msgid "Profile Details" +#: ../../include/group.php:249 +msgid "edit" msgstr "" -#: ../../boot.php:2104 ../../boot.php:2107 ../../include/nav.php:79 -msgid "Videos" +#: ../../include/group.php:271 +msgid "Edit group" msgstr "" -#: ../../boot.php:2117 -msgid "Events and Calendar" +#: ../../include/group.php:272 +msgid "Create a new group" msgstr "" -#: ../../boot.php:2124 -msgid "Only You Can See This" +#: ../../include/group.php:273 +msgid "Contacts not in any group" msgstr "" -#: ../../include/features.php:23 -msgid "General Features" +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" msgstr "" -#: ../../include/features.php:25 -msgid "Multiple Profiles" +#: ../../include/datetime.php:153 ../../include/datetime.php:290 +msgid "year" msgstr "" -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" +#: ../../include/datetime.php:158 ../../include/datetime.php:291 +msgid "month" msgstr "" -#: ../../include/features.php:30 -msgid "Post Composition Features" +#: ../../include/datetime.php:163 ../../include/datetime.php:293 +msgid "day" msgstr "" -#: ../../include/features.php:31 -msgid "Richtext Editor" +#: ../../include/datetime.php:276 +msgid "never" msgstr "" -#: ../../include/features.php:31 -msgid "Enable richtext editor" +#: ../../include/datetime.php:282 +msgid "less than a second ago" msgstr "" -#: ../../include/features.php:32 -msgid "Post Preview" +#: ../../include/datetime.php:290 +msgid "years" msgstr "" -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" +#: ../../include/datetime.php:291 +msgid "months" msgstr "" -#: ../../include/features.php:33 -msgid "Auto-mention Forums" +#: ../../include/datetime.php:292 +msgid "week" msgstr "" -#: ../../include/features.php:33 -msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." +#: ../../include/datetime.php:292 +msgid "weeks" msgstr "" -#: ../../include/features.php:38 -msgid "Network Sidebar Widgets" +#: ../../include/datetime.php:293 +msgid "days" msgstr "" -#: ../../include/features.php:39 -msgid "Search by Date" +#: ../../include/datetime.php:294 +msgid "hour" msgstr "" -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" +#: ../../include/datetime.php:294 +msgid "hours" msgstr "" -#: ../../include/features.php:40 -msgid "Group Filter" +#: ../../include/datetime.php:295 +msgid "minute" msgstr "" -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" +#: ../../include/datetime.php:295 +msgid "minutes" msgstr "" -#: ../../include/features.php:41 -msgid "Network Filter" +#: ../../include/datetime.php:296 +msgid "second" msgstr "" -#: ../../include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" +#: ../../include/datetime.php:296 +msgid "seconds" msgstr "" -#: ../../include/features.php:42 -msgid "Save search terms for re-use" +#: ../../include/datetime.php:305 +#, php-format +msgid "%1$d %2$s ago" msgstr "" -#: ../../include/features.php:47 -msgid "Network Tabs" +#: ../../include/datetime.php:477 ../../include/items.php:2195 +#, php-format +msgid "%s's birthday" msgstr "" -#: ../../include/features.php:48 -msgid "Network Personal Tab" +#: ../../include/datetime.php:478 ../../include/items.php:2196 +#, php-format +msgid "Happy Birthday %s" msgstr "" -#: ../../include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" +#: ../../include/acl_selectors.php:326 +msgid "Visible to everybody" msgstr "" -#: ../../include/features.php:49 -msgid "Network New Tab" +#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:142 +#: ../../view/theme/diabook/theme.php:621 +msgid "show" msgstr "" -#: ../../include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" +#: ../../include/acl_selectors.php:328 ../../view/theme/diabook/config.php:142 +#: ../../view/theme/diabook/theme.php:621 +msgid "don't show" msgstr "" -#: ../../include/features.php:50 -msgid "Network Shared Links Tab" +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "" + +#: ../../include/Contact.php:115 +msgid "stopped following" msgstr "" -#: ../../include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" +#: ../../include/Contact.php:228 ../../include/conversation.php:882 +msgid "Poke" msgstr "" -#: ../../include/features.php:55 -msgid "Post/Comment Tools" +#: ../../include/Contact.php:229 ../../include/conversation.php:876 +msgid "View Status" msgstr "" -#: ../../include/features.php:56 -msgid "Multiple Deletion" +#: ../../include/Contact.php:230 ../../include/conversation.php:877 +msgid "View Profile" msgstr "" -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" +#: ../../include/Contact.php:231 ../../include/conversation.php:878 +msgid "View Photos" msgstr "" -#: ../../include/features.php:57 -msgid "Edit Sent Posts" +#: ../../include/Contact.php:232 ../../include/Contact.php:255 +#: ../../include/conversation.php:879 +msgid "Network Posts" msgstr "" -#: ../../include/features.php:57 -msgid "Edit and correct posts and comments after sending" +#: ../../include/Contact.php:233 ../../include/Contact.php:255 +#: ../../include/conversation.php:880 +msgid "Edit Contact" msgstr "" -#: ../../include/features.php:58 -msgid "Tagging" +#: ../../include/Contact.php:234 +msgid "Drop Contact" msgstr "" -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" +#: ../../include/Contact.php:235 ../../include/Contact.php:255 +#: ../../include/conversation.php:881 +msgid "Send PM" msgstr "" -#: ../../include/features.php:59 -msgid "Post Categories" +#: ../../include/security.php:22 +msgid "Welcome " msgstr "" -#: ../../include/features.php:59 -msgid "Add categories to your posts" +#: ../../include/security.php:23 +msgid "Please upload a profile photo." msgstr "" -#: ../../include/features.php:60 ../../include/contact_widgets.php:104 -msgid "Saved Folders" +#: ../../include/security.php:26 +msgid "Welcome back " msgstr "" -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" +#: ../../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/features.php:61 -msgid "Dislike Posts" +#: ../../include/conversation.php:118 ../../include/conversation.php:246 +#: ../../include/text.php:1963 ../../view/theme/diabook/theme.php:463 +msgid "event" msgstr "" -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" +#: ../../include/conversation.php:207 +#, php-format +msgid "%1$s poked %2$s" msgstr "" -#: ../../include/features.php:62 -msgid "Star Posts" +#: ../../include/conversation.php:211 ../../include/text.php:1004 +msgid "poked" msgstr "" -#: ../../include/features.php:62 -msgid "Ability to mark special posts with a star indicator" +#: ../../include/conversation.php:291 +msgid "post/item" msgstr "" -#: ../../include/features.php:63 -msgid "Mute Post Notifications" +#: ../../include/conversation.php:292 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" msgstr "" -#: ../../include/features.php:63 -msgid "Ability to mute notifications for a thread" +#: ../../include/conversation.php:772 +msgid "remove" msgstr "" -#: ../../include/auth.php:38 -msgid "Logged out." +#: ../../include/conversation.php:776 +msgid "Delete Selected Items" msgstr "" -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." +#: ../../include/conversation.php:875 +msgid "Follow Thread" msgstr "" -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "The error message was:" +#: ../../include/conversation.php:944 +#, php-format +msgid "%s likes this." msgstr "" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:140 -msgid "Starts:" +#: ../../include/conversation.php:944 +#, php-format +msgid "%s doesn't like this." msgstr "" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:148 -msgid "Finishes:" +#: ../../include/conversation.php:949 +#, php-format +msgid "%2$d people like this" msgstr "" -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" +#: ../../include/conversation.php:952 +#, php-format +msgid "%2$d people don't like this" msgstr "" -#: ../../include/profile_advanced.php:23 -msgid "j F" +#: ../../include/conversation.php:966 +msgid "and" msgstr "" -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" +#: ../../include/conversation.php:972 +#, php-format +msgid ", and %d other people" msgstr "" -#: ../../include/profile_advanced.php:34 -msgid "Age:" +#: ../../include/conversation.php:974 +#, php-format +msgid "%s like this." msgstr "" -#: ../../include/profile_advanced.php:43 +#: ../../include/conversation.php:974 #, php-format -msgid "for %1$d %2$s" +msgid "%s don't like this." msgstr "" -#: ../../include/profile_advanced.php:52 -msgid "Tags:" +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +msgid "Visible to everybody" msgstr "" -#: ../../include/profile_advanced.php:56 -msgid "Religion:" +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Please enter a video link/URL:" msgstr "" -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" +#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 +msgid "Please enter an audio link/URL:" msgstr "" -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 +msgid "Tag term:" msgstr "" -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" +#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 +msgid "Where are you right now?" msgstr "" -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" +#: ../../include/conversation.php:1008 +msgid "Delete item(s)?" msgstr "" -#: ../../include/profile_advanced.php:73 -msgid "Television:" +#: ../../include/conversation.php:1051 +msgid "Post to Email" msgstr "" -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" +#: ../../include/conversation.php:1056 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." msgstr "" -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" +#: ../../include/conversation.php:1111 +msgid "permissions" msgstr "" -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" +#: ../../include/conversation.php:1135 +msgid "Post to Groups" msgstr "" -#: ../../include/profile_advanced.php:81 -msgid "School/education:" +#: ../../include/conversation.php:1136 +msgid "Post to Contacts" msgstr "" -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" +#: ../../include/conversation.php:1137 +msgid "Private post" msgstr "" -#: ../../include/Scrape.php:584 -msgid " on Last.fm" +#: ../../include/network.php:895 +msgid "view full size" msgstr "" #: ../../include/text.php:296 @@ -6118,10 +6307,6 @@ msgstr[1] "" msgid "poke" msgstr "" -#: ../../include/text.php:1004 ../../include/conversation.php:211 -msgid "poked" -msgstr "" - #: ../../include/text.php:1005 msgid "ping" msgstr "" @@ -6326,6 +6511,11 @@ msgstr "" msgid "Click to open/close" msgstr "" +#: ../../include/text.php:1699 ../../include/user.php:247 +#: ../../view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "" + #: ../../include/text.php:1711 msgid "Select an alternate language" msgstr "" @@ -6342,820 +6532,767 @@ msgstr "" msgid "Item filed" msgstr "" -#: ../../include/api.php:278 ../../include/api.php:289 -#: ../../include/api.php:390 ../../include/api.php:975 -#: ../../include/api.php:977 -msgid "User not found." -msgstr "" - -#: ../../include/api.php:1184 -msgid "There is no status with this id." -msgstr "" - -#: ../../include/api.php:1254 -msgid "There is no conversation with this id." -msgstr "" - -#: ../../include/dba.php:56 ../../include/dba_pdo.php:72 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" +#: ../../include/bbcode.php:428 ../../include/bbcode.php:1027 +#: ../../include/bbcode.php:1028 +msgid "Image/photo" msgstr "" -#: ../../include/items.php:2112 ../../include/datetime.php:472 +#: ../../include/bbcode.php:528 #, php-format -msgid "%s's birthday" +msgid "%2$s %3$s" msgstr "" -#: ../../include/items.php:2113 ../../include/datetime.php:473 +#: ../../include/bbcode.php:562 #, php-format -msgid "Happy Birthday %s" -msgstr "" - -#: ../../include/items.php:4418 -msgid "Do you really want to delete this item?" -msgstr "" - -#: ../../include/items.php:4641 -msgid "Archives" -msgstr "" - -#: ../../include/delivery.php:456 ../../include/notifier.php:774 -msgid "(no subject)" -msgstr "" - -#: ../../include/delivery.php:467 ../../include/notifier.php:784 -#: ../../include/enotify.php:30 -msgid "noreply" -msgstr "" - -#: ../../include/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "" - -#: ../../include/diaspora.php:2312 -msgid "Attachments:" -msgstr "" - -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "" - -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "" - -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "" - -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "" - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "" - -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "" - -#: ../../include/follow.php:86 msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "" - -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." +"%s wrote the following post" msgstr "" -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." +#: ../../include/bbcode.php:991 ../../include/bbcode.php:1011 +msgid "$1 wrote:" msgstr "" -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." +#: ../../include/bbcode.php:1036 ../../include/bbcode.php:1037 +msgid "Encrypted content" msgstr "" -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." +#: ../../include/notifier.php:786 ../../include/delivery.php:456 +msgid "(no subject)" msgstr "" -#: ../../include/follow.php:259 -msgid "following" +#: ../../include/notifier.php:796 ../../include/delivery.php:467 +#: ../../include/enotify.php:31 +msgid "noreply" msgstr "" -#: ../../include/security.php:22 -msgid "Welcome " +#: ../../include/dba_pdo.php:72 ../../include/dba.php:56 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: ../../include/security.php:23 -msgid "Please upload a profile photo." +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" msgstr "" -#: ../../include/security.php:26 -msgid "Welcome back " +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" msgstr "" -#: ../../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." +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Male" +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Female" +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Intersex" +#: ../../include/contact_selectors.php:82 +msgid "Zot!" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" +#: ../../include/contact_selectors.php:85 +msgid "MySpace" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" +#: ../../include/contact_selectors.php:87 +msgid "Google+" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Other" +#: ../../include/contact_selectors.php:88 +msgid "pump.io" msgstr "" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" +#: ../../include/contact_selectors.php:89 +msgid "Twitter" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Males" +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Females" +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Gay" +#: ../../include/contact_selectors.php:92 +msgid "App.net" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" +#: ../../include/Scrape.php:593 +msgid " on Last.fm" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "No Preference" +#: ../../include/bb2diaspora.php:154 ../../include/event.php:20 +msgid "Starts:" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" +#: ../../include/bb2diaspora.php:162 ../../include/event.php:30 +msgid "Finishes:" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" +#: ../../include/profile_advanced.php:23 +msgid "j F" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Virgin" +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Deviant" +#: ../../include/profile_advanced.php:34 +msgid "Age:" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Fetish" +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Oodles" +#: ../../include/profile_advanced.php:52 +msgid "Tags:" msgstr "" -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" +#: ../../include/profile_advanced.php:56 +msgid "Religion:" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Single" +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Lonely" +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Available" +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Has crush" +#: ../../include/profile_advanced.php:73 +msgid "Television:" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Dating" +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" +#: ../../include/profile_advanced.php:81 +msgid "School/education:" msgstr "" -#: ../../include/profile_selectors.php:42 ../../include/user.php:289 -#: ../../include/user.php:293 -msgid "Friends" +#: ../../include/plugin.php:455 ../../include/plugin.php:457 +msgid "Click here to upgrade." msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" +#: ../../include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Casual" +#: ../../include/plugin.php:468 +msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Engaged" +#: ../../include/nav.php:73 +msgid "End this session" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Married" +#: ../../include/nav.php:76 ../../include/nav.php:146 +#: ../../view/theme/diabook/theme.php:123 +msgid "Your posts and conversations" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" +#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 +msgid "Your profile page" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Partners" +#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126 +msgid "Your photos" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" +#: ../../include/nav.php:79 +msgid "Your videos" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Common law" +#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127 +msgid "Your events" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Happy" +#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128 +msgid "Personal notes" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Not looking" +#: ../../include/nav.php:81 +msgid "Your personal notes" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Swinger" +#: ../../include/nav.php:92 +msgid "Sign in" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" +#: ../../include/nav.php:105 +msgid "Home Page" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Separated" +#: ../../include/nav.php:109 +msgid "Create an account" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Unstable" +#: ../../include/nav.php:114 +msgid "Help and documentation" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Divorced" +#: ../../include/nav.php:117 +msgid "Apps" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" +#: ../../include/nav.php:117 +msgid "Addon applications, utilities, games" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Widowed" +#: ../../include/nav.php:119 +msgid "Search site content" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" +#: ../../include/nav.php:129 +msgid "Conversations on this site" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" +#: ../../include/nav.php:131 +msgid "Directory" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Don't care" +#: ../../include/nav.php:131 +msgid "People directory" msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Ask me" +#: ../../include/nav.php:133 +msgid "Information" msgstr "" -#: ../../include/uimport.php:94 -msgid "Error decoding account file" +#: ../../include/nav.php:133 +msgid "Information about this friendica instance" msgstr "" -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" +#: ../../include/nav.php:143 +msgid "Conversations from your friends" msgstr "" -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" +#: ../../include/nav.php:144 +msgid "Network Reset" msgstr "" -#: ../../include/uimport.php:120 ../../include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" +#: ../../include/nav.php:144 +msgid "Load Network page with no filters" msgstr "" -#: ../../include/uimport.php:153 -msgid "User creation error" +#: ../../include/nav.php:152 +msgid "Friend Requests" msgstr "" -#: ../../include/uimport.php:171 -msgid "User profile creation error" +#: ../../include/nav.php:154 +msgid "See all notifications" msgstr "" -#: ../../include/uimport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" +#: ../../include/nav.php:155 +msgid "Mark all system notifications seen" msgstr "" -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." +#: ../../include/nav.php:159 +msgid "Private mail" msgstr "" -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." +#: ../../include/nav.php:160 +msgid "Inbox" msgstr "" -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." +#: ../../include/nav.php:161 +msgid "Outbox" msgstr "" -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" +#: ../../include/nav.php:165 +msgid "Manage" msgstr "" -#: ../../include/conversation.php:291 -msgid "post/item" +#: ../../include/nav.php:165 +msgid "Manage other pages" msgstr "" -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" +#: ../../include/nav.php:170 +msgid "Account settings" msgstr "" -#: ../../include/conversation.php:772 -msgid "remove" +#: ../../include/nav.php:173 +msgid "Manage/Edit Profiles" msgstr "" -#: ../../include/conversation.php:776 -msgid "Delete Selected Items" +#: ../../include/nav.php:175 +msgid "Manage/edit friends and contacts" msgstr "" -#: ../../include/conversation.php:875 -msgid "Follow Thread" +#: ../../include/nav.php:182 +msgid "Site setup and configuration" msgstr "" -#: ../../include/conversation.php:876 ../../include/Contact.php:229 -msgid "View Status" +#: ../../include/nav.php:186 +msgid "Navigation" msgstr "" -#: ../../include/conversation.php:877 ../../include/Contact.php:230 -msgid "View Profile" +#: ../../include/nav.php:186 +msgid "Site map" msgstr "" -#: ../../include/conversation.php:878 ../../include/Contact.php:231 -msgid "View Photos" +#: ../../include/api.php:304 ../../include/api.php:315 +#: ../../include/api.php:416 ../../include/api.php:1062 +#: ../../include/api.php:1064 +msgid "User not found." msgstr "" -#: ../../include/conversation.php:879 ../../include/Contact.php:232 -#: ../../include/Contact.php:255 -msgid "Network Posts" +#: ../../include/api.php:771 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." msgstr "" -#: ../../include/conversation.php:880 ../../include/Contact.php:233 -#: ../../include/Contact.php:255 -msgid "Edit Contact" +#: ../../include/api.php:790 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." msgstr "" -#: ../../include/conversation.php:881 ../../include/Contact.php:235 -#: ../../include/Contact.php:255 -msgid "Send PM" +#: ../../include/api.php:809 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." msgstr "" -#: ../../include/conversation.php:882 ../../include/Contact.php:228 -msgid "Poke" +#: ../../include/api.php:1271 +msgid "There is no status with this id." msgstr "" -#: ../../include/conversation.php:944 -#, php-format -msgid "%s likes this." +#: ../../include/api.php:1341 +msgid "There is no conversation with this id." msgstr "" -#: ../../include/conversation.php:944 -#, php-format -msgid "%s doesn't like this." +#: ../../include/api.php:1613 +msgid "Invalid request." msgstr "" -#: ../../include/conversation.php:949 -#, php-format -msgid "%2$d people like this" +#: ../../include/api.php:1624 +msgid "Invalid item." msgstr "" -#: ../../include/conversation.php:952 -#, php-format -msgid "%2$d people don't like this" +#: ../../include/api.php:1634 +msgid "Invalid action. " msgstr "" -#: ../../include/conversation.php:966 -msgid "and" +#: ../../include/api.php:1642 +msgid "DB error" msgstr "" -#: ../../include/conversation.php:972 -#, php-format -msgid ", and %d other people" +#: ../../include/user.php:40 +msgid "An invitation is required." msgstr "" -#: ../../include/conversation.php:974 -#, php-format -msgid "%s like this." +#: ../../include/user.php:45 +msgid "Invitation could not be verified." msgstr "" -#: ../../include/conversation.php:974 -#, php-format -msgid "%s don't like this." +#: ../../include/user.php:53 +msgid "Invalid OpenID url" msgstr "" -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Visible to everybody" +#: ../../include/user.php:74 +msgid "Please enter the required information." msgstr "" -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter a video link/URL:" +#: ../../include/user.php:88 +msgid "Please use a shorter name." msgstr "" -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Please enter an audio link/URL:" +#: ../../include/user.php:90 +msgid "Name too short." msgstr "" -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -msgid "Tag term:" +#: ../../include/user.php:105 +msgid "That doesn't appear to be your full (First Last) name." msgstr "" -#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 -msgid "Where are you right now?" +#: ../../include/user.php:110 +msgid "Your email domain is not among those allowed on this site." msgstr "" -#: ../../include/conversation.php:1008 -msgid "Delete item(s)?" +#: ../../include/user.php:113 +msgid "Not a valid email address." msgstr "" -#: ../../include/conversation.php:1051 -msgid "Post to Email" +#: ../../include/user.php:126 +msgid "Cannot use that email." msgstr "" -#: ../../include/conversation.php:1056 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." +#: ../../include/user.php:132 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." msgstr "" -#: ../../include/conversation.php:1111 -msgid "permissions" +#: ../../include/user.php:138 ../../include/user.php:236 +msgid "Nickname is already registered. Please choose another." msgstr "" -#: ../../include/conversation.php:1135 -msgid "Post to Groups" +#: ../../include/user.php:148 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." msgstr "" -#: ../../include/conversation.php:1136 -msgid "Post to Contacts" +#: ../../include/user.php:164 +msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "" -#: ../../include/conversation.php:1137 -msgid "Private post" +#: ../../include/user.php:222 +msgid "An error occurred during registration. Please try again." msgstr "" -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" +#: ../../include/user.php:257 +msgid "An error occurred creating your default profile. Please try again." msgstr "" -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" +#: ../../include/user.php:289 ../../include/user.php:293 +#: ../../include/profile_selectors.php:42 +msgid "Friends" msgstr "" -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" +#: ../../include/user.php:377 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" msgstr "" -#: ../../include/contact_widgets.php:24 +#: ../../include/user.php:381 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after " +"logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that " +"page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - " +"and\n" +"\t\tperhaps what country you live in; if you do not wish to be more " +"specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are " +"necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "" -#: ../../include/contact_widgets.php:30 -msgid "Find People" +#: ../../include/diaspora.php:703 +msgid "Sharing notification from Diaspora network" msgstr "" -#: ../../include/contact_widgets.php:31 -msgid "Enter name or interest" +#: ../../include/diaspora.php:2332 +msgid "Attachments:" msgstr "" -#: ../../include/contact_widgets.php:32 -msgid "Connect/Follow" +#: ../../include/items.php:4526 +msgid "Do you really want to delete this item?" msgstr "" -#: ../../include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" +#: ../../include/items.php:4749 +msgid "Archives" msgstr "" -#: ../../include/contact_widgets.php:37 -msgid "Random Profile" +#: ../../include/profile_selectors.php:6 +msgid "Male" msgstr "" -#: ../../include/contact_widgets.php:71 -msgid "Networks" +#: ../../include/profile_selectors.php:6 +msgid "Female" msgstr "" -#: ../../include/contact_widgets.php:74 -msgid "All Networks" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" msgstr "" -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 -msgid "Everything" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" msgstr "" -#: ../../include/contact_widgets.php:136 -msgid "Categories" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" msgstr "" -#: ../../include/nav.php:73 -msgid "End this session" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" msgstr "" -#: ../../include/nav.php:79 -msgid "Your videos" +#: ../../include/profile_selectors.php:6 +msgid "Transgender" msgstr "" -#: ../../include/nav.php:81 -msgid "Your personal notes" +#: ../../include/profile_selectors.php:6 +msgid "Intersex" msgstr "" -#: ../../include/nav.php:92 -msgid "Sign in" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" msgstr "" -#: ../../include/nav.php:105 -msgid "Home Page" +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" msgstr "" -#: ../../include/nav.php:109 -msgid "Create an account" +#: ../../include/profile_selectors.php:6 +msgid "Neuter" msgstr "" -#: ../../include/nav.php:114 -msgid "Help and documentation" +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" msgstr "" -#: ../../include/nav.php:117 -msgid "Apps" +#: ../../include/profile_selectors.php:6 +msgid "Other" msgstr "" -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" +#: ../../include/profile_selectors.php:6 +msgid "Undecided" msgstr "" -#: ../../include/nav.php:119 -msgid "Search site content" +#: ../../include/profile_selectors.php:23 +msgid "Males" msgstr "" -#: ../../include/nav.php:129 -msgid "Conversations on this site" +#: ../../include/profile_selectors.php:23 +msgid "Females" msgstr "" -#: ../../include/nav.php:131 -msgid "Directory" +#: ../../include/profile_selectors.php:23 +msgid "Gay" msgstr "" -#: ../../include/nav.php:131 -msgid "People directory" +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" msgstr "" -#: ../../include/nav.php:133 -msgid "Information" +#: ../../include/profile_selectors.php:23 +msgid "No Preference" msgstr "" -#: ../../include/nav.php:133 -msgid "Information about this friendica instance" +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" msgstr "" -#: ../../include/nav.php:143 -msgid "Conversations from your friends" +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" msgstr "" -#: ../../include/nav.php:144 -msgid "Network Reset" +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" msgstr "" -#: ../../include/nav.php:144 -msgid "Load Network page with no filters" +#: ../../include/profile_selectors.php:23 +msgid "Virgin" msgstr "" -#: ../../include/nav.php:152 -msgid "Friend Requests" +#: ../../include/profile_selectors.php:23 +msgid "Deviant" msgstr "" -#: ../../include/nav.php:154 -msgid "See all notifications" +#: ../../include/profile_selectors.php:23 +msgid "Fetish" msgstr "" -#: ../../include/nav.php:155 -msgid "Mark all system notifications seen" +#: ../../include/profile_selectors.php:23 +msgid "Oodles" msgstr "" -#: ../../include/nav.php:159 -msgid "Private mail" +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" msgstr "" -#: ../../include/nav.php:160 -msgid "Inbox" +#: ../../include/profile_selectors.php:42 +msgid "Single" msgstr "" -#: ../../include/nav.php:161 -msgid "Outbox" +#: ../../include/profile_selectors.php:42 +msgid "Lonely" msgstr "" -#: ../../include/nav.php:165 -msgid "Manage" +#: ../../include/profile_selectors.php:42 +msgid "Available" msgstr "" -#: ../../include/nav.php:165 -msgid "Manage other pages" +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" msgstr "" -#: ../../include/nav.php:170 -msgid "Account settings" +#: ../../include/profile_selectors.php:42 +msgid "Has crush" msgstr "" -#: ../../include/nav.php:173 -msgid "Manage/Edit Profiles" +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" msgstr "" -#: ../../include/nav.php:175 -msgid "Manage/edit friends and contacts" +#: ../../include/profile_selectors.php:42 +msgid "Dating" msgstr "" -#: ../../include/nav.php:182 -msgid "Site setup and configuration" +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" msgstr "" -#: ../../include/nav.php:186 -msgid "Navigation" +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" msgstr "" -#: ../../include/nav.php:186 -msgid "Site map" +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" msgstr "" -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" +#: ../../include/profile_selectors.php:42 +msgid "Casual" msgstr "" -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" +#: ../../include/profile_selectors.php:42 +msgid "Engaged" msgstr "" -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" +#: ../../include/profile_selectors.php:42 +msgid "Married" msgstr "" -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" msgstr "" -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" +#: ../../include/profile_selectors.php:42 +msgid "Partners" msgstr "" -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" msgstr "" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" +#: ../../include/profile_selectors.php:42 +msgid "Common law" msgstr "" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" +#: ../../include/profile_selectors.php:42 +msgid "Happy" msgstr "" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" +#: ../../include/profile_selectors.php:42 +msgid "Not looking" msgstr "" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" +#: ../../include/profile_selectors.php:42 +msgid "Swinger" msgstr "" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" msgstr "" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" +#: ../../include/profile_selectors.php:42 +msgid "Separated" msgstr "" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" +#: ../../include/profile_selectors.php:42 +msgid "Unstable" msgstr "" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" +#: ../../include/profile_selectors.php:42 +msgid "Divorced" msgstr "" -#: ../../include/contact_selectors.php:87 -msgid "Google+" +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" msgstr "" -#: ../../include/contact_selectors.php:88 -msgid "pump.io" +#: ../../include/profile_selectors.php:42 +msgid "Widowed" msgstr "" -#: ../../include/contact_selectors.php:89 -msgid "Twitter" +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" msgstr "" -#: ../../include/contact_selectors.php:90 -msgid "Diaspora Connector" +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" msgstr "" -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" +#: ../../include/profile_selectors.php:42 +msgid "Don't care" msgstr "" -#: ../../include/contact_selectors.php:92 -msgid "App.net" +#: ../../include/profile_selectors.php:42 +msgid "Ask me" msgstr "" #: ../../include/enotify.php:18 @@ -7171,238 +7308,238 @@ msgstr "" msgid "%s Administrator" msgstr "" -#: ../../include/enotify.php:55 +#: ../../include/enotify.php:61 #, php-format msgid "%s " msgstr "" -#: ../../include/enotify.php:59 +#: ../../include/enotify.php:65 #, php-format msgid "[Friendica:Notify] New mail received at %s" msgstr "" -#: ../../include/enotify.php:61 +#: ../../include/enotify.php:67 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "" -#: ../../include/enotify.php:62 +#: ../../include/enotify.php:68 #, php-format msgid "%1$s sent you %2$s." msgstr "" -#: ../../include/enotify.php:62 +#: ../../include/enotify.php:68 msgid "a private message" msgstr "" -#: ../../include/enotify.php:63 +#: ../../include/enotify.php:69 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: ../../include/enotify.php:115 +#: ../../include/enotify.php:121 #, php-format msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "" -#: ../../include/enotify.php:122 +#: ../../include/enotify.php:128 #, php-format msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "" -#: ../../include/enotify.php:130 +#: ../../include/enotify.php:136 #, php-format msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "" -#: ../../include/enotify.php:140 +#: ../../include/enotify.php:146 #, php-format msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" msgstr "" -#: ../../include/enotify.php:141 +#: ../../include/enotify.php:147 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "" -#: ../../include/enotify.php:144 ../../include/enotify.php:159 -#: ../../include/enotify.php:172 ../../include/enotify.php:185 -#: ../../include/enotify.php:203 ../../include/enotify.php:216 +#: ../../include/enotify.php:150 ../../include/enotify.php:165 +#: ../../include/enotify.php:178 ../../include/enotify.php:191 +#: ../../include/enotify.php:209 ../../include/enotify.php:222 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: ../../include/enotify.php:151 +#: ../../include/enotify.php:157 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "" -#: ../../include/enotify.php:153 +#: ../../include/enotify.php:159 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "" -#: ../../include/enotify.php:155 +#: ../../include/enotify.php:161 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "" -#: ../../include/enotify.php:166 +#: ../../include/enotify.php:172 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "" -#: ../../include/enotify.php:167 +#: ../../include/enotify.php:173 #, php-format msgid "%1$s tagged you at %2$s" msgstr "" -#: ../../include/enotify.php:168 +#: ../../include/enotify.php:174 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." msgstr "" -#: ../../include/enotify.php:179 +#: ../../include/enotify.php:185 #, php-format msgid "[Friendica:Notify] %s shared a new post" msgstr "" -#: ../../include/enotify.php:180 +#: ../../include/enotify.php:186 #, php-format msgid "%1$s shared a new post at %2$s" msgstr "" -#: ../../include/enotify.php:181 +#: ../../include/enotify.php:187 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." msgstr "" -#: ../../include/enotify.php:193 +#: ../../include/enotify.php:199 #, php-format msgid "[Friendica:Notify] %1$s poked you" msgstr "" -#: ../../include/enotify.php:194 +#: ../../include/enotify.php:200 #, php-format msgid "%1$s poked you at %2$s" msgstr "" -#: ../../include/enotify.php:195 +#: ../../include/enotify.php:201 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "" -#: ../../include/enotify.php:210 +#: ../../include/enotify.php:216 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "" -#: ../../include/enotify.php:211 +#: ../../include/enotify.php:217 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "" -#: ../../include/enotify.php:212 +#: ../../include/enotify.php:218 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "" -#: ../../include/enotify.php:223 +#: ../../include/enotify.php:229 msgid "[Friendica:Notify] Introduction received" msgstr "" -#: ../../include/enotify.php:224 +#: ../../include/enotify.php:230 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "" -#: ../../include/enotify.php:225 +#: ../../include/enotify.php:231 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "" -#: ../../include/enotify.php:228 ../../include/enotify.php:270 +#: ../../include/enotify.php:234 ../../include/enotify.php:276 #, php-format msgid "You may visit their profile at %s" msgstr "" -#: ../../include/enotify.php:230 +#: ../../include/enotify.php:236 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "" -#: ../../include/enotify.php:238 +#: ../../include/enotify.php:244 msgid "[Friendica:Notify] A new person is sharing with you" msgstr "" -#: ../../include/enotify.php:239 ../../include/enotify.php:240 +#: ../../include/enotify.php:245 ../../include/enotify.php:246 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: ../../include/enotify.php:246 +#: ../../include/enotify.php:252 msgid "[Friendica:Notify] You have a new follower" msgstr "" -#: ../../include/enotify.php:247 ../../include/enotify.php:248 +#: ../../include/enotify.php:253 ../../include/enotify.php:254 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: ../../include/enotify.php:261 +#: ../../include/enotify.php:267 msgid "[Friendica:Notify] Friend suggestion received" msgstr "" -#: ../../include/enotify.php:262 +#: ../../include/enotify.php:268 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "" -#: ../../include/enotify.php:263 +#: ../../include/enotify.php:269 #, php-format msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "" -#: ../../include/enotify.php:268 +#: ../../include/enotify.php:274 msgid "Name:" msgstr "" -#: ../../include/enotify.php:269 +#: ../../include/enotify.php:275 msgid "Photo:" msgstr "" -#: ../../include/enotify.php:272 +#: ../../include/enotify.php:278 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../include/enotify.php:280 ../../include/enotify.php:293 +#: ../../include/enotify.php:286 ../../include/enotify.php:299 msgid "[Friendica:Notify] Connection accepted" msgstr "" -#: ../../include/enotify.php:281 ../../include/enotify.php:294 +#: ../../include/enotify.php:287 ../../include/enotify.php:300 #, php-format msgid "'%1$s' has acepted your connection request at %2$s" msgstr "" -#: ../../include/enotify.php:282 ../../include/enotify.php:295 +#: ../../include/enotify.php:288 ../../include/enotify.php:301 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: ../../include/enotify.php:285 +#: ../../include/enotify.php:291 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email\n" "\twithout restriction." msgstr "" -#: ../../include/enotify.php:288 ../../include/enotify.php:302 +#: ../../include/enotify.php:294 ../../include/enotify.php:308 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: ../../include/enotify.php:298 +#: ../../include/enotify.php:304 #, php-format msgid "" "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " @@ -7411,324 +7548,265 @@ msgid "" "automatically." msgstr "" -#: ../../include/enotify.php:300 +#: ../../include/enotify.php:306 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future. " msgstr "" -#: ../../include/enotify.php:313 +#: ../../include/enotify.php:319 msgid "[Friendica System:Notify] registration request" msgstr "" -#: ../../include/enotify.php:314 +#: ../../include/enotify.php:320 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: ../../include/enotify.php:315 +#: ../../include/enotify.php:321 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: ../../include/enotify.php:318 +#: ../../include/enotify.php:324 #, php-format msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" msgstr "" -#: ../../include/enotify.php:321 +#: ../../include/enotify.php:327 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "" -#: ../../include/user.php:40 -msgid "An invitation is required." -msgstr "" - -#: ../../include/user.php:45 -msgid "Invitation could not be verified." -msgstr "" - -#: ../../include/user.php:53 -msgid "Invalid OpenID url" -msgstr "" - -#: ../../include/user.php:74 -msgid "Please enter the required information." -msgstr "" - -#: ../../include/user.php:88 -msgid "Please use a shorter name." -msgstr "" - -#: ../../include/user.php:90 -msgid "Name too short." -msgstr "" - -#: ../../include/user.php:105 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "" - -#: ../../include/user.php:110 -msgid "Your email domain is not among those allowed on this site." -msgstr "" - -#: ../../include/user.php:113 -msgid "Not a valid email address." -msgstr "" - -#: ../../include/user.php:126 -msgid "Cannot use that email." +#: ../../include/oembed.php:210 +msgid "Embedded content" msgstr "" - -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." + +#: ../../include/oembed.php:219 +msgid "Embedding disabled" msgstr "" -#: ../../include/user.php:138 ../../include/user.php:236 -msgid "Nickname is already registered. Please choose another." +#: ../../include/uimport.php:94 +msgid "Error decoding account file" msgstr "" -#: ../../include/user.php:148 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "" -#: ../../include/user.php:164 -msgid "SERIOUS ERROR: Generation of security keys failed." +#: ../../include/uimport.php:116 ../../include/uimport.php:127 +msgid "Error! Cannot check nickname" msgstr "" -#: ../../include/user.php:222 -msgid "An error occurred during registration. Please try again." +#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" msgstr "" -#: ../../include/user.php:257 -msgid "An error occurred creating your default profile. Please try again." +#: ../../include/uimport.php:153 +msgid "User creation error" msgstr "" -#: ../../include/user.php:377 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" +#: ../../include/uimport.php:171 +msgid "User profile creation error" msgstr "" -#: ../../include/user.php:381 +#: ../../include/uimport.php:220 #, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after " -"logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that " -"page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - " -"and\n" -"\t\tperhaps what country you live in; if you do not wish to be more " -"specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are " -"necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/uimport.php:290 +msgid "Done. You can now login with your username and password" msgstr "" -#: ../../include/acl_selectors.php:326 -msgid "Visible to everybody" +#: ../../index.php:428 +msgid "toggle mobile" msgstr "" -#: ../../include/bbcode.php:449 ../../include/bbcode.php:1054 -#: ../../include/bbcode.php:1055 -msgid "Image/photo" +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 +#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55 +#: ../../view/theme/duepuntozero/config.php:61 +msgid "Theme settings" msgstr "" -#: ../../include/bbcode.php:549 -#, php-format -msgid "%2$s %3$s" +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" msgstr "" -#: ../../include/bbcode.php:583 -#, php-format -msgid "" -"%s wrote the following post" +#: ../../view/theme/cleanzero/config.php:84 +#: ../../view/theme/dispy/config.php:73 +#: ../../view/theme/diabook/config.php:151 +msgid "Set font-size for posts and comments" msgstr "" -#: ../../include/bbcode.php:1018 ../../include/bbcode.php:1038 -msgid "$1 wrote:" +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" msgstr "" -#: ../../include/bbcode.php:1063 ../../include/bbcode.php:1064 -msgid "Encrypted content" +#: ../../view/theme/cleanzero/config.php:86 +#: ../../view/theme/quattro/config.php:68 +msgid "Color scheme" msgstr "" -#: ../../include/oembed.php:205 -msgid "Embedded content" +#: ../../view/theme/dispy/config.php:74 +#: ../../view/theme/diabook/config.php:152 +msgid "Set line-height for posts and comments" msgstr "" -#: ../../include/oembed.php:214 -msgid "Embedding disabled" +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" 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." +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" msgstr "" -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" +#: ../../view/theme/quattro/config.php:67 +msgid "Left" msgstr "" -#: ../../include/group.php:226 -msgid "Everybody" +#: ../../view/theme/quattro/config.php:67 +msgid "Center" msgstr "" -#: ../../include/group.php:249 -msgid "edit" +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" msgstr "" -#: ../../include/group.php:271 -msgid "Edit group" +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" msgstr "" -#: ../../include/group.php:272 -msgid "Create a new group" +#: ../../view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" msgstr "" -#: ../../include/group.php:273 -msgid "Contacts not in any group" +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" msgstr "" -#: ../../include/Contact.php:115 -msgid "stopped following" +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" msgstr "" -#: ../../include/Contact.php:234 -msgid "Drop Contact" +#: ../../view/theme/diabook/config.php:156 +#: ../../view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" msgstr "" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" +#: ../../view/theme/diabook/config.php:157 +#: ../../view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" msgstr "" -#: ../../include/datetime.php:153 ../../include/datetime.php:285 -msgid "year" +#: ../../view/theme/diabook/config.php:158 +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +msgid "Community Pages" msgstr "" -#: ../../include/datetime.php:158 ../../include/datetime.php:286 -msgid "month" +#: ../../view/theme/diabook/config.php:159 +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +msgid "Earth Layers" msgstr "" -#: ../../include/datetime.php:163 ../../include/datetime.php:288 -msgid "day" +#: ../../view/theme/diabook/config.php:160 +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +msgid "Community Profiles" msgstr "" -#: ../../include/datetime.php:276 -msgid "never" +#: ../../view/theme/diabook/config.php:161 +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +msgid "Help or @NewHere ?" msgstr "" -#: ../../include/datetime.php:282 -msgid "less than a second ago" +#: ../../view/theme/diabook/config.php:162 +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +msgid "Connect Services" msgstr "" -#: ../../include/datetime.php:285 -msgid "years" +#: ../../view/theme/diabook/config.php:163 +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +msgid "Find Friends" msgstr "" -#: ../../include/datetime.php:286 -msgid "months" +#: ../../view/theme/diabook/config.php:164 +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +msgid "Last users" msgstr "" -#: ../../include/datetime.php:287 -msgid "week" +#: ../../view/theme/diabook/config.php:165 +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +msgid "Last photos" msgstr "" -#: ../../include/datetime.php:287 -msgid "weeks" +#: ../../view/theme/diabook/config.php:166 +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +msgid "Last likes" msgstr "" -#: ../../include/datetime.php:288 -msgid "days" +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" msgstr "" -#: ../../include/datetime.php:289 -msgid "hour" +#: ../../view/theme/diabook/theme.php:128 +msgid "Your personal photos" msgstr "" -#: ../../include/datetime.php:289 -msgid "hours" +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" msgstr "" -#: ../../include/datetime.php:290 -msgid "minute" +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" msgstr "" -#: ../../include/datetime.php:290 -msgid "minutes" +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" msgstr "" -#: ../../include/datetime.php:291 -msgid "second" +#: ../../view/theme/vier/config.php:56 +msgid "Set style" msgstr "" -#: ../../include/datetime.php:291 -msgid "seconds" +#: ../../view/theme/duepuntozero/config.php:45 +msgid "greenzero" msgstr "" -#: ../../include/datetime.php:300 -#, php-format -msgid "%1$d %2$s ago" +#: ../../view/theme/duepuntozero/config.php:46 +msgid "purplezero" msgstr "" -#: ../../include/network.php:895 -msgid "view full size" +#: ../../view/theme/duepuntozero/config.php:47 +msgid "easterbunny" msgstr "" -#: ../../include/dbstructure.php:26 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database " -"might be invalid." +#: ../../view/theme/duepuntozero/config.php:48 +msgid "darkzero" msgstr "" -#: ../../include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" +#: ../../view/theme/duepuntozero/config.php:49 +msgid "comix" msgstr "" -#: ../../include/dbstructure.php:163 -msgid "Errors encountered creating database tables." +#: ../../view/theme/duepuntozero/config.php:50 +msgid "slackr" msgstr "" -#: ../../include/dbstructure.php:221 -msgid "Errors encountered performing database changes." +#: ../../view/theme/duepuntozero/config.php:62 +msgid "Variations" msgstr "" diff --git a/util/po2php.php b/util/po2php.php index 881a9b2679..30d77342bf 100644 --- a/util/po2php.php +++ b/util/po2php.php @@ -8,7 +8,7 @@ function po2php_run(&$argv, &$argc) { print "Usage: ".$argv[0]." \n\n"; return; } - + $pofile = $argv[1]; $outfile = dirname($pofile)."/strings.php"; @@ -23,11 +23,11 @@ function po2php_run(&$argv, &$argc) { print "Unable to find '$pofile'\n"; return; } - + print "Out to '$outfile'\n"; - + $out="strings["'.$k.'"] = '; } if ($inv) { $inv = False; $out .= '"'.$v.'"'; } - + $v = substr($l,8,$len-10); $v = preg_replace_callback($escape_s_exp,'escape_s',$v); $inv = True; @@ -69,28 +69,28 @@ function po2php_run(&$argv, &$argc) { if ($k!="" && substr($l,0,7)=="msgstr["){ if ($ink) { $ink = False; $out .= '$a->strings["'.$k.'"] = '; } if ($inv) { $inv = False; $out .= '"'.$v.'"'; } - + if (!$arr) { $arr=True; $out .= "array(\n"; } $match=Array(); preg_match("|\[([0-9]*)\] (.*)|", $l, $match); - $out .= "\t". + $out .= "\t". preg_replace_callback($escape_s_exp,'escape_s',$match[1]) ." => " .preg_replace_callback($escape_s_exp,'escape_s',$match[2]) .",\n"; } - + if (substr($l,0,6)=="msgid_") { $ink = False; $out .= '$a->strings["'.$k.'"] = '; }; if ($ink) { - $k .= trim($l,"\"\r\n"); + $k .= trim($l,"\"\r\n"); $k = preg_replace_callback($escape_s_exp,'escape_s',$k); //$out .= '$a->strings['.$k.'] = '; } - + if (substr($l,0,6)=="msgid "){ if ($inv) { $inv = False; $out .= '"'.$v.'"'; } if ($k!="") $out .= $arr?");\n":";\n"; @@ -101,28 +101,28 @@ function po2php_run(&$argv, &$argc) { } else { $k = ""; } - + $k = preg_replace_callback($escape_s_exp,'escape_s',$k); $ink = True; } - + if ($inv && substr($l,0,6)!="msgstr") { - $v .= trim($l,"\"\r\n"); + $v .= trim($l,"\"\r\n"); $v = preg_replace_callback($escape_s_exp,'escape_s',$v); //$out .= '$a->strings['.$k.'] = '; } - - + + } if ($inv) { $inv = False; $out .= '"'.$v.'"'; } if ($k!="") $out .= $arr?");\n":";\n"; - + $out = str_replace(DQ_ESCAPE, '\"', $out); file_put_contents($outfile, $out); - + } if (array_search(__file__,get_included_files())===0){ - po2php_run($argv,$argc); + po2php_run($_SERVER["argv"],$_SERVER["argc"]); } diff --git a/util/run_xgettext.sh b/util/run_xgettext.sh index 957cc2190b..0ceda68133 100755 --- a/util/run_xgettext.sh +++ b/util/run_xgettext.sh @@ -30,18 +30,6 @@ F9KVERSION=$(sed -n "s/.*'FRIENDICA_VERSION'.*'\([0-9.]*\)'.*/\1/p" ../../boot.p echo "Friendica version $F9KVERSION" -OPTS= - -#if [ "" != "$1" ] -#then -# OUTFILE="$(readlink -f ${FULLPATH}/$1)" -# if [ -e "$OUTFILE" ] -# then -# echo "join extracted strings" -# OPTS="-j" -# fi -#fi - KEYWORDS="-k -kt -ktt:1,2" echo "extract strings to $OUTFILE.." @@ -50,7 +38,7 @@ for f in $(find "$FINDSTARTDIR" $FINDOPTS -name "*.php" -type f) do if [ ! -d "$f" ] then - xgettext $KEYWORDS $OPTS -j -o "$OUTFILE" --from-code=UTF-8 "$f" + xgettext $KEYWORDS -j -o "$OUTFILE" --from-code=UTF-8 "$f" sed -i "s/CHARSET/UTF-8/g" "$OUTFILE" fi done @@ -75,4 +63,11 @@ else sed -i "s/^\"Plural-Forms.*$//g" "$OUTFILE" fi +if [ "" != "$1" -a "$ADDONMODE" == "" ] +then + UPDATEFILE="$(readlink -f ${FULLPATH}/$1)" + echo "merging new strings to $UPDATEFILE.." + msgmerge -U $OUTFILE $UPDATEFILE +fi + echo "done." diff --git a/util/strings.php b/util/strings.php index d2c5a0afbc..db8bd55dd5 100644 --- a/util/strings.php +++ b/util/strings.php @@ -1,209 +1,209 @@ strings["This entry was edited"] = ""; -$a->strings["Private Message"] = ""; -$a->strings["Edit"] = ""; -$a->strings["Select"] = ""; -$a->strings["Delete"] = ""; -$a->strings["save to folder"] = ""; -$a->strings["add star"] = ""; -$a->strings["remove star"] = ""; -$a->strings["toggle star status"] = ""; -$a->strings["starred"] = ""; -$a->strings["add tag"] = ""; -$a->strings["I like this (toggle)"] = ""; -$a->strings["like"] = ""; -$a->strings["I don't like this (toggle)"] = ""; -$a->strings["dislike"] = ""; -$a->strings["Share this"] = ""; -$a->strings["share"] = ""; -$a->strings["Categories:"] = ""; -$a->strings["Filed under:"] = ""; -$a->strings["View %s's profile @ %s"] = ""; -$a->strings["to"] = ""; -$a->strings["via"] = ""; -$a->strings["Wall-to-Wall"] = ""; -$a->strings["via Wall-To-Wall:"] = ""; -$a->strings["%s from %s"] = ""; -$a->strings["Comment"] = ""; -$a->strings["Please wait"] = ""; -$a->strings["%d comment"] = array( +$a->strings["%d contact edited."] = array( 0 => "", 1 => "", ); -$a->strings["comment"] = array( +$a->strings["Could not access contact record."] = ""; +$a->strings["Could not locate selected profile."] = ""; +$a->strings["Contact updated."] = ""; +$a->strings["Failed to update contact record."] = ""; +$a->strings["Permission denied."] = ""; +$a->strings["Contact has been blocked"] = ""; +$a->strings["Contact has been unblocked"] = ""; +$a->strings["Contact has been ignored"] = ""; +$a->strings["Contact has been unignored"] = ""; +$a->strings["Contact has been archived"] = ""; +$a->strings["Contact has been unarchived"] = ""; +$a->strings["Do you really want to delete this contact?"] = ""; +$a->strings["Yes"] = ""; +$a->strings["Cancel"] = ""; +$a->strings["Contact has been removed."] = ""; +$a->strings["You are mutual friends with %s"] = ""; +$a->strings["You are sharing with %s"] = ""; +$a->strings["%s is sharing with you"] = ""; +$a->strings["Private communications are not available for this contact."] = ""; +$a->strings["Never"] = ""; +$a->strings["(Update was successful)"] = ""; +$a->strings["(Update was not successful)"] = ""; +$a->strings["Suggest friends"] = ""; +$a->strings["Network type: %s"] = ""; +$a->strings["%d contact in common"] = array( 0 => "", 1 => "", ); -$a->strings["show more"] = ""; -$a->strings["This is you"] = ""; +$a->strings["View all contacts"] = ""; +$a->strings["Unblock"] = ""; +$a->strings["Block"] = ""; +$a->strings["Toggle Blocked status"] = ""; +$a->strings["Unignore"] = ""; +$a->strings["Ignore"] = ""; +$a->strings["Toggle Ignored status"] = ""; +$a->strings["Unarchive"] = ""; +$a->strings["Archive"] = ""; +$a->strings["Toggle Archive status"] = ""; +$a->strings["Repair"] = ""; +$a->strings["Advanced Contact Settings"] = ""; +$a->strings["Communications lost with this contact!"] = ""; +$a->strings["Contact Editor"] = ""; $a->strings["Submit"] = ""; -$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["Preview"] = ""; -$a->strings["You must be logged in to use addons. "] = ""; -$a->strings["Not Found"] = ""; -$a->strings["Page not found."] = ""; +$a->strings["Profile Visibility"] = ""; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = ""; +$a->strings["Contact Information / Notes"] = ""; +$a->strings["Edit contact notes"] = ""; +$a->strings["Visit %s's profile [%s]"] = ""; +$a->strings["Block/Unblock contact"] = ""; +$a->strings["Ignore contact"] = ""; +$a->strings["Repair URL settings"] = ""; +$a->strings["View conversations"] = ""; +$a->strings["Delete contact"] = ""; +$a->strings["Last update:"] = ""; +$a->strings["Update public posts"] = ""; +$a->strings["Update now"] = ""; +$a->strings["Currently blocked"] = ""; +$a->strings["Currently ignored"] = ""; +$a->strings["Currently archived"] = ""; +$a->strings["Hide this contact from others"] = ""; +$a->strings["Replies/likes to your public posts may still be visible"] = ""; +$a->strings["Notification for new posts"] = ""; +$a->strings["Send a notification of every new post of this contact"] = ""; +$a->strings["Fetch further information for feeds"] = ""; +$a->strings["Disabled"] = ""; +$a->strings["Fetch information"] = ""; +$a->strings["Fetch information and keywords"] = ""; +$a->strings["Blacklisted keywords"] = ""; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = ""; +$a->strings["Suggestions"] = ""; +$a->strings["Suggest potential friends"] = ""; +$a->strings["All Contacts"] = ""; +$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"] = ""; +$a->strings["is a fan of yours"] = ""; +$a->strings["you are a fan of"] = ""; +$a->strings["Edit contact"] = ""; +$a->strings["Contacts"] = ""; +$a->strings["Search your contacts"] = ""; +$a->strings["Finding: "] = ""; +$a->strings["Find"] = ""; +$a->strings["Update"] = ""; +$a->strings["Delete"] = ""; +$a->strings["No profile"] = ""; +$a->strings["Manage Identities and/or Pages"] = ""; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = ""; +$a->strings["Select an identity to manage: "] = ""; +$a->strings["Post successful."] = ""; $a->strings["Permission denied"] = ""; -$a->strings["Permission denied."] = ""; -$a->strings["toggle mobile"] = ""; -$a->strings["Home"] = ""; -$a->strings["Your posts and conversations"] = ""; +$a->strings["Invalid profile identifier."] = ""; +$a->strings["Profile Visibility Editor"] = ""; $a->strings["Profile"] = ""; -$a->strings["Your profile page"] = ""; -$a->strings["Photos"] = ""; -$a->strings["Your photos"] = ""; -$a->strings["Events"] = ""; -$a->strings["Your events"] = ""; -$a->strings["Personal notes"] = ""; -$a->strings["Your personal photos"] = ""; -$a->strings["Community"] = ""; -$a->strings["don't show"] = ""; -$a->strings["show"] = ""; -$a->strings["Theme settings"] = ""; -$a->strings["Set font-size for posts and comments"] = ""; -$a->strings["Set line-height for posts and comments"] = ""; -$a->strings["Set resolution for middle column"] = ""; -$a->strings["Contacts"] = ""; -$a->strings["Your contacts"] = ""; -$a->strings["Community Pages"] = ""; -$a->strings["Community Profiles"] = ""; -$a->strings["Last users"] = ""; -$a->strings["Last likes"] = ""; -$a->strings["event"] = ""; -$a->strings["status"] = ""; -$a->strings["photo"] = ""; -$a->strings["%1\$s likes %2\$s's %3\$s"] = ""; -$a->strings["Last photos"] = ""; -$a->strings["Contact Photos"] = ""; -$a->strings["Profile Photos"] = ""; -$a->strings["Find Friends"] = ""; -$a->strings["Local Directory"] = ""; -$a->strings["Global Directory"] = ""; -$a->strings["Similar Interests"] = ""; -$a->strings["Friend Suggestions"] = ""; -$a->strings["Invite Friends"] = ""; -$a->strings["Settings"] = ""; -$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["Show/hide boxes at right-hand column:"] = ""; -$a->strings["Set color scheme"] = ""; -$a->strings["Set zoomfactor for Earth Layer"] = ""; -$a->strings["Alignment"] = ""; -$a->strings["Left"] = ""; -$a->strings["Center"] = ""; -$a->strings["Color scheme"] = ""; -$a->strings["Posts font size"] = ""; -$a->strings["Textareas font size"] = ""; -$a->strings["Set colour scheme"] = ""; -$a->strings["default"] = ""; -$a->strings["Background Image"] = ""; -$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = ""; -$a->strings["Background Color"] = ""; -$a->strings["HEX value for the background color. Don't include the #"] = ""; -$a->strings["font size"] = ""; -$a->strings["base font size for your interface"] = ""; -$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; -$a->strings["Set theme width"] = ""; -$a->strings["Delete this item?"] = ""; -$a->strings["show fewer"] = ""; -$a->strings["Update %s failed. See error logs."] = ""; -$a->strings["Update Error at %s"] = ""; -$a->strings["Create a New Account"] = ""; -$a->strings["Register"] = ""; -$a->strings["Logout"] = ""; -$a->strings["Login"] = ""; -$a->strings["Nickname or Email address: "] = ""; -$a->strings["Password: "] = ""; -$a->strings["Remember me"] = ""; -$a->strings["Or login using OpenID: "] = ""; -$a->strings["Forgot your password?"] = ""; -$a->strings["Password Reset"] = ""; -$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["Requested profile is not available."] = ""; -$a->strings["Edit profile"] = ""; -$a->strings["Connect"] = ""; -$a->strings["Message"] = ""; -$a->strings["Profiles"] = ""; -$a->strings["Manage/edit profiles"] = ""; -$a->strings["Change profile photo"] = ""; -$a->strings["Create New Profile"] = ""; -$a->strings["Profile Image"] = ""; -$a->strings["visible to everybody"] = ""; -$a->strings["Edit visibility"] = ""; -$a->strings["Location:"] = ""; -$a->strings["Gender:"] = ""; -$a->strings["Status:"] = ""; -$a->strings["Homepage:"] = ""; -$a->strings["g A l F d"] = ""; -$a->strings["F d"] = ""; -$a->strings["[today]"] = ""; -$a->strings["Birthday Reminders"] = ""; -$a->strings["Birthdays this week:"] = ""; -$a->strings["[No description]"] = ""; -$a->strings["Event Reminders"] = ""; -$a->strings["Events this week:"] = ""; -$a->strings["Status"] = ""; -$a->strings["Status Messages and Posts"] = ""; -$a->strings["Profile Details"] = ""; -$a->strings["Photo Albums"] = ""; -$a->strings["Videos"] = ""; -$a->strings["Events and Calendar"] = ""; -$a->strings["Personal Notes"] = ""; -$a->strings["Only You Can See This"] = ""; -$a->strings["%1\$s is currently %2\$s"] = ""; -$a->strings["Mood"] = ""; -$a->strings["Set your current mood and tell your friends"] = ""; -$a->strings["Public access denied."] = ""; +$a->strings["Click on a contact to add or remove."] = ""; +$a->strings["Visible To"] = ""; +$a->strings["All Contacts (with secure profile access)"] = ""; $a->strings["Item not found."] = ""; +$a->strings["Public access denied."] = ""; $a->strings["Access to this profile has been restricted."] = ""; $a->strings["Item has been removed."] = ""; -$a->strings["Access denied."] = ""; -$a->strings["This is Friendica, version"] = ""; -$a->strings["running at web location"] = ""; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = ""; -$a->strings["Bug reports and issues: please visit"] = ""; -$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"] = ""; -$a->strings["%1\$s welcomes %2\$s"] = ""; -$a->strings["Registration details for %s"] = ""; -$a->strings["Registration successful. Please check your email for further instructions."] = ""; -$a->strings["Failed to send email message. Here is the message that failed."] = ""; -$a->strings["Your registration can not be processed."] = ""; -$a->strings["Registration request at %s"] = ""; -$a->strings["Your registration is pending approval by the site owner."] = ""; -$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'."] = ""; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = ""; -$a->strings["Your OpenID (optional): "] = ""; -$a->strings["Include your profile in member directory?"] = ""; -$a->strings["Yes"] = ""; -$a->strings["No"] = ""; -$a->strings["Membership on this site is by invitation only."] = ""; -$a->strings["Your invitation ID: "] = ""; -$a->strings["Registration"] = ""; -$a->strings["Your Full Name (e.g. Joe Smith): "] = ""; -$a->strings["Your Email Address: "] = ""; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = ""; -$a->strings["Choose a nickname: "] = ""; -$a->strings["Import"] = ""; -$a->strings["Import your profile to this friendica instance"] = ""; +$a->strings["Welcome to Friendica"] = ""; +$a->strings["New Member Checklist"] = ""; +$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["Settings"] = ""; +$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."] = ""; +$a->strings["Upload Profile Photo"] = ""; +$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."] = ""; +$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."] = ""; +$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."] = ""; +$a->strings["Connecting"] = ""; +$a->strings["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."] = ""; +$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."] = ""; +$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."] = ""; +$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."] = ""; +$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."] = ""; +$a->strings["Image uploaded but image cropping failed."] = ""; +$a->strings["Profile Photos"] = ""; +$a->strings["Image size reduction [%s] failed."] = ""; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; +$a->strings["Unable to process image"] = ""; +$a->strings["Image exceeds size limit of %d"] = ""; +$a->strings["Unable to process image."] = ""; +$a->strings["Upload File:"] = ""; +$a->strings["Select a profile:"] = ""; +$a->strings["Upload"] = ""; +$a->strings["or"] = ""; +$a->strings["skip this step"] = ""; +$a->strings["select a photo from your photo albums"] = ""; +$a->strings["Crop Image"] = ""; +$a->strings["Please adjust the image cropping for optimum viewing."] = ""; +$a->strings["Done Editing"] = ""; +$a->strings["Image uploaded successfully."] = ""; +$a->strings["Image upload failed."] = ""; +$a->strings["photo"] = ""; +$a->strings["status"] = ""; +$a->strings["%1\$s is following %2\$s's %3\$s"] = ""; +$a->strings["Tag removed"] = ""; +$a->strings["Remove Item Tag"] = ""; +$a->strings["Select a tag to remove: "] = ""; +$a->strings["Remove"] = ""; +$a->strings["Save to Folder:"] = ""; +$a->strings["- select -"] = ""; +$a->strings["Save"] = ""; +$a->strings["Contact added"] = ""; +$a->strings["Unable to locate original post."] = ""; +$a->strings["Empty post discarded."] = ""; +$a->strings["Wall Photos"] = ""; +$a->strings["System error. Post not saved."] = ""; +$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"] = ""; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = ""; +$a->strings["%s posted an update."] = ""; +$a->strings["Group created."] = ""; +$a->strings["Could not create group."] = ""; +$a->strings["Group not found."] = ""; +$a->strings["Group name changed."] = ""; +$a->strings["Save Group"] = ""; +$a->strings["Create a group of contacts/friends."] = ""; +$a->strings["Group Name: "] = ""; +$a->strings["Group removed."] = ""; +$a->strings["Unable to remove group."] = ""; +$a->strings["Group Editor"] = ""; +$a->strings["Members"] = ""; +$a->strings["You must be logged in to use addons. "] = ""; +$a->strings["Applications"] = ""; +$a->strings["No installed applications."] = ""; $a->strings["Profile not found."] = ""; $a->strings["Contact not found."] = ""; $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = ""; @@ -223,170 +223,166 @@ $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."] = ""; $a->strings["Unable to set your contact credentials on our system."] = ""; $a->strings["Unable to update your contact profile details on our system"] = ""; -$a->strings["Connection accepted at %s"] = ""; +$a->strings["[Name Withheld]"] = ""; $a->strings["%1\$s has joined %2\$s"] = ""; -$a->strings["Authorize application connection"] = ""; -$a->strings["Return to your app and insert this Securty Code:"] = ""; -$a->strings["Please login to continue."] = ""; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = ""; +$a->strings["Requested profile is not available."] = ""; +$a->strings["Tips for New Members"] = ""; +$a->strings["No videos selected"] = ""; +$a->strings["Access to this item is restricted."] = ""; +$a->strings["View Video"] = ""; +$a->strings["View Album"] = ""; +$a->strings["Recent Videos"] = ""; +$a->strings["Upload New Videos"] = ""; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = ""; +$a->strings["Friend suggestion sent."] = ""; +$a->strings["Suggest Friends"] = ""; +$a->strings["Suggest a friend for %s"] = ""; $a->strings["No valid account found."] = ""; $a->strings["Password reset request issued. Check your email."] = ""; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = ""; $a->strings["Password reset requested at %s"] = ""; $a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = ""; +$a->strings["Password Reset"] = ""; $a->strings["Your password has been reset as requested."] = ""; $a->strings["Your new password is"] = ""; $a->strings["Save or copy your new password - and then"] = ""; $a->strings["click here to login"] = ""; $a->strings["Your password may be changed from the Settings page after successful login."] = ""; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = ""; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = ""; $a->strings["Your password has been changed at %s"] = ""; $a->strings["Forgot your Password?"] = ""; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = ""; $a->strings["Nickname or Email: "] = ""; $a->strings["Reset"] = ""; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = ""; +$a->strings["%1\$s likes %2\$s's %3\$s"] = ""; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = ""; +$a->strings["{0} wants to be your friend"] = ""; +$a->strings["{0} sent you a message"] = ""; +$a->strings["{0} requested registration"] = ""; +$a->strings["{0} commented %s's post"] = ""; +$a->strings["{0} liked %s's post"] = ""; +$a->strings["{0} disliked %s's post"] = ""; +$a->strings["{0} is now friends with %s"] = ""; +$a->strings["{0} posted"] = ""; +$a->strings["{0} tagged %s's post with #%s"] = ""; +$a->strings["{0} mentioned you in a post"] = ""; +$a->strings["No contacts."] = ""; +$a->strings["View Contacts"] = ""; +$a->strings["Invalid request identifier."] = ""; +$a->strings["Discard"] = ""; +$a->strings["System"] = ""; +$a->strings["Network"] = ""; +$a->strings["Personal"] = ""; +$a->strings["Home"] = ""; +$a->strings["Introductions"] = ""; +$a->strings["Show Ignored Requests"] = ""; +$a->strings["Hide Ignored Requests"] = ""; +$a->strings["Notification type: "] = ""; +$a->strings["Friend Suggestion"] = ""; +$a->strings["suggested by %s"] = ""; +$a->strings["Post a new friend activity"] = ""; +$a->strings["if applicable"] = ""; +$a->strings["Approve"] = ""; +$a->strings["Claims to be known to you: "] = ""; +$a->strings["yes"] = ""; +$a->strings["no"] = ""; +$a->strings["Approve as: "] = ""; +$a->strings["Friend"] = ""; +$a->strings["Sharer"] = ""; +$a->strings["Fan/Admirer"] = ""; +$a->strings["Friend/Connect Request"] = ""; +$a->strings["New Follower"] = ""; +$a->strings["No introductions."] = ""; +$a->strings["Notifications"] = ""; +$a->strings["%s liked %s's post"] = ""; +$a->strings["%s disliked %s's post"] = ""; +$a->strings["%s is now friends with %s"] = ""; +$a->strings["%s created a new post"] = ""; +$a->strings["%s commented on %s's post"] = ""; +$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["Source (bbcode) text:"] = ""; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = ""; +$a->strings["Source input: "] = ""; +$a->strings["bb2html (raw HTML): "] = ""; +$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["Nothing new here"] = ""; +$a->strings["Clear notifications"] = ""; +$a->strings["New Message"] = ""; $a->strings["No recipient selected."] = ""; -$a->strings["Unable to check your home location."] = ""; +$a->strings["Unable to locate contact information."] = ""; $a->strings["Message could not be sent."] = ""; $a->strings["Message collection failure."] = ""; $a->strings["Message sent."] = ""; -$a->strings["No recipient."] = ""; +$a->strings["Messages"] = ""; +$a->strings["Do you really want to delete this message?"] = ""; +$a->strings["Message deleted."] = ""; +$a->strings["Conversation removed."] = ""; $a->strings["Please enter a link URL:"] = ""; $a->strings["Send Private Message"] = ""; -$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:"] = ""; $a->strings["Subject:"] = ""; $a->strings["Your message:"] = ""; $a->strings["Upload photo"] = ""; $a->strings["Insert web link"] = ""; -$a->strings["Welcome to Friendica"] = ""; -$a->strings["New Member Checklist"] = ""; -$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."] = ""; -$a->strings["Upload Profile Photo"] = ""; -$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."] = ""; -$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."] = ""; -$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."] = ""; -$a->strings["Connecting"] = ""; -$a->strings["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."] = ""; -$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."] = ""; -$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."] = ""; -$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."] = ""; -$a->strings["Do you really want to delete this suggestion?"] = ""; -$a->strings["Cancel"] = ""; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; -$a->strings["Ignore/Hide"] = ""; -$a->strings["Search Results For:"] = ""; -$a->strings["Remove term"] = ""; -$a->strings["Saved Searches"] = ""; -$a->strings["add"] = ""; -$a->strings["Commented Order"] = ""; -$a->strings["Sort by Comment Date"] = ""; -$a->strings["Posted Order"] = ""; -$a->strings["Sort by Post Date"] = ""; -$a->strings["Personal"] = ""; -$a->strings["Posts that mention or involve you"] = ""; -$a->strings["New"] = ""; -$a->strings["Activity Stream - by date"] = ""; -$a->strings["Shared Links"] = ""; -$a->strings["Interesting Links"] = ""; -$a->strings["Starred"] = ""; -$a->strings["Favourite Posts"] = ""; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( +$a->strings["Please wait"] = ""; +$a->strings["No messages."] = ""; +$a->strings["Unknown sender - %s"] = ""; +$a->strings["You and %s"] = ""; +$a->strings["%s and You"] = ""; +$a->strings["Delete conversation"] = ""; +$a->strings["D, d M Y - g:i A"] = ""; +$a->strings["%d message"] = array( 0 => "", 1 => "", ); -$a->strings["Private messages to this group are at risk of public disclosure."] = ""; -$a->strings["No such group"] = ""; -$a->strings["Group is empty"] = ""; -$a->strings["Group: "] = ""; -$a->strings["Contact: "] = ""; -$a->strings["Private messages to this person are at risk of public disclosure."] = ""; -$a->strings["Invalid contact."] = ""; -$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."] = ""; -$a->strings["Please see the file \"INSTALL.txt\"."] = ""; -$a->strings["System check"] = ""; -$a->strings["Next"] = ""; -$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."] = ""; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = ""; -$a->strings["Database Server Name"] = ""; -$a->strings["Database Login Name"] = ""; -$a->strings["Database Login Password"] = ""; -$a->strings["Database Name"] = ""; -$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"] = ""; -$a->strings["Site settings"] = ""; -$a->strings["Could not find a command line version of PHP in the web server 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."] = ""; -$a->strings["This is required for message delivery to work."] = ""; -$a->strings["PHP register_argc_argv"] = ""; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = ""; -$a->strings["If running under Windows, please see \"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."] = ""; -$a->strings["Error: libCURL PHP module required but not installed."] = ""; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = ""; -$a->strings["Error: openssl PHP module required but not installed."] = ""; -$a->strings["Error: mysqli PHP module required but not installed."] = ""; -$a->strings["Error: mb_string PHP module required but not installed."] = ""; -$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = ""; -$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."] = ""; -$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."] = ""; -$a->strings["Errors encountered creating database tables."] = ""; -$a->strings["

What next

"] = ""; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = ""; +$a->strings["Message not available."] = ""; +$a->strings["Delete message"] = ""; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; +$a->strings["Send Reply"] = ""; +$a->strings["[Embedded content - reload page to view]"] = ""; +$a->strings["Contact settings applied."] = ""; +$a->strings["Contact update failed."] = ""; +$a->strings["Repair Contact Settings"] = ""; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = ""; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = ""; +$a->strings["Return to contact editor"] = ""; +$a->strings["No mirroring"] = ""; +$a->strings["Mirror as forwarded posting"] = ""; +$a->strings["Mirror as my own posting"] = ""; +$a->strings["Name"] = ""; +$a->strings["Account Nickname"] = ""; +$a->strings["@Tagname - overrides Name/Nickname"] = ""; +$a->strings["Account URL"] = ""; +$a->strings["Friend Request URL"] = ""; +$a->strings["Friend Confirm URL"] = ""; +$a->strings["Notification Endpoint URL"] = ""; +$a->strings["Poll/Feed URL"] = ""; +$a->strings["New photo from this URL"] = ""; +$a->strings["Remote Self"] = ""; +$a->strings["Mirror postings from this contact"] = ""; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; +$a->strings["Access denied."] = ""; +$a->strings["People Search"] = ""; +$a->strings["No matches"] = ""; +$a->strings["Photos"] = ""; +$a->strings["Files"] = ""; +$a->strings["Contacts who are not members of a group"] = ""; $a->strings["Theme settings updated."] = ""; $a->strings["Site"] = ""; $a->strings["Users"] = ""; @@ -413,7 +409,7 @@ $a->strings["Active plugins"] = ""; $a->strings["Can not parse base url. Must have at least ://"] = ""; $a->strings["Site settings updated."] = ""; $a->strings["No special theme for mobile devices"] = ""; -$a->strings["Never"] = ""; +$a->strings["At post arrival"] = ""; $a->strings["Frequently"] = ""; $a->strings["Hourly"] = ""; $a->strings["Twice daily"] = ""; @@ -426,12 +422,14 @@ $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["Save Settings"] = ""; +$a->strings["Registration"] = ""; $a->strings["File upload"] = ""; $a->strings["Policies"] = ""; $a->strings["Advanced"] = ""; $a->strings["Performance"] = ""; $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = ""; $a->strings["Site name"] = ""; +$a->strings["Host name"] = ""; $a->strings["Banner/Logo"] = ""; $a->strings["Additional Info"] = ""; $a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = ""; @@ -442,6 +440,8 @@ $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["Force SSL"] = ""; +$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = ""; $a->strings["Old style 'Share'"] = ""; $a->strings["Deactivates the bbcode element 'share' for repeating items."] = ""; $a->strings["Hide help entry from navigation menu"] = ""; @@ -481,6 +481,8 @@ $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["Allow Users to set remote_self"] = ""; +$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = ""; $a->strings["Block multiple registrations"] = ""; $a->strings["Disallow users to register additional accounts for use as pages."] = ""; $a->strings["OpenID support"] = ""; @@ -492,7 +494,7 @@ $a->strings["Use PHP UTF8 regular expressions"] = ""; $a->strings["Show Community Page"] = ""; $a->strings["Display a Community page showing all recent public postings on this site."] = ""; $a->strings["Enable OStatus support"] = ""; -$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 (StatusNet, GNU Social 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"] = ""; @@ -517,22 +519,33 @@ $a->strings["Suppress Language"] = ""; $a->strings["Suppress language information in meta information about a posting."] = ""; $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["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = ""; +$a->strings["Maximum numbers of comments per post"] = ""; +$a->strings["How much comments should be shown for each post? Default value is 100."] = ""; $a->strings["Path for lock file"] = ""; $a->strings["Temp path"] = ""; $a->strings["Base path to installation"] = ""; +$a->strings["Disable picture proxy"] = ""; +$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = ""; $a->strings["New base url"] = ""; +$a->strings["Disable noscrape"] = ""; +$a->strings["The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping. Disabling it will cause higher load on your server and the directory server."] = ""; $a->strings["Update has been marked successful"] = ""; -$a->strings["Executing %s failed. Check system logs."] = ""; +$a->strings["Database structure update %s was successfully applied."] = ""; +$a->strings["Executing of database structure update %s failed with error: %s"] = ""; +$a->strings["Executing %s failed with error: %s"] = ""; $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["There was no additional update function %s that needed to be called."] = ""; $a->strings["No failed updates."] = ""; +$a->strings["Check database structure"] = ""; $a->strings["Failed Updates"] = ""; $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["Registration successful. Email send to user"] = ""; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = ""; +$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = ""; +$a->strings["Registration details for %s"] = ""; $a->strings["%s user blocked/unblocked"] = array( 0 => "", 1 => "", @@ -549,13 +562,9 @@ $a->strings["select all"] = ""; $a->strings["User registrations waiting for confirm"] = ""; $a->strings["User waiting for permanent deletion"] = ""; $a->strings["Request date"] = ""; -$a->strings["Name"] = ""; $a->strings["Email"] = ""; $a->strings["No registrations."] = ""; -$a->strings["Approve"] = ""; $a->strings["Deny"] = ""; -$a->strings["Block"] = ""; -$a->strings["Unblock"] = ""; $a->strings["Site admin"] = ""; $a->strings["Account expired"] = ""; $a->strings["New User"] = ""; @@ -587,205 +596,195 @@ $a->strings["Enable Debugging"] = ""; $a->strings["Log file"] = ""; $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = ""; $a->strings["Log level"] = ""; -$a->strings["Update now"] = ""; $a->strings["Close"] = ""; $a->strings["FTP Host"] = ""; $a->strings["FTP Path"] = ""; $a->strings["FTP User"] = ""; $a->strings["FTP Password"] = ""; -$a->strings["Search"] = ""; -$a->strings["No results."] = ""; -$a->strings["Tips for New Members"] = ""; -$a->strings["link"] = ""; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = ""; -$a->strings["Item not found"] = ""; -$a->strings["Edit post"] = ""; -$a->strings["upload photo"] = ""; -$a->strings["Attach file"] = ""; -$a->strings["attach file"] = ""; -$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"] = ""; -$a->strings["set location"] = ""; -$a->strings["Clear browser location"] = ""; -$a->strings["clear location"] = ""; -$a->strings["Permission settings"] = ""; -$a->strings["CC: email addresses"] = ""; -$a->strings["Public post"] = ""; -$a->strings["Set title"] = ""; -$a->strings["Categories (comma-separated list)"] = ""; -$a->strings["Example: bob@example.com, mary@example.com"] = ""; -$a->strings["Item not available."] = ""; -$a->strings["Item was not found."] = ""; -$a->strings["Account approved."] = ""; -$a->strings["Registration revoked for %s"] = ""; -$a->strings["Please login."] = ""; -$a->strings["Find on this site"] = ""; -$a->strings["Finding: "] = ""; -$a->strings["Site Directory"] = ""; -$a->strings["Find"] = ""; -$a->strings["Age: "] = ""; -$a->strings["Gender: "] = ""; -$a->strings["About:"] = ""; -$a->strings["No entries (some entries may be hidden)."] = ""; -$a->strings["Contact settings applied."] = ""; -$a->strings["Contact update failed."] = ""; -$a->strings["Repair Contact Settings"] = ""; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = ""; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = ""; -$a->strings["Return to contact editor"] = ""; -$a->strings["Account Nickname"] = ""; -$a->strings["@Tagname - overrides Name/Nickname"] = ""; -$a->strings["Account URL"] = ""; -$a->strings["Friend Request URL"] = ""; -$a->strings["Friend Confirm URL"] = ""; -$a->strings["Notification Endpoint URL"] = ""; -$a->strings["Poll/Feed URL"] = ""; -$a->strings["New photo from this URL"] = ""; -$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 account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; -$a->strings["Remote privacy information not available."] = ""; -$a->strings["Visible to:"] = ""; -$a->strings["Save"] = ""; -$a->strings["Help:"] = ""; -$a->strings["Help"] = ""; -$a->strings["No profile"] = ""; -$a->strings["This introduction has already been accepted."] = ""; -$a->strings["Profile location is not valid or does not contain profile information."] = ""; -$a->strings["Warning: profile location has no identifiable owner name."] = ""; -$a->strings["Warning: profile location has no profile photo."] = ""; -$a->strings["%d required parameter was not found at the given location"] = array( +$a->strings["Search Results For:"] = ""; +$a->strings["Remove term"] = ""; +$a->strings["Saved Searches"] = ""; +$a->strings["add"] = ""; +$a->strings["Commented Order"] = ""; +$a->strings["Sort by Comment Date"] = ""; +$a->strings["Posted Order"] = ""; +$a->strings["Sort by Post Date"] = ""; +$a->strings["Posts that mention or involve you"] = ""; +$a->strings["New"] = ""; +$a->strings["Activity Stream - by date"] = ""; +$a->strings["Shared Links"] = ""; +$a->strings["Interesting Links"] = ""; +$a->strings["Starred"] = ""; +$a->strings["Favourite Posts"] = ""; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( 0 => "", 1 => "", ); -$a->strings["Introduction complete."] = ""; -$a->strings["Unrecoverable protocol error."] = ""; -$a->strings["Profile unavailable."] = ""; -$a->strings["%s has received too many connection requests today."] = ""; -$a->strings["Spam protection measures have been invoked."] = ""; -$a->strings["Friends are advised to please try again in 24 hours."] = ""; -$a->strings["Invalid locator"] = ""; -$a->strings["Invalid email address."] = ""; -$a->strings["This account has not been configured for email. Request failed."] = ""; -$a->strings["Unable to resolve your name at the provided location."] = ""; -$a->strings["You have already introduced yourself here."] = ""; -$a->strings["Apparently you are already friends with %s."] = ""; -$a->strings["Invalid profile URL."] = ""; -$a->strings["Disallowed profile URL."] = ""; -$a->strings["Failed to update contact record."] = ""; -$a->strings["Your introduction has been sent."] = ""; -$a->strings["Please login to confirm introduction."] = ""; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = ""; -$a->strings["Hide this contact"] = ""; -$a->strings["Welcome home %s."] = ""; -$a->strings["Please confirm your introduction/connection request to %s."] = ""; -$a->strings["Confirm"] = ""; -$a->strings["[Name Withheld]"] = ""; -$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"] = ""; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = ""; -$a->strings["Please answer the following:"] = ""; -$a->strings["Does %s know you?"] = ""; -$a->strings["Add a personal note:"] = ""; -$a->strings["Friendica"] = ""; -$a->strings["StatusNet/Federated Social Web"] = ""; -$a->strings["Diaspora"] = ""; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = ""; -$a->strings["Your Identity Address:"] = ""; -$a->strings["Submit Request"] = ""; -$a->strings["[Embedded content - reload page to view]"] = ""; +$a->strings["Private messages to this group are at risk of public disclosure."] = ""; +$a->strings["No such group"] = ""; +$a->strings["Group is empty"] = ""; +$a->strings["Group: "] = ""; +$a->strings["Contact: "] = ""; +$a->strings["Private messages to this person are at risk of public disclosure."] = ""; +$a->strings["Invalid contact."] = ""; +$a->strings["Friends of %s"] = ""; +$a->strings["No friends to display."] = ""; +$a->strings["Event title and start time are required."] = ""; +$a->strings["l, F j"] = ""; +$a->strings["Edit event"] = ""; +$a->strings["link to source"] = ""; +$a->strings["Events"] = ""; +$a->strings["Create New Event"] = ""; +$a->strings["Previous"] = ""; +$a->strings["Next"] = ""; +$a->strings["hour:minute"] = ""; +$a->strings["Event details"] = ""; +$a->strings["Format is %s %s. Starting date and Title are required."] = ""; +$a->strings["Event Starts:"] = ""; +$a->strings["Required"] = ""; +$a->strings["Finish date/time is not known or not relevant"] = ""; +$a->strings["Event Finishes:"] = ""; +$a->strings["Adjust for viewer timezone"] = ""; +$a->strings["Description:"] = ""; +$a->strings["Location:"] = ""; +$a->strings["Title:"] = ""; +$a->strings["Share this event"] = ""; +$a->strings["Select"] = ""; +$a->strings["View %s's profile @ %s"] = ""; +$a->strings["%s from %s"] = ""; $a->strings["View in context"] = ""; -$a->strings["Could not access contact record."] = ""; -$a->strings["Could not locate selected profile."] = ""; -$a->strings["Contact updated."] = ""; -$a->strings["Contact has been blocked"] = ""; -$a->strings["Contact has been unblocked"] = ""; -$a->strings["Contact has been ignored"] = ""; -$a->strings["Contact has been unignored"] = ""; -$a->strings["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."] = ""; -$a->strings["You are mutual friends with %s"] = ""; -$a->strings["You are sharing with %s"] = ""; -$a->strings["%s is sharing with you"] = ""; -$a->strings["Private communications are not available for this contact."] = ""; -$a->strings["(Update was successful)"] = ""; -$a->strings["(Update was not successful)"] = ""; -$a->strings["Suggest friends"] = ""; -$a->strings["Network type: %s"] = ""; -$a->strings["%d contact in common"] = array( +$a->strings["%d comment"] = array( 0 => "", 1 => "", ); -$a->strings["View all contacts"] = ""; -$a->strings["Toggle Blocked status"] = ""; -$a->strings["Unignore"] = ""; -$a->strings["Ignore"] = ""; -$a->strings["Toggle Ignored status"] = ""; -$a->strings["Unarchive"] = ""; -$a->strings["Archive"] = ""; -$a->strings["Toggle Archive status"] = ""; -$a->strings["Repair"] = ""; -$a->strings["Advanced Contact Settings"] = ""; -$a->strings["Communications lost with this contact!"] = ""; -$a->strings["Contact Editor"] = ""; -$a->strings["Profile Visibility"] = ""; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = ""; -$a->strings["Contact Information / Notes"] = ""; -$a->strings["Edit contact notes"] = ""; -$a->strings["Visit %s's profile [%s]"] = ""; -$a->strings["Block/Unblock contact"] = ""; -$a->strings["Ignore contact"] = ""; -$a->strings["Repair URL settings"] = ""; -$a->strings["View conversations"] = ""; -$a->strings["Delete contact"] = ""; -$a->strings["Last update:"] = ""; -$a->strings["Update public posts"] = ""; -$a->strings["Currently blocked"] = ""; -$a->strings["Currently ignored"] = ""; -$a->strings["Currently archived"] = ""; -$a->strings["Hide this contact from others"] = ""; -$a->strings["Replies/likes to your public posts may still be visible"] = ""; -$a->strings["Suggestions"] = ""; -$a->strings["Suggest potential friends"] = ""; -$a->strings["All Contacts"] = ""; -$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"] = ""; -$a->strings["is a fan of yours"] = ""; -$a->strings["you are a fan of"] = ""; -$a->strings["Edit contact"] = ""; -$a->strings["Search your contacts"] = ""; +$a->strings["comment"] = array( + 0 => "", + 1 => "", +); +$a->strings["show more"] = ""; +$a->strings["Private Message"] = ""; +$a->strings["I like this (toggle)"] = ""; +$a->strings["like"] = ""; +$a->strings["I don't like this (toggle)"] = ""; +$a->strings["dislike"] = ""; +$a->strings["Share this"] = ""; +$a->strings["share"] = ""; +$a->strings["This is you"] = ""; +$a->strings["Comment"] = ""; +$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["Preview"] = ""; +$a->strings["Edit"] = ""; +$a->strings["add star"] = ""; +$a->strings["remove star"] = ""; +$a->strings["toggle star status"] = ""; +$a->strings["starred"] = ""; +$a->strings["add tag"] = ""; +$a->strings["save to folder"] = ""; +$a->strings["to"] = ""; +$a->strings["Wall-to-Wall"] = ""; +$a->strings["via Wall-To-Wall:"] = ""; +$a->strings["Remove My Account"] = ""; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = ""; +$a->strings["Please enter your password for verification:"] = ""; +$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."] = ""; +$a->strings["Please see the file \"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."] = ""; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = ""; +$a->strings["Database Server Name"] = ""; +$a->strings["Database Login Name"] = ""; +$a->strings["Database Login Password"] = ""; +$a->strings["Database Name"] = ""; +$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"] = ""; +$a->strings["Site settings"] = ""; +$a->strings["Could not find a command line version of PHP in the web server 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."] = ""; +$a->strings["This is required for message delivery to work."] = ""; +$a->strings["PHP register_argc_argv"] = ""; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = ""; +$a->strings["If running under Windows, please see \"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."] = ""; +$a->strings["Error: libCURL PHP module required but not installed."] = ""; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = ""; +$a->strings["Error: openssl PHP module required but not installed."] = ""; +$a->strings["Error: mysqli PHP module required but not installed."] = ""; +$a->strings["Error: mb_string PHP module required but not installed."] = ""; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = ""; +$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."] = ""; +$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."] = ""; +$a->strings["

What next

"] = ""; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = ""; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = ""; +$a->strings["Unable to check your home location."] = ""; +$a->strings["No recipient."] = ""; +$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["Help:"] = ""; +$a->strings["Help"] = ""; +$a->strings["Not Found"] = ""; +$a->strings["Page not found."] = ""; +$a->strings["%1\$s welcomes %2\$s"] = ""; +$a->strings["Welcome to %s"] = ""; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = ""; +$a->strings["Or - did you try to upload an empty file?"] = ""; +$a->strings["File exceeds size limit of %d"] = ""; +$a->strings["File upload failed."] = ""; +$a->strings["Profile Match"] = ""; +$a->strings["No keywords to match. Please add keywords to your default profile."] = ""; +$a->strings["is interested in:"] = ""; +$a->strings["Connect"] = ""; +$a->strings["link"] = ""; +$a->strings["Not available."] = ""; +$a->strings["Community"] = ""; +$a->strings["No results."] = ""; $a->strings["everybody"] = ""; -$a->strings["Account settings"] = ""; $a->strings["Additional features"] = ""; -$a->strings["Display settings"] = ""; -$a->strings["Connector settings"] = ""; -$a->strings["Plugin settings"] = ""; +$a->strings["Display"] = ""; +$a->strings["Social Networks"] = ""; +$a->strings["Delegations"] = ""; $a->strings["Connected apps"] = ""; $a->strings["Export personal data"] = ""; $a->strings["Remove account"] = ""; $a->strings["Missing some important data!"] = ""; -$a->strings["Update"] = ""; $a->strings["Failed to connect with email account using the settings provided."] = ""; $a->strings["Email settings updated."] = ""; $a->strings["Features updated"] = ""; @@ -819,11 +818,11 @@ $a->strings["Off"] = ""; $a->strings["On"] = ""; $a->strings["Additional Features"] = ""; $a->strings["Built-in support for %s connectivity is %s"] = ""; +$a->strings["Diaspora"] = ""; $a->strings["enabled"] = ""; $a->strings["disabled"] = ""; $a->strings["StatusNet"] = ""; $a->strings["Email access is disabled on this site."] = ""; -$a->strings["Connector Settings"] = ""; $a->strings["Email/Mailbox Setup"] = ""; $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = ""; $a->strings["Last successful email check:"] = ""; @@ -848,7 +847,11 @@ $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["Don't show notices"] = ""; $a->strings["Infinite scroll"] = ""; +$a->strings["Automatic updates only at the top of the network page"] = ""; +$a->strings["User Types"] = ""; +$a->strings["Community Types"] = ""; $a->strings["Normal Account Page"] = ""; $a->strings["This account is a normal personal profile"] = ""; $a->strings["Soapbox Page"] = ""; @@ -862,15 +865,16 @@ $a->strings["Private forum - approved members only"] = ""; $a->strings["OpenID:"] = ""; $a->strings["(Optional) Allow this OpenID to login to this account."] = ""; $a->strings["Publish your default profile in your local site directory?"] = ""; +$a->strings["No"] = ""; $a->strings["Publish your default profile in the global social directory?"] = ""; $a->strings["Hide your contact/friend list from viewers of your default profile?"] = ""; $a->strings["Hide your profile details from unknown viewers?"] = ""; +$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = ""; $a->strings["Allow friends to post to your profile page?"] = ""; $a->strings["Allow friends to tag your posts?"] = ""; $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."] = ""; -$a->strings["or"] = ""; $a->strings["Your Identity Address is"] = ""; $a->strings["Automatically expire posts after this many days:"] = ""; $a->strings["If empty, posts will not expire. Expired posts will be deleted"] = ""; @@ -920,11 +924,105 @@ $a->strings["You receive a private message"] = ""; $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["Text-only notification emails"] = ""; +$a->strings["Send text only notification emails, without the html part"] = ""; $a->strings["Advanced Account/Page Type Settings"] = ""; $a->strings["Change the behaviour of this account for special situations"] = ""; $a->strings["Relocate"] = ""; $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = ""; $a->strings["Resend relocate message to contacts"] = ""; +$a->strings["This introduction has already been accepted."] = ""; +$a->strings["Profile location is not valid or does not contain profile information."] = ""; +$a->strings["Warning: profile location has no identifiable owner name."] = ""; +$a->strings["Warning: profile location has no profile photo."] = ""; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "", + 1 => "", +); +$a->strings["Introduction complete."] = ""; +$a->strings["Unrecoverable protocol error."] = ""; +$a->strings["Profile unavailable."] = ""; +$a->strings["%s has received too many connection requests today."] = ""; +$a->strings["Spam protection measures have been invoked."] = ""; +$a->strings["Friends are advised to please try again in 24 hours."] = ""; +$a->strings["Invalid locator"] = ""; +$a->strings["Invalid email address."] = ""; +$a->strings["This account has not been configured for email. Request failed."] = ""; +$a->strings["Unable to resolve your name at the provided location."] = ""; +$a->strings["You have already introduced yourself here."] = ""; +$a->strings["Apparently you are already friends with %s."] = ""; +$a->strings["Invalid profile URL."] = ""; +$a->strings["Disallowed profile URL."] = ""; +$a->strings["Your introduction has been sent."] = ""; +$a->strings["Please login to confirm introduction."] = ""; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = ""; +$a->strings["Hide this contact"] = ""; +$a->strings["Welcome home %s."] = ""; +$a->strings["Please confirm your introduction/connection request to %s."] = ""; +$a->strings["Confirm"] = ""; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = ""; +$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"] = ""; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = ""; +$a->strings["Please answer the following:"] = ""; +$a->strings["Does %s know you?"] = ""; +$a->strings["Add a personal note:"] = ""; +$a->strings["Friendica"] = ""; +$a->strings["StatusNet/Federated Social Web"] = ""; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = ""; +$a->strings["Your Identity Address:"] = ""; +$a->strings["Submit Request"] = ""; +$a->strings["Registration successful. Please check your email for further instructions."] = ""; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = ""; +$a->strings["Your registration can not be processed."] = ""; +$a->strings["Your registration is pending approval by the site owner."] = ""; +$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'."] = ""; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = ""; +$a->strings["Your OpenID (optional): "] = ""; +$a->strings["Include your profile in member directory?"] = ""; +$a->strings["Membership on this site is by invitation only."] = ""; +$a->strings["Your invitation ID: "] = ""; +$a->strings["Your Full Name (e.g. Joe Smith): "] = ""; +$a->strings["Your Email Address: "] = ""; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = ""; +$a->strings["Choose a nickname: "] = ""; +$a->strings["Register"] = ""; +$a->strings["Import"] = ""; +$a->strings["Import your profile to this friendica instance"] = ""; +$a->strings["System down for maintenance"] = ""; +$a->strings["Search"] = ""; +$a->strings["Global Directory"] = ""; +$a->strings["Find on this site"] = ""; +$a->strings["Site Directory"] = ""; +$a->strings["Age: "] = ""; +$a->strings["Gender: "] = ""; +$a->strings["Gender:"] = ""; +$a->strings["Status:"] = ""; +$a->strings["Homepage:"] = ""; +$a->strings["About:"] = ""; +$a->strings["No entries (some entries may be hidden)."] = ""; +$a->strings["No potential page delegates located."] = ""; +$a->strings["Delegate Page Management"] = ""; +$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."] = ""; +$a->strings["Existing Page Managers"] = ""; +$a->strings["Existing Page Delegates"] = ""; +$a->strings["Potential Delegates"] = ""; +$a->strings["Add"] = ""; +$a->strings["No entries."] = ""; +$a->strings["Common Friends"] = ""; +$a->strings["No contacts in common."] = ""; +$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["%1\$s is currently %2\$s"] = ""; +$a->strings["Mood"] = ""; +$a->strings["Set your current mood and tell your friends"] = ""; +$a->strings["Do you really want to delete this suggestion?"] = ""; +$a->strings["Friend Suggestions"] = ""; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; +$a->strings["Ignore/Hide"] = ""; $a->strings["Profile deleted."] = ""; $a->strings["Profile-"] = ""; $a->strings["New profile created."] = ""; @@ -949,6 +1047,7 @@ $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 contacts and friends:"] = ""; $a->strings["Hide your contact/friend list from viewers of this profile?"] = ""; $a->strings["Edit Profile Details"] = ""; $a->strings["Change Profile Photo"] = ""; @@ -956,6 +1055,11 @@ $a->strings["View this profile"] = ""; $a->strings["Create a new profile using these settings"] = ""; $a->strings["Clone this profile"] = ""; $a->strings["Delete this profile"] = ""; +$a->strings["Basic information"] = ""; +$a->strings["Profile picture"] = ""; +$a->strings["Preferences"] = ""; +$a->strings["Status information"] = ""; +$a->strings["Additional information"] = ""; $a->strings["Profile Name:"] = ""; $a->strings["Your Full Name:"] = ""; $a->strings["Title/Description:"] = ""; @@ -979,71 +1083,60 @@ $a->strings["Public Keywords:"] = ""; $a->strings["Private Keywords:"] = ""; $a->strings["Likes:"] = ""; $a->strings["Dislikes:"] = ""; -$a->strings["Example: fishing photography software"] = ""; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = ""; -$a->strings["(Used for searching profiles, never shown to others)"] = ""; -$a->strings["Tell us about yourself..."] = ""; -$a->strings["Hobbies/Interests"] = ""; -$a->strings["Contact information and Social Networks"] = ""; -$a->strings["Musical interests"] = ""; -$a->strings["Books, literature"] = ""; -$a->strings["Television"] = ""; -$a->strings["Film/dance/culture/entertainment"] = ""; -$a->strings["Love/romance"] = ""; -$a->strings["Work/employment"] = ""; -$a->strings["School/education"] = ""; -$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = ""; -$a->strings["Edit/Manage Profiles"] = ""; -$a->strings["Group created."] = ""; -$a->strings["Could not create group."] = ""; -$a->strings["Group not found."] = ""; -$a->strings["Group name changed."] = ""; -$a->strings["Save Group"] = ""; -$a->strings["Create a group of contacts/friends."] = ""; -$a->strings["Group Name: "] = ""; -$a->strings["Group removed."] = ""; -$a->strings["Unable to remove group."] = ""; -$a->strings["Group Editor"] = ""; -$a->strings["Members"] = ""; -$a->strings["Click on a contact to add or remove."] = ""; -$a->strings["Source (bbcode) text:"] = ""; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = ""; -$a->strings["Source input: "] = ""; -$a->strings["bb2html (raw HTML): "] = ""; -$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["Not available."] = ""; -$a->strings["Contact added"] = ""; -$a->strings["No more system notifications."] = ""; -$a->strings["System Notifications"] = ""; -$a->strings["New Message"] = ""; -$a->strings["Unable to locate contact information."] = ""; -$a->strings["Messages"] = ""; -$a->strings["Do you really want to delete this message?"] = ""; -$a->strings["Message deleted."] = ""; -$a->strings["Conversation removed."] = ""; -$a->strings["No messages."] = ""; -$a->strings["Unknown sender - %s"] = ""; -$a->strings["You and %s"] = ""; -$a->strings["%s and You"] = ""; -$a->strings["Delete conversation"] = ""; -$a->strings["D, d M Y - g:i A"] = ""; -$a->strings["%d message"] = array( - 0 => "", - 1 => "", -); -$a->strings["Message not available."] = ""; -$a->strings["Delete message"] = ""; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; -$a->strings["Send Reply"] = ""; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = ""; -$a->strings["Post successful."] = ""; +$a->strings["Example: fishing photography software"] = ""; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = ""; +$a->strings["(Used for searching profiles, never shown to others)"] = ""; +$a->strings["Tell us about yourself..."] = ""; +$a->strings["Hobbies/Interests"] = ""; +$a->strings["Contact information and Social Networks"] = ""; +$a->strings["Musical interests"] = ""; +$a->strings["Books, literature"] = ""; +$a->strings["Television"] = ""; +$a->strings["Film/dance/culture/entertainment"] = ""; +$a->strings["Love/romance"] = ""; +$a->strings["Work/employment"] = ""; +$a->strings["School/education"] = ""; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = ""; +$a->strings["Edit/Manage Profiles"] = ""; +$a->strings["Change profile photo"] = ""; +$a->strings["Create New Profile"] = ""; +$a->strings["Profile Image"] = ""; +$a->strings["visible to everybody"] = ""; +$a->strings["Edit visibility"] = ""; +$a->strings["Item not found"] = ""; +$a->strings["Edit post"] = ""; +$a->strings["upload photo"] = ""; +$a->strings["Attach file"] = ""; +$a->strings["attach file"] = ""; +$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"] = ""; +$a->strings["set location"] = ""; +$a->strings["Clear browser location"] = ""; +$a->strings["clear location"] = ""; +$a->strings["Permission settings"] = ""; +$a->strings["CC: email addresses"] = ""; +$a->strings["Public post"] = ""; +$a->strings["Set title"] = ""; +$a->strings["Categories (comma-separated list)"] = ""; +$a->strings["Example: bob@example.com, mary@example.com"] = ""; +$a->strings["This is Friendica, version"] = ""; +$a->strings["running at web location"] = ""; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = ""; +$a->strings["Bug reports and issues: please visit"] = ""; +$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"] = ""; +$a->strings["Authorize application connection"] = ""; +$a->strings["Return to your app and insert this Securty Code:"] = ""; +$a->strings["Please login to continue."] = ""; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = ""; +$a->strings["Remote privacy information not available."] = ""; +$a->strings["Visible to:"] = ""; +$a->strings["Personal Notes"] = ""; $a->strings["l F d, Y \\@ g:i A"] = ""; $a->strings["Time Conversion"] = ""; $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = ""; @@ -1051,16 +1144,33 @@ $a->strings["UTC time: %s"] = ""; $a->strings["Current timezone: %s"] = ""; $a->strings["Converted localtime: %s"] = ""; $a->strings["Please select your timezone:"] = ""; -$a->strings["Save to Folder:"] = ""; -$a->strings["- select -"] = ""; -$a->strings["Invalid profile identifier."] = ""; -$a->strings["Profile Visibility Editor"] = ""; -$a->strings["Visible To"] = ""; -$a->strings["All Contacts (with secure profile access)"] = ""; -$a->strings["No contacts."] = ""; -$a->strings["View Contacts"] = ""; -$a->strings["People Search"] = ""; -$a->strings["No matches"] = ""; +$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["Total invitation limit exceeded."] = ""; +$a->strings["%s : Not a valid email address."] = ""; +$a->strings["Please join us on Friendica"] = ""; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; +$a->strings["%s : Message delivery failed."] = ""; +$a->strings["%d message sent."] = array( + 0 => "", + 1 => "", +); +$a->strings["You have no more invitations available"] = ""; +$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."] = ""; +$a->strings["Send invitations"] = ""; +$a->strings["Enter email addresses, one per line:"] = ""; +$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"] = ""; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = ""; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = ""; +$a->strings["Photo Albums"] = ""; +$a->strings["Contact Photos"] = ""; $a->strings["Upload New Photos"] = ""; $a->strings["Contact information unavailable"] = ""; $a->strings["Album not found."] = ""; @@ -1072,10 +1182,7 @@ $a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; $a->strings["a photo"] = ""; $a->strings["Image exceeds size limit of "] = ""; $a->strings["Image file is empty."] = ""; -$a->strings["Unable to process image."] = ""; -$a->strings["Image upload failed."] = ""; $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."] = ""; $a->strings["Upload Photos"] = ""; $a->strings["New album name: "] = ""; @@ -1103,168 +1210,70 @@ $a->strings["Caption"] = ""; $a->strings["Add a Tag"] = ""; $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = ""; $a->strings["Private photo"] = ""; -$a->strings["Public photo"] = ""; -$a->strings["Share"] = ""; -$a->strings["View Album"] = ""; -$a->strings["Recent Photos"] = ""; -$a->strings["File exceeds size limit of %d"] = ""; -$a->strings["File upload failed."] = ""; -$a->strings["No videos selected"] = ""; -$a->strings["View Video"] = ""; -$a->strings["Recent Videos"] = ""; -$a->strings["Upload New Videos"] = ""; -$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["%1\$s is following %2\$s's %3\$s"] = ""; -$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["Common Friends"] = ""; -$a->strings["No contacts in common."] = ""; -$a->strings["Image exceeds size limit of %d"] = ""; -$a->strings["Wall Photos"] = ""; -$a->strings["Image uploaded but image cropping failed."] = ""; -$a->strings["Image size reduction [%s] failed."] = ""; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; -$a->strings["Unable to process image"] = ""; -$a->strings["Upload File:"] = ""; -$a->strings["Select a profile:"] = ""; -$a->strings["Upload"] = ""; -$a->strings["skip this step"] = ""; -$a->strings["select a photo from your photo albums"] = ""; -$a->strings["Crop Image"] = ""; -$a->strings["Please adjust the image cropping for optimum viewing."] = ""; -$a->strings["Done Editing"] = ""; -$a->strings["Image uploaded successfully."] = ""; -$a->strings["Applications"] = ""; -$a->strings["No installed applications."] = ""; -$a->strings["Nothing new here"] = ""; -$a->strings["Clear notifications"] = ""; -$a->strings["Profile Match"] = ""; -$a->strings["No keywords to match. Please add keywords to your default profile."] = ""; -$a->strings["is interested in:"] = ""; -$a->strings["Tag removed"] = ""; -$a->strings["Remove Item Tag"] = ""; -$a->strings["Select a tag to remove: "] = ""; -$a->strings["Remove"] = ""; -$a->strings["Event title and start time are required."] = ""; -$a->strings["l, F j"] = ""; -$a->strings["Edit event"] = ""; -$a->strings["link to source"] = ""; -$a->strings["Create New Event"] = ""; -$a->strings["Previous"] = ""; -$a->strings["hour:minute"] = ""; -$a->strings["Event details"] = ""; -$a->strings["Format is %s %s. Starting date and Title are required."] = ""; -$a->strings["Event Starts:"] = ""; -$a->strings["Required"] = ""; -$a->strings["Finish date/time is not known or not relevant"] = ""; -$a->strings["Event Finishes:"] = ""; -$a->strings["Adjust for viewer timezone"] = ""; -$a->strings["Description:"] = ""; -$a->strings["Title:"] = ""; -$a->strings["Share this event"] = ""; -$a->strings["No potential page delegates located."] = ""; -$a->strings["Delegate Page Management"] = ""; -$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."] = ""; -$a->strings["Existing Page Managers"] = ""; -$a->strings["Existing Page Delegates"] = ""; -$a->strings["Potential Delegates"] = ""; -$a->strings["Add"] = ""; -$a->strings["No entries."] = ""; -$a->strings["Contacts who are not members of a group"] = ""; -$a->strings["Files"] = ""; -$a->strings["System down for maintenance"] = ""; -$a->strings["Remove My Account"] = ""; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = ""; -$a->strings["Please enter your password for verification:"] = ""; -$a->strings["Friend suggestion sent."] = ""; -$a->strings["Suggest Friends"] = ""; -$a->strings["Suggest a friend for %s"] = ""; -$a->strings["Unable to locate original post."] = ""; -$a->strings["Empty post discarded."] = ""; -$a->strings["System error. Post not saved."] = ""; -$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"] = ""; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = ""; -$a->strings["%s posted an update."] = ""; -$a->strings["{0} wants to be your friend"] = ""; -$a->strings["{0} sent you a message"] = ""; -$a->strings["{0} requested registration"] = ""; -$a->strings["{0} commented %s's post"] = ""; -$a->strings["{0} liked %s's post"] = ""; -$a->strings["{0} disliked %s's post"] = ""; -$a->strings["{0} is now friends with %s"] = ""; -$a->strings["{0} posted"] = ""; -$a->strings["{0} tagged %s's post with #%s"] = ""; -$a->strings["{0} mentioned you in a post"] = ""; -$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."] = ""; -$a->strings["Invalid request identifier."] = ""; -$a->strings["Discard"] = ""; -$a->strings["System"] = ""; -$a->strings["Network"] = ""; -$a->strings["Introductions"] = ""; -$a->strings["Show Ignored Requests"] = ""; -$a->strings["Hide Ignored Requests"] = ""; -$a->strings["Notification type: "] = ""; -$a->strings["Friend Suggestion"] = ""; -$a->strings["suggested by %s"] = ""; -$a->strings["Post a new friend activity"] = ""; -$a->strings["if applicable"] = ""; -$a->strings["Claims to be known to you: "] = ""; -$a->strings["yes"] = ""; -$a->strings["no"] = ""; -$a->strings["Approve as: "] = ""; -$a->strings["Friend"] = ""; -$a->strings["Sharer"] = ""; -$a->strings["Fan/Admirer"] = ""; -$a->strings["Friend/Connect Request"] = ""; -$a->strings["New Follower"] = ""; -$a->strings["No introductions."] = ""; -$a->strings["Notifications"] = ""; -$a->strings["%s liked %s's post"] = ""; -$a->strings["%s disliked %s's post"] = ""; -$a->strings["%s is now friends with %s"] = ""; -$a->strings["%s created a new post"] = ""; -$a->strings["%s commented on %s's post"] = ""; -$a->strings["No more network notifications."] = ""; -$a->strings["Network Notifications"] = ""; -$a->strings["No more personal notifications."] = ""; -$a->strings["Personal Notifications"] = ""; -$a->strings["No more home notifications."] = ""; -$a->strings["Home Notifications"] = ""; -$a->strings["Total invitation limit exceeded."] = ""; -$a->strings["%s : Not a valid email address."] = ""; -$a->strings["Please join us on Friendica"] = ""; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; -$a->strings["%s : Message delivery failed."] = ""; -$a->strings["%d message sent."] = array( - 0 => "", - 1 => "", -); -$a->strings["You have no more invitations available"] = ""; -$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."] = ""; -$a->strings["Send invitations"] = ""; -$a->strings["Enter email addresses, one per line:"] = ""; -$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"] = ""; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = ""; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = ""; -$a->strings["Manage Identities and/or Pages"] = ""; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = ""; -$a->strings["Select an identity to manage: "] = ""; -$a->strings["Welcome to %s"] = ""; -$a->strings["Friends of %s"] = ""; -$a->strings["No friends to display."] = ""; +$a->strings["Public photo"] = ""; +$a->strings["Share"] = ""; +$a->strings["Recent Photos"] = ""; +$a->strings["Account approved."] = ""; +$a->strings["Registration revoked for %s"] = ""; +$a->strings["Please login."] = ""; +$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 account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; +$a->strings["Item not available."] = ""; +$a->strings["Item was not found."] = ""; +$a->strings["Delete this item?"] = ""; +$a->strings["show fewer"] = ""; +$a->strings["Update %s failed. See error logs."] = ""; +$a->strings["Create a New Account"] = ""; +$a->strings["Logout"] = ""; +$a->strings["Login"] = ""; +$a->strings["Nickname or Email address: "] = ""; +$a->strings["Password: "] = ""; +$a->strings["Remember me"] = ""; +$a->strings["Or login using OpenID: "] = ""; +$a->strings["Forgot your password?"] = ""; +$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"] = ""; +$a->strings["Message"] = ""; +$a->strings["Profiles"] = ""; +$a->strings["Manage/edit profiles"] = ""; +$a->strings["Network:"] = ""; +$a->strings["g A l F d"] = ""; +$a->strings["F d"] = ""; +$a->strings["[today]"] = ""; +$a->strings["Birthday Reminders"] = ""; +$a->strings["Birthdays this week:"] = ""; +$a->strings["[No description]"] = ""; +$a->strings["Event Reminders"] = ""; +$a->strings["Events this week:"] = ""; +$a->strings["Status"] = ""; +$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["This entry was edited"] = ""; +$a->strings["ignore thread"] = ""; +$a->strings["unignore thread"] = ""; +$a->strings["toggle ignore status"] = ""; +$a->strings["ignored"] = ""; +$a->strings["Categories:"] = ""; +$a->strings["Filed under:"] = ""; +$a->strings["via"] = ""; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = ""; +$a->strings["The error message is\n[pre]%s[/pre]"] = ""; +$a->strings["Errors encountered creating database tables."] = ""; +$a->strings["Errors encountered performing database changes."] = ""; +$a->strings["Logged out."] = ""; +$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["Add New Contact"] = ""; $a->strings["Enter address or web location"] = ""; $a->strings["Example: bob@example.com, http://example.com/barbara"] = ""; @@ -1276,39 +1285,112 @@ $a->strings["Find People"] = ""; $a->strings["Enter name or interest"] = ""; $a->strings["Connect/Follow"] = ""; $a->strings["Examples: Robert Morgenstein, Fishing"] = ""; +$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["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["view full size"] = ""; -$a->strings["Starts:"] = ""; -$a->strings["Finishes:"] = ""; -$a->strings["(no subject)"] = ""; -$a->strings["noreply"] = ""; -$a->strings["An invitation is required."] = ""; -$a->strings["Invitation could not be verified."] = ""; -$a->strings["Invalid OpenID url"] = ""; -$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["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->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["Friends"] = ""; +$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["Auto-mention Forums"] = ""; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = ""; +$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["Mute Post Notifications"] = ""; +$a->strings["Ability to mute notifications for a thread"] = ""; +$a->strings["Connect URL missing."] = ""; +$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."] = ""; +$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."] = ""; +$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["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"] = ""; +$a->strings["edit"] = ""; +$a->strings["Edit group"] = ""; +$a->strings["Create a new group"] = ""; +$a->strings["Contacts not in any group"] = ""; +$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"] = ""; +$a->strings["%s's birthday"] = ""; +$a->strings["Happy Birthday %s"] = ""; +$a->strings["Visible to everybody"] = ""; +$a->strings["show"] = ""; +$a->strings["don't show"] = ""; +$a->strings["[no subject]"] = ""; +$a->strings["stopped following"] = ""; +$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["Drop Contact"] = ""; +$a->strings["Send PM"] = ""; +$a->strings["Welcome "] = ""; +$a->strings["Please upload a profile photo."] = ""; +$a->strings["Welcome back "] = ""; +$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["event"] = ""; $a->strings["%1\$s poked %2\$s"] = ""; $a->strings["poked"] = ""; $a->strings["post/item"] = ""; @@ -1316,13 +1398,6 @@ $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = ""; $a->strings["remove"] = ""; $a->strings["Delete Selected Items"] = ""; $a->strings["Follow Thread"] = ""; -$a->strings["View Status"] = ""; -$a->strings["View Profile"] = ""; -$a->strings["View Photos"] = ""; -$a->strings["Network Posts"] = ""; -$a->strings["Edit Contact"] = ""; -$a->strings["Send PM"] = ""; -$a->strings["Poke"] = ""; $a->strings["%s likes this."] = ""; $a->strings["%s doesn't like this."] = ""; $a->strings["%2\$d people like this"] = ""; @@ -1338,22 +1413,12 @@ $a->strings["Tag term:"] = ""; $a->strings["Where are you right now?"] = ""; $a->strings["Delete item(s)?"] = ""; $a->strings["Post to Email"] = ""; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; $a->strings["permissions"] = ""; $a->strings["Post to Groups"] = ""; $a->strings["Post to Contacts"] = ""; $a->strings["Private post"] = ""; -$a->strings["Logged out."] = ""; -$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["view full size"] = ""; $a->strings["newer"] = ""; $a->strings["older"] = ""; $a->strings["prev"] = ""; @@ -1417,70 +1482,69 @@ $a->strings["November"] = ""; $a->strings["December"] = ""; $a->strings["bytes"] = ""; $a->strings["Click to open/close"] = ""; +$a->strings["default"] = ""; $a->strings["Select an alternate language"] = ""; $a->strings["activity"] = ""; $a->strings["post"] = ""; $a->strings["Item filed"] = ""; -$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["Image/photo"] = ""; +$a->strings["%2\$s %3\$s"] = ""; +$a->strings["%s wrote the following post"] = ""; +$a->strings["$1 wrote:"] = ""; +$a->strings["Encrypted content"] = ""; +$a->strings["(no subject)"] = ""; +$a->strings["noreply"] = ""; +$a->strings["Cannot locate DNS info for database server '%s'"] = ""; +$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["Weekly"] = ""; +$a->strings["Monthly"] = ""; +$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["pump.io"] = ""; +$a->strings["Twitter"] = ""; +$a->strings["Diaspora Connector"] = ""; +$a->strings["Statusnet"] = ""; +$a->strings["App.net"] = ""; $a->strings[" on Last.fm"] = ""; -$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"] = ""; -$a->strings["edit"] = ""; -$a->strings["Edit group"] = ""; -$a->strings["Create a new group"] = ""; -$a->strings["Contacts not in any group"] = ""; -$a->strings["Connect URL missing."] = ""; -$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."] = ""; -$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."] = ""; -$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["[no subject]"] = ""; +$a->strings["Starts:"] = ""; +$a->strings["Finishes:"] = ""; +$a->strings["j F, Y"] = ""; +$a->strings["j F"] = ""; +$a->strings["Birthday:"] = ""; +$a->strings["Age:"] = ""; +$a->strings["for %1\$d %2\$s"] = ""; +$a->strings["Tags:"] = ""; +$a->strings["Religion:"] = ""; +$a->strings["Hobbies/Interests:"] = ""; +$a->strings["Contact information and Social Networks:"] = ""; +$a->strings["Musical interests:"] = ""; +$a->strings["Books, literature:"] = ""; +$a->strings["Television:"] = ""; +$a->strings["Film/dance/culture/entertainment:"] = ""; +$a->strings["Love/Romance:"] = ""; +$a->strings["Work/employment:"] = ""; +$a->strings["School/education:"] = ""; +$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["End this session"] = ""; +$a->strings["Your posts and conversations"] = ""; +$a->strings["Your profile page"] = ""; +$a->strings["Your photos"] = ""; +$a->strings["Your videos"] = ""; +$a->strings["Your events"] = ""; +$a->strings["Personal notes"] = ""; +$a->strings["Your personal notes"] = ""; $a->strings["Sign in"] = ""; $a->strings["Home Page"] = ""; $a->strings["Create an account"] = ""; @@ -1491,6 +1555,8 @@ $a->strings["Search site content"] = ""; $a->strings["Conversations on this site"] = ""; $a->strings["Directory"] = ""; $a->strings["People directory"] = ""; +$a->strings["Information"] = ""; +$a->strings["Information about this friendica instance"] = ""; $a->strings["Conversations from your friends"] = ""; $a->strings["Network Reset"] = ""; $a->strings["Load Network page with no filters"] = ""; @@ -1502,119 +1568,45 @@ $a->strings["Inbox"] = ""; $a->strings["Outbox"] = ""; $a->strings["Manage"] = ""; $a->strings["Manage other pages"] = ""; -$a->strings["Delegations"] = ""; +$a->strings["Account settings"] = ""; $a->strings["Manage/Edit Profiles"] = ""; $a->strings["Manage/edit friends and contacts"] = ""; $a->strings["Site setup and configuration"] = ""; $a->strings["Navigation"] = ""; $a->strings["Site map"] = ""; -$a->strings["j F, Y"] = ""; -$a->strings["j F"] = ""; -$a->strings["Birthday:"] = ""; -$a->strings["Age:"] = ""; -$a->strings["for %1\$d %2\$s"] = ""; -$a->strings["Tags:"] = ""; -$a->strings["Religion:"] = ""; -$a->strings["Hobbies/Interests:"] = ""; -$a->strings["Contact information and Social Networks:"] = ""; -$a->strings["Musical interests:"] = ""; -$a->strings["Books, literature:"] = ""; -$a->strings["Television:"] = ""; -$a->strings["Film/dance/culture/entertainment:"] = ""; -$a->strings["Love/Romance:"] = ""; -$a->strings["Work/employment:"] = ""; -$a->strings["School/education:"] = ""; -$a->strings["Image/photo"] = ""; -$a->strings["%s wrote the following post"] = ""; -$a->strings["$1 wrote:"] = ""; -$a->strings["Encrypted content"] = ""; -$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["Weekly"] = ""; -$a->strings["Monthly"] = ""; -$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["pump.io"] = ""; -$a->strings["Twitter"] = ""; -$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"] = ""; -$a->strings["%s's birthday"] = ""; -$a->strings["Happy Birthday %s"] = ""; -$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["User not found."] = ""; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["There is no status with this id."] = ""; +$a->strings["There is no conversation with this id."] = ""; +$a->strings["Invalid request."] = ""; +$a->strings["Invalid item."] = ""; +$a->strings["Invalid action. "] = ""; +$a->strings["DB error"] = ""; +$a->strings["An invitation is required."] = ""; +$a->strings["Invitation could not be verified."] = ""; +$a->strings["Invalid OpenID url"] = ""; +$a->strings["Please enter the required information."] = ""; +$a->strings["Please use a shorter name."] = ""; +$a->strings["Name too short."] = ""; +$a->strings["That doesn't appear to be your full (First Last) name."] = ""; +$a->strings["Your email domain is not among those allowed on this site."] = ""; +$a->strings["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->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["Friends"] = ""; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = ""; $a->strings["Sharing notification from Diaspora network"] = ""; $a->strings["Attachments:"] = ""; -$a->strings["Visible to everybody"] = ""; -$a->strings["A new person is sharing with you at "] = ""; -$a->strings["You have a new follower at "] = ""; $a->strings["Do you really want to delete this item?"] = ""; $a->strings["Archives"] = ""; -$a->strings["Embedded content"] = ""; -$a->strings["Embedding disabled"] = ""; -$a->strings["Welcome "] = ""; -$a->strings["Please upload a profile photo."] = ""; -$a->strings["Welcome back "] = ""; -$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["Male"] = ""; $a->strings["Female"] = ""; $a->strings["Currently Male"] = ""; @@ -1672,6 +1664,113 @@ $a->strings["Uncertain"] = ""; $a->strings["It's complicated"] = ""; $a->strings["Don't care"] = ""; $a->strings["Ask me"] = ""; -$a->strings["stopped following"] = ""; -$a->strings["Drop Contact"] = ""; -$a->strings["Cannot locate DNS info for database server '%s'"] = ""; +$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] %s shared a new post"] = ""; +$a->strings["%1\$s shared a new post at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]shared a post[/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] A new person is sharing with you"] = ""; +$a->strings["%1\$s is sharing with you at %2\$s"] = ""; +$a->strings["[Friendica:Notify] You have a new follower"] = ""; +$a->strings["You have a new follower at %2\$s : %1\$s"] = ""; +$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["[Friendica:Notify] Connection accepted"] = ""; +$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = ""; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = ""; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = ""; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; +$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = ""; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = ""; +$a->strings["[Friendica System:Notify] registration request"] = ""; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = ""; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = ""; +$a->strings["Please visit %s to approve or reject the request."] = ""; +$a->strings["Embedded content"] = ""; +$a->strings["Embedding disabled"] = ""; +$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["toggle mobile"] = ""; +$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 colour scheme"] = ""; +$a->strings["Alignment"] = ""; +$a->strings["Left"] = ""; +$a->strings["Center"] = ""; +$a->strings["Posts font size"] = ""; +$a->strings["Textareas font size"] = ""; +$a->strings["Set resolution for middle column"] = ""; +$a->strings["Set color scheme"] = ""; +$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 users"] = ""; +$a->strings["Last photos"] = ""; +$a->strings["Last likes"] = ""; +$a->strings["Your contacts"] = ""; +$a->strings["Your personal photos"] = ""; +$a->strings["Local Directory"] = ""; +$a->strings["Set zoomfactor for Earth Layers"] = ""; +$a->strings["Show/hide boxes at right-hand column:"] = ""; +$a->strings["Set style"] = ""; +$a->strings["greenzero"] = ""; +$a->strings["purplezero"] = ""; +$a->strings["easterbunny"] = ""; +$a->strings["darkzero"] = ""; +$a->strings["comix"] = ""; +$a->strings["slackr"] = ""; +$a->strings["Variations"] = ""; diff --git a/util/typo.php b/util/typo.php index a8055c8418..0e2177c706 100644 --- a/util/typo.php +++ b/util/typo.php @@ -12,25 +12,28 @@ $a = new App(); + if(x($a->config,'php_path')) + $phpath = $a->config['php_path']; + else + $phpath = 'php'; + + echo "Directory: mod\n"; $files = glob('mod/*.php'); foreach($files as $file) { - echo $file . "\n"; - include_once($file); + passthru("$phpath -l $file", $ret); $ret===0 or die(); } echo "Directory: include\n"; $files = glob('include/*.php'); foreach($files as $file) { - echo $file . "\n"; - include_once($file); + passthru("$phpath -l $file", $ret); $ret===0 or die(); } echo "Directory: object\n"; $files = glob('object/*.php'); foreach($files as $file) { - echo $file . "\n"; - include_once($file); + passthru("$phpath -l $file", $ret); $ret===0 or die(); } echo "Directory: addon\n"; @@ -40,26 +43,17 @@ $addon = basename($dir); $files = glob($dir . '/' . $addon . '.php'); foreach($files as $file) { - echo $file . "\n"; - include_once($file); + passthru("$phpath -l $file", $ret); $ret===0 or die(); } } - if(x($a->config,'php_path')) - $phpath = $a->config['php_path']; - else - $phpath = 'php'; echo "String files\n"; echo 'util/strings.php' . "\n"; - include_once('util/strings.php'); - echo count($a->strings) . ' strings' . "\n"; + passthru("$phpath -l util/strings.php", $ret); $ret===0 or die(); $files = glob('view/*/strings.php'); - foreach($files as $file) { - echo $file . "\n"; - passthru($phpath . ' util/typohelper.php ' . $file); -// include_once($file); + passthru("$phpath -l $file", $ret); $ret===0 or die(); } diff --git a/util/typohelper.php b/util/typohelper.php deleted file mode 100644 index 589702a02a..0000000000 --- a/util/typohelper.php +++ /dev/null @@ -1,11 +0,0 @@ ->> Installing Apache2 webserver" +# The package python-software-properties provides add-apt-repository on Ubuntu Precise Server +sudo apt-get install python-software-properties sudo add-apt-repository -y ppa:ondrej/apache2 sudo apt-key update sudo apt-get update diff --git a/view/cs/messages.po b/view/cs/messages.po index 759307c8f8..2c14e3a70f 100644 --- a/view/cs/messages.po +++ b/view/cs/messages.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the Friendica package. # # Translators: -# Michal Šupler , 2011-2014 +# Josef Moravek , 2014 +# Michal Šupler , 2011-2015 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-07 14:32+0200\n" -"PO-Revision-Date: 2014-09-16 17:18+0000\n" +"POT-Creation-Date: 2015-01-22 17:30+0100\n" +"PO-Revision-Date: 2015-01-24 23:18+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" @@ -18,3368 +19,3552 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/vier/config.php:52 ../../view/theme/diabook/config.php:148 -#: ../../view/theme/diabook/theme.php:633 -#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 -#: ../../object/Item.php:678 ../../mod/contacts.php:470 -#: ../../mod/manage.php:110 ../../mod/fsuggest.php:107 -#: ../../mod/photos.php:1084 ../../mod/photos.php:1205 -#: ../../mod/photos.php:1512 ../../mod/photos.php:1563 -#: ../../mod/photos.php:1607 ../../mod/photos.php:1695 -#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137 -#: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/profiles.php:645 ../../mod/install.php:248 -#: ../../mod/install.php:286 ../../mod/crepair.php:179 -#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 -msgid "Submit" -msgstr "Odeslat" +#: ../../mod/contacts.php:107 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "%d kontakt upraven." +msgstr[1] "%d kontakty upraveny" +msgstr[2] "%d kontaktů upraveno" -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/vier/config.php:54 ../../view/theme/diabook/config.php:150 -#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 -msgid "Theme settings" -msgstr "Nastavení téma" +#: ../../mod/contacts.php:138 ../../mod/contacts.php:271 +msgid "Could not access contact record." +msgstr "Nelze získat přístup k záznamu kontaktu." -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)" +#: ../../mod/contacts.php:152 +msgid "Could not locate selected profile." +msgstr "Nelze nalézt vybraný profil." -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/diabook/config.php:151 -#: ../../view/theme/dispy/config.php:73 -msgid "Set font-size for posts and comments" -msgstr "Nastav velikost písma pro přízpěvky a komentáře." +#: ../../mod/contacts.php:185 +msgid "Contact updated." +msgstr "Kontakt aktualizován." -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Nastavení šířku grafické šablony" +#: ../../mod/contacts.php:187 ../../mod/dfrn_request.php:576 +msgid "Failed to update contact record." +msgstr "Nepodařilo se aktualizovat kontakt." -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Barevné schéma" +#: ../../mod/contacts.php:253 ../../mod/manage.php:96 +#: ../../mod/display.php:475 ../../mod/profile_photo.php:19 +#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180 +#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9 +#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19 +#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78 +#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:22 +#: ../../mod/notifications.php:66 ../../mod/message.php:38 +#: ../../mod/message.php:174 ../../mod/crepair.php:119 +#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9 +#: ../../mod/events.php:140 ../../mod/install.php:151 +#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 +#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 +#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102 +#: ../../mod/settings.php:596 ../../mod/settings.php:601 +#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114 +#: ../../mod/suggest.php:58 ../../mod/profiles.php:148 +#: ../../mod/profiles.php:584 ../../mod/editpost.php:10 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135 +#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134 +#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23 +#: ../../mod/attach.php:33 ../../include/items.php:4683 ../../index.php:369 +msgid "Permission denied." +msgstr "Přístup odmítnut." -#: ../../view/theme/vier/config.php:55 -msgid "Set style" -msgstr "Nastavit styl" +#: ../../mod/contacts.php:286 +msgid "Contact has been blocked" +msgstr "Kontakt byl zablokován" -#: ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:328 -msgid "don't show" -msgstr "nikdy nezobrazit" +#: ../../mod/contacts.php:286 +msgid "Contact has been unblocked" +msgstr "Kontakt byl odblokován" -#: ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:327 -msgid "show" -msgstr "zobrazit" +#: ../../mod/contacts.php:297 +msgid "Contact has been ignored" +msgstr "Kontakt bude ignorován" -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Nastav výšku řádku pro přízpěvky a komentáře." +#: ../../mod/contacts.php:297 +msgid "Contact has been unignored" +msgstr "Kontakt přestal být ignorován" -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Nastav rozlišení pro prostřední sloupec" +#: ../../mod/contacts.php:309 +msgid "Contact has been archived" +msgstr "Kontakt byl archivován" -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Nastavení barevného schematu" +#: ../../mod/contacts.php:309 +msgid "Contact has been unarchived" +msgstr "Kontakt byl vrácen z archívu." -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Nastavit přiblížení pro Earth Layer" +#: ../../mod/contacts.php:334 ../../mod/contacts.php:710 +msgid "Do you really want to delete this contact?" +msgstr "Opravdu chcete smazat tento kontakt?" -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "Nastavit zeměpistnou délku (X) pro Earth Layers" +#: ../../mod/contacts.php:336 ../../mod/message.php:209 +#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 +#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 +#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 +#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 +#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 +#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 +#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 +#: ../../mod/register.php:233 ../../mod/suggest.php:29 +#: ../../mod/profiles.php:627 ../../mod/profiles.php:630 ../../mod/api.php:105 +#: ../../include/items.php:4528 +msgid "Yes" +msgstr "Ano" -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Nastavit zeměpistnou šířku (X) pro Earth Layers" +#: ../../mod/contacts.php:339 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 +#: ../../mod/message.php:212 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615 +#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844 +#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 +#: ../../mod/photos.php:203 ../../mod/photos.php:292 +#: ../../include/conversation.php:1129 ../../include/items.php:4531 +msgid "Cancel" +msgstr "Zrušit" -#: ../../view/theme/diabook/config.php:158 -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "Komunitní stránky" +#: ../../mod/contacts.php:351 +msgid "Contact has been removed." +msgstr "Kontakt byl odstraněn." -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Earth Layers" +#: ../../mod/contacts.php:389 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Jste vzájemní přátelé s uživatelem %s" -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Komunitní profily" +#: ../../mod/contacts.php:393 +#, php-format +msgid "You are sharing with %s" +msgstr "Sdílíte s uživatelem %s" -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "Pomoc nebo @ProNováčky ?" +#: ../../mod/contacts.php:398 +#, php-format +msgid "%s is sharing with you" +msgstr "uživatel %s sdílí s vámi" -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Propojené služby" +#: ../../mod/contacts.php:415 +msgid "Private communications are not available for this contact." +msgstr "Soukromá komunikace není dostupná pro tento kontakt." -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Nalézt Přátele" +#: ../../mod/contacts.php:418 ../../mod/admin.php:546 +msgid "Never" +msgstr "Nikdy" -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Poslední uživatelé" +#: ../../mod/contacts.php:422 +msgid "(Update was successful)" +msgstr "(Aktualizace byla úspěšná)" -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Poslední fotografie" +#: ../../mod/contacts.php:422 +msgid "(Update was not successful)" +msgstr "(Aktualizace nebyla úspěšná)" -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Poslední líbí/nelíbí" +#: ../../mod/contacts.php:424 +msgid "Suggest friends" +msgstr "Navrhněte přátelé" -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105 -#: ../../include/nav.php:146 ../../mod/notifications.php:93 -msgid "Home" -msgstr "Domů" +#: ../../mod/contacts.php:428 +#, php-format +msgid "Network type: %s" +msgstr "Typ sítě: %s" -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:146 -msgid "Your posts and conversations" -msgstr "Vaše příspěvky a konverzace" +#: ../../mod/contacts.php:431 ../../include/contact_widgets.php:200 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d sdílený kontakt" +msgstr[1] "%d sdílených kontaktů" +msgstr[2] "%d sdílených kontaktů" -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2070 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 -#: ../../include/nav.php:77 ../../mod/profperm.php:103 -#: ../../mod/newmember.php:32 -msgid "Profile" -msgstr "Profil" +#: ../../mod/contacts.php:436 +msgid "View all contacts" +msgstr "Zobrazit všechny kontakty" -#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 -msgid "Your profile page" -msgstr "Vaše profilová stránka" +#: ../../mod/contacts.php:441 ../../mod/contacts.php:500 +#: ../../mod/contacts.php:713 ../../mod/admin.php:981 +msgid "Unblock" +msgstr "Odblokovat" -#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:175 -#: ../../mod/contacts.php:694 -msgid "Contacts" -msgstr "Kontakty" +#: ../../mod/contacts.php:441 ../../mod/contacts.php:500 +#: ../../mod/contacts.php:713 ../../mod/admin.php:980 +msgid "Block" +msgstr "Blokovat" -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Vaše kontakty" +#: ../../mod/contacts.php:444 +msgid "Toggle Blocked status" +msgstr "Přepnout stav Blokováno" -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2077 -#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Fotografie" +#: ../../mod/contacts.php:447 ../../mod/contacts.php:501 +#: ../../mod/contacts.php:714 +msgid "Unignore" +msgstr "Přestat ignorovat" -#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 -msgid "Your photos" -msgstr "Vaše fotky" +#: ../../mod/contacts.php:447 ../../mod/contacts.php:501 +#: ../../mod/contacts.php:714 ../../mod/notifications.php:51 +#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 +msgid "Ignore" +msgstr "Ignorovat" -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2094 -#: ../../include/nav.php:80 ../../mod/events.php:370 -msgid "Events" -msgstr "Události" +#: ../../mod/contacts.php:450 +msgid "Toggle Ignored status" +msgstr "Přepnout stav Ignorováno" -#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80 -msgid "Your events" -msgstr "Vaše události" +#: ../../mod/contacts.php:454 ../../mod/contacts.php:715 +msgid "Unarchive" +msgstr "Vrátit z archívu" -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81 -msgid "Personal notes" -msgstr "Osobní poznámky" +#: ../../mod/contacts.php:454 ../../mod/contacts.php:715 +msgid "Archive" +msgstr "Archivovat" -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Vaše osobní fotky" +#: ../../mod/contacts.php:457 +msgid "Toggle Archive status" +msgstr "Přepnout stav Archivováno" -#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129 -#: ../../mod/community.php:32 -msgid "Community" -msgstr "Komunita" +#: ../../mod/contacts.php:460 +msgid "Repair" +msgstr "Opravit" -#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1964 -msgid "event" -msgstr "událost" +#: ../../mod/contacts.php:463 +msgid "Advanced Contact Settings" +msgstr "Pokročilé nastavení kontaktu" -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1919 -#: ../../include/conversation.php:121 ../../include/conversation.php:130 -#: ../../include/conversation.php:249 ../../include/conversation.php:258 -#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 -#: ../../mod/tagger.php:62 -msgid "status" -msgstr "Stav" +#: ../../mod/contacts.php:469 +msgid "Communications lost with this contact!" +msgstr "Komunikace s tímto kontaktem byla ztracena!" -#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:1919 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1966 ../../mod/like.php:149 -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 -msgid "photo" -msgstr "fotografie" +#: ../../mod/contacts.php:472 +msgid "Contact Editor" +msgstr "Editor kontaktu" -#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:1935 -#: ../../include/conversation.php:137 ../../mod/like.php:166 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s má rád %2$s' na %3$s" +#: ../../mod/contacts.php:474 ../../mod/manage.php:110 +#: ../../mod/fsuggest.php:107 ../../mod/message.php:335 +#: ../../mod/message.php:564 ../../mod/crepair.php:186 +#: ../../mod/events.php:478 ../../mod/content.php:710 +#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137 +#: ../../mod/profiles.php:652 ../../mod/localtime.php:45 +#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084 +#: ../../mod/photos.php:1203 ../../mod/photos.php:1514 +#: ../../mod/photos.php:1565 ../../mod/photos.php:1609 +#: ../../mod/photos.php:1697 ../../object/Item.php:678 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 +#: ../../view/theme/diabook/config.php:148 +#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53 +#: ../../view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Odeslat" -#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 -#: ../../mod/photos.php:155 ../../mod/photos.php:1064 -#: ../../mod/photos.php:1189 ../../mod/photos.php:1212 -#: ../../mod/photos.php:1758 ../../mod/photos.php:1770 -msgid "Contact Photos" -msgstr "Fotogalerie kontaktu" +#: ../../mod/contacts.php:475 +msgid "Profile Visibility" +msgstr "Viditelnost profilu" -#: ../../view/theme/diabook/theme.php:500 ../../include/user.php:335 -#: ../../include/user.php:342 ../../include/user.php:349 -#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1189 -#: ../../mod/photos.php:1212 ../../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 -msgid "Profile Photos" -msgstr "Profilové fotografie" +#: ../../mod/contacts.php:476 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu." -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Lokální Adresář" +#: ../../mod/contacts.php:477 +msgid "Contact Information / Notes" +msgstr "Kontaktní informace / poznámky" -#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51 -msgid "Global Directory" -msgstr "Globální adresář" +#: ../../mod/contacts.php:478 +msgid "Edit contact notes" +msgstr "Editovat poznámky kontaktu" -#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "Podobné zájmy" +#: ../../mod/contacts.php:483 ../../mod/contacts.php:678 +#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Navštivte profil uživatele %s [%s]" -#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35 -#: ../../mod/suggest.php:66 -msgid "Friend Suggestions" -msgstr "Návrhy přátel" +#: ../../mod/contacts.php:484 +msgid "Block/Unblock contact" +msgstr "Blokovat / Odblokovat kontakt" -#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "Pozvat přátele" +#: ../../mod/contacts.php:485 +msgid "Ignore contact" +msgstr "Ignorovat kontakt" -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:170 -#: ../../mod/settings.php:85 ../../mod/admin.php:1065 ../../mod/admin.php:1286 -#: ../../mod/newmember.php:22 -msgid "Settings" -msgstr "Nastavení" +#: ../../mod/contacts.php:486 +msgid "Repair URL settings" +msgstr "Opravit nastavení adresy URL " -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Nastavit faktor přiblížení pro Earth Layers" +#: ../../mod/contacts.php:487 +msgid "View conversations" +msgstr "Zobrazit konverzace" -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Zobrazit/skrýt boxy na pravém sloupci:" +#: ../../mod/contacts.php:489 +msgid "Delete contact" +msgstr "Odstranit kontakt" -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Zarovnání" +#: ../../mod/contacts.php:493 +msgid "Last update:" +msgstr "Poslední aktualizace:" -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Vlevo" +#: ../../mod/contacts.php:495 +msgid "Update public posts" +msgstr "Aktualizovat veřejné příspěvky" -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Uprostřed" +#: ../../mod/contacts.php:497 ../../mod/admin.php:1475 +msgid "Update now" +msgstr "Aktualizovat" -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Velikost písma u příspěvků" +#: ../../mod/contacts.php:504 +msgid "Currently blocked" +msgstr "V současnosti zablokováno" -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Velikost písma textů" +#: ../../mod/contacts.php:505 +msgid "Currently ignored" +msgstr "V současnosti ignorováno" -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Nastavit barevné schéma" +#: ../../mod/contacts.php:506 +msgid "Currently archived" +msgstr "Aktuálně archivován" -#: ../../index.php:203 ../../mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "Musíte být přihlášení pro použití rozšíření." +#: ../../mod/contacts.php:507 ../../mod/notifications.php:157 +#: ../../mod/notifications.php:204 +msgid "Hide this contact from others" +msgstr "Skrýt tento kontakt před ostatními" -#: ../../index.php:247 ../../mod/help.php:90 -msgid "Not Found" -msgstr "Nenalezen" +#: ../../mod/contacts.php:507 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Odpovědi/Libí se na Vaše veřejné příspěvky mohou být stále viditelné" -#: ../../index.php:250 ../../mod/help.php:93 -msgid "Page not found." -msgstr "Stránka nenalezena" +#: ../../mod/contacts.php:508 +msgid "Notification for new posts" +msgstr "Upozornění na nové příspěvky" -#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19 -msgid "Permission denied" -msgstr "Nedostatečné oprávnění" +#: ../../mod/contacts.php:508 +msgid "Send a notification of every new post of this contact" +msgstr "Poslat upozornění při každém novém příspěvku tohoto kontaktu" -#: ../../index.php:360 ../../include/items.php:4550 ../../mod/attach.php:33 -#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 -#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 -#: ../../mod/group.php:19 ../../mod/delegate.php:6 -#: ../../mod/notifications.php:66 ../../mod/settings.php:102 -#: ../../mod/settings.php:593 ../../mod/settings.php:598 -#: ../../mod/contacts.php:249 ../../mod/wall_attach.php:55 -#: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10 -#: ../../mod/regmod.php:109 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/suggest.php:56 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78 -#: ../../mod/viewcontacts.php:22 ../../mod/wall_upload.php:66 -#: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134 -#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23 -#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140 -#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174 -#: ../../mod/profiles.php:148 ../../mod/profiles.php:577 -#: ../../mod/install.php:151 ../../mod/crepair.php:117 ../../mod/poke.php:135 -#: ../../mod/display.php:455 ../../mod/dfrn_confirm.php:55 -#: ../../mod/item.php:148 ../../mod/item.php:164 -#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 -#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 -#: ../../mod/allfriends.php:9 -msgid "Permission denied." -msgstr "Přístup odmítnut." +#: ../../mod/contacts.php:509 +msgid "Fetch further information for feeds" +msgstr "Načíst další informace pro kanál" -#: ../../index.php:419 -msgid "toggle mobile" -msgstr "přepnout mobil" +#: ../../mod/contacts.php:510 +msgid "Disabled" +msgstr "Zakázáno" -#: ../../boot.php:719 -msgid "Delete this item?" -msgstr "Odstranit tuto položku?" +#: ../../mod/contacts.php:510 +msgid "Fetch information" +msgstr "Načíst informace" -#: ../../boot.php:720 ../../object/Item.php:361 ../../object/Item.php:677 -#: ../../mod/photos.php:1562 ../../mod/photos.php:1606 -#: ../../mod/photos.php:1694 ../../mod/content.php:709 -msgid "Comment" -msgstr "Okomentovat" +#: ../../mod/contacts.php:510 +msgid "Fetch information and keywords" +msgstr "Načíst informace a klíčová slova" -#: ../../boot.php:721 ../../include/contact_widgets.php:205 -#: ../../object/Item.php:390 ../../mod/content.php:606 -msgid "show more" -msgstr "zobrazit více" +#: ../../mod/contacts.php:512 +msgid "Blacklisted keywords" +msgstr "Zakázaná klíčová slova" -#: ../../boot.php:722 -msgid "show fewer" -msgstr "zobrazit méně" +#: ../../mod/contacts.php:512 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" -#: ../../boot.php:1042 ../../boot.php:1073 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb." +#: ../../mod/contacts.php:563 +msgid "Suggestions" +msgstr "Doporučení" -#: ../../boot.php:1194 -msgid "Create a New Account" -msgstr "Vytvořit nový účet" +#: ../../mod/contacts.php:566 +msgid "Suggest potential friends" +msgstr "Navrhnout potenciální přátele" -#: ../../boot.php:1195 ../../include/nav.php:109 ../../mod/register.php:266 -msgid "Register" -msgstr "Registrovat" +#: ../../mod/contacts.php:569 ../../mod/group.php:194 +msgid "All Contacts" +msgstr "Všechny kontakty" -#: ../../boot.php:1219 ../../include/nav.php:73 -msgid "Logout" -msgstr "Odhlásit se" +#: ../../mod/contacts.php:572 +msgid "Show all contacts" +msgstr "Zobrazit všechny kontakty" -#: ../../boot.php:1220 ../../include/nav.php:92 -msgid "Login" -msgstr "Přihlásit se" +#: ../../mod/contacts.php:575 +msgid "Unblocked" +msgstr "Odblokován" -#: ../../boot.php:1222 -msgid "Nickname or Email address: " -msgstr "Přezdívka nebo e-mailová adresa:" +#: ../../mod/contacts.php:578 +msgid "Only show unblocked contacts" +msgstr "Zobrazit pouze neblokované kontakty" -#: ../../boot.php:1223 -msgid "Password: " -msgstr "Heslo: " +#: ../../mod/contacts.php:582 +msgid "Blocked" +msgstr "Blokován" -#: ../../boot.php:1224 -msgid "Remember me" -msgstr "Pamatuj si mne" +#: ../../mod/contacts.php:585 +msgid "Only show blocked contacts" +msgstr "Zobrazit pouze blokované kontakty" -#: ../../boot.php:1227 -msgid "Or login using OpenID: " -msgstr "Nebo přihlášení pomocí OpenID: " +#: ../../mod/contacts.php:589 +msgid "Ignored" +msgstr "Ignorován" -#: ../../boot.php:1233 -msgid "Forgot your password?" -msgstr "Zapomněli jste své heslo?" +#: ../../mod/contacts.php:592 +msgid "Only show ignored contacts" +msgstr "Zobrazit pouze ignorované kontakty" -#: ../../boot.php:1234 ../../mod/lostpass.php:109 -msgid "Password Reset" -msgstr "Obnovení hesla" +#: ../../mod/contacts.php:596 +msgid "Archived" +msgstr "Archivován" -#: ../../boot.php:1236 -msgid "Website Terms of Service" -msgstr "Podmínky použití serveru" +#: ../../mod/contacts.php:599 +msgid "Only show archived contacts" +msgstr "Zobrazit pouze archivované kontakty" -#: ../../boot.php:1237 -msgid "terms of service" -msgstr "podmínky použití" +#: ../../mod/contacts.php:603 +msgid "Hidden" +msgstr "Skrytý" -#: ../../boot.php:1239 -msgid "Website Privacy Policy" -msgstr "Pravidla ochrany soukromí serveru" +#: ../../mod/contacts.php:606 +msgid "Only show hidden contacts" +msgstr "Zobrazit pouze skryté kontakty" -#: ../../boot.php:1240 -msgid "privacy policy" -msgstr "Ochrana soukromí" +#: ../../mod/contacts.php:654 +msgid "Mutual Friendship" +msgstr "Vzájemné přátelství" -#: ../../boot.php:1373 -msgid "Requested account is not available." -msgstr "Požadovaný účet není dostupný." +#: ../../mod/contacts.php:658 +msgid "is a fan of yours" +msgstr "je Váš fanoušek" -#: ../../boot.php:1412 ../../mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "Požadovaný profil není k dispozici." +#: ../../mod/contacts.php:662 +msgid "you are a fan of" +msgstr "jste fanouškem" -#: ../../boot.php:1455 ../../boot.php:1589 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Upravit profil" +#: ../../mod/contacts.php:679 ../../mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Editovat kontakt" -#: ../../boot.php:1522 ../../include/contact_widgets.php:10 -#: ../../mod/suggest.php:88 ../../mod/match.php:58 -msgid "Connect" -msgstr "Spojit" +#: ../../mod/contacts.php:701 ../../include/nav.php:175 +#: ../../view/theme/diabook/theme.php:125 +msgid "Contacts" +msgstr "Kontakty" -#: ../../boot.php:1554 -msgid "Message" -msgstr "Zpráva" +#: ../../mod/contacts.php:705 +msgid "Search your contacts" +msgstr "Prohledat Vaše kontakty" -#: ../../boot.php:1560 ../../include/nav.php:173 -msgid "Profiles" -msgstr "Profily" +#: ../../mod/contacts.php:706 ../../mod/directory.php:61 +msgid "Finding: " +msgstr "Zjištění: " -#: ../../boot.php:1560 -msgid "Manage/edit profiles" -msgstr "Spravovat/upravit profily" +#: ../../mod/contacts.php:707 ../../mod/directory.php:63 +#: ../../include/contact_widgets.php:34 +msgid "Find" +msgstr "Najít" -#: ../../boot.php:1565 ../../boot.php:1591 ../../mod/profiles.php:763 -msgid "Change profile photo" -msgstr "Změnit profilovou fotografii" +#: ../../mod/contacts.php:712 ../../mod/settings.php:132 +#: ../../mod/settings.php:640 +msgid "Update" +msgstr "Aktualizace" -#: ../../boot.php:1566 ../../mod/profiles.php:764 -msgid "Create New Profile" -msgstr "Vytvořit nový profil" +#: ../../mod/contacts.php:716 ../../mod/group.php:171 ../../mod/admin.php:979 +#: ../../mod/content.php:438 ../../mod/content.php:741 +#: ../../mod/settings.php:677 ../../mod/photos.php:1654 +#: ../../object/Item.php:130 ../../include/conversation.php:614 +msgid "Delete" +msgstr "Odstranit" -#: ../../boot.php:1576 ../../mod/profiles.php:775 -msgid "Profile Image" -msgstr "Profilový obrázek" +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Žádný profil" -#: ../../boot.php:1579 ../../mod/profiles.php:777 -msgid "visible to everybody" -msgstr "viditelné pro všechny" +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Správa identit a / nebo stránek" -#: ../../boot.php:1580 ../../mod/profiles.php:778 -msgid "Edit visibility" -msgstr "Upravit viditelnost" +#: ../../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 "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva." -#: ../../boot.php:1602 ../../include/event.php:40 -#: ../../include/bb2diaspora.php:156 ../../mod/events.php:471 -#: ../../mod/directory.php:136 -msgid "Location:" -msgstr "Místo:" +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Vyberte identitu pro správu: " -#: ../../boot.php:1604 ../../include/profile_advanced.php:17 -#: ../../mod/directory.php:138 -msgid "Gender:" -msgstr "Pohlaví:" +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Příspěvek úspěšně odeslán" -#: ../../boot.php:1607 ../../include/profile_advanced.php:37 -#: ../../mod/directory.php:140 -msgid "Status:" -msgstr "Status:" +#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368 +msgid "Permission denied" +msgstr "Nedostatečné oprávnění" -#: ../../boot.php:1609 ../../include/profile_advanced.php:48 -#: ../../mod/directory.php:142 -msgid "Homepage:" -msgstr "Domácí stránka:" +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Neplatný identifikátor profilu." -#: ../../boot.php:1657 -msgid "Network:" -msgstr "Síť:" +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Editor viditelnosti profilu " -#: ../../boot.php:1687 ../../boot.php:1773 -msgid "g A l F d" -msgstr "g A l F d" +#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2114 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 +#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 +msgid "Profile" +msgstr "Profil" -#: ../../boot.php:1688 ../../boot.php:1774 -msgid "F d" -msgstr "d. F" +#: ../../mod/profperm.php:105 ../../mod/group.php:224 +msgid "Click on a contact to add or remove." +msgstr "Klikněte na kontakt pro přidání nebo odebrání" -#: ../../boot.php:1733 ../../boot.php:1814 -msgid "[today]" -msgstr "[Dnes]" +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Viditelný pro" -#: ../../boot.php:1745 -msgid "Birthday Reminders" -msgstr "Připomínka narozenin" +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )" -#: ../../boot.php:1746 -msgid "Birthdays this week:" -msgstr "Narozeniny tento týden:" +#: ../../mod/display.php:70 ../../mod/display.php:260 +#: ../../mod/display.php:479 ../../mod/viewsrc.php:15 ../../mod/admin.php:166 +#: ../../mod/admin.php:1024 ../../mod/admin.php:1237 ../../mod/notice.php:15 +#: ../../include/items.php:4487 +msgid "Item not found." +msgstr "Položka nenalezena." -#: ../../boot.php:1807 -msgid "[No description]" -msgstr "[Žádný popis]" +#: ../../mod/display.php:200 ../../mod/videos.php:115 +#: ../../mod/viewcontacts.php:17 ../../mod/community.php:18 +#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89 +#: ../../mod/directory.php:33 ../../mod/photos.php:920 +msgid "Public access denied." +msgstr "Veřejný přístup odepřen." -#: ../../boot.php:1825 -msgid "Event Reminders" -msgstr "Připomenutí událostí" +#: ../../mod/display.php:308 ../../mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Přístup na tento profil byl omezen." -#: ../../boot.php:1826 -msgid "Events this week:" -msgstr "Události tohoto týdne:" +#: ../../mod/display.php:472 +msgid "Item has been removed." +msgstr "Položka byla odstraněna." -#: ../../boot.php:2063 ../../include/nav.php:76 -msgid "Status" -msgstr "Stav" +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Vítejte na Friendica" -#: ../../boot.php:2066 -msgid "Status Messages and Posts" -msgstr "Statusové zprávy a příspěvky " +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Seznam doporučení pro nového člena" -#: ../../boot.php:2073 -msgid "Profile Details" -msgstr "Detaily profilu" +#: ../../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 "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace." -#: ../../boot.php:2080 ../../mod/photos.php:52 -msgid "Photo Albums" -msgstr "Fotoalba" +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "Začínáme" -#: ../../boot.php:2084 ../../boot.php:2087 ../../include/nav.php:79 -msgid "Videos" -msgstr "Videa" +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Prohlídka Friendica " -#: ../../boot.php:2097 -msgid "Events and Calendar" -msgstr "Události a kalendář" +#: ../../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 "Na Vaší stránce Rychlý Start - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit." -#: ../../boot.php:2101 ../../mod/notes.php:44 -msgid "Personal Notes" -msgstr "Osobní poznámky" +#: ../../mod/newmember.php:22 ../../mod/admin.php:1076 +#: ../../mod/admin.php:1297 ../../mod/settings.php:85 +#: ../../include/nav.php:170 ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 +msgid "Settings" +msgstr "Nastavení" -#: ../../boot.php:2104 -msgid "Only You Can See This" -msgstr "Toto můžete vidět jen Vy" +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Navštivte své nastavení" -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Obecné funkčnosti" +#: ../../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 "Na Vaší stránce Nastavení - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti." -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Vícenásobné profily" +#: ../../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 "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít." -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Schopnost vytvořit vícenásobné profily" +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 +#: ../../mod/profiles.php:665 +msgid "Upload Profile Photo" +msgstr "Nahrát profilovou fotografii" -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Nastavení vytváření příspěvků" +#: ../../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 "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají." -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Richtext Editor" +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Editujte Váš profil" -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Povolit richtext editor" +#: ../../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 "Upravit výchozí profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho seznamu přátel a skrytí profilu před neznámými návštěvníky." -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Náhled příspěvku" +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Profilová klíčová slova" -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Povolit náhledy příspěvků a komentářů před jejich zveřejněním" +#: ../../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 "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství." -#: ../../include/features.php:33 -msgid "Auto-mention Forums" -msgstr "Automaticky zmíněná Fóra" +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "Probíhá pokus o připojení" -#: ../../include/features.php:33 +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: ../../mod/newmember.php:49 msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace." -#: ../../include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Síťové postranní widgety" +#: ../../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 "Pokud je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web." -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "Vyhledávat dle Data" +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "Importování emaiů" -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Možnost označit příspěvky dle časového intervalu" +#: ../../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 "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu" -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "Skupinový Filtr" +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Navštivte Vaši stránku s kontakty" -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny" +#: ../../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 "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu Přidat nový kontakt." -#: ../../include/features.php:41 -msgid "Network Filter" -msgstr "Síťový Filtr" +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Navštivte lokální adresář Friendica" -#: ../../include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě" +#: ../../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 "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů Připojení nebo Následovat si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována." -#: ../../include/features.php:42 ../../mod/network.php:188 -#: ../../mod/search.php:30 -msgid "Saved Searches" -msgstr "Uložená hledání" +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "Nalezení nových lidí" -#: ../../include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Uložit kritéria vyhledávání pro znovupoužití" +#: ../../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 "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin." -#: ../../include/features.php:47 -msgid "Network Tabs" -msgstr "Síťové záložky" +#: ../../mod/newmember.php:66 ../../include/group.php:270 +msgid "Groups" +msgstr "Skupiny" -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "Osobní síťový záložka " +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Seskupte si své kontakty" -#: ../../include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval " +#: ../../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 "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť." -#: ../../include/features.php:49 -msgid "Network New Tab" -msgstr "Nová záložka síť" +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Proč nejsou mé příspěvky veřejné?" -#: ../../include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)" +#: ../../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 respektuje Vaše soukromí. Defaultně jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu" -#: ../../include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "záložka Síťové sdílené odkazy " +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "Získání nápovědy" -#: ../../include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně" +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Navštivte sekci nápovědy" -#: ../../include/features.php:55 -msgid "Post/Comment Tools" -msgstr "Nástroje Příspěvků/Komentářů" +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Na stránkách Nápověda naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací." -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "Násobné mazání" +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Chyba OpenID protokolu. Navrátilo se žádné ID." -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Označit a smazat více " +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Nenalezen účet a OpenID registrace na tomto serveru není dovolena." -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Editovat Odeslané příspěvky" +#: ../../mod/openid.php:93 ../../include/auth.php:112 +#: ../../include/auth.php:175 +msgid "Login failed." +msgstr "Přihlášení se nezdařilo." -#: ../../include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "Editovat a opravit příspěvky a komentáře po odeslání" +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo." -#: ../../include/features.php:58 -msgid "Tagging" -msgstr "Štítkování" +#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81 +#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204 +#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305 +#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../include/user.php:335 +#: ../../include/user.php:342 ../../include/user.php:349 +#: ../../view/theme/diabook/theme.php:500 +msgid "Profile Photos" +msgstr "Profilové fotografie" -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Schopnost přidat štítky ke stávajícím příspvěkům" +#: ../../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 "Nepodařilo se snížit velikost obrázku [%s]." -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "Kategorie příspěvků" +#: ../../mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě." -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "Přidat kategorie k Vašim příspěvkům" +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Obrázek nelze zpracovat " -#: ../../include/features.php:60 ../../include/contact_widgets.php:104 -msgid "Saved Folders" -msgstr "Uložené složky" +#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Obrázek překročil limit velikosti %d" -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Možnost řadit příspěvky do složek" +#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144 +#: ../../mod/photos.php:807 +msgid "Unable to process image." +msgstr "Obrázek není možné zprocesovat" -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "Označit příspěvky jako neoblíbené" +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Nahrát soubor:" -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Možnost označit příspěvky/komentáře jako neoblíbené" +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Vybrat profil:" -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "Příspěvky s hvězdou" +#: ../../mod/profile_photo.php:245 +msgid "Upload" +msgstr "Nahrát" -#: ../../include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "Možnost označit příspěvky s indikátorem hvězdy" +#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062 +msgid "or" +msgstr "nebo" -#: ../../include/features.php:63 -msgid "Mute Post Notifications" -msgstr "Utlumit upozornění na přísvěvky" +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "přeskočit tento krok " -#: ../../include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "Možnost stlumit upozornění pro vlákno" +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "Vybrat fotografii z Vašich fotoalb" -#: ../../include/items.php:2090 ../../include/datetime.php:472 -#, php-format -msgid "%s's birthday" -msgstr "%s má narozeniny" +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Oříznout obrázek" -#: ../../include/items.php:2091 ../../include/datetime.php:473 -#, php-format -msgid "Happy Birthday %s" -msgstr "Veselé narozeniny %s" +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Prosím, ořízněte tento obrázek pro optimální zobrazení." -#: ../../include/items.php:3856 ../../mod/dfrn_request.php:721 -#: ../../mod/dfrn_confirm.php:752 -msgid "[Name Withheld]" -msgstr "[Jméno odepřeno]" +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Editace dokončena" -#: ../../include/items.php:4354 ../../mod/admin.php:166 -#: ../../mod/admin.php:1013 ../../mod/admin.php:1226 ../../mod/viewsrc.php:15 -#: ../../mod/notice.php:15 ../../mod/display.php:70 ../../mod/display.php:240 -#: ../../mod/display.php:459 -msgid "Item not found." -msgstr "Položka nenalezena." +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Obrázek byl úspěšně nahrán." -#: ../../include/items.php:4393 -msgid "Do you really want to delete this item?" -msgstr "Opravdu chcete smazat tuto položku?" +#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172 +#: ../../mod/photos.php:834 +msgid "Image upload failed." +msgstr "Nahrání obrázku selhalo." -#: ../../include/items.php:4395 ../../mod/settings.php:1007 -#: ../../mod/settings.php:1013 ../../mod/settings.php:1021 -#: ../../mod/settings.php:1025 ../../mod/settings.php:1030 -#: ../../mod/settings.php:1036 ../../mod/settings.php:1042 -#: ../../mod/settings.php:1048 ../../mod/settings.php:1078 -#: ../../mod/settings.php:1079 ../../mod/settings.php:1080 -#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 -#: ../../mod/contacts.php:332 ../../mod/register.php:230 -#: ../../mod/dfrn_request.php:834 ../../mod/api.php:105 -#: ../../mod/suggest.php:29 ../../mod/message.php:209 -#: ../../mod/profiles.php:620 ../../mod/profiles.php:623 -msgid "Yes" -msgstr "Ano" +#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 +#: ../../include/conversation.php:126 ../../include/conversation.php:254 +#: ../../include/text.php:1965 ../../include/diaspora.php:1919 +#: ../../view/theme/diabook/theme.php:471 +msgid "photo" +msgstr "fotografie" -#: ../../include/items.php:4398 ../../include/conversation.php:1129 -#: ../../mod/settings.php:612 ../../mod/settings.php:638 -#: ../../mod/contacts.php:335 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:848 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 ../../mod/message.php:212 -msgid "Cancel" -msgstr "Zrušit" +#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 +#: ../../mod/like.php:319 ../../include/conversation.php:121 +#: ../../include/conversation.php:130 ../../include/conversation.php:249 +#: ../../include/conversation.php:258 ../../include/diaspora.php:1919 +#: ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 +msgid "status" +msgstr "Stav" -#: ../../include/items.php:4616 -msgid "Archives" -msgstr "Archív" +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s následuje %3$s uživatele %2$s" -#: ../../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 "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění může ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím, další skupinu s jiným názvem." +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Štítek odstraněn" -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Defaultní soukromá skrupina pro nové kontakty." +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Odebrat štítek položky" -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Všichni" +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Vyberte štítek k odebrání: " -#: ../../include/group.php:249 -msgid "edit" -msgstr "editovat" +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139 +msgid "Remove" +msgstr "Odstranit" -#: ../../include/group.php:270 ../../mod/newmember.php:66 -msgid "Groups" -msgstr "Skupiny" +#: ../../mod/filer.php:30 ../../include/conversation.php:1006 +#: ../../include/conversation.php:1024 +msgid "Save to Folder:" +msgstr "Uložit do složky:" -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Editovat skupinu" +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- vyber -" -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Vytvořit novou skupinu" +#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63 +#: ../../include/text.php:955 +msgid "Save" +msgstr "Uložit" -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Kontakty, které nejsou v žádné skupině" +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Kontakt přidán" -#: ../../include/group.php:275 ../../mod/network.php:189 -msgid "add" -msgstr "přidat" +#: ../../mod/item.php:113 +msgid "Unable to locate original post." +msgstr "Nelze nalézt původní příspěvek." -#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926 -#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955 -#: ../../include/Photo.php:911 ../../include/Photo.php:926 -#: ../../include/Photo.php:933 ../../include/Photo.php:955 -#: ../../include/message.php:144 ../../mod/wall_upload.php:169 +#: ../../mod/item.php:345 +msgid "Empty post discarded." +msgstr "Prázdný příspěvek odstraněn." + +#: ../../mod/item.php:484 ../../mod/wall_upload.php:169 #: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 -#: ../../mod/item.php:463 +#: ../../include/Photo.php:916 ../../include/Photo.php:931 +#: ../../include/Photo.php:938 ../../include/Photo.php:960 +#: ../../include/message.php:144 msgid "Wall Photos" msgstr "Fotografie na zdi" -#: ../../include/dba.php:51 ../../include/dba_pdo.php:72 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Nelze nalézt záznam v DNS pro databázový server '%s'" +#: ../../mod/item.php:938 +msgid "System error. Post not saved." +msgstr "Chyba systému. Příspěvek nebyl uložen." -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Přidat nový kontakt" +#: ../../mod/item.php:964 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica." -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Zadejte adresu nebo umístění webu" +#: ../../mod/item.php:966 +#, php-format +msgid "You may visit them online at %s" +msgstr "Můžete je navštívit online na adrese %s" -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Příklad: jan@příklad.cz, http://příklad.cz/jana" +#: ../../mod/item.php:967 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam." -#: ../../include/contact_widgets.php:24 +#: ../../mod/item.php:971 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "Pozvánka %d k dispozici" -msgstr[1] "Pozvánky %d k dispozici" -msgstr[2] "Pozvánky %d k dispozici" +msgid "%s posted an update." +msgstr "%s poslal aktualizaci." -#: ../../include/contact_widgets.php:30 -msgid "Find People" -msgstr "Nalézt lidi" +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Skupina vytvořena." -#: ../../include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Zadejte jméno nebo zájmy" +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Nelze vytvořit skupinu." -#: ../../include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Připojit / Následovat" +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." +msgstr "Skupina nenalezena." -#: ../../include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Příklady: Robert Morgenstein, rybaření" +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "Název skupiny byl změněn." -#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:700 -#: ../../mod/directory.php:63 -msgid "Find" -msgstr "Najít" +#: ../../mod/group.php:87 +msgid "Save Group" +msgstr "Uložit Skupinu" -#: ../../include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Náhodný Profil" +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Vytvořit skupinu kontaktů / přátel." -#: ../../include/contact_widgets.php:71 -msgid "Networks" -msgstr "Sítě" +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "Název skupiny: " -#: ../../include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Všechny sítě" +#: ../../mod/group.php:113 +msgid "Group removed." +msgstr "Skupina odstraněna. " -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 -msgid "Everything" -msgstr "Všechno" +#: ../../mod/group.php:115 +msgid "Unable to remove group." +msgstr "Nelze odstranit skupinu." -#: ../../include/contact_widgets.php:136 -msgid "Categories" -msgstr "Kategorie" +#: ../../mod/group.php:179 +msgid "Group Editor" +msgstr "Editor skupin" -#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:427 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d sdílený kontakt" -msgstr[1] "%d sdílených kontaktů" -msgstr[2] "%d sdílených kontaktů" +#: ../../mod/group.php:192 +msgid "Members" +msgstr "Členové" -#: ../../include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Friendica Notifikace" +#: ../../mod/apps.php:7 ../../index.php:212 +msgid "You must be logged in to use addons. " +msgstr "Musíte být přihlášeni pro použití rozšíření." -#: ../../include/enotify.php:21 -msgid "Thank You," -msgstr "Děkujeme, " +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Aplikace" -#: ../../include/enotify.php:23 -#, php-format -msgid "%s Administrator" -msgstr "%s Administrátor" +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Žádné nainstalované aplikace." -#: ../../include/enotify.php:30 ../../include/delivery.php:467 -#: ../../include/notifier.php:784 -msgid "noreply" -msgstr "neodpovídat" +#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18 +#: ../../mod/profiles.php:133 ../../mod/profiles.php:162 +#: ../../mod/profiles.php:596 +msgid "Profile not found." +msgstr "Profil nenalezen" -#: ../../include/enotify.php:55 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20 +#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133 +msgid "Contact not found." +msgstr "Kontakt nenalezen." -#: ../../include/enotify.php:59 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Upozornění] Obdržena nová zpráva na %s" +#: ../../mod/dfrn_confirm.php:121 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen." -#: ../../include/enotify.php:61 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s Vám poslal novou soukromou zprávu na %2$s." +#: ../../mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Odpověď ze vzdáleného serveru nebyla srozumitelná." -#: ../../include/enotify.php:62 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s Vám poslal %2$s." +#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "Neočekávaná odpověď od vzdáleného serveru:" -#: ../../include/enotify.php:62 -msgid "a private message" -msgstr "soukromá zpráva" +#: ../../mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Potvrzení úspěšně dokončena." -#: ../../include/enotify.php:63 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět." +#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 +#: ../../mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Vzdálený server oznámil:" -#: ../../include/enotify.php:115 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s okomentoval na [url=%2$s]%3$s[/url]" +#: ../../mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu." -#: ../../include/enotify.php:122 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s okomentoval na [url=%2$s]%3$s's %4$s[/url]" +#: ../../mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "Žádost o propojení selhala nebo byla zrušena." -#: ../../include/enotify.php:130 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s okomentoval na [url=%2$s]Váš %3$s[/url]" +#: ../../mod/dfrn_confirm.php:429 +msgid "Unable to set contact photo." +msgstr "Nelze nastavit fotografii kontaktu." -#: ../../include/enotify.php:140 +#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172 +#: ../../include/diaspora.php:620 #, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Upozornění] Komentář ke konverzaci #%1$d od %2$s" +msgid "%1$s is now friends with %2$s" +msgstr "%1$s je nyní přítel s %2$s" -#: ../../include/enotify.php:141 +#: ../../mod/dfrn_confirm.php:571 #, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "Uživatel %s okomentoval vámi sledovanou položku/konverzaci." +msgid "No user record found for '%s' " +msgstr "Pro '%s' nenalezen žádný uživatelský záznam " -#: ../../include/enotify.php:144 ../../include/enotify.php:159 -#: ../../include/enotify.php:172 ../../include/enotify.php:185 -#: ../../include/enotify.php:203 ../../include/enotify.php:216 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět." +#: ../../mod/dfrn_confirm.php:581 +msgid "Our site encryption key is apparently messed up." +msgstr "Náš šifrovací klíč zřejmě přestal správně fungovat." -#: ../../include/enotify.php:151 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď" +#: ../../mod/dfrn_confirm.php:592 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat." -#: ../../include/enotify.php:153 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s přidal příspěvek na Vaši profilovou zeď na %2$s" +#: ../../mod/dfrn_confirm.php:613 +msgid "Contact record was not found for you on our site." +msgstr "Kontakt záznam nebyl nalezen pro vás na našich stránkách." -#: ../../include/enotify.php:155 +#: ../../mod/dfrn_confirm.php:627 #, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s napřidáno na [url=%2$s]na Vaši zeď[/url]" +msgid "Site public key not available in contact record for URL %s." +msgstr "V adresáři není k dispozici veřejný klíč pro URL %s." -#: ../../include/enotify.php:166 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Upozornění] %s Vás označil" +#: ../../mod/dfrn_confirm.php:647 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat." -#: ../../include/enotify.php:167 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s Vás označil na %2$s" +#: ../../mod/dfrn_confirm.php:658 +msgid "Unable to set your contact credentials on our system." +msgstr "Nelze nastavit Vaše přihlašovací údaje v našem systému." -#: ../../include/enotify.php:168 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]Vás označil[/url]." +#: ../../mod/dfrn_confirm.php:725 +msgid "Unable to update your contact profile details on our system" +msgstr "Nelze aktualizovat Váš profil v našem systému" -#: ../../include/enotify.php:179 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica:Notify] %s nasdílel nový příspěvek" +#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717 +#: ../../include/items.php:3979 +msgid "[Name Withheld]" +msgstr "[Jméno odepřeno]" -#: ../../include/enotify.php:180 +#: ../../mod/dfrn_confirm.php:797 #, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s nasdílel nový příspěvek na %2$s" +msgid "%1$s has joined %2$s" +msgstr "%1$s se připojil k %2$s" -#: ../../include/enotify.php:181 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]nasdílel příspěvek[/url]." +#: ../../mod/profile.php:21 ../../boot.php:1453 +msgid "Requested profile is not available." +msgstr "Požadovaný profil není k dispozici." -#: ../../include/enotify.php:193 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul" +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Tipy pro nové členy" -#: ../../include/enotify.php:194 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s Vás šťouchnul na %2$s" +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "Není vybráno žádné video" -#: ../../include/enotify.php:195 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "Uživatel %1$s [url=%2$s]Vás šťouchnul[/url]." +#: ../../mod/videos.php:226 ../../mod/photos.php:1031 +msgid "Access to this item is restricted." +msgstr "Přístup k této položce je omezen." -#: ../../include/enotify.php:210 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Upozornění] %s označil Váš příspěvek" +#: ../../mod/videos.php:301 ../../include/text.php:1402 +msgid "View Video" +msgstr "Zobrazit video" -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s označil Váš příspěvek na %2$s" +#: ../../mod/videos.php:308 ../../mod/photos.php:1808 +msgid "View Album" +msgstr "Zobrazit album" -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s označil [url=%2$s]Váš příspěvek[/url]" +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "Aktuální Videa" -#: ../../include/enotify.php:223 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Upozornění] Obdrženo přestavení" +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "Nahrát nová videa" -#: ../../include/enotify.php:224 +#: ../../mod/tagger.php:95 ../../include/conversation.php:266 #, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Obdržel jste žádost o spojení od '%1$s' na %2$s" +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s označen uživatelem %2$s %3$s s %4$s" -#: ../../include/enotify.php:225 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Obdržel jste [url=%1$s]žádost o spojení[/url] od %2$s." +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Návrhy přátelství odeslány " -#: ../../include/enotify.php:228 ../../include/enotify.php:270 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Můžete navštívit jejich profil na %s" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Navrhněte přátelé" -#: ../../include/enotify.php:230 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Prosím navštivte %s pro schválení či zamítnutí představení." - -#: ../../include/enotify.php:238 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "[Friendica:Upozornění] Nový člověk s vámi sdílí" +msgid "Suggest a friend for %s" +msgstr "Navrhněte přátelé pro uživatele %s" -#: ../../include/enotify.php:239 ../../include/enotify.php:240 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "uživatel %1$s sdílí s vámi ma %2$s" +#: ../../mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Nenalezen žádný platný účet." -#: ../../include/enotify.php:246 -msgid "[Friendica:Notify] You have a new follower" -msgstr "[Friendica:Upozornění] Máte nového následovníka" +#: ../../mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku." -#: ../../include/enotify.php:247 ../../include/enotify.php:248 +#: ../../mod/lostpass.php:42 #, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "Máte nového následovníka na %2$s : %1$s" - -#: ../../include/enotify.php:261 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství" +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "" -#: ../../include/enotify.php:262 +#: ../../mod/lostpass.php:53 #, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Obdržel jste návrh přátelství od '%1$s' na %2$s" +msgid "" +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "\n\t\tKlikněte na následující odkaz pro potvrzení Vaší identity:\n\n\t\t%1$s\n\n\t\tNásledně obdržíte zprávu obsahující nové heslo.\n\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\n\t\tVaše přihlašovací údaje jsou následující:\n\n\t\tUmístění webu:\t%2$s\n\t\tPřihlašovací jméno:\t%3$s" -#: ../../include/enotify.php:263 +#: ../../mod/lostpass.php:72 #, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Obdržel jste [url=%1$s]návrh přátelství[/url] s %2$s from %3$s." +msgid "Password reset requested at %s" +msgstr "Na %s bylo zažádáno o resetování hesla" -#: ../../include/enotify.php:268 -msgid "Name:" -msgstr "Jméno:" +#: ../../mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo." -#: ../../include/enotify.php:269 -msgid "Photo:" -msgstr "Foto:" +#: ../../mod/lostpass.php:109 ../../boot.php:1275 +msgid "Password Reset" +msgstr "Obnovení hesla" -#: ../../include/enotify.php:272 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Prosím navštivte %s pro schválení či zamítnutí doporučení." +#: ../../mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Vaše heslo bylo na Vaše přání resetováno." -#: ../../include/enotify.php:280 ../../include/enotify.php:293 -msgid "[Friendica:Notify] Connection accepted" -msgstr "[Friendica:Upozornění] Spojení akceptováno" +#: ../../mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Někdo Vám napsal na Vaši profilovou stránku" -#: ../../include/enotify.php:281 ../../include/enotify.php:294 -#, php-format -msgid "'%1$s' has acepted your connection request at %2$s" -msgstr "'%1$s' akceptoval váš požadavek na spojení na %2$s" +#: ../../mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Uložte si nebo zkopírujte nové heslo - a pak" -#: ../../include/enotify.php:282 ../../include/enotify.php:295 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "%2$s akceptoval váš [url=%1$s]požadavek na spojení[/url]." +#: ../../mod/lostpass.php:113 +msgid "click here to login" +msgstr "klikněte zde pro přihlášení" -#: ../../include/enotify.php:285 +#: ../../mod/lostpass.php:114 msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." -msgstr "Jste nyní vzájemnými přáteli a můžete si vyměňovat aktualizace statusu, fotografií a emailů\nbez omezení." +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)." -#: ../../include/enotify.php:288 ../../include/enotify.php:302 +#: ../../mod/lostpass.php:125 #, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Prosím navštivte %s pokud chcete změnit tento vztah." +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" +msgstr "\n\t\t\t\tDrahý %1$s,\n⇥⇥⇥⇥⇥Vaše heslo bylo na požádání změněno. Prosím uchovejte si tuto informaci (nebo si změntě heslo ihned na něco, co si budete pamatovat).\t" -#: ../../include/enotify.php:298 +#: ../../mod/lostpass.php:131 #, php-format msgid "" -"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." -msgstr "'%1$s' vás přijal jako \"fanouška\", což omezuje některé formy komunikace - jako jsou soukromé zprávy a některé interakce na profilech. Pokud se jedná o celebritu, případně o komunitní stránky, pak bylo toto nastavení provedeno automaticky.." +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t\t" +msgstr "\n\t\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\t\tUmístění webu:\t%1$s\n\t\t\t\tPřihlašovací jméno:\t%2$s\n\t\t\t\tHeslo:\t%3$s\n\n\t\t\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\t\t\t" -#: ../../include/enotify.php:300 +#: ../../mod/lostpass.php:147 #, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " -msgstr "''%1$s' se může rozhodnout rozšířit tento vztah na oboustraný nebo méně restriktivní" +msgid "Your password has been changed at %s" +msgstr "Vaše heslo bylo změněno na %s" -#: ../../include/enotify.php:313 -msgid "[Friendica System:Notify] registration request" -msgstr "[Systém Friendica :Upozornění] registrační požadavek" +#: ../../mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Zapomněli jste heslo?" -#: ../../include/enotify.php:314 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "Obdržel jste požadavek na registraci od '%1$s' na %2$s" +#: ../../mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce." -#: ../../include/enotify.php:315 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "Obdržel jste [url=%1$s]požadavek na registraci[/url] od '%2$s'." +#: ../../mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Přezdívka nebo e-mail: " -#: ../../include/enotify.php:318 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "Plné jméno:\t%1$s\\nUmístění webu:\t%2$s\\nPřihlašovací účet:\t%3$s (%4$s)" +#: ../../mod/lostpass.php:162 +msgid "Reset" +msgstr "Reset" -#: ../../include/enotify.php:321 +#: ../../mod/like.php:166 ../../include/conversation.php:137 +#: ../../include/diaspora.php:1935 ../../view/theme/diabook/theme.php:480 #, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku." - -#: ../../include/api.php:262 ../../include/api.php:273 -#: ../../include/api.php:374 ../../include/api.php:958 -#: ../../include/api.php:960 -msgid "User not found." -msgstr "Uživatel nenalezen" +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s má rád %2$s' na %3$s" -#: ../../include/api.php:1167 -msgid "There is no status with this id." -msgstr "Není tu žádný status s tímto id." +#: ../../mod/like.php:168 ../../include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s nemá rád %2$s na %3$s" -#: ../../include/api.php:1237 -msgid "There is no conversation with this id." -msgstr "Nemáme žádnou konverzaci s tímto id." +#: ../../mod/ping.php:240 +msgid "{0} wants to be your friend" +msgstr "{0} chce být Vaším přítelem" -#: ../../include/network.php:892 -msgid "view full size" -msgstr "zobrazit v plné velikosti" +#: ../../mod/ping.php:245 +msgid "{0} sent you a message" +msgstr "{0} vám poslal zprávu" -#: ../../include/Scrape.php:584 -msgid " on Last.fm" -msgstr " na Last.fm" +#: ../../mod/ping.php:250 +msgid "{0} requested registration" +msgstr "{0} požaduje registraci" -#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1125 -msgid "Full Name:" -msgstr "Celé jméno:" +#: ../../mod/ping.php:256 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} komentoval příspěvek uživatele %s" -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "j F, Y" +#: ../../mod/ping.php:261 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0} má rád příspěvek uživatele %s" -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "j F" +#: ../../mod/ping.php:266 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0} nemá rád příspěvek uživatele %s" -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Narozeniny:" +#: ../../mod/ping.php:271 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} se skamarádil s %s" -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Věk:" +#: ../../mod/ping.php:276 +msgid "{0} posted" +msgstr "{0} zasláno" -#: ../../include/profile_advanced.php:43 +#: ../../mod/ping.php:281 #, php-format -msgid "for %1$d %2$s" -msgstr "pro %1$d %2$s" +msgid "{0} tagged %s's post with #%s" +msgstr "{0} označen %s' příspěvek s #%s" -#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:673 -msgid "Sexual Preference:" -msgstr "Sexuální preference:" +#: ../../mod/ping.php:287 +msgid "{0} mentioned you in a post" +msgstr "{0} vás zmínil v příspěvku" -#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:675 -msgid "Hometown:" -msgstr "Rodné město" +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "Žádné kontakty." -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Štítky:" +#: ../../mod/viewcontacts.php:76 ../../include/text.php:875 +msgid "View Contacts" +msgstr "Zobrazit kontakty" -#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:676 -msgid "Political Views:" -msgstr "Politické přesvědčení:" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Neplatný identifikátor požadavku." -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Náboženství:" - -#: ../../include/profile_advanced.php:58 ../../mod/directory.php:144 -msgid "About:" -msgstr "O mě:" +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "Odstranit" -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Koníčky/zájmy:" +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "Systém" -#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:680 -msgid "Likes:" -msgstr "Líbí se:" +#: ../../mod/notifications.php:83 ../../include/nav.php:143 +msgid "Network" +msgstr "Síť" -#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:681 -msgid "Dislikes:" -msgstr "Nelibí se:" +#: ../../mod/notifications.php:88 ../../mod/network.php:371 +msgid "Personal" +msgstr "Osobní" -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Kontaktní informace a sociální sítě:" +#: ../../mod/notifications.php:93 ../../include/nav.php:105 +#: ../../include/nav.php:146 ../../view/theme/diabook/theme.php:123 +msgid "Home" +msgstr "Domů" -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Hudební vkus:" +#: ../../mod/notifications.php:98 ../../include/nav.php:152 +msgid "Introductions" +msgstr "Představení" -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Knihy, literatura:" +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "Zobrazit ignorované žádosti" -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Televize:" +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "Skrýt ignorované žádosti" -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/tanec/kultura/zábava:" +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " +msgstr "Typ oznámení: " -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Láska/romance" +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "Návrh přátelství" -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Práce/zaměstnání:" +#: ../../mod/notifications.php:152 +#, php-format +msgid "suggested by %s" +msgstr "navrhl %s" -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Škola/vzdělávání:" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" +msgstr "Zveřejnit aktivitu nového přítele." -#: ../../include/nav.php:34 ../../mod/navigation.php:20 -msgid "Nothing new here" -msgstr "Zde není nic nového" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" +msgstr "je-li použitelné" -#: ../../include/nav.php:38 ../../mod/navigation.php:24 -msgid "Clear notifications" -msgstr "Smazat notifikace" +#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 +#: ../../mod/admin.php:977 +msgid "Approve" +msgstr "Schválit" -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Konec této relace" +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "Vaši údajní známí: " -#: ../../include/nav.php:79 -msgid "Your videos" -msgstr "Vaše videa" +#: ../../mod/notifications.php:181 +msgid "yes" +msgstr "ano" -#: ../../include/nav.php:81 -msgid "Your personal notes" -msgstr "Vaše osobní poznámky" +#: ../../mod/notifications.php:181 +msgid "no" +msgstr "ne" -#: ../../include/nav.php:92 -msgid "Sign in" -msgstr "Přihlásit se" +#: ../../mod/notifications.php:188 +msgid "Approve as: " +msgstr "Schválit jako: " -#: ../../include/nav.php:105 -msgid "Home Page" -msgstr "Domácí stránka" +#: ../../mod/notifications.php:189 +msgid "Friend" +msgstr "Přítel" -#: ../../include/nav.php:109 -msgid "Create an account" -msgstr "Vytvořit účet" +#: ../../mod/notifications.php:190 +msgid "Sharer" +msgstr "Sdílené" -#: ../../include/nav.php:114 ../../mod/help.php:84 -msgid "Help" -msgstr "Nápověda" +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "Fanoušek / obdivovatel" -#: ../../include/nav.php:114 -msgid "Help and documentation" -msgstr "Nápověda a dokumentace" +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "Přítel / žádost o připojení" -#: ../../include/nav.php:117 -msgid "Apps" -msgstr "Aplikace" +#: ../../mod/notifications.php:196 +msgid "New Follower" +msgstr "Nový následovník" -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Doplňkové aplikace, nástroje, hry" +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "Žádné představení." -#: ../../include/nav.php:119 ../../include/text.php:952 -#: ../../include/text.php:953 ../../mod/search.php:99 -msgid "Search" -msgstr "Vyhledávání" +#: ../../mod/notifications.php:220 ../../include/nav.php:153 +msgid "Notifications" +msgstr "Upozornění" -#: ../../include/nav.php:119 -msgid "Search site content" -msgstr "Hledání na stránkách tohoto webu" +#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 +#: ../../mod/notifications.php:478 +#, php-format +msgid "%s liked %s's post" +msgstr "Uživateli %s se líbí příspěvek uživatele %s" -#: ../../include/nav.php:129 -msgid "Conversations on this site" -msgstr "Konverzace na tomto webu" +#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 +#: ../../mod/notifications.php:488 +#, php-format +msgid "%s disliked %s's post" +msgstr "Uživateli %s se nelíbí příspěvek uživatele %s" -#: ../../include/nav.php:131 -msgid "Directory" -msgstr "Adresář" +#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 +#: ../../mod/notifications.php:503 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s se nyní přátelí s %s" -#: ../../include/nav.php:131 -msgid "People directory" -msgstr "Adresář" +#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 +#, php-format +msgid "%s created a new post" +msgstr "%s vytvořil nový příspěvek" -#: ../../include/nav.php:133 -msgid "Information" -msgstr "Informace" +#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 +#: ../../mod/notifications.php:513 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s okomentoval příspěvek uživatele %s'" -#: ../../include/nav.php:133 -msgid "Information about this friendica instance" -msgstr "Informace o této instanci Friendica" +#: ../../mod/notifications.php:306 +msgid "No more network notifications." +msgstr "Žádné další síťové upozornění." -#: ../../include/nav.php:143 ../../mod/notifications.php:83 -msgid "Network" -msgstr "Síť" +#: ../../mod/notifications.php:310 +msgid "Network Notifications" +msgstr "Upozornění Sítě" -#: ../../include/nav.php:143 -msgid "Conversations from your friends" -msgstr "Konverzace od Vašich přátel" +#: ../../mod/notifications.php:336 ../../mod/notify.php:75 +msgid "No more system notifications." +msgstr "Žádné další systémová upozornění." -#: ../../include/nav.php:144 -msgid "Network Reset" -msgstr "Síťový Reset" +#: ../../mod/notifications.php:340 ../../mod/notify.php:79 +msgid "System Notifications" +msgstr "Systémová upozornění" -#: ../../include/nav.php:144 -msgid "Load Network page with no filters" -msgstr "Načíst stránku Síť bez filtrů" +#: ../../mod/notifications.php:435 +msgid "No more personal notifications." +msgstr "Žádné další osobní upozornění." -#: ../../include/nav.php:152 ../../mod/notifications.php:98 -msgid "Introductions" -msgstr "Představení" +#: ../../mod/notifications.php:439 +msgid "Personal Notifications" +msgstr "Osobní upozornění" -#: ../../include/nav.php:152 -msgid "Friend Requests" -msgstr "Žádosti přátel" +#: ../../mod/notifications.php:520 +msgid "No more home notifications." +msgstr "Žádné další domácí upozornění." -#: ../../include/nav.php:153 ../../mod/notifications.php:220 -msgid "Notifications" -msgstr "Upozornění" +#: ../../mod/notifications.php:524 +msgid "Home Notifications" +msgstr "Upozornění na vstupní straně" -#: ../../include/nav.php:154 -msgid "See all notifications" -msgstr "Zobrazit všechny upozornění" +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Zdrojový text (bbcode):" -#: ../../include/nav.php:155 -msgid "Mark all system notifications seen" -msgstr "Označit všechny upozornění systému jako přečtené" +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Zdrojový (Diaspora) text k převedení do BB kódování:" -#: ../../include/nav.php:159 ../../mod/notifications.php:103 -#: ../../mod/message.php:182 -msgid "Messages" -msgstr "Zprávy" +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Zdrojový vstup: " -#: ../../include/nav.php:159 -msgid "Private mail" -msgstr "Soukromá pošta" +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (raw HTML): " -#: ../../include/nav.php:160 -msgid "Inbox" -msgstr "Doručená pošta" +#: ../../mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html: " -#: ../../include/nav.php:161 -msgid "Outbox" -msgstr "Odeslaná pošta" - -#: ../../include/nav.php:162 ../../mod/message.php:9 -msgid "New Message" -msgstr "Nová zpráva" - -#: ../../include/nav.php:165 -msgid "Manage" -msgstr "Spravovat" +#: ../../mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " -#: ../../include/nav.php:165 -msgid "Manage other pages" -msgstr "Spravovat jiné stránky" +#: ../../mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " -#: ../../include/nav.php:168 ../../mod/settings.php:62 -msgid "Delegations" -msgstr "Delegace" +#: ../../mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " -#: ../../include/nav.php:168 ../../mod/delegate.php:124 -msgid "Delegate Page Management" -msgstr "Správa delegátů stránky" +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " -#: ../../include/nav.php:170 -msgid "Account settings" -msgstr "Nastavení účtu" +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " -#: ../../include/nav.php:173 -msgid "Manage/Edit Profiles" -msgstr "Spravovat/Editovat Profily" +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Vstupní data (ve formátu Diaspora): " -#: ../../include/nav.php:175 -msgid "Manage/edit friends and contacts" -msgstr "Spravovat/upravit přátelé a kontakty" +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " -#: ../../include/nav.php:182 ../../mod/admin.php:128 -msgid "Admin" -msgstr "Administrace" +#: ../../mod/navigation.php:20 ../../include/nav.php:34 +msgid "Nothing new here" +msgstr "Zde není nic nového" -#: ../../include/nav.php:182 -msgid "Site setup and configuration" -msgstr "Nastavení webu a konfigurace" +#: ../../mod/navigation.php:24 ../../include/nav.php:38 +msgid "Clear notifications" +msgstr "Smazat notifikace" -#: ../../include/nav.php:186 -msgid "Navigation" -msgstr "Navigace" +#: ../../mod/message.php:9 ../../include/nav.php:162 +msgid "New Message" +msgstr "Nová zpráva" -#: ../../include/nav.php:186 -msgid "Site map" -msgstr "Mapa webu" +#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Nevybrán příjemce." -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "Klikněte zde pro aktualizaci." +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Nepodařilo se najít kontaktní informace." -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Tato akce překročí limit nastavené Vaším předplatným." +#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Zprávu se nepodařilo odeslat." -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "Tato akce není v rámci Vašeho předplatného dostupná." +#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Sběr zpráv selhal." -#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507 -msgid "Disallowed profile URL." -msgstr "Nepovolené URL profilu." +#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Zpráva odeslána." -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "Chybí URL adresa." +#: ../../mod/message.php:182 ../../include/nav.php:159 +msgid "Messages" +msgstr "Zprávy" -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi." +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Opravdu chcete smazat tuto zprávu?" -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál." +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Zpráva odstraněna." -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "Uvedená adresa profilu neposkytuje dostatečné informace." +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Konverzace odstraněna." -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Autor nebo jméno nenalezeno" +#: ../../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:1002 ../../include/conversation.php:1020 +msgid "Please enter a link URL:" +msgstr "Zadejte prosím URL odkaz:" -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Této adrese neodpovídá žádné URL prohlížeče." +#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Odeslat soukromou zprávu" -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem." +#: ../../mod/message.php:320 ../../mod/message.php:553 +#: ../../mod/wallmessage.php:144 +msgid "To:" +msgstr "Adresát:" -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "Použite mailo: před adresou k vynucení emailové kontroly." +#: ../../mod/message.php:325 ../../mod/message.php:555 +#: ../../mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Předmět:" -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Zadaná adresa profilu patří do sítě, která byla na tomto serveru zakázána." +#: ../../mod/message.php:329 ../../mod/message.php:558 +#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +msgid "Your message:" +msgstr "Vaše zpráva:" -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení." +#: ../../mod/message.php:332 ../../mod/message.php:562 +#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 +#: ../../include/conversation.php:1091 +msgid "Upload photo" +msgstr "Nahrát fotografii" -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Nepodařilo se získat kontaktní informace." +#: ../../mod/message.php:333 ../../mod/message.php:563 +#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 +#: ../../include/conversation.php:1095 +msgid "Insert web link" +msgstr "Vložit webový odkaz" -#: ../../include/follow.php:259 -msgid "following" -msgstr "následující" +#: ../../mod/message.php:334 ../../mod/message.php:565 +#: ../../mod/content.php:499 ../../mod/content.php:883 +#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124 +#: ../../mod/photos.php:1545 ../../object/Item.php:364 +#: ../../include/conversation.php:692 ../../include/conversation.php:1109 +msgid "Please wait" +msgstr "Čekejte prosím" -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Chyba dekódování uživatelského účtu" +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Žádné zprávy." -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?" +#: ../../mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "Neznámý odesilatel - %s" -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Chyba! Nelze ověřit přezdívku" +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Vy a %s" -#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#: ../../mod/message.php:384 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "Uživatel '%s' již na tomto serveru existuje!" +msgid "%s and You" +msgstr "%s a Vy" -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Chyba vytváření uživatele" +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Odstranit konverzaci" -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Chyba vytváření uživatelského účtu" +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D M R - g:i A" -#: ../../include/uimport.php:220 +#: ../../mod/message.php:411 #, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d kontakt nenaimporován" -msgstr[1] "%d kontaktů nenaimporováno" -msgstr[2] "%d kontakty nenaimporovány" - -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" -msgstr "Hotovo. Nyní se můžete přihlásit se svými uživatelským účtem a heslem" +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d zpráva" +msgstr[1] "%d zprávy" +msgstr[2] "%d zpráv" -#: ../../include/event.php:11 ../../include/bb2diaspora.php:134 -#: ../../mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Zpráva není k dispozici." -#: ../../include/event.php:20 ../../include/bb2diaspora.php:140 -msgid "Starts:" -msgstr "Začíná:" +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Smazat zprávu" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:148 -msgid "Finishes:" -msgstr "Končí:" +#: ../../mod/message.php:548 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Není k dispozici zabezpečená komunikace. Možná budete schopni reagovat z odesilatelovy profilové stránky." -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "následování zastaveno" +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Poslat odpověď" -#: ../../include/Contact.php:228 ../../include/conversation.php:882 -msgid "Poke" -msgstr "Šťouchnout" +#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 +#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41 +#: ../../mod/update_network.php:25 +msgid "[Embedded content - reload page to view]" +msgstr "[Vložený obsah - obnovte stránku pro zobrazení]" -#: ../../include/Contact.php:229 ../../include/conversation.php:876 -msgid "View Status" -msgstr "Zobrazit Status" +#: ../../mod/crepair.php:106 +msgid "Contact settings applied." +msgstr "Nastavení kontaktu změněno" -#: ../../include/Contact.php:230 ../../include/conversation.php:877 -msgid "View Profile" -msgstr "Zobrazit Profil" +#: ../../mod/crepair.php:108 +msgid "Contact update failed." +msgstr "Aktualizace kontaktu selhala." -#: ../../include/Contact.php:231 ../../include/conversation.php:878 -msgid "View Photos" -msgstr "Zobrazit Fotky" +#: ../../mod/crepair.php:139 +msgid "Repair Contact Settings" +msgstr "Opravit nastavení kontaktu" -#: ../../include/Contact.php:232 ../../include/Contact.php:255 -#: ../../include/conversation.php:879 -msgid "Network Posts" -msgstr "Zobrazit Příspěvky sítě" +#: ../../mod/crepair.php:141 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "Varování: Toto je velmi pokročilé a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat." -#: ../../include/Contact.php:233 ../../include/Contact.php:255 -#: ../../include/conversation.php:880 -msgid "Edit Contact" -msgstr "Editovat Kontakty" +#: ../../mod/crepair.php:142 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Prosím použijte ihned v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce." -#: ../../include/Contact.php:234 -msgid "Drop Contact" -msgstr "Odstranit kontakt" +#: ../../mod/crepair.php:148 +msgid "Return to contact editor" +msgstr "Návrat k editoru kontaktu" -#: ../../include/Contact.php:235 ../../include/Contact.php:255 -#: ../../include/conversation.php:881 -msgid "Send PM" -msgstr "Poslat soukromou zprávu" +#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +msgid "No mirroring" +msgstr "Žádné zrcadlení" -#: ../../include/dbstructure.php:23 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\n\t\t\tThe friendica vývojáři uvolnili nedávno aktualizaci %s,\n\t\t\tale při pokusu o její instalaci se něco velmi nepovedlo.\n\t\t\tJe třeba to opravit a já to sám nedokážu. Prosím kontaktuj\n\t\t\tfriendica vývojáře, pokud mi s tím nepomůžeš ty sám. Moje databáze může být poškozena." +#: ../../mod/crepair.php:159 +msgid "Mirror as forwarded posting" +msgstr "Zrcadlit pro přeposlané příspěvky" -#: ../../include/dbstructure.php:28 -#, php-format +#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +msgid "Mirror as my own posting" +msgstr "Zrcadlit jako mé vlastní příspěvky" + +#: ../../mod/crepair.php:165 ../../mod/admin.php:975 ../../mod/admin.php:987 +#: ../../mod/admin.php:988 ../../mod/admin.php:1001 ../../mod/settings.php:616 +#: ../../mod/settings.php:642 +msgid "Name" +msgstr "Jméno" + +#: ../../mod/crepair.php:166 +msgid "Account Nickname" +msgstr "Přezdívka účtu" + +#: ../../mod/crepair.php:167 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou" + +#: ../../mod/crepair.php:168 +msgid "Account URL" +msgstr "URL adresa účtu" + +#: ../../mod/crepair.php:169 +msgid "Friend Request URL" +msgstr "Žádost o přátelství URL" + +#: ../../mod/crepair.php:170 +msgid "Friend Confirm URL" +msgstr "URL adresa potvrzení přátelství" + +#: ../../mod/crepair.php:171 +msgid "Notification Endpoint URL" +msgstr "Notifikační URL adresa" + +#: ../../mod/crepair.php:172 +msgid "Poll/Feed URL" +msgstr "Poll/Feed URL adresa" + +#: ../../mod/crepair.php:173 +msgid "New photo from this URL" +msgstr "Nové foto z této URL adresy" + +#: ../../mod/crepair.php:174 +msgid "Remote Self" +msgstr "Remote Self" + +#: ../../mod/crepair.php:176 +msgid "Mirror postings from this contact" +msgstr "Zrcadlení správ od tohoto kontaktu" + +#: ../../mod/crepair.php:176 msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Chybová zpráva je\n[pre]%s[/pre]" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu." -#: ../../include/dbstructure.php:181 -msgid "Errors encountered creating database tables." -msgstr "Při vytváření databázových tabulek došlo k chybám." +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Přístup odmítnut" -#: ../../include/dbstructure.php:239 -msgid "Errors encountered performing database changes." -msgstr "Při provádění databázových změn došlo k chybám." +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Vyhledávání lidí" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Různé" +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "Žádné shody" -#: ../../include/datetime.php:153 ../../include/datetime.php:285 -msgid "year" -msgstr "rok" +#: ../../mod/fbrowser.php:25 ../../boot.php:2121 ../../include/nav.php:78 +#: ../../view/theme/diabook/theme.php:126 +msgid "Photos" +msgstr "Fotografie" -#: ../../include/datetime.php:158 ../../include/datetime.php:286 -msgid "month" -msgstr "měsíc" +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "Soubory" -#: ../../include/datetime.php:163 ../../include/datetime.php:288 -msgid "day" -msgstr "den" +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Kontakty, které nejsou členy skupiny" -#: ../../include/datetime.php:276 -msgid "never" -msgstr "nikdy" +#: ../../mod/admin.php:57 +msgid "Theme settings updated." +msgstr "Nastavení téma zobrazení bylo aktualizováno." -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "méně než před sekundou" +#: ../../mod/admin.php:104 ../../mod/admin.php:596 +msgid "Site" +msgstr "Web" -#: ../../include/datetime.php:285 -msgid "years" -msgstr "let" +#: ../../mod/admin.php:105 ../../mod/admin.php:970 ../../mod/admin.php:985 +msgid "Users" +msgstr "Uživatelé" -#: ../../include/datetime.php:286 -msgid "months" -msgstr "měsíců" +#: ../../mod/admin.php:106 ../../mod/admin.php:1074 ../../mod/admin.php:1127 +#: ../../mod/settings.php:57 +msgid "Plugins" +msgstr "Pluginy" -#: ../../include/datetime.php:287 -msgid "week" -msgstr "týdnem" +#: ../../mod/admin.php:107 ../../mod/admin.php:1295 ../../mod/admin.php:1329 +msgid "Themes" +msgstr "Témata" -#: ../../include/datetime.php:287 -msgid "weeks" -msgstr "týdny" +#: ../../mod/admin.php:108 +msgid "DB updates" +msgstr "Aktualizace databáze" -#: ../../include/datetime.php:288 -msgid "days" -msgstr "dnů" +#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1416 +msgid "Logs" +msgstr "Logy" -#: ../../include/datetime.php:289 -msgid "hour" -msgstr "hodina" +#: ../../mod/admin.php:128 ../../include/nav.php:182 +msgid "Admin" +msgstr "Administrace" -#: ../../include/datetime.php:289 -msgid "hours" -msgstr "hodin" +#: ../../mod/admin.php:129 +msgid "Plugin Features" +msgstr "Funkčnosti rozšíření" -#: ../../include/datetime.php:290 -msgid "minute" -msgstr "minuta" +#: ../../mod/admin.php:131 +msgid "User registrations waiting for confirmation" +msgstr "Registrace uživatele čeká na potvrzení" -#: ../../include/datetime.php:290 -msgid "minutes" -msgstr "minut" +#: ../../mod/admin.php:190 ../../mod/admin.php:924 +msgid "Normal Account" +msgstr "Normální účet" -#: ../../include/datetime.php:291 -msgid "second" -msgstr "sekunda" +#: ../../mod/admin.php:191 ../../mod/admin.php:925 +msgid "Soapbox Account" +msgstr "Soapbox účet" -#: ../../include/datetime.php:291 -msgid "seconds" -msgstr "sekund" +#: ../../mod/admin.php:192 ../../mod/admin.php:926 +msgid "Community/Celebrity Account" +msgstr "Komunitní účet / Účet celebrity" -#: ../../include/datetime.php:300 -#, php-format -msgid "%1$d %2$s ago" -msgstr "před %1$d %2$s" +#: ../../mod/admin.php:193 ../../mod/admin.php:927 +msgid "Automatic Friend Account" +msgstr "Účet s automatickým schvalováním přátel" -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[bez předmětu]" +#: ../../mod/admin.php:194 +msgid "Blog Account" +msgstr "Účet Blogu" -#: ../../include/delivery.php:456 ../../include/notifier.php:774 -msgid "(no subject)" -msgstr "(Bez předmětu)" +#: ../../mod/admin.php:195 +msgid "Private Forum" +msgstr "Soukromé fórum" -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Neznámé | Nezařazeno" +#: ../../mod/admin.php:214 +msgid "Message queues" +msgstr "Fronty zpráv" -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Okamžitě blokovat " +#: ../../mod/admin.php:219 ../../mod/admin.php:595 ../../mod/admin.php:969 +#: ../../mod/admin.php:1073 ../../mod/admin.php:1126 ../../mod/admin.php:1294 +#: ../../mod/admin.php:1328 ../../mod/admin.php:1415 +msgid "Administration" +msgstr "Administrace" -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "pochybný, spammer, self-makerter" +#: ../../mod/admin.php:220 +msgid "Summary" +msgstr "Shrnutí" -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Znám ho ale, ale bez rozhodnutí" +#: ../../mod/admin.php:222 +msgid "Registered users" +msgstr "Registrovaní uživatelé" -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, pravděpodobně neškodný" +#: ../../mod/admin.php:224 +msgid "Pending registrations" +msgstr "Čekající registrace" -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Renomovaný, má mou důvěru" +#: ../../mod/admin.php:225 +msgid "Version" +msgstr "Verze" + +#: ../../mod/admin.php:229 +msgid "Active plugins" +msgstr "Aktivní pluginy" + +#: ../../mod/admin.php:252 +msgid "Can not parse base url. Must have at least ://" +msgstr "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň ://" + +#: ../../mod/admin.php:500 +msgid "Site settings updated." +msgstr "Nastavení webu aktualizováno." + +#: ../../mod/admin.php:529 ../../mod/settings.php:828 +msgid "No special theme for mobile devices" +msgstr "žádné speciální téma pro mobilní zařízení" -#: ../../include/contact_selectors.php:56 ../../mod/admin.php:542 +#: ../../mod/admin.php:547 +msgid "At post arrival" +msgstr "Při obdržení příspěvku" + +#: ../../mod/admin.php:548 ../../include/contact_selectors.php:56 msgid "Frequently" msgstr "Často" -#: ../../include/contact_selectors.php:57 ../../mod/admin.php:543 +#: ../../mod/admin.php:549 ../../include/contact_selectors.php:57 msgid "Hourly" msgstr "každou hodinu" -#: ../../include/contact_selectors.php:58 ../../mod/admin.php:544 +#: ../../mod/admin.php:550 ../../include/contact_selectors.php:58 msgid "Twice daily" msgstr "Dvakrát denně" -#: ../../include/contact_selectors.php:59 ../../mod/admin.php:545 +#: ../../mod/admin.php:551 ../../include/contact_selectors.php:59 msgid "Daily" msgstr "denně" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Týdenně" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Měsíčně" +#: ../../mod/admin.php:556 +msgid "Multi user instance" +msgstr "Více uživatelská instance" -#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" +#: ../../mod/admin.php:579 +msgid "Closed" +msgstr "Uzavřeno" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../mod/admin.php:580 +msgid "Requires approval" +msgstr "Vyžaduje schválení" -#: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 ../../mod/admin.php:964 -#: ../../mod/admin.php:976 ../../mod/admin.php:977 ../../mod/admin.php:992 -msgid "Email" -msgstr "E-mail" +#: ../../mod/admin.php:581 +msgid "Open" +msgstr "Otevřená" -#: ../../include/contact_selectors.php:80 ../../mod/settings.php:733 -#: ../../mod/dfrn_request.php:842 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../mod/admin.php:585 +msgid "No SSL policy, links will track page SSL state" +msgstr "Žádná SSL politika, odkazy budou následovat stránky SSL stav" -#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49 -#: ../../mod/newmember.php:51 -msgid "Facebook" -msgstr "Facebook" +#: ../../mod/admin.php:586 +msgid "Force all links to use SSL" +msgstr "Vyžadovat u všech odkazů použití SSL" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" +#: ../../mod/admin.php:587 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../mod/admin.php:597 ../../mod/admin.php:1128 ../../mod/admin.php:1330 +#: ../../mod/admin.php:1417 ../../mod/settings.php:614 +#: ../../mod/settings.php:724 ../../mod/settings.php:798 +#: ../../mod/settings.php:880 ../../mod/settings.php:1113 +msgid "Save Settings" +msgstr "Uložit Nastavení" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../mod/admin.php:598 ../../mod/register.php:255 +msgid "Registration" +msgstr "Registrace" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: ../../mod/admin.php:599 +msgid "File upload" +msgstr "Nahrání souborů" -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" +#: ../../mod/admin.php:600 +msgid "Policies" +msgstr "Politiky" -#: ../../include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" +#: ../../mod/admin.php:601 +msgid "Advanced" +msgstr "Pokročilé" -#: ../../include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" +#: ../../mod/admin.php:602 +msgid "Performance" +msgstr "Výkonnost" -#: ../../include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Diaspora konektor" +#: ../../mod/admin.php:603 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server." -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" +#: ../../mod/admin.php:606 +msgid "Site name" +msgstr "Název webu" -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" +#: ../../mod/admin.php:607 +msgid "Host name" +msgstr "" -#: ../../include/diaspora.php:620 ../../include/conversation.php:172 -#: ../../mod/dfrn_confirm.php:486 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s je nyní přítel s %2$s" +#: ../../mod/admin.php:608 +msgid "Banner/Logo" +msgstr "Banner/logo" -#: ../../include/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "Sdílení oznámení ze sítě Diaspora" +#: ../../mod/admin.php:609 +msgid "Additional Info" +msgstr "Dodatečné informace" -#: ../../include/diaspora.php:2312 -msgid "Attachments:" -msgstr "Přílohy:" +#: ../../mod/admin.php:609 +msgid "" +"For public servers: you can add additional information here that will be " +"listed at dir.friendica.com/siteinfo." +msgstr "Pro veřejné servery: zde můžete doplnit dodatečné informace, které budou uvedeny v seznamu na dir.friendica.com/siteinfo." -#: ../../include/conversation.php:140 ../../mod/like.php:168 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s nemá rád %2$s na %3$s" +#: ../../mod/admin.php:610 +msgid "System language" +msgstr "Systémový jazyk" -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s šťouchnul %2$s" +#: ../../mod/admin.php:611 +msgid "System theme" +msgstr "Grafická šablona systému " -#: ../../include/conversation.php:211 ../../include/text.php:1004 -msgid "poked" -msgstr "šťouchnut" +#: ../../mod/admin.php:611 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Defaultní systémové téma - může být změněno v uživatelských profilech - změnit theme settings" -#: ../../include/conversation.php:227 ../../mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s je právě %2$s" +#: ../../mod/admin.php:612 +msgid "Mobile system theme" +msgstr "Systémové téma zobrazení pro mobilní zařízení" -#: ../../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 označen uživatelem %2$s %3$s s %4$s" +#: ../../mod/admin.php:612 +msgid "Theme for mobile devices" +msgstr "Téma zobrazení pro mobilní zařízení" -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "příspěvek/položka" +#: ../../mod/admin.php:613 +msgid "SSL link policy" +msgstr "Politika SSL odkazů" -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "uživatel %1$s označil %2$s's %3$s jako oblíbeného" +#: ../../mod/admin.php:613 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Určuje, zda-li budou generované odkazy používat SSL" -#: ../../include/conversation.php:613 ../../object/Item.php:129 -#: ../../mod/photos.php:1651 ../../mod/content.php:437 -#: ../../mod/content.php:740 -msgid "Select" -msgstr "Vybrat" +#: ../../mod/admin.php:614 +msgid "Force SSL" +msgstr "Vynutit SSL" -#: ../../include/conversation.php:614 ../../object/Item.php:130 -#: ../../mod/group.php:171 ../../mod/settings.php:674 -#: ../../mod/contacts.php:709 ../../mod/admin.php:968 -#: ../../mod/photos.php:1652 ../../mod/content.php:438 -#: ../../mod/content.php:741 -msgid "Delete" -msgstr "Odstranit" +#: ../../mod/admin.php:614 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" -#: ../../include/conversation.php:654 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../mod/content.php:471 -#: ../../mod/content.php:852 ../../mod/content.php:853 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Zobrazit profil uživatele %s na %s" +#: ../../mod/admin.php:615 +msgid "Old style 'Share'" +msgstr "Sdílení \"postaru\"" -#: ../../include/conversation.php:666 ../../object/Item.php:316 -msgid "Categories:" -msgstr "Kategorie:" +#: ../../mod/admin.php:615 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Deaktivovat bbcode element \"share\" pro opakující se položky." -#: ../../include/conversation.php:667 ../../object/Item.php:317 -msgid "Filed under:" -msgstr "Vyplněn pod:" +#: ../../mod/admin.php:616 +msgid "Hide help entry from navigation menu" +msgstr "skrýt nápovědu z navigačního menu" -#: ../../include/conversation.php:674 ../../object/Item.php:340 -#: ../../mod/content.php:481 ../../mod/content.php:864 -#, php-format -msgid "%s from %s" -msgstr "%s od %s" +#: ../../mod/admin.php:616 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Skryje menu ze stránek Nápověda z navigačního menu. Nápovědu můžete stále zobrazit přímo zadáním /help." -#: ../../include/conversation.php:690 ../../mod/content.php:497 -msgid "View in context" -msgstr "Pohled v kontextu" +#: ../../mod/admin.php:617 +msgid "Single user instance" +msgstr "Jednouživatelská instance" -#: ../../include/conversation.php:692 ../../include/conversation.php:1109 -#: ../../object/Item.php:364 ../../mod/wallmessage.php:156 -#: ../../mod/editpost.php:124 ../../mod/photos.php:1543 -#: ../../mod/message.php:334 ../../mod/message.php:565 -#: ../../mod/content.php:499 ../../mod/content.php:883 -msgid "Please wait" -msgstr "Čekejte prosím" +#: ../../mod/admin.php:617 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele" -#: ../../include/conversation.php:772 -msgid "remove" -msgstr "odstranit" +#: ../../mod/admin.php:618 +msgid "Maximum image size" +msgstr "Maximální velikost obrázků" -#: ../../include/conversation.php:776 -msgid "Delete Selected Items" -msgstr "Smazat vybrané položky" +#: ../../mod/admin.php:618 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximální velikost v bajtech nahraných obrázků. Defaultní je 0, což znamená neomezeno." -#: ../../include/conversation.php:875 -msgid "Follow Thread" -msgstr "Následovat vlákno" +#: ../../mod/admin.php:619 +msgid "Maximum image length" +msgstr "Maximální velikost obrázků" -#: ../../include/conversation.php:944 -#, php-format -msgid "%s likes this." -msgstr "%s se to líbí." +#: ../../mod/admin.php:619 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Maximální délka v pixelech delší stránky nahrávaných obrázků. Defaultně je -1, což označuje bez limitu" -#: ../../include/conversation.php:944 -#, php-format -msgid "%s doesn't like this." -msgstr "%s se to nelíbí." +#: ../../mod/admin.php:620 +msgid "JPEG image quality" +msgstr "JPEG kvalita obrázku" -#: ../../include/conversation.php:949 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d lidem se to líbí" +#: ../../mod/admin.php:620 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Nahrávaný JPEG bude uložen se zadanou kvalitou v rozmezí [0-100]. Defaultní je 100, což znamená plnou kvalitu." -#: ../../include/conversation.php:952 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d lidem se to nelíbí" +#: ../../mod/admin.php:622 +msgid "Register policy" +msgstr "Politika registrace" -#: ../../include/conversation.php:966 -msgid "and" -msgstr "a" +#: ../../mod/admin.php:623 +msgid "Maximum Daily Registrations" +msgstr "Maximální počet denních registrací" -#: ../../include/conversation.php:972 -#, php-format -msgid ", and %d other people" -msgstr ", a %d dalších lidí" +#: ../../mod/admin.php:623 +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 "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den.\nPokud je registrace zakázána, toto nastavení nemá žádný efekt." -#: ../../include/conversation.php:974 -#, php-format -msgid "%s like this." -msgstr "%s se to líbí." +#: ../../mod/admin.php:624 +msgid "Register text" +msgstr "Registrace textu" -#: ../../include/conversation.php:974 -#, php-format -msgid "%s don't like this." -msgstr "%s se to nelíbí." +#: ../../mod/admin.php:624 +msgid "Will be displayed prominently on the registration page." +msgstr "Bude zřetelně zobrazeno na registrační stránce." -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Visible to everybody" -msgstr "Viditelné pro všechny" +#: ../../mod/admin.php:625 +msgid "Accounts abandoned after x days" +msgstr "Účet je opuštěn po x dnech" -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -#: ../../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 "Zadejte prosím URL odkaz:" +#: ../../mod/admin.php:625 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Neztrácejte systémové zdroje kontaktováním externích webů s opuštěnými účty. Zadejte 0 pro žádný časový limit." -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter a video link/URL:" -msgstr "Prosím zadejte URL adresu videa:" +#: ../../mod/admin.php:626 +msgid "Allowed friend domains" +msgstr "Povolené domény přátel" -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Please enter an audio link/URL:" -msgstr "Prosím zadejte URL adresu zvukového záznamu:" +#: ../../mod/admin.php:626 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Čárkou oddělený seznam domén, kterým je povoleno navazovat přátelství s tímto webem. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu." -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -msgid "Tag term:" -msgstr "Štítek:" +#: ../../mod/admin.php:627 +msgid "Allowed email domains" +msgstr "Povolené e-mailové domény" -#: ../../include/conversation.php:1006 ../../include/conversation.php:1024 -#: ../../mod/filer.php:30 -msgid "Save to Folder:" -msgstr "Uložit do složky:" +#: ../../mod/admin.php:627 +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 "Čárkou oddělený seznam domén emalových adres, kterým je povoleno provádět registraci na tomto webu. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu." -#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 -msgid "Where are you right now?" -msgstr "Kde právě jste?" +#: ../../mod/admin.php:628 +msgid "Block public" +msgstr "Blokovat veřejnost" -#: ../../include/conversation.php:1008 -msgid "Delete item(s)?" -msgstr "Smazat položku(y)?" +#: ../../mod/admin.php:628 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Označemím přepínače zablokujete veřejný přístup ke všem jinak veřejně přístupným soukromým stránkám uživatelům, kteří nebudou přihlášeni." -#: ../../include/conversation.php:1051 -msgid "Post to Email" -msgstr "Poslat příspěvek na e-mail" +#: ../../mod/admin.php:629 +msgid "Force publish" +msgstr "Publikovat" -#: ../../include/conversation.php:1056 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Kontektory deaktivovány, od \"%s\" je aktivován." +#: ../../mod/admin.php:629 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Označením přepínače budou včechny profily na tomto webu uvedeny v adresáři webu." -#: ../../include/conversation.php:1057 ../../mod/settings.php:1025 -msgid "Hide your profile details from unknown viewers?" -msgstr "Skrýt Vaše profilové detaily před neznámými uživateli?" +#: ../../mod/admin.php:630 +msgid "Global directory update URL" +msgstr "aktualizace URL adresy Globálního adresáře " -#: ../../include/conversation.php:1090 ../../mod/photos.php:1542 -msgid "Share" -msgstr "Sdílet" +#: ../../mod/admin.php:630 +msgid "" +"URL to update the global directory. If this is not set, the global directory" +" is completely unavailable to the application." +msgstr "URL adresa k aktualizaci globálního adresáře. Pokud není zadáno, funkce globálního adresáře není dostupná žádné aplikaci." -#: ../../include/conversation.php:1091 ../../mod/wallmessage.php:154 -#: ../../mod/editpost.php:110 ../../mod/message.php:332 -#: ../../mod/message.php:562 -msgid "Upload photo" -msgstr "Nahrát fotografii" +#: ../../mod/admin.php:631 +msgid "Allow threaded items" +msgstr "Povolit vícevláknové zpracování obsahu" -#: ../../include/conversation.php:1092 ../../mod/editpost.php:111 -msgid "upload photo" -msgstr "nahrát fotky" +#: ../../mod/admin.php:631 +msgid "Allow infinite level threading for items on this site." +msgstr "Povolit zpracování obsahu tohoto webu neomezeným počtem paralelních vláken." -#: ../../include/conversation.php:1093 ../../mod/editpost.php:112 -msgid "Attach file" -msgstr "Přiložit soubor" +#: ../../mod/admin.php:632 +msgid "Private posts by default for new users" +msgstr "Nastavit pro nové uživatele příspěvky jako soukromé" -#: ../../include/conversation.php:1094 ../../mod/editpost.php:113 -msgid "attach file" -msgstr "přidat soubor" +#: ../../mod/admin.php:632 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Nastavit defaultní práva pro příspěvky od všech nových členů na výchozí soukromou skupinu raději než jako veřejné." -#: ../../include/conversation.php:1095 ../../mod/wallmessage.php:155 -#: ../../mod/editpost.php:114 ../../mod/message.php:333 -#: ../../mod/message.php:563 -msgid "Insert web link" -msgstr "Vložit webový odkaz" +#: ../../mod/admin.php:633 +msgid "Don't include post content in email notifications" +msgstr "Nezahrnovat obsah příspěvků v emailových upozorněních" -#: ../../include/conversation.php:1096 ../../mod/editpost.php:115 -msgid "web link" -msgstr "webový odkaz" +#: ../../mod/admin.php:633 +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 " V mailových upozorněních, které jsou odesílány z tohoto webu jako soukromé zprávy, nejsou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. " -#: ../../include/conversation.php:1097 ../../mod/editpost.php:116 -msgid "Insert video link" -msgstr "Zadejte odkaz na video" +#: ../../mod/admin.php:634 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace." -#: ../../include/conversation.php:1098 ../../mod/editpost.php:117 -msgid "video link" -msgstr "odkaz na video" +#: ../../mod/admin.php:634 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy." -#: ../../include/conversation.php:1099 ../../mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Zadejte odkaz na zvukový záznam" +#: ../../mod/admin.php:635 +msgid "Don't embed private images in posts" +msgstr "Nepovolit přidávání soukromých správ v příspěvcích" -#: ../../include/conversation.php:1100 ../../mod/editpost.php:119 -msgid "audio link" -msgstr "odkaz na audio" +#: ../../mod/admin.php:635 +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 "Nereplikovat lokální soukromé fotografie v příspěvcích s přidáním kopie obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotografie se budou muset přihlásit a načíst každý obrázek, což může zabrat nějaký čas." -#: ../../include/conversation.php:1101 ../../mod/editpost.php:120 -msgid "Set your location" -msgstr "Nastavte vaši polohu" +#: ../../mod/admin.php:636 +msgid "Allow Users to set remote_self" +msgstr "Umožnit uživatelům nastavit " -#: ../../include/conversation.php:1102 ../../mod/editpost.php:121 -msgid "set location" -msgstr "nastavit místo" +#: ../../mod/admin.php:636 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako \"remote_self\" v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu." -#: ../../include/conversation.php:1103 ../../mod/editpost.php:122 -msgid "Clear browser location" -msgstr "Odstranit adresu v prohlížeči" +#: ../../mod/admin.php:637 +msgid "Block multiple registrations" +msgstr "Blokovat více registrací" -#: ../../include/conversation.php:1104 ../../mod/editpost.php:123 -msgid "clear location" -msgstr "vymazat místo" +#: ../../mod/admin.php:637 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky." -#: ../../include/conversation.php:1106 ../../mod/editpost.php:137 -msgid "Set title" -msgstr "Nastavit titulek" +#: ../../mod/admin.php:638 +msgid "OpenID support" +msgstr "podpora OpenID" -#: ../../include/conversation.php:1108 ../../mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Kategorie (čárkou oddělený seznam)" +#: ../../mod/admin.php:638 +msgid "OpenID support for registration and logins." +msgstr "Podpora OpenID pro registraci a přihlašování." -#: ../../include/conversation.php:1110 ../../mod/editpost.php:125 -msgid "Permission settings" -msgstr "Nastavení oprávnění" +#: ../../mod/admin.php:639 +msgid "Fullname check" +msgstr "kontrola úplného jména" -#: ../../include/conversation.php:1111 -msgid "permissions" -msgstr "oprávnění" +#: ../../mod/admin.php:639 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Přimět uživatele k registraci s mezerou mezi jménu a příjmením v poli Celé jméno, jako antispamové opatření." -#: ../../include/conversation.php:1119 ../../mod/editpost.php:133 -msgid "CC: email addresses" -msgstr "skrytá kopie: e-mailové adresy" +#: ../../mod/admin.php:640 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 Regulární výrazy" -#: ../../include/conversation.php:1120 ../../mod/editpost.php:134 -msgid "Public post" -msgstr "Veřejný příspěvek" +#: ../../mod/admin.php:640 +msgid "Use PHP UTF8 regular expressions" +msgstr "Použít PHP UTF8 regulární výrazy." -#: ../../include/conversation.php:1122 ../../mod/editpost.php:140 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Příklad: bob@example.com, mary@example.com" +#: ../../mod/admin.php:641 +msgid "Show Community Page" +msgstr "Zobrazit stránku komunity" -#: ../../include/conversation.php:1126 ../../object/Item.php:687 -#: ../../mod/editpost.php:145 ../../mod/photos.php:1564 -#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 -#: ../../mod/content.php:719 -msgid "Preview" -msgstr "Náhled" +#: ../../mod/admin.php:641 +msgid "" +"Display a Community page showing all recent public postings on this site." +msgstr "Zobrazit Komunitní stránku zobrazující všechny veřejné příspěvky napsané na této stránce." -#: ../../include/conversation.php:1135 -msgid "Post to Groups" -msgstr "Zveřejnit na Groups" +#: ../../mod/admin.php:642 +msgid "Enable OStatus support" +msgstr "Zapnout podporu OStatus" -#: ../../include/conversation.php:1136 -msgid "Post to Contacts" -msgstr "Zveřejnit na Groups" +#: ../../mod/admin.php:642 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění." -#: ../../include/conversation.php:1137 -msgid "Private post" -msgstr "Soukromý příspěvek" +#: ../../mod/admin.php:643 +msgid "OStatus conversation completion interval" +msgstr "Interval dokončení konverzace OStatus" -#: ../../include/text.php:296 -msgid "newer" -msgstr "novější" +#: ../../mod/admin.php:643 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "Jak často by mělo probíhat ověřování pro nové přísvěvky v konverzacích OStatus? Toto může být velmi výkonově náročný úkol." -#: ../../include/text.php:298 -msgid "older" -msgstr "starší" +#: ../../mod/admin.php:644 +msgid "Enable Diaspora support" +msgstr "Povolit podporu Diaspora" -#: ../../include/text.php:303 -msgid "prev" -msgstr "předchozí" +#: ../../mod/admin.php:644 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora." -#: ../../include/text.php:305 -msgid "first" -msgstr "první" +#: ../../mod/admin.php:645 +msgid "Only allow Friendica contacts" +msgstr "Povolit pouze Friendica kontakty" -#: ../../include/text.php:337 -msgid "last" -msgstr "poslední" +#: ../../mod/admin.php:645 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Všechny kontakty musí používat Friendica protokol. Všchny jiné zabudované komunikační protokoly budou zablokované." -#: ../../include/text.php:340 -msgid "next" -msgstr "další" +#: ../../mod/admin.php:646 +msgid "Verify SSL" +msgstr "Ověřit SSL" -#: ../../include/text.php:854 -msgid "No contacts" -msgstr "Žádné kontakty" +#: ../../mod/admin.php:646 +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 "Pokud si přejete, můžete vynutit striktní ověřování certifikátů. To znamená že se nebudete moci připojit k žádnému serveru s vlastním SSL certifikátem." -#: ../../include/text.php:863 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d kontakt" -msgstr[1] "%d kontaktů" -msgstr[2] "%d kontaktů" +#: ../../mod/admin.php:647 +msgid "Proxy user" +msgstr "Proxy uživatel" -#: ../../include/text.php:875 ../../mod/viewcontacts.php:76 -msgid "View Contacts" -msgstr "Zobrazit kontakty" +#: ../../mod/admin.php:648 +msgid "Proxy URL" +msgstr "Proxy URL adresa" -#: ../../include/text.php:955 ../../mod/editpost.php:109 -#: ../../mod/notes.php:63 ../../mod/filer.php:31 -msgid "Save" -msgstr "Uložit" +#: ../../mod/admin.php:649 +msgid "Network timeout" +msgstr "čas síťového spojení vypršelo (timeout)" -#: ../../include/text.php:1004 -msgid "poke" -msgstr "šťouchnout" +#: ../../mod/admin.php:649 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno)." -#: ../../include/text.php:1005 -msgid "ping" -msgstr "cinknout" +#: ../../mod/admin.php:650 +msgid "Delivery interval" +msgstr "Interval doručování" -#: ../../include/text.php:1005 -msgid "pinged" -msgstr "cinkut" +#: ../../mod/admin.php:650 +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 "Prodleva mezi doručovacími procesy běžícími na pozadí snižuje zátěž systému. Doporučené nastavení: 4-5 pro sdílené instalace, 2-3 pro virtuální soukromé servery, 0-1 pro velké dedikované servery." -#: ../../include/text.php:1006 -msgid "prod" -msgstr "pobídnout" +#: ../../mod/admin.php:651 +msgid "Poll interval" +msgstr "Dotazovací interval" -#: ../../include/text.php:1006 -msgid "prodded" -msgstr "pobídnut" +#: ../../mod/admin.php:651 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Tímto nastavením ovlivníte prodlení mezi aktualizačními procesy běžícími na pozadí, čímž můžete snížit systémovou zátěž. Pokud 0, použijte doručovací interval." -#: ../../include/text.php:1007 -msgid "slap" -msgstr "dát facku" +#: ../../mod/admin.php:652 +msgid "Maximum Load Average" +msgstr "Maximální průměrné zatížení" -#: ../../include/text.php:1007 -msgid "slapped" -msgstr "být uhozen" +#: ../../mod/admin.php:652 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximální zatížení systému před pozastavením procesů zajišťujících doručování aktualizací - defaultně 50" -#: ../../include/text.php:1008 -msgid "finger" -msgstr "osahávat" +#: ../../mod/admin.php:654 +msgid "Use MySQL full text engine" +msgstr "Použít fulltextový vyhledávací stroj MySQL" -#: ../../include/text.php:1008 -msgid "fingered" -msgstr "osaháván" +#: ../../mod/admin.php:654 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Aktivuje fulltextový vyhledávací stroj. Zrychluje vyhledávání ale pouze pro vyhledávání čtyř a více znaků" -#: ../../include/text.php:1009 -msgid "rebuff" -msgstr "odmítnout" +#: ../../mod/admin.php:655 +msgid "Suppress Language" +msgstr "Potlačit Jazyk" -#: ../../include/text.php:1009 -msgid "rebuffed" -msgstr "odmítnut" +#: ../../mod/admin.php:655 +msgid "Suppress language information in meta information about a posting." +msgstr "Potlačit jazykové informace v meta informacích o příspěvcích" -#: ../../include/text.php:1023 -msgid "happy" -msgstr "šťasný" +#: ../../mod/admin.php:656 +msgid "Path to item cache" +msgstr "Cesta k položkám vyrovnávací paměti" -#: ../../include/text.php:1024 -msgid "sad" -msgstr "smutný" +#: ../../mod/admin.php:657 +msgid "Cache duration in seconds" +msgstr "Doba platnosti vyrovnávací paměti v sekundách" -#: ../../include/text.php:1025 -msgid "mellow" -msgstr "jemný" +#: ../../mod/admin.php:657 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "Jak dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den). Pro vypnutí funkce vyrovnávací paměti nastavte hodnotu na -1." -#: ../../include/text.php:1026 -msgid "tired" -msgstr "unavený" +#: ../../mod/admin.php:658 +msgid "Maximum numbers of comments per post" +msgstr "Maximální počet komentářů k příspěvku" -#: ../../include/text.php:1027 -msgid "perky" -msgstr "emergický" +#: ../../mod/admin.php:658 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "Kolik komentářů by mělo být zobrazeno k každému příspěvku? Defaultní hodnota je 100." -#: ../../include/text.php:1028 -msgid "angry" -msgstr "nazlobený" +#: ../../mod/admin.php:659 +msgid "Path for lock file" +msgstr "Cesta k souboru zámku" -#: ../../include/text.php:1029 -msgid "stupified" -msgstr "otupen" +#: ../../mod/admin.php:660 +msgid "Temp path" +msgstr "Cesta k dočasným souborům" -#: ../../include/text.php:1030 -msgid "puzzled" -msgstr "popletený" +#: ../../mod/admin.php:661 +msgid "Base path to installation" +msgstr "Základní cesta k instalaci" -#: ../../include/text.php:1031 -msgid "interested" -msgstr "zajímavý" +#: ../../mod/admin.php:662 +msgid "Disable picture proxy" +msgstr "Vypnutí obrázkové proxy" -#: ../../include/text.php:1032 -msgid "bitter" -msgstr "hořký" +#: ../../mod/admin.php:662 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "Obrázková proxi zvyšuje výkonnost a soukromí. Neměla by být použita na systémech s pomalým připojením k síti." -#: ../../include/text.php:1033 -msgid "cheerful" -msgstr "radnostný" +#: ../../mod/admin.php:664 +msgid "New base url" +msgstr "Nová výchozí url adresa" -#: ../../include/text.php:1034 -msgid "alive" -msgstr "naživu" +#: ../../mod/admin.php:666 +msgid "Disable noscrape" +msgstr "" -#: ../../include/text.php:1035 -msgid "annoyed" -msgstr "otráven" +#: ../../mod/admin.php:666 +msgid "" +"The noscrape feature speeds up directory submissions by using JSON data " +"instead of HTML scraping. Disabling it will cause higher load on your server" +" and the directory server." +msgstr "" -#: ../../include/text.php:1036 -msgid "anxious" -msgstr "znepokojený" +#: ../../mod/admin.php:683 +msgid "Update has been marked successful" +msgstr "Aktualizace byla označena jako úspěšná." -#: ../../include/text.php:1037 -msgid "cranky" -msgstr "mrzutý" +#: ../../mod/admin.php:691 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Aktualizace struktury databáze %s byla úspěšně aplikována." -#: ../../include/text.php:1038 -msgid "disturbed" -msgstr "vyrušen" +#: ../../mod/admin.php:694 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "Provádění aktualizace databáze %s skončilo chybou: %s" -#: ../../include/text.php:1039 -msgid "frustrated" -msgstr "frustrovaný" +#: ../../mod/admin.php:706 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Vykonávání %s selhalo s chybou: %s" -#: ../../include/text.php:1040 -msgid "motivated" -msgstr "motivovaný" +#: ../../mod/admin.php:709 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Aktualizace %s byla úspěšně aplikována." -#: ../../include/text.php:1041 -msgid "relaxed" -msgstr "uvolněný" +#: ../../mod/admin.php:713 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Aktualizace %s nevrátila žádný status. Není zřejmé, jestli byla úspěšná." -#: ../../include/text.php:1042 -msgid "surprised" -msgstr "překvapený" +#: ../../mod/admin.php:715 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "Nebyla nalezena žádná další aktualizační funkce %s která by měla být volána." -#: ../../include/text.php:1210 -msgid "Monday" -msgstr "Pondělí" +#: ../../mod/admin.php:734 +msgid "No failed updates." +msgstr "Žádné neúspěšné aktualizace." -#: ../../include/text.php:1210 -msgid "Tuesday" -msgstr "Úterý" +#: ../../mod/admin.php:735 +msgid "Check database structure" +msgstr "Ověření struktury databáze" -#: ../../include/text.php:1210 -msgid "Wednesday" -msgstr "Středa" +#: ../../mod/admin.php:740 +msgid "Failed Updates" +msgstr "Neúspěšné aktualizace" -#: ../../include/text.php:1210 -msgid "Thursday" -msgstr "Čtvrtek" +#: ../../mod/admin.php:741 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status." -#: ../../include/text.php:1210 -msgid "Friday" -msgstr "Pátek" +#: ../../mod/admin.php:742 +msgid "Mark success (if update was manually applied)" +msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)" -#: ../../include/text.php:1210 -msgid "Saturday" -msgstr "Sobota" +#: ../../mod/admin.php:743 +msgid "Attempt to execute this update step automatically" +msgstr "Pokusit se provést tuto aktualizaci automaticky." -#: ../../include/text.php:1210 -msgid "Sunday" -msgstr "Neděle" +#: ../../mod/admin.php:775 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "\n\t\t\tDrahý %1$s,\n\t\t\t\tadministrátor webu %2$s pro Vás vytvořil uživatelský účet." -#: ../../include/text.php:1214 -msgid "January" -msgstr "Ledna" +#: ../../mod/admin.php:778 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tThank you and welcome to %4$s." +msgstr "" -#: ../../include/text.php:1214 -msgid "February" -msgstr "Února" +#: ../../mod/admin.php:810 ../../include/user.php:413 +#, php-format +msgid "Registration details for %s" +msgstr "Registrační údaje pro %s" -#: ../../include/text.php:1214 -msgid "March" -msgstr "Března" +#: ../../mod/admin.php:822 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s uživatel blokován/odblokován" +msgstr[1] "%s uživatelů blokováno/odblokováno" +msgstr[2] "%s uživatelů blokováno/odblokováno" -#: ../../include/text.php:1214 -msgid "April" -msgstr "Dubna" +#: ../../mod/admin.php:829 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s uživatel smazán" +msgstr[1] "%s uživatelů smazáno" +msgstr[2] "%s uživatelů smazáno" -#: ../../include/text.php:1214 -msgid "May" -msgstr "Května" +#: ../../mod/admin.php:868 +#, php-format +msgid "User '%s' deleted" +msgstr "Uživatel '%s' smazán" -#: ../../include/text.php:1214 -msgid "June" -msgstr "Června" +#: ../../mod/admin.php:876 +#, php-format +msgid "User '%s' unblocked" +msgstr "Uživatel '%s' odblokován" -#: ../../include/text.php:1214 -msgid "July" -msgstr "Července" +#: ../../mod/admin.php:876 +#, php-format +msgid "User '%s' blocked" +msgstr "Uživatel '%s' blokován" -#: ../../include/text.php:1214 -msgid "August" -msgstr "Srpna" +#: ../../mod/admin.php:971 +msgid "Add User" +msgstr "Přidat Uživatele" -#: ../../include/text.php:1214 -msgid "September" -msgstr "Září" +#: ../../mod/admin.php:972 +msgid "select all" +msgstr "Vybrat vše" -#: ../../include/text.php:1214 -msgid "October" -msgstr "Října" +#: ../../mod/admin.php:973 +msgid "User registrations waiting for confirm" +msgstr "Registrace uživatele čeká na potvrzení" -#: ../../include/text.php:1214 -msgid "November" -msgstr "Listopadu" +#: ../../mod/admin.php:974 +msgid "User waiting for permanent deletion" +msgstr "Uživatel čeká na trvalé smazání" -#: ../../include/text.php:1214 -msgid "December" -msgstr "Prosinec" +#: ../../mod/admin.php:975 +msgid "Request date" +msgstr "Datum žádosti" -#: ../../include/text.php:1403 ../../mod/videos.php:301 -msgid "View Video" -msgstr "Zobrazit video" +#: ../../mod/admin.php:975 ../../mod/admin.php:987 ../../mod/admin.php:988 +#: ../../mod/admin.php:1003 ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 +msgid "Email" +msgstr "E-mail" -#: ../../include/text.php:1435 -msgid "bytes" -msgstr "bytů" +#: ../../mod/admin.php:976 +msgid "No registrations." +msgstr "Žádné registrace." -#: ../../include/text.php:1459 ../../include/text.php:1471 -msgid "Click to open/close" -msgstr "Klikněte pro otevření/zavření" +#: ../../mod/admin.php:978 +msgid "Deny" +msgstr "Odmítnout" -#: ../../include/text.php:1645 ../../include/text.php:1655 -#: ../../mod/events.php:335 -msgid "link to source" -msgstr "odkaz na zdroj" +#: ../../mod/admin.php:982 +msgid "Site admin" +msgstr "Site administrátor" -#: ../../include/text.php:1700 ../../include/user.php:247 -msgid "default" -msgstr "standardní" +#: ../../mod/admin.php:983 +msgid "Account expired" +msgstr "Účtu vypršela platnost" -#: ../../include/text.php:1712 -msgid "Select an alternate language" -msgstr "Vyběr alternativního jazyka" +#: ../../mod/admin.php:986 +msgid "New User" +msgstr "Nový uživatel" -#: ../../include/text.php:1968 -msgid "activity" -msgstr "aktivita" +#: ../../mod/admin.php:987 ../../mod/admin.php:988 +msgid "Register date" +msgstr "Datum registrace" -#: ../../include/text.php:1970 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../mod/content.php:605 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "komentář" +#: ../../mod/admin.php:987 ../../mod/admin.php:988 +msgid "Last login" +msgstr "Datum posledního přihlášení" -#: ../../include/text.php:1971 -msgid "post" -msgstr "příspěvek" +#: ../../mod/admin.php:987 ../../mod/admin.php:988 +msgid "Last item" +msgstr "Poslední položka" -#: ../../include/text.php:2139 -msgid "Item filed" -msgstr "Položka vyplněna" +#: ../../mod/admin.php:987 +msgid "Deleted since" +msgstr "Smazán od" -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Odhlášen." +#: ../../mod/admin.php:988 ../../mod/settings.php:36 +msgid "Account" +msgstr "Účet" -#: ../../include/auth.php:112 ../../include/auth.php:175 -#: ../../mod/openid.php:93 -msgid "Login failed." -msgstr "Přihlášení se nezdařilo." +#: ../../mod/admin.php:990 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Vybraní uživatelé budou smazáni!\\n\\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\n Opravdu pokračovat?" -#: ../../include/auth.php:128 ../../include/user.php:67 +#: ../../mod/admin.php:991 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. " +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Uživatel {0} bude smazán!\\n\\n Vše, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\\n\\n Opravdu pokračovat?" -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "The error message was:" -msgstr "Chybová zpráva byla:" +#: ../../mod/admin.php:1001 +msgid "Name of the new user." +msgstr "Jméno nového uživatele" -#: ../../include/bbcode.php:449 ../../include/bbcode.php:1050 -#: ../../include/bbcode.php:1051 -msgid "Image/photo" -msgstr "Obrázek/fotografie" +#: ../../mod/admin.php:1002 +msgid "Nickname" +msgstr "Přezdívka" + +#: ../../mod/admin.php:1002 +msgid "Nickname of the new user." +msgstr "Přezdívka nového uživatele." + +#: ../../mod/admin.php:1003 +msgid "Email address of the new user." +msgstr "Emailová adresa nového uživatele." -#: ../../include/bbcode.php:545 +#: ../../mod/admin.php:1036 #, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" +msgid "Plugin %s disabled." +msgstr "Plugin %s zakázán." -#: ../../include/bbcode.php:579 +#: ../../mod/admin.php:1040 #, php-format -msgid "" -"%s wrote the following post" -msgstr "%s napsal následující příspěvek" +msgid "Plugin %s enabled." +msgstr "Plugin %s povolen." -#: ../../include/bbcode.php:1014 ../../include/bbcode.php:1034 -msgid "$1 wrote:" -msgstr "$1 napsal:" +#: ../../mod/admin.php:1050 ../../mod/admin.php:1266 +msgid "Disable" +msgstr "Zakázat" -#: ../../include/bbcode.php:1059 ../../include/bbcode.php:1060 -msgid "Encrypted content" -msgstr "Šifrovaný obsah" +#: ../../mod/admin.php:1052 ../../mod/admin.php:1268 +msgid "Enable" +msgstr "Povolit" -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Vítejte " +#: ../../mod/admin.php:1075 ../../mod/admin.php:1296 +msgid "Toggle" +msgstr "Přepnout" -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Prosím nahrejte profilovou fotografii" +#: ../../mod/admin.php:1083 ../../mod/admin.php:1306 +msgid "Author: " +msgstr "Autor: " -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Vítejte zpět " +#: ../../mod/admin.php:1084 ../../mod/admin.php:1307 +msgid "Maintainer: " +msgstr "Správce: " -#: ../../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 "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním." +#: ../../mod/admin.php:1226 +msgid "No themes found." +msgstr "Nenalezeny žádná témata." -#: ../../include/oembed.php:205 -msgid "Embedded content" -msgstr "vložený obsah" +#: ../../mod/admin.php:1288 +msgid "Screenshot" +msgstr "Snímek obrazovky" -#: ../../include/oembed.php:214 -msgid "Embedding disabled" -msgstr "Vkládání zakázáno" +#: ../../mod/admin.php:1334 +msgid "[Experimental]" +msgstr "[Experimentální]" -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Muž" +#: ../../mod/admin.php:1335 +msgid "[Unsupported]" +msgstr "[Nepodporováno]" -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Žena" +#: ../../mod/admin.php:1362 +msgid "Log settings updated." +msgstr "Nastavení protokolu aktualizováno." -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "V současné době muž" +#: ../../mod/admin.php:1418 +msgid "Clear" +msgstr "Vyčistit" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "V současné době žena" +#: ../../mod/admin.php:1424 +msgid "Enable Debugging" +msgstr "Povolit ladění" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Většinou muž" +#: ../../mod/admin.php:1425 +msgid "Log file" +msgstr "Soubor s logem" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Většinou žena" +#: ../../mod/admin.php:1425 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Musí být editovatelné web serverem. Relativní cesta k vašemu kořenovému adresáři Friendica" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" +#: ../../mod/admin.php:1426 +msgid "Log level" +msgstr "Úroveň auditu" -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersex" +#: ../../mod/admin.php:1476 +msgid "Close" +msgstr "Zavřít" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transexuál" +#: ../../mod/admin.php:1482 +msgid "FTP Host" +msgstr "Hostitel FTP" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodit" +#: ../../mod/admin.php:1483 +msgid "FTP Path" +msgstr "Cesta FTP" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutrál" +#: ../../mod/admin.php:1484 +msgid "FTP User" +msgstr "FTP uživatel" -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Nespecifikováno" +#: ../../mod/admin.php:1485 +msgid "FTP Password" +msgstr "FTP heslo" -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Jiné" +#: ../../mod/network.php:142 +msgid "Search Results For:" +msgstr "Výsledky hledání pro:" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Nerozhodnuto" +#: ../../mod/network.php:185 ../../mod/search.php:21 +msgid "Remove term" +msgstr "Odstranit termín" -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Muži" +#: ../../mod/network.php:194 ../../mod/search.php:30 +#: ../../include/features.php:42 +msgid "Saved Searches" +msgstr "Uložená hledání" -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Ženy" +#: ../../mod/network.php:195 ../../include/group.php:275 +msgid "add" +msgstr "přidat" -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gay" +#: ../../mod/network.php:356 +msgid "Commented Order" +msgstr "Dle komentářů" -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbička" +#: ../../mod/network.php:359 +msgid "Sort by Comment Date" +msgstr "Řadit podle data komentáře" -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Bez preferencí" +#: ../../mod/network.php:362 +msgid "Posted Order" +msgstr "Dle data" -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisexuál" +#: ../../mod/network.php:365 +msgid "Sort by Post Date" +msgstr "Řadit podle data příspěvku" -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosexuál" +#: ../../mod/network.php:374 +msgid "Posts that mention or involve you" +msgstr "Příspěvky, které Vás zmiňují nebo zahrnují" -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Abstinent" +#: ../../mod/network.php:380 +msgid "New" +msgstr "Nové" -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "panic/panna" +#: ../../mod/network.php:383 +msgid "Activity Stream - by date" +msgstr "Proud aktivit - dle data" -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Deviant" +#: ../../mod/network.php:389 +msgid "Shared Links" +msgstr "Sdílené odkazy" -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetišista" +#: ../../mod/network.php:392 +msgid "Interesting Links" +msgstr "Zajímavé odkazy" -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Hodně" +#: ../../mod/network.php:398 +msgid "Starred" +msgstr "S hvězdičkou" -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Nesexuální" +#: ../../mod/network.php:401 +msgid "Favourite Posts" +msgstr "Oblíbené přízpěvky" -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Svobodný" +#: ../../mod/network.php:463 +#, 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] "Upozornění: Tato skupina obsahuje %s člena z nezabezpečené sítě." +msgstr[1] "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě." +msgstr[2] "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě." -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Osamnělý" +#: ../../mod/network.php:466 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení." -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Dostupný" +#: ../../mod/network.php:520 ../../mod/content.php:119 +msgid "No such group" +msgstr "Žádná taková skupina" -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Nedostupný" +#: ../../mod/network.php:537 ../../mod/content.php:130 +msgid "Group is empty" +msgstr "Skupina je prázdná" -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Zamilovaný" +#: ../../mod/network.php:544 ../../mod/content.php:134 +msgid "Group: " +msgstr "Skupina: " -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Zabouchnutý" +#: ../../mod/network.php:554 +msgid "Contact: " +msgstr "Kontakt: " -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Seznamující se" +#: ../../mod/network.php:556 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení." -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Nevěrný" +#: ../../mod/network.php:561 +msgid "Invalid contact." +msgstr "Neplatný kontakt." -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Závislý na sexu" +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Přátelé uživatele %s" -#: ../../include/profile_selectors.php:42 ../../include/user.php:289 -#: ../../include/user.php:293 -msgid "Friends" -msgstr "Přátelé" +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Žádní přátelé k zobrazení" -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Přátelé / výhody" +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "Název události a datum začátku jsou vyžadovány." -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Ležérní" +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "l, F j" -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Zadaný" +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "Editovat událost" -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Ženatý/vdaná" +#: ../../mod/events.php:335 ../../include/text.php:1644 +#: ../../include/text.php:1654 +msgid "link to source" +msgstr "odkaz na zdroj" -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Pomyslně ženatý/vdaná" +#: ../../mod/events.php:370 ../../boot.php:2138 ../../include/nav.php:80 +#: ../../view/theme/diabook/theme.php:127 +msgid "Events" +msgstr "Události" -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Partneři" +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "Vytvořit novou událost" -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Žijící ve společné domácnosti" +#: ../../mod/events.php:372 +msgid "Previous" +msgstr "Předchozí" -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "Zvykové právo" +#: ../../mod/events.php:373 ../../mod/install.php:207 +msgid "Next" +msgstr "Dále" -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Šťastný" +#: ../../mod/events.php:446 +msgid "hour:minute" +msgstr "hodina:minuta" -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Nehledající" +#: ../../mod/events.php:456 +msgid "Event details" +msgstr "Detaily události" -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Swinger" +#: ../../mod/events.php:457 +#, php-format +msgid "Format is %s %s. Starting date and Title are required." +msgstr "Formát je %s %s. Datum začátku a Název jsou vyžadovány." -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Zrazen" +#: ../../mod/events.php:459 +msgid "Event Starts:" +msgstr "Událost začíná:" -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Odloučený" +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" +msgstr "Vyžadováno" -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Nestálý" +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" +msgstr "Datum/čas konce není zadán nebo není relevantní" -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Rozvedený(á)" +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "Akce končí:" -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Pomyslně rozvedený" +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení" -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Ovdovělý(á)" +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "Popis:" -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Nejistý" +#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1643 +#: ../../include/bb2diaspora.php:170 ../../include/event.php:40 +msgid "Location:" +msgstr "Místo:" -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Je to složité" +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "Název:" -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Nezajímá" +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "Sdílet tuto událost" -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Zeptej se mě" +#: ../../mod/content.php:437 ../../mod/content.php:740 +#: ../../mod/photos.php:1653 ../../object/Item.php:129 +#: ../../include/conversation.php:613 +msgid "Select" +msgstr "Vybrat" -#: ../../include/user.php:40 -msgid "An invitation is required." -msgstr "Pozvánka je vyžadována." +#: ../../mod/content.php:471 ../../mod/content.php:852 +#: ../../mod/content.php:853 ../../object/Item.php:326 +#: ../../object/Item.php:327 ../../include/conversation.php:654 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Zobrazit profil uživatele %s na %s" -#: ../../include/user.php:45 -msgid "Invitation could not be verified." -msgstr "Pozvánka nemohla být ověřena." +#: ../../mod/content.php:481 ../../mod/content.php:864 +#: ../../object/Item.php:340 ../../include/conversation.php:674 +#, php-format +msgid "%s from %s" +msgstr "%s od %s" -#: ../../include/user.php:53 -msgid "Invalid OpenID url" -msgstr "Neplatný odkaz OpenID" +#: ../../mod/content.php:497 ../../include/conversation.php:690 +msgid "View in context" +msgstr "Pohled v kontextu" -#: ../../include/user.php:74 -msgid "Please enter the required information." -msgstr "Zadejte prosím požadované informace." +#: ../../mod/content.php:603 ../../object/Item.php:387 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d komentář" +msgstr[1] "%d komentářů" +msgstr[2] "%d komentářů" -#: ../../include/user.php:88 -msgid "Please use a shorter name." -msgstr "Použijte prosím kratší jméno." +#: ../../mod/content.php:605 ../../object/Item.php:389 +#: ../../object/Item.php:402 ../../include/text.php:1969 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "komentář" -#: ../../include/user.php:90 -msgid "Name too short." -msgstr "Jméno je příliš krátké." +#: ../../mod/content.php:606 ../../boot.php:746 ../../object/Item.php:390 +#: ../../include/contact_widgets.php:205 +msgid "show more" +msgstr "zobrazit více" -#: ../../include/user.php:105 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)." +#: ../../mod/content.php:620 ../../mod/photos.php:1359 +#: ../../object/Item.php:116 +msgid "Private Message" +msgstr "Soukromá zpráva" -#: ../../include/user.php:110 -msgid "Your email domain is not among those allowed on this site." -msgstr "Váš e-mailová doména není na tomto serveru mezi povolenými." +#: ../../mod/content.php:684 ../../mod/photos.php:1542 +#: ../../object/Item.php:231 +msgid "I like this (toggle)" +msgstr "Líbí se mi to (přepínač)" -#: ../../include/user.php:113 -msgid "Not a valid email address." -msgstr "Neplatná e-mailová adresa." +#: ../../mod/content.php:684 ../../object/Item.php:231 +msgid "like" +msgstr "má rád" -#: ../../include/user.php:126 -msgid "Cannot use that email." -msgstr "Tento e-mail nelze použít." +#: ../../mod/content.php:685 ../../mod/photos.php:1543 +#: ../../object/Item.php:232 +msgid "I don't like this (toggle)" +msgstr "Nelíbí se mi to (přepínač)" -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem." +#: ../../mod/content.php:685 ../../object/Item.php:232 +msgid "dislike" +msgstr "nemá rád" -#: ../../include/user.php:138 ../../include/user.php:236 -msgid "Nickname is already registered. Please choose another." -msgstr "Přezdívka je již registrována. Prosím vyberte jinou." +#: ../../mod/content.php:687 ../../object/Item.php:234 +msgid "Share this" +msgstr "Sdílet toto" -#: ../../include/user.php:148 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou." +#: ../../mod/content.php:687 ../../object/Item.php:234 +msgid "share" +msgstr "sdílí" -#: ../../include/user.php:164 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo." +#: ../../mod/content.php:707 ../../mod/photos.php:1562 +#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 +#: ../../object/Item.php:675 +msgid "This is you" +msgstr "Nastavte Vaši polohu" -#: ../../include/user.php:222 -msgid "An error occurred during registration. Please try again." -msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu." +#: ../../mod/content.php:709 ../../mod/photos.php:1564 +#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:745 +#: ../../object/Item.php:361 ../../object/Item.php:677 +msgid "Comment" +msgstr "Okomentovat" -#: ../../include/user.php:257 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu." +#: ../../mod/content.php:711 ../../object/Item.php:679 +msgid "Bold" +msgstr "Tučné" -#: ../../include/user.php:377 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "\n\t\tDrahý %1$s,\n\t\t\tDěkujeme Vám za registraci na %2$s. Váš účet byl vytvořen.\n\t" +#: ../../mod/content.php:712 ../../object/Item.php:680 +msgid "Italic" +msgstr "Kurzíva" -#: ../../include/user.php:381 -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." -msgstr "" +#: ../../mod/content.php:713 ../../object/Item.php:681 +msgid "Underline" +msgstr "Podrtžené" -#: ../../include/user.php:413 ../../mod/admin.php:799 -#, php-format -msgid "Registration details for %s" -msgstr "Registrační údaje pro %s" +#: ../../mod/content.php:714 ../../object/Item.php:682 +msgid "Quote" +msgstr "Citovat" -#: ../../include/acl_selectors.php:326 -msgid "Visible to everybody" -msgstr "Viditelné pro všechny" +#: ../../mod/content.php:715 ../../object/Item.php:683 +msgid "Code" +msgstr "Kód" -#: ../../object/Item.php:94 -msgid "This entry was edited" -msgstr "Tento záznam byl editován" +#: ../../mod/content.php:716 ../../object/Item.php:684 +msgid "Image" +msgstr "Obrázek" -#: ../../object/Item.php:116 ../../mod/photos.php:1357 -#: ../../mod/content.php:620 -msgid "Private Message" -msgstr "Soukromá zpráva" +#: ../../mod/content.php:717 ../../object/Item.php:685 +msgid "Link" +msgstr "Odkaz" + +#: ../../mod/content.php:718 ../../object/Item.php:686 +msgid "Video" +msgstr "Video" + +#: ../../mod/content.php:719 ../../mod/editpost.php:145 +#: ../../mod/photos.php:1566 ../../mod/photos.php:1610 +#: ../../mod/photos.php:1698 ../../object/Item.php:687 +#: ../../include/conversation.php:1126 +msgid "Preview" +msgstr "Náhled" -#: ../../object/Item.php:120 ../../mod/settings.php:673 -#: ../../mod/content.php:728 +#: ../../mod/content.php:728 ../../mod/settings.php:676 +#: ../../object/Item.php:120 msgid "Edit" msgstr "Upravit" -#: ../../object/Item.php:133 ../../mod/content.php:763 -msgid "save to folder" -msgstr "uložit do složky" - -#: ../../object/Item.php:195 ../../mod/content.php:753 +#: ../../mod/content.php:753 ../../object/Item.php:195 msgid "add star" msgstr "přidat hvězdu" -#: ../../object/Item.php:196 ../../mod/content.php:754 +#: ../../mod/content.php:754 ../../object/Item.php:196 msgid "remove star" msgstr "odebrat hvězdu" -#: ../../object/Item.php:197 ../../mod/content.php:755 +#: ../../mod/content.php:755 ../../object/Item.php:197 msgid "toggle star status" msgstr "přepnout hvězdu" -#: ../../object/Item.php:200 ../../mod/content.php:758 +#: ../../mod/content.php:758 ../../object/Item.php:200 msgid "starred" msgstr "označeno hvězdou" -#: ../../object/Item.php:208 -msgid "ignore thread" -msgstr "ignorovat vlákno" - -#: ../../object/Item.php:209 -msgid "unignore thread" -msgstr "přestat ignorovat vlákno" - -#: ../../object/Item.php:210 -msgid "toggle ignore status" -msgstr "přepnout stav Ignorování" - -#: ../../object/Item.php:213 -msgid "ignored" -msgstr "ignorován" - -#: ../../object/Item.php:220 ../../mod/content.php:759 +#: ../../mod/content.php:759 ../../object/Item.php:220 msgid "add tag" msgstr "přidat štítek" -#: ../../object/Item.php:231 ../../mod/photos.php:1540 -#: ../../mod/content.php:684 -msgid "I like this (toggle)" -msgstr "Líbí se mi to (přepínač)" +#: ../../mod/content.php:763 ../../object/Item.php:133 +msgid "save to folder" +msgstr "uložit do složky" -#: ../../object/Item.php:231 ../../mod/content.php:684 -msgid "like" -msgstr "má rád" +#: ../../mod/content.php:854 ../../object/Item.php:328 +msgid "to" +msgstr "pro" -#: ../../object/Item.php:232 ../../mod/photos.php:1541 -#: ../../mod/content.php:685 -msgid "I don't like this (toggle)" -msgstr "Nelíbí se mi to (přepínač)" - -#: ../../object/Item.php:232 ../../mod/content.php:685 -msgid "dislike" -msgstr "nemá rád" - -#: ../../object/Item.php:234 ../../mod/content.php:687 -msgid "Share this" -msgstr "Sdílet toto" - -#: ../../object/Item.php:234 ../../mod/content.php:687 -msgid "share" -msgstr "sdílí" - -#: ../../object/Item.php:328 ../../mod/content.php:854 -msgid "to" -msgstr "pro" - -#: ../../object/Item.php:329 -msgid "via" -msgstr "přes" - -#: ../../object/Item.php:330 ../../mod/content.php:855 +#: ../../mod/content.php:855 ../../object/Item.php:330 msgid "Wall-to-Wall" msgstr "Zeď-na-Zeď" -#: ../../object/Item.php:331 ../../mod/content.php:856 +#: ../../mod/content.php:856 ../../object/Item.php:331 msgid "via Wall-To-Wall:" msgstr "přes Zeď-na-Zeď " -#: ../../object/Item.php:387 ../../mod/content.php:603 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d komentář" -msgstr[1] "%d komentářů" -msgstr[2] "%d komentářů" +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Odstranit můj účet" -#: ../../object/Item.php:675 ../../mod/photos.php:1560 -#: ../../mod/photos.php:1604 ../../mod/photos.php:1692 -#: ../../mod/content.php:707 -msgid "This is you" -msgstr "Nastavte Vaši polohu" +#: ../../mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit." -#: ../../object/Item.php:679 ../../mod/content.php:711 -msgid "Bold" -msgstr "Tučné" +#: ../../mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Prosím, zadejte své heslo pro ověření:" -#: ../../object/Item.php:680 ../../mod/content.php:712 -msgid "Italic" -msgstr "Kurzíva" +#: ../../mod/install.php:117 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica Komunikační server - Nastavení" -#: ../../object/Item.php:681 ../../mod/content.php:713 -msgid "Underline" -msgstr "Podrtžené" +#: ../../mod/install.php:123 +msgid "Could not connect to database." +msgstr "Nelze se připojit k databázi." -#: ../../object/Item.php:682 ../../mod/content.php:714 -msgid "Quote" -msgstr "Citovat" +#: ../../mod/install.php:127 +msgid "Could not create table." +msgstr "Nelze vytvořit tabulku." -#: ../../object/Item.php:683 ../../mod/content.php:715 -msgid "Code" -msgstr "Kód" +#: ../../mod/install.php:133 +msgid "Your Friendica site database has been installed." +msgstr "Vaše databáze Friendica byla nainstalována." -#: ../../object/Item.php:684 ../../mod/content.php:716 -msgid "Image" -msgstr "Obrázek" +#: ../../mod/install.php:138 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete." -#: ../../object/Item.php:685 ../../mod/content.php:717 -msgid "Link" -msgstr "Odkaz" +#: ../../mod/install.php:139 ../../mod/install.php:206 +#: ../../mod/install.php:525 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Přečtěte si prosím informace v souboru \"INSTALL.txt\"." -#: ../../object/Item.php:686 ../../mod/content.php:718 -msgid "Video" -msgstr "Video" +#: ../../mod/install.php:203 +msgid "System check" +msgstr "Testování systému" -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Položka není k dispozici." +#: ../../mod/install.php:208 +msgid "Check again" +msgstr "Otestovat znovu" -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Položka nebyla nalezena." +#: ../../mod/install.php:227 +msgid "Database connection" +msgstr "Databázové spojení" -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena." +#: ../../mod/install.php:228 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi." -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 -msgid "No recipient selected." -msgstr "Nevybrán příjemce." +#: ../../mod/install.php:229 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, " -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Nebylo možné zjistit Vaši domácí lokaci." +#: ../../mod/install.php:230 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním." -#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 -msgid "Message could not be sent." -msgstr "Zprávu se nepodařilo odeslat." +#: ../../mod/install.php:234 +msgid "Database Server Name" +msgstr "Jméno databázového serveru" -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "Sběr zpráv selhal." +#: ../../mod/install.php:235 +msgid "Database Login Name" +msgstr "Přihlašovací jméno k databázi" -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -msgid "Message sent." -msgstr "Zpráva odeslána." +#: ../../mod/install.php:236 +msgid "Database Login Password" +msgstr "Heslo k databázovému účtu " -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Žádný příjemce." +#: ../../mod/install.php:237 +msgid "Database Name" +msgstr "Jméno databáze" -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 -msgid "Send Private Message" -msgstr "Odeslat soukromou zprávu" +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "Site administrator email address" +msgstr "Emailová adresa administrátora webu" -#: ../../mod/wallmessage.php:143 -#, php-format +#: ../../mod/install.php:238 ../../mod/install.php:277 msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů." - -#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 -#: ../../mod/message.php:553 -msgid "To:" -msgstr "Adresát:" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní." -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 -msgid "Subject:" -msgstr "Předmět:" +#: ../../mod/install.php:242 ../../mod/install.php:280 +msgid "Please select a default timezone for your website" +msgstr "Prosím, vyberte výchozí časové pásmo pro váš server" -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -#: ../../mod/message.php:329 ../../mod/message.php:558 -msgid "Your message:" -msgstr "Vaše zpráva:" +#: ../../mod/install.php:267 +msgid "Site settings" +msgstr "Nastavení webu" -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Skupina vytvořena." +#: ../../mod/install.php:321 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru." -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Nelze vytvořit skupinu." +#: ../../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 "Pokud na serveru nemáte nainstalovánu verzi PHP spustitelnou z příkazového řádku, nebudete moci spouštět na pozadí synchronizaci zpráv prostřednictvím cronu. Přečtěte si 'Activating scheduled tasks'\n\n podrobnosti\n návrhy\n historie\n\n\t\nThe following url is either missing from the translation or has been translated: 'http://friendica.com/node/27'>'Activating scheduled tasks'" -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Skupina nenalezena." +#: ../../mod/install.php:326 +msgid "PHP executable path" +msgstr "Cesta k \"PHP executable\"" -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Název skupiny byl změněn." +#: ../../mod/install.php:326 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci." -#: ../../mod/group.php:87 -msgid "Save Group" -msgstr "Uložit Skupinu" +#: ../../mod/install.php:331 +msgid "Command line PHP" +msgstr "Příkazový řádek PHP" -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Vytvořit skupinu kontaktů / přátel." +#: ../../mod/install.php:340 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "PHP executable není php cli binary (může být verze cgi-fgci)" -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Název skupiny: " +#: ../../mod/install.php:341 +msgid "Found PHP version: " +msgstr "Nalezena PHP verze:" -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Skupina odstraněna. " +#: ../../mod/install.php:343 +msgid "PHP cli binary" +msgstr "PHP cli binary" -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Nelze odstranit skupinu." +#: ../../mod/install.php:354 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu." -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Editor skupin" +#: ../../mod/install.php:355 +msgid "This is required for message delivery to work." +msgstr "Toto je nutné pro fungování doručování zpráv." -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Členové" +#: ../../mod/install.php:357 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../mod/group.php:194 ../../mod/contacts.php:562 -msgid "All Contacts" -msgstr "Všechny kontakty" +#: ../../mod/install.php:378 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče" -#: ../../mod/group.php:224 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." -msgstr "Klikněte na kontakt pro přidání nebo odebrání" +#: ../../mod/install.php:379 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Žádní potenciální delegáti stránky nenalezeni." +#: ../../mod/install.php:381 +msgid "Generate encryption keys" +msgstr "Generovat kriptovací klíče" -#: ../../mod/delegate.php:126 -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 "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte.." - -#: ../../mod/delegate.php:127 -msgid "Existing Page Managers" -msgstr "Stávající správci stránky" +#: ../../mod/install.php:388 +msgid "libCurl PHP module" +msgstr "libCurl PHP modul" -#: ../../mod/delegate.php:129 -msgid "Existing Page Delegates" -msgstr "Stávající delegáti stránky " +#: ../../mod/install.php:389 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP modul" -#: ../../mod/delegate.php:131 -msgid "Potential Delegates" -msgstr "Potenciální delegáti" +#: ../../mod/install.php:390 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP modul" -#: ../../mod/delegate.php:133 ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Odstranit" +#: ../../mod/install.php:391 +msgid "mysqli PHP module" +msgstr "mysqli PHP modul" -#: ../../mod/delegate.php:134 -msgid "Add" -msgstr "Přidat" +#: ../../mod/install.php:392 +msgid "mb_string PHP module" +msgstr "mb_string PHP modul" -#: ../../mod/delegate.php:135 -msgid "No entries." -msgstr "Žádné záznamy." +#: ../../mod/install.php:397 ../../mod/install.php:399 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite modul" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Neplatný identifikátor požadavku." +#: ../../mod/install.php:397 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován." -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "Odstranit" +#: ../../mod/install.php:405 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován." -#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:210 ../../mod/contacts.php:443 -#: ../../mod/contacts.php:497 ../../mod/contacts.php:707 -msgid "Ignore" -msgstr "Ignorovat" +#: ../../mod/install.php:409 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Chyba: požadovaný GD graphics PHP modul není nainstalován." -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "Systém" +#: ../../mod/install.php:413 +msgid "Error: openssl PHP module required but not installed." +msgstr "Chyba: požadovaný openssl PHP modul není nainstalován." -#: ../../mod/notifications.php:88 ../../mod/network.php:365 -msgid "Personal" -msgstr "Osobní" +#: ../../mod/install.php:417 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Chyba: požadovaný mysqli PHP modul není nainstalován." -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Zobrazit ignorované žádosti" +#: ../../mod/install.php:421 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Chyba: PHP modul mb_string je vyžadován, ale není nainstalován." -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Skrýt ignorované žádosti" +#: ../../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 "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno." -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "Typ oznámení: " +#: ../../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 "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete." -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Návrh přátelství" +#: ../../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 "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři." -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "navrhl %s" +#: ../../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 "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce." -#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 -#: ../../mod/contacts.php:503 -msgid "Hide this contact from others" -msgstr "Skrýt tento kontakt před ostatními" +#: ../../mod/install.php:444 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php je editovatelné" -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "Zveřejnit aktivitu nového přítele." +#: ../../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 používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování." -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "je-li použitelné" +#: ../../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 "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica" -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 -#: ../../mod/admin.php:966 -msgid "Approve" -msgstr "Schválit" +#: ../../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 "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře" -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Vaši údajní známí: " +#: ../../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 "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje." -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "ano" +#: ../../mod/install.php:460 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 je nastaven pro zápis" -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "ne" +#: ../../mod/install.php:472 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru." -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Schválit jako: " +#: ../../mod/install.php:474 +msgid "Url rewrite is working" +msgstr "Url rewrite je funkční." -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "Přítel" +#: ../../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 "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru." -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "Sdílené" +#: ../../mod/install.php:523 +msgid "

What next

" +msgstr "

Co dál

" -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "Fanoušek / obdivovatel" +#: ../../mod/install.php:524 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno." -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "Přítel / žádost o připojení" +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena." -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "Nový následovník" +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Nebylo možné zjistit Vaši domácí lokaci." -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "Žádné představení." +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Žádný příjemce." -#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 -#: ../../mod/notifications.php:478 +#: ../../mod/wallmessage.php:143 #, php-format -msgid "%s liked %s's post" -msgstr "Uživateli %s se líbí příspěvek uživatele %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 "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů." -#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 -#: ../../mod/notifications.php:488 -#, php-format -msgid "%s disliked %s's post" -msgstr "Uživateli %s se nelíbí příspěvek uživatele %s" +#: ../../mod/help.php:79 +msgid "Help:" +msgstr "Nápověda:" -#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 -#: ../../mod/notifications.php:503 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s se nyní přátelí s %s" +#: ../../mod/help.php:84 ../../include/nav.php:114 +msgid "Help" +msgstr "Nápověda" -#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 +#: ../../mod/help.php:90 ../../index.php:256 +msgid "Not Found" +msgstr "Nenalezen" + +#: ../../mod/help.php:93 ../../index.php:259 +msgid "Page not found." +msgstr "Stránka nenalezena" + +#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #, php-format -msgid "%s created a new post" -msgstr "%s vytvořil nový příspěvek" +msgid "%1$s welcomes %2$s" +msgstr "%1$s vítá %2$s" -#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 -#: ../../mod/notifications.php:513 +#: ../../mod/home.php:35 #, php-format -msgid "%s commented on %s's post" -msgstr "%s okomentoval příspěvek uživatele %s'" +msgid "Welcome to %s" +msgstr "Vítá Vás %s" -#: ../../mod/notifications.php:306 -msgid "No more network notifications." -msgstr "Žádné další síťové upozornění." +#: ../../mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP" -#: ../../mod/notifications.php:310 -msgid "Network Notifications" -msgstr "Upozornění Sítě" +#: ../../mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "Nebo - nenahrával jste prázdný soubor?" -#: ../../mod/notifications.php:336 ../../mod/notify.php:75 -msgid "No more system notifications." -msgstr "Žádné další systémová upozornění." +#: ../../mod/wall_attach.php:81 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Velikost souboru přesáhla limit %d" -#: ../../mod/notifications.php:340 ../../mod/notify.php:79 -msgid "System Notifications" -msgstr "Systémová upozornění" +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +msgid "File upload failed." +msgstr "Nahrání souboru se nezdařilo." -#: ../../mod/notifications.php:435 -msgid "No more personal notifications." -msgstr "Žádné další osobní upozornění." +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Shoda profilu" -#: ../../mod/notifications.php:439 -msgid "Personal Notifications" -msgstr "Osobní upozornění" +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu." -#: ../../mod/notifications.php:520 -msgid "No more home notifications." -msgstr "Žádné další domácí upozornění." +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "zajímá se o:" -#: ../../mod/notifications.php:524 -msgid "Home Notifications" -msgstr "Domácí upozornění" +#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1563 +#: ../../include/contact_widgets.php:10 +msgid "Connect" +msgstr "Spojit" -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Žádný profil" +#: ../../mod/share.php:44 +msgid "link" +msgstr "odkaz" + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Není k dispozici." + +#: ../../mod/community.php:32 ../../include/nav.php:129 +#: ../../view/theme/diabook/theme.php:129 +msgid "Community" +msgstr "Komunita" + +#: ../../mod/community.php:62 ../../mod/community.php:71 +#: ../../mod/search.php:170 ../../mod/search.php:196 +msgid "No results." +msgstr "Žádné výsledky." #: ../../mod/settings.php:29 ../../mod/photos.php:80 msgid "everybody" msgstr "Žádost o připojení selhala nebo byla zrušena." -#: ../../mod/settings.php:36 ../../mod/admin.php:977 -msgid "Account" -msgstr "Účet" - #: ../../mod/settings.php:41 msgid "Additional features" msgstr "Další funkčnosti" @@ -3388,14 +3573,13 @@ msgstr "Další funkčnosti" msgid "Display" msgstr "Zobrazení" -#: ../../mod/settings.php:52 ../../mod/settings.php:777 +#: ../../mod/settings.php:52 ../../mod/settings.php:780 msgid "Social Networks" msgstr "Sociální sítě" -#: ../../mod/settings.php:57 ../../mod/admin.php:106 ../../mod/admin.php:1063 -#: ../../mod/admin.php:1116 -msgid "Plugins" -msgstr "Pluginy" +#: ../../mod/settings.php:62 ../../include/nav.php:168 +msgid "Delegations" +msgstr "Delegace" #: ../../mod/settings.php:67 msgid "Connected apps" @@ -3413,11 +3597,6 @@ msgstr "Odstranit účet" msgid "Missing some important data!" msgstr "Chybí některé důležité údaje!" -#: ../../mod/settings.php:132 ../../mod/settings.php:637 -#: ../../mod/contacts.php:705 -msgid "Update" -msgstr "Aktualizace" - #: ../../mod/settings.php:238 msgid "Failed to connect with email account using the settings provided." msgstr "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení." @@ -3454,919 +3633,927 @@ msgstr "Heslo bylo změněno." msgid "Password update failed. Please try again." msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu." -#: ../../mod/settings.php:426 +#: ../../mod/settings.php:428 msgid " Please use a shorter name." msgstr "Prosím použijte kratší jméno." -#: ../../mod/settings.php:428 +#: ../../mod/settings.php:430 msgid " Name too short." msgstr "Jméno je příliš krátké." -#: ../../mod/settings.php:437 +#: ../../mod/settings.php:439 msgid "Wrong Password" msgstr "Špatné heslo" -#: ../../mod/settings.php:442 +#: ../../mod/settings.php:444 msgid " Not valid email." msgstr "Neplatný e-mail." -#: ../../mod/settings.php:448 +#: ../../mod/settings.php:450 msgid " Cannot change to that email." msgstr "Nelze provést změnu na tento e-mail." -#: ../../mod/settings.php:503 +#: ../../mod/settings.php:506 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina." -#: ../../mod/settings.php:507 +#: ../../mod/settings.php:510 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu." -#: ../../mod/settings.php:537 +#: ../../mod/settings.php:540 msgid "Settings updated." msgstr "Nastavení aktualizováno." -#: ../../mod/settings.php:610 ../../mod/settings.php:636 -#: ../../mod/settings.php:672 +#: ../../mod/settings.php:613 ../../mod/settings.php:639 +#: ../../mod/settings.php:675 msgid "Add application" msgstr "Přidat aplikaci" -#: ../../mod/settings.php:611 ../../mod/settings.php:721 -#: ../../mod/settings.php:795 ../../mod/settings.php:877 -#: ../../mod/settings.php:1110 ../../mod/admin.php:588 -#: ../../mod/admin.php:1117 ../../mod/admin.php:1319 ../../mod/admin.php:1406 -msgid "Save Settings" -msgstr "Uložit Nastavení" - -#: ../../mod/settings.php:613 ../../mod/settings.php:639 -#: ../../mod/admin.php:964 ../../mod/admin.php:976 ../../mod/admin.php:977 -#: ../../mod/admin.php:990 ../../mod/crepair.php:158 -msgid "Name" -msgstr "Jméno" - -#: ../../mod/settings.php:614 ../../mod/settings.php:640 +#: ../../mod/settings.php:617 ../../mod/settings.php:643 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../mod/settings.php:615 ../../mod/settings.php:641 +#: ../../mod/settings.php:618 ../../mod/settings.php:644 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../mod/settings.php:616 ../../mod/settings.php:642 +#: ../../mod/settings.php:619 ../../mod/settings.php:645 msgid "Redirect" msgstr "Přesměrování" -#: ../../mod/settings.php:617 ../../mod/settings.php:643 +#: ../../mod/settings.php:620 ../../mod/settings.php:646 msgid "Icon url" msgstr "URL ikony" -#: ../../mod/settings.php:628 +#: ../../mod/settings.php:631 msgid "You can't edit this application." msgstr "Nemůžete editovat tuto aplikaci." -#: ../../mod/settings.php:671 +#: ../../mod/settings.php:674 msgid "Connected Apps" msgstr "Připojené aplikace" -#: ../../mod/settings.php:675 +#: ../../mod/settings.php:678 msgid "Client key starts with" msgstr "Klienský klíč začíná" -#: ../../mod/settings.php:676 +#: ../../mod/settings.php:679 msgid "No name" msgstr "Bez názvu" -#: ../../mod/settings.php:677 +#: ../../mod/settings.php:680 msgid "Remove authorization" msgstr "Odstranit oprávnění" -#: ../../mod/settings.php:689 +#: ../../mod/settings.php:692 msgid "No Plugin settings configured" msgstr "Žádný doplněk není nastaven" -#: ../../mod/settings.php:697 +#: ../../mod/settings.php:700 msgid "Plugin Settings" msgstr "Nastavení doplňku" -#: ../../mod/settings.php:711 +#: ../../mod/settings.php:714 msgid "Off" msgstr "Vypnuto" -#: ../../mod/settings.php:711 +#: ../../mod/settings.php:714 msgid "On" msgstr "Zapnuto" -#: ../../mod/settings.php:719 +#: ../../mod/settings.php:722 msgid "Additional Features" msgstr "Další Funkčnosti" -#: ../../mod/settings.php:733 ../../mod/settings.php:734 +#: ../../mod/settings.php:736 ../../mod/settings.php:737 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Vestavěná podpora pro připojení s %s je %s" -#: ../../mod/settings.php:733 ../../mod/settings.php:734 +#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../mod/settings.php:736 ../../mod/settings.php:737 msgid "enabled" msgstr "povoleno" -#: ../../mod/settings.php:733 ../../mod/settings.php:734 +#: ../../mod/settings.php:736 ../../mod/settings.php:737 msgid "disabled" msgstr "zakázáno" -#: ../../mod/settings.php:734 +#: ../../mod/settings.php:737 msgid "StatusNet" msgstr "StatusNet" -#: ../../mod/settings.php:770 +#: ../../mod/settings.php:773 msgid "Email access is disabled on this site." msgstr "Přístup k elektronické poště je na tomto serveru zakázán." -#: ../../mod/settings.php:782 +#: ../../mod/settings.php:785 msgid "Email/Mailbox Setup" msgstr "Nastavení e-mailu" -#: ../../mod/settings.php:783 +#: ../../mod/settings.php:786 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce." -#: ../../mod/settings.php:784 +#: ../../mod/settings.php:787 msgid "Last successful email check:" msgstr "Poslední úspěšná kontrola e-mailu:" -#: ../../mod/settings.php:786 +#: ../../mod/settings.php:789 msgid "IMAP server name:" msgstr "jméno IMAP serveru:" -#: ../../mod/settings.php:787 +#: ../../mod/settings.php:790 msgid "IMAP port:" msgstr "IMAP port:" -#: ../../mod/settings.php:788 +#: ../../mod/settings.php:791 msgid "Security:" msgstr "Zabezpečení:" -#: ../../mod/settings.php:788 ../../mod/settings.php:793 +#: ../../mod/settings.php:791 ../../mod/settings.php:796 msgid "None" msgstr "Žádný" -#: ../../mod/settings.php:789 +#: ../../mod/settings.php:792 msgid "Email login name:" msgstr "přihlašovací jméno k e-mailu:" -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:793 msgid "Email password:" msgstr "heslo k Vašemu e-mailu:" -#: ../../mod/settings.php:791 +#: ../../mod/settings.php:794 msgid "Reply-to address:" msgstr "Odpovědět na adresu:" -#: ../../mod/settings.php:792 +#: ../../mod/settings.php:795 msgid "Send public posts to all email contacts:" msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:" -#: ../../mod/settings.php:793 +#: ../../mod/settings.php:796 msgid "Action after import:" msgstr "Akce po importu:" -#: ../../mod/settings.php:793 +#: ../../mod/settings.php:796 msgid "Mark as seen" msgstr "Označit jako přečtené" -#: ../../mod/settings.php:793 +#: ../../mod/settings.php:796 msgid "Move to folder" msgstr "Přesunout do složky" -#: ../../mod/settings.php:794 +#: ../../mod/settings.php:797 msgid "Move to folder:" msgstr "Přesunout do složky:" -#: ../../mod/settings.php:825 ../../mod/admin.php:523 -msgid "No special theme for mobile devices" -msgstr "žádné speciální téma pro mobilní zařízení" - -#: ../../mod/settings.php:875 +#: ../../mod/settings.php:878 msgid "Display Settings" msgstr "Nastavení Zobrazení" -#: ../../mod/settings.php:881 ../../mod/settings.php:896 +#: ../../mod/settings.php:884 ../../mod/settings.php:899 msgid "Display Theme:" msgstr "Vybrat grafickou šablonu:" -#: ../../mod/settings.php:882 +#: ../../mod/settings.php:885 msgid "Mobile Theme:" msgstr "Téma pro mobilní zařízení:" -#: ../../mod/settings.php:883 +#: ../../mod/settings.php:886 msgid "Update browser every xx seconds" msgstr "Aktualizovat prohlížeč každých xx sekund" -#: ../../mod/settings.php:883 +#: ../../mod/settings.php:886 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 sekund, žádné maximum." -#: ../../mod/settings.php:884 +#: ../../mod/settings.php:887 msgid "Number of items to display per page:" msgstr "Počet položek zobrazených na stránce:" -#: ../../mod/settings.php:884 ../../mod/settings.php:885 +#: ../../mod/settings.php:887 ../../mod/settings.php:888 msgid "Maximum of 100 items" msgstr "Maximum 100 položek" -#: ../../mod/settings.php:885 +#: ../../mod/settings.php:888 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:" -#: ../../mod/settings.php:886 +#: ../../mod/settings.php:889 msgid "Don't show emoticons" msgstr "Nezobrazovat emotikony" -#: ../../mod/settings.php:887 +#: ../../mod/settings.php:890 msgid "Don't show notices" msgstr "Nezobrazovat oznámění" -#: ../../mod/settings.php:888 +#: ../../mod/settings.php:891 msgid "Infinite scroll" msgstr "Nekonečné posouvání" -#: ../../mod/settings.php:889 +#: ../../mod/settings.php:892 msgid "Automatic updates only at the top of the network page" msgstr "Automatické aktualizace pouze na hlavní stránce Síť." -#: ../../mod/settings.php:966 +#: ../../mod/settings.php:969 msgid "User Types" msgstr "Uživatelské typy" -#: ../../mod/settings.php:967 +#: ../../mod/settings.php:970 msgid "Community Types" msgstr "Komunitní typy" -#: ../../mod/settings.php:968 +#: ../../mod/settings.php:971 msgid "Normal Account Page" msgstr "Normální stránka účtu" -#: ../../mod/settings.php:969 +#: ../../mod/settings.php:972 msgid "This account is a normal personal profile" msgstr "Tento účet je běžný osobní profil" -#: ../../mod/settings.php:972 +#: ../../mod/settings.php:975 msgid "Soapbox Page" msgstr "Stránka \"Soapbox\"" -#: ../../mod/settings.php:973 +#: ../../mod/settings.php:976 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Automaticky schválit všechna spojení / přátelství jako fanoušky s právem pouze ke čtení" -#: ../../mod/settings.php:976 +#: ../../mod/settings.php:979 msgid "Community Forum/Celebrity Account" msgstr "Komunitní fórum/ účet celebrity" -#: ../../mod/settings.php:977 +#: ../../mod/settings.php:980 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Automaticky schvalovat všechny žádosti o spojení / přátelství, jako fanoušky s právem ke čtení." -#: ../../mod/settings.php:980 +#: ../../mod/settings.php:983 msgid "Automatic Friend Page" msgstr "Automatická stránka přítele" -#: ../../mod/settings.php:981 +#: ../../mod/settings.php:984 msgid "Automatically approve all connection/friend requests as friends" msgstr "Automaticky schvalovat všechny žádosti o spojení / přátelství jako přátele" -#: ../../mod/settings.php:984 +#: ../../mod/settings.php:987 msgid "Private Forum [Experimental]" msgstr "Soukromé fórum [Experimentální]" -#: ../../mod/settings.php:985 +#: ../../mod/settings.php:988 msgid "Private forum - approved members only" msgstr "Soukromé fórum - pouze pro schválené členy" -#: ../../mod/settings.php:997 +#: ../../mod/settings.php:1000 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:997 +#: ../../mod/settings.php:1000 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu." -#: ../../mod/settings.php:1007 +#: ../../mod/settings.php:1010 msgid "Publish your default profile in your local site directory?" msgstr "Publikovat Váš výchozí profil v místním adresáři webu?" -#: ../../mod/settings.php:1007 ../../mod/settings.php:1013 -#: ../../mod/settings.php:1021 ../../mod/settings.php:1025 -#: ../../mod/settings.php:1030 ../../mod/settings.php:1036 -#: ../../mod/settings.php:1042 ../../mod/settings.php:1048 -#: ../../mod/settings.php:1078 ../../mod/settings.php:1079 -#: ../../mod/settings.php:1080 ../../mod/settings.php:1081 -#: ../../mod/settings.php:1082 ../../mod/register.php:231 -#: ../../mod/dfrn_request.php:834 ../../mod/api.php:106 -#: ../../mod/profiles.php:620 ../../mod/profiles.php:624 +#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 +#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 +#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 +#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 +#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 +#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 +#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 +#: ../../mod/register.php:234 ../../mod/profiles.php:627 +#: ../../mod/profiles.php:631 ../../mod/api.php:106 msgid "No" msgstr "Ne" -#: ../../mod/settings.php:1013 +#: ../../mod/settings.php:1016 msgid "Publish your default profile in the global social directory?" msgstr "Publikovat Váš výchozí profil v globální sociálním adresáři?" -#: ../../mod/settings.php:1021 +#: ../../mod/settings.php:1024 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem výchozím profilu?" -#: ../../mod/settings.php:1030 +#: ../../mod/settings.php:1028 ../../include/conversation.php:1057 +msgid "Hide your profile details from unknown viewers?" +msgstr "Skrýt Vaše profilové detaily před neznámými uživateli?" + +#: ../../mod/settings.php:1028 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: ../../mod/settings.php:1033 msgid "Allow friends to post to your profile page?" msgstr "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?" -#: ../../mod/settings.php:1036 +#: ../../mod/settings.php:1039 msgid "Allow friends to tag your posts?" msgstr "Povolit přátelům označovat Vaše příspěvky?" -#: ../../mod/settings.php:1042 +#: ../../mod/settings.php:1045 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?" -#: ../../mod/settings.php:1048 +#: ../../mod/settings.php:1051 msgid "Permit unknown people to send you private mail?" msgstr "Povolit neznámým lidem Vám zasílat soukromé zprávy?" -#: ../../mod/settings.php:1056 +#: ../../mod/settings.php:1059 msgid "Profile is not published." msgstr "Profil není zveřejněn." -#: ../../mod/settings.php:1059 ../../mod/profile_photo.php:248 -msgid "or" -msgstr "nebo" - -#: ../../mod/settings.php:1064 +#: ../../mod/settings.php:1067 msgid "Your Identity Address is" msgstr "Vaše adresa identity je" -#: ../../mod/settings.php:1075 +#: ../../mod/settings.php:1078 msgid "Automatically expire posts after this many days:" msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:" -#: ../../mod/settings.php:1075 +#: ../../mod/settings.php:1078 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány" -#: ../../mod/settings.php:1076 +#: ../../mod/settings.php:1079 msgid "Advanced expiration settings" msgstr "Pokročilé nastavení expirací" -#: ../../mod/settings.php:1077 +#: ../../mod/settings.php:1080 msgid "Advanced Expiration" msgstr "Nastavení expirací" -#: ../../mod/settings.php:1078 +#: ../../mod/settings.php:1081 msgid "Expire posts:" msgstr "Expirovat příspěvky:" -#: ../../mod/settings.php:1079 +#: ../../mod/settings.php:1082 msgid "Expire personal notes:" msgstr "Expirovat osobní poznámky:" -#: ../../mod/settings.php:1080 +#: ../../mod/settings.php:1083 msgid "Expire starred posts:" msgstr "Expirovat příspěvky s hvězdou:" -#: ../../mod/settings.php:1081 +#: ../../mod/settings.php:1084 msgid "Expire photos:" msgstr "Expirovat fotografie:" -#: ../../mod/settings.php:1082 +#: ../../mod/settings.php:1085 msgid "Only expire posts by others:" msgstr "Přízpěvky expirovat pouze ostatními:" -#: ../../mod/settings.php:1108 +#: ../../mod/settings.php:1111 msgid "Account Settings" msgstr "Nastavení účtu" -#: ../../mod/settings.php:1116 +#: ../../mod/settings.php:1119 msgid "Password Settings" msgstr "Nastavení hesla" -#: ../../mod/settings.php:1117 +#: ../../mod/settings.php:1120 msgid "New Password:" msgstr "Nové heslo:" -#: ../../mod/settings.php:1118 +#: ../../mod/settings.php:1121 msgid "Confirm:" msgstr "Potvrďte:" -#: ../../mod/settings.php:1118 +#: ../../mod/settings.php:1121 msgid "Leave password fields blank unless changing" msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte" -#: ../../mod/settings.php:1119 +#: ../../mod/settings.php:1122 msgid "Current Password:" msgstr "Stávající heslo:" -#: ../../mod/settings.php:1119 ../../mod/settings.php:1120 +#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 msgid "Your current password to confirm the changes" msgstr "Vaše stávající heslo k potvrzení změn" -#: ../../mod/settings.php:1120 +#: ../../mod/settings.php:1123 msgid "Password:" msgstr "Heslo: " -#: ../../mod/settings.php:1124 +#: ../../mod/settings.php:1127 msgid "Basic Settings" msgstr "Základní nastavení" -#: ../../mod/settings.php:1126 +#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "Celé jméno:" + +#: ../../mod/settings.php:1129 msgid "Email Address:" msgstr "E-mailová adresa:" -#: ../../mod/settings.php:1127 +#: ../../mod/settings.php:1130 msgid "Your Timezone:" msgstr "Vaše časové pásmo:" -#: ../../mod/settings.php:1128 +#: ../../mod/settings.php:1131 msgid "Default Post Location:" msgstr "Výchozí umístění příspěvků:" -#: ../../mod/settings.php:1129 +#: ../../mod/settings.php:1132 msgid "Use Browser Location:" msgstr "Používat umístění dle prohlížeče:" -#: ../../mod/settings.php:1132 +#: ../../mod/settings.php:1135 msgid "Security and Privacy Settings" msgstr "Nastavení zabezpečení a soukromí" -#: ../../mod/settings.php:1134 +#: ../../mod/settings.php:1137 msgid "Maximum Friend Requests/Day:" msgstr "Maximální počet žádostí o přátelství za den:" -#: ../../mod/settings.php:1134 ../../mod/settings.php:1164 +#: ../../mod/settings.php:1137 ../../mod/settings.php:1167 msgid "(to prevent spam abuse)" msgstr "(Aby se zabránilo spamu)" -#: ../../mod/settings.php:1135 +#: ../../mod/settings.php:1138 msgid "Default Post Permissions" msgstr "Výchozí oprávnění pro příspěvek" -#: ../../mod/settings.php:1136 +#: ../../mod/settings.php:1139 msgid "(click to open/close)" msgstr "(Klikněte pro otevření/zavření)" -#: ../../mod/settings.php:1145 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1517 +#: ../../mod/settings.php:1148 ../../mod/photos.php:1146 +#: ../../mod/photos.php:1519 msgid "Show to Groups" msgstr "Zobrazit ve Skupinách" -#: ../../mod/settings.php:1146 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1518 +#: ../../mod/settings.php:1149 ../../mod/photos.php:1147 +#: ../../mod/photos.php:1520 msgid "Show to Contacts" msgstr "Zobrazit v Kontaktech" -#: ../../mod/settings.php:1147 +#: ../../mod/settings.php:1150 msgid "Default Private Post" msgstr "Výchozí Soukromý příspěvek" -#: ../../mod/settings.php:1148 +#: ../../mod/settings.php:1151 msgid "Default Public Post" msgstr "Výchozí Veřejný příspěvek" -#: ../../mod/settings.php:1152 +#: ../../mod/settings.php:1155 msgid "Default Permissions for New Posts" msgstr "Výchozí oprávnění pro nové příspěvky" -#: ../../mod/settings.php:1164 +#: ../../mod/settings.php:1167 msgid "Maximum private messages per day from unknown people:" msgstr "Maximum soukromých zpráv od neznámých lidí:" -#: ../../mod/settings.php:1167 +#: ../../mod/settings.php:1170 msgid "Notification Settings" msgstr "Nastavení notifikací" -#: ../../mod/settings.php:1168 +#: ../../mod/settings.php:1171 msgid "By default post a status message when:" msgstr "Defaultně posílat statusové zprávy když:" -#: ../../mod/settings.php:1169 +#: ../../mod/settings.php:1172 msgid "accepting a friend request" msgstr "akceptuji požadavek na přátelství" -#: ../../mod/settings.php:1170 +#: ../../mod/settings.php:1173 msgid "joining a forum/community" msgstr "připojující se k fóru/komunitě" -#: ../../mod/settings.php:1171 +#: ../../mod/settings.php:1174 msgid "making an interesting profile change" msgstr "provedení zajímavé profilové změny" -#: ../../mod/settings.php:1172 +#: ../../mod/settings.php:1175 msgid "Send a notification email when:" msgstr "Poslat notifikaci e-mailem, když" -#: ../../mod/settings.php:1173 +#: ../../mod/settings.php:1176 msgid "You receive an introduction" msgstr "obdržíte žádost o propojení" -#: ../../mod/settings.php:1174 +#: ../../mod/settings.php:1177 msgid "Your introductions are confirmed" msgstr "Vaše žádosti jsou potvrzeny" -#: ../../mod/settings.php:1175 +#: ../../mod/settings.php:1178 msgid "Someone writes on your profile wall" msgstr "někdo Vám napíše na Vaši profilovou stránku" -#: ../../mod/settings.php:1176 +#: ../../mod/settings.php:1179 msgid "Someone writes a followup comment" msgstr "někdo Vám napíše následný komentář" -#: ../../mod/settings.php:1177 +#: ../../mod/settings.php:1180 msgid "You receive a private message" msgstr "obdržíte soukromou zprávu" -#: ../../mod/settings.php:1178 +#: ../../mod/settings.php:1181 msgid "You receive a friend suggestion" msgstr "Obdržel jste návrh přátelství" -#: ../../mod/settings.php:1179 +#: ../../mod/settings.php:1182 msgid "You are tagged in a post" msgstr "Jste označen v příspěvku" -#: ../../mod/settings.php:1180 +#: ../../mod/settings.php:1183 msgid "You are poked/prodded/etc. in a post" msgstr "Byl Jste šťouchnout v příspěvku" -#: ../../mod/settings.php:1183 +#: ../../mod/settings.php:1185 +msgid "Text-only notification emails" +msgstr "Pouze textové notifikační e-maily" + +#: ../../mod/settings.php:1187 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: ../../mod/settings.php:1189 msgid "Advanced Account/Page Type Settings" msgstr "Pokročilé nastavení účtu/stránky" -#: ../../mod/settings.php:1184 +#: ../../mod/settings.php:1190 msgid "Change the behaviour of this account for special situations" msgstr "Změnit chování tohoto účtu ve speciálních situacích" -#: ../../mod/settings.php:1187 +#: ../../mod/settings.php:1193 msgid "Relocate" msgstr "Změna umístění" -#: ../../mod/settings.php:1188 +#: ../../mod/settings.php:1194 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko." -#: ../../mod/settings.php:1189 +#: ../../mod/settings.php:1195 msgid "Resend relocate message to contacts" msgstr "Znovu odeslat správu o změně umístění Vašim kontaktům" -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Společní přátelé" +#: ../../mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Toto pozvání již bylo přijato." -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Žádné společné kontakty." +#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Adresa profilu není platná nebo neobsahuje profilové informace" -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Vzdálené soukromé informace nejsou k dispozici." +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka" -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Viditelné pro:" +#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Varování: umístění profilu nemá žádnou profilovou fotografii." -#: ../../mod/contacts.php:107 +#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 #, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "%d kontakt upraven." -msgstr[1] "%d kontakty upraveny" -msgstr[2] "%d kontaktů upraveno" - -#: ../../mod/contacts.php:138 ../../mod/contacts.php:267 -msgid "Could not access contact record." -msgstr "Nelze získat přístup k záznamu kontaktu." +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 požadovaný parametr nebyl nalezen na daném místě" +msgstr[1] "%d požadované parametry nebyly nalezeny na daném místě" +msgstr[2] "%d požadované parametry nebyly nalezeny na daném místě" -#: ../../mod/contacts.php:152 -msgid "Could not locate selected profile." -msgstr "Nelze nalézt vybraný profil." +#: ../../mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Představení dokončeno." -#: ../../mod/contacts.php:181 -msgid "Contact updated." -msgstr "Kontakt aktualizován." +#: ../../mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Neopravitelná chyba protokolu" -#: ../../mod/contacts.php:183 ../../mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Nepodařilo se aktualizovat kontakt." +#: ../../mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profil není k dispozici." -#: ../../mod/contacts.php:282 -msgid "Contact has been blocked" -msgstr "Kontakt byl zablokován" - -#: ../../mod/contacts.php:282 -msgid "Contact has been unblocked" -msgstr "Kontakt byl odblokován" +#: ../../mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s dnes obdržel příliš mnoho požadavků na připojení." -#: ../../mod/contacts.php:293 -msgid "Contact has been ignored" -msgstr "Kontakt bude ignorován" +#: ../../mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Ochrana proti spamu byla aktivována" -#: ../../mod/contacts.php:293 -msgid "Contact has been unignored" -msgstr "Kontakt přestal být ignorován" +#: ../../mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Přátelům se doporučuje to zkusit znovu za 24 hodin." -#: ../../mod/contacts.php:305 -msgid "Contact has been archived" -msgstr "Kontakt byl archivován" +#: ../../mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Neplatný odkaz" -#: ../../mod/contacts.php:305 -msgid "Contact has been unarchived" -msgstr "Kontakt byl vrácen z archívu." +#: ../../mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Neplatná emailová adresa" -#: ../../mod/contacts.php:330 ../../mod/contacts.php:703 -msgid "Do you really want to delete this contact?" -msgstr "Opravdu chcete smazat tento kontakt?" +#: ../../mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "Tento účet nebyl nastaven pro email. Požadavek nesplněn." -#: ../../mod/contacts.php:347 -msgid "Contact has been removed." -msgstr "Kontakt byl odstraněn." +#: ../../mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Nepodařilo se zjistit Vaše jméno na zadané adrese." -#: ../../mod/contacts.php:385 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Jste vzájemní přátelé s uživatelem %s" +#: ../../mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Již jste se zde zavedli." -#: ../../mod/contacts.php:389 +#: ../../mod/dfrn_request.php:480 #, php-format -msgid "You are sharing with %s" -msgstr "Sdílíte s uživatelem %s" +msgid "Apparently you are already friends with %s." +msgstr "Zřejmě jste již přátelé se %s." -#: ../../mod/contacts.php:394 -#, php-format -msgid "%s is sharing with you" -msgstr "uživatel %s sdílí s vámi" +#: ../../mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Neplatné URL profilu." -#: ../../mod/contacts.php:411 -msgid "Private communications are not available for this contact." -msgstr "Soukromá komunikace není dostupná pro tento kontakt." +#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "Nepovolené URL profilu." -#: ../../mod/contacts.php:414 ../../mod/admin.php:540 -msgid "Never" -msgstr "Nikdy" +#: ../../mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "Vaše žádost o propojení byla odeslána." -#: ../../mod/contacts.php:418 -msgid "(Update was successful)" -msgstr "(Aktualizace byla úspěšná)" +#: ../../mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Prosím přihlašte se k potvrzení žádosti o propojení." -#: ../../mod/contacts.php:418 -msgid "(Update was not successful)" -msgstr "(Aktualizace nebyla úspěšná)" +#: ../../mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Jste přihlášeni pod nesprávnou identitou Prosím, přihlaste se do tohoto profilu." -#: ../../mod/contacts.php:420 -msgid "Suggest friends" -msgstr "Navrhněte přátelé" +#: ../../mod/dfrn_request.php:671 +msgid "Hide this contact" +msgstr "Skrýt tento kontakt" -#: ../../mod/contacts.php:424 +#: ../../mod/dfrn_request.php:674 #, php-format -msgid "Network type: %s" -msgstr "Typ sítě: %s" - -#: ../../mod/contacts.php:432 -msgid "View all contacts" -msgstr "Zobrazit všechny kontakty" - -#: ../../mod/contacts.php:437 ../../mod/contacts.php:496 -#: ../../mod/contacts.php:706 ../../mod/admin.php:970 -msgid "Unblock" -msgstr "Odblokovat" - -#: ../../mod/contacts.php:437 ../../mod/contacts.php:496 -#: ../../mod/contacts.php:706 ../../mod/admin.php:969 -msgid "Block" -msgstr "Blokovat" +msgid "Welcome home %s." +msgstr "Vítejte doma %s." -#: ../../mod/contacts.php:440 -msgid "Toggle Blocked status" -msgstr "Přepnout stav Blokováno" +#: ../../mod/dfrn_request.php:675 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Prosím potvrďte Vaši žádost o propojení %s." -#: ../../mod/contacts.php:443 ../../mod/contacts.php:497 -#: ../../mod/contacts.php:707 -msgid "Unignore" -msgstr "Přestat ignorovat" +#: ../../mod/dfrn_request.php:676 +msgid "Confirm" +msgstr "Potvrdit" -#: ../../mod/contacts.php:446 -msgid "Toggle Ignored status" -msgstr "Přepnout stav Ignorováno" +#: ../../mod/dfrn_request.php:804 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:" -#: ../../mod/contacts.php:450 ../../mod/contacts.php:708 -msgid "Unarchive" -msgstr "Vrátit z archívu" +#: ../../mod/dfrn_request.php:824 +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 "Pokud ještě nejste členem svobodné sociální sítě, následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes." -#: ../../mod/contacts.php:450 ../../mod/contacts.php:708 -msgid "Archive" -msgstr "Archivovat" +#: ../../mod/dfrn_request.php:827 +msgid "Friend/Connection Request" +msgstr "Požadavek o přátelství / kontaktování" -#: ../../mod/contacts.php:453 -msgid "Toggle Archive status" -msgstr "Přepnout stav Archivováno" +#: ../../mod/dfrn_request.php:828 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" -#: ../../mod/contacts.php:456 -msgid "Repair" -msgstr "Opravit" +#: ../../mod/dfrn_request.php:829 +msgid "Please answer the following:" +msgstr "Odpovězte, prosím, následující:" -#: ../../mod/contacts.php:459 -msgid "Advanced Contact Settings" -msgstr "Pokročilé nastavení kontaktu" +#: ../../mod/dfrn_request.php:830 +#, php-format +msgid "Does %s know you?" +msgstr "Zná Vás uživatel %s ?" -#: ../../mod/contacts.php:465 -msgid "Communications lost with this contact!" -msgstr "Komunikace s tímto kontaktem byla ztracena!" +#: ../../mod/dfrn_request.php:834 +msgid "Add a personal note:" +msgstr "Přidat osobní poznámku:" -#: ../../mod/contacts.php:468 -msgid "Contact Editor" -msgstr "Editor kontaktu" +#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../mod/contacts.php:471 -msgid "Profile Visibility" -msgstr "Viditelnost profilu" +#: ../../mod/dfrn_request.php:837 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet / Federativní Sociální Web" -#: ../../mod/contacts.php:472 +#: ../../mod/dfrn_request.php:839 #, php-format msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu." +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - prosím nepoužívejte tento formulář. Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole." -#: ../../mod/contacts.php:473 -msgid "Contact Information / Notes" -msgstr "Kontaktní informace / poznámky" +#: ../../mod/dfrn_request.php:840 +msgid "Your Identity Address:" +msgstr "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"." -#: ../../mod/contacts.php:474 -msgid "Edit contact notes" -msgstr "Editovat poznámky kontaktu" +#: ../../mod/dfrn_request.php:843 +msgid "Submit Request" +msgstr "Odeslat žádost" + +#: ../../mod/register.php:90 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce." -#: ../../mod/contacts.php:479 ../../mod/contacts.php:671 -#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:62 +#: ../../mod/register.php:96 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Navštivte profil uživatele %s [%s]" +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "" -#: ../../mod/contacts.php:480 -msgid "Block/Unblock contact" -msgstr "Blokovat / Odblokovat kontakt" +#: ../../mod/register.php:105 +msgid "Your registration can not be processed." +msgstr "Vaši registraci nelze zpracovat." -#: ../../mod/contacts.php:481 -msgid "Ignore contact" -msgstr "Ignorovat kontakt" +#: ../../mod/register.php:148 +msgid "Your registration is pending approval by the site owner." +msgstr "Vaše registrace čeká na schválení vlastníkem serveru." -#: ../../mod/contacts.php:482 -msgid "Repair URL settings" -msgstr "Opravit nastavení adresy URL " +#: ../../mod/register.php:186 ../../mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to zítra znovu." -#: ../../mod/contacts.php:483 -msgid "View conversations" -msgstr "Zobrazit konverzace" +#: ../../mod/register.php:214 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'." -#: ../../mod/contacts.php:485 -msgid "Delete contact" -msgstr "Odstranit kontakt" +#: ../../mod/register.php:215 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky." -#: ../../mod/contacts.php:489 -msgid "Last update:" -msgstr "Poslední aktualizace:" +#: ../../mod/register.php:216 +msgid "Your OpenID (optional): " +msgstr "Vaše OpenID (nepovinné): " -#: ../../mod/contacts.php:491 -msgid "Update public posts" -msgstr "Aktualizovat veřejné příspěvky" +#: ../../mod/register.php:230 +msgid "Include your profile in member directory?" +msgstr "Toto je Váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu." -#: ../../mod/contacts.php:493 ../../mod/admin.php:1464 -msgid "Update now" -msgstr "Aktualizovat" +#: ../../mod/register.php:251 +msgid "Membership on this site is by invitation only." +msgstr "Členství na tomto webu je pouze na pozvání." -#: ../../mod/contacts.php:500 -msgid "Currently blocked" -msgstr "V současnosti zablokováno" +#: ../../mod/register.php:252 +msgid "Your invitation ID: " +msgstr "Vaše pozvání ID:" -#: ../../mod/contacts.php:501 -msgid "Currently ignored" -msgstr "V současnosti ignorováno" +#: ../../mod/register.php:263 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Vaše celé jméno (např. Jan Novák):" -#: ../../mod/contacts.php:502 -msgid "Currently archived" -msgstr "Aktuálně archivován" +#: ../../mod/register.php:264 +msgid "Your Email Address: " +msgstr "Vaše e-mailová adresa:" -#: ../../mod/contacts.php:503 +#: ../../mod/register.php:265 msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Odpovědi/Libí se na Vaše veřejné příspěvky mohou být stále viditelné" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"přezdívka@$sitename\"." -#: ../../mod/contacts.php:504 -msgid "Notification for new posts" -msgstr "Upozornění na nové příspěvky" +#: ../../mod/register.php:266 +msgid "Choose a nickname: " +msgstr "Vyberte přezdívku:" -#: ../../mod/contacts.php:504 -msgid "Send a notification of every new post of this contact" -msgstr "Poslat upozornění při každém novém příspěvku tohoto kontaktu" +#: ../../mod/register.php:269 ../../boot.php:1236 ../../include/nav.php:109 +msgid "Register" +msgstr "Registrovat" -#: ../../mod/contacts.php:505 -msgid "Fetch further information for feeds" -msgstr "Načíst další informace pro kanál" +#: ../../mod/register.php:275 ../../mod/uimport.php:64 +msgid "Import" +msgstr "Import" -#: ../../mod/contacts.php:556 -msgid "Suggestions" -msgstr "Doporučení" +#: ../../mod/register.php:276 +msgid "Import your profile to this friendica instance" +msgstr "Import Vašeho profilu do této friendica instance" -#: ../../mod/contacts.php:559 -msgid "Suggest potential friends" -msgstr "Navrhnout potenciální přátele" +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Systém vypnut z důvodů údržby" -#: ../../mod/contacts.php:565 -msgid "Show all contacts" -msgstr "Zobrazit všechny kontakty" - -#: ../../mod/contacts.php:568 -msgid "Unblocked" -msgstr "Odblokován" +#: ../../mod/search.php:99 ../../include/text.php:952 +#: ../../include/text.php:953 ../../include/nav.php:119 +msgid "Search" +msgstr "Vyhledávání" -#: ../../mod/contacts.php:571 -msgid "Only show unblocked contacts" -msgstr "Zobrazit pouze neblokované kontakty" +#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Globální adresář" -#: ../../mod/contacts.php:575 -msgid "Blocked" -msgstr "Blokován" +#: ../../mod/directory.php:59 +msgid "Find on this site" +msgstr "Nalézt na tomto webu" -#: ../../mod/contacts.php:578 -msgid "Only show blocked contacts" -msgstr "Zobrazit pouze blokované kontakty" +#: ../../mod/directory.php:62 +msgid "Site Directory" +msgstr "Adresář serveru" -#: ../../mod/contacts.php:582 -msgid "Ignored" -msgstr "Ignorován" +#: ../../mod/directory.php:113 ../../mod/profiles.php:716 +msgid "Age: " +msgstr "Věk: " -#: ../../mod/contacts.php:585 -msgid "Only show ignored contacts" -msgstr "Zobrazit pouze ignorované kontakty" +#: ../../mod/directory.php:116 +msgid "Gender: " +msgstr "Pohlaví: " -#: ../../mod/contacts.php:589 -msgid "Archived" -msgstr "Archivován" +#: ../../mod/directory.php:138 ../../boot.php:1645 +#: ../../include/profile_advanced.php:17 +msgid "Gender:" +msgstr "Pohlaví:" -#: ../../mod/contacts.php:592 -msgid "Only show archived contacts" -msgstr "Zobrazit pouze archivované kontakty" +#: ../../mod/directory.php:140 ../../boot.php:1648 +#: ../../include/profile_advanced.php:37 +msgid "Status:" +msgstr "Status:" -#: ../../mod/contacts.php:596 -msgid "Hidden" -msgstr "Skrytý" +#: ../../mod/directory.php:142 ../../boot.php:1650 +#: ../../include/profile_advanced.php:48 +msgid "Homepage:" +msgstr "Domácí stránka:" -#: ../../mod/contacts.php:599 -msgid "Only show hidden contacts" -msgstr "Zobrazit pouze skryté kontakty" +#: ../../mod/directory.php:144 ../../boot.php:1652 +#: ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "O mě:" -#: ../../mod/contacts.php:647 -msgid "Mutual Friendship" -msgstr "Vzájemné přátelství" +#: ../../mod/directory.php:189 +msgid "No entries (some entries may be hidden)." +msgstr "Žádné záznamy (některé položky mohou být skryty)." -#: ../../mod/contacts.php:651 -msgid "is a fan of yours" -msgstr "je Váš fanoušek" +#: ../../mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Žádní potenciální delegáti stránky nenalezeni." -#: ../../mod/contacts.php:655 -msgid "you are a fan of" -msgstr "jste fanouškem" +#: ../../mod/delegate.php:130 ../../include/nav.php:168 +msgid "Delegate Page Management" +msgstr "Správa delegátů stránky" -#: ../../mod/contacts.php:672 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Editovat kontakt" +#: ../../mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte.." -#: ../../mod/contacts.php:698 -msgid "Search your contacts" -msgstr "Prohledat Vaše kontakty" +#: ../../mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Stávající správci stránky" -#: ../../mod/contacts.php:699 ../../mod/directory.php:61 -msgid "Finding: " -msgstr "Zjištění: " +#: ../../mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Stávající delegáti stránky " -#: ../../mod/wall_attach.php:75 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP" +#: ../../mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Potenciální delegáti" -#: ../../mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "Nebo - nenahrával jste prázdný soubor?" +#: ../../mod/delegate.php:140 +msgid "Add" +msgstr "Přidat" -#: ../../mod/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Velikost souboru přesáhla limit %d" +#: ../../mod/delegate.php:141 +msgid "No entries." +msgstr "Žádné záznamy." -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Nahrání souboru se nezdařilo." +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Společní přátelé" -#: ../../mod/update_community.php:18 ../../mod/update_network.php:25 -#: ../../mod/update_notes.php:37 ../../mod/update_display.php:22 -#: ../../mod/update_profile.php:41 -msgid "[Embedded content - reload page to view]" -msgstr "[Vložený obsah - obnovení stránky pro zobrazení]" +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Žádné společné kontakty." #: ../../mod/uexport.php:77 msgid "Export account" @@ -4389,3324 +4576,3240 @@ msgid "" "of your account (photos are not exported)" msgstr "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)" -#: ../../mod/register.php:93 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce." +#: ../../mod/mood.php:62 ../../include/conversation.php:227 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s je právě %2$s" -#: ../../mod/register.php:97 -msgid "Failed to send email message. Here is the message that failed." -msgstr "Nepodařilo se odeslat zprávu na e-mail. Zde je zpráva, která nebyla odeslána." +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Nálada" -#: ../../mod/register.php:102 -msgid "Your registration can not be processed." -msgstr "Vaši registraci nelze zpracovat." +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Nastavte svou aktuální náladu a řekněte to Vašim přátelům" -#: ../../mod/register.php:145 -msgid "Your registration is pending approval by the site owner." -msgstr "Vaše registrace čeká na schválení vlastníkem serveru." +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Opravdu chcete smazat tento návrh?" -#: ../../mod/register.php:183 ../../mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to zítra znovu." +#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35 +#: ../../view/theme/diabook/theme.php:527 +msgid "Friend Suggestions" +msgstr "Návrhy přátel" -#: ../../mod/register.php:211 +#: ../../mod/suggest.php:74 msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'." +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin." -#: ../../mod/register.php:212 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky." +#: ../../mod/suggest.php:92 +msgid "Ignore/Hide" +msgstr "Ignorovat / skrýt" -#: ../../mod/register.php:213 -msgid "Your OpenID (optional): " -msgstr "Vaše OpenID (nepovinné): " +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profil smazán." -#: ../../mod/register.php:227 -msgid "Include your profile in member directory?" -msgstr "Toto je Váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu." +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" +msgstr "Profil-" -#: ../../mod/register.php:248 -msgid "Membership on this site is by invitation only." -msgstr "Členství na tomto webu je pouze na pozvání." +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." +msgstr "Nový profil vytvořen." -#: ../../mod/register.php:249 -msgid "Your invitation ID: " -msgstr "VaÅ¡e pozvání ID:" +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Profil není možné naklonovat." -#: ../../mod/register.php:252 ../../mod/admin.php:589 -msgid "Registration" -msgstr "Registrace" +#: ../../mod/profiles.php:172 +msgid "Profile Name is required." +msgstr "Jméno profilu je povinné." -#: ../../mod/register.php:260 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "VaÅ¡e celé jméno (např. Jan Novák):" +#: ../../mod/profiles.php:323 +msgid "Marital Status" +msgstr "Rodinný Stav" -#: ../../mod/register.php:261 -msgid "Your Email Address: " -msgstr "VaÅ¡e e-mailová adresa:" +#: ../../mod/profiles.php:327 +msgid "Romantic Partner" +msgstr "Romatický partner" -#: ../../mod/register.php:262 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. VaÅ¡e profilová adresa na tomto webu pak bude \"přezdívka@$sitename\"." +#: ../../mod/profiles.php:331 +msgid "Likes" +msgstr "Libí se mi" -#: ../../mod/register.php:263 -msgid "Choose a nickname: " -msgstr "Vyberte přezdívku:" +#: ../../mod/profiles.php:335 +msgid "Dislikes" +msgstr "Nelibí se mi" -#: ../../mod/register.php:272 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Import" +#: ../../mod/profiles.php:339 +msgid "Work/Employment" +msgstr "Práce/Zaměstnání" -#: ../../mod/register.php:273 -msgid "Import your profile to this friendica instance" -msgstr "Import VaÅ¡eho profilu do této friendica instance" +#: ../../mod/profiles.php:342 +msgid "Religion" +msgstr "Náboženství" -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Příspěvek úspěšně odeslán" +#: ../../mod/profiles.php:346 +msgid "Political Views" +msgstr "Politické přesvědčení" -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Systém vypnut z důvodů údržby" +#: ../../mod/profiles.php:350 +msgid "Gender" +msgstr "Pohlaví" -#: ../../mod/profile.php:155 ../../mod/display.php:288 -msgid "Access to this profile has been restricted." -msgstr "Přístup na tento profil byl omezen." +#: ../../mod/profiles.php:354 +msgid "Sexual Preference" +msgstr "Sexuální orientace" -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Tipy pro nové členy" +#: ../../mod/profiles.php:358 +msgid "Homepage" +msgstr "Domácí stránka" -#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:766 -#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:920 -#: ../../mod/search.php:89 ../../mod/community.php:18 -#: ../../mod/display.php:180 ../../mod/directory.php:33 -msgid "Public access denied." -msgstr "Veřejný přístup odepřen." +#: ../../mod/profiles.php:362 ../../mod/profiles.php:664 +msgid "Interests" +msgstr "Zájmy" -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Není vybráno žádné video" +#: ../../mod/profiles.php:366 +msgid "Address" +msgstr "Adresa" -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 -msgid "Access to this item is restricted." -msgstr "Přístup k této položce je omezen." +#: ../../mod/profiles.php:373 ../../mod/profiles.php:660 +msgid "Location" +msgstr "Lokace" -#: ../../mod/videos.php:308 ../../mod/photos.php:1806 -msgid "View Album" -msgstr "Zobrazit album" +#: ../../mod/profiles.php:456 +msgid "Profile updated." +msgstr "Profil aktualizován." -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Aktuální Videa" +#: ../../mod/profiles.php:534 +msgid " and " +msgstr " a " -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Nahrát nová videa" +#: ../../mod/profiles.php:542 +msgid "public profile" +msgstr "veřejný profil" -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Správa identit a / nebo stránek" +#: ../../mod/profiles.php:545 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s změnil %2$s na “%3$s”" -#: ../../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 "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí VaÅ¡e detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva." +#: ../../mod/profiles.php:546 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - NavÅ¡tivte %2$s uživatele %1$s" -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Vyberte identitu pro správu: " +#: ../../mod/profiles.php:549 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s aktualizoval %2$s, změnou %3$s." -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Položka nenalezena" +#: ../../mod/profiles.php:624 +msgid "Hide contacts and friends:" +msgstr "Skrýt kontakty a přátele:" -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Upravit příspěvek" +#: ../../mod/profiles.php:629 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Skrýt u tohoto profilu VaÅ¡e kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?" -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Vyhledávání lidí" +#: ../../mod/profiles.php:651 +msgid "Edit Profile Details" +msgstr "Upravit podrobnosti profilu " -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Žádné shody" +#: ../../mod/profiles.php:653 +msgid "Change Profile Photo" +msgstr "Změna Profilové fotky" -#: ../../mod/regmod.php:54 -msgid "Account approved." -msgstr "Účet schválen." +#: ../../mod/profiles.php:654 +msgid "View this profile" +msgstr "Zobrazit tento profil" -#: ../../mod/regmod.php:91 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrace zruÅ¡ena pro %s" +#: ../../mod/profiles.php:655 +msgid "Create a new profile using these settings" +msgstr "Vytvořit nový profil pomocí tohoto nastavení" -#: ../../mod/regmod.php:103 -msgid "Please login." -msgstr "Přihlaste se, prosím." +#: ../../mod/profiles.php:656 +msgid "Clone this profile" +msgstr "Klonovat tento profil" -#: ../../mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Toto pozvání již bylo přijato." +#: ../../mod/profiles.php:657 +msgid "Delete this profile" +msgstr "Smazat tento profil" -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Adresa profilu není platná nebo neobsahuje profilové informace" +#: ../../mod/profiles.php:658 +msgid "Basic information" +msgstr "Základní informace" -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka" +#: ../../mod/profiles.php:659 +msgid "Profile picture" +msgstr "Profilový obrázek" -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Varování: umístění profilu nemá žádnou profilovou fotografii." +#: ../../mod/profiles.php:661 +msgid "Preferences" +msgstr "Nastavení" -#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d požadovaný parametr nebyl nalezen na daném místě" -msgstr[1] "%d požadované parametry nebyly nalezeny na daném místě" -msgstr[2] "%d požadované parametry nebyly nalezeny na daném místě" +#: ../../mod/profiles.php:662 +msgid "Status information" +msgstr "Statusové informace" -#: ../../mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Představení dokončeno." +#: ../../mod/profiles.php:663 +msgid "Additional information" +msgstr "Dodatečné informace" -#: ../../mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Neopravitelná chyba protokolu" +#: ../../mod/profiles.php:666 +msgid "Profile Name:" +msgstr "Jméno profilu:" -#: ../../mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profil není k dispozici." +#: ../../mod/profiles.php:667 +msgid "Your Full Name:" +msgstr "VaÅ¡e celé jméno:" -#: ../../mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s dnes obdržel příliÅ¡ mnoho požadavků na připojení." +#: ../../mod/profiles.php:668 +msgid "Title/Description:" +msgstr "Název / Popis:" -#: ../../mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Ochrana proti spamu byla aktivována" +#: ../../mod/profiles.php:669 +msgid "Your Gender:" +msgstr "VaÅ¡e pohlaví:" -#: ../../mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Přátelům se doporučuje to zkusit znovu za 24 hodin." +#: ../../mod/profiles.php:670 +#, php-format +msgid "Birthday (%s):" +msgstr "Narozeniny uživatele (%s):" -#: ../../mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Neplatný odkaz" +#: ../../mod/profiles.php:671 +msgid "Street Address:" +msgstr "Ulice:" -#: ../../mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Neplatná emailová adresa" +#: ../../mod/profiles.php:672 +msgid "Locality/City:" +msgstr "Město:" -#: ../../mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Tento účet nebyl nastaven pro email. Požadavek nesplněn." +#: ../../mod/profiles.php:673 +msgid "Postal/Zip Code:" +msgstr "PSČ:" -#: ../../mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Nepodařilo se zjistit VaÅ¡e jméno na zadané adrese." +#: ../../mod/profiles.php:674 +msgid "Country:" +msgstr "Země:" -#: ../../mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Již jste se zde zavedli." +#: ../../mod/profiles.php:675 +msgid "Region/State:" +msgstr "Region / stát:" -#: ../../mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Zřejmě jste již přátelé se %s." +#: ../../mod/profiles.php:676 +msgid " Marital Status:" +msgstr " Rodinný stav:" -#: ../../mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Neplatné URL profilu." +#: ../../mod/profiles.php:677 +msgid "Who: (if applicable)" +msgstr "Kdo: (pokud je možné)" -#: ../../mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "VaÅ¡e žádost o propojení byla odeslána." +#: ../../mod/profiles.php:678 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Příklady: jan123, Jan Novák, jan@seznam.cz" -#: ../../mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Prosím přihlaÅ¡te se k potvrzení žádosti o propojení." +#: ../../mod/profiles.php:679 +msgid "Since [date]:" +msgstr "Od [data]:" -#: ../../mod/dfrn_request.php:664 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Jste přihlášeni pod nesprávnou identitou Prosím, přihlaste se do tohoto profilu." +#: ../../mod/profiles.php:680 ../../include/profile_advanced.php:46 +msgid "Sexual Preference:" +msgstr "Sexuální preference:" -#: ../../mod/dfrn_request.php:675 -msgid "Hide this contact" -msgstr "Skrýt tento kontakt" +#: ../../mod/profiles.php:681 +msgid "Homepage URL:" +msgstr "Odkaz na domovskou stránku:" -#: ../../mod/dfrn_request.php:678 -#, php-format -msgid "Welcome home %s." -msgstr "Vítejte doma %s." +#: ../../mod/profiles.php:682 ../../include/profile_advanced.php:50 +msgid "Hometown:" +msgstr "Rodné město" -#: ../../mod/dfrn_request.php:679 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Prosím potvrďte VaÅ¡i žádost o propojení %s." +#: ../../mod/profiles.php:683 ../../include/profile_advanced.php:54 +msgid "Political Views:" +msgstr "Politické přesvědčení:" -#: ../../mod/dfrn_request.php:680 -msgid "Confirm" -msgstr "Potvrdit" +#: ../../mod/profiles.php:684 +msgid "Religious Views:" +msgstr "Náboženské přesvědčení:" -#: ../../mod/dfrn_request.php:808 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Prosím zadejte VaÅ¡i adresu identity jedné z následujících podporovaných komunikačních sítí:" +#: ../../mod/profiles.php:685 +msgid "Public Keywords:" +msgstr "Veřejná klíčová slova:" -#: ../../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 "Pokud jeÅ¡tě nejste členem svobodné sociální sítě, následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám jeÅ¡tě dnes." +#: ../../mod/profiles.php:686 +msgid "Private Keywords:" +msgstr "Soukromá klíčová slova:" -#: ../../mod/dfrn_request.php:831 -msgid "Friend/Connection Request" -msgstr "Požadavek o přátelství / kontaktování" +#: ../../mod/profiles.php:687 ../../include/profile_advanced.php:62 +msgid "Likes:" +msgstr "Líbí se:" -#: ../../mod/dfrn_request.php:832 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" +#: ../../mod/profiles.php:688 ../../include/profile_advanced.php:64 +msgid "Dislikes:" +msgstr "Nelibí se:" -#: ../../mod/dfrn_request.php:833 -msgid "Please answer the following:" -msgstr "Odpovězte, prosím, následující:" +#: ../../mod/profiles.php:689 +msgid "Example: fishing photography software" +msgstr "Příklad: fishing photography software" -#: ../../mod/dfrn_request.php:834 -#, php-format -msgid "Does %s know you?" -msgstr "Zná Vás uživatel %s ?" +#: ../../mod/profiles.php:690 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)" -#: ../../mod/dfrn_request.php:838 -msgid "Add a personal note:" -msgstr "Přidat osobní poznámku:" +#: ../../mod/profiles.php:691 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)" -#: ../../mod/dfrn_request.php:841 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet / Federativní Sociální Web" +#: ../../mod/profiles.php:692 +msgid "Tell us about yourself..." +msgstr "Řekněte nám něco o sobě ..." -#: ../../mod/dfrn_request.php:843 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - prosím nepoužívejte tento formulář. Místo toho zadejte %s do VaÅ¡eho Diaspora vyhledávacího pole." +#: ../../mod/profiles.php:693 +msgid "Hobbies/Interests" +msgstr "Koníčky/zájmy" -#: ../../mod/dfrn_request.php:844 -msgid "Your Identity Address:" -msgstr "Verze PHP pro příkazový řádek na VaÅ¡em systému nemá povolen \"register_argc_argv\"." +#: ../../mod/profiles.php:694 +msgid "Contact information and Social Networks" +msgstr "Kontaktní informace a sociální sítě" -#: ../../mod/dfrn_request.php:847 -msgid "Submit Request" -msgstr "Odeslat žádost" +#: ../../mod/profiles.php:695 +msgid "Musical interests" +msgstr "Hudební vkus" -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Soubory" +#: ../../mod/profiles.php:696 +msgid "Books, literature" +msgstr "Knihy, literatura" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Povolit připojení aplikacím" +#: ../../mod/profiles.php:697 +msgid "Television" +msgstr "Televize" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "VraÅ¥te se do vaší aplikace a zadejte tento bezpečnostní kód:" +#: ../../mod/profiles.php:698 +msgid "Film/dance/culture/entertainment" +msgstr "Film/tanec/kultura/zábava" -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Pro pokračování se prosím přihlaste." +#: ../../mod/profiles.php:699 +msgid "Love/romance" +msgstr "Láska/romantika" -#: ../../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 "Chcete umožnit této aplikaci přístup k vaÅ¡im příspěvkům a kontaktům a/nebo k vytváření VaÅ¡ich nových příspěvků?" +#: ../../mod/profiles.php:700 +msgid "Work/employment" +msgstr "Práce/zaměstnání" -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Opravdu chcete smazat tento návrh?" +#: ../../mod/profiles.php:701 +msgid "School/education" +msgstr "Å kola/vzdělání" -#: ../../mod/suggest.php:72 +#: ../../mod/profiles.php:706 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin." +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Toto je váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu." -#: ../../mod/suggest.php:90 -msgid "Ignore/Hide" -msgstr "Ignorovat / skrýt" +#: ../../mod/profiles.php:769 +msgid "Edit/Manage Profiles" +msgstr "Upravit / Spravovat profily" -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Kontakty, které nejsou členy skupiny" +#: ../../mod/profiles.php:770 ../../boot.php:1606 ../../boot.php:1632 +msgid "Change profile photo" +msgstr "Změnit profilovou fotografii" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -#: ../../mod/crepair.php:131 ../../mod/dfrn_confirm.php:120 -msgid "Contact not found." -msgstr "Kontakt nenalezen." +#: ../../mod/profiles.php:771 ../../boot.php:1607 +msgid "Create New Profile" +msgstr "Vytvořit nový profil" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Návrhy přátelství odeslány " +#: ../../mod/profiles.php:782 ../../boot.php:1617 +msgid "Profile Image" +msgstr "Profilový obrázek" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Navrhněte přátelé" +#: ../../mod/profiles.php:784 ../../boot.php:1620 +msgid "visible to everybody" +msgstr "viditelné pro vÅ¡echny" -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Navrhněte přátelé pro uživatele %s" +#: ../../mod/profiles.php:785 ../../boot.php:1621 +msgid "Edit visibility" +msgstr "Upravit viditelnost" -#: ../../mod/share.php:44 -msgid "link" -msgstr "odkaz" +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Položka nenalezena" -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." -msgstr "Žádné kontakty." +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Upravit příspěvek" -#: ../../mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Nastavení téma zobrazení bylo aktualizováno." +#: ../../mod/editpost.php:111 ../../include/conversation.php:1092 +msgid "upload photo" +msgstr "nahrát fotky" -#: ../../mod/admin.php:104 ../../mod/admin.php:587 -msgid "Site" -msgstr "Web" +#: ../../mod/editpost.php:112 ../../include/conversation.php:1093 +msgid "Attach file" +msgstr "Přiložit soubor" -#: ../../mod/admin.php:105 ../../mod/admin.php:959 ../../mod/admin.php:974 -msgid "Users" -msgstr "Uživatelé" +#: ../../mod/editpost.php:113 ../../include/conversation.php:1094 +msgid "attach file" +msgstr "přidat soubor" -#: ../../mod/admin.php:107 ../../mod/admin.php:1284 ../../mod/admin.php:1318 -msgid "Themes" -msgstr "Témata" +#: ../../mod/editpost.php:115 ../../include/conversation.php:1096 +msgid "web link" +msgstr "webový odkaz" -#: ../../mod/admin.php:108 -msgid "DB updates" -msgstr "Aktualizace databáze" +#: ../../mod/editpost.php:116 ../../include/conversation.php:1097 +msgid "Insert video link" +msgstr "Zadejte odkaz na video" -#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1405 -msgid "Logs" -msgstr "Logy" +#: ../../mod/editpost.php:117 ../../include/conversation.php:1098 +msgid "video link" +msgstr "odkaz na video" -#: ../../mod/admin.php:129 -msgid "Plugin Features" -msgstr "Funkčnosti rozšíření" +#: ../../mod/editpost.php:118 ../../include/conversation.php:1099 +msgid "Insert audio link" +msgstr "Zadejte odkaz na zvukový záznam" -#: ../../mod/admin.php:131 -msgid "User registrations waiting for confirmation" -msgstr "Registrace uživatele čeká na potvrzení" +#: ../../mod/editpost.php:119 ../../include/conversation.php:1100 +msgid "audio link" +msgstr "odkaz na audio" -#: ../../mod/admin.php:190 ../../mod/admin.php:913 -msgid "Normal Account" -msgstr "Normální účet" +#: ../../mod/editpost.php:120 ../../include/conversation.php:1101 +msgid "Set your location" +msgstr "Nastavte vaÅ¡i polohu" -#: ../../mod/admin.php:191 ../../mod/admin.php:914 -msgid "Soapbox Account" -msgstr "Soapbox účet" +#: ../../mod/editpost.php:121 ../../include/conversation.php:1102 +msgid "set location" +msgstr "nastavit místo" -#: ../../mod/admin.php:192 ../../mod/admin.php:915 -msgid "Community/Celebrity Account" -msgstr "Komunitní účet / Účet celebrity" +#: ../../mod/editpost.php:122 ../../include/conversation.php:1103 +msgid "Clear browser location" +msgstr "Odstranit adresu v prohlížeči" -#: ../../mod/admin.php:193 ../../mod/admin.php:916 -msgid "Automatic Friend Account" -msgstr "Účet s automatickým schvalováním přátel" +#: ../../mod/editpost.php:123 ../../include/conversation.php:1104 +msgid "clear location" +msgstr "vymazat místo" -#: ../../mod/admin.php:194 -msgid "Blog Account" -msgstr "Účet Blogu" +#: ../../mod/editpost.php:125 ../../include/conversation.php:1110 +msgid "Permission settings" +msgstr "Nastavení oprávnění" -#: ../../mod/admin.php:195 -msgid "Private Forum" -msgstr "Soukromé fórum" +#: ../../mod/editpost.php:133 ../../include/conversation.php:1119 +msgid "CC: email addresses" +msgstr "skrytá kopie: e-mailové adresy" -#: ../../mod/admin.php:214 -msgid "Message queues" -msgstr "Fronty zpráv" +#: ../../mod/editpost.php:134 ../../include/conversation.php:1120 +msgid "Public post" +msgstr "Veřejný příspěvek" -#: ../../mod/admin.php:219 ../../mod/admin.php:586 ../../mod/admin.php:958 -#: ../../mod/admin.php:1062 ../../mod/admin.php:1115 ../../mod/admin.php:1283 -#: ../../mod/admin.php:1317 ../../mod/admin.php:1404 -msgid "Administration" -msgstr "Administrace" +#: ../../mod/editpost.php:137 ../../include/conversation.php:1106 +msgid "Set title" +msgstr "Nastavit titulek" -#: ../../mod/admin.php:220 -msgid "Summary" -msgstr "Shrnutí" +#: ../../mod/editpost.php:139 ../../include/conversation.php:1108 +msgid "Categories (comma-separated list)" +msgstr "Kategorie (čárkou oddělený seznam)" -#: ../../mod/admin.php:222 -msgid "Registered users" -msgstr "Registrovaní uživatelé" +#: ../../mod/editpost.php:140 ../../include/conversation.php:1122 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Příklad: bob@example.com, mary@example.com" -#: ../../mod/admin.php:224 -msgid "Pending registrations" -msgstr "Čekající registrace" +#: ../../mod/friendica.php:62 +msgid "This is Friendica, version" +msgstr "Toto je Friendica, verze" -#: ../../mod/admin.php:225 -msgid "Version" -msgstr "Verze" +#: ../../mod/friendica.php:63 +msgid "running at web location" +msgstr "běžící na webu" -#: ../../mod/admin.php:227 -msgid "Active plugins" -msgstr "Aktivní pluginy" +#: ../../mod/friendica.php:65 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Pro získání dalších informací o projektu Friendica navÅ¡tivte prosím Friendica.com." -#: ../../mod/admin.php:250 -msgid "Can not parse base url. Must have at least ://" -msgstr "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň ://" +#: ../../mod/friendica.php:67 +msgid "Bug reports and issues: please visit" +msgstr "Pro hlášení chyb a námětů na změny navÅ¡tivte:" -#: ../../mod/admin.php:494 -msgid "Site settings updated." -msgstr "Nastavení webu aktualizováno." +#: ../../mod/friendica.php:68 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Návrhy, chválu, dary, apod. - prosím piÅ¡tě na \"info\" na Friendica - tečka com" -#: ../../mod/admin.php:541 -msgid "At post arrival" -msgstr "Při obdržení příspěvku" +#: ../../mod/friendica.php:82 +msgid "Installed plugins/addons/apps:" +msgstr "Instalované pluginy/doplňky/aplikace:" -#: ../../mod/admin.php:550 -msgid "Multi user instance" -msgstr "Více uživatelská instance" +#: ../../mod/friendica.php:95 +msgid "No installed plugins/addons/apps" +msgstr "Nejsou žádné nainstalované doplňky/aplikace" -#: ../../mod/admin.php:573 -msgid "Closed" -msgstr "Uzavřeno" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Povolit připojení aplikacím" -#: ../../mod/admin.php:574 -msgid "Requires approval" -msgstr "Vyžaduje schválení" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "VraÅ¥te se do vaší aplikace a zadejte tento bezpečnostní kód:" -#: ../../mod/admin.php:575 -msgid "Open" -msgstr "Otevřená" +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Pro pokračování se prosím přihlaste." -#: ../../mod/admin.php:579 -msgid "No SSL policy, links will track page SSL state" -msgstr "Žádná SSL politika, odkazy budou následovat stránky SSL stav" +#: ../../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 "Chcete umožnit této aplikaci přístup k vaÅ¡im příspěvkům a kontaktům a/nebo k vytváření VaÅ¡ich nových příspěvků?" -#: ../../mod/admin.php:580 -msgid "Force all links to use SSL" -msgstr "Vyžadovat u vÅ¡ech odkazů použití SSL" +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Vzdálené soukromé informace nejsou k dispozici." -#: ../../mod/admin.php:581 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)" +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Viditelné pro:" -#: ../../mod/admin.php:590 -msgid "File upload" -msgstr "Nahrání souborů" - -#: ../../mod/admin.php:591 -msgid "Policies" -msgstr "Politiky" +#: ../../mod/notes.php:44 ../../boot.php:2145 +msgid "Personal Notes" +msgstr "Osobní poznámky" -#: ../../mod/admin.php:592 -msgid "Advanced" -msgstr "Pokročilé" +#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148 +#: ../../include/event.php:11 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" -#: ../../mod/admin.php:593 -msgid "Performance" -msgstr "Výkonnost" +#: ../../mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Časová konverze" -#: ../../mod/admin.php:594 +#: ../../mod/localtime.php:26 msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server." - -#: ../../mod/admin.php:597 -msgid "Site name" -msgstr "Název webu" - -#: ../../mod/admin.php:598 -msgid "Banner/Logo" -msgstr "Banner/logo" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách" -#: ../../mod/admin.php:599 -msgid "Additional Info" -msgstr "Dodatečné informace" +#: ../../mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "UTC čas: %s" -#: ../../mod/admin.php:599 -msgid "" -"For public servers: you can add additional information here that will be " -"listed at dir.friendica.com/siteinfo." -msgstr "Pro veřejné servery: zde můžete doplnit dodatečné informace, které budou uvedeny v seznamu na dir.friendica.com/siteinfo." +#: ../../mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Aktuální časové pásmo: %s" -#: ../../mod/admin.php:600 -msgid "System language" -msgstr "Systémový jazyk" +#: ../../mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Převedený lokální čas : %s" -#: ../../mod/admin.php:601 -msgid "System theme" -msgstr "Grafická Å¡ablona systému " +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Prosím, vyberte své časové pásmo:" -#: ../../mod/admin.php:601 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Defaultní systémové téma - může být změněno v uživatelských profilech - změnit theme settings" +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Šťouchanec" -#: ../../mod/admin.php:602 -msgid "Mobile system theme" -msgstr "Systémové téma zobrazení pro mobilní zařízení" +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "někoho Å¡Å¥ouchnout nebo mu provést jinou věc" -#: ../../mod/admin.php:602 -msgid "Theme for mobile devices" -msgstr "Téma zobrazení pro mobilní zařízení" +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Příjemce" -#: ../../mod/admin.php:603 -msgid "SSL link policy" -msgstr "Politika SSL odkazů" +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Vyberte, co si přejete příjemci udělat" -#: ../../mod/admin.php:603 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Určuje, zda-li budou generované odkazy používat SSL" +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Změnit tento příspěvek na soukromý" -#: ../../mod/admin.php:604 -msgid "Old style 'Share'" -msgstr "Sdílení \"postaru\"" +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Celkový limit pozvánek byl překročen" -#: ../../mod/admin.php:604 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Deaktivovat bbcode element \"share\" pro opakující se položky." +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : není platná e-mailová adresa." -#: ../../mod/admin.php:605 -msgid "Hide help entry from navigation menu" -msgstr "skrýt nápovědu z navigačního menu" +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Prosím přidejte se k nám na Friendice" -#: ../../mod/admin.php:605 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Skryje menu ze stránek Nápověda z navigačního menu. Nápovědu můžete stále zobrazit přímo zadáním /help." +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limit pozvánek byl překročen. Prosím kontaktujte vaÅ¡eho administrátora webu." -#: ../../mod/admin.php:606 -msgid "Single user instance" -msgstr "Jednouživatelská instance" +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Doručení zprávy se nezdařilo." -#: ../../mod/admin.php:606 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele" +#: ../../mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d zpráva odeslána." +msgstr[1] "%d zprávy odeslány." +msgstr[2] "%d zprávy odeslány." -#: ../../mod/admin.php:607 -msgid "Maximum image size" -msgstr "Maximální velikost obrázků" +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Nemáte k dispozici žádné další pozvánky" -#: ../../mod/admin.php:607 +#: ../../mod/invite.php:120 +#, php-format msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximální velikost v bajtech nahraných obrázků. Defaultní je 0, což znamená neomezeno." - -#: ../../mod/admin.php:608 -msgid "Maximum image length" -msgstr "Maximální velikost obrázků" +"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 "NavÅ¡tivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí." -#: ../../mod/admin.php:608 +#: ../../mod/invite.php:122 +#, php-format msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Maximální délka v pixelech delší stránky nahrávaných obrázků. Defaultně je -1, což označuje bez limitu" - -#: ../../mod/admin.php:609 -msgid "JPEG image quality" -msgstr "JPEG kvalita obrázku" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "K akceptaci této pozvánky prosím navÅ¡tivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru." -#: ../../mod/admin.php:609 +#: ../../mod/invite.php:123 +#, php-format msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Nahrávaný JPEG bude uložen se zadanou kvalitou v rozmezí [0-100]. Defaultní je 100, což znamená plnou kvalitu." - -#: ../../mod/admin.php:611 -msgid "Register policy" -msgstr "Politika registrace" - -#: ../../mod/admin.php:612 -msgid "Maximum Daily Registrations" -msgstr "Maximální počet denních registrací" +"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 "Friendica servery jsou vÅ¡echny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. NavÅ¡tivte %s pro seznam alternativních Friendica serverů kde se můžete přidat." -#: ../../mod/admin.php:612 +#: ../../mod/invite.php:126 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 "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den.\nPokud je registrace zakázána, toto nastavení nemá žádný efekt." - -#: ../../mod/admin.php:613 -msgid "Register text" -msgstr "Registrace textu" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy." -#: ../../mod/admin.php:613 -msgid "Will be displayed prominently on the registration page." -msgstr "Bude zřetelně zobrazeno na registrační stránce." +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "Poslat pozvánky" -#: ../../mod/admin.php:614 -msgid "Accounts abandoned after x days" -msgstr "Účet je opuÅ¡těn po x dnech" +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Zadejte e-mailové adresy, jednu na řádek:" -#: ../../mod/admin.php:614 +#: ../../mod/invite.php:135 msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Neztrácejte systémové zdroje kontaktováním externích webů s opuÅ¡těnými účty. Zadejte 0 pro žádný časový limit." +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť." -#: ../../mod/admin.php:615 -msgid "Allowed friend domains" -msgstr "Povolené domény přátel" +#: ../../mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Budete muset zadat kód této pozvánky: $invite_code" -#: ../../mod/admin.php:615 +#: ../../mod/invite.php:137 msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Čárkou oddělený seznam domén, kterým je povoleno navazovat přátelství s tímto webem. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu." - -#: ../../mod/admin.php:616 -msgid "Allowed email domains" -msgstr "Povolené e-mailové domény" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:" -#: ../../mod/admin.php:616 +#: ../../mod/invite.php:139 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 "Čárkou oddělený seznam domén emalových adres, kterým je povoleno provádět registraci na tomto webu. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu." +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navÅ¡tivte http://friendica.com" -#: ../../mod/admin.php:617 -msgid "Block public" -msgstr "Blokovat veřejnost" +#: ../../mod/photos.php:52 ../../boot.php:2124 +msgid "Photo Albums" +msgstr "Fotoalba" -#: ../../mod/admin.php:617 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Označemím přepínače zablokujete veřejný přístup ke vÅ¡em jinak veřejně přístupným soukromým stránkám uživatelům, kteří nebudou přihlášeni." +#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1760 ../../mod/photos.php:1772 +#: ../../view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Fotogalerie kontaktu" -#: ../../mod/admin.php:618 -msgid "Force publish" -msgstr "Publikovat" +#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 +msgid "Upload New Photos" +msgstr "Nahrát nové fotografie" -#: ../../mod/admin.php:618 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Označením přepínače budou včechny profily na tomto webu uvedeny v adresáři webu." +#: ../../mod/photos.php:144 +msgid "Contact information unavailable" +msgstr "Kontakt byl zablokován" -#: ../../mod/admin.php:619 -msgid "Global directory update URL" -msgstr "aktualizace URL adresy Globálního adresáře " +#: ../../mod/photos.php:165 +msgid "Album not found." +msgstr "Album nenalezeno." -#: ../../mod/admin.php:619 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL adresa k aktualizaci globálního adresáře. Pokud není zadáno, funkce globálního adresáře není dostupná žádné aplikaci." +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +msgid "Delete Album" +msgstr "Smazat album" -#: ../../mod/admin.php:620 -msgid "Allow threaded items" -msgstr "Povolit vícevláknové zpracování obsahu" +#: ../../mod/photos.php:198 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Opravdu chcete smazat toto foto album a vÅ¡echny jeho fotografie?" -#: ../../mod/admin.php:620 -msgid "Allow infinite level threading for items on this site." -msgstr "Povolit zpracování obsahu tohoto webu neomezeným počtem paralelních vláken." +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 +msgid "Delete Photo" +msgstr "Smazat fotografii" -#: ../../mod/admin.php:621 -msgid "Private posts by default for new users" -msgstr "Nastavit pro nové uživatele příspěvky jako soukromé" +#: ../../mod/photos.php:287 +msgid "Do you really want to delete this photo?" +msgstr "Opravdu chcete smazat tuto fotografii?" -#: ../../mod/admin.php:621 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Nastavit defaultní práva pro příspěvky od vÅ¡ech nových členů na výchozí soukromou skupinu raději než jako veřejné." +#: ../../mod/photos.php:662 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s byl označen v %2$s uživatelem %3$s" -#: ../../mod/admin.php:622 -msgid "Don't include post content in email notifications" -msgstr "Nezahrnovat obsah příspěvků v emailových upozorněních" +#: ../../mod/photos.php:662 +msgid "a photo" +msgstr "fotografie" -#: ../../mod/admin.php:622 -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 " V mailových upozorněních, které jsou odesílány z tohoto webu jako soukromé zprávy, nejsou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. " +#: ../../mod/photos.php:767 +msgid "Image exceeds size limit of " +msgstr "Velikost obrázku překračuje limit velikosti" -#: ../../mod/admin.php:623 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace." +#: ../../mod/photos.php:775 +msgid "Image file is empty." +msgstr "Soubor obrázku je prázdný." -#: ../../mod/admin.php:623 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy." +#: ../../mod/photos.php:930 +msgid "No photos selected" +msgstr "Není vybrána žádná fotografie" -#: ../../mod/admin.php:624 -msgid "Don't embed private images in posts" -msgstr "Nepovolit přidávání soukromých správ v příspěvcích" +#: ../../mod/photos.php:1094 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiÅ¡tě fotografií." -#: ../../mod/admin.php:624 -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 "Nereplikovat lokální soukromé fotografie v příspěvcích s přidáním kopie obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotografie se budou muset přihlásit a načíst každý obrázek, což může zabrat nějaký čas." +#: ../../mod/photos.php:1129 +msgid "Upload Photos" +msgstr "Nahrání fotografií " -#: ../../mod/admin.php:625 -msgid "Allow Users to set remote_self" -msgstr "Umožnit uživatelům nastavit " +#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 +msgid "New album name: " +msgstr "Název nového alba: " -#: ../../mod/admin.php:625 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." -msgstr "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako \"remote_self\" v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit vÅ¡echny správy tohoto kontaktu v uživatelově proudu." +#: ../../mod/photos.php:1134 +msgid "or existing album name: " +msgstr "nebo stávající název alba: " -#: ../../mod/admin.php:626 -msgid "Block multiple registrations" -msgstr "Blokovat více registrací" +#: ../../mod/photos.php:1135 +msgid "Do not show a status post for this upload" +msgstr "Nezobrazovat stav pro tento upload" -#: ../../mod/admin.php:626 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky." +#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 +msgid "Permissions" +msgstr "Oprávnění:" -#: ../../mod/admin.php:627 -msgid "OpenID support" -msgstr "podpora OpenID" +#: ../../mod/photos.php:1148 +msgid "Private Photo" +msgstr "Soukromé Fotografie" -#: ../../mod/admin.php:627 -msgid "OpenID support for registration and logins." -msgstr "Podpora OpenID pro registraci a přihlaÅ¡ování." +#: ../../mod/photos.php:1149 +msgid "Public Photo" +msgstr "Veřejné Fotografie" -#: ../../mod/admin.php:628 -msgid "Fullname check" -msgstr "kontrola úplného jména" +#: ../../mod/photos.php:1212 +msgid "Edit Album" +msgstr "Edituj album" -#: ../../mod/admin.php:628 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Přimět uživatele k registraci s mezerou mezi jménu a příjmením v poli Celé jméno, jako antispamové opatření." +#: ../../mod/photos.php:1218 +msgid "Show Newest First" +msgstr "Zobrazit nejprve nejnovější:" -#: ../../mod/admin.php:629 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 Regulární výrazy" +#: ../../mod/photos.php:1220 +msgid "Show Oldest First" +msgstr "Zobrazit nejprve nejstarší:" -#: ../../mod/admin.php:629 -msgid "Use PHP UTF8 regular expressions" -msgstr "Použít PHP UTF8 regulární výrazy." +#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 +msgid "View Photo" +msgstr "Zobraz fotografii" -#: ../../mod/admin.php:630 -msgid "Show Community Page" -msgstr "Zobrazit stránku komunity" +#: ../../mod/photos.php:1294 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen." -#: ../../mod/admin.php:630 -msgid "" -"Display a Community page showing all recent public postings on this site." -msgstr "Zobrazit Komunitní stránku zobrazující vÅ¡echny veřejné příspěvky napsané na této stránce." +#: ../../mod/photos.php:1296 +msgid "Photo not available" +msgstr "Fotografie není k dispozici" -#: ../../mod/admin.php:631 -msgid "Enable OStatus support" -msgstr "Zapnout podporu OStatus" +#: ../../mod/photos.php:1352 +msgid "View photo" +msgstr "Zobrazit obrázek" -#: ../../mod/admin.php:631 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). VeÅ¡kerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění." +#: ../../mod/photos.php:1352 +msgid "Edit photo" +msgstr "Editovat fotografii" -#: ../../mod/admin.php:632 -msgid "OStatus conversation completion interval" -msgstr "Interval dokončení konverzace OStatus" +#: ../../mod/photos.php:1353 +msgid "Use as profile photo" +msgstr "Použít jako profilovou fotografii" -#: ../../mod/admin.php:632 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "Jak často by mělo probíhat ověřování pro nové přísvěvky v konverzacích OStatus? Toto může být velmi výkonově náročný úkol." +#: ../../mod/photos.php:1378 +msgid "View Full Size" +msgstr "Zobrazit v plné velikosti" -#: ../../mod/admin.php:633 -msgid "Enable Diaspora support" -msgstr "Povolit podporu Diaspora" +#: ../../mod/photos.php:1457 +msgid "Tags: " +msgstr "Å títky: " -#: ../../mod/admin.php:633 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora." +#: ../../mod/photos.php:1460 +msgid "[Remove any tag]" +msgstr "[Odstranit vÅ¡echny Å¡títky]" -#: ../../mod/admin.php:634 -msgid "Only allow Friendica contacts" -msgstr "Povolit pouze Friendica kontakty" +#: ../../mod/photos.php:1500 +msgid "Rotate CW (right)" +msgstr "Rotovat po směru hodinových ručiček (doprava)" -#: ../../mod/admin.php:634 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "VÅ¡echny kontakty musí používat Friendica protokol. VÅ¡chny jiné zabudované komunikační protokoly budou zablokované." +#: ../../mod/photos.php:1501 +msgid "Rotate CCW (left)" +msgstr "Rotovat proti směru hodinových ručiček (doleva)" -#: ../../mod/admin.php:635 -msgid "Verify SSL" -msgstr "Ověřit SSL" +#: ../../mod/photos.php:1503 +msgid "New album name" +msgstr "Nové jméno alba" -#: ../../mod/admin.php:635 -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 "Pokud si přejete, můžete vynutit striktní ověřování certifikátů. To znamená že se nebudete moci připojit k žádnému serveru s vlastním SSL certifikátem." +#: ../../mod/photos.php:1506 +msgid "Caption" +msgstr "Titulek" -#: ../../mod/admin.php:636 -msgid "Proxy user" -msgstr "Proxy uživatel" +#: ../../mod/photos.php:1508 +msgid "Add a Tag" +msgstr "Přidat Å¡títek" -#: ../../mod/admin.php:637 -msgid "Proxy URL" -msgstr "Proxy URL adresa" +#: ../../mod/photos.php:1512 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: ../../mod/admin.php:638 -msgid "Network timeout" -msgstr "čas síťového spojení vyprÅ¡elo (timeout)" +#: ../../mod/photos.php:1521 +msgid "Private photo" +msgstr "Soukromé fotografie" -#: ../../mod/admin.php:638 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno)." +#: ../../mod/photos.php:1522 +msgid "Public photo" +msgstr "Veřejné fotografie" -#: ../../mod/admin.php:639 -msgid "Delivery interval" -msgstr "Interval doručování" +#: ../../mod/photos.php:1544 ../../include/conversation.php:1090 +msgid "Share" +msgstr "Sdílet" -#: ../../mod/admin.php:639 -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 "Prodleva mezi doručovacími procesy běžícími na pozadí snižuje zátěž systému. Doporučené nastavení: 4-5 pro sdílené instalace, 2-3 pro virtuální soukromé servery, 0-1 pro velké dedikované servery." +#: ../../mod/photos.php:1817 +msgid "Recent Photos" +msgstr "Aktuální fotografie" -#: ../../mod/admin.php:640 -msgid "Poll interval" -msgstr "Dotazovací interval" +#: ../../mod/regmod.php:55 +msgid "Account approved." +msgstr "Účet schválen." -#: ../../mod/admin.php:640 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Tímto nastavením ovlivníte prodlení mezi aktualizačními procesy běžícími na pozadí, čímž můžete snížit systémovou zátěž. Pokud 0, použijte doručovací interval." +#: ../../mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrace zruÅ¡ena pro %s" -#: ../../mod/admin.php:641 -msgid "Maximum Load Average" -msgstr "Maximální průměrné zatížení" +#: ../../mod/regmod.php:104 +msgid "Please login." +msgstr "Přihlaste se, prosím." -#: ../../mod/admin.php:641 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximální zatížení systému před pozastavením procesů zajiÅ¡Å¥ujících doručování aktualizací - defaultně 50" +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Přesunout účet" -#: ../../mod/admin.php:643 -msgid "Use MySQL full text engine" -msgstr "Použít fulltextový vyhledávací stroj MySQL" +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Můžete importovat účet z jiného Friendica serveru." -#: ../../mod/admin.php:643 +#: ../../mod/uimport.php:68 msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Aktivuje fulltextový vyhledávací stroj. Zrychluje vyhledávání ale pouze pro vyhledávání čtyř a více znaků" - -#: ../../mod/admin.php:644 -msgid "Suppress Language" -msgstr "Potlačit Jazyk" - -#: ../../mod/admin.php:644 -msgid "Suppress language information in meta information about a posting." -msgstr "Potlačit jazykové informace v meta informacích o příspěvcích" +"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 "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně vÅ¡ech kontaktů. Zároveň se pokusíme informovat vÅ¡echny VaÅ¡e přátele, že jste se sem přestěhovali." -#: ../../mod/admin.php:645 -msgid "Path to item cache" -msgstr "Cesta k položkám vyrovnávací paměti" +#: ../../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 "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory" -#: ../../mod/admin.php:646 -msgid "Cache duration in seconds" -msgstr "Doba platnosti vyrovnávací paměti v sekundách" +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "Soubor s účtem" -#: ../../mod/admin.php:646 +#: ../../mod/uimport.php:70 msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "Jak dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den). Pro vypnutí funkce vyrovnávací paměti nastavte hodnotu na -1." +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "K exportu VaÅ¡eho účtu, jděte do \"Nastavení->Export vaÅ¡ich osobních dat\" a zvolte \" Export účtu\"" -#: ../../mod/admin.php:647 -msgid "Maximum numbers of comments per post" -msgstr "Maximální počet komentářů k příspěvku" +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Položka není k dispozici." -#: ../../mod/admin.php:647 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "Kolik komentářů by mělo být zobrazeno k každému příspěvku? Defaultní hodnota je 100." +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Položka nebyla nalezena." -#: ../../mod/admin.php:648 -msgid "Path for lock file" -msgstr "Cesta k souboru zámku" +#: ../../boot.php:744 +msgid "Delete this item?" +msgstr "Odstranit tuto položku?" -#: ../../mod/admin.php:649 -msgid "Temp path" -msgstr "Cesta k dočasným souborům" +#: ../../boot.php:747 +msgid "show fewer" +msgstr "zobrazit méně" -#: ../../mod/admin.php:650 -msgid "Base path to installation" -msgstr "Základní cesta k instalaci" +#: ../../boot.php:1117 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb." -#: ../../mod/admin.php:651 -msgid "Disable picture proxy" -msgstr "Vypnutí obrázkové proxy" +#: ../../boot.php:1235 +msgid "Create a New Account" +msgstr "Vytvořit nový účet" -#: ../../mod/admin.php:651 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "Obrázková proxi zvyÅ¡uje výkonnost a soukromí. Neměla by být použita na systémech s pomalým připojením k síti." +#: ../../boot.php:1260 ../../include/nav.php:73 +msgid "Logout" +msgstr "Odhlásit se" -#: ../../mod/admin.php:653 -msgid "New base url" -msgstr "Nová výchozí url adresa" +#: ../../boot.php:1261 ../../include/nav.php:92 +msgid "Login" +msgstr "Přihlásit se" -#: ../../mod/admin.php:655 -msgid "Enable noscrape" -msgstr "Povolit noscrape" +#: ../../boot.php:1263 +msgid "Nickname or Email address: " +msgstr "Přezdívka nebo e-mailová adresa:" -#: ../../mod/admin.php:655 -msgid "" -"The noscrape feature speeds up directory submissions by using JSON data " -"instead of HTML scraping." -msgstr "Funkčnost noscrape urychlí odesílání adresářů použitím JSON místo HTML." +#: ../../boot.php:1264 +msgid "Password: " +msgstr "Heslo: " -#: ../../mod/admin.php:672 -msgid "Update has been marked successful" -msgstr "Aktualizace byla označena jako úspěšná." +#: ../../boot.php:1265 +msgid "Remember me" +msgstr "Pamatuj si mne" -#: ../../mod/admin.php:680 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Aktualizace struktury databáze %s byla úspěšně aplikována." +#: ../../boot.php:1268 +msgid "Or login using OpenID: " +msgstr "Nebo přihlášení pomocí OpenID: " -#: ../../mod/admin.php:683 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "Provádění aktualizace databáze %s skončilo chybou: %s" +#: ../../boot.php:1274 +msgid "Forgot your password?" +msgstr "Zapomněli jste své heslo?" -#: ../../mod/admin.php:695 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Vykonávání %s selhalo s chybou: %s" +#: ../../boot.php:1277 +msgid "Website Terms of Service" +msgstr "Podmínky použití serveru" -#: ../../mod/admin.php:698 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Aktualizace %s byla úspěšně aplikována." +#: ../../boot.php:1278 +msgid "terms of service" +msgstr "podmínky použití" -#: ../../mod/admin.php:702 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Aktualizace %s nevrátila žádný status. Není zřejmé, jestli byla úspěšná." +#: ../../boot.php:1280 +msgid "Website Privacy Policy" +msgstr "Pravidla ochrany soukromí serveru" -#: ../../mod/admin.php:704 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "Nebyla nalezena žádná další aktualizační funkce %s která by měla být volána." +#: ../../boot.php:1281 +msgid "privacy policy" +msgstr "Ochrana soukromí" -#: ../../mod/admin.php:723 -msgid "No failed updates." -msgstr "Žádné neúspěšné aktualizace." +#: ../../boot.php:1414 +msgid "Requested account is not available." +msgstr "Požadovaný účet není dostupný." -#: ../../mod/admin.php:724 -msgid "Check database structure" -msgstr "Ověření struktury databáze" +#: ../../boot.php:1496 ../../boot.php:1630 +#: ../../include/profile_advanced.php:84 +msgid "Edit profile" +msgstr "Upravit profil" -#: ../../mod/admin.php:729 -msgid "Failed Updates" -msgstr "Neúspěšné aktualizace" +#: ../../boot.php:1595 +msgid "Message" +msgstr "Zpráva" -#: ../../mod/admin.php:730 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status." +#: ../../boot.php:1601 ../../include/nav.php:173 +msgid "Profiles" +msgstr "Profily" -#: ../../mod/admin.php:731 -msgid "Mark success (if update was manually applied)" -msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)" +#: ../../boot.php:1601 +msgid "Manage/edit profiles" +msgstr "Spravovat/upravit profily" -#: ../../mod/admin.php:732 -msgid "Attempt to execute this update step automatically" -msgstr "Pokusit se provést tuto aktualizaci automaticky." +#: ../../boot.php:1701 +msgid "Network:" +msgstr "Síť:" -#: ../../mod/admin.php:764 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "\n\t\t\tDrahý %1$s,\n\t\t\t\tadministrátor webu %2$s pro Vás vytvořil uživatelský účet." +#: ../../boot.php:1731 ../../boot.php:1817 +msgid "g A l F d" +msgstr "g A l F d" -#: ../../mod/admin.php:767 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "" +#: ../../boot.php:1732 ../../boot.php:1818 +msgid "F d" +msgstr "d. F" -#: ../../mod/admin.php:811 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s uživatel blokován/odblokován" -msgstr[1] "%s uživatelů blokováno/odblokováno" -msgstr[2] "%s uživatelů blokováno/odblokováno" +#: ../../boot.php:1777 ../../boot.php:1858 +msgid "[today]" +msgstr "[Dnes]" -#: ../../mod/admin.php:818 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s uživatel smazán" -msgstr[1] "%s uživatelů smazáno" -msgstr[2] "%s uživatelů smazáno" +#: ../../boot.php:1789 +msgid "Birthday Reminders" +msgstr "Připomínka narozenin" -#: ../../mod/admin.php:857 -#, php-format -msgid "User '%s' deleted" -msgstr "Uživatel '%s' smazán" +#: ../../boot.php:1790 +msgid "Birthdays this week:" +msgstr "Narozeniny tento týden:" -#: ../../mod/admin.php:865 -#, php-format -msgid "User '%s' unblocked" -msgstr "Uživatel '%s' odblokován" +#: ../../boot.php:1851 +msgid "[No description]" +msgstr "[Žádný popis]" -#: ../../mod/admin.php:865 -#, php-format -msgid "User '%s' blocked" -msgstr "Uživatel '%s' blokován" +#: ../../boot.php:1869 +msgid "Event Reminders" +msgstr "Připomenutí událostí" -#: ../../mod/admin.php:960 -msgid "Add User" -msgstr "Přidat Uživatele" +#: ../../boot.php:1870 +msgid "Events this week:" +msgstr "Události tohoto týdne:" -#: ../../mod/admin.php:961 -msgid "select all" -msgstr "Vybrat vÅ¡e" +#: ../../boot.php:2107 ../../include/nav.php:76 +msgid "Status" +msgstr "Stav" -#: ../../mod/admin.php:962 -msgid "User registrations waiting for confirm" -msgstr "Registrace uživatele čeká na potvrzení" +#: ../../boot.php:2110 +msgid "Status Messages and Posts" +msgstr "Statusové zprávy a příspěvky " -#: ../../mod/admin.php:963 -msgid "User waiting for permanent deletion" -msgstr "Uživatel čeká na trvalé smazání" +#: ../../boot.php:2117 +msgid "Profile Details" +msgstr "Detaily profilu" -#: ../../mod/admin.php:964 -msgid "Request date" -msgstr "Datum žádosti" +#: ../../boot.php:2128 ../../boot.php:2131 ../../include/nav.php:79 +msgid "Videos" +msgstr "Videa" -#: ../../mod/admin.php:965 -msgid "No registrations." -msgstr "Žádné registrace." +#: ../../boot.php:2141 +msgid "Events and Calendar" +msgstr "Události a kalendář" -#: ../../mod/admin.php:967 -msgid "Deny" -msgstr "Odmítnout" +#: ../../boot.php:2148 +msgid "Only You Can See This" +msgstr "Toto můžete vidět jen Vy" -#: ../../mod/admin.php:971 -msgid "Site admin" -msgstr "Site administrátor" +#: ../../object/Item.php:94 +msgid "This entry was edited" +msgstr "Tento záznam byl editován" -#: ../../mod/admin.php:972 -msgid "Account expired" -msgstr "Účtu vyprÅ¡ela platnost" +#: ../../object/Item.php:208 +msgid "ignore thread" +msgstr "ignorovat vlákno" -#: ../../mod/admin.php:975 -msgid "New User" -msgstr "Nový uživatel" +#: ../../object/Item.php:209 +msgid "unignore thread" +msgstr "přestat ignorovat vlákno" -#: ../../mod/admin.php:976 ../../mod/admin.php:977 -msgid "Register date" -msgstr "Datum registrace" +#: ../../object/Item.php:210 +msgid "toggle ignore status" +msgstr "přepnout stav Ignorování" -#: ../../mod/admin.php:976 ../../mod/admin.php:977 -msgid "Last login" -msgstr "Datum posledního přihlášení" +#: ../../object/Item.php:213 +msgid "ignored" +msgstr "ignorován" -#: ../../mod/admin.php:976 ../../mod/admin.php:977 -msgid "Last item" -msgstr "Poslední položka" +#: ../../object/Item.php:316 ../../include/conversation.php:666 +msgid "Categories:" +msgstr "Kategorie:" -#: ../../mod/admin.php:976 -msgid "Deleted since" -msgstr "Smazán od" +#: ../../object/Item.php:317 ../../include/conversation.php:667 +msgid "Filed under:" +msgstr "Vyplněn pod:" -#: ../../mod/admin.php:979 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Vybraní uživatelé budou smazáni!\\n\\n VÅ¡e, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\n Opravdu pokračovat?" +#: ../../object/Item.php:329 +msgid "via" +msgstr "přes" -#: ../../mod/admin.php:980 +#: ../../include/dbstructure.php:26 +#, php-format 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 "Uživatel {0} bude smazán!\\n\\n VÅ¡e, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\\n\\n Opravdu pokračovat?" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\n\t\t\tThe friendica vývojáři uvolnili nedávno aktualizaci %s,\n\t\t\tale při pokusu o její instalaci se něco velmi nepovedlo.\n\t\t\tJe třeba to opravit a já to sám nedokážu. Prosím kontaktuj\n\t\t\tfriendica vývojáře, pokud mi s tím nepomůžeÅ¡ ty sám. Moje databáze může být poÅ¡kozena." -#: ../../mod/admin.php:990 -msgid "Name of the new user." -msgstr "Jméno nového uživatele" +#: ../../include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Chybová zpráva je\n[pre]%s[/pre]" -#: ../../mod/admin.php:991 -msgid "Nickname" -msgstr "Přezdívka" +#: ../../include/dbstructure.php:162 +msgid "Errors encountered creating database tables." +msgstr "Při vytváření databázových tabulek doÅ¡lo k chybám." -#: ../../mod/admin.php:991 -msgid "Nickname of the new user." -msgstr "Přezdívka nového uživatele." +#: ../../include/dbstructure.php:220 +msgid "Errors encountered performing database changes." +msgstr "Při provádění databázových změn doÅ¡lo k chybám." -#: ../../mod/admin.php:992 -msgid "Email address of the new user." -msgstr "Emailová adresa nového uživatele." +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Odhlášen." -#: ../../mod/admin.php:1025 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s zakázán." +#: ../../include/auth.php:128 ../../include/user.php:67 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. " -#: ../../mod/admin.php:1029 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s povolen." +#: ../../include/auth.php:128 ../../include/user.php:67 +msgid "The error message was:" +msgstr "Chybová zpráva byla:" -#: ../../mod/admin.php:1039 ../../mod/admin.php:1255 -msgid "Disable" -msgstr "Zakázat" +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Přidat nový kontakt" -#: ../../mod/admin.php:1041 ../../mod/admin.php:1257 -msgid "Enable" -msgstr "Povolit" +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Zadejte adresu nebo umístění webu" -#: ../../mod/admin.php:1064 ../../mod/admin.php:1285 -msgid "Toggle" -msgstr "Přepnout" +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Příklad: jan@příklad.cz, http://příklad.cz/jana" -#: ../../mod/admin.php:1072 ../../mod/admin.php:1295 -msgid "Author: " -msgstr "Autor: " +#: ../../include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "Pozvánka %d k dispozici" +msgstr[1] "Pozvánky %d k dispozici" +msgstr[2] "Pozvánky %d k dispozici" -#: ../../mod/admin.php:1073 ../../mod/admin.php:1296 -msgid "Maintainer: " -msgstr "Správce: " +#: ../../include/contact_widgets.php:30 +msgid "Find People" +msgstr "Nalézt lidi" -#: ../../mod/admin.php:1215 -msgid "No themes found." -msgstr "Nenalezeny žádná témata." +#: ../../include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Zadejte jméno nebo zájmy" -#: ../../mod/admin.php:1277 -msgid "Screenshot" -msgstr "Snímek obrazovky" +#: ../../include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Připojit / Následovat" -#: ../../mod/admin.php:1323 -msgid "[Experimental]" -msgstr "[Experimentální]" +#: ../../include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Příklady: Robert Morgenstein, rybaření" -#: ../../mod/admin.php:1324 -msgid "[Unsupported]" -msgstr "[Nepodporováno]" +#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526 +msgid "Similar Interests" +msgstr "Podobné zájmy" -#: ../../mod/admin.php:1351 -msgid "Log settings updated." -msgstr "Nastavení protokolu aktualizováno." +#: ../../include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Náhodný Profil" -#: ../../mod/admin.php:1407 -msgid "Clear" -msgstr "Vyčistit" +#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528 +msgid "Invite Friends" +msgstr "Pozvat přátele" -#: ../../mod/admin.php:1413 -msgid "Enable Debugging" -msgstr "Povolit ladění" +#: ../../include/contact_widgets.php:71 +msgid "Networks" +msgstr "Sítě" -#: ../../mod/admin.php:1414 -msgid "Log file" -msgstr "Soubor s logem" +#: ../../include/contact_widgets.php:74 +msgid "All Networks" +msgstr "VÅ¡echny sítě" -#: ../../mod/admin.php:1414 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Musí být editovatelné web serverem. Relativní cesta k vaÅ¡emu kořenovému adresáři Friendica" +#: ../../include/contact_widgets.php:104 ../../include/features.php:60 +msgid "Saved Folders" +msgstr "Uložené složky" -#: ../../mod/admin.php:1415 -msgid "Log level" -msgstr "Úroveň auditu" +#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 +msgid "Everything" +msgstr "VÅ¡echno" -#: ../../mod/admin.php:1465 -msgid "Close" -msgstr "Zavřít" +#: ../../include/contact_widgets.php:136 +msgid "Categories" +msgstr "Kategorie" -#: ../../mod/admin.php:1471 -msgid "FTP Host" -msgstr "Hostitel FTP" +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Obecné funkčnosti" -#: ../../mod/admin.php:1472 -msgid "FTP Path" -msgstr "Cesta FTP" +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "Vícenásobné profily" -#: ../../mod/admin.php:1473 -msgid "FTP User" -msgstr "FTP uživatel" +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Schopnost vytvořit vícenásobné profily" -#: ../../mod/admin.php:1474 -msgid "FTP Password" -msgstr "FTP heslo" +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "Nastavení vytváření příspěvků" -#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Obrázek překročil limit velikosti %d" +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "Richtext Editor" -#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807 -#: ../../mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Obrázek není možné zprocesovat" +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "Povolit richtext editor" -#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Nahrání obrázku selhalo." +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Náhled příspěvku" -#: ../../mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Vítá Vás %s" +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Povolit náhledy příspěvků a komentářů před jejich zveřejněním" -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Chyba OpenID protokolu. Navrátilo se žádné ID." +#: ../../include/features.php:33 +msgid "Auto-mention Forums" +msgstr "Automaticky zmíněná Fóra" -#: ../../mod/openid.php:53 +#: ../../include/features.php:33 msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Nenalezen účet a OpenID registrace na tomto serveru není dovolena." - -#: ../../mod/network.php:136 -msgid "Search Results For:" -msgstr "Výsledky hledání pro:" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně" -#: ../../mod/network.php:179 ../../mod/search.php:21 -msgid "Remove term" -msgstr "Odstranit termín" - -#: ../../mod/network.php:350 -msgid "Commented Order" -msgstr "Dle komentářů" +#: ../../include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "Síťové postranní widgety" -#: ../../mod/network.php:353 -msgid "Sort by Comment Date" -msgstr "Řadit podle data komentáře" +#: ../../include/features.php:39 +msgid "Search by Date" +msgstr "Vyhledávat dle Data" -#: ../../mod/network.php:356 -msgid "Posted Order" -msgstr "Dle data" +#: ../../include/features.php:39 +msgid "Ability to select posts by date ranges" +msgstr "Možnost označit příspěvky dle časového intervalu" -#: ../../mod/network.php:359 -msgid "Sort by Post Date" -msgstr "Řadit podle data příspěvku" +#: ../../include/features.php:40 +msgid "Group Filter" +msgstr "Skupinový Filtr" -#: ../../mod/network.php:368 -msgid "Posts that mention or involve you" -msgstr "Příspěvky, které Vás zmiňují nebo zahrnují" +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny" -#: ../../mod/network.php:374 -msgid "New" -msgstr "Nové" +#: ../../include/features.php:41 +msgid "Network Filter" +msgstr "Síťový Filtr" -#: ../../mod/network.php:377 -msgid "Activity Stream - by date" -msgstr "Proud aktivit - dle data" +#: ../../include/features.php:41 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě" -#: ../../mod/network.php:383 -msgid "Shared Links" -msgstr "Sdílené odkazy" +#: ../../include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Uložit kritéria vyhledávání pro znovupoužití" -#: ../../mod/network.php:386 -msgid "Interesting Links" -msgstr "Zajímavé odkazy" +#: ../../include/features.php:47 +msgid "Network Tabs" +msgstr "Síťové záložky" -#: ../../mod/network.php:392 -msgid "Starred" -msgstr "S hvězdičkou" +#: ../../include/features.php:48 +msgid "Network Personal Tab" +msgstr "Osobní síťový záložka " -#: ../../mod/network.php:395 -msgid "Favourite Posts" -msgstr "Oblíbené přízpěvky" +#: ../../include/features.php:48 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval " -#: ../../mod/network.php:457 -#, 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] "Upozornění: Tato skupina obsahuje %s člena z nezabezpečené sítě." -msgstr[1] "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě." -msgstr[2] "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě." +#: ../../include/features.php:49 +msgid "Network New Tab" +msgstr "Nová záložka síť" -#: ../../mod/network.php:460 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení." +#: ../../include/features.php:49 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)" -#: ../../mod/network.php:514 ../../mod/content.php:119 -msgid "No such group" -msgstr "Žádná taková skupina" +#: ../../include/features.php:50 +msgid "Network Shared Links Tab" +msgstr "záložka Síťové sdílené odkazy " -#: ../../mod/network.php:531 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "Skupina je prázdná" +#: ../../include/features.php:50 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně" -#: ../../mod/network.php:538 ../../mod/content.php:134 -msgid "Group: " -msgstr "Skupina: " +#: ../../include/features.php:55 +msgid "Post/Comment Tools" +msgstr "Nástroje Příspěvků/Komentářů" -#: ../../mod/network.php:548 -msgid "Contact: " -msgstr "Kontakt: " +#: ../../include/features.php:56 +msgid "Multiple Deletion" +msgstr "Násobné mazání" -#: ../../mod/network.php:550 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení." +#: ../../include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "Označit a smazat více " -#: ../../mod/network.php:555 -msgid "Invalid contact." -msgstr "Neplatný kontakt." +#: ../../include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Editovat Odeslané příspěvky" -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- vyber -" +#: ../../include/features.php:57 +msgid "Edit and correct posts and comments after sending" +msgstr "Editovat a opravit příspěvky a komentáře po odeslání" -#: ../../mod/friendica.php:62 -msgid "This is Friendica, version" -msgstr "Toto je Friendica, verze" +#: ../../include/features.php:58 +msgid "Tagging" +msgstr "Å títkování" -#: ../../mod/friendica.php:63 -msgid "running at web location" -msgstr "běžící na webu" +#: ../../include/features.php:58 +msgid "Ability to tag existing posts" +msgstr "Schopnost přidat Å¡títky ke stávajícím příspvěkům" -#: ../../mod/friendica.php:65 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Pro získání dalších informací o projektu Friendica navÅ¡tivte prosím Friendica.com." +#: ../../include/features.php:59 +msgid "Post Categories" +msgstr "Kategorie příspěvků" -#: ../../mod/friendica.php:67 -msgid "Bug reports and issues: please visit" -msgstr "Pro hlášení chyb a námětů na změny navÅ¡tivte:" +#: ../../include/features.php:59 +msgid "Add categories to your posts" +msgstr "Přidat kategorie k VaÅ¡im příspěvkům" -#: ../../mod/friendica.php:68 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Návrhy, chválu, dary, apod. - prosím piÅ¡tě na \"info\" na Friendica - tečka com" +#: ../../include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Možnost řadit příspěvky do složek" -#: ../../mod/friendica.php:82 -msgid "Installed plugins/addons/apps:" -msgstr "Instalované pluginy/doplňky/aplikace:" +#: ../../include/features.php:61 +msgid "Dislike Posts" +msgstr "Označit příspěvky jako neoblíbené" -#: ../../mod/friendica.php:95 -msgid "No installed plugins/addons/apps" -msgstr "Nejsou žádné nainstalované doplňky/aplikace" +#: ../../include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Možnost označit příspěvky/komentáře jako neoblíbené" -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Aplikace" +#: ../../include/features.php:62 +msgid "Star Posts" +msgstr "Příspěvky s hvězdou" -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Žádné nainstalované aplikace." +#: ../../include/features.php:62 +msgid "Ability to mark special posts with a star indicator" +msgstr "Možnost označit příspěvky s indikátorem hvězdy" -#: ../../mod/photos.php:67 ../../mod/photos.php:1228 ../../mod/photos.php:1817 -msgid "Upload New Photos" -msgstr "Nahrát nové fotografie" +#: ../../include/features.php:63 +msgid "Mute Post Notifications" +msgstr "Utlumit upozornění na přísvěvky" -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "Kontakt byl zablokován" +#: ../../include/features.php:63 +msgid "Ability to mute notifications for a thread" +msgstr "Možnost stlumit upozornění pro vlákno" -#: ../../mod/photos.php:165 -msgid "Album not found." -msgstr "Album nenalezeno." +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "Chybí URL adresa." -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1206 -msgid "Delete Album" -msgstr "Smazat album" +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi." -#: ../../mod/photos.php:198 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Opravdu chcete smazat toto foto album a vÅ¡echny jeho fotografie?" +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál." -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1513 -msgid "Delete Photo" -msgstr "Smazat fotografii" +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "Uvedená adresa profilu neposkytuje dostatečné informace." -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "Opravdu chcete smazat tuto fotografii?" +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Autor nebo jméno nenalezeno" -#: ../../mod/photos.php:662 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s byl označen v %2$s uživatelem %3$s" +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Této adrese neodpovídá žádné URL prohlížeče." -#: ../../mod/photos.php:662 -msgid "a photo" -msgstr "fotografie" +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem." -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "Velikost obrázku překračuje limit velikosti" +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Použite mailo: před adresou k vynucení emailové kontroly." -#: ../../mod/photos.php:775 -msgid "Image file is empty." -msgstr "Soubor obrázku je prázdný." +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Zadaná adresa profilu patří do sítě, která byla na tomto serveru zakázána." -#: ../../mod/photos.php:930 -msgid "No photos selected" -msgstr "Není vybrána žádná fotografie" +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení." -#: ../../mod/photos.php:1094 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiÅ¡tě fotografií." +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Nepodařilo se získat kontaktní informace." -#: ../../mod/photos.php:1129 -msgid "Upload Photos" -msgstr "Nahrání fotografií " +#: ../../include/follow.php:258 +msgid "following" +msgstr "následující" -#: ../../mod/photos.php:1133 ../../mod/photos.php:1201 -msgid "New album name: " -msgstr "Název nového alba: " +#: ../../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 "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění může ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím, další skupinu s jiným názvem." -#: ../../mod/photos.php:1134 -msgid "or existing album name: " -msgstr "nebo stávající název alba: " +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Defaultní soukromá skrupina pro nové kontakty." -#: ../../mod/photos.php:1135 -msgid "Do not show a status post for this upload" -msgstr "Nezobrazovat stav pro tento upload" +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "VÅ¡ichni" -#: ../../mod/photos.php:1137 ../../mod/photos.php:1508 -msgid "Permissions" -msgstr "Oprávnění:" +#: ../../include/group.php:249 +msgid "edit" +msgstr "editovat" -#: ../../mod/photos.php:1148 -msgid "Private Photo" -msgstr "Soukromé Fotografie" +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "Editovat skupinu" -#: ../../mod/photos.php:1149 -msgid "Public Photo" -msgstr "Veřejné Fotografie" +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Vytvořit novou skupinu" -#: ../../mod/photos.php:1216 -msgid "Edit Album" -msgstr "Edituj album" +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "Kontakty, které nejsou v žádné skupině" -#: ../../mod/photos.php:1222 -msgid "Show Newest First" -msgstr "Zobrazit nejprve nejnovější:" +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Různé" -#: ../../mod/photos.php:1224 -msgid "Show Oldest First" -msgstr "Zobrazit nejprve nejstarší:" +#: ../../include/datetime.php:153 ../../include/datetime.php:290 +msgid "year" +msgstr "rok" -#: ../../mod/photos.php:1257 ../../mod/photos.php:1800 -msgid "View Photo" -msgstr "Zobraz fotografii" +#: ../../include/datetime.php:158 ../../include/datetime.php:291 +msgid "month" +msgstr "měsíc" -#: ../../mod/photos.php:1292 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen." +#: ../../include/datetime.php:163 ../../include/datetime.php:293 +msgid "day" +msgstr "den" -#: ../../mod/photos.php:1294 -msgid "Photo not available" -msgstr "Fotografie není k dispozici" +#: ../../include/datetime.php:276 +msgid "never" +msgstr "nikdy" -#: ../../mod/photos.php:1350 -msgid "View photo" -msgstr "Zobrazit obrázek" +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "méně než před sekundou" -#: ../../mod/photos.php:1350 -msgid "Edit photo" -msgstr "Editovat fotografii" +#: ../../include/datetime.php:290 +msgid "years" +msgstr "let" -#: ../../mod/photos.php:1351 -msgid "Use as profile photo" -msgstr "Použít jako profilovou fotografii" +#: ../../include/datetime.php:291 +msgid "months" +msgstr "měsíců" -#: ../../mod/photos.php:1376 -msgid "View Full Size" -msgstr "Zobrazit v plné velikosti" +#: ../../include/datetime.php:292 +msgid "week" +msgstr "týdnem" -#: ../../mod/photos.php:1455 -msgid "Tags: " -msgstr "Å títky: " +#: ../../include/datetime.php:292 +msgid "weeks" +msgstr "týdny" -#: ../../mod/photos.php:1458 -msgid "[Remove any tag]" -msgstr "[Odstranit vÅ¡echny Å¡títky]" +#: ../../include/datetime.php:293 +msgid "days" +msgstr "dnů" -#: ../../mod/photos.php:1498 -msgid "Rotate CW (right)" -msgstr "Rotovat po směru hodinových ručiček (doprava)" +#: ../../include/datetime.php:294 +msgid "hour" +msgstr "hodina" -#: ../../mod/photos.php:1499 -msgid "Rotate CCW (left)" -msgstr "Rotovat proti směru hodinových ručiček (doleva)" +#: ../../include/datetime.php:294 +msgid "hours" +msgstr "hodin" -#: ../../mod/photos.php:1501 -msgid "New album name" -msgstr "Nové jméno alba" +#: ../../include/datetime.php:295 +msgid "minute" +msgstr "minuta" -#: ../../mod/photos.php:1504 -msgid "Caption" -msgstr "Titulek" +#: ../../include/datetime.php:295 +msgid "minutes" +msgstr "minut" -#: ../../mod/photos.php:1506 -msgid "Add a Tag" -msgstr "Přidat Å¡títek" +#: ../../include/datetime.php:296 +msgid "second" +msgstr "sekunda" -#: ../../mod/photos.php:1510 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +#: ../../include/datetime.php:296 +msgid "seconds" +msgstr "sekund" -#: ../../mod/photos.php:1519 -msgid "Private photo" -msgstr "Soukromé fotografie" +#: ../../include/datetime.php:305 +#, php-format +msgid "%1$d %2$s ago" +msgstr "před %1$d %2$s" -#: ../../mod/photos.php:1520 -msgid "Public photo" -msgstr "Veřejné fotografie" +#: ../../include/datetime.php:477 ../../include/items.php:2195 +#, php-format +msgid "%s's birthday" +msgstr "%s má narozeniny" -#: ../../mod/photos.php:1815 -msgid "Recent Photos" -msgstr "Aktuální fotografie" +#: ../../include/datetime.php:478 ../../include/items.php:2196 +#, php-format +msgid "Happy Birthday %s" +msgstr "Veselé narozeniny %s" -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Kontakt přidán" +#: ../../include/acl_selectors.php:326 +msgid "Visible to everybody" +msgstr "Viditelné pro vÅ¡echny" -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Přesunout účet" +#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:142 +#: ../../view/theme/diabook/theme.php:621 +msgid "show" +msgstr "zobrazit" -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Můžete importovat účet z jiného Friendica serveru." +#: ../../include/acl_selectors.php:328 ../../view/theme/diabook/config.php:142 +#: ../../view/theme/diabook/theme.php:621 +msgid "don't show" +msgstr "nikdy nezobrazit" -#: ../../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 "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně vÅ¡ech kontaktů. Zároveň se pokusíme informovat vÅ¡echny VaÅ¡e přátele, že jste se sem přestěhovali." +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[bez předmětu]" -#: ../../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 "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory" +#: ../../include/Contact.php:115 +msgid "stopped following" +msgstr "následování zastaveno" -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "Soubor s účtem" +#: ../../include/Contact.php:228 ../../include/conversation.php:882 +msgid "Poke" +msgstr "Šťouchnout" -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "K exportu VaÅ¡eho účtu, jděte do \"Nastavení->Export vaÅ¡ich osobních dat\" a zvolte \" Export účtu\"" +#: ../../include/Contact.php:229 ../../include/conversation.php:876 +msgid "View Status" +msgstr "Zobrazit Status" -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Celkový limit pozvánek byl překročen" +#: ../../include/Contact.php:230 ../../include/conversation.php:877 +msgid "View Profile" +msgstr "Zobrazit Profil" -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : není platná e-mailová adresa." +#: ../../include/Contact.php:231 ../../include/conversation.php:878 +msgid "View Photos" +msgstr "Zobrazit Fotky" -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Prosím přidejte se k nám na Friendice" +#: ../../include/Contact.php:232 ../../include/Contact.php:255 +#: ../../include/conversation.php:879 +msgid "Network Posts" +msgstr "Zobrazit Příspěvky sítě" -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limit pozvánek byl překročen. Prosím kontaktujte vaÅ¡eho administrátora webu." +#: ../../include/Contact.php:233 ../../include/Contact.php:255 +#: ../../include/conversation.php:880 +msgid "Edit Contact" +msgstr "Editovat Kontakty" -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Doručení zprávy se nezdařilo." +#: ../../include/Contact.php:234 +msgid "Drop Contact" +msgstr "Odstranit kontakt" -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d zpráva odeslána." -msgstr[1] "%d zprávy odeslány." -msgstr[2] "%d zprávy odeslány." +#: ../../include/Contact.php:235 ../../include/Contact.php:255 +#: ../../include/conversation.php:881 +msgid "Send PM" +msgstr "Poslat soukromou zprávu" -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Nemáte k dispozici žádné další pozvánky" +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "Vítejte " -#: ../../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 "NavÅ¡tivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí." +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Prosím nahrejte profilovou fotografii" -#: ../../mod/invite.php:122 -#, php-format +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "Vítejte zpět " + +#: ../../include/security.php:366 msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "K akceptaci této pozvánky prosím navÅ¡tivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru." +"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 "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliÅ¡ dlouho (>3 hodiny) před jeho odesláním." -#: ../../mod/invite.php:123 +#: ../../include/conversation.php:118 ../../include/conversation.php:246 +#: ../../include/text.php:1963 ../../view/theme/diabook/theme.php:463 +msgid "event" +msgstr "událost" + +#: ../../include/conversation.php:207 #, 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 "Friendica servery jsou vÅ¡echny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. NavÅ¡tivte %s pro seznam alternativních Friendica serverů kde se můžete přidat." +msgid "%1$s poked %2$s" +msgstr "%1$s Å¡Å¥ouchnul %2$s" -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy." +#: ../../include/conversation.php:211 ../../include/text.php:1004 +msgid "poked" +msgstr "Å¡Å¥ouchnut" -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Poslat pozvánky" +#: ../../include/conversation.php:291 +msgid "post/item" +msgstr "příspěvek/položka" -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Zadejte e-mailové adresy, jednu na řádek:" +#: ../../include/conversation.php:292 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "uživatel %1$s označil %2$s's %3$s jako oblíbeného" -#: ../../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 "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť." +#: ../../include/conversation.php:772 +msgid "remove" +msgstr "odstranit" -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Budete muset zadat kód této pozvánky: $invite_code" +#: ../../include/conversation.php:776 +msgid "Delete Selected Items" +msgstr "Smazat vybrané položky" -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:" +#: ../../include/conversation.php:875 +msgid "Follow Thread" +msgstr "Následovat vlákno" -#: ../../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 "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navÅ¡tivte http://friendica.com" +#: ../../include/conversation.php:944 +#, php-format +msgid "%s likes this." +msgstr "%s se to líbí." -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Přístup odmítnut" +#: ../../include/conversation.php:944 +#, php-format +msgid "%s doesn't like this." +msgstr "%s se to nelíbí." -#: ../../mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Nenalezen žádný platný účet." +#: ../../include/conversation.php:949 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d lidem se to líbí" -#: ../../mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Žádost o obnovení hesla vyřízena. Zkontrolujte VaÅ¡i e-mailovou schránku." +#: ../../include/conversation.php:952 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d lidem se to nelíbí" -#: ../../mod/lostpass.php:42 +#: ../../include/conversation.php:966 +msgid "and" +msgstr "a" + +#: ../../include/conversation.php:972 #, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "" +msgid ", and %d other people" +msgstr ", a %d dalších lidí" -#: ../../mod/lostpass.php:53 +#: ../../include/conversation.php:974 #, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "\n\t\tKlikněte na následující odkaz pro potvrzení Vaší identity:\n\n\t\t%1$s\n\n\t\tNásledně obdržíte zprávu obsahující nové heslo.\n\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\n\t\tVaÅ¡e přihlaÅ¡ovací údaje jsou následující:\n\n\t\tUmístění webu:\t%2$s\n\t\tPřihlaÅ¡ovací jméno:\t%3$s" +msgid "%s like this." +msgstr "%s se to líbí." -#: ../../mod/lostpass.php:72 +#: ../../include/conversation.php:974 #, php-format -msgid "Password reset requested at %s" -msgstr "Na %s bylo zažádáno o resetování hesla" +msgid "%s don't like this." +msgstr "%s se to nelíbí." -#: ../../mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo." +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +msgid "Visible to everybody" +msgstr "Viditelné pro vÅ¡echny" -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "VaÅ¡e heslo bylo na VaÅ¡e přání resetováno." +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Please enter a video link/URL:" +msgstr "Prosím zadejte URL adresu videa:" -#: ../../mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Někdo Vám napsal na VaÅ¡i profilovou stránku" +#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 +msgid "Please enter an audio link/URL:" +msgstr "Prosím zadejte URL adresu zvukového záznamu:" -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Uložte si nebo zkopírujte nové heslo - a pak" +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 +msgid "Tag term:" +msgstr "Å títek:" -#: ../../mod/lostpass.php:113 -msgid "click here to login" -msgstr "klikněte zde pro přihlášení" +#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 +msgid "Where are you right now?" +msgstr "Kde právě jste?" -#: ../../mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Nezdá se, že by to bylo VaÅ¡e celé jméno (křestní jméno a příjmení)." +#: ../../include/conversation.php:1008 +msgid "Delete item(s)?" +msgstr "Smazat položku(y)?" -#: ../../mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "\n\t\t\t\tDrahý %1$s,\n⇥⇥⇥⇥⇥VaÅ¡e heslo bylo na požádání změněno. Prosím uchovejte si tuto informaci (nebo si změntě heslo ihned na něco, co si budete pamatovat).\t" +#: ../../include/conversation.php:1051 +msgid "Post to Email" +msgstr "Poslat příspěvek na e-mail" -#: ../../mod/lostpass.php:131 +#: ../../include/conversation.php:1056 #, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "\n\t\t\t\tVaÅ¡e přihlaÅ¡ovací údaje jsou následující:\n\n\t\t\t\tUmístění webu:\t%1$s\n\t\t\t\tPřihlaÅ¡ovací jméno:\t%2$s\n\t\t\t\tHeslo:\t%3$s\n\n\t\t\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\t\t\t" +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Kontektory deaktivovány, od \"%s\" je aktivován." -#: ../../mod/lostpass.php:147 +#: ../../include/conversation.php:1111 +msgid "permissions" +msgstr "oprávnění" + +#: ../../include/conversation.php:1135 +msgid "Post to Groups" +msgstr "Zveřejnit na Groups" + +#: ../../include/conversation.php:1136 +msgid "Post to Contacts" +msgstr "Zveřejnit na Groups" + +#: ../../include/conversation.php:1137 +msgid "Private post" +msgstr "Soukromý příspěvek" + +#: ../../include/network.php:895 +msgid "view full size" +msgstr "zobrazit v plné velikosti" + +#: ../../include/text.php:296 +msgid "newer" +msgstr "novější" + +#: ../../include/text.php:298 +msgid "older" +msgstr "starší" + +#: ../../include/text.php:303 +msgid "prev" +msgstr "předchozí" + +#: ../../include/text.php:305 +msgid "first" +msgstr "první" + +#: ../../include/text.php:337 +msgid "last" +msgstr "poslední" + +#: ../../include/text.php:340 +msgid "next" +msgstr "další" + +#: ../../include/text.php:854 +msgid "No contacts" +msgstr "Žádné kontakty" + +#: ../../include/text.php:863 #, php-format -msgid "Your password has been changed at %s" -msgstr "VaÅ¡e heslo bylo změněno na %s" +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d kontakt" +msgstr[1] "%d kontaktů" +msgstr[2] "%d kontaktů" + +#: ../../include/text.php:1004 +msgid "poke" +msgstr "Å¡Å¥ouchnout" + +#: ../../include/text.php:1005 +msgid "ping" +msgstr "cinknout" + +#: ../../include/text.php:1005 +msgid "pinged" +msgstr "cinkut" + +#: ../../include/text.php:1006 +msgid "prod" +msgstr "pobídnout" + +#: ../../include/text.php:1006 +msgid "prodded" +msgstr "pobídnut" + +#: ../../include/text.php:1007 +msgid "slap" +msgstr "dát facku" + +#: ../../include/text.php:1007 +msgid "slapped" +msgstr "být uhozen" + +#: ../../include/text.php:1008 +msgid "finger" +msgstr "osahávat" + +#: ../../include/text.php:1008 +msgid "fingered" +msgstr "osaháván" + +#: ../../include/text.php:1009 +msgid "rebuff" +msgstr "odmítnout" + +#: ../../include/text.php:1009 +msgid "rebuffed" +msgstr "odmítnut" + +#: ../../include/text.php:1023 +msgid "happy" +msgstr "Å¡Å¥asný" + +#: ../../include/text.php:1024 +msgid "sad" +msgstr "smutný" + +#: ../../include/text.php:1025 +msgid "mellow" +msgstr "jemný" + +#: ../../include/text.php:1026 +msgid "tired" +msgstr "unavený" + +#: ../../include/text.php:1027 +msgid "perky" +msgstr "emergický" + +#: ../../include/text.php:1028 +msgid "angry" +msgstr "nazlobený" + +#: ../../include/text.php:1029 +msgid "stupified" +msgstr "otupen" -#: ../../mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Zapomněli jste heslo?" +#: ../../include/text.php:1030 +msgid "puzzled" +msgstr "popletený" -#: ../../mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Zadejte svůj e-mailovou adresu a odeÅ¡lete žádost o zaslání VaÅ¡eho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce." +#: ../../include/text.php:1031 +msgid "interested" +msgstr "zajímavý" -#: ../../mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Přezdívka nebo e-mail: " +#: ../../include/text.php:1032 +msgid "bitter" +msgstr "hořký" -#: ../../mod/lostpass.php:162 -msgid "Reset" -msgstr "Reset" +#: ../../include/text.php:1033 +msgid "cheerful" +msgstr "radnostný" -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Zdrojový text (bbcode):" +#: ../../include/text.php:1034 +msgid "alive" +msgstr "naživu" -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Zdrojový (Diaspora) text k převedení do BB kódování:" +#: ../../include/text.php:1035 +msgid "annoyed" +msgstr "otráven" -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Zdrojový vstup: " +#: ../../include/text.php:1036 +msgid "anxious" +msgstr "znepokojený" -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (raw HTML): " +#: ../../include/text.php:1037 +msgid "cranky" +msgstr "mrzutý" -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " +#: ../../include/text.php:1038 +msgid "disturbed" +msgstr "vyruÅ¡en" -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " +#: ../../include/text.php:1039 +msgid "frustrated" +msgstr "frustrovaný" -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " +#: ../../include/text.php:1040 +msgid "motivated" +msgstr "motivovaný" -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " +#: ../../include/text.php:1041 +msgid "relaxed" +msgstr "uvolněný" -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " +#: ../../include/text.php:1042 +msgid "surprised" +msgstr "překvapený" -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " +#: ../../include/text.php:1210 +msgid "Monday" +msgstr "Pondělí" -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Vstupní data (ve formátu Diaspora): " +#: ../../include/text.php:1210 +msgid "Tuesday" +msgstr "Úterý" -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " +#: ../../include/text.php:1210 +msgid "Wednesday" +msgstr "Středa" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Å títek odstraněn" +#: ../../include/text.php:1210 +msgid "Thursday" +msgstr "Čtvrtek" -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Odebrat Å¡títek položky" +#: ../../include/text.php:1210 +msgid "Friday" +msgstr "Pátek" -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Vyberte Å¡títek k odebrání: " +#: ../../include/text.php:1210 +msgid "Saturday" +msgstr "Sobota" -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Odstranit můj účet" +#: ../../include/text.php:1210 +msgid "Sunday" +msgstr "Neděle" -#: ../../mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit." +#: ../../include/text.php:1214 +msgid "January" +msgstr "Ledna" -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Prosím, zadejte své heslo pro ověření:" +#: ../../include/text.php:1214 +msgid "February" +msgstr "Února" -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Neplatný identifikátor profilu." +#: ../../include/text.php:1214 +msgid "March" +msgstr "Března" -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Editor viditelnosti profilu " +#: ../../include/text.php:1214 +msgid "April" +msgstr "Dubna" -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Viditelný pro" +#: ../../include/text.php:1214 +msgid "May" +msgstr "Května" -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "VÅ¡echny kontakty (se zabezpečeným přístupovým profilem )" +#: ../../include/text.php:1214 +msgid "June" +msgstr "Června" -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Shoda profilu" +#: ../../include/text.php:1214 +msgid "July" +msgstr "Července" -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do VaÅ¡eho výchozího profilu." +#: ../../include/text.php:1214 +msgid "August" +msgstr "Srpna" -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "zajímá se o:" +#: ../../include/text.php:1214 +msgid "September" +msgstr "Září" -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "Název události a datum začátku jsou vyžadovány." +#: ../../include/text.php:1214 +msgid "October" +msgstr "Října" -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "l, F j" +#: ../../include/text.php:1214 +msgid "November" +msgstr "Listopadu" -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Editovat událost" +#: ../../include/text.php:1214 +msgid "December" +msgstr "Prosinec" -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Vytvořit novou událost" +#: ../../include/text.php:1434 +msgid "bytes" +msgstr "bytů" -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Předchozí" +#: ../../include/text.php:1458 ../../include/text.php:1470 +msgid "Click to open/close" +msgstr "Klikněte pro otevření/zavření" -#: ../../mod/events.php:373 ../../mod/install.php:207 -msgid "Next" -msgstr "Dále" +#: ../../include/text.php:1699 ../../include/user.php:247 +#: ../../view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "standardní" -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "hodina:minuta" +#: ../../include/text.php:1711 +msgid "Select an alternate language" +msgstr "Vyběr alternativního jazyka" -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Detaily události" +#: ../../include/text.php:1967 +msgid "activity" +msgstr "aktivita" -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "Formát je %s %s. Datum začátku a Název jsou vyžadovány." +#: ../../include/text.php:1970 +msgid "post" +msgstr "příspěvek" -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "Událost začíná:" +#: ../../include/text.php:2138 +msgid "Item filed" +msgstr "Položka vyplněna" -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Vyžadováno" +#: ../../include/bbcode.php:428 ../../include/bbcode.php:1027 +#: ../../include/bbcode.php:1028 +msgid "Image/photo" +msgstr "Obrázek/fotografie" -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "Datum/čas konce není zadán nebo není relevantní" +#: ../../include/bbcode.php:528 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "Akce končí:" +#: ../../include/bbcode.php:562 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s napsal následující příspěvek" -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení" +#: ../../include/bbcode.php:991 ../../include/bbcode.php:1011 +msgid "$1 wrote:" +msgstr "$1 napsal:" -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Popis:" +#: ../../include/bbcode.php:1036 ../../include/bbcode.php:1037 +msgid "Encrypted content" +msgstr "Å ifrovaný obsah" -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Název:" +#: ../../include/notifier.php:786 ../../include/delivery.php:456 +msgid "(no subject)" +msgstr "(Bez předmětu)" -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Sdílet tuto událost" +#: ../../include/notifier.php:796 ../../include/delivery.php:467 +#: ../../include/enotify.php:31 +msgid "noreply" +msgstr "neodpovídat" -#: ../../mod/ping.php:240 -msgid "{0} wants to be your friend" -msgstr "{0} chce být Vaším přítelem" +#: ../../include/dba_pdo.php:72 ../../include/dba.php:56 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Nelze nalézt záznam v DNS pro databázový server '%s'" -#: ../../mod/ping.php:245 -msgid "{0} sent you a message" -msgstr "{0} vám poslal zprávu" +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Neznámé | Nezařazeno" -#: ../../mod/ping.php:250 -msgid "{0} requested registration" -msgstr "{0} požaduje registraci" +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Okamžitě blokovat " -#: ../../mod/ping.php:256 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} komentoval příspěvek uživatele %s" +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "pochybný, spammer, self-makerter" -#: ../../mod/ping.php:261 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0} má rád příspěvek uživatele %s" +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Znám ho ale, ale bez rozhodnutí" -#: ../../mod/ping.php:266 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} nemá rád příspěvek uživatele %s" +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, pravděpodobně neÅ¡kodný" -#: ../../mod/ping.php:271 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} se skamarádil s %s" +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Renomovaný, má mou důvěru" -#: ../../mod/ping.php:276 -msgid "{0} posted" -msgstr "{0} zasláno" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Týdenně" -#: ../../mod/ping.php:281 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} označen %s' příspěvek s #%s" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Měsíčně" -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} vás zmínil v příspěvku" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Nálada" +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Nastavte svou aktuální náladu a řekněte to VaÅ¡im přátelům" +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" -#: ../../mod/search.php:170 ../../mod/search.php:196 -#: ../../mod/community.php:62 ../../mod/community.php:71 -msgid "No results." -msgstr "Žádné výsledky." +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Nepodařilo se najít kontaktní informace." +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Opravdu chcete smazat tuto zprávu?" +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Zpráva odstraněna." +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Konverzace odstraněna." +#: ../../include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Žádné zprávy." +#: ../../include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "Neznámý odesilatel - %s" +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora konektor" -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Vy a %s" +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s a Vy" +#: ../../include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Odstranit konverzaci" +#: ../../include/Scrape.php:593 +msgid " on Last.fm" +msgstr " na Last.fm" -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D M R - g:i A" +#: ../../include/bb2diaspora.php:154 ../../include/event.php:20 +msgid "Starts:" +msgstr "Začíná:" -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d zpráva" -msgstr[1] "%d zprávy" -msgstr[2] "%d zpráv" +#: ../../include/bb2diaspora.php:162 ../../include/event.php:30 +msgid "Finishes:" +msgstr "Končí:" -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Zpráva není k dispozici." +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" +msgstr "j F, Y" -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Smazat zprávu" +#: ../../include/profile_advanced.php:23 +msgid "j F" +msgstr "j F" -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Není k dispozici zabezpečená komunikace. Možná budete schopni reagovat z odesilatelovy profilové stránky." +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" +msgstr "Narozeniny:" -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Poslat odpověď" +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Věk:" -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Není k dispozici." +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "pro %1$d %2$s" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:133 -#: ../../mod/profiles.php:162 ../../mod/profiles.php:589 -#: ../../mod/dfrn_confirm.php:64 -msgid "Profile not found." -msgstr "Profil nenalezen" +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Å títky:" -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profil smazán." +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Náboženství:" -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Profil-" +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Koníčky/zájmy:" -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Nový profil vytvořen." +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Kontaktní informace a sociální sítě:" -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Profil není možné naklonovat." +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Hudební vkus:" -#: ../../mod/profiles.php:172 -msgid "Profile Name is required." -msgstr "Jméno profilu je povinné." +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Knihy, literatura:" -#: ../../mod/profiles.php:323 -msgid "Marital Status" -msgstr "Rodinný Stav" +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "Televize:" -#: ../../mod/profiles.php:327 -msgid "Romantic Partner" -msgstr "Romatický partner" +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/tanec/kultura/zábava:" -#: ../../mod/profiles.php:331 -msgid "Likes" -msgstr "Libí se mi" +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Láska/romance" -#: ../../mod/profiles.php:335 -msgid "Dislikes" -msgstr "Nelibí se mi" +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Práce/zaměstnání:" -#: ../../mod/profiles.php:339 -msgid "Work/Employment" -msgstr "Práce/Zaměstnání" +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "Å kola/vzdělávání:" -#: ../../mod/profiles.php:342 -msgid "Religion" -msgstr "Náboženství" +#: ../../include/plugin.php:455 ../../include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "Klikněte zde pro aktualizaci." -#: ../../mod/profiles.php:346 -msgid "Political Views" -msgstr "Politické přesvědčení" +#: ../../include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Tato akce překročí limit nastavené Vaším předplatným." -#: ../../mod/profiles.php:350 -msgid "Gender" -msgstr "Pohlaví" +#: ../../include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "Tato akce není v rámci VaÅ¡eho předplatného dostupná." -#: ../../mod/profiles.php:354 -msgid "Sexual Preference" -msgstr "Sexuální orientace" +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Konec této relace" -#: ../../mod/profiles.php:358 -msgid "Homepage" -msgstr "Domácí stránka" +#: ../../include/nav.php:76 ../../include/nav.php:146 +#: ../../view/theme/diabook/theme.php:123 +msgid "Your posts and conversations" +msgstr "VaÅ¡e příspěvky a konverzace" -#: ../../mod/profiles.php:362 ../../mod/profiles.php:657 -msgid "Interests" -msgstr "Zájmy" +#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 +msgid "Your profile page" +msgstr "VaÅ¡e profilová stránka" -#: ../../mod/profiles.php:366 -msgid "Address" -msgstr "Adresa" +#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126 +msgid "Your photos" +msgstr "VaÅ¡e fotky" -#: ../../mod/profiles.php:373 ../../mod/profiles.php:653 -msgid "Location" -msgstr "Lokace" +#: ../../include/nav.php:79 +msgid "Your videos" +msgstr "VaÅ¡e videa" -#: ../../mod/profiles.php:456 -msgid "Profile updated." -msgstr "Profil aktualizován." +#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127 +msgid "Your events" +msgstr "VaÅ¡e události" -#: ../../mod/profiles.php:527 -msgid " and " -msgstr " a " +#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128 +msgid "Personal notes" +msgstr "Osobní poznámky" -#: ../../mod/profiles.php:535 -msgid "public profile" -msgstr "veřejný profil" +#: ../../include/nav.php:81 +msgid "Your personal notes" +msgstr "VaÅ¡e osobní poznámky" -#: ../../mod/profiles.php:538 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s změnil %2$s na “%3$s”" +#: ../../include/nav.php:92 +msgid "Sign in" +msgstr "Přihlásit se" -#: ../../mod/profiles.php:539 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - NavÅ¡tivte %2$s uživatele %1$s" +#: ../../include/nav.php:105 +msgid "Home Page" +msgstr "Domácí stránka" -#: ../../mod/profiles.php:542 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s aktualizoval %2$s, změnou %3$s." +#: ../../include/nav.php:109 +msgid "Create an account" +msgstr "Vytvořit účet" -#: ../../mod/profiles.php:617 -msgid "Hide contacts and friends:" -msgstr "Skrýt kontakty a přátele:" +#: ../../include/nav.php:114 +msgid "Help and documentation" +msgstr "Nápověda a dokumentace" -#: ../../mod/profiles.php:622 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Skrýt u tohoto profilu VaÅ¡e kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?" +#: ../../include/nav.php:117 +msgid "Apps" +msgstr "Aplikace" -#: ../../mod/profiles.php:644 -msgid "Edit Profile Details" -msgstr "Upravit podrobnosti profilu " +#: ../../include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Doplňkové aplikace, nástroje, hry" -#: ../../mod/profiles.php:646 -msgid "Change Profile Photo" -msgstr "Změna Profilové fotky" +#: ../../include/nav.php:119 +msgid "Search site content" +msgstr "Hledání na stránkách tohoto webu" -#: ../../mod/profiles.php:647 -msgid "View this profile" -msgstr "Zobrazit tento profil" +#: ../../include/nav.php:129 +msgid "Conversations on this site" +msgstr "Konverzace na tomto webu" -#: ../../mod/profiles.php:648 -msgid "Create a new profile using these settings" -msgstr "Vytvořit nový profil pomocí tohoto nastavení" +#: ../../include/nav.php:131 +msgid "Directory" +msgstr "Adresář" -#: ../../mod/profiles.php:649 -msgid "Clone this profile" -msgstr "Klonovat tento profil" +#: ../../include/nav.php:131 +msgid "People directory" +msgstr "Adresář" -#: ../../mod/profiles.php:650 -msgid "Delete this profile" -msgstr "Smazat tento profil" +#: ../../include/nav.php:133 +msgid "Information" +msgstr "Informace" -#: ../../mod/profiles.php:651 -msgid "Basic information" -msgstr "Základní informace" +#: ../../include/nav.php:133 +msgid "Information about this friendica instance" +msgstr "Informace o této instanci Friendica" -#: ../../mod/profiles.php:652 -msgid "Profile picture" -msgstr "Profilový obrázek" +#: ../../include/nav.php:143 +msgid "Conversations from your friends" +msgstr "Konverzace od VaÅ¡ich přátel" -#: ../../mod/profiles.php:654 -msgid "Preferences" -msgstr "Nastavení" +#: ../../include/nav.php:144 +msgid "Network Reset" +msgstr "Síťový Reset" -#: ../../mod/profiles.php:655 -msgid "Status information" -msgstr "Statusové informace" +#: ../../include/nav.php:144 +msgid "Load Network page with no filters" +msgstr "Načíst stránku Síť bez filtrů" -#: ../../mod/profiles.php:656 -msgid "Additional information" -msgstr "Dodatečné informace" +#: ../../include/nav.php:152 +msgid "Friend Requests" +msgstr "Žádosti přátel" -#: ../../mod/profiles.php:658 ../../mod/newmember.php:36 -#: ../../mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "Nahrát profilovou fotografii" +#: ../../include/nav.php:154 +msgid "See all notifications" +msgstr "Zobrazit vÅ¡echny upozornění" -#: ../../mod/profiles.php:659 -msgid "Profile Name:" -msgstr "Jméno profilu:" +#: ../../include/nav.php:155 +msgid "Mark all system notifications seen" +msgstr "Označit vÅ¡echny upozornění systému jako přečtené" -#: ../../mod/profiles.php:660 -msgid "Your Full Name:" -msgstr "VaÅ¡e celé jméno:" +#: ../../include/nav.php:159 +msgid "Private mail" +msgstr "Soukromá poÅ¡ta" -#: ../../mod/profiles.php:661 -msgid "Title/Description:" -msgstr "Název / Popis:" +#: ../../include/nav.php:160 +msgid "Inbox" +msgstr "Doručená poÅ¡ta" -#: ../../mod/profiles.php:662 -msgid "Your Gender:" -msgstr "VaÅ¡e pohlaví:" +#: ../../include/nav.php:161 +msgid "Outbox" +msgstr "Odeslaná poÅ¡ta" -#: ../../mod/profiles.php:663 -#, php-format -msgid "Birthday (%s):" -msgstr "Narozeniny uživatele (%s):" +#: ../../include/nav.php:165 +msgid "Manage" +msgstr "Spravovat" -#: ../../mod/profiles.php:664 -msgid "Street Address:" -msgstr "Ulice:" +#: ../../include/nav.php:165 +msgid "Manage other pages" +msgstr "Spravovat jiné stránky" -#: ../../mod/profiles.php:665 -msgid "Locality/City:" -msgstr "Město:" +#: ../../include/nav.php:170 +msgid "Account settings" +msgstr "Nastavení účtu" -#: ../../mod/profiles.php:666 -msgid "Postal/Zip Code:" -msgstr "PSČ:" +#: ../../include/nav.php:173 +msgid "Manage/Edit Profiles" +msgstr "Spravovat/Editovat Profily" -#: ../../mod/profiles.php:667 -msgid "Country:" -msgstr "Země:" +#: ../../include/nav.php:175 +msgid "Manage/edit friends and contacts" +msgstr "Spravovat/upravit přátelé a kontakty" -#: ../../mod/profiles.php:668 -msgid "Region/State:" -msgstr "Region / stát:" +#: ../../include/nav.php:182 +msgid "Site setup and configuration" +msgstr "Nastavení webu a konfigurace" -#: ../../mod/profiles.php:669 -msgid " Marital Status:" -msgstr " Rodinný stav:" +#: ../../include/nav.php:186 +msgid "Navigation" +msgstr "Navigace" -#: ../../mod/profiles.php:670 -msgid "Who: (if applicable)" -msgstr "Kdo: (pokud je možné)" +#: ../../include/nav.php:186 +msgid "Site map" +msgstr "Mapa webu" -#: ../../mod/profiles.php:671 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Příklady: jan123, Jan Novák, jan@seznam.cz" +#: ../../include/api.php:304 ../../include/api.php:315 +#: ../../include/api.php:416 ../../include/api.php:1062 +#: ../../include/api.php:1064 +msgid "User not found." +msgstr "Uživatel nenalezen" -#: ../../mod/profiles.php:672 -msgid "Since [date]:" -msgstr "Od [data]:" +#: ../../include/api.php:771 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "" -#: ../../mod/profiles.php:674 -msgid "Homepage URL:" -msgstr "Odkaz na domovskou stránku:" +#: ../../include/api.php:790 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "" -#: ../../mod/profiles.php:677 -msgid "Religious Views:" -msgstr "Náboženské přesvědčení:" +#: ../../include/api.php:809 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: ../../include/api.php:1271 +msgid "There is no status with this id." +msgstr "Není tu žádný status s tímto id." -#: ../../mod/profiles.php:678 -msgid "Public Keywords:" -msgstr "Veřejná klíčová slova:" +#: ../../include/api.php:1341 +msgid "There is no conversation with this id." +msgstr "Nemáme žádnou konverzaci s tímto id." -#: ../../mod/profiles.php:679 -msgid "Private Keywords:" -msgstr "Soukromá klíčová slova:" +#: ../../include/api.php:1613 +msgid "Invalid request." +msgstr "Neplatný požadavek." -#: ../../mod/profiles.php:682 -msgid "Example: fishing photography software" -msgstr "Příklad: fishing photography software" +#: ../../include/api.php:1624 +msgid "Invalid item." +msgstr "Neplatná položka." -#: ../../mod/profiles.php:683 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)" +#: ../../include/api.php:1634 +msgid "Invalid action. " +msgstr "Neplatná akce" -#: ../../mod/profiles.php:684 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)" +#: ../../include/api.php:1642 +msgid "DB error" +msgstr "DB chyba" -#: ../../mod/profiles.php:685 -msgid "Tell us about yourself..." -msgstr "Řekněte nám něco o sobě ..." +#: ../../include/user.php:40 +msgid "An invitation is required." +msgstr "Pozvánka je vyžadována." -#: ../../mod/profiles.php:686 -msgid "Hobbies/Interests" -msgstr "Koníčky/zájmy" +#: ../../include/user.php:45 +msgid "Invitation could not be verified." +msgstr "Pozvánka nemohla být ověřena." -#: ../../mod/profiles.php:687 -msgid "Contact information and Social Networks" -msgstr "Kontaktní informace a sociální sítě" +#: ../../include/user.php:53 +msgid "Invalid OpenID url" +msgstr "Neplatný odkaz OpenID" -#: ../../mod/profiles.php:688 -msgid "Musical interests" -msgstr "Hudební vkus" +#: ../../include/user.php:74 +msgid "Please enter the required information." +msgstr "Zadejte prosím požadované informace." -#: ../../mod/profiles.php:689 -msgid "Books, literature" -msgstr "Knihy, literatura" +#: ../../include/user.php:88 +msgid "Please use a shorter name." +msgstr "Použijte prosím kratší jméno." -#: ../../mod/profiles.php:690 -msgid "Television" -msgstr "Televize" +#: ../../include/user.php:90 +msgid "Name too short." +msgstr "Jméno je příliÅ¡ krátké." -#: ../../mod/profiles.php:691 -msgid "Film/dance/culture/entertainment" -msgstr "Film/tanec/kultura/zábava" +#: ../../include/user.php:105 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Nezdá se, že by to bylo vaÅ¡e celé jméno (křestní jméno a příjmení)." -#: ../../mod/profiles.php:692 -msgid "Love/romance" -msgstr "Láska/romantika" +#: ../../include/user.php:110 +msgid "Your email domain is not among those allowed on this site." +msgstr "Váš e-mailová doména není na tomto serveru mezi povolenými." -#: ../../mod/profiles.php:693 -msgid "Work/employment" -msgstr "Práce/zaměstnání" +#: ../../include/user.php:113 +msgid "Not a valid email address." +msgstr "Neplatná e-mailová adresa." -#: ../../mod/profiles.php:694 -msgid "School/education" -msgstr "Å kola/vzdělání" +#: ../../include/user.php:126 +msgid "Cannot use that email." +msgstr "Tento e-mail nelze použít." -#: ../../mod/profiles.php:699 +#: ../../include/user.php:132 msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Toto je váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu." +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem." -#: ../../mod/profiles.php:709 ../../mod/directory.php:113 -msgid "Age: " -msgstr "Věk: " +#: ../../include/user.php:138 ../../include/user.php:236 +msgid "Nickname is already registered. Please choose another." +msgstr "Přezdívka je již registrována. Prosím vyberte jinou." -#: ../../mod/profiles.php:762 -msgid "Edit/Manage Profiles" -msgstr "Upravit / Spravovat profily" +#: ../../include/user.php:148 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou." -#: ../../mod/install.php:117 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica Komunikační server - Nastavení" +#: ../../include/user.php:164 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo." -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr "Nelze se připojit k databázi." +#: ../../include/user.php:222 +msgid "An error occurred during registration. Please try again." +msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu." -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "Nelze vytvořit tabulku." +#: ../../include/user.php:257 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu." -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "Vaše databáze Friendica byla nainstalována." +#: ../../include/user.php:289 ../../include/user.php:293 +#: ../../include/profile_selectors.php:42 +msgid "Friends" +msgstr "Přátelé" -#: ../../mod/install.php:138 +#: ../../include/user.php:377 +#, php-format msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete." +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\n\t\tDrahý %1$s,\n\t\t\tDěkujeme Vám za registraci na %2$s. Váš účet byl vytvořen.\n\t" -#: ../../mod/install.php:139 ../../mod/install.php:206 -#: ../../mod/install.php:525 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Přečtěte si prosím informace v souboru \"INSTALL.txt\"." +#: ../../include/user.php:381 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "" -#: ../../mod/install.php:203 -msgid "System check" -msgstr "Testování systému" +#: ../../include/diaspora.php:703 +msgid "Sharing notification from Diaspora network" +msgstr "Sdílení oznámení ze sítě Diaspora" -#: ../../mod/install.php:208 -msgid "Check again" -msgstr "Otestovat znovu" +#: ../../include/diaspora.php:2332 +msgid "Attachments:" +msgstr "Přílohy:" -#: ../../mod/install.php:227 -msgid "Database connection" -msgstr "Databázové spojení" +#: ../../include/items.php:4526 +msgid "Do you really want to delete this item?" +msgstr "Opravdu chcete smazat tuto položku?" -#: ../../mod/install.php:228 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi." +#: ../../include/items.php:4749 +msgid "Archives" +msgstr "Archív" -#: ../../mod/install.php:229 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, " +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Muž" -#: ../../mod/install.php:230 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním." +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Žena" -#: ../../mod/install.php:234 -msgid "Database Server Name" -msgstr "Jméno databázového serveru" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "V současné době muž" -#: ../../mod/install.php:235 -msgid "Database Login Name" -msgstr "Přihlašovací jméno k databázi" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "V současné době žena" -#: ../../mod/install.php:236 -msgid "Database Login Password" -msgstr "Heslo k databázovému účtu " +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Většinou muž" -#: ../../mod/install.php:237 -msgid "Database Name" -msgstr "Jméno databáze" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Většinou žena" -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "Emailová adresa administrátora webu" +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" -#: ../../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 "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní." +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersex" -#: ../../mod/install.php:242 ../../mod/install.php:280 -msgid "Please select a default timezone for your website" -msgstr "Prosím, vyberte výchozí časové pásmo pro váš server" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transexuál" -#: ../../mod/install.php:267 -msgid "Site settings" -msgstr "Nastavení webu" +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodit" -#: ../../mod/install.php:321 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru." +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutrál" -#: ../../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 "Pokud na serveru nemáte nainstalovánu verzi PHP spustitelnou z příkazového řádku, nebudete moci spouštět na pozadí synchronizaci zpráv prostřednictvím cronu. Přečtěte si 'Activating scheduled tasks'\n\n podrobnosti\n návrhy\n historie\n\n\t\nThe following url is either missing from the translation or has been translated: 'http://friendica.com/node/27'>'Activating scheduled tasks'" +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Nespecifikováno" -#: ../../mod/install.php:326 -msgid "PHP executable path" -msgstr "Cesta k \"PHP executable\"" +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Jiné" -#: ../../mod/install.php:326 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci." +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Nerozhodnuto" -#: ../../mod/install.php:331 -msgid "Command line PHP" -msgstr "Příkazový řádek PHP" +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Muži" -#: ../../mod/install.php:340 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "PHP executable není php cli binary (může být verze cgi-fgci)" +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Ženy" -#: ../../mod/install.php:341 -msgid "Found PHP version: " -msgstr "Nalezena PHP verze:" +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gay" -#: ../../mod/install.php:343 -msgid "PHP cli binary" -msgstr "PHP cli binary" +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbička" -#: ../../mod/install.php:354 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu." +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Bez preferencí" -#: ../../mod/install.php:355 -msgid "This is required for message delivery to work." -msgstr "Toto je nutné pro fungování doručování zpráv." +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisexuál" -#: ../../mod/install.php:357 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autosexuál" -#: ../../mod/install.php:378 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče" +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Abstinent" -#: ../../mod/install.php:379 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\"." +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "panic/panna" -#: ../../mod/install.php:381 -msgid "Generate encryption keys" -msgstr "Generovat kriptovací klíče" +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Deviant" -#: ../../mod/install.php:388 -msgid "libCurl PHP module" -msgstr "libCurl PHP modul" +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetišista" -#: ../../mod/install.php:389 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP modul" +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Hodně" -#: ../../mod/install.php:390 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP modul" +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Nesexuální" -#: ../../mod/install.php:391 -msgid "mysqli PHP module" -msgstr "mysqli PHP modul" +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Svobodný" -#: ../../mod/install.php:392 -msgid "mb_string PHP module" -msgstr "mb_string PHP modul" +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Osamnělý" -#: ../../mod/install.php:397 ../../mod/install.php:399 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite modul" +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Dostupný" -#: ../../mod/install.php:397 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován." +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Nedostupný" -#: ../../mod/install.php:405 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován." +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Zamilovaný" -#: ../../mod/install.php:409 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Chyba: požadovaný GD graphics PHP modul není nainstalován." +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Zabouchnutý" -#: ../../mod/install.php:413 -msgid "Error: openssl PHP module required but not installed." -msgstr "Chyba: požadovaný openssl PHP modul není nainstalován." +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "Seznamující se" -#: ../../mod/install.php:417 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Chyba: požadovaný mysqli PHP modul není nainstalován." +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Nevěrný" -#: ../../mod/install.php:421 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Chyba: PHP modul mb_string je vyžadován, ale není nainstalován." +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Závislý na sexu" -#: ../../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 "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno." +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Přátelé / výhody" -#: ../../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 "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete." +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Ležérní" -#: ../../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 "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři." +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Zadaný" -#: ../../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 "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce." +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Ženatý/vdaná" -#: ../../mod/install.php:444 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php je editovatelné" +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Pomyslně ženatý/vdaná" -#: ../../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 používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování." +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partneři" -#: ../../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 "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica" +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Žijící ve společné domácnosti" -#: ../../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 "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře" +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "Zvykové právo" -#: ../../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 "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje." +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Šťastný" -#: ../../mod/install.php:460 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 je nastaven pro zápis" +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Nehledající" -#: ../../mod/install.php:472 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru." +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Swinger" -#: ../../mod/install.php:474 -msgid "Url rewrite is working" -msgstr "Url rewrite je funkční." +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Zrazen" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Odloučený" -#: ../../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 "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru." +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Nestálý" -#: ../../mod/install.php:523 -msgid "

What next

" -msgstr "

Co dál

" +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Rozvedený(á)" -#: ../../mod/install.php:524 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno." +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Pomyslně rozvedený" -#: ../../mod/help.php:79 -msgid "Help:" -msgstr "Nápověda:" +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Ovdovělý(á)" -#: ../../mod/crepair.php:104 -msgid "Contact settings applied." -msgstr "Nastavení kontaktu změněno" +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Nejistý" -#: ../../mod/crepair.php:106 -msgid "Contact update failed." -msgstr "Aktualizace kontaktu selhala." +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Je to složité" -#: ../../mod/crepair.php:137 -msgid "Repair Contact Settings" -msgstr "Opravit nastavení kontaktu" +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Nezajímá" -#: ../../mod/crepair.php:139 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "Varování: Toto je velmi pokročilé a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat." +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Zeptej se mě" -#: ../../mod/crepair.php:140 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Prosím použijte ihned v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce." +#: ../../include/enotify.php:18 +msgid "Friendica Notification" +msgstr "Friendica Notifikace" -#: ../../mod/crepair.php:146 -msgid "Return to contact editor" -msgstr "Návrat k editoru kontaktu" +#: ../../include/enotify.php:21 +msgid "Thank You," +msgstr "Děkujeme, " -#: ../../mod/crepair.php:159 -msgid "Account Nickname" -msgstr "Přezdívka účtu" +#: ../../include/enotify.php:23 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrátor" -#: ../../mod/crepair.php:160 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou" +#: ../../include/enotify.php:61 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../mod/crepair.php:161 -msgid "Account URL" -msgstr "URL adresa účtu" +#: ../../include/enotify.php:65 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Upozornění] Obdržena nová zpráva na %s" -#: ../../mod/crepair.php:162 -msgid "Friend Request URL" -msgstr "Žádost o přátelství URL" +#: ../../include/enotify.php:67 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s Vám poslal novou soukromou zprávu na %2$s." -#: ../../mod/crepair.php:163 -msgid "Friend Confirm URL" -msgstr "URL adresa potvrzení přátelství" +#: ../../include/enotify.php:68 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s Vám poslal %2$s." -#: ../../mod/crepair.php:164 -msgid "Notification Endpoint URL" -msgstr "Notifikační URL adresa" +#: ../../include/enotify.php:68 +msgid "a private message" +msgstr "soukromá zpráva" -#: ../../mod/crepair.php:165 -msgid "Poll/Feed URL" -msgstr "Poll/Feed URL adresa" +#: ../../include/enotify.php:69 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět." -#: ../../mod/crepair.php:166 -msgid "New photo from this URL" -msgstr "Nové foto z této URL adresy" +#: ../../include/enotify.php:121 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s okomentoval na [url=%2$s]%3$s[/url]" -#: ../../mod/crepair.php:167 -msgid "Remote Self" -msgstr "Remote Self" +#: ../../include/enotify.php:128 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s okomentoval na [url=%2$s]%3$s's %4$s[/url]" -#: ../../mod/crepair.php:169 -msgid "Mirror postings from this contact" -msgstr "Zrcadlení správ od tohoto kontaktu" +#: ../../include/enotify.php:136 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s okomentoval na [url=%2$s]Váš %3$s[/url]" -#: ../../mod/crepair.php:169 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu." +#: ../../include/enotify.php:146 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Upozornění] Komentář ke konverzaci #%1$d od %2$s" -#: ../../mod/crepair.php:169 -msgid "No mirroring" -msgstr "Žádné zrcadlení" +#: ../../include/enotify.php:147 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "Uživatel %s okomentoval vámi sledovanou položku/konverzaci." -#: ../../mod/crepair.php:169 -msgid "Mirror as forwarded posting" -msgstr "Zrcadlit pro přeposlané příspěvky" +#: ../../include/enotify.php:150 ../../include/enotify.php:165 +#: ../../include/enotify.php:178 ../../include/enotify.php:191 +#: ../../include/enotify.php:209 ../../include/enotify.php:222 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět." -#: ../../mod/crepair.php:169 -msgid "Mirror as my own posting" -msgstr "Zrcadlit jako mé vlastní příspěvky" +#: ../../include/enotify.php:157 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď" -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Vítejte na Friendica" +#: ../../include/enotify.php:159 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s přidal příspěvek na Vaši profilovou zeď na %2$s" -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Seznam doporučení pro nového člena" +#: ../../include/enotify.php:161 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s napřidáno na [url=%2$s]na Vaši zeď[/url]" -#: ../../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 "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace." +#: ../../include/enotify.php:172 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Upozornění] %s Vás označil" -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Začínáme" +#: ../../include/enotify.php:173 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s Vás označil na %2$s" -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Prohlídka Friendica " +#: ../../include/enotify.php:174 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]Vás označil[/url]." -#: ../../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 "Na Vaší stránce Rychlý Start - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit." +#: ../../include/enotify.php:185 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notify] %s nasdílel nový příspěvek" -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Navštivte své nastavení" +#: ../../include/enotify.php:186 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s nasdílel nový příspěvek na %2$s" -#: ../../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 "Na Vaší stránce Nastavení - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti." +#: ../../include/enotify.php:187 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s]nasdílel příspěvek[/url]." -#: ../../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 "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít." +#: ../../include/enotify.php:199 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul" -#: ../../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 "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají." +#: ../../include/enotify.php:200 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s Vás šťouchnul na %2$s" -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Editujte Váš profil" +#: ../../include/enotify.php:201 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "Uživatel %1$s [url=%2$s]Vás šťouchnul[/url]." -#: ../../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 "Upravit výchozí profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho seznamu přátel a skrytí profilu před neznámými návštěvníky." +#: ../../include/enotify.php:216 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Upozornění] %s označil Váš příspěvek" -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Profilová klíčová slova" +#: ../../include/enotify.php:217 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s označil Váš příspěvek na %2$s" -#: ../../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 "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství." +#: ../../include/enotify.php:218 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s označil [url=%2$s]Váš příspěvek[/url]" + +#: ../../include/enotify.php:229 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Upozornění] Obdrženo přestavení" -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Probíhá pokus o připojení" +#: ../../include/enotify.php:230 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Obdržel jste žádost o spojení od '%1$s' na %2$s" -#: ../../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 "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace." +#: ../../include/enotify.php:231 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Obdržel jste [url=%1$s]žádost o spojení[/url] od %2$s." -#: ../../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 "Pokud je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web." +#: ../../include/enotify.php:234 ../../include/enotify.php:276 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Můžete navštívit jejich profil na %s" -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "Importování emaiů" +#: ../../include/enotify.php:236 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Prosím navštivte %s pro schválení či zamítnutí představení." -#: ../../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 "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu" +#: ../../include/enotify.php:244 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "[Friendica:Upozornění] Nový člověk s vámi sdílí" -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Navštivte Vaši stránku s kontakty" +#: ../../include/enotify.php:245 ../../include/enotify.php:246 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "uživatel %1$s sdílí s vámi ma %2$s" -#: ../../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 "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu Přidat nový kontakt." +#: ../../include/enotify.php:252 +msgid "[Friendica:Notify] You have a new follower" +msgstr "[Friendica:Upozornění] Máte nového následovníka" -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Navštivte lokální adresář Friendica" +#: ../../include/enotify.php:253 ../../include/enotify.php:254 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "Máte nového následovníka na %2$s : %1$s" -#: ../../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 "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů Připojení nebo Následovat si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována." +#: ../../include/enotify.php:267 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství" -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Nalezení nových lidí" +#: ../../include/enotify.php:268 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Obdržel jste návrh přátelství od '%1$s' na %2$s" -#: ../../mod/newmember.php:62 +#: ../../include/enotify.php:269 +#, php-format 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 "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin." +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Obdržel jste [url=%1$s]návrh přátelství[/url] s %2$s from %3$s." -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Seskupte si své kontakty" +#: ../../include/enotify.php:274 +msgid "Name:" +msgstr "Jméno:" -#: ../../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 "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť." +#: ../../include/enotify.php:275 +msgid "Photo:" +msgstr "Foto:" -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Proč nejsou mé příspěvky veřejné?" +#: ../../include/enotify.php:278 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Prosím navštivte %s pro schválení či zamítnutí doporučení." -#: ../../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 respektuje Vaše soukromí. Defaultně jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu" +#: ../../include/enotify.php:286 ../../include/enotify.php:299 +msgid "[Friendica:Notify] Connection accepted" +msgstr "[Friendica:Upozornění] Spojení akceptováno" -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "Získání nápovědy" +#: ../../include/enotify.php:287 ../../include/enotify.php:300 +#, php-format +msgid "'%1$s' has acepted your connection request at %2$s" +msgstr "'%1$s' akceptoval váš požadavek na spojení na %2$s" -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Navštivte sekci nápovědy" +#: ../../include/enotify.php:288 ../../include/enotify.php:301 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$s akceptoval váš [url=%1$s]požadavek na spojení[/url]." -#: ../../mod/newmember.php:82 +#: ../../include/enotify.php:291 msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Na stránkách Nápověda naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací." - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Šťouchanec" +"You are now mutual friends and may exchange status updates, photos, and email\n" +"\twithout restriction." +msgstr "Jste nyní vzájemnými přáteli a můžete si vyměňovat aktualizace statusu, fotografií a emailů\nbez omezení." -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "někoho šťouchnout nebo mu provést jinou věc" +#: ../../include/enotify.php:294 ../../include/enotify.php:308 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Prosím navštivte %s pokud chcete změnit tento vztah." -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Příjemce" +#: ../../include/enotify.php:304 +#, php-format +msgid "" +"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." +msgstr "'%1$s' vás přijal jako \"fanouška\", což omezuje některé formy komunikace - jako jsou soukromé zprávy a některé interakce na profilech. Pokud se jedná o celebritu, případně o komunitní stránky, pak bylo toto nastavení provedeno automaticky.." -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Vyberte, co si přejete příjemci udělat" +#: ../../include/enotify.php:306 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future. " +msgstr "''%1$s' se může rozhodnout rozšířit tento vztah na oboustraný nebo méně restriktivní" -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Změnit tento příspěvek na soukromý" +#: ../../include/enotify.php:319 +msgid "[Friendica System:Notify] registration request" +msgstr "[Systém Friendica :Upozornění] registrační požadavek" -#: ../../mod/prove.php:93 -msgid "" -"\n" -"\t\tDear $[username],\n" -"\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\tinformation for your records (or change your password immediately to\n" -"\t\tsomething that you will remember).\n" -"\t" -msgstr "\n\t\tDrahý $[username],\n\t\t\tVaše heslo bylo na požádání změněno. Prosím uchovejte si tuto\n\t\tinformaci (nebo si změntě heslo ihned \n\t\tna něco, co si budete pamatovat).\n\t" +#: ../../include/enotify.php:320 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "Obdržel jste požadavek na registraci od '%1$s' na %2$s" -#: ../../mod/display.php:452 -msgid "Item has been removed." -msgstr "Položka byla odstraněna." +#: ../../include/enotify.php:321 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "Obdržel jste [url=%1$s]požadavek na registraci[/url] od '%2$s'." -#: ../../mod/subthread.php:103 +#: ../../include/enotify.php:324 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s následuje %3$s uživatele %2$s" +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "Plné jméno:\t%1$s\\nUmístění webu:\t%2$s\\nPřihlašovací účet:\t%3$s (%4$s)" -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#: ../../include/enotify.php:327 #, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s vítá %2$s" +msgid "Please visit %s to approve or reject the request." +msgstr "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku." -#: ../../mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen." +#: ../../include/oembed.php:210 +msgid "Embedded content" +msgstr "vložený obsah" -#: ../../mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Odpověď ze vzdáleného serveru nebyla srozumitelná." +#: ../../include/oembed.php:219 +msgid "Embedding disabled" +msgstr "Vkládání zakázáno" -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Neočekávaná odpověď od vzdáleného serveru:" +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Chyba dekódování uživatelského účtu" -#: ../../mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Potvrzení úspěšně dokončena." +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?" -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Vzdálený server oznámil:" +#: ../../include/uimport.php:116 ../../include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Chyba! Nelze ověřit přezdívku" -#: ../../mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu." +#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Uživatel '%s' již na tomto serveru existuje!" -#: ../../mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Žádost o propojení selhala nebo byla zrušena." +#: ../../include/uimport.php:153 +msgid "User creation error" +msgstr "Chyba vytváření uživatele" -#: ../../mod/dfrn_confirm.php:429 -msgid "Unable to set contact photo." -msgstr "Nelze nastavit fotografii kontaktu." +#: ../../include/uimport.php:171 +msgid "User profile creation error" +msgstr "Chyba vytváření uživatelského účtu" -#: ../../mod/dfrn_confirm.php:571 +#: ../../include/uimport.php:220 #, php-format -msgid "No user record found for '%s' " -msgstr "Pro '%s' nenalezen žádný uživatelský záznam " +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d kontakt nenaimporován" +msgstr[1] "%d kontaktů nenaimporováno" +msgstr[2] "%d kontakty nenaimporovány" -#: ../../mod/dfrn_confirm.php:581 -msgid "Our site encryption key is apparently messed up." -msgstr "Náš šifrovací klíč zřejmě přestal správně fungovat." +#: ../../include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "Hotovo. Nyní se můžete přihlásit se svými uživatelským účtem a heslem" -#: ../../mod/dfrn_confirm.php:592 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat." +#: ../../index.php:428 +msgid "toggle mobile" +msgstr "přepnout mobil" + +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 +#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55 +#: ../../view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Nastavení téma" -#: ../../mod/dfrn_confirm.php:613 -msgid "Contact record was not found for you on our site." -msgstr "Kontakt záznam nebyl nalezen pro vás na našich stránkách." +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)" -#: ../../mod/dfrn_confirm.php:627 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "V adresáři není k dispozici veřejný klíč pro URL %s." +#: ../../view/theme/cleanzero/config.php:84 +#: ../../view/theme/dispy/config.php:73 +#: ../../view/theme/diabook/config.php:151 +msgid "Set font-size for posts and comments" +msgstr "Nastav velikost písma pro přízpěvky a komentáře." -#: ../../mod/dfrn_confirm.php:647 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat." +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Nastavení šířku grafické šablony" -#: ../../mod/dfrn_confirm.php:658 -msgid "Unable to set your contact credentials on our system." -msgstr "Nelze nastavit Vaše přihlašovací údaje v našem systému." +#: ../../view/theme/cleanzero/config.php:86 +#: ../../view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Barevné schéma" -#: ../../mod/dfrn_confirm.php:725 -msgid "Unable to update your contact profile details on our system" -msgstr "Nelze aktualizovat Váš profil v našem systému" +#: ../../view/theme/dispy/config.php:74 +#: ../../view/theme/diabook/config.php:152 +msgid "Set line-height for posts and comments" +msgstr "Nastav výšku řádku pro přízpěvky a komentáře." -#: ../../mod/dfrn_confirm.php:797 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s se připojil k %2$s" +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Nastavit barevné schéma" -#: ../../mod/item.php:113 -msgid "Unable to locate original post." -msgstr "Nelze nalézt původní příspěvek." +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Zarovnání" -#: ../../mod/item.php:324 -msgid "Empty post discarded." -msgstr "Prázdný příspěvek odstraněn." +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Vlevo" -#: ../../mod/item.php:915 -msgid "System error. Post not saved." -msgstr "Chyba systému. Příspěvek nebyl uložen." +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Uprostřed" -#: ../../mod/item.php:941 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica." +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Velikost písma u příspěvků" -#: ../../mod/item.php:943 -#, php-format -msgid "You may visit them online at %s" -msgstr "Můžete je navštívit online na adrese %s" +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Velikost písma textů" -#: ../../mod/item.php:944 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam." +#: ../../view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Nastav rozlišení pro prostřední sloupec" -#: ../../mod/item.php:948 -#, php-format -msgid "%s posted an update." -msgstr "%s poslal aktualizaci." +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Nastavení barevného schematu" -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo." +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Nastavit přiblížení pro Earth Layer" -#: ../../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 "Nepodařilo se snížit velikost obrázku [%s]." +#: ../../view/theme/diabook/config.php:156 +#: ../../view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" +msgstr "Nastavit zeměpistnou délku (X) pro Earth Layers" -#: ../../mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě." +#: ../../view/theme/diabook/config.php:157 +#: ../../view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Nastavit zeměpistnou šířku (X) pro Earth Layers" -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Obrázek nelze zpracovat " +#: ../../view/theme/diabook/config.php:158 +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +msgid "Community Pages" +msgstr "Komunitní stránky" -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Nahrát soubor:" +#: ../../view/theme/diabook/config.php:159 +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +msgid "Earth Layers" +msgstr "Earth Layers" -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Vybrat profil:" +#: ../../view/theme/diabook/config.php:160 +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +msgid "Community Profiles" +msgstr "Komunitní profily" -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Nahrát" +#: ../../view/theme/diabook/config.php:161 +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +msgid "Help or @NewHere ?" +msgstr "Pomoc nebo @ProNováčky ?" -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "přeskočit tento krok " +#: ../../view/theme/diabook/config.php:162 +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +msgid "Connect Services" +msgstr "Propojené služby" -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "Vybrat fotografii z Vašich fotoalb" +#: ../../view/theme/diabook/config.php:163 +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +msgid "Find Friends" +msgstr "Nalézt Přátele" -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Oříznout obrázek" +#: ../../view/theme/diabook/config.php:164 +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +msgid "Last users" +msgstr "Poslední uživatelé" -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Prosím, ořízněte tento obrázek pro optimální zobrazení." +#: ../../view/theme/diabook/config.php:165 +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "Poslední fotografie" -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Editace dokončena" +#: ../../view/theme/diabook/config.php:166 +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +msgid "Last likes" +msgstr "Poslední líbí/nelíbí" -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Obrázek byl úspěšně nahrán." +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Vaše kontakty" -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Přátelé uživatele %s" +#: ../../view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Vaše osobní fotky" -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Žádní přátelé k zobrazení" +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Lokální Adresář" -#: ../../mod/directory.php:59 -msgid "Find on this site" -msgstr "Nalézt na tomto webu" +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Nastavit faktor přiblížení pro Earth Layers" -#: ../../mod/directory.php:62 -msgid "Site Directory" -msgstr "Adresář serveru" +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Zobrazit/skrýt boxy na pravém sloupci:" -#: ../../mod/directory.php:116 -msgid "Gender: " -msgstr "Pohlaví: " +#: ../../view/theme/vier/config.php:56 +msgid "Set style" +msgstr "Nastavit styl" -#: ../../mod/directory.php:189 -msgid "No entries (some entries may be hidden)." -msgstr "Žádné záznamy (některé položky mohou být skryty)." +#: ../../view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "" -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Časová konverze" +#: ../../view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "" -#: ../../mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách" +#: ../../view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "" -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "UTC čas: %s" +#: ../../view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "" -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Aktuální časové pásmo: %s" +#: ../../view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "" -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Převedený lokální čas : %s" +#: ../../view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "" -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Prosím, vyberte své časové pásmo:" +#: ../../view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "" diff --git a/view/cs/strings.php b/view/cs/strings.php index 95f6c98829..8bd40257cd 100644 --- a/view/cs/strings.php +++ b/view/cs/strings.php @@ -5,748 +5,289 @@ function string_plural_select_cs($n){ return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;; }} ; -$a->strings["Submit"] = "Odeslat"; -$a->strings["Theme settings"] = "Nastavení téma"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)"; -$a->strings["Set font-size for posts and comments"] = "Nastav velikost písma pro přízpěvky a komentáře."; -$a->strings["Set theme width"] = "Nastavení šířku grafické šablony"; -$a->strings["Color scheme"] = "Barevné schéma"; -$a->strings["Set style"] = "Nastavit styl"; -$a->strings["don't show"] = "nikdy nezobrazit"; -$a->strings["show"] = "zobrazit"; -$a->strings["Set line-height for posts and comments"] = "Nastav výšku řádku pro přízpěvky a komentáře."; -$a->strings["Set resolution for middle column"] = "Nastav rozlišení pro prostřední sloupec"; -$a->strings["Set color scheme"] = "Nastavení barevného schematu"; -$a->strings["Set zoomfactor for Earth Layer"] = "Nastavit přiblížení pro Earth Layer"; -$a->strings["Set longitude (X) for Earth Layers"] = "Nastavit zeměpistnou délku (X) pro Earth Layers"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Nastavit zeměpistnou šířku (X) pro Earth Layers"; -$a->strings["Community Pages"] = "Komunitní stránky"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Community Profiles"] = "Komunitní profily"; -$a->strings["Help or @NewHere ?"] = "Pomoc nebo @ProNováčky ?"; -$a->strings["Connect Services"] = "Propojené služby"; -$a->strings["Find Friends"] = "Nalézt Přátele"; -$a->strings["Last users"] = "Poslední uživatelé"; -$a->strings["Last photos"] = "Poslední fotografie"; -$a->strings["Last likes"] = "Poslední líbí/nelíbí"; -$a->strings["Home"] = "Domů"; -$a->strings["Your posts and conversations"] = "Vaše příspěvky a konverzace"; -$a->strings["Profile"] = "Profil"; -$a->strings["Your profile page"] = "Vaše profilová stránka"; -$a->strings["Contacts"] = "Kontakty"; -$a->strings["Your contacts"] = "Vaše kontakty"; -$a->strings["Photos"] = "Fotografie"; -$a->strings["Your photos"] = "Vaše fotky"; -$a->strings["Events"] = "Události"; -$a->strings["Your events"] = "Vaše události"; -$a->strings["Personal notes"] = "Osobní poznámky"; -$a->strings["Your personal photos"] = "Vaše osobní fotky"; -$a->strings["Community"] = "Komunita"; -$a->strings["event"] = "událost"; -$a->strings["status"] = "Stav"; -$a->strings["photo"] = "fotografie"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s má rád %2\$s' na %3\$s"; -$a->strings["Contact Photos"] = "Fotogalerie kontaktu"; -$a->strings["Profile Photos"] = "Profilové fotografie"; -$a->strings["Local Directory"] = "Lokální Adresář"; -$a->strings["Global Directory"] = "Globální adresář"; -$a->strings["Similar Interests"] = "Podobné zájmy"; -$a->strings["Friend Suggestions"] = "Návrhy přátel"; -$a->strings["Invite Friends"] = "Pozvat přátele"; -$a->strings["Settings"] = "Nastavení"; -$a->strings["Set zoomfactor for Earth Layers"] = "Nastavit faktor přiblížení pro Earth Layers"; -$a->strings["Show/hide boxes at right-hand column:"] = "Zobrazit/skrýt boxy na pravém sloupci:"; -$a->strings["Alignment"] = "Zarovnání"; -$a->strings["Left"] = "Vlevo"; -$a->strings["Center"] = "Uprostřed"; -$a->strings["Posts font size"] = "Velikost písma u příspěvků"; -$a->strings["Textareas font size"] = "Velikost písma textů"; -$a->strings["Set colour scheme"] = "Nastavit barevné schéma"; -$a->strings["You must be logged in to use addons. "] = "Musíte být přihlášení pro použití rozšíření."; -$a->strings["Not Found"] = "Nenalezen"; -$a->strings["Page not found."] = "Stránka nenalezena"; -$a->strings["Permission denied"] = "Nedostatečné oprávnění"; +$a->strings["%d contact edited."] = array( + 0 => "%d kontakt upraven.", + 1 => "%d kontakty upraveny", + 2 => "%d kontaktů upraveno", +); +$a->strings["Could not access contact record."] = "Nelze získat přístup k záznamu kontaktu."; +$a->strings["Could not locate selected profile."] = "Nelze nalézt vybraný profil."; +$a->strings["Contact updated."] = "Kontakt aktualizován."; +$a->strings["Failed to update contact record."] = "Nepodařilo se aktualizovat kontakt."; $a->strings["Permission denied."] = "Přístup odmítnut."; -$a->strings["toggle mobile"] = "přepnout mobil"; -$a->strings["Delete this item?"] = "Odstranit tuto položku?"; -$a->strings["Comment"] = "Okomentovat"; -$a->strings["show more"] = "zobrazit více"; -$a->strings["show fewer"] = "zobrazit méně"; -$a->strings["Update %s failed. See error logs."] = "Aktualizace %s selhala. Zkontrolujte protokol chyb."; -$a->strings["Create a New Account"] = "Vytvořit nový účet"; -$a->strings["Register"] = "Registrovat"; -$a->strings["Logout"] = "Odhlásit se"; -$a->strings["Login"] = "Přihlásit se"; -$a->strings["Nickname or Email address: "] = "Přezdívka nebo e-mailová adresa:"; -$a->strings["Password: "] = "Heslo: "; -$a->strings["Remember me"] = "Pamatuj si mne"; -$a->strings["Or login using OpenID: "] = "Nebo přihlášení pomocí OpenID: "; -$a->strings["Forgot your password?"] = "Zapomněli jste své heslo?"; -$a->strings["Password Reset"] = "Obnovení hesla"; -$a->strings["Website Terms of Service"] = "Podmínky použití serveru"; -$a->strings["terms of service"] = "podmínky použití"; -$a->strings["Website Privacy Policy"] = "Pravidla ochrany soukromí serveru"; -$a->strings["privacy policy"] = "Ochrana soukromí"; -$a->strings["Requested account is not available."] = "Požadovaný účet není dostupný."; -$a->strings["Requested profile is not available."] = "Požadovaný profil není k dispozici."; -$a->strings["Edit profile"] = "Upravit profil"; -$a->strings["Connect"] = "Spojit"; -$a->strings["Message"] = "Zpráva"; -$a->strings["Profiles"] = "Profily"; -$a->strings["Manage/edit profiles"] = "Spravovat/upravit profily"; -$a->strings["Change profile photo"] = "Změnit profilovou fotografii"; -$a->strings["Create New Profile"] = "Vytvořit nový profil"; -$a->strings["Profile Image"] = "Profilový obrázek"; -$a->strings["visible to everybody"] = "viditelné pro všechny"; -$a->strings["Edit visibility"] = "Upravit viditelnost"; -$a->strings["Location:"] = "Místo:"; -$a->strings["Gender:"] = "Pohlaví:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Domácí stránka:"; -$a->strings["Network:"] = "Síť:"; -$a->strings["g A l F d"] = "g A l F d"; -$a->strings["F d"] = "d. F"; -$a->strings["[today]"] = "[Dnes]"; -$a->strings["Birthday Reminders"] = "Připomínka narozenin"; -$a->strings["Birthdays this week:"] = "Narozeniny tento týden:"; -$a->strings["[No description]"] = "[Žádný popis]"; -$a->strings["Event Reminders"] = "Připomenutí událostí"; -$a->strings["Events this week:"] = "Události tohoto týdne:"; -$a->strings["Status"] = "Stav"; -$a->strings["Status Messages and Posts"] = "Statusové zprávy a příspěvky "; -$a->strings["Profile Details"] = "Detaily profilu"; -$a->strings["Photo Albums"] = "Fotoalba"; -$a->strings["Videos"] = "Videa"; -$a->strings["Events and Calendar"] = "Události a kalendář"; -$a->strings["Personal Notes"] = "Osobní poznámky"; -$a->strings["Only You Can See This"] = "Toto můžete vidět jen Vy"; -$a->strings["General Features"] = "Obecné funkčnosti"; -$a->strings["Multiple Profiles"] = "Vícenásobné profily"; -$a->strings["Ability to create multiple profiles"] = "Schopnost vytvořit vícenásobné profily"; -$a->strings["Post Composition Features"] = "Nastavení vytváření příspěvků"; -$a->strings["Richtext Editor"] = "Richtext Editor"; -$a->strings["Enable richtext editor"] = "Povolit richtext editor"; -$a->strings["Post Preview"] = "Náhled příspěvku"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Povolit náhledy příspěvků a komentářů před jejich zveřejněním"; -$a->strings["Auto-mention Forums"] = "Automaticky zmíněná Fóra"; -$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně"; -$a->strings["Network Sidebar Widgets"] = "Síťové postranní widgety"; -$a->strings["Search by Date"] = "Vyhledávat dle Data"; -$a->strings["Ability to select posts by date ranges"] = "Možnost označit příspěvky dle časového intervalu"; -$a->strings["Group Filter"] = "Skupinový Filtr"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny"; -$a->strings["Network Filter"] = "Síťový Filtr"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě"; -$a->strings["Saved Searches"] = "Uložená hledání"; -$a->strings["Save search terms for re-use"] = "Uložit kritéria vyhledávání pro znovupoužití"; -$a->strings["Network Tabs"] = "Síťové záložky"; -$a->strings["Network Personal Tab"] = "Osobní síťový záložka "; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval "; -$a->strings["Network New Tab"] = "Nová záložka síť"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)"; -$a->strings["Network Shared Links Tab"] = "záložka Síťové sdílené odkazy "; -$a->strings["Enable tab to display only Network posts with links in them"] = "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně"; -$a->strings["Post/Comment Tools"] = "Nástroje Příspěvků/Komentářů"; -$a->strings["Multiple Deletion"] = "Násobné mazání"; -$a->strings["Select and delete multiple posts/comments at once"] = "Označit a smazat více "; -$a->strings["Edit Sent Posts"] = "Editovat Odeslané příspěvky"; -$a->strings["Edit and correct posts and comments after sending"] = "Editovat a opravit příspěvky a komentáře po odeslání"; -$a->strings["Tagging"] = "Štítkování"; -$a->strings["Ability to tag existing posts"] = "Schopnost přidat štítky ke stávajícím příspvěkům"; -$a->strings["Post Categories"] = "Kategorie příspěvků"; -$a->strings["Add categories to your posts"] = "Přidat kategorie k Vašim příspěvkům"; -$a->strings["Saved Folders"] = "Uložené složky"; -$a->strings["Ability to file posts under folders"] = "Možnost řadit příspěvky do složek"; -$a->strings["Dislike Posts"] = "Označit příspěvky jako neoblíbené"; -$a->strings["Ability to dislike posts/comments"] = "Možnost označit příspěvky/komentáře jako neoblíbené"; -$a->strings["Star Posts"] = "Příspěvky s hvězdou"; -$a->strings["Ability to mark special posts with a star indicator"] = "Možnost označit příspěvky s indikátorem hvězdy"; -$a->strings["Mute Post Notifications"] = "Utlumit upozornění na přísvěvky"; -$a->strings["Ability to mute notifications for a thread"] = "Možnost stlumit upozornění pro vlákno"; -$a->strings["%s's birthday"] = "%s má narozeniny"; -$a->strings["Happy Birthday %s"] = "Veselé narozeniny %s"; -$a->strings["[Name Withheld]"] = "[Jméno odepřeno]"; -$a->strings["Item not found."] = "Položka nenalezena."; -$a->strings["Do you really want to delete this item?"] = "Opravdu chcete smazat tuto položku?"; +$a->strings["Contact has been blocked"] = "Kontakt byl zablokován"; +$a->strings["Contact has been unblocked"] = "Kontakt byl odblokován"; +$a->strings["Contact has been ignored"] = "Kontakt bude ignorován"; +$a->strings["Contact has been unignored"] = "Kontakt přestal být ignorován"; +$a->strings["Contact has been archived"] = "Kontakt byl archivován"; +$a->strings["Contact has been unarchived"] = "Kontakt byl vrácen z archívu."; +$a->strings["Do you really want to delete this contact?"] = "Opravdu chcete smazat tento kontakt?"; $a->strings["Yes"] = "Ano"; $a->strings["Cancel"] = "Zrušit"; -$a->strings["Archives"] = "Archív"; -$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."] = "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění může ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím, další skupinu s jiným názvem."; -$a->strings["Default privacy group for new contacts"] = "Defaultní soukromá skrupina pro nové kontakty."; -$a->strings["Everybody"] = "Všichni"; -$a->strings["edit"] = "editovat"; -$a->strings["Groups"] = "Skupiny"; -$a->strings["Edit group"] = "Editovat skupinu"; -$a->strings["Create a new group"] = "Vytvořit novou skupinu"; -$a->strings["Contacts not in any group"] = "Kontakty, které nejsou v žádné skupině"; -$a->strings["add"] = "přidat"; -$a->strings["Wall Photos"] = "Fotografie na zdi"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Nelze nalézt záznam v DNS pro databázový server '%s'"; -$a->strings["Add New Contact"] = "Přidat nový kontakt"; -$a->strings["Enter address or web location"] = "Zadejte adresu nebo umístění webu"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Příklad: jan@příklad.cz, http://příklad.cz/jana"; -$a->strings["%d invitation available"] = array( - 0 => "Pozvánka %d k dispozici", - 1 => "Pozvánky %d k dispozici", - 2 => "Pozvánky %d k dispozici", -); -$a->strings["Find People"] = "Nalézt lidi"; -$a->strings["Enter name or interest"] = "Zadejte jméno nebo zájmy"; -$a->strings["Connect/Follow"] = "Připojit / Následovat"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Příklady: Robert Morgenstein, rybaření"; -$a->strings["Find"] = "Najít"; -$a->strings["Random Profile"] = "Náhodný Profil"; -$a->strings["Networks"] = "Sítě"; -$a->strings["All Networks"] = "Všechny sítě"; -$a->strings["Everything"] = "Všechno"; -$a->strings["Categories"] = "Kategorie"; +$a->strings["Contact has been removed."] = "Kontakt byl odstraněn."; +$a->strings["You are mutual friends with %s"] = "Jste vzájemní přátelé s uživatelem %s"; +$a->strings["You are sharing with %s"] = "Sdílíte s uživatelem %s"; +$a->strings["%s is sharing with you"] = "uživatel %s sdílí s vámi"; +$a->strings["Private communications are not available for this contact."] = "Soukromá komunikace není dostupná pro tento kontakt."; +$a->strings["Never"] = "Nikdy"; +$a->strings["(Update was successful)"] = "(Aktualizace byla úspěšná)"; +$a->strings["(Update was not successful)"] = "(Aktualizace nebyla úspěšná)"; +$a->strings["Suggest friends"] = "Navrhněte přátelé"; +$a->strings["Network type: %s"] = "Typ sítě: %s"; $a->strings["%d contact in common"] = array( 0 => "%d sdílený kontakt", 1 => "%d sdílených kontaktů", 2 => "%d sdílených kontaktů", ); -$a->strings["Friendica Notification"] = "Friendica Notifikace"; -$a->strings["Thank You,"] = "Děkujeme, "; -$a->strings["%s Administrator"] = "%s Administrátor"; -$a->strings["noreply"] = "neodpovídat"; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Upozornění] Obdržena nová zpráva na %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s Vám poslal novou soukromou zprávu na %2\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s Vám poslal %2\$s."; -$a->strings["a private message"] = "soukromá zpráva"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s's %4\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]Váš %3\$s[/url]"; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Upozornění] Komentář ke konverzaci #%1\$d od %2\$s"; -$a->strings["%s commented on an item/conversation you have been following."] = "Uživatel %s okomentoval vámi sledovanou položku/konverzaci."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět."; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď"; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s přidal příspěvek na Vaši profilovou zeď na %2\$s"; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s napřidáno na [url=%2\$s]na Vaši zeď[/url]"; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Upozornění] %s Vás označil"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s Vás označil na %2\$s"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]Vás označil[/url]."; -$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s nasdílel nový příspěvek"; -$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s nasdílel nový příspěvek na %2\$s"; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]nasdílel příspěvek[/url]."; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Upozornění] %1\$s Vás šťouchnul"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s Vás šťouchnul na %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "Uživatel %1\$s [url=%2\$s]Vás šťouchnul[/url]."; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Upozornění] %s označil Váš příspěvek"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s označil Váš příspěvek na %2\$s"; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s označil [url=%2\$s]Váš příspěvek[/url]"; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Upozornění] Obdrženo přestavení"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Obdržel jste žádost o spojení od '%1\$s' na %2\$s"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]žádost o spojení[/url] od %2\$s."; -$a->strings["You may visit their profile at %s"] = "Můžete navštívit jejich profil na %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Prosím navštivte %s pro schválení či zamítnutí představení."; -$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Upozornění] Nový člověk s vámi sdílí"; -$a->strings["%1\$s is sharing with you at %2\$s"] = "uživatel %1\$s sdílí s vámi ma %2\$s"; -$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Upozornění] Máte nového následovníka"; -$a->strings["You have a new follower at %2\$s : %1\$s"] = "Máte nového následovníka na %2\$s : %1\$s"; -$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Upozornění] Obdržen návrh na přátelství"; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Obdržel jste návrh přátelství od '%1\$s' na %2\$s"; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Obdržel jste [url=%1\$s]návrh přátelství[/url] s %2\$s from %3\$s."; -$a->strings["Name:"] = "Jméno:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Prosím navštivte %s pro schválení či zamítnutí doporučení."; -$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Upozornění] Spojení akceptováno"; -$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' akceptoval váš požadavek na spojení na %2\$s"; -$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s akceptoval váš [url=%1\$s]požadavek na spojení[/url]."; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Jste nyní vzájemnými přáteli a můžete si vyměňovat aktualizace statusu, fotografií a emailů\nbez omezení."; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Prosím navštivte %s pokud chcete změnit tento vztah."; -$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' vás přijal jako \"fanouška\", což omezuje některé formy komunikace - jako jsou soukromé zprávy a některé interakce na profilech. Pokud se jedná o celebritu, případně o komunitní stránky, pak bylo toto nastavení provedeno automaticky.."; -$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "''%1\$s' se může rozhodnout rozšířit tento vztah na oboustraný nebo méně restriktivní"; -$a->strings["[Friendica System:Notify] registration request"] = "[Systém Friendica :Upozornění] registrační požadavek"; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Obdržel jste požadavek na registraci od '%1\$s' na %2\$s"; -$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]požadavek na registraci[/url] od '%2\$s'."; -$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Plné jméno:\t%1\$s\\nUmístění webu:\t%2\$s\\nPřihlašovací účet:\t%3\$s (%4\$s)"; -$a->strings["Please visit %s to approve or reject the request."] = "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku."; -$a->strings["User not found."] = "Uživatel nenalezen"; -$a->strings["There is no status with this id."] = "Není tu žádný status s tímto id."; -$a->strings["There is no conversation with this id."] = "Nemáme žádnou konverzaci s tímto id."; -$a->strings["view full size"] = "zobrazit v plné velikosti"; -$a->strings[" on Last.fm"] = " na Last.fm"; -$a->strings["Full Name:"] = "Celé jméno:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Narozeniny:"; -$a->strings["Age:"] = "Věk:"; -$a->strings["for %1\$d %2\$s"] = "pro %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Sexuální preference:"; -$a->strings["Hometown:"] = "Rodné město"; -$a->strings["Tags:"] = "Štítky:"; -$a->strings["Political Views:"] = "Politické přesvědčení:"; -$a->strings["Religion:"] = "Náboženství:"; -$a->strings["About:"] = "O mě:"; -$a->strings["Hobbies/Interests:"] = "Koníčky/zájmy:"; -$a->strings["Likes:"] = "Líbí se:"; -$a->strings["Dislikes:"] = "Nelibí se:"; -$a->strings["Contact information and Social Networks:"] = "Kontaktní informace a sociální sítě:"; -$a->strings["Musical interests:"] = "Hudební vkus:"; -$a->strings["Books, literature:"] = "Knihy, literatura:"; -$a->strings["Television:"] = "Televize:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/tanec/kultura/zábava:"; -$a->strings["Love/Romance:"] = "Láska/romance"; -$a->strings["Work/employment:"] = "Práce/zaměstnání:"; -$a->strings["School/education:"] = "Škola/vzdělávání:"; -$a->strings["Nothing new here"] = "Zde není nic nového"; -$a->strings["Clear notifications"] = "Smazat notifikace"; -$a->strings["End this session"] = "Konec této relace"; -$a->strings["Your videos"] = "Vaše videa"; -$a->strings["Your personal notes"] = "Vaše osobní poznámky"; -$a->strings["Sign in"] = "Přihlásit se"; -$a->strings["Home Page"] = "Domácí stránka"; -$a->strings["Create an account"] = "Vytvořit účet"; -$a->strings["Help"] = "Nápověda"; -$a->strings["Help and documentation"] = "Nápověda a dokumentace"; -$a->strings["Apps"] = "Aplikace"; -$a->strings["Addon applications, utilities, games"] = "Doplňkové aplikace, nástroje, hry"; -$a->strings["Search"] = "Vyhledávání"; -$a->strings["Search site content"] = "Hledání na stránkách tohoto webu"; -$a->strings["Conversations on this site"] = "Konverzace na tomto webu"; -$a->strings["Directory"] = "Adresář"; -$a->strings["People directory"] = "Adresář"; -$a->strings["Information"] = "Informace"; -$a->strings["Information about this friendica instance"] = "Informace o této instanci Friendica"; -$a->strings["Network"] = "Síť"; -$a->strings["Conversations from your friends"] = "Konverzace od Vašich přátel"; -$a->strings["Network Reset"] = "Síťový Reset"; -$a->strings["Load Network page with no filters"] = "Načíst stránku Síť bez filtrů"; -$a->strings["Introductions"] = "Představení"; -$a->strings["Friend Requests"] = "Žádosti přátel"; -$a->strings["Notifications"] = "Upozornění"; -$a->strings["See all notifications"] = "Zobrazit všechny upozornění"; -$a->strings["Mark all system notifications seen"] = "Označit všechny upozornění systému jako přečtené"; -$a->strings["Messages"] = "Zprávy"; -$a->strings["Private mail"] = "Soukromá pošta"; -$a->strings["Inbox"] = "Doručená pošta"; -$a->strings["Outbox"] = "Odeslaná pošta"; -$a->strings["New Message"] = "Nová zpráva"; -$a->strings["Manage"] = "Spravovat"; -$a->strings["Manage other pages"] = "Spravovat jiné stránky"; -$a->strings["Delegations"] = "Delegace"; -$a->strings["Delegate Page Management"] = "Správa delegátů stránky"; -$a->strings["Account settings"] = "Nastavení účtu"; -$a->strings["Manage/Edit Profiles"] = "Spravovat/Editovat Profily"; -$a->strings["Manage/edit friends and contacts"] = "Spravovat/upravit přátelé a kontakty"; -$a->strings["Admin"] = "Administrace"; -$a->strings["Site setup and configuration"] = "Nastavení webu a konfigurace"; -$a->strings["Navigation"] = "Navigace"; -$a->strings["Site map"] = "Mapa webu"; -$a->strings["Click here to upgrade."] = "Klikněte zde pro aktualizaci."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Tato akce překročí limit nastavené Vaším předplatným."; -$a->strings["This action is not available under your subscription plan."] = "Tato akce není v rámci Vašeho předplatného dostupná."; -$a->strings["Disallowed profile URL."] = "Nepovolené URL profilu."; -$a->strings["Connect URL missing."] = "Chybí URL adresa."; -$a->strings["This site is not configured to allow communications with other networks."] = "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Nenalezen žádný kompatibilní komunikační protokol nebo kanál."; -$a->strings["The profile address specified does not provide adequate information."] = "Uvedená adresa profilu neposkytuje dostatečné informace."; -$a->strings["An author or name was not found."] = "Autor nebo jméno nenalezeno"; -$a->strings["No browser URL could be matched to this address."] = "Této adrese neodpovídá žádné URL prohlížeče."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem."; -$a->strings["Use mailto: in front of address to force email check."] = "Použite mailo: před adresou k vynucení emailové kontroly."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Zadaná adresa profilu patří do sítě, která byla na tomto serveru zakázána."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení."; -$a->strings["Unable to retrieve contact information."] = "Nepodařilo se získat kontaktní informace."; -$a->strings["following"] = "následující"; -$a->strings["Error decoding account file"] = "Chyba dekódování uživatelského účtu"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?"; -$a->strings["Error! Cannot check nickname"] = "Chyba! Nelze ověřit přezdívku"; -$a->strings["User '%s' already exists on this server!"] = "Uživatel '%s' již na tomto serveru existuje!"; -$a->strings["User creation error"] = "Chyba vytváření uživatele"; -$a->strings["User profile creation error"] = "Chyba vytváření uživatelského účtu"; -$a->strings["%d contact not imported"] = array( - 0 => "%d kontakt nenaimporován", - 1 => "%d kontaktů nenaimporováno", - 2 => "%d kontakty nenaimporovány", -); -$a->strings["Done. You can now login with your username and password"] = "Hotovo. Nyní se můžete přihlásit se svými uživatelským účtem a heslem"; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Starts:"] = "Začíná:"; -$a->strings["Finishes:"] = "Končí:"; -$a->strings["stopped following"] = "následování zastaveno"; -$a->strings["Poke"] = "Šťouchnout"; -$a->strings["View Status"] = "Zobrazit Status"; -$a->strings["View Profile"] = "Zobrazit Profil"; -$a->strings["View Photos"] = "Zobrazit Fotky"; -$a->strings["Network Posts"] = "Zobrazit Příspěvky sítě"; -$a->strings["Edit Contact"] = "Editovat Kontakty"; -$a->strings["Drop Contact"] = "Odstranit kontakt"; -$a->strings["Send PM"] = "Poslat soukromou zprávu"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tThe friendica vývojáři uvolnili nedávno aktualizaci %s,\n\t\t\tale při pokusu o její instalaci se něco velmi nepovedlo.\n\t\t\tJe třeba to opravit a já to sám nedokážu. Prosím kontaktuj\n\t\t\tfriendica vývojáře, pokud mi s tím nepomůžeš ty sám. Moje databáze může být poškozena."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Chybová zpráva je\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "Při vytváření databázových tabulek došlo k chybám."; -$a->strings["Errors encountered performing database changes."] = "Při provádění databázových změn došlo k chybám."; -$a->strings["Miscellaneous"] = "Různé"; -$a->strings["year"] = "rok"; -$a->strings["month"] = "měsíc"; -$a->strings["day"] = "den"; -$a->strings["never"] = "nikdy"; -$a->strings["less than a second ago"] = "méně než před sekundou"; -$a->strings["years"] = "let"; -$a->strings["months"] = "měsíců"; -$a->strings["week"] = "týdnem"; -$a->strings["weeks"] = "týdny"; -$a->strings["days"] = "dnů"; -$a->strings["hour"] = "hodina"; -$a->strings["hours"] = "hodin"; -$a->strings["minute"] = "minuta"; -$a->strings["minutes"] = "minut"; -$a->strings["second"] = "sekunda"; -$a->strings["seconds"] = "sekund"; -$a->strings["%1\$d %2\$s ago"] = "před %1\$d %2\$s"; -$a->strings["[no subject]"] = "[bez předmětu]"; -$a->strings["(no subject)"] = "(Bez předmětu)"; -$a->strings["Unknown | Not categorised"] = "Neznámé | Nezařazeno"; -$a->strings["Block immediately"] = "Okamžitě blokovat "; -$a->strings["Shady, spammer, self-marketer"] = "pochybný, spammer, self-makerter"; -$a->strings["Known to me, but no opinion"] = "Znám ho ale, ale bez rozhodnutí"; -$a->strings["OK, probably harmless"] = "OK, pravděpodobně neškodný"; -$a->strings["Reputable, has my trust"] = "Renomovaný, má mou důvěru"; -$a->strings["Frequently"] = "Často"; -$a->strings["Hourly"] = "každou hodinu"; -$a->strings["Twice daily"] = "Dvakrát denně"; -$a->strings["Daily"] = "denně"; -$a->strings["Weekly"] = "Týdenně"; -$a->strings["Monthly"] = "Měsíčně"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "E-mail"; -$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["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Diaspora konektor"; -$a->strings["Statusnet"] = "Statusnet"; -$a->strings["App.net"] = "App.net"; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s je nyní přítel s %2\$s"; -$a->strings["Sharing notification from Diaspora network"] = "Sdílení oznámení ze sítě Diaspora"; -$a->strings["Attachments:"] = "Přílohy:"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nemá rád %2\$s na %3\$s"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s šťouchnul %2\$s"; -$a->strings["poked"] = "šťouchnut"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s je právě %2\$s"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s označen uživatelem %2\$s %3\$s s %4\$s"; -$a->strings["post/item"] = "příspěvek/položka"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "uživatel %1\$s označil %2\$s's %3\$s jako oblíbeného"; -$a->strings["Select"] = "Vybrat"; +$a->strings["View all contacts"] = "Zobrazit všechny kontakty"; +$a->strings["Unblock"] = "Odblokovat"; +$a->strings["Block"] = "Blokovat"; +$a->strings["Toggle Blocked status"] = "Přepnout stav Blokováno"; +$a->strings["Unignore"] = "Přestat ignorovat"; +$a->strings["Ignore"] = "Ignorovat"; +$a->strings["Toggle Ignored status"] = "Přepnout stav Ignorováno"; +$a->strings["Unarchive"] = "Vrátit z archívu"; +$a->strings["Archive"] = "Archivovat"; +$a->strings["Toggle Archive status"] = "Přepnout stav Archivováno"; +$a->strings["Repair"] = "Opravit"; +$a->strings["Advanced Contact Settings"] = "Pokročilé nastavení kontaktu"; +$a->strings["Communications lost with this contact!"] = "Komunikace s tímto kontaktem byla ztracena!"; +$a->strings["Contact Editor"] = "Editor kontaktu"; +$a->strings["Submit"] = "Odeslat"; +$a->strings["Profile Visibility"] = "Viditelnost profilu"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu."; +$a->strings["Contact Information / Notes"] = "Kontaktní informace / poznámky"; +$a->strings["Edit contact notes"] = "Editovat poznámky kontaktu"; +$a->strings["Visit %s's profile [%s]"] = "Navštivte profil uživatele %s [%s]"; +$a->strings["Block/Unblock contact"] = "Blokovat / Odblokovat kontakt"; +$a->strings["Ignore contact"] = "Ignorovat kontakt"; +$a->strings["Repair URL settings"] = "Opravit nastavení adresy URL "; +$a->strings["View conversations"] = "Zobrazit konverzace"; +$a->strings["Delete contact"] = "Odstranit kontakt"; +$a->strings["Last update:"] = "Poslední aktualizace:"; +$a->strings["Update public posts"] = "Aktualizovat veřejné příspěvky"; +$a->strings["Update now"] = "Aktualizovat"; +$a->strings["Currently blocked"] = "V současnosti zablokováno"; +$a->strings["Currently ignored"] = "V současnosti ignorováno"; +$a->strings["Currently archived"] = "Aktuálně archivován"; +$a->strings["Hide this contact from others"] = "Skrýt tento kontakt před ostatními"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Odpovědi/Libí se na Vaše veřejné příspěvky mohou být stále viditelné"; +$a->strings["Notification for new posts"] = "Upozornění na nové příspěvky"; +$a->strings["Send a notification of every new post of this contact"] = "Poslat upozornění při každém novém příspěvku tohoto kontaktu"; +$a->strings["Fetch further information for feeds"] = "Načíst další informace pro kanál"; +$a->strings["Disabled"] = "Zakázáno"; +$a->strings["Fetch information"] = "Načíst informace"; +$a->strings["Fetch information and keywords"] = "Načíst informace a klíčová slova"; +$a->strings["Blacklisted keywords"] = "Zakázaná klíčová slova"; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = ""; +$a->strings["Suggestions"] = "Doporučení"; +$a->strings["Suggest potential friends"] = "Navrhnout potenciální přátele"; +$a->strings["All Contacts"] = "Všechny kontakty"; +$a->strings["Show all contacts"] = "Zobrazit všechny kontakty"; +$a->strings["Unblocked"] = "Odblokován"; +$a->strings["Only show unblocked contacts"] = "Zobrazit pouze neblokované kontakty"; +$a->strings["Blocked"] = "Blokován"; +$a->strings["Only show blocked contacts"] = "Zobrazit pouze blokované kontakty"; +$a->strings["Ignored"] = "Ignorován"; +$a->strings["Only show ignored contacts"] = "Zobrazit pouze ignorované kontakty"; +$a->strings["Archived"] = "Archivován"; +$a->strings["Only show archived contacts"] = "Zobrazit pouze archivované kontakty"; +$a->strings["Hidden"] = "Skrytý"; +$a->strings["Only show hidden contacts"] = "Zobrazit pouze skryté kontakty"; +$a->strings["Mutual Friendship"] = "Vzájemné přátelství"; +$a->strings["is a fan of yours"] = "je Váš fanoušek"; +$a->strings["you are a fan of"] = "jste fanouškem"; +$a->strings["Edit contact"] = "Editovat kontakt"; +$a->strings["Contacts"] = "Kontakty"; +$a->strings["Search your contacts"] = "Prohledat Vaše kontakty"; +$a->strings["Finding: "] = "Zjištění: "; +$a->strings["Find"] = "Najít"; +$a->strings["Update"] = "Aktualizace"; $a->strings["Delete"] = "Odstranit"; -$a->strings["View %s's profile @ %s"] = "Zobrazit profil uživatele %s na %s"; -$a->strings["Categories:"] = "Kategorie:"; -$a->strings["Filed under:"] = "Vyplněn pod:"; -$a->strings["%s from %s"] = "%s od %s"; -$a->strings["View in context"] = "Pohled v kontextu"; -$a->strings["Please wait"] = "Čekejte prosím"; -$a->strings["remove"] = "odstranit"; -$a->strings["Delete Selected Items"] = "Smazat vybrané položky"; -$a->strings["Follow Thread"] = "Následovat vlákno"; -$a->strings["%s likes this."] = "%s se to líbí."; -$a->strings["%s doesn't like this."] = "%s se to nelíbí."; -$a->strings["%2\$d people like this"] = "%2\$d lidem se to líbí"; -$a->strings["%2\$d people don't like this"] = "%2\$d lidem se to nelíbí"; -$a->strings["and"] = "a"; -$a->strings[", and %d other people"] = ", a %d dalších lidí"; -$a->strings["%s like this."] = "%s se to líbí."; -$a->strings["%s don't like this."] = "%s se to nelíbí."; -$a->strings["Visible to everybody"] = "Viditelné pro všechny"; -$a->strings["Please enter a link URL:"] = "Zadejte prosím URL odkaz:"; -$a->strings["Please enter a video link/URL:"] = "Prosím zadejte URL adresu videa:"; -$a->strings["Please enter an audio link/URL:"] = "Prosím zadejte URL adresu zvukového záznamu:"; -$a->strings["Tag term:"] = "Štítek:"; +$a->strings["No profile"] = "Žádný profil"; +$a->strings["Manage Identities and/or Pages"] = "Správa identit a / nebo stránek"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva."; +$a->strings["Select an identity to manage: "] = "Vyberte identitu pro správu: "; +$a->strings["Post successful."] = "Příspěvek úspěšně odeslán"; +$a->strings["Permission denied"] = "Nedostatečné oprávnění"; +$a->strings["Invalid profile identifier."] = "Neplatný identifikátor profilu."; +$a->strings["Profile Visibility Editor"] = "Editor viditelnosti profilu "; +$a->strings["Profile"] = "Profil"; +$a->strings["Click on a contact to add or remove."] = "Klikněte na kontakt pro přidání nebo odebrání"; +$a->strings["Visible To"] = "Viditelný pro"; +$a->strings["All Contacts (with secure profile access)"] = "Všechny kontakty (se zabezpečeným přístupovým profilem )"; +$a->strings["Item not found."] = "Položka nenalezena."; +$a->strings["Public access denied."] = "Veřejný přístup odepřen."; +$a->strings["Access to this profile has been restricted."] = "Přístup na tento profil byl omezen."; +$a->strings["Item has been removed."] = "Položka byla odstraněna."; +$a->strings["Welcome to Friendica"] = "Vítejte na Friendica"; +$a->strings["New Member Checklist"] = "Seznam doporučení pro nového člena"; +$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."] = "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace."; +$a->strings["Getting Started"] = "Začínáme"; +$a->strings["Friendica Walk-Through"] = "Prohlídka Friendica "; +$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."] = "Na Vaší stránce Rychlý Start - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit."; +$a->strings["Settings"] = "Nastavení"; +$a->strings["Go to Your Settings"] = "Navštivte své nastavení"; +$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."] = "Na Vaší stránce Nastavení - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti."; +$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."] = "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít."; +$a->strings["Upload Profile Photo"] = "Nahrát profilovou fotografii"; +$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."] = "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají."; +$a->strings["Edit Your Profile"] = "Editujte Váš 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."] = "Upravit výchozí profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho seznamu přátel a skrytí profilu před neznámými návštěvníky."; +$a->strings["Profile Keywords"] = "Profilová klíčová slova"; +$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."] = "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství."; +$a->strings["Connecting"] = "Probíhá pokus o připojení"; +$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."] = "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Pokud je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web."; +$a->strings["Importing Emails"] = "Importování emaiů"; +$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"] = "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu"; +$a->strings["Go to Your Contacts Page"] = "Navštivte Vaši stránku s kontakty"; +$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."] = "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu Přidat nový kontakt."; +$a->strings["Go to Your Site's Directory"] = "Navštivte lokální adresář Friendica"; +$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."] = "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů Připojení nebo Následovat si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována."; +$a->strings["Finding New People"] = "Nalezení nových lidí"; +$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."] = "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin."; +$a->strings["Groups"] = "Skupiny"; +$a->strings["Group Your Contacts"] = "Seskupte si své kontakty"; +$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."] = "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť."; +$a->strings["Why Aren't My Posts Public?"] = "Proč nejsou mé příspěvky veřejné?"; +$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 respektuje Vaše soukromí. Defaultně jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu"; +$a->strings["Getting Help"] = "Získání nápovědy"; +$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["OpenID protocol error. No ID returned."] = "Chyba OpenID protokolu. Navrátilo se žádné ID."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nenalezen účet a OpenID registrace na tomto serveru není dovolena."; +$a->strings["Login failed."] = "Přihlášení se nezdařilo."; +$a->strings["Image uploaded but image cropping failed."] = "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo."; +$a->strings["Profile Photos"] = "Profilové fotografie"; +$a->strings["Image size reduction [%s] failed."] = "Nepodařilo se snížit velikost obrázku [%s]."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě."; +$a->strings["Unable to process image"] = "Obrázek nelze zpracovat "; +$a->strings["Image exceeds size limit of %d"] = "Obrázek překročil limit velikosti %d"; +$a->strings["Unable to process image."] = "Obrázek není možné zprocesovat"; +$a->strings["Upload File:"] = "Nahrát soubor:"; +$a->strings["Select a profile:"] = "Vybrat profil:"; +$a->strings["Upload"] = "Nahrát"; +$a->strings["or"] = "nebo"; +$a->strings["skip this step"] = "přeskočit tento krok "; +$a->strings["select a photo from your photo albums"] = "Vybrat fotografii z Vašich fotoalb"; +$a->strings["Crop Image"] = "Oříznout obrázek"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Prosím, ořízněte tento obrázek pro optimální zobrazení."; +$a->strings["Done Editing"] = "Editace dokončena"; +$a->strings["Image uploaded successfully."] = "Obrázek byl úspěšně nahrán."; +$a->strings["Image upload failed."] = "Nahrání obrázku selhalo."; +$a->strings["photo"] = "fotografie"; +$a->strings["status"] = "Stav"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s následuje %3\$s uživatele %2\$s"; +$a->strings["Tag removed"] = "Štítek odstraněn"; +$a->strings["Remove Item Tag"] = "Odebrat štítek položky"; +$a->strings["Select a tag to remove: "] = "Vyberte štítek k odebrání: "; +$a->strings["Remove"] = "Odstranit"; $a->strings["Save to Folder:"] = "Uložit do složky:"; -$a->strings["Where are you right now?"] = "Kde právě jste?"; -$a->strings["Delete item(s)?"] = "Smazat položku(y)?"; -$a->strings["Post to Email"] = "Poslat příspěvek na e-mail"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Kontektory deaktivovány, od \"%s\" je aktivován."; -$a->strings["Hide your profile details from unknown viewers?"] = "Skrýt Vaše profilové detaily před neznámými uživateli?"; -$a->strings["Share"] = "Sdílet"; -$a->strings["Upload photo"] = "Nahrát fotografii"; -$a->strings["upload photo"] = "nahrát fotky"; -$a->strings["Attach file"] = "Přiložit soubor"; -$a->strings["attach file"] = "přidat soubor"; -$a->strings["Insert web link"] = "Vložit webový odkaz"; -$a->strings["web link"] = "webový odkaz"; -$a->strings["Insert video link"] = "Zadejte odkaz na video"; -$a->strings["video link"] = "odkaz na video"; -$a->strings["Insert audio link"] = "Zadejte odkaz na zvukový záznam"; -$a->strings["audio link"] = "odkaz na audio"; -$a->strings["Set your location"] = "Nastavte vaši polohu"; -$a->strings["set location"] = "nastavit místo"; -$a->strings["Clear browser location"] = "Odstranit adresu v prohlížeči"; -$a->strings["clear location"] = "vymazat místo"; -$a->strings["Set title"] = "Nastavit titulek"; -$a->strings["Categories (comma-separated list)"] = "Kategorie (čárkou oddělený seznam)"; -$a->strings["Permission settings"] = "Nastavení oprávnění"; -$a->strings["permissions"] = "oprávnění"; -$a->strings["CC: email addresses"] = "skrytá kopie: e-mailové adresy"; -$a->strings["Public post"] = "Veřejný příspěvek"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Příklad: bob@example.com, mary@example.com"; -$a->strings["Preview"] = "Náhled"; -$a->strings["Post to Groups"] = "Zveřejnit na Groups"; -$a->strings["Post to Contacts"] = "Zveřejnit na Groups"; -$a->strings["Private post"] = "Soukromý příspěvek"; -$a->strings["newer"] = "novější"; -$a->strings["older"] = "starší"; -$a->strings["prev"] = "předchozí"; -$a->strings["first"] = "první"; -$a->strings["last"] = "poslední"; -$a->strings["next"] = "další"; -$a->strings["No contacts"] = "Žádné kontakty"; -$a->strings["%d Contact"] = array( - 0 => "%d kontakt", - 1 => "%d kontaktů", - 2 => "%d kontaktů", -); -$a->strings["View Contacts"] = "Zobrazit kontakty"; +$a->strings["- select -"] = "- vyber -"; $a->strings["Save"] = "Uložit"; -$a->strings["poke"] = "šťouchnout"; -$a->strings["ping"] = "cinknout"; -$a->strings["pinged"] = "cinkut"; -$a->strings["prod"] = "pobídnout"; -$a->strings["prodded"] = "pobídnut"; -$a->strings["slap"] = "dát facku"; -$a->strings["slapped"] = "být uhozen"; -$a->strings["finger"] = "osahávat"; -$a->strings["fingered"] = "osaháván"; -$a->strings["rebuff"] = "odmítnout"; -$a->strings["rebuffed"] = "odmítnut"; -$a->strings["happy"] = "šťasný"; -$a->strings["sad"] = "smutný"; -$a->strings["mellow"] = "jemný"; -$a->strings["tired"] = "unavený"; -$a->strings["perky"] = "emergický"; -$a->strings["angry"] = "nazlobený"; -$a->strings["stupified"] = "otupen"; -$a->strings["puzzled"] = "popletený"; -$a->strings["interested"] = "zajímavý"; -$a->strings["bitter"] = "hořký"; -$a->strings["cheerful"] = "radnostný"; -$a->strings["alive"] = "naživu"; -$a->strings["annoyed"] = "otráven"; -$a->strings["anxious"] = "znepokojený"; -$a->strings["cranky"] = "mrzutý"; -$a->strings["disturbed"] = "vyrušen"; -$a->strings["frustrated"] = "frustrovaný"; -$a->strings["motivated"] = "motivovaný"; -$a->strings["relaxed"] = "uvolněný"; -$a->strings["surprised"] = "překvapený"; -$a->strings["Monday"] = "Pondělí"; -$a->strings["Tuesday"] = "Úterý"; -$a->strings["Wednesday"] = "Středa"; -$a->strings["Thursday"] = "Čtvrtek"; -$a->strings["Friday"] = "Pátek"; -$a->strings["Saturday"] = "Sobota"; -$a->strings["Sunday"] = "Neděle"; -$a->strings["January"] = "Ledna"; -$a->strings["February"] = "Února"; -$a->strings["March"] = "Března"; -$a->strings["April"] = "Dubna"; -$a->strings["May"] = "Května"; -$a->strings["June"] = "Června"; -$a->strings["July"] = "Července"; -$a->strings["August"] = "Srpna"; -$a->strings["September"] = "Září"; -$a->strings["October"] = "Října"; -$a->strings["November"] = "Listopadu"; -$a->strings["December"] = "Prosinec"; +$a->strings["Contact added"] = "Kontakt přidán"; +$a->strings["Unable to locate original post."] = "Nelze nalézt původní příspěvek."; +$a->strings["Empty post discarded."] = "Prázdný příspěvek odstraněn."; +$a->strings["Wall Photos"] = "Fotografie na zdi"; +$a->strings["System error. Post not saved."] = "Chyba systému. Příspěvek nebyl uložen."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica."; +$a->strings["You may visit them online at %s"] = "Můžete je navštívit online na adrese %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam."; +$a->strings["%s posted an update."] = "%s poslal aktualizaci."; +$a->strings["Group created."] = "Skupina vytvořena."; +$a->strings["Could not create group."] = "Nelze vytvořit skupinu."; +$a->strings["Group not found."] = "Skupina nenalezena."; +$a->strings["Group name changed."] = "Název skupiny byl změněn."; +$a->strings["Save Group"] = "Uložit Skupinu"; +$a->strings["Create a group of contacts/friends."] = "Vytvořit skupinu kontaktů / přátel."; +$a->strings["Group Name: "] = "Název skupiny: "; +$a->strings["Group removed."] = "Skupina odstraněna. "; +$a->strings["Unable to remove group."] = "Nelze odstranit skupinu."; +$a->strings["Group Editor"] = "Editor skupin"; +$a->strings["Members"] = "Členové"; +$a->strings["You must be logged in to use addons. "] = "Musíte být přihlášeni pro použití rozšíření."; +$a->strings["Applications"] = "Aplikace"; +$a->strings["No installed applications."] = "Žádné nainstalované aplikace."; +$a->strings["Profile not found."] = "Profil nenalezen"; +$a->strings["Contact not found."] = "Kontakt nenalezen."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen."; +$a->strings["Response from remote site was not understood."] = "Odpověď ze vzdáleného serveru nebyla srozumitelná."; +$a->strings["Unexpected response from remote site: "] = "Neočekávaná odpověď od vzdáleného serveru:"; +$a->strings["Confirmation completed successfully."] = "Potvrzení úspěšně dokončena."; +$a->strings["Remote site reported: "] = "Vzdálený server oznámil:"; +$a->strings["Temporary failure. Please wait and try again."] = "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu."; +$a->strings["Introduction failed or was revoked."] = "Žádost o propojení selhala nebo byla zrušena."; +$a->strings["Unable to set contact photo."] = "Nelze nastavit fotografii kontaktu."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s je nyní přítel s %2\$s"; +$a->strings["No user record found for '%s' "] = "Pro '%s' nenalezen žádný uživatelský záznam "; +$a->strings["Our site encryption key is apparently messed up."] = "Náš šifrovací klíč zřejmě přestal správně fungovat."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat."; +$a->strings["Contact record was not found for you on our site."] = "Kontakt záznam nebyl nalezen pro vás na našich stránkách."; +$a->strings["Site public key not available in contact record for URL %s."] = "V adresáři není k dispozici veřejný klíč pro URL %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat."; +$a->strings["Unable to set your contact credentials on our system."] = "Nelze nastavit Vaše přihlašovací údaje v našem systému."; +$a->strings["Unable to update your contact profile details on our system"] = "Nelze aktualizovat Váš profil v našem systému"; +$a->strings["[Name Withheld]"] = "[Jméno odepřeno]"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s se připojil k %2\$s"; +$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["No videos selected"] = "Není vybráno žádné video"; +$a->strings["Access to this item is restricted."] = "Přístup k této položce je omezen."; $a->strings["View Video"] = "Zobrazit video"; -$a->strings["bytes"] = "bytů"; -$a->strings["Click to open/close"] = "Klikněte pro otevření/zavření"; -$a->strings["link to source"] = "odkaz na zdroj"; -$a->strings["default"] = "standardní"; -$a->strings["Select an alternate language"] = "Vyběr alternativního jazyka"; -$a->strings["activity"] = "aktivita"; -$a->strings["comment"] = array( - 0 => "", - 1 => "", - 2 => "komentář", -); -$a->strings["post"] = "příspěvek"; -$a->strings["Item filed"] = "Položka vyplněna"; -$a->strings["Logged out."] = "Odhlášen."; -$a->strings["Login failed."] = "Přihlášení se nezdařilo."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. "; -$a->strings["The error message was:"] = "Chybová zpráva byla:"; -$a->strings["Image/photo"] = "Obrázek/fotografie"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["%s wrote the following post"] = "%s napsal následující příspěvek"; -$a->strings["$1 wrote:"] = "$1 napsal:"; -$a->strings["Encrypted content"] = "Šifrovaný obsah"; -$a->strings["Welcome "] = "Vítejte "; -$a->strings["Please upload a profile photo."] = "Prosím nahrejte profilovou fotografii"; -$a->strings["Welcome back "] = "Vítejte zpět "; -$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."] = "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním."; -$a->strings["Embedded content"] = "vložený obsah"; -$a->strings["Embedding disabled"] = "Vkládání zakázáno"; -$a->strings["Male"] = "Muž"; -$a->strings["Female"] = "Žena"; -$a->strings["Currently Male"] = "V současné době muž"; -$a->strings["Currently Female"] = "V současné době žena"; -$a->strings["Mostly Male"] = "Většinou muž"; -$a->strings["Mostly Female"] = "Většinou žena"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Intersex"; -$a->strings["Transsexual"] = "Transexuál"; -$a->strings["Hermaphrodite"] = "Hermafrodit"; -$a->strings["Neuter"] = "Neutrál"; -$a->strings["Non-specific"] = "Nespecifikováno"; -$a->strings["Other"] = "Jiné"; -$a->strings["Undecided"] = "Nerozhodnuto"; -$a->strings["Males"] = "Muži"; -$a->strings["Females"] = "Ženy"; -$a->strings["Gay"] = "Gay"; -$a->strings["Lesbian"] = "Lesbička"; -$a->strings["No Preference"] = "Bez preferencí"; -$a->strings["Bisexual"] = "Bisexuál"; -$a->strings["Autosexual"] = "Autosexuál"; -$a->strings["Abstinent"] = "Abstinent"; -$a->strings["Virgin"] = "panic/panna"; -$a->strings["Deviant"] = "Deviant"; -$a->strings["Fetish"] = "Fetišista"; -$a->strings["Oodles"] = "Hodně"; -$a->strings["Nonsexual"] = "Nesexuální"; -$a->strings["Single"] = "Svobodný"; -$a->strings["Lonely"] = "Osamnělý"; -$a->strings["Available"] = "Dostupný"; -$a->strings["Unavailable"] = "Nedostupný"; -$a->strings["Has crush"] = "Zamilovaný"; -$a->strings["Infatuated"] = "Zabouchnutý"; -$a->strings["Dating"] = "Seznamující se"; -$a->strings["Unfaithful"] = "Nevěrný"; -$a->strings["Sex Addict"] = "Závislý na sexu"; -$a->strings["Friends"] = "Přátelé"; -$a->strings["Friends/Benefits"] = "Přátelé / výhody"; -$a->strings["Casual"] = "Ležérní"; -$a->strings["Engaged"] = "Zadaný"; -$a->strings["Married"] = "Ženatý/vdaná"; -$a->strings["Imaginarily married"] = "Pomyslně ženatý/vdaná"; -$a->strings["Partners"] = "Partneři"; -$a->strings["Cohabiting"] = "Žijící ve společné domácnosti"; -$a->strings["Common law"] = "Zvykové právo"; -$a->strings["Happy"] = "Šťastný"; -$a->strings["Not looking"] = "Nehledající"; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Zrazen"; -$a->strings["Separated"] = "Odloučený"; -$a->strings["Unstable"] = "Nestálý"; -$a->strings["Divorced"] = "Rozvedený(á)"; -$a->strings["Imaginarily divorced"] = "Pomyslně rozvedený"; -$a->strings["Widowed"] = "Ovdovělý(á)"; -$a->strings["Uncertain"] = "Nejistý"; -$a->strings["It's complicated"] = "Je to složité"; -$a->strings["Don't care"] = "Nezajímá"; -$a->strings["Ask me"] = "Zeptej se mě"; -$a->strings["An invitation is required."] = "Pozvánka je vyžadována."; -$a->strings["Invitation could not be verified."] = "Pozvánka nemohla být ověřena."; -$a->strings["Invalid OpenID url"] = "Neplatný odkaz OpenID"; -$a->strings["Please enter the required information."] = "Zadejte prosím požadované informace."; -$a->strings["Please use a shorter name."] = "Použijte prosím kratší jméno."; -$a->strings["Name too short."] = "Jméno je příliš krátké."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)."; -$a->strings["Your email domain is not among those allowed on this site."] = "Váš e-mailová doména není na tomto serveru mezi povolenými."; -$a->strings["Not a valid email address."] = "Neplatná e-mailová adresa."; -$a->strings["Cannot use that email."] = "Tento e-mail nelze použít."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem."; -$a->strings["Nickname is already registered. Please choose another."] = "Přezdívka je již registrována. Prosím vyberte jinou."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo."; -$a->strings["An error occurred during registration. Please try again."] = "Došlo k chybě při registraci. Zkuste to prosím znovu."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tDrahý %1\$s,\n\t\t\tDěkujeme Vám za registraci na %2\$s. Váš účet byl vytvořen.\n\t"; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5$\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = ""; -$a->strings["Registration details for %s"] = "Registrační údaje pro %s"; -$a->strings["Visible to everybody"] = "Viditelné pro všechny"; -$a->strings["This entry was edited"] = "Tento záznam byl editován"; -$a->strings["Private Message"] = "Soukromá zpráva"; -$a->strings["Edit"] = "Upravit"; -$a->strings["save to folder"] = "uložit do složky"; -$a->strings["add star"] = "přidat hvězdu"; -$a->strings["remove star"] = "odebrat hvězdu"; -$a->strings["toggle star status"] = "přepnout hvězdu"; -$a->strings["starred"] = "označeno hvězdou"; -$a->strings["ignore thread"] = "ignorovat vlákno"; -$a->strings["unignore thread"] = "přestat ignorovat vlákno"; -$a->strings["toggle ignore status"] = "přepnout stav Ignorování"; -$a->strings["ignored"] = "ignorován"; -$a->strings["add tag"] = "přidat štítek"; -$a->strings["I like this (toggle)"] = "Líbí se mi to (přepínač)"; -$a->strings["like"] = "má rád"; -$a->strings["I don't like this (toggle)"] = "Nelíbí se mi to (přepínač)"; -$a->strings["dislike"] = "nemá rád"; -$a->strings["Share this"] = "Sdílet toto"; -$a->strings["share"] = "sdílí"; -$a->strings["to"] = "pro"; -$a->strings["via"] = "přes"; -$a->strings["Wall-to-Wall"] = "Zeď-na-Zeď"; -$a->strings["via Wall-To-Wall:"] = "přes Zeď-na-Zeď "; -$a->strings["%d comment"] = array( - 0 => "%d komentář", - 1 => "%d komentářů", - 2 => "%d komentářů", -); -$a->strings["This is you"] = "Nastavte Vaši polohu"; -$a->strings["Bold"] = "Tučné"; -$a->strings["Italic"] = "Kurzíva"; -$a->strings["Underline"] = "Podrtžené"; -$a->strings["Quote"] = "Citovat"; -$a->strings["Code"] = "Kód"; -$a->strings["Image"] = "Obrázek"; -$a->strings["Link"] = "Odkaz"; -$a->strings["Video"] = "Video"; -$a->strings["Item not available."] = "Položka není k dispozici."; -$a->strings["Item was not found."] = "Položka nebyla nalezena."; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena."; -$a->strings["No recipient selected."] = "Nevybrán příjemce."; -$a->strings["Unable to check your home location."] = "Nebylo možné zjistit Vaši domácí lokaci."; -$a->strings["Message could not be sent."] = "Zprávu se nepodařilo odeslat."; -$a->strings["Message collection failure."] = "Sběr zpráv selhal."; -$a->strings["Message sent."] = "Zpráva odeslána."; -$a->strings["No recipient."] = "Žádný příjemce."; -$a->strings["Send Private Message"] = "Odeslat soukromou zprávu"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů."; -$a->strings["To:"] = "Adresát:"; -$a->strings["Subject:"] = "Předmět:"; -$a->strings["Your message:"] = "Vaše zpráva:"; -$a->strings["Group created."] = "Skupina vytvořena."; -$a->strings["Could not create group."] = "Nelze vytvořit skupinu."; -$a->strings["Group not found."] = "Skupina nenalezena."; -$a->strings["Group name changed."] = "Název skupiny byl změněn."; -$a->strings["Save Group"] = "Uložit Skupinu"; -$a->strings["Create a group of contacts/friends."] = "Vytvořit skupinu kontaktů / přátel."; -$a->strings["Group Name: "] = "Název skupiny: "; -$a->strings["Group removed."] = "Skupina odstraněna. "; -$a->strings["Unable to remove group."] = "Nelze odstranit skupinu."; -$a->strings["Group Editor"] = "Editor skupin"; -$a->strings["Members"] = "Členové"; -$a->strings["All Contacts"] = "Všechny kontakty"; -$a->strings["Click on a contact to add or remove."] = "Klikněte na kontakt pro přidání nebo odebrání"; -$a->strings["No potential page delegates located."] = "Žádní potenciální delegáti stránky nenalezeni."; -$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."] = "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte.."; -$a->strings["Existing Page Managers"] = "Stávající správci stránky"; -$a->strings["Existing Page Delegates"] = "Stávající delegáti stránky "; -$a->strings["Potential Delegates"] = "Potenciální delegáti"; -$a->strings["Remove"] = "Odstranit"; -$a->strings["Add"] = "Přidat"; -$a->strings["No entries."] = "Žádné záznamy."; +$a->strings["View Album"] = "Zobrazit album"; +$a->strings["Recent Videos"] = "Aktuální Videa"; +$a->strings["Upload New Videos"] = "Nahrát nová videa"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s označen uživatelem %2\$s %3\$s s %4\$s"; +$a->strings["Friend suggestion sent."] = "Návrhy přátelství odeslány "; +$a->strings["Suggest Friends"] = "Navrhněte přátelé"; +$a->strings["Suggest a friend for %s"] = "Navrhněte přátelé pro uživatele %s"; +$a->strings["No valid account found."] = "Nenalezen žádný platný účet."; +$a->strings["Password reset request issued. Check your email."] = "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tKlikněte na následující odkaz pro potvrzení Vaší identity:\n\n\t\t%1\$s\n\n\t\tNásledně obdržíte zprávu obsahující nové heslo.\n\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\n\t\tVaše přihlašovací údaje jsou následující:\n\n\t\tUmístění webu:\t%2\$s\n\t\tPřihlašovací jméno:\t%3\$s"; +$a->strings["Password reset requested at %s"] = "Na %s bylo zažádáno o resetování hesla"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo."; +$a->strings["Password Reset"] = "Obnovení hesla"; +$a->strings["Your password has been reset as requested."] = "Vaše heslo bylo na Vaše přání resetováno."; +$a->strings["Your new password is"] = "Někdo Vám napsal na Vaši profilovou stránku"; +$a->strings["Save or copy your new password - and then"] = "Uložte si nebo zkopírujte nové heslo - a pak"; +$a->strings["click here to login"] = "klikněte zde pro přihlášení"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tDrahý %1\$s,\n⇥⇥⇥⇥⇥Vaše heslo bylo na požádání změněno. Prosím uchovejte si tuto informaci (nebo si změntě heslo ihned na něco, co si budete pamatovat).\t"; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\t\tUmístění webu:\t%1\$s\n\t\t\t\tPřihlašovací jméno:\t%2\$s\n\t\t\t\tHeslo:\t%3\$s\n\n\t\t\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\t\t\t"; +$a->strings["Your password has been changed at %s"] = "Vaše heslo bylo změněno na %s"; +$a->strings["Forgot your Password?"] = "Zapomněli jste heslo?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce."; +$a->strings["Nickname or Email: "] = "Přezdívka nebo e-mail: "; +$a->strings["Reset"] = "Reset"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s má rád %2\$s' na %3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nemá rád %2\$s na %3\$s"; +$a->strings["{0} wants to be your friend"] = "{0} chce být Vaším přítelem"; +$a->strings["{0} sent you a message"] = "{0} vám poslal zprávu"; +$a->strings["{0} requested registration"] = "{0} požaduje registraci"; +$a->strings["{0} commented %s's post"] = "{0} komentoval příspěvek uživatele %s"; +$a->strings["{0} liked %s's post"] = "{0} má rád příspěvek uživatele %s"; +$a->strings["{0} disliked %s's post"] = "{0} nemá rád příspěvek uživatele %s"; +$a->strings["{0} is now friends with %s"] = "{0} se skamarádil s %s"; +$a->strings["{0} posted"] = "{0} zasláno"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} označen %s' příspěvek s #%s"; +$a->strings["{0} mentioned you in a post"] = "{0} vás zmínil v příspěvku"; +$a->strings["No contacts."] = "Žádné kontakty."; +$a->strings["View Contacts"] = "Zobrazit kontakty"; $a->strings["Invalid request identifier."] = "Neplatný identifikátor požadavku."; $a->strings["Discard"] = "Odstranit"; -$a->strings["Ignore"] = "Ignorovat"; $a->strings["System"] = "Systém"; +$a->strings["Network"] = "Síť"; $a->strings["Personal"] = "Osobní"; +$a->strings["Home"] = "Domů"; +$a->strings["Introductions"] = "Představení"; $a->strings["Show Ignored Requests"] = "Zobrazit ignorované žádosti"; $a->strings["Hide Ignored Requests"] = "Skrýt ignorované žádosti"; $a->strings["Notification type: "] = "Typ oznámení: "; $a->strings["Friend Suggestion"] = "Návrh přátelství"; $a->strings["suggested by %s"] = "navrhl %s"; -$a->strings["Hide this contact from others"] = "Skrýt tento kontakt před ostatními"; $a->strings["Post a new friend activity"] = "Zveřejnit aktivitu nového přítele."; $a->strings["if applicable"] = "je-li použitelné"; $a->strings["Approve"] = "Schválit"; @@ -760,6 +301,7 @@ $a->strings["Fan/Admirer"] = "Fanoušek / obdivovatel"; $a->strings["Friend/Connect Request"] = "Přítel / žádost o připojení"; $a->strings["New Follower"] = "Nový následovník"; $a->strings["No introductions."] = "Žádné představení."; +$a->strings["Notifications"] = "Upozornění"; $a->strings["%s liked %s's post"] = "Uživateli %s se líbí příspěvek uživatele %s"; $a->strings["%s disliked %s's post"] = "Uživateli %s se nelíbí příspěvek uživatele %s"; $a->strings["%s is now friends with %s"] = "%s se nyní přátelí s %s"; @@ -772,353 +314,90 @@ $a->strings["System Notifications"] = "Systémová upozornění"; $a->strings["No more personal notifications."] = "Žádné další osobní upozornění."; $a->strings["Personal Notifications"] = "Osobní upozornění"; $a->strings["No more home notifications."] = "Žádné další domácí upozornění."; -$a->strings["Home Notifications"] = "Domácí upozornění"; -$a->strings["No profile"] = "Žádný profil"; -$a->strings["everybody"] = "Žádost o připojení selhala nebo byla zrušena."; -$a->strings["Account"] = "Účet"; -$a->strings["Additional features"] = "Další funkčnosti"; -$a->strings["Display"] = "Zobrazení"; -$a->strings["Social Networks"] = "Sociální sítě"; -$a->strings["Plugins"] = "Pluginy"; -$a->strings["Connected apps"] = "Propojené aplikace"; -$a->strings["Export personal data"] = "Export osobních údajů"; -$a->strings["Remove account"] = "Odstranit účet"; -$a->strings["Missing some important data!"] = "Chybí některé důležité údaje!"; -$a->strings["Update"] = "Aktualizace"; -$a->strings["Failed to connect with email account using the settings provided."] = "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení."; -$a->strings["Email settings updated."] = "Nastavení e-mailu aktualizována."; -$a->strings["Features updated"] = "Aktualizované funkčnosti"; -$a->strings["Relocate message has been send to your contacts"] = "Správa o změně umístění byla odeslána vašim kontaktům"; -$a->strings["Passwords do not match. Password unchanged."] = "Hesla se neshodují. Heslo nebylo změněno."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Prázdné hesla nejsou povolena. Heslo nebylo změněno."; -$a->strings["Wrong password."] = "Špatné heslo."; -$a->strings["Password changed."] = "Heslo bylo změněno."; -$a->strings["Password update failed. Please try again."] = "Aktualizace hesla se nezdařila. Zkuste to prosím znovu."; -$a->strings[" Please use a shorter name."] = "Prosím použijte kratší jméno."; -$a->strings[" Name too short."] = "Jméno je příliš krátké."; -$a->strings["Wrong Password"] = "Špatné heslo"; -$a->strings[" Not valid email."] = "Neplatný e-mail."; -$a->strings[" Cannot change to that email."] = "Nelze provést změnu na tento e-mail."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu."; -$a->strings["Settings updated."] = "Nastavení aktualizováno."; -$a->strings["Add application"] = "Přidat aplikaci"; -$a->strings["Save Settings"] = "Uložit Nastavení"; -$a->strings["Name"] = "Jméno"; -$a->strings["Consumer Key"] = "Consumer Key"; -$a->strings["Consumer Secret"] = "Consumer Secret"; -$a->strings["Redirect"] = "Přesměrování"; -$a->strings["Icon url"] = "URL ikony"; -$a->strings["You can't edit this application."] = "Nemůžete editovat tuto aplikaci."; -$a->strings["Connected Apps"] = "Připojené aplikace"; -$a->strings["Client key starts with"] = "Klienský klíč začíná"; -$a->strings["No name"] = "Bez názvu"; -$a->strings["Remove authorization"] = "Odstranit oprávnění"; -$a->strings["No Plugin settings configured"] = "Žádný doplněk není nastaven"; -$a->strings["Plugin Settings"] = "Nastavení doplňku"; -$a->strings["Off"] = "Vypnuto"; -$a->strings["On"] = "Zapnuto"; -$a->strings["Additional Features"] = "Další Funkčnosti"; -$a->strings["Built-in support for %s connectivity is %s"] = "Vestavěná podpora pro připojení s %s je %s"; -$a->strings["enabled"] = "povoleno"; -$a->strings["disabled"] = "zakázáno"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "Přístup k elektronické poště je na tomto serveru zakázán."; -$a->strings["Email/Mailbox Setup"] = "Nastavení e-mailu"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce."; -$a->strings["Last successful email check:"] = "Poslední úspěšná kontrola e-mailu:"; -$a->strings["IMAP server name:"] = "jméno IMAP serveru:"; -$a->strings["IMAP port:"] = "IMAP port:"; -$a->strings["Security:"] = "Zabezpečení:"; -$a->strings["None"] = "Žádný"; -$a->strings["Email login name:"] = "přihlašovací jméno k e-mailu:"; -$a->strings["Email password:"] = "heslo k Vašemu e-mailu:"; -$a->strings["Reply-to address:"] = "Odpovědět na adresu:"; -$a->strings["Send public posts to all email contacts:"] = "Poslat veřejné příspěvky na všechny e-mailové kontakty:"; -$a->strings["Action after import:"] = "Akce po importu:"; -$a->strings["Mark as seen"] = "Označit jako přečtené"; -$a->strings["Move to folder"] = "Přesunout do složky"; -$a->strings["Move to folder:"] = "Přesunout do složky:"; -$a->strings["No special theme for mobile devices"] = "žádné speciální téma pro mobilní zařízení"; -$a->strings["Display Settings"] = "Nastavení Zobrazení"; -$a->strings["Display Theme:"] = "Vybrat grafickou šablonu:"; -$a->strings["Mobile Theme:"] = "Téma pro mobilní zařízení:"; -$a->strings["Update browser every xx seconds"] = "Aktualizovat prohlížeč každých xx sekund"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekund, žádné maximum."; -$a->strings["Number of items to display per page:"] = "Počet položek zobrazených na stránce:"; -$a->strings["Maximum of 100 items"] = "Maximum 100 položek"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:"; -$a->strings["Don't show emoticons"] = "Nezobrazovat emotikony"; -$a->strings["Don't show notices"] = "Nezobrazovat oznámění"; -$a->strings["Infinite scroll"] = "Nekonečné posouvání"; -$a->strings["Automatic updates only at the top of the network page"] = "Automatické aktualizace pouze na hlavní stránce Síť."; -$a->strings["User Types"] = "Uživatelské typy"; -$a->strings["Community Types"] = "Komunitní typy"; -$a->strings["Normal Account Page"] = "Normální stránka účtu"; -$a->strings["This account is a normal personal profile"] = "Tento účet je běžný osobní profil"; -$a->strings["Soapbox Page"] = "Stránka \"Soapbox\""; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automaticky schválit všechna spojení / přátelství jako fanoušky s právem pouze ke čtení"; -$a->strings["Community Forum/Celebrity Account"] = "Komunitní fórum/ účet celebrity"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Automaticky schvalovat všechny žádosti o spojení / přátelství, jako fanoušky s právem ke čtení."; -$a->strings["Automatic Friend Page"] = "Automatická stránka přítele"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Automaticky schvalovat všechny žádosti o spojení / přátelství jako přátele"; -$a->strings["Private Forum [Experimental]"] = "Soukromé fórum [Experimentální]"; -$a->strings["Private forum - approved members only"] = "Soukromé fórum - pouze pro schválené členy"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu."; -$a->strings["Publish your default profile in your local site directory?"] = "Publikovat Váš výchozí profil v místním adresáři webu?"; -$a->strings["No"] = "Ne"; -$a->strings["Publish your default profile in the global social directory?"] = "Publikovat Váš výchozí profil v globální sociálním adresáři?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem výchozím profilu?"; -$a->strings["Allow friends to post to your profile page?"] = "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?"; -$a->strings["Allow friends to tag your posts?"] = "Povolit přátelům označovat Vaše příspěvky?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?"; -$a->strings["Permit unknown people to send you private mail?"] = "Povolit neznámým lidem Vám zasílat soukromé zprávy?"; -$a->strings["Profile is not published."] = "Profil není zveřejněn."; -$a->strings["or"] = "nebo"; -$a->strings["Your Identity Address is"] = "Vaše adresa identity je"; -$a->strings["Automatically expire posts after this many days:"] = "Automaticky expirovat příspěvky po zadaném počtu dní:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány"; -$a->strings["Advanced expiration settings"] = "Pokročilé nastavení expirací"; -$a->strings["Advanced Expiration"] = "Nastavení expirací"; -$a->strings["Expire posts:"] = "Expirovat příspěvky:"; -$a->strings["Expire personal notes:"] = "Expirovat osobní poznámky:"; -$a->strings["Expire starred posts:"] = "Expirovat příspěvky s hvězdou:"; -$a->strings["Expire photos:"] = "Expirovat fotografie:"; -$a->strings["Only expire posts by others:"] = "Přízpěvky expirovat pouze ostatními:"; -$a->strings["Account Settings"] = "Nastavení účtu"; -$a->strings["Password Settings"] = "Nastavení hesla"; -$a->strings["New Password:"] = "Nové heslo:"; -$a->strings["Confirm:"] = "Potvrďte:"; -$a->strings["Leave password fields blank unless changing"] = "Pokud nechcete změnit heslo, položku hesla nevyplňujte"; -$a->strings["Current Password:"] = "Stávající heslo:"; -$a->strings["Your current password to confirm the changes"] = "Vaše stávající heslo k potvrzení změn"; -$a->strings["Password:"] = "Heslo: "; -$a->strings["Basic Settings"] = "Základní nastavení"; -$a->strings["Email Address:"] = "E-mailová adresa:"; -$a->strings["Your Timezone:"] = "Vaše časové pásmo:"; -$a->strings["Default Post Location:"] = "Výchozí umístění příspěvků:"; -$a->strings["Use Browser Location:"] = "Používat umístění dle prohlížeče:"; -$a->strings["Security and Privacy Settings"] = "Nastavení zabezpečení a soukromí"; -$a->strings["Maximum Friend Requests/Day:"] = "Maximální počet žádostí o přátelství za den:"; -$a->strings["(to prevent spam abuse)"] = "(Aby se zabránilo spamu)"; -$a->strings["Default Post Permissions"] = "Výchozí oprávnění pro příspěvek"; -$a->strings["(click to open/close)"] = "(Klikněte pro otevření/zavření)"; -$a->strings["Show to Groups"] = "Zobrazit ve Skupinách"; -$a->strings["Show to Contacts"] = "Zobrazit v Kontaktech"; -$a->strings["Default Private Post"] = "Výchozí Soukromý příspěvek"; -$a->strings["Default Public Post"] = "Výchozí Veřejný příspěvek"; -$a->strings["Default Permissions for New Posts"] = "Výchozí oprávnění pro nové příspěvky"; -$a->strings["Maximum private messages per day from unknown people:"] = "Maximum soukromých zpráv od neznámých lidí:"; -$a->strings["Notification Settings"] = "Nastavení notifikací"; -$a->strings["By default post a status message when:"] = "Defaultně posílat statusové zprávy když:"; -$a->strings["accepting a friend request"] = "akceptuji požadavek na přátelství"; -$a->strings["joining a forum/community"] = "připojující se k fóru/komunitě"; -$a->strings["making an interesting profile change"] = "provedení zajímavé profilové změny"; -$a->strings["Send a notification email when:"] = "Poslat notifikaci e-mailem, když"; -$a->strings["You receive an introduction"] = "obdržíte žádost o propojení"; -$a->strings["Your introductions are confirmed"] = "Vaše žádosti jsou potvrzeny"; -$a->strings["Someone writes on your profile wall"] = "někdo Vám napíše na Vaši profilovou stránku"; -$a->strings["Someone writes a followup comment"] = "někdo Vám napíše následný komentář"; -$a->strings["You receive a private message"] = "obdržíte soukromou zprávu"; -$a->strings["You receive a friend suggestion"] = "Obdržel jste návrh přátelství"; -$a->strings["You are tagged in a post"] = "Jste označen v příspěvku"; -$a->strings["You are poked/prodded/etc. in a post"] = "Byl Jste šťouchnout v příspěvku"; -$a->strings["Advanced Account/Page Type Settings"] = "Pokročilé nastavení účtu/stránky"; -$a->strings["Change the behaviour of this account for special situations"] = "Změnit chování tohoto účtu ve speciálních situacích"; -$a->strings["Relocate"] = "Změna umístění"; -$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko."; -$a->strings["Resend relocate message to contacts"] = "Znovu odeslat správu o změně umístění Vašim kontaktům"; -$a->strings["Common Friends"] = "Společní přátelé"; -$a->strings["No contacts in common."] = "Žádné společné kontakty."; -$a->strings["Remote privacy information not available."] = "Vzdálené soukromé informace nejsou k dispozici."; -$a->strings["Visible to:"] = "Viditelné pro:"; -$a->strings["%d contact edited."] = array( - 0 => "%d kontakt upraven.", - 1 => "%d kontakty upraveny", - 2 => "%d kontaktů upraveno", +$a->strings["Home Notifications"] = "Upozornění na vstupní straně"; +$a->strings["Source (bbcode) text:"] = "Zdrojový text (bbcode):"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Zdrojový (Diaspora) text k převedení do BB kódování:"; +$a->strings["Source input: "] = "Zdrojový vstup: "; +$a->strings["bb2html (raw HTML): "] = "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): "] = "Vstupní data (ve formátu Diaspora): "; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Nothing new here"] = "Zde není nic nového"; +$a->strings["Clear notifications"] = "Smazat notifikace"; +$a->strings["New Message"] = "Nová zpráva"; +$a->strings["No recipient selected."] = "Nevybrán příjemce."; +$a->strings["Unable to locate contact information."] = "Nepodařilo se najít kontaktní informace."; +$a->strings["Message could not be sent."] = "Zprávu se nepodařilo odeslat."; +$a->strings["Message collection failure."] = "Sběr zpráv selhal."; +$a->strings["Message sent."] = "Zpráva odeslána."; +$a->strings["Messages"] = "Zprávy"; +$a->strings["Do you really want to delete this message?"] = "Opravdu chcete smazat tuto zprávu?"; +$a->strings["Message deleted."] = "Zpráva odstraněna."; +$a->strings["Conversation removed."] = "Konverzace odstraněna."; +$a->strings["Please enter a link URL:"] = "Zadejte prosím URL odkaz:"; +$a->strings["Send Private Message"] = "Odeslat soukromou zprávu"; +$a->strings["To:"] = "Adresát:"; +$a->strings["Subject:"] = "Předmět:"; +$a->strings["Your message:"] = "Vaše zpráva:"; +$a->strings["Upload photo"] = "Nahrát fotografii"; +$a->strings["Insert web link"] = "Vložit webový odkaz"; +$a->strings["Please wait"] = "Čekejte prosím"; +$a->strings["No messages."] = "Žádné zprávy."; +$a->strings["Unknown sender - %s"] = "Neznámý odesilatel - %s"; +$a->strings["You and %s"] = "Vy a %s"; +$a->strings["%s and You"] = "%s a Vy"; +$a->strings["Delete conversation"] = "Odstranit konverzaci"; +$a->strings["D, d M Y - g:i A"] = "D M R - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d zpráva", + 1 => "%d zprávy", + 2 => "%d zpráv", ); -$a->strings["Could not access contact record."] = "Nelze získat přístup k záznamu kontaktu."; -$a->strings["Could not locate selected profile."] = "Nelze nalézt vybraný profil."; -$a->strings["Contact updated."] = "Kontakt aktualizován."; -$a->strings["Failed to update contact record."] = "Nepodařilo se aktualizovat kontakt."; -$a->strings["Contact has been blocked"] = "Kontakt byl zablokován"; -$a->strings["Contact has been unblocked"] = "Kontakt byl odblokován"; -$a->strings["Contact has been ignored"] = "Kontakt bude ignorován"; -$a->strings["Contact has been unignored"] = "Kontakt přestal být ignorován"; -$a->strings["Contact has been archived"] = "Kontakt byl archivován"; -$a->strings["Contact has been unarchived"] = "Kontakt byl vrácen z archívu."; -$a->strings["Do you really want to delete this contact?"] = "Opravdu chcete smazat tento kontakt?"; -$a->strings["Contact has been removed."] = "Kontakt byl odstraněn."; -$a->strings["You are mutual friends with %s"] = "Jste vzájemní přátelé s uživatelem %s"; -$a->strings["You are sharing with %s"] = "Sdílíte s uživatelem %s"; -$a->strings["%s is sharing with you"] = "uživatel %s sdílí s vámi"; -$a->strings["Private communications are not available for this contact."] = "Soukromá komunikace není dostupná pro tento kontakt."; -$a->strings["Never"] = "Nikdy"; -$a->strings["(Update was successful)"] = "(Aktualizace byla úspěšná)"; -$a->strings["(Update was not successful)"] = "(Aktualizace nebyla úspěšná)"; -$a->strings["Suggest friends"] = "Navrhněte přátelé"; -$a->strings["Network type: %s"] = "Typ sítě: %s"; -$a->strings["View all contacts"] = "Zobrazit všechny kontakty"; -$a->strings["Unblock"] = "Odblokovat"; -$a->strings["Block"] = "Blokovat"; -$a->strings["Toggle Blocked status"] = "Přepnout stav Blokováno"; -$a->strings["Unignore"] = "Přestat ignorovat"; -$a->strings["Toggle Ignored status"] = "Přepnout stav Ignorováno"; -$a->strings["Unarchive"] = "Vrátit z archívu"; -$a->strings["Archive"] = "Archivovat"; -$a->strings["Toggle Archive status"] = "Přepnout stav Archivováno"; -$a->strings["Repair"] = "Opravit"; -$a->strings["Advanced Contact Settings"] = "Pokročilé nastavení kontaktu"; -$a->strings["Communications lost with this contact!"] = "Komunikace s tímto kontaktem byla ztracena!"; -$a->strings["Contact Editor"] = "Editor kontaktu"; -$a->strings["Profile Visibility"] = "Viditelnost profilu"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu."; -$a->strings["Contact Information / Notes"] = "Kontaktní informace / poznámky"; -$a->strings["Edit contact notes"] = "Editovat poznámky kontaktu"; -$a->strings["Visit %s's profile [%s]"] = "Navštivte profil uživatele %s [%s]"; -$a->strings["Block/Unblock contact"] = "Blokovat / Odblokovat kontakt"; -$a->strings["Ignore contact"] = "Ignorovat kontakt"; -$a->strings["Repair URL settings"] = "Opravit nastavení adresy URL "; -$a->strings["View conversations"] = "Zobrazit konverzace"; -$a->strings["Delete contact"] = "Odstranit kontakt"; -$a->strings["Last update:"] = "Poslední aktualizace:"; -$a->strings["Update public posts"] = "Aktualizovat veřejné příspěvky"; -$a->strings["Update now"] = "Aktualizovat"; -$a->strings["Currently blocked"] = "V současnosti zablokováno"; -$a->strings["Currently ignored"] = "V současnosti ignorováno"; -$a->strings["Currently archived"] = "Aktuálně archivován"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Odpovědi/Libí se na Vaše veřejné příspěvky mohou být stále viditelné"; -$a->strings["Notification for new posts"] = "Upozornění na nové příspěvky"; -$a->strings["Send a notification of every new post of this contact"] = "Poslat upozornění při každém novém příspěvku tohoto kontaktu"; -$a->strings["Fetch further information for feeds"] = "Načíst další informace pro kanál"; -$a->strings["Suggestions"] = "Doporučení"; -$a->strings["Suggest potential friends"] = "Navrhnout potenciální přátele"; -$a->strings["Show all contacts"] = "Zobrazit všechny kontakty"; -$a->strings["Unblocked"] = "Odblokován"; -$a->strings["Only show unblocked contacts"] = "Zobrazit pouze neblokované kontakty"; -$a->strings["Blocked"] = "Blokován"; -$a->strings["Only show blocked contacts"] = "Zobrazit pouze blokované kontakty"; -$a->strings["Ignored"] = "Ignorován"; -$a->strings["Only show ignored contacts"] = "Zobrazit pouze ignorované kontakty"; -$a->strings["Archived"] = "Archivován"; -$a->strings["Only show archived contacts"] = "Zobrazit pouze archivované kontakty"; -$a->strings["Hidden"] = "Skrytý"; -$a->strings["Only show hidden contacts"] = "Zobrazit pouze skryté kontakty"; -$a->strings["Mutual Friendship"] = "Vzájemné přátelství"; -$a->strings["is a fan of yours"] = "je Váš fanoušek"; -$a->strings["you are a fan of"] = "jste fanouškem"; -$a->strings["Edit contact"] = "Editovat kontakt"; -$a->strings["Search your contacts"] = "Prohledat Vaše kontakty"; -$a->strings["Finding: "] = "Zjištění: "; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP"; -$a->strings["Or - did you try to upload an empty file?"] = "Nebo - nenahrával jste prázdný soubor?"; -$a->strings["File exceeds size limit of %d"] = "Velikost souboru přesáhla limit %d"; -$a->strings["File upload failed."] = "Nahrání souboru se nezdařilo."; -$a->strings["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovení stránky pro zobrazení]"; -$a->strings["Export account"] = "Exportovat účet"; -$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."] = "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server."; -$a->strings["Export all"] = "Exportovat vše"; -$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)"] = "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce."; -$a->strings["Failed to send email message. Here is the message that failed."] = "Nepodařilo se odeslat zprávu na e-mail. Zde je zpráva, která nebyla odeslána."; -$a->strings["Your registration can not be processed."] = "Vaši registraci nelze zpracovat."; -$a->strings["Your registration is pending approval by the site owner."] = "Vaše registrace čeká na schválení vlastníkem serveru."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to zítra znovu."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky."; -$a->strings["Your OpenID (optional): "] = "Vaše OpenID (nepovinné): "; -$a->strings["Include your profile in member directory?"] = "Toto je Váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu."; -$a->strings["Membership on this site is by invitation only."] = "Členství na tomto webu je pouze na pozvání."; -$a->strings["Your invitation ID: "] = "VaÅ¡e pozvání ID:"; -$a->strings["Registration"] = "Registrace"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "VaÅ¡e celé jméno (např. Jan Novák):"; -$a->strings["Your Email Address: "] = "VaÅ¡e e-mailová adresa:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. VaÅ¡e profilová adresa na tomto webu pak bude \"přezdívka@\$sitename\"."; -$a->strings["Choose a nickname: "] = "Vyberte přezdívku:"; -$a->strings["Import"] = "Import"; -$a->strings["Import your profile to this friendica instance"] = "Import VaÅ¡eho profilu do této friendica instance"; -$a->strings["Post successful."] = "Příspěvek úspěšně odeslán"; -$a->strings["System down for maintenance"] = "Systém vypnut z důvodů údržby"; -$a->strings["Access to this profile has been restricted."] = "Přístup na tento profil byl omezen."; -$a->strings["Tips for New Members"] = "Tipy pro nové členy"; -$a->strings["Public access denied."] = "Veřejný přístup odepřen."; -$a->strings["No videos selected"] = "Není vybráno žádné video"; -$a->strings["Access to this item is restricted."] = "Přístup k této položce je omezen."; -$a->strings["View Album"] = "Zobrazit album"; -$a->strings["Recent Videos"] = "Aktuální Videa"; -$a->strings["Upload New Videos"] = "Nahrát nová videa"; -$a->strings["Manage Identities and/or Pages"] = "Správa identit a / nebo stránek"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí VaÅ¡e detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva."; -$a->strings["Select an identity to manage: "] = "Vyberte identitu pro správu: "; -$a->strings["Item not found"] = "Položka nenalezena"; -$a->strings["Edit post"] = "Upravit příspěvek"; +$a->strings["Message not available."] = "Zpráva není k dispozici."; +$a->strings["Delete message"] = "Smazat zprávu"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Není k dispozici zabezpečená komunikace. Možná budete schopni reagovat z odesilatelovy profilové stránky."; +$a->strings["Send Reply"] = "Poslat odpověď"; +$a->strings["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovte stránku pro zobrazení]"; +$a->strings["Contact settings applied."] = "Nastavení kontaktu změněno"; +$a->strings["Contact update failed."] = "Aktualizace kontaktu selhala."; +$a->strings["Repair Contact Settings"] = "Opravit nastavení kontaktu"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "Varování: Toto je velmi pokročilé a pokud zadáte nesprávné informace, VaÅ¡e komunikace s tímto kontaktem může přestat fungovat."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Prosím použijte ihned v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce."; +$a->strings["Return to contact editor"] = "Návrat k editoru kontaktu"; +$a->strings["No mirroring"] = "Žádné zrcadlení"; +$a->strings["Mirror as forwarded posting"] = "Zrcadlit pro přeposlané příspěvky"; +$a->strings["Mirror as my own posting"] = "Zrcadlit jako mé vlastní příspěvky"; +$a->strings["Name"] = "Jméno"; +$a->strings["Account Nickname"] = "Přezdívka účtu"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - upřednostněno před Jménem/Přezdívkou"; +$a->strings["Account URL"] = "URL adresa účtu"; +$a->strings["Friend Request URL"] = "Žádost o přátelství URL"; +$a->strings["Friend Confirm URL"] = "URL adresa potvrzení přátelství"; +$a->strings["Notification Endpoint URL"] = "Notifikační URL adresa"; +$a->strings["Poll/Feed URL"] = "Poll/Feed URL adresa"; +$a->strings["New photo from this URL"] = "Nové foto z této URL adresy"; +$a->strings["Remote Self"] = "Remote Self"; +$a->strings["Mirror postings from this contact"] = "Zrcadlení správ od tohoto kontaktu"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat vÅ¡echny nové příspěvky od tohoto kontaktu."; +$a->strings["Access denied."] = "Přístup odmítnut"; $a->strings["People Search"] = "Vyhledávání lidí"; $a->strings["No matches"] = "Žádné shody"; -$a->strings["Account approved."] = "Účet schválen."; -$a->strings["Registration revoked for %s"] = "Registrace zruÅ¡ena pro %s"; -$a->strings["Please login."] = "Přihlaste se, prosím."; -$a->strings["This introduction has already been accepted."] = "Toto pozvání již bylo přijato."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Adresa profilu není platná nebo neobsahuje profilové informace"; -$a->strings["Warning: profile location has no identifiable owner name."] = "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka"; -$a->strings["Warning: profile location has no profile photo."] = "Varování: umístění profilu nemá žádnou profilovou fotografii."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d požadovaný parametr nebyl nalezen na daném místě", - 1 => "%d požadované parametry nebyly nalezeny na daném místě", - 2 => "%d požadované parametry nebyly nalezeny na daném místě", -); -$a->strings["Introduction complete."] = "Představení dokončeno."; -$a->strings["Unrecoverable protocol error."] = "Neopravitelná chyba protokolu"; -$a->strings["Profile unavailable."] = "Profil není k dispozici."; -$a->strings["%s has received too many connection requests today."] = "%s dnes obdržel příliÅ¡ mnoho požadavků na připojení."; -$a->strings["Spam protection measures have been invoked."] = "Ochrana proti spamu byla aktivována"; -$a->strings["Friends are advised to please try again in 24 hours."] = "Přátelům se doporučuje to zkusit znovu za 24 hodin."; -$a->strings["Invalid locator"] = "Neplatný odkaz"; -$a->strings["Invalid email address."] = "Neplatná emailová adresa"; -$a->strings["This account has not been configured for email. Request failed."] = "Tento účet nebyl nastaven pro email. Požadavek nesplněn."; -$a->strings["Unable to resolve your name at the provided location."] = "Nepodařilo se zjistit VaÅ¡e jméno na zadané adrese."; -$a->strings["You have already introduced yourself here."] = "Již jste se zde zavedli."; -$a->strings["Apparently you are already friends with %s."] = "Zřejmě jste již přátelé se %s."; -$a->strings["Invalid profile URL."] = "Neplatné URL profilu."; -$a->strings["Your introduction has been sent."] = "VaÅ¡e žádost o propojení byla odeslána."; -$a->strings["Please login to confirm introduction."] = "Prosím přihlaÅ¡te se k potvrzení žádosti o propojení."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Jste přihlášeni pod nesprávnou identitou Prosím, přihlaste se do tohoto profilu."; -$a->strings["Hide this contact"] = "Skrýt tento kontakt"; -$a->strings["Welcome home %s."] = "Vítejte doma %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Prosím potvrďte VaÅ¡i žádost o propojení %s."; -$a->strings["Confirm"] = "Potvrdit"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Prosím zadejte VaÅ¡i adresu identity jedné z následujících podporovaných komunikačních sí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."] = "Pokud jeÅ¡tě nejste členem svobodné sociální sítě, následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám jeÅ¡tě dnes."; -$a->strings["Friend/Connection Request"] = "Požadavek o přátelství / kontaktování"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Odpovězte, prosím, následující:"; -$a->strings["Does %s know you?"] = "Zná Vás uživatel %s ?"; -$a->strings["Add a personal note:"] = "Přidat osobní poznámku:"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federativní Sociální Web"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - prosím nepoužívejte tento formulář. Místo toho zadejte %s do VaÅ¡eho Diaspora vyhledávacího pole."; -$a->strings["Your Identity Address:"] = "Verze PHP pro příkazový řádek na VaÅ¡em systému nemá povolen \"register_argc_argv\"."; -$a->strings["Submit Request"] = "Odeslat žádost"; +$a->strings["Photos"] = "Fotografie"; $a->strings["Files"] = "Soubory"; -$a->strings["Authorize application connection"] = "Povolit připojení aplikacím"; -$a->strings["Return to your app and insert this Securty Code:"] = "VraÅ¥te se do vaší aplikace a zadejte tento bezpečnostní kód:"; -$a->strings["Please login to continue."] = "Pro pokračování se prosím přihlaste."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Chcete umožnit této aplikaci přístup k vaÅ¡im příspěvkům a kontaktům a/nebo k vytváření VaÅ¡ich nových příspěvků?"; -$a->strings["Do you really want to delete this suggestion?"] = "Opravdu chcete smazat tento návrh?"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin."; -$a->strings["Ignore/Hide"] = "Ignorovat / skrýt"; $a->strings["Contacts who are not members of a group"] = "Kontakty, které nejsou členy skupiny"; -$a->strings["Contact not found."] = "Kontakt nenalezen."; -$a->strings["Friend suggestion sent."] = "Návrhy přátelství odeslány "; -$a->strings["Suggest Friends"] = "Navrhněte přátelé"; -$a->strings["Suggest a friend for %s"] = "Navrhněte přátelé pro uživatele %s"; -$a->strings["link"] = "odkaz"; -$a->strings["No contacts."] = "Žádné kontakty."; $a->strings["Theme settings updated."] = "Nastavení téma zobrazení bylo aktualizováno."; $a->strings["Site"] = "Web"; $a->strings["Users"] = "Uživatelé"; +$a->strings["Plugins"] = "Pluginy"; $a->strings["Themes"] = "Témata"; $a->strings["DB updates"] = "Aktualizace databáze"; $a->strings["Logs"] = "Logy"; +$a->strings["Admin"] = "Administrace"; $a->strings["Plugin Features"] = "Funkčnosti rozšíření"; $a->strings["User registrations waiting for confirmation"] = "Registrace uživatele čeká na potvrzení"; $a->strings["Normal Account"] = "Normální účet"; @@ -1136,7 +415,12 @@ $a->strings["Version"] = "Verze"; $a->strings["Active plugins"] = "Aktivní pluginy"; $a->strings["Can not parse base url. Must have at least ://"] = "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň ://"; $a->strings["Site settings updated."] = "Nastavení webu aktualizováno."; +$a->strings["No special theme for mobile devices"] = "žádné speciální téma pro mobilní zařízení"; $a->strings["At post arrival"] = "Při obdržení příspěvku"; +$a->strings["Frequently"] = "Často"; +$a->strings["Hourly"] = "každou hodinu"; +$a->strings["Twice daily"] = "Dvakrát denně"; +$a->strings["Daily"] = "denně"; $a->strings["Multi user instance"] = "Více uživatelská instance"; $a->strings["Closed"] = "Uzavřeno"; $a->strings["Requires approval"] = "Vyžaduje schválení"; @@ -1144,12 +428,15 @@ $a->strings["Open"] = "Otevřená"; $a->strings["No SSL policy, links will track page SSL state"] = "Žádná SSL politika, odkazy budou následovat stránky SSL stav"; $a->strings["Force all links to use SSL"] = "Vyžadovat u vÅ¡ech odkazů použití SSL"; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)"; +$a->strings["Save Settings"] = "Uložit Nastavení"; +$a->strings["Registration"] = "Registrace"; $a->strings["File upload"] = "Nahrání souborů"; $a->strings["Policies"] = "Politiky"; $a->strings["Advanced"] = "Pokročilé"; $a->strings["Performance"] = "Výkonnost"; $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server."; $a->strings["Site name"] = "Název webu"; +$a->strings["Host name"] = ""; $a->strings["Banner/Logo"] = "Banner/logo"; $a->strings["Additional Info"] = "Dodatečné informace"; $a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Pro veřejné servery: zde můžete doplnit dodatečné informace, které budou uvedeny v seznamu na dir.friendica.com/siteinfo."; @@ -1160,6 +447,8 @@ $a->strings["Mobile system theme"] = "Systémové téma zobrazení pro mobilní $a->strings["Theme for mobile devices"] = "Téma zobrazení pro mobilní zařízení"; $a->strings["SSL link policy"] = "Politika SSL odkazů"; $a->strings["Determines whether generated links should be forced to use SSL"] = "Určuje, zda-li budou generované odkazy používat SSL"; +$a->strings["Force SSL"] = "Vynutit SSL"; +$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = ""; $a->strings["Old style 'Share'"] = "Sdílení \"postaru\""; $a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Deaktivovat bbcode element \"share\" pro opakující se položky."; $a->strings["Hide help entry from navigation menu"] = "skrýt nápovědu z navigačního menu"; @@ -1246,8 +535,8 @@ $a->strings["Base path to installation"] = "Základní cesta k instalaci"; $a->strings["Disable picture proxy"] = "Vypnutí obrázkové proxy"; $a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Obrázková proxi zvyÅ¡uje výkonnost a soukromí. Neměla by být použita na systémech s pomalým připojením k síti."; $a->strings["New base url"] = "Nová výchozí url adresa"; -$a->strings["Enable noscrape"] = "Povolit noscrape"; -$a->strings["The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping."] = "Funkčnost noscrape urychlí odesílání adresářů použitím JSON místo HTML."; +$a->strings["Disable noscrape"] = ""; +$a->strings["The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping. Disabling it will cause higher load on your server and the directory server."] = ""; $a->strings["Update has been marked successful"] = "Aktualizace byla označena jako úspěšná."; $a->strings["Database structure update %s was successfully applied."] = "Aktualizace struktury databáze %s byla úspěšně aplikována."; $a->strings["Executing of database structure update %s failed with error: %s"] = "Provádění aktualizace databáze %s skončilo chybou: %s"; @@ -1263,6 +552,7 @@ $a->strings["Mark success (if update was manually applied)"] = "Označit za úsp $a->strings["Attempt to execute this update step automatically"] = "Pokusit se provést tuto aktualizaci automaticky."; $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tDrahý %1\$s,\n\t\t\t\tadministrátor webu %2\$s pro Vás vytvořil uživatelský účet."; $a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = ""; +$a->strings["Registration details for %s"] = "Registrační údaje pro %s"; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s uživatel blokován/odblokován", 1 => "%s uživatelů blokováno/odblokováno", @@ -1281,6 +571,7 @@ $a->strings["select all"] = "Vybrat vÅ¡e"; $a->strings["User registrations waiting for confirm"] = "Registrace uživatele čeká na potvrzení"; $a->strings["User waiting for permanent deletion"] = "Uživatel čeká na trvalé smazání"; $a->strings["Request date"] = "Datum žádosti"; +$a->strings["Email"] = "E-mail"; $a->strings["No registrations."] = "Žádné registrace."; $a->strings["Deny"] = "Odmítnout"; $a->strings["Site admin"] = "Site administrátor"; @@ -1290,6 +581,7 @@ $a->strings["Register date"] = "Datum registrace"; $a->strings["Last login"] = "Datum posledního přihlášení"; $a->strings["Last item"] = "Poslední položka"; $a->strings["Deleted since"] = "Smazán od"; +$a->strings["Account"] = "Účet"; $a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Vybraní uživatelé budou smazáni!\\n\\n VÅ¡e, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\n Opravdu pokračovat?"; $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?"] = "Uživatel {0} bude smazán!\\n\\n VÅ¡e, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\\n\\n Opravdu pokračovat?"; $a->strings["Name of the new user."] = "Jméno nového uživatele"; @@ -1318,14 +610,10 @@ $a->strings["FTP Host"] = "Hostitel FTP"; $a->strings["FTP Path"] = "Cesta FTP"; $a->strings["FTP User"] = "FTP uživatel"; $a->strings["FTP Password"] = "FTP heslo"; -$a->strings["Image exceeds size limit of %d"] = "Obrázek překročil limit velikosti %d"; -$a->strings["Unable to process image."] = "Obrázek není možné zprocesovat"; -$a->strings["Image upload failed."] = "Nahrání obrázku selhalo."; -$a->strings["Welcome to %s"] = "Vítá Vás %s"; -$a->strings["OpenID protocol error. No ID returned."] = "Chyba OpenID protokolu. Navrátilo se žádné ID."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nenalezen účet a OpenID registrace na tomto serveru není dovolena."; $a->strings["Search Results For:"] = "Výsledky hledání pro:"; $a->strings["Remove term"] = "Odstranit termín"; +$a->strings["Saved Searches"] = "Uložená hledání"; +$a->strings["add"] = "přidat"; $a->strings["Commented Order"] = "Dle komentářů"; $a->strings["Sort by Comment Date"] = "Řadit podle data komentáře"; $a->strings["Posted Order"] = "Dle data"; @@ -1349,132 +637,13 @@ $a->strings["Group: "] = "Skupina: "; $a->strings["Contact: "] = "Kontakt: "; $a->strings["Private messages to this person are at risk of public disclosure."] = "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení."; $a->strings["Invalid contact."] = "Neplatný kontakt."; -$a->strings["- select -"] = "- vyber -"; -$a->strings["This is Friendica, version"] = "Toto je Friendica, verze"; -$a->strings["running at web location"] = "běžící na webu"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Pro získání dalších informací o projektu Friendica navÅ¡tivte prosím Friendica.com."; -$a->strings["Bug reports and issues: please visit"] = "Pro hlášení chyb a námětů na změny navÅ¡tivte:"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Návrhy, chválu, dary, apod. - prosím piÅ¡tě na \"info\" na Friendica - tečka com"; -$a->strings["Installed plugins/addons/apps:"] = "Instalované pluginy/doplňky/aplikace:"; -$a->strings["No installed plugins/addons/apps"] = "Nejsou žádné nainstalované doplňky/aplikace"; -$a->strings["Applications"] = "Aplikace"; -$a->strings["No installed applications."] = "Žádné nainstalované aplikace."; -$a->strings["Upload New Photos"] = "Nahrát nové fotografie"; -$a->strings["Contact information unavailable"] = "Kontakt byl zablokován"; -$a->strings["Album not found."] = "Album nenalezeno."; -$a->strings["Delete Album"] = "Smazat album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Opravdu chcete smazat toto foto album a vÅ¡echny jeho fotografie?"; -$a->strings["Delete Photo"] = "Smazat fotografii"; -$a->strings["Do you really want to delete this photo?"] = "Opravdu chcete smazat tuto fotografii?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s byl označen v %2\$s uživatelem %3\$s"; -$a->strings["a photo"] = "fotografie"; -$a->strings["Image exceeds size limit of "] = "Velikost obrázku překračuje limit velikosti"; -$a->strings["Image file is empty."] = "Soubor obrázku je prázdný."; -$a->strings["No photos selected"] = "Není vybrána žádná fotografie"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiÅ¡tě fotografií."; -$a->strings["Upload Photos"] = "Nahrání fotografií "; -$a->strings["New album name: "] = "Název nového alba: "; -$a->strings["or existing album name: "] = "nebo stávající název alba: "; -$a->strings["Do not show a status post for this upload"] = "Nezobrazovat stav pro tento upload"; -$a->strings["Permissions"] = "Oprávnění:"; -$a->strings["Private Photo"] = "Soukromé Fotografie"; -$a->strings["Public Photo"] = "Veřejné Fotografie"; -$a->strings["Edit Album"] = "Edituj album"; -$a->strings["Show Newest First"] = "Zobrazit nejprve nejnovější:"; -$a->strings["Show Oldest First"] = "Zobrazit nejprve nejstarší:"; -$a->strings["View Photo"] = "Zobraz fotografii"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen."; -$a->strings["Photo not available"] = "Fotografie není k dispozici"; -$a->strings["View photo"] = "Zobrazit obrázek"; -$a->strings["Edit photo"] = "Editovat fotografii"; -$a->strings["Use as profile photo"] = "Použít jako profilovou fotografii"; -$a->strings["View Full Size"] = "Zobrazit v plné velikosti"; -$a->strings["Tags: "] = "Å títky: "; -$a->strings["[Remove any tag]"] = "[Odstranit vÅ¡echny Å¡títky]"; -$a->strings["Rotate CW (right)"] = "Rotovat po směru hodinových ručiček (doprava)"; -$a->strings["Rotate CCW (left)"] = "Rotovat proti směru hodinových ručiček (doleva)"; -$a->strings["New album name"] = "Nové jméno alba"; -$a->strings["Caption"] = "Titulek"; -$a->strings["Add a Tag"] = "Přidat Å¡títek"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Private photo"] = "Soukromé fotografie"; -$a->strings["Public photo"] = "Veřejné fotografie"; -$a->strings["Recent Photos"] = "Aktuální fotografie"; -$a->strings["Contact added"] = "Kontakt přidán"; -$a->strings["Move account"] = "Přesunout účet"; -$a->strings["You can import an account from another Friendica server."] = "Můžete importovat účet z jiného Friendica serveru."; -$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."] = "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně vÅ¡ech kontaktů. Zároveň se pokusíme informovat vÅ¡echny VaÅ¡e přátele, že jste se sem přestěhovali."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory"; -$a->strings["Account file"] = "Soubor s účtem"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "K exportu VaÅ¡eho účtu, jděte do \"Nastavení->Export vaÅ¡ich osobních dat\" a zvolte \" Export účtu\""; -$a->strings["Total invitation limit exceeded."] = "Celkový limit pozvánek byl překročen"; -$a->strings["%s : Not a valid email address."] = "%s : není platná e-mailová adresa."; -$a->strings["Please join us on Friendica"] = "Prosím přidejte se k nám na Friendice"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit pozvánek byl překročen. Prosím kontaktujte vaÅ¡eho administrátora webu."; -$a->strings["%s : Message delivery failed."] = "%s : Doručení zprávy se nezdařilo."; -$a->strings["%d message sent."] = array( - 0 => "%d zpráva odeslána.", - 1 => "%d zprávy odeslány.", - 2 => "%d zprávy odeslány.", -); -$a->strings["You have no more invitations available"] = "Nemáte k dispozici žádné další pozvánky"; -$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."] = "NavÅ¡tivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "K akceptaci této pozvánky prosím navÅ¡tivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru."; -$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 servery jsou vÅ¡echny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. NavÅ¡tivte %s pro seznam alternativních Friendica serverů kde se můžete přidat."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy."; -$a->strings["Send invitations"] = "Poslat pozvánky"; -$a->strings["Enter email addresses, one per line:"] = "Zadejte e-mailové adresy, jednu na řádek:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Budete muset zadat kód této pozvánky: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navÅ¡tivte http://friendica.com"; -$a->strings["Access denied."] = "Přístup odmítnut"; -$a->strings["No valid account found."] = "Nenalezen žádný platný účet."; -$a->strings["Password reset request issued. Check your email."] = "Žádost o obnovení hesla vyřízena. Zkontrolujte VaÅ¡i e-mailovou schránku."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; -$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tKlikněte na následující odkaz pro potvrzení Vaší identity:\n\n\t\t%1\$s\n\n\t\tNásledně obdržíte zprávu obsahující nové heslo.\n\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\n\t\tVaÅ¡e přihlaÅ¡ovací údaje jsou následující:\n\n\t\tUmístění webu:\t%2\$s\n\t\tPřihlaÅ¡ovací jméno:\t%3\$s"; -$a->strings["Password reset requested at %s"] = "Na %s bylo zažádáno o resetování hesla"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo."; -$a->strings["Your password has been reset as requested."] = "VaÅ¡e heslo bylo na VaÅ¡e přání resetováno."; -$a->strings["Your new password is"] = "Někdo Vám napsal na VaÅ¡i profilovou stránku"; -$a->strings["Save or copy your new password - and then"] = "Uložte si nebo zkopírujte nové heslo - a pak"; -$a->strings["click here to login"] = "klikněte zde pro přihlášení"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Nezdá se, že by to bylo VaÅ¡e celé jméno (křestní jméno a příjmení)."; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tDrahý %1\$s,\n⇥⇥⇥⇥⇥VaÅ¡e heslo bylo na požádání změněno. Prosím uchovejte si tuto informaci (nebo si změntě heslo ihned na něco, co si budete pamatovat).\t"; -$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tVaÅ¡e přihlaÅ¡ovací údaje jsou následující:\n\n\t\t\t\tUmístění webu:\t%1\$s\n\t\t\t\tPřihlaÅ¡ovací jméno:\t%2\$s\n\t\t\t\tHeslo:\t%3\$s\n\n\t\t\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\t\t\t"; -$a->strings["Your password has been changed at %s"] = "VaÅ¡e heslo bylo změněno na %s"; -$a->strings["Forgot your Password?"] = "Zapomněli jste heslo?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Zadejte svůj e-mailovou adresu a odeÅ¡lete žádost o zaslání VaÅ¡eho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce."; -$a->strings["Nickname or Email: "] = "Přezdívka nebo e-mail: "; -$a->strings["Reset"] = "Reset"; -$a->strings["Source (bbcode) text:"] = "Zdrojový text (bbcode):"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Zdrojový (Diaspora) text k převedení do BB kódování:"; -$a->strings["Source input: "] = "Zdrojový vstup: "; -$a->strings["bb2html (raw HTML): "] = "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): "] = "Vstupní data (ve formátu Diaspora): "; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Tag removed"] = "Å títek odstraněn"; -$a->strings["Remove Item Tag"] = "Odebrat Å¡títek položky"; -$a->strings["Select a tag to remove: "] = "Vyberte Å¡títek k odebrání: "; -$a->strings["Remove My Account"] = "Odstranit můj účet"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit."; -$a->strings["Please enter your password for verification:"] = "Prosím, zadejte své heslo pro ověření:"; -$a->strings["Invalid profile identifier."] = "Neplatný identifikátor profilu."; -$a->strings["Profile Visibility Editor"] = "Editor viditelnosti profilu "; -$a->strings["Visible To"] = "Viditelný pro"; -$a->strings["All Contacts (with secure profile access)"] = "VÅ¡echny kontakty (se zabezpečeným přístupovým profilem )"; -$a->strings["Profile Match"] = "Shoda profilu"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do VaÅ¡eho výchozího profilu."; -$a->strings["is interested in:"] = "zajímá se o:"; +$a->strings["Friends of %s"] = "Přátelé uživatele %s"; +$a->strings["No friends to display."] = "Žádní přátelé k zobrazení"; $a->strings["Event title and start time are required."] = "Název události a datum začátku jsou vyžadovány."; $a->strings["l, F j"] = "l, F j"; $a->strings["Edit event"] = "Editovat událost"; +$a->strings["link to source"] = "odkaz na zdroj"; +$a->strings["Events"] = "Události"; $a->strings["Create New Event"] = "Vytvořit novou událost"; $a->strings["Previous"] = "Předchozí"; $a->strings["Next"] = "Dále"; @@ -1487,114 +656,55 @@ $a->strings["Finish date/time is not known or not relevant"] = "Datum/čas konce $a->strings["Event Finishes:"] = "Akce končí:"; $a->strings["Adjust for viewer timezone"] = "Nastavit časové pásmo pro uživatele s právem pro čtení"; $a->strings["Description:"] = "Popis:"; +$a->strings["Location:"] = "Místo:"; $a->strings["Title:"] = "Název:"; $a->strings["Share this event"] = "Sdílet tuto událost"; -$a->strings["{0} wants to be your friend"] = "{0} chce být Vaším přítelem"; -$a->strings["{0} sent you a message"] = "{0} vám poslal zprávu"; -$a->strings["{0} requested registration"] = "{0} požaduje registraci"; -$a->strings["{0} commented %s's post"] = "{0} komentoval příspěvek uživatele %s"; -$a->strings["{0} liked %s's post"] = "{0} má rád příspěvek uživatele %s"; -$a->strings["{0} disliked %s's post"] = "{0} nemá rád příspěvek uživatele %s"; -$a->strings["{0} is now friends with %s"] = "{0} se skamarádil s %s"; -$a->strings["{0} posted"] = "{0} zasláno"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} označen %s' příspěvek s #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} vás zmínil v příspěvku"; -$a->strings["Mood"] = "Nálada"; -$a->strings["Set your current mood and tell your friends"] = "Nastavte svou aktuální náladu a řekněte to VaÅ¡im přátelům"; -$a->strings["No results."] = "Žádné výsledky."; -$a->strings["Unable to locate contact information."] = "Nepodařilo se najít kontaktní informace."; -$a->strings["Do you really want to delete this message?"] = "Opravdu chcete smazat tuto zprávu?"; -$a->strings["Message deleted."] = "Zpráva odstraněna."; -$a->strings["Conversation removed."] = "Konverzace odstraněna."; -$a->strings["No messages."] = "Žádné zprávy."; -$a->strings["Unknown sender - %s"] = "Neznámý odesilatel - %s"; -$a->strings["You and %s"] = "Vy a %s"; -$a->strings["%s and You"] = "%s a Vy"; -$a->strings["Delete conversation"] = "Odstranit konverzaci"; -$a->strings["D, d M Y - g:i A"] = "D M R - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d zpráva", - 1 => "%d zprávy", - 2 => "%d zpráv", +$a->strings["Select"] = "Vybrat"; +$a->strings["View %s's profile @ %s"] = "Zobrazit profil uživatele %s na %s"; +$a->strings["%s from %s"] = "%s od %s"; +$a->strings["View in context"] = "Pohled v kontextu"; +$a->strings["%d comment"] = array( + 0 => "%d komentář", + 1 => "%d komentářů", + 2 => "%d komentářů", ); -$a->strings["Message not available."] = "Zpráva není k dispozici."; -$a->strings["Delete message"] = "Smazat zprávu"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Není k dispozici zabezpečená komunikace. Možná budete schopni reagovat z odesilatelovy profilové stránky."; -$a->strings["Send Reply"] = "Poslat odpověď"; -$a->strings["Not available."] = "Není k dispozici."; -$a->strings["Profile not found."] = "Profil nenalezen"; -$a->strings["Profile deleted."] = "Profil smazán."; -$a->strings["Profile-"] = "Profil-"; -$a->strings["New profile created."] = "Nový profil vytvořen."; -$a->strings["Profile unavailable to clone."] = "Profil není možné naklonovat."; -$a->strings["Profile Name is required."] = "Jméno profilu je povinné."; -$a->strings["Marital Status"] = "Rodinný Stav"; -$a->strings["Romantic Partner"] = "Romatický partner"; -$a->strings["Likes"] = "Libí se mi"; -$a->strings["Dislikes"] = "Nelibí se mi"; -$a->strings["Work/Employment"] = "Práce/Zaměstnání"; -$a->strings["Religion"] = "Náboženství"; -$a->strings["Political Views"] = "Politické přesvědčení"; -$a->strings["Gender"] = "Pohlaví"; -$a->strings["Sexual Preference"] = "Sexuální orientace"; -$a->strings["Homepage"] = "Domácí stránka"; -$a->strings["Interests"] = "Zájmy"; -$a->strings["Address"] = "Adresa"; -$a->strings["Location"] = "Lokace"; -$a->strings["Profile updated."] = "Profil aktualizován."; -$a->strings[" and "] = " a "; -$a->strings["public profile"] = "veřejný profil"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s změnil %2\$s na “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = " - NavÅ¡tivte %2\$s uživatele %1\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s aktualizoval %2\$s, změnou %3\$s."; -$a->strings["Hide contacts and friends:"] = "Skrýt kontakty a přátele:"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Skrýt u tohoto profilu VaÅ¡e kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?"; -$a->strings["Edit Profile Details"] = "Upravit podrobnosti profilu "; -$a->strings["Change Profile Photo"] = "Změna Profilové fotky"; -$a->strings["View this profile"] = "Zobrazit tento profil"; -$a->strings["Create a new profile using these settings"] = "Vytvořit nový profil pomocí tohoto nastavení"; -$a->strings["Clone this profile"] = "Klonovat tento profil"; -$a->strings["Delete this profile"] = "Smazat tento profil"; -$a->strings["Basic information"] = "Základní informace"; -$a->strings["Profile picture"] = "Profilový obrázek"; -$a->strings["Preferences"] = "Nastavení"; -$a->strings["Status information"] = "Statusové informace"; -$a->strings["Additional information"] = "Dodatečné informace"; -$a->strings["Upload Profile Photo"] = "Nahrát profilovou fotografii"; -$a->strings["Profile Name:"] = "Jméno profilu:"; -$a->strings["Your Full Name:"] = "VaÅ¡e celé jméno:"; -$a->strings["Title/Description:"] = "Název / Popis:"; -$a->strings["Your Gender:"] = "VaÅ¡e pohlaví:"; -$a->strings["Birthday (%s):"] = "Narozeniny uživatele (%s):"; -$a->strings["Street Address:"] = "Ulice:"; -$a->strings["Locality/City:"] = "Město:"; -$a->strings["Postal/Zip Code:"] = "PSČ:"; -$a->strings["Country:"] = "Země:"; -$a->strings["Region/State:"] = "Region / stát:"; -$a->strings[" Marital Status:"] = " Rodinný stav:"; -$a->strings["Who: (if applicable)"] = "Kdo: (pokud je možné)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Příklady: jan123, Jan Novák, jan@seznam.cz"; -$a->strings["Since [date]:"] = "Od [data]:"; -$a->strings["Homepage URL:"] = "Odkaz na domovskou stránku:"; -$a->strings["Religious Views:"] = "Náboženské přesvědčení:"; -$a->strings["Public Keywords:"] = "Veřejná klíčová slova:"; -$a->strings["Private Keywords:"] = "Soukromá klíčová slova:"; -$a->strings["Example: fishing photography software"] = "Příklad: fishing photography software"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)"; -$a->strings["Tell us about yourself..."] = "Řekněte nám něco o sobě ..."; -$a->strings["Hobbies/Interests"] = "Koníčky/zájmy"; -$a->strings["Contact information and Social Networks"] = "Kontaktní informace a sociální sítě"; -$a->strings["Musical interests"] = "Hudební vkus"; -$a->strings["Books, literature"] = "Knihy, literatura"; -$a->strings["Television"] = "Televize"; -$a->strings["Film/dance/culture/entertainment"] = "Film/tanec/kultura/zábava"; -$a->strings["Love/romance"] = "Láska/romantika"; -$a->strings["Work/employment"] = "Práce/zaměstnání"; -$a->strings["School/education"] = "Å kola/vzdělání"; -$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Toto je váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu."; -$a->strings["Age: "] = "Věk: "; -$a->strings["Edit/Manage Profiles"] = "Upravit / Spravovat profily"; +$a->strings["comment"] = array( + 0 => "", + 1 => "", + 2 => "komentář", +); +$a->strings["show more"] = "zobrazit více"; +$a->strings["Private Message"] = "Soukromá zpráva"; +$a->strings["I like this (toggle)"] = "Líbí se mi to (přepínač)"; +$a->strings["like"] = "má rád"; +$a->strings["I don't like this (toggle)"] = "Nelíbí se mi to (přepínač)"; +$a->strings["dislike"] = "nemá rád"; +$a->strings["Share this"] = "Sdílet toto"; +$a->strings["share"] = "sdílí"; +$a->strings["This is you"] = "Nastavte Vaši polohu"; +$a->strings["Comment"] = "Okomentovat"; +$a->strings["Bold"] = "Tučné"; +$a->strings["Italic"] = "Kurzíva"; +$a->strings["Underline"] = "Podrtžené"; +$a->strings["Quote"] = "Citovat"; +$a->strings["Code"] = "Kód"; +$a->strings["Image"] = "Obrázek"; +$a->strings["Link"] = "Odkaz"; +$a->strings["Video"] = "Video"; +$a->strings["Preview"] = "Náhled"; +$a->strings["Edit"] = "Upravit"; +$a->strings["add star"] = "přidat hvězdu"; +$a->strings["remove star"] = "odebrat hvězdu"; +$a->strings["toggle star status"] = "přepnout hvězdu"; +$a->strings["starred"] = "označeno hvězdou"; +$a->strings["add tag"] = "přidat štítek"; +$a->strings["save to folder"] = "uložit do složky"; +$a->strings["to"] = "pro"; +$a->strings["Wall-to-Wall"] = "Zeď-na-Zeď"; +$a->strings["via Wall-To-Wall:"] = "přes Zeď-na-Zeď "; +$a->strings["Remove My Account"] = "Odstranit můj účet"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit."; +$a->strings["Please enter your password for verification:"] = "Prosím, zadejte své heslo pro ověření:"; $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."; @@ -1656,114 +766,1028 @@ $a->strings["Url rewrite is working"] = "Url rewrite je funkční."; $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."] = "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru."; $a->strings["

What next

"] = "

Co dál

"; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno."; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena."; +$a->strings["Unable to check your home location."] = "Nebylo možné zjistit Vaši domácí lokaci."; +$a->strings["No recipient."] = "Žádný příjemce."; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů."; $a->strings["Help:"] = "Nápověda:"; -$a->strings["Contact settings applied."] = "Nastavení kontaktu změněno"; -$a->strings["Contact update failed."] = "Aktualizace kontaktu selhala."; -$a->strings["Repair Contact Settings"] = "Opravit nastavení kontaktu"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "Varování: Toto je velmi pokročilé a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Prosím použijte ihned v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce."; -$a->strings["Return to contact editor"] = "Návrat k editoru kontaktu"; -$a->strings["Account Nickname"] = "Přezdívka účtu"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - upřednostněno před Jménem/Přezdívkou"; -$a->strings["Account URL"] = "URL adresa účtu"; -$a->strings["Friend Request URL"] = "Žádost o přátelství URL"; -$a->strings["Friend Confirm URL"] = "URL adresa potvrzení přátelství"; -$a->strings["Notification Endpoint URL"] = "Notifikační URL adresa"; -$a->strings["Poll/Feed URL"] = "Poll/Feed URL adresa"; -$a->strings["New photo from this URL"] = "Nové foto z této URL adresy"; -$a->strings["Remote Self"] = "Remote Self"; -$a->strings["Mirror postings from this contact"] = "Zrcadlení správ od tohoto kontaktu"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu."; -$a->strings["No mirroring"] = "Žádné zrcadlení"; -$a->strings["Mirror as forwarded posting"] = "Zrcadlit pro přeposlané příspěvky"; -$a->strings["Mirror as my own posting"] = "Zrcadlit jako mé vlastní příspěvky"; -$a->strings["Welcome to Friendica"] = "Vítejte na Friendica"; -$a->strings["New Member Checklist"] = "Seznam doporučení pro nového člena"; -$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."] = "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace."; -$a->strings["Getting Started"] = "Začínáme"; -$a->strings["Friendica Walk-Through"] = "Prohlídka Friendica "; -$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."] = "Na Vaší stránce Rychlý Start - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit."; -$a->strings["Go to Your Settings"] = "Navštivte své nastavení"; -$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."] = "Na Vaší stránce Nastavení - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti."; -$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."] = "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít."; -$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."] = "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají."; -$a->strings["Edit Your Profile"] = "Editujte Váš 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."] = "Upravit výchozí profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho seznamu přátel a skrytí profilu před neznámými návštěvníky."; -$a->strings["Profile Keywords"] = "Profilová klíčová slova"; -$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."] = "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství."; -$a->strings["Connecting"] = "Probíhá pokus o připojení"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Pokud je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web."; -$a->strings["Importing Emails"] = "Importování emaiů"; -$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"] = "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu"; -$a->strings["Go to Your Contacts Page"] = "Navštivte Vaši stránku s kontakty"; -$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."] = "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu Přidat nový kontakt."; -$a->strings["Go to Your Site's Directory"] = "Navštivte lokální adresář Friendica"; -$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."] = "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů Připojení nebo Následovat si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována."; -$a->strings["Finding New People"] = "Nalezení nových lidí"; -$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."] = "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin."; -$a->strings["Group Your Contacts"] = "Seskupte si své kontakty"; -$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."] = "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť."; -$a->strings["Why Aren't My Posts Public?"] = "Proč nejsou mé příspěvky veřejné?"; -$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 respektuje Vaše soukromí. Defaultně jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu"; -$a->strings["Getting Help"] = "Získání nápovědy"; -$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["Poke/Prod"] = "Šťouchanec"; -$a->strings["poke, prod or do other things to somebody"] = "někoho šťouchnout nebo mu provést jinou věc"; -$a->strings["Recipient"] = "Příjemce"; -$a->strings["Choose what you wish to do to recipient"] = "Vyberte, co si přejete příjemci udělat"; -$a->strings["Make this post private"] = "Změnit tento příspěvek na soukromý"; -$a->strings["\n\t\tDear $[username],\n\t\t\tYour password has been changed as requested. Please retain this\n\t\tinformation for your records (or change your password immediately to\n\t\tsomething that you will remember).\n\t"] = "\n\t\tDrahý $[username],\n\t\t\tVaše heslo bylo na požádání změněno. Prosím uchovejte si tuto\n\t\tinformaci (nebo si změntě heslo ihned \n\t\tna něco, co si budete pamatovat).\n\t"; -$a->strings["Item has been removed."] = "Položka byla odstraněna."; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s následuje %3\$s uživatele %2\$s"; +$a->strings["Help"] = "Nápověda"; +$a->strings["Not Found"] = "Nenalezen"; +$a->strings["Page not found."] = "Stránka nenalezena"; $a->strings["%1\$s welcomes %2\$s"] = "%1\$s vítá %2\$s"; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen."; -$a->strings["Response from remote site was not understood."] = "Odpověď ze vzdáleného serveru nebyla srozumitelná."; -$a->strings["Unexpected response from remote site: "] = "Neočekávaná odpověď od vzdáleného serveru:"; -$a->strings["Confirmation completed successfully."] = "Potvrzení úspěšně dokončena."; -$a->strings["Remote site reported: "] = "Vzdálený server oznámil:"; -$a->strings["Temporary failure. Please wait and try again."] = "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu."; -$a->strings["Introduction failed or was revoked."] = "Žádost o propojení selhala nebo byla zrušena."; -$a->strings["Unable to set contact photo."] = "Nelze nastavit fotografii kontaktu."; -$a->strings["No user record found for '%s' "] = "Pro '%s' nenalezen žádný uživatelský záznam "; -$a->strings["Our site encryption key is apparently messed up."] = "Náš šifrovací klíč zřejmě přestal správně fungovat."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat."; -$a->strings["Contact record was not found for you on our site."] = "Kontakt záznam nebyl nalezen pro vás na našich stránkách."; -$a->strings["Site public key not available in contact record for URL %s."] = "V adresáři není k dispozici veřejný klíč pro URL %s."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat."; -$a->strings["Unable to set your contact credentials on our system."] = "Nelze nastavit Vaše přihlašovací údaje v našem systému."; -$a->strings["Unable to update your contact profile details on our system"] = "Nelze aktualizovat Váš profil v našem systému"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s se připojil k %2\$s"; -$a->strings["Unable to locate original post."] = "Nelze nalézt původní příspěvek."; -$a->strings["Empty post discarded."] = "Prázdný příspěvek odstraněn."; -$a->strings["System error. Post not saved."] = "Chyba systému. Příspěvek nebyl uložen."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica."; -$a->strings["You may visit them online at %s"] = "Můžete je navštívit online na adrese %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam."; -$a->strings["%s posted an update."] = "%s poslal aktualizaci."; -$a->strings["Image uploaded but image cropping failed."] = "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo."; -$a->strings["Image size reduction [%s] failed."] = "Nepodařilo se snížit velikost obrázku [%s]."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě."; -$a->strings["Unable to process image"] = "Obrázek nelze zpracovat "; -$a->strings["Upload File:"] = "Nahrát soubor:"; -$a->strings["Select a profile:"] = "Vybrat profil:"; -$a->strings["Upload"] = "Nahrát"; -$a->strings["skip this step"] = "přeskočit tento krok "; -$a->strings["select a photo from your photo albums"] = "Vybrat fotografii z Vašich fotoalb"; -$a->strings["Crop Image"] = "Oříznout obrázek"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Prosím, ořízněte tento obrázek pro optimální zobrazení."; -$a->strings["Done Editing"] = "Editace dokončena"; -$a->strings["Image uploaded successfully."] = "Obrázek byl úspěšně nahrán."; -$a->strings["Friends of %s"] = "Přátelé uživatele %s"; -$a->strings["No friends to display."] = "Žádní přátelé k zobrazení"; -$a->strings["Find on this site"] = "Nalézt na tomto webu"; -$a->strings["Site Directory"] = "Adresář serveru"; -$a->strings["Gender: "] = "Pohlaví: "; -$a->strings["No entries (some entries may be hidden)."] = "Žádné záznamy (některé položky mohou být skryty)."; -$a->strings["Time Conversion"] = "Časová konverze"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách"; -$a->strings["UTC time: %s"] = "UTC čas: %s"; -$a->strings["Current timezone: %s"] = "Aktuální časové pásmo: %s"; -$a->strings["Converted localtime: %s"] = "Převedený lokální čas : %s"; -$a->strings["Please select your timezone:"] = "Prosím, vyberte své časové pásmo:"; +$a->strings["Welcome to %s"] = "Vítá Vás %s"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP"; +$a->strings["Or - did you try to upload an empty file?"] = "Nebo - nenahrával jste prázdný soubor?"; +$a->strings["File exceeds size limit of %d"] = "Velikost souboru přesáhla limit %d"; +$a->strings["File upload failed."] = "Nahrání souboru se nezdařilo."; +$a->strings["Profile Match"] = "Shoda profilu"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu."; +$a->strings["is interested in:"] = "zajímá se o:"; +$a->strings["Connect"] = "Spojit"; +$a->strings["link"] = "odkaz"; +$a->strings["Not available."] = "Není k dispozici."; +$a->strings["Community"] = "Komunita"; +$a->strings["No results."] = "Žádné výsledky."; +$a->strings["everybody"] = "Žádost o připojení selhala nebo byla zrušena."; +$a->strings["Additional features"] = "Další funkčnosti"; +$a->strings["Display"] = "Zobrazení"; +$a->strings["Social Networks"] = "Sociální sítě"; +$a->strings["Delegations"] = "Delegace"; +$a->strings["Connected apps"] = "Propojené aplikace"; +$a->strings["Export personal data"] = "Export osobních údajů"; +$a->strings["Remove account"] = "Odstranit účet"; +$a->strings["Missing some important data!"] = "Chybí některé důležité údaje!"; +$a->strings["Failed to connect with email account using the settings provided."] = "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení."; +$a->strings["Email settings updated."] = "Nastavení e-mailu aktualizována."; +$a->strings["Features updated"] = "Aktualizované funkčnosti"; +$a->strings["Relocate message has been send to your contacts"] = "Správa o změně umístění byla odeslána vašim kontaktům"; +$a->strings["Passwords do not match. Password unchanged."] = "Hesla se neshodují. Heslo nebylo změněno."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Prázdné hesla nejsou povolena. Heslo nebylo změněno."; +$a->strings["Wrong password."] = "Špatné heslo."; +$a->strings["Password changed."] = "Heslo bylo změněno."; +$a->strings["Password update failed. Please try again."] = "Aktualizace hesla se nezdařila. Zkuste to prosím znovu."; +$a->strings[" Please use a shorter name."] = "Prosím použijte kratší jméno."; +$a->strings[" Name too short."] = "Jméno je příliš krátké."; +$a->strings["Wrong Password"] = "Špatné heslo"; +$a->strings[" Not valid email."] = "Neplatný e-mail."; +$a->strings[" Cannot change to that email."] = "Nelze provést změnu na tento e-mail."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu."; +$a->strings["Settings updated."] = "Nastavení aktualizováno."; +$a->strings["Add application"] = "Přidat aplikaci"; +$a->strings["Consumer Key"] = "Consumer Key"; +$a->strings["Consumer Secret"] = "Consumer Secret"; +$a->strings["Redirect"] = "Přesměrování"; +$a->strings["Icon url"] = "URL ikony"; +$a->strings["You can't edit this application."] = "Nemůžete editovat tuto aplikaci."; +$a->strings["Connected Apps"] = "Připojené aplikace"; +$a->strings["Client key starts with"] = "Klienský klíč začíná"; +$a->strings["No name"] = "Bez názvu"; +$a->strings["Remove authorization"] = "Odstranit oprávnění"; +$a->strings["No Plugin settings configured"] = "Žádný doplněk není nastaven"; +$a->strings["Plugin Settings"] = "Nastavení doplňku"; +$a->strings["Off"] = "Vypnuto"; +$a->strings["On"] = "Zapnuto"; +$a->strings["Additional Features"] = "Další Funkčnosti"; +$a->strings["Built-in support for %s connectivity is %s"] = "Vestavěná podpora pro připojení s %s je %s"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["enabled"] = "povoleno"; +$a->strings["disabled"] = "zakázáno"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "Přístup k elektronické poště je na tomto serveru zakázán."; +$a->strings["Email/Mailbox Setup"] = "Nastavení e-mailu"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce."; +$a->strings["Last successful email check:"] = "Poslední úspěšná kontrola e-mailu:"; +$a->strings["IMAP server name:"] = "jméno IMAP serveru:"; +$a->strings["IMAP port:"] = "IMAP port:"; +$a->strings["Security:"] = "Zabezpečení:"; +$a->strings["None"] = "Žádný"; +$a->strings["Email login name:"] = "přihlašovací jméno k e-mailu:"; +$a->strings["Email password:"] = "heslo k Vašemu e-mailu:"; +$a->strings["Reply-to address:"] = "Odpovědět na adresu:"; +$a->strings["Send public posts to all email contacts:"] = "Poslat veřejné příspěvky na všechny e-mailové kontakty:"; +$a->strings["Action after import:"] = "Akce po importu:"; +$a->strings["Mark as seen"] = "Označit jako přečtené"; +$a->strings["Move to folder"] = "Přesunout do složky"; +$a->strings["Move to folder:"] = "Přesunout do složky:"; +$a->strings["Display Settings"] = "Nastavení Zobrazení"; +$a->strings["Display Theme:"] = "Vybrat grafickou šablonu:"; +$a->strings["Mobile Theme:"] = "Téma pro mobilní zařízení:"; +$a->strings["Update browser every xx seconds"] = "Aktualizovat prohlížeč každých xx sekund"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekund, žádné maximum."; +$a->strings["Number of items to display per page:"] = "Počet položek zobrazených na stránce:"; +$a->strings["Maximum of 100 items"] = "Maximum 100 položek"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:"; +$a->strings["Don't show emoticons"] = "Nezobrazovat emotikony"; +$a->strings["Don't show notices"] = "Nezobrazovat oznámění"; +$a->strings["Infinite scroll"] = "Nekonečné posouvání"; +$a->strings["Automatic updates only at the top of the network page"] = "Automatické aktualizace pouze na hlavní stránce Síť."; +$a->strings["User Types"] = "Uživatelské typy"; +$a->strings["Community Types"] = "Komunitní typy"; +$a->strings["Normal Account Page"] = "Normální stránka účtu"; +$a->strings["This account is a normal personal profile"] = "Tento účet je běžný osobní profil"; +$a->strings["Soapbox Page"] = "Stránka \"Soapbox\""; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automaticky schválit všechna spojení / přátelství jako fanoušky s právem pouze ke čtení"; +$a->strings["Community Forum/Celebrity Account"] = "Komunitní fórum/ účet celebrity"; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Automaticky schvalovat všechny žádosti o spojení / přátelství, jako fanoušky s právem ke čtení."; +$a->strings["Automatic Friend Page"] = "Automatická stránka přítele"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Automaticky schvalovat všechny žádosti o spojení / přátelství jako přátele"; +$a->strings["Private Forum [Experimental]"] = "Soukromé fórum [Experimentální]"; +$a->strings["Private forum - approved members only"] = "Soukromé fórum - pouze pro schválené členy"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu."; +$a->strings["Publish your default profile in your local site directory?"] = "Publikovat Váš výchozí profil v místním adresáři webu?"; +$a->strings["No"] = "Ne"; +$a->strings["Publish your default profile in the global social directory?"] = "Publikovat Váš výchozí profil v globální sociálním adresáři?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem výchozím profilu?"; +$a->strings["Hide your profile details from unknown viewers?"] = "Skrýt Vaše profilové detaily před neznámými uživateli?"; +$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = ""; +$a->strings["Allow friends to post to your profile page?"] = "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?"; +$a->strings["Allow friends to tag your posts?"] = "Povolit přátelům označovat Vaše příspěvky?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?"; +$a->strings["Permit unknown people to send you private mail?"] = "Povolit neznámým lidem Vám zasílat soukromé zprávy?"; +$a->strings["Profile is not published."] = "Profil není zveřejněn."; +$a->strings["Your Identity Address is"] = "Vaše adresa identity je"; +$a->strings["Automatically expire posts after this many days:"] = "Automaticky expirovat příspěvky po zadaném počtu dní:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány"; +$a->strings["Advanced expiration settings"] = "Pokročilé nastavení expirací"; +$a->strings["Advanced Expiration"] = "Nastavení expirací"; +$a->strings["Expire posts:"] = "Expirovat příspěvky:"; +$a->strings["Expire personal notes:"] = "Expirovat osobní poznámky:"; +$a->strings["Expire starred posts:"] = "Expirovat příspěvky s hvězdou:"; +$a->strings["Expire photos:"] = "Expirovat fotografie:"; +$a->strings["Only expire posts by others:"] = "Přízpěvky expirovat pouze ostatními:"; +$a->strings["Account Settings"] = "Nastavení účtu"; +$a->strings["Password Settings"] = "Nastavení hesla"; +$a->strings["New Password:"] = "Nové heslo:"; +$a->strings["Confirm:"] = "Potvrďte:"; +$a->strings["Leave password fields blank unless changing"] = "Pokud nechcete změnit heslo, položku hesla nevyplňujte"; +$a->strings["Current Password:"] = "Stávající heslo:"; +$a->strings["Your current password to confirm the changes"] = "Vaše stávající heslo k potvrzení změn"; +$a->strings["Password:"] = "Heslo: "; +$a->strings["Basic Settings"] = "Základní nastavení"; +$a->strings["Full Name:"] = "Celé jméno:"; +$a->strings["Email Address:"] = "E-mailová adresa:"; +$a->strings["Your Timezone:"] = "Vaše časové pásmo:"; +$a->strings["Default Post Location:"] = "Výchozí umístění příspěvků:"; +$a->strings["Use Browser Location:"] = "Používat umístění dle prohlížeče:"; +$a->strings["Security and Privacy Settings"] = "Nastavení zabezpečení a soukromí"; +$a->strings["Maximum Friend Requests/Day:"] = "Maximální počet žádostí o přátelství za den:"; +$a->strings["(to prevent spam abuse)"] = "(Aby se zabránilo spamu)"; +$a->strings["Default Post Permissions"] = "Výchozí oprávnění pro příspěvek"; +$a->strings["(click to open/close)"] = "(Klikněte pro otevření/zavření)"; +$a->strings["Show to Groups"] = "Zobrazit ve Skupinách"; +$a->strings["Show to Contacts"] = "Zobrazit v Kontaktech"; +$a->strings["Default Private Post"] = "Výchozí Soukromý příspěvek"; +$a->strings["Default Public Post"] = "Výchozí Veřejný příspěvek"; +$a->strings["Default Permissions for New Posts"] = "Výchozí oprávnění pro nové příspěvky"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximum soukromých zpráv od neznámých lidí:"; +$a->strings["Notification Settings"] = "Nastavení notifikací"; +$a->strings["By default post a status message when:"] = "Defaultně posílat statusové zprávy když:"; +$a->strings["accepting a friend request"] = "akceptuji požadavek na přátelství"; +$a->strings["joining a forum/community"] = "připojující se k fóru/komunitě"; +$a->strings["making an interesting profile change"] = "provedení zajímavé profilové změny"; +$a->strings["Send a notification email when:"] = "Poslat notifikaci e-mailem, když"; +$a->strings["You receive an introduction"] = "obdržíte žádost o propojení"; +$a->strings["Your introductions are confirmed"] = "Vaše žádosti jsou potvrzeny"; +$a->strings["Someone writes on your profile wall"] = "někdo Vám napíše na Vaši profilovou stránku"; +$a->strings["Someone writes a followup comment"] = "někdo Vám napíše následný komentář"; +$a->strings["You receive a private message"] = "obdržíte soukromou zprávu"; +$a->strings["You receive a friend suggestion"] = "Obdržel jste návrh přátelství"; +$a->strings["You are tagged in a post"] = "Jste označen v příspěvku"; +$a->strings["You are poked/prodded/etc. in a post"] = "Byl Jste šťouchnout v příspěvku"; +$a->strings["Text-only notification emails"] = "Pouze textové notifikační e-maily"; +$a->strings["Send text only notification emails, without the html part"] = ""; +$a->strings["Advanced Account/Page Type Settings"] = "Pokročilé nastavení účtu/stránky"; +$a->strings["Change the behaviour of this account for special situations"] = "Změnit chování tohoto účtu ve speciálních situacích"; +$a->strings["Relocate"] = "Změna umístění"; +$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko."; +$a->strings["Resend relocate message to contacts"] = "Znovu odeslat správu o změně umístění Vašim kontaktům"; +$a->strings["This introduction has already been accepted."] = "Toto pozvání již bylo přijato."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Adresa profilu není platná nebo neobsahuje profilové informace"; +$a->strings["Warning: profile location has no identifiable owner name."] = "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka"; +$a->strings["Warning: profile location has no profile photo."] = "Varování: umístění profilu nemá žádnou profilovou fotografii."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d požadovaný parametr nebyl nalezen na daném místě", + 1 => "%d požadované parametry nebyly nalezeny na daném místě", + 2 => "%d požadované parametry nebyly nalezeny na daném místě", +); +$a->strings["Introduction complete."] = "Představení dokončeno."; +$a->strings["Unrecoverable protocol error."] = "Neopravitelná chyba protokolu"; +$a->strings["Profile unavailable."] = "Profil není k dispozici."; +$a->strings["%s has received too many connection requests today."] = "%s dnes obdržel příliš mnoho požadavků na připojení."; +$a->strings["Spam protection measures have been invoked."] = "Ochrana proti spamu byla aktivována"; +$a->strings["Friends are advised to please try again in 24 hours."] = "Přátelům se doporučuje to zkusit znovu za 24 hodin."; +$a->strings["Invalid locator"] = "Neplatný odkaz"; +$a->strings["Invalid email address."] = "Neplatná emailová adresa"; +$a->strings["This account has not been configured for email. Request failed."] = "Tento účet nebyl nastaven pro email. Požadavek nesplněn."; +$a->strings["Unable to resolve your name at the provided location."] = "Nepodařilo se zjistit Vaše jméno na zadané adrese."; +$a->strings["You have already introduced yourself here."] = "Již jste se zde zavedli."; +$a->strings["Apparently you are already friends with %s."] = "Zřejmě jste již přátelé se %s."; +$a->strings["Invalid profile URL."] = "Neplatné URL profilu."; +$a->strings["Disallowed profile URL."] = "Nepovolené URL profilu."; +$a->strings["Your introduction has been sent."] = "Vaše žádost o propojení byla odeslána."; +$a->strings["Please login to confirm introduction."] = "Prosím přihlašte se k potvrzení žádosti o propojení."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Jste přihlášeni pod nesprávnou identitou Prosím, přihlaste se do tohoto profilu."; +$a->strings["Hide this contact"] = "Skrýt tento kontakt"; +$a->strings["Welcome home %s."] = "Vítejte doma %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Prosím potvrďte Vaši žádost o propojení %s."; +$a->strings["Confirm"] = "Potvrdit"; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sí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."] = "Pokud ještě nejste členem svobodné sociální sítě, následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes."; +$a->strings["Friend/Connection Request"] = "Požadavek o přátelství / kontaktování"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Odpovězte, prosím, následující:"; +$a->strings["Does %s know you?"] = "Zná Vás uživatel %s ?"; +$a->strings["Add a personal note:"] = "Přidat osobní poznámku:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federativní Sociální Web"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - prosím nepoužívejte tento formulář. Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole."; +$a->strings["Your Identity Address:"] = "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"."; +$a->strings["Submit Request"] = "Odeslat žádost"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = ""; +$a->strings["Your registration can not be processed."] = "Vaši registraci nelze zpracovat."; +$a->strings["Your registration is pending approval by the site owner."] = "Vaše registrace čeká na schválení vlastníkem serveru."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to zítra znovu."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky."; +$a->strings["Your OpenID (optional): "] = "Vaše OpenID (nepovinné): "; +$a->strings["Include your profile in member directory?"] = "Toto je Váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu."; +$a->strings["Membership on this site is by invitation only."] = "Členství na tomto webu je pouze na pozvání."; +$a->strings["Your invitation ID: "] = "VaÅ¡e pozvání ID:"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "VaÅ¡e celé jméno (např. Jan Novák):"; +$a->strings["Your Email Address: "] = "VaÅ¡e e-mailová adresa:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. VaÅ¡e profilová adresa na tomto webu pak bude \"přezdívka@\$sitename\"."; +$a->strings["Choose a nickname: "] = "Vyberte přezdívku:"; +$a->strings["Register"] = "Registrovat"; +$a->strings["Import"] = "Import"; +$a->strings["Import your profile to this friendica instance"] = "Import VaÅ¡eho profilu do této friendica instance"; +$a->strings["System down for maintenance"] = "Systém vypnut z důvodů údržby"; +$a->strings["Search"] = "Vyhledávání"; +$a->strings["Global Directory"] = "Globální adresář"; +$a->strings["Find on this site"] = "Nalézt na tomto webu"; +$a->strings["Site Directory"] = "Adresář serveru"; +$a->strings["Age: "] = "Věk: "; +$a->strings["Gender: "] = "Pohlaví: "; +$a->strings["Gender:"] = "Pohlaví:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Domácí stránka:"; +$a->strings["About:"] = "O mě:"; +$a->strings["No entries (some entries may be hidden)."] = "Žádné záznamy (některé položky mohou být skryty)."; +$a->strings["No potential page delegates located."] = "Žádní potenciální delegáti stránky nenalezeni."; +$a->strings["Delegate Page Management"] = "Správa delegátů stránky"; +$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."] = "Delegáti jsou schopni řídit vÅ¡echny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte.."; +$a->strings["Existing Page Managers"] = "Stávající správci stránky"; +$a->strings["Existing Page Delegates"] = "Stávající delegáti stránky "; +$a->strings["Potential Delegates"] = "Potenciální delegáti"; +$a->strings["Add"] = "Přidat"; +$a->strings["No entries."] = "Žádné záznamy."; +$a->strings["Common Friends"] = "Společní přátelé"; +$a->strings["No contacts in common."] = "Žádné společné kontakty."; +$a->strings["Export account"] = "Exportovat účet"; +$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."] = "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server."; +$a->strings["Export all"] = "Exportovat vÅ¡e"; +$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)"] = "Exportujte své informace k účtu, kontakty a vÅ¡e své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)"; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s je právě %2\$s"; +$a->strings["Mood"] = "Nálada"; +$a->strings["Set your current mood and tell your friends"] = "Nastavte svou aktuální náladu a řekněte to VaÅ¡im přátelům"; +$a->strings["Do you really want to delete this suggestion?"] = "Opravdu chcete smazat tento návrh?"; +$a->strings["Friend Suggestions"] = "Návrhy přátel"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin."; +$a->strings["Ignore/Hide"] = "Ignorovat / skrýt"; +$a->strings["Profile deleted."] = "Profil smazán."; +$a->strings["Profile-"] = "Profil-"; +$a->strings["New profile created."] = "Nový profil vytvořen."; +$a->strings["Profile unavailable to clone."] = "Profil není možné naklonovat."; +$a->strings["Profile Name is required."] = "Jméno profilu je povinné."; +$a->strings["Marital Status"] = "Rodinný Stav"; +$a->strings["Romantic Partner"] = "Romatický partner"; +$a->strings["Likes"] = "Libí se mi"; +$a->strings["Dislikes"] = "Nelibí se mi"; +$a->strings["Work/Employment"] = "Práce/Zaměstnání"; +$a->strings["Religion"] = "Náboženství"; +$a->strings["Political Views"] = "Politické přesvědčení"; +$a->strings["Gender"] = "Pohlaví"; +$a->strings["Sexual Preference"] = "Sexuální orientace"; +$a->strings["Homepage"] = "Domácí stránka"; +$a->strings["Interests"] = "Zájmy"; +$a->strings["Address"] = "Adresa"; +$a->strings["Location"] = "Lokace"; +$a->strings["Profile updated."] = "Profil aktualizován."; +$a->strings[" and "] = " a "; +$a->strings["public profile"] = "veřejný profil"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s změnil %2\$s na “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = " - NavÅ¡tivte %2\$s uživatele %1\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s aktualizoval %2\$s, změnou %3\$s."; +$a->strings["Hide contacts and friends:"] = "Skrýt kontakty a přátele:"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Skrýt u tohoto profilu VaÅ¡e kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?"; +$a->strings["Edit Profile Details"] = "Upravit podrobnosti profilu "; +$a->strings["Change Profile Photo"] = "Změna Profilové fotky"; +$a->strings["View this profile"] = "Zobrazit tento profil"; +$a->strings["Create a new profile using these settings"] = "Vytvořit nový profil pomocí tohoto nastavení"; +$a->strings["Clone this profile"] = "Klonovat tento profil"; +$a->strings["Delete this profile"] = "Smazat tento profil"; +$a->strings["Basic information"] = "Základní informace"; +$a->strings["Profile picture"] = "Profilový obrázek"; +$a->strings["Preferences"] = "Nastavení"; +$a->strings["Status information"] = "Statusové informace"; +$a->strings["Additional information"] = "Dodatečné informace"; +$a->strings["Profile Name:"] = "Jméno profilu:"; +$a->strings["Your Full Name:"] = "VaÅ¡e celé jméno:"; +$a->strings["Title/Description:"] = "Název / Popis:"; +$a->strings["Your Gender:"] = "VaÅ¡e pohlaví:"; +$a->strings["Birthday (%s):"] = "Narozeniny uživatele (%s):"; +$a->strings["Street Address:"] = "Ulice:"; +$a->strings["Locality/City:"] = "Město:"; +$a->strings["Postal/Zip Code:"] = "PSČ:"; +$a->strings["Country:"] = "Země:"; +$a->strings["Region/State:"] = "Region / stát:"; +$a->strings[" Marital Status:"] = " Rodinný stav:"; +$a->strings["Who: (if applicable)"] = "Kdo: (pokud je možné)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Příklady: jan123, Jan Novák, jan@seznam.cz"; +$a->strings["Since [date]:"] = "Od [data]:"; +$a->strings["Sexual Preference:"] = "Sexuální preference:"; +$a->strings["Homepage URL:"] = "Odkaz na domovskou stránku:"; +$a->strings["Hometown:"] = "Rodné město"; +$a->strings["Political Views:"] = "Politické přesvědčení:"; +$a->strings["Religious Views:"] = "Náboženské přesvědčení:"; +$a->strings["Public Keywords:"] = "Veřejná klíčová slova:"; +$a->strings["Private Keywords:"] = "Soukromá klíčová slova:"; +$a->strings["Likes:"] = "Líbí se:"; +$a->strings["Dislikes:"] = "Nelibí se:"; +$a->strings["Example: fishing photography software"] = "Příklad: fishing photography software"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)"; +$a->strings["Tell us about yourself..."] = "Řekněte nám něco o sobě ..."; +$a->strings["Hobbies/Interests"] = "Koníčky/zájmy"; +$a->strings["Contact information and Social Networks"] = "Kontaktní informace a sociální sítě"; +$a->strings["Musical interests"] = "Hudební vkus"; +$a->strings["Books, literature"] = "Knihy, literatura"; +$a->strings["Television"] = "Televize"; +$a->strings["Film/dance/culture/entertainment"] = "Film/tanec/kultura/zábava"; +$a->strings["Love/romance"] = "Láska/romantika"; +$a->strings["Work/employment"] = "Práce/zaměstnání"; +$a->strings["School/education"] = "Å kola/vzdělání"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Toto je váš veřejný profil.
Ten může být viditelný kýmkoliv na internetu."; +$a->strings["Edit/Manage Profiles"] = "Upravit / Spravovat profily"; +$a->strings["Change profile photo"] = "Změnit profilovou fotografii"; +$a->strings["Create New Profile"] = "Vytvořit nový profil"; +$a->strings["Profile Image"] = "Profilový obrázek"; +$a->strings["visible to everybody"] = "viditelné pro všechny"; +$a->strings["Edit visibility"] = "Upravit viditelnost"; +$a->strings["Item not found"] = "Položka nenalezena"; +$a->strings["Edit post"] = "Upravit příspěvek"; +$a->strings["upload photo"] = "nahrát fotky"; +$a->strings["Attach file"] = "Přiložit soubor"; +$a->strings["attach file"] = "přidat soubor"; +$a->strings["web link"] = "webový odkaz"; +$a->strings["Insert video link"] = "Zadejte odkaz na video"; +$a->strings["video link"] = "odkaz na video"; +$a->strings["Insert audio link"] = "Zadejte odkaz na zvukový záznam"; +$a->strings["audio link"] = "odkaz na audio"; +$a->strings["Set your location"] = "Nastavte vaši polohu"; +$a->strings["set location"] = "nastavit místo"; +$a->strings["Clear browser location"] = "Odstranit adresu v prohlížeči"; +$a->strings["clear location"] = "vymazat místo"; +$a->strings["Permission settings"] = "Nastavení oprávnění"; +$a->strings["CC: email addresses"] = "skrytá kopie: e-mailové adresy"; +$a->strings["Public post"] = "Veřejný příspěvek"; +$a->strings["Set title"] = "Nastavit titulek"; +$a->strings["Categories (comma-separated list)"] = "Kategorie (čárkou oddělený seznam)"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Příklad: bob@example.com, mary@example.com"; +$a->strings["This is Friendica, version"] = "Toto je Friendica, verze"; +$a->strings["running at web location"] = "běžící na webu"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Pro získání dalších informací o projektu Friendica navštivte prosím Friendica.com."; +$a->strings["Bug reports and issues: please visit"] = "Pro hlášení chyb a námětů na změny navštivte:"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com"; +$a->strings["Installed plugins/addons/apps:"] = "Instalované pluginy/doplňky/aplikace:"; +$a->strings["No installed plugins/addons/apps"] = "Nejsou žádné nainstalované doplňky/aplikace"; +$a->strings["Authorize application connection"] = "Povolit připojení aplikacím"; +$a->strings["Return to your app and insert this Securty Code:"] = "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:"; +$a->strings["Please login to continue."] = "Pro pokračování se prosím přihlaste."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?"; +$a->strings["Remote privacy information not available."] = "Vzdálené soukromé informace nejsou k dispozici."; +$a->strings["Visible to:"] = "Viditelné pro:"; +$a->strings["Personal Notes"] = "Osobní poznámky"; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Time Conversion"] = "Časová konverze"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách"; +$a->strings["UTC time: %s"] = "UTC čas: %s"; +$a->strings["Current timezone: %s"] = "Aktuální časové pásmo: %s"; +$a->strings["Converted localtime: %s"] = "Převedený lokální čas : %s"; +$a->strings["Please select your timezone:"] = "Prosím, vyberte své časové pásmo:"; +$a->strings["Poke/Prod"] = "Šťouchanec"; +$a->strings["poke, prod or do other things to somebody"] = "někoho šťouchnout nebo mu provést jinou věc"; +$a->strings["Recipient"] = "Příjemce"; +$a->strings["Choose what you wish to do to recipient"] = "Vyberte, co si přejete příjemci udělat"; +$a->strings["Make this post private"] = "Změnit tento příspěvek na soukromý"; +$a->strings["Total invitation limit exceeded."] = "Celkový limit pozvánek byl překročen"; +$a->strings["%s : Not a valid email address."] = "%s : není platná e-mailová adresa."; +$a->strings["Please join us on Friendica"] = "Prosím přidejte se k nám na Friendice"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu."; +$a->strings["%s : Message delivery failed."] = "%s : Doručení zprávy se nezdařilo."; +$a->strings["%d message sent."] = array( + 0 => "%d zpráva odeslána.", + 1 => "%d zprávy odeslány.", + 2 => "%d zprávy odeslány.", +); +$a->strings["You have no more invitations available"] = "Nemáte k dispozici žádné další pozvánky"; +$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."] = "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru."; +$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 servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy."; +$a->strings["Send invitations"] = "Poslat pozvánky"; +$a->strings["Enter email addresses, one per line:"] = "Zadejte e-mailové adresy, jednu na řádek:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Budete muset zadat kód této pozvánky: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com"; +$a->strings["Photo Albums"] = "Fotoalba"; +$a->strings["Contact Photos"] = "Fotogalerie kontaktu"; +$a->strings["Upload New Photos"] = "Nahrát nové fotografie"; +$a->strings["Contact information unavailable"] = "Kontakt byl zablokován"; +$a->strings["Album not found."] = "Album nenalezeno."; +$a->strings["Delete Album"] = "Smazat album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Opravdu chcete smazat toto foto album a všechny jeho fotografie?"; +$a->strings["Delete Photo"] = "Smazat fotografii"; +$a->strings["Do you really want to delete this photo?"] = "Opravdu chcete smazat tuto fotografii?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s byl označen v %2\$s uživatelem %3\$s"; +$a->strings["a photo"] = "fotografie"; +$a->strings["Image exceeds size limit of "] = "Velikost obrázku překračuje limit velikosti"; +$a->strings["Image file is empty."] = "Soubor obrázku je prázdný."; +$a->strings["No photos selected"] = "Není vybrána žádná fotografie"; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií."; +$a->strings["Upload Photos"] = "Nahrání fotografií "; +$a->strings["New album name: "] = "Název nového alba: "; +$a->strings["or existing album name: "] = "nebo stávající název alba: "; +$a->strings["Do not show a status post for this upload"] = "Nezobrazovat stav pro tento upload"; +$a->strings["Permissions"] = "Oprávnění:"; +$a->strings["Private Photo"] = "Soukromé Fotografie"; +$a->strings["Public Photo"] = "Veřejné Fotografie"; +$a->strings["Edit Album"] = "Edituj album"; +$a->strings["Show Newest First"] = "Zobrazit nejprve nejnovější:"; +$a->strings["Show Oldest First"] = "Zobrazit nejprve nejstarší:"; +$a->strings["View Photo"] = "Zobraz fotografii"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen."; +$a->strings["Photo not available"] = "Fotografie není k dispozici"; +$a->strings["View photo"] = "Zobrazit obrázek"; +$a->strings["Edit photo"] = "Editovat fotografii"; +$a->strings["Use as profile photo"] = "Použít jako profilovou fotografii"; +$a->strings["View Full Size"] = "Zobrazit v plné velikosti"; +$a->strings["Tags: "] = "Štítky: "; +$a->strings["[Remove any tag]"] = "[Odstranit všechny štítky]"; +$a->strings["Rotate CW (right)"] = "Rotovat po směru hodinových ručiček (doprava)"; +$a->strings["Rotate CCW (left)"] = "Rotovat proti směru hodinových ručiček (doleva)"; +$a->strings["New album name"] = "Nové jméno alba"; +$a->strings["Caption"] = "Titulek"; +$a->strings["Add a Tag"] = "Přidat štítek"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Private photo"] = "Soukromé fotografie"; +$a->strings["Public photo"] = "Veřejné fotografie"; +$a->strings["Share"] = "Sdílet"; +$a->strings["Recent Photos"] = "Aktuální fotografie"; +$a->strings["Account approved."] = "Účet schválen."; +$a->strings["Registration revoked for %s"] = "Registrace zrušena pro %s"; +$a->strings["Please login."] = "Přihlaste se, prosím."; +$a->strings["Move account"] = "Přesunout účet"; +$a->strings["You can import an account from another Friendica server."] = "Můžete importovat účet z jiného Friendica serveru."; +$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."] = "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory"; +$a->strings["Account file"] = "Soubor s účtem"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\""; +$a->strings["Item not available."] = "Položka není k dispozici."; +$a->strings["Item was not found."] = "Položka nebyla nalezena."; +$a->strings["Delete this item?"] = "Odstranit tuto položku?"; +$a->strings["show fewer"] = "zobrazit méně"; +$a->strings["Update %s failed. See error logs."] = "Aktualizace %s selhala. Zkontrolujte protokol chyb."; +$a->strings["Create a New Account"] = "Vytvořit nový účet"; +$a->strings["Logout"] = "Odhlásit se"; +$a->strings["Login"] = "Přihlásit se"; +$a->strings["Nickname or Email address: "] = "Přezdívka nebo e-mailová adresa:"; +$a->strings["Password: "] = "Heslo: "; +$a->strings["Remember me"] = "Pamatuj si mne"; +$a->strings["Or login using OpenID: "] = "Nebo přihlášení pomocí OpenID: "; +$a->strings["Forgot your password?"] = "Zapomněli jste své heslo?"; +$a->strings["Website Terms of Service"] = "Podmínky použití serveru"; +$a->strings["terms of service"] = "podmínky použití"; +$a->strings["Website Privacy Policy"] = "Pravidla ochrany soukromí serveru"; +$a->strings["privacy policy"] = "Ochrana soukromí"; +$a->strings["Requested account is not available."] = "Požadovaný účet není dostupný."; +$a->strings["Edit profile"] = "Upravit profil"; +$a->strings["Message"] = "Zpráva"; +$a->strings["Profiles"] = "Profily"; +$a->strings["Manage/edit profiles"] = "Spravovat/upravit profily"; +$a->strings["Network:"] = "Síť:"; +$a->strings["g A l F d"] = "g A l F d"; +$a->strings["F d"] = "d. F"; +$a->strings["[today]"] = "[Dnes]"; +$a->strings["Birthday Reminders"] = "Připomínka narozenin"; +$a->strings["Birthdays this week:"] = "Narozeniny tento týden:"; +$a->strings["[No description]"] = "[Žádný popis]"; +$a->strings["Event Reminders"] = "Připomenutí událostí"; +$a->strings["Events this week:"] = "Události tohoto týdne:"; +$a->strings["Status"] = "Stav"; +$a->strings["Status Messages and Posts"] = "Statusové zprávy a příspěvky "; +$a->strings["Profile Details"] = "Detaily profilu"; +$a->strings["Videos"] = "Videa"; +$a->strings["Events and Calendar"] = "Události a kalendář"; +$a->strings["Only You Can See This"] = "Toto můžete vidět jen Vy"; +$a->strings["This entry was edited"] = "Tento záznam byl editován"; +$a->strings["ignore thread"] = "ignorovat vlákno"; +$a->strings["unignore thread"] = "přestat ignorovat vlákno"; +$a->strings["toggle ignore status"] = "přepnout stav Ignorování"; +$a->strings["ignored"] = "ignorován"; +$a->strings["Categories:"] = "Kategorie:"; +$a->strings["Filed under:"] = "Vyplněn pod:"; +$a->strings["via"] = "přes"; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tThe friendica vývojáři uvolnili nedávno aktualizaci %s,\n\t\t\tale při pokusu o její instalaci se něco velmi nepovedlo.\n\t\t\tJe třeba to opravit a já to sám nedokážu. Prosím kontaktuj\n\t\t\tfriendica vývojáře, pokud mi s tím nepomůžeš ty sám. Moje databáze může být poškozena."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Chybová zpráva je\n[pre]%s[/pre]"; +$a->strings["Errors encountered creating database tables."] = "Při vytváření databázových tabulek došlo k chybám."; +$a->strings["Errors encountered performing database changes."] = "Při provádění databázových změn došlo k chybám."; +$a->strings["Logged out."] = "Odhlášen."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. "; +$a->strings["The error message was:"] = "Chybová zpráva byla:"; +$a->strings["Add New Contact"] = "Přidat nový kontakt"; +$a->strings["Enter address or web location"] = "Zadejte adresu nebo umístění webu"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Příklad: jan@příklad.cz, http://příklad.cz/jana"; +$a->strings["%d invitation available"] = array( + 0 => "Pozvánka %d k dispozici", + 1 => "Pozvánky %d k dispozici", + 2 => "Pozvánky %d k dispozici", +); +$a->strings["Find People"] = "Nalézt lidi"; +$a->strings["Enter name or interest"] = "Zadejte jméno nebo zájmy"; +$a->strings["Connect/Follow"] = "Připojit / Následovat"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Příklady: Robert Morgenstein, rybaření"; +$a->strings["Similar Interests"] = "Podobné zájmy"; +$a->strings["Random Profile"] = "Náhodný Profil"; +$a->strings["Invite Friends"] = "Pozvat přátele"; +$a->strings["Networks"] = "Sítě"; +$a->strings["All Networks"] = "Všechny sítě"; +$a->strings["Saved Folders"] = "Uložené složky"; +$a->strings["Everything"] = "Všechno"; +$a->strings["Categories"] = "Kategorie"; +$a->strings["General Features"] = "Obecné funkčnosti"; +$a->strings["Multiple Profiles"] = "Vícenásobné profily"; +$a->strings["Ability to create multiple profiles"] = "Schopnost vytvořit vícenásobné profily"; +$a->strings["Post Composition Features"] = "Nastavení vytváření příspěvků"; +$a->strings["Richtext Editor"] = "Richtext Editor"; +$a->strings["Enable richtext editor"] = "Povolit richtext editor"; +$a->strings["Post Preview"] = "Náhled příspěvku"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Povolit náhledy příspěvků a komentářů před jejich zveřejněním"; +$a->strings["Auto-mention Forums"] = "Automaticky zmíněná Fóra"; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně"; +$a->strings["Network Sidebar Widgets"] = "Síťové postranní widgety"; +$a->strings["Search by Date"] = "Vyhledávat dle Data"; +$a->strings["Ability to select posts by date ranges"] = "Možnost označit příspěvky dle časového intervalu"; +$a->strings["Group Filter"] = "Skupinový Filtr"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny"; +$a->strings["Network Filter"] = "Síťový Filtr"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě"; +$a->strings["Save search terms for re-use"] = "Uložit kritéria vyhledávání pro znovupoužití"; +$a->strings["Network Tabs"] = "Síťové záložky"; +$a->strings["Network Personal Tab"] = "Osobní síťový záložka "; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval "; +$a->strings["Network New Tab"] = "Nová záložka síť"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)"; +$a->strings["Network Shared Links Tab"] = "záložka Síťové sdílené odkazy "; +$a->strings["Enable tab to display only Network posts with links in them"] = "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně"; +$a->strings["Post/Comment Tools"] = "Nástroje Příspěvků/Komentářů"; +$a->strings["Multiple Deletion"] = "Násobné mazání"; +$a->strings["Select and delete multiple posts/comments at once"] = "Označit a smazat více "; +$a->strings["Edit Sent Posts"] = "Editovat Odeslané příspěvky"; +$a->strings["Edit and correct posts and comments after sending"] = "Editovat a opravit příspěvky a komentáře po odeslání"; +$a->strings["Tagging"] = "Štítkování"; +$a->strings["Ability to tag existing posts"] = "Schopnost přidat štítky ke stávajícím příspvěkům"; +$a->strings["Post Categories"] = "Kategorie příspěvků"; +$a->strings["Add categories to your posts"] = "Přidat kategorie k Vašim příspěvkům"; +$a->strings["Ability to file posts under folders"] = "Možnost řadit příspěvky do složek"; +$a->strings["Dislike Posts"] = "Označit příspěvky jako neoblíbené"; +$a->strings["Ability to dislike posts/comments"] = "Možnost označit příspěvky/komentáře jako neoblíbené"; +$a->strings["Star Posts"] = "Příspěvky s hvězdou"; +$a->strings["Ability to mark special posts with a star indicator"] = "Možnost označit příspěvky s indikátorem hvězdy"; +$a->strings["Mute Post Notifications"] = "Utlumit upozornění na přísvěvky"; +$a->strings["Ability to mute notifications for a thread"] = "Možnost stlumit upozornění pro vlákno"; +$a->strings["Connect URL missing."] = "Chybí URL adresa."; +$a->strings["This site is not configured to allow communications with other networks."] = "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Nenalezen žádný kompatibilní komunikační protokol nebo kanál."; +$a->strings["The profile address specified does not provide adequate information."] = "Uvedená adresa profilu neposkytuje dostatečné informace."; +$a->strings["An author or name was not found."] = "Autor nebo jméno nenalezeno"; +$a->strings["No browser URL could be matched to this address."] = "Této adrese neodpovídá žádné URL prohlížeče."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem."; +$a->strings["Use mailto: in front of address to force email check."] = "Použite mailo: před adresou k vynucení emailové kontroly."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Zadaná adresa profilu patří do sítě, která byla na tomto serveru zakázána."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení."; +$a->strings["Unable to retrieve contact information."] = "Nepodařilo se získat kontaktní informace."; +$a->strings["following"] = "následující"; +$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."] = "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění může ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím, další skupinu s jiným názvem."; +$a->strings["Default privacy group for new contacts"] = "Defaultní soukromá skrupina pro nové kontakty."; +$a->strings["Everybody"] = "Všichni"; +$a->strings["edit"] = "editovat"; +$a->strings["Edit group"] = "Editovat skupinu"; +$a->strings["Create a new group"] = "Vytvořit novou skupinu"; +$a->strings["Contacts not in any group"] = "Kontakty, které nejsou v žádné skupině"; +$a->strings["Miscellaneous"] = "Různé"; +$a->strings["year"] = "rok"; +$a->strings["month"] = "měsíc"; +$a->strings["day"] = "den"; +$a->strings["never"] = "nikdy"; +$a->strings["less than a second ago"] = "méně než před sekundou"; +$a->strings["years"] = "let"; +$a->strings["months"] = "měsíců"; +$a->strings["week"] = "týdnem"; +$a->strings["weeks"] = "týdny"; +$a->strings["days"] = "dnů"; +$a->strings["hour"] = "hodina"; +$a->strings["hours"] = "hodin"; +$a->strings["minute"] = "minuta"; +$a->strings["minutes"] = "minut"; +$a->strings["second"] = "sekunda"; +$a->strings["seconds"] = "sekund"; +$a->strings["%1\$d %2\$s ago"] = "před %1\$d %2\$s"; +$a->strings["%s's birthday"] = "%s má narozeniny"; +$a->strings["Happy Birthday %s"] = "Veselé narozeniny %s"; +$a->strings["Visible to everybody"] = "Viditelné pro všechny"; +$a->strings["show"] = "zobrazit"; +$a->strings["don't show"] = "nikdy nezobrazit"; +$a->strings["[no subject]"] = "[bez předmětu]"; +$a->strings["stopped following"] = "následování zastaveno"; +$a->strings["Poke"] = "Šťouchnout"; +$a->strings["View Status"] = "Zobrazit Status"; +$a->strings["View Profile"] = "Zobrazit Profil"; +$a->strings["View Photos"] = "Zobrazit Fotky"; +$a->strings["Network Posts"] = "Zobrazit Příspěvky sítě"; +$a->strings["Edit Contact"] = "Editovat Kontakty"; +$a->strings["Drop Contact"] = "Odstranit kontakt"; +$a->strings["Send PM"] = "Poslat soukromou zprávu"; +$a->strings["Welcome "] = "Vítejte "; +$a->strings["Please upload a profile photo."] = "Prosím nahrejte profilovou fotografii"; +$a->strings["Welcome back "] = "Vítejte zpět "; +$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."] = "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním."; +$a->strings["event"] = "událost"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s šťouchnul %2\$s"; +$a->strings["poked"] = "šťouchnut"; +$a->strings["post/item"] = "příspěvek/položka"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "uživatel %1\$s označil %2\$s's %3\$s jako oblíbeného"; +$a->strings["remove"] = "odstranit"; +$a->strings["Delete Selected Items"] = "Smazat vybrané položky"; +$a->strings["Follow Thread"] = "Následovat vlákno"; +$a->strings["%s likes this."] = "%s se to líbí."; +$a->strings["%s doesn't like this."] = "%s se to nelíbí."; +$a->strings["%2\$d people like this"] = "%2\$d lidem se to líbí"; +$a->strings["%2\$d people don't like this"] = "%2\$d lidem se to nelíbí"; +$a->strings["and"] = "a"; +$a->strings[", and %d other people"] = ", a %d dalších lidí"; +$a->strings["%s like this."] = "%s se to líbí."; +$a->strings["%s don't like this."] = "%s se to nelíbí."; +$a->strings["Visible to everybody"] = "Viditelné pro všechny"; +$a->strings["Please enter a video link/URL:"] = "Prosím zadejte URL adresu videa:"; +$a->strings["Please enter an audio link/URL:"] = "Prosím zadejte URL adresu zvukového záznamu:"; +$a->strings["Tag term:"] = "Štítek:"; +$a->strings["Where are you right now?"] = "Kde právě jste?"; +$a->strings["Delete item(s)?"] = "Smazat položku(y)?"; +$a->strings["Post to Email"] = "Poslat příspěvek na e-mail"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Kontektory deaktivovány, od \"%s\" je aktivován."; +$a->strings["permissions"] = "oprávnění"; +$a->strings["Post to Groups"] = "Zveřejnit na Groups"; +$a->strings["Post to Contacts"] = "Zveřejnit na Groups"; +$a->strings["Private post"] = "Soukromý příspěvek"; +$a->strings["view full size"] = "zobrazit v plné velikosti"; +$a->strings["newer"] = "novější"; +$a->strings["older"] = "starší"; +$a->strings["prev"] = "předchozí"; +$a->strings["first"] = "první"; +$a->strings["last"] = "poslední"; +$a->strings["next"] = "další"; +$a->strings["No contacts"] = "Žádné kontakty"; +$a->strings["%d Contact"] = array( + 0 => "%d kontakt", + 1 => "%d kontaktů", + 2 => "%d kontaktů", +); +$a->strings["poke"] = "šťouchnout"; +$a->strings["ping"] = "cinknout"; +$a->strings["pinged"] = "cinkut"; +$a->strings["prod"] = "pobídnout"; +$a->strings["prodded"] = "pobídnut"; +$a->strings["slap"] = "dát facku"; +$a->strings["slapped"] = "být uhozen"; +$a->strings["finger"] = "osahávat"; +$a->strings["fingered"] = "osaháván"; +$a->strings["rebuff"] = "odmítnout"; +$a->strings["rebuffed"] = "odmítnut"; +$a->strings["happy"] = "šťasný"; +$a->strings["sad"] = "smutný"; +$a->strings["mellow"] = "jemný"; +$a->strings["tired"] = "unavený"; +$a->strings["perky"] = "emergický"; +$a->strings["angry"] = "nazlobený"; +$a->strings["stupified"] = "otupen"; +$a->strings["puzzled"] = "popletený"; +$a->strings["interested"] = "zajímavý"; +$a->strings["bitter"] = "hořký"; +$a->strings["cheerful"] = "radnostný"; +$a->strings["alive"] = "naživu"; +$a->strings["annoyed"] = "otráven"; +$a->strings["anxious"] = "znepokojený"; +$a->strings["cranky"] = "mrzutý"; +$a->strings["disturbed"] = "vyrušen"; +$a->strings["frustrated"] = "frustrovaný"; +$a->strings["motivated"] = "motivovaný"; +$a->strings["relaxed"] = "uvolněný"; +$a->strings["surprised"] = "překvapený"; +$a->strings["Monday"] = "Pondělí"; +$a->strings["Tuesday"] = "Úterý"; +$a->strings["Wednesday"] = "Středa"; +$a->strings["Thursday"] = "Čtvrtek"; +$a->strings["Friday"] = "Pátek"; +$a->strings["Saturday"] = "Sobota"; +$a->strings["Sunday"] = "Neděle"; +$a->strings["January"] = "Ledna"; +$a->strings["February"] = "Února"; +$a->strings["March"] = "Března"; +$a->strings["April"] = "Dubna"; +$a->strings["May"] = "Května"; +$a->strings["June"] = "Června"; +$a->strings["July"] = "Července"; +$a->strings["August"] = "Srpna"; +$a->strings["September"] = "Září"; +$a->strings["October"] = "Října"; +$a->strings["November"] = "Listopadu"; +$a->strings["December"] = "Prosinec"; +$a->strings["bytes"] = "bytů"; +$a->strings["Click to open/close"] = "Klikněte pro otevření/zavření"; +$a->strings["default"] = "standardní"; +$a->strings["Select an alternate language"] = "Vyběr alternativního jazyka"; +$a->strings["activity"] = "aktivita"; +$a->strings["post"] = "příspěvek"; +$a->strings["Item filed"] = "Položka vyplněna"; +$a->strings["Image/photo"] = "Obrázek/fotografie"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["%s wrote the following post"] = "%s napsal následující příspěvek"; +$a->strings["$1 wrote:"] = "$1 napsal:"; +$a->strings["Encrypted content"] = "Šifrovaný obsah"; +$a->strings["(no subject)"] = "(Bez předmětu)"; +$a->strings["noreply"] = "neodpovídat"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Nelze nalézt záznam v DNS pro databázový server '%s'"; +$a->strings["Unknown | Not categorised"] = "Neznámé | Nezařazeno"; +$a->strings["Block immediately"] = "Okamžitě blokovat "; +$a->strings["Shady, spammer, self-marketer"] = "pochybný, spammer, self-makerter"; +$a->strings["Known to me, but no opinion"] = "Znám ho ale, ale bez rozhodnutí"; +$a->strings["OK, probably harmless"] = "OK, pravděpodobně neškodný"; +$a->strings["Reputable, has my trust"] = "Renomovaný, má mou důvěru"; +$a->strings["Weekly"] = "Týdenně"; +$a->strings["Monthly"] = "Měsíčně"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Diaspora konektor"; +$a->strings["Statusnet"] = "Statusnet"; +$a->strings["App.net"] = "App.net"; +$a->strings[" on Last.fm"] = " na Last.fm"; +$a->strings["Starts:"] = "Začíná:"; +$a->strings["Finishes:"] = "Končí:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Narozeniny:"; +$a->strings["Age:"] = "Věk:"; +$a->strings["for %1\$d %2\$s"] = "pro %1\$d %2\$s"; +$a->strings["Tags:"] = "Štítky:"; +$a->strings["Religion:"] = "Náboženství:"; +$a->strings["Hobbies/Interests:"] = "Koníčky/zájmy:"; +$a->strings["Contact information and Social Networks:"] = "Kontaktní informace a sociální sítě:"; +$a->strings["Musical interests:"] = "Hudební vkus:"; +$a->strings["Books, literature:"] = "Knihy, literatura:"; +$a->strings["Television:"] = "Televize:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/tanec/kultura/zábava:"; +$a->strings["Love/Romance:"] = "Láska/romance"; +$a->strings["Work/employment:"] = "Práce/zaměstnání:"; +$a->strings["School/education:"] = "Škola/vzdělávání:"; +$a->strings["Click here to upgrade."] = "Klikněte zde pro aktualizaci."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Tato akce překročí limit nastavené Vaším předplatným."; +$a->strings["This action is not available under your subscription plan."] = "Tato akce není v rámci Vašeho předplatného dostupná."; +$a->strings["End this session"] = "Konec této relace"; +$a->strings["Your posts and conversations"] = "Vaše příspěvky a konverzace"; +$a->strings["Your profile page"] = "Vaše profilová stránka"; +$a->strings["Your photos"] = "Vaše fotky"; +$a->strings["Your videos"] = "Vaše videa"; +$a->strings["Your events"] = "Vaše události"; +$a->strings["Personal notes"] = "Osobní poznámky"; +$a->strings["Your personal notes"] = "Vaše osobní poznámky"; +$a->strings["Sign in"] = "Přihlásit se"; +$a->strings["Home Page"] = "Domácí stránka"; +$a->strings["Create an account"] = "Vytvořit účet"; +$a->strings["Help and documentation"] = "Nápověda a dokumentace"; +$a->strings["Apps"] = "Aplikace"; +$a->strings["Addon applications, utilities, games"] = "Doplňkové aplikace, nástroje, hry"; +$a->strings["Search site content"] = "Hledání na stránkách tohoto webu"; +$a->strings["Conversations on this site"] = "Konverzace na tomto webu"; +$a->strings["Directory"] = "Adresář"; +$a->strings["People directory"] = "Adresář"; +$a->strings["Information"] = "Informace"; +$a->strings["Information about this friendica instance"] = "Informace o této instanci Friendica"; +$a->strings["Conversations from your friends"] = "Konverzace od Vašich přátel"; +$a->strings["Network Reset"] = "Síťový Reset"; +$a->strings["Load Network page with no filters"] = "Načíst stránku Síť bez filtrů"; +$a->strings["Friend Requests"] = "Žádosti přátel"; +$a->strings["See all notifications"] = "Zobrazit všechny upozornění"; +$a->strings["Mark all system notifications seen"] = "Označit všechny upozornění systému jako přečtené"; +$a->strings["Private mail"] = "Soukromá pošta"; +$a->strings["Inbox"] = "Doručená pošta"; +$a->strings["Outbox"] = "Odeslaná pošta"; +$a->strings["Manage"] = "Spravovat"; +$a->strings["Manage other pages"] = "Spravovat jiné stránky"; +$a->strings["Account settings"] = "Nastavení účtu"; +$a->strings["Manage/Edit Profiles"] = "Spravovat/Editovat Profily"; +$a->strings["Manage/edit friends and contacts"] = "Spravovat/upravit přátelé a kontakty"; +$a->strings["Site setup and configuration"] = "Nastavení webu a konfigurace"; +$a->strings["Navigation"] = "Navigace"; +$a->strings["Site map"] = "Mapa webu"; +$a->strings["User not found."] = "Uživatel nenalezen"; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["There is no status with this id."] = "Není tu žádný status s tímto id."; +$a->strings["There is no conversation with this id."] = "Nemáme žádnou konverzaci s tímto id."; +$a->strings["Invalid request."] = "Neplatný požadavek."; +$a->strings["Invalid item."] = "Neplatná položka."; +$a->strings["Invalid action. "] = "Neplatná akce"; +$a->strings["DB error"] = "DB chyba"; +$a->strings["An invitation is required."] = "Pozvánka je vyžadována."; +$a->strings["Invitation could not be verified."] = "Pozvánka nemohla být ověřena."; +$a->strings["Invalid OpenID url"] = "Neplatný odkaz OpenID"; +$a->strings["Please enter the required information."] = "Zadejte prosím požadované informace."; +$a->strings["Please use a shorter name."] = "Použijte prosím kratší jméno."; +$a->strings["Name too short."] = "Jméno je příliš krátké."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)."; +$a->strings["Your email domain is not among those allowed on this site."] = "Váš e-mailová doména není na tomto serveru mezi povolenými."; +$a->strings["Not a valid email address."] = "Neplatná e-mailová adresa."; +$a->strings["Cannot use that email."] = "Tento e-mail nelze použít."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem."; +$a->strings["Nickname is already registered. Please choose another."] = "Přezdívka je již registrována. Prosím vyberte jinou."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo."; +$a->strings["An error occurred during registration. Please try again."] = "Došlo k chybě při registraci. Zkuste to prosím znovu."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu."; +$a->strings["Friends"] = "Přátelé"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tDrahý %1\$s,\n\t\t\tDěkujeme Vám za registraci na %2\$s. Váš účet byl vytvořen.\n\t"; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = ""; +$a->strings["Sharing notification from Diaspora network"] = "Sdílení oznámení ze sítě Diaspora"; +$a->strings["Attachments:"] = "Přílohy:"; +$a->strings["Do you really want to delete this item?"] = "Opravdu chcete smazat tuto položku?"; +$a->strings["Archives"] = "Archív"; +$a->strings["Male"] = "Muž"; +$a->strings["Female"] = "Žena"; +$a->strings["Currently Male"] = "V současné době muž"; +$a->strings["Currently Female"] = "V současné době žena"; +$a->strings["Mostly Male"] = "Většinou muž"; +$a->strings["Mostly Female"] = "Většinou žena"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Intersex"; +$a->strings["Transsexual"] = "Transexuál"; +$a->strings["Hermaphrodite"] = "Hermafrodit"; +$a->strings["Neuter"] = "Neutrál"; +$a->strings["Non-specific"] = "Nespecifikováno"; +$a->strings["Other"] = "Jiné"; +$a->strings["Undecided"] = "Nerozhodnuto"; +$a->strings["Males"] = "Muži"; +$a->strings["Females"] = "Ženy"; +$a->strings["Gay"] = "Gay"; +$a->strings["Lesbian"] = "Lesbička"; +$a->strings["No Preference"] = "Bez preferencí"; +$a->strings["Bisexual"] = "Bisexuál"; +$a->strings["Autosexual"] = "Autosexuál"; +$a->strings["Abstinent"] = "Abstinent"; +$a->strings["Virgin"] = "panic/panna"; +$a->strings["Deviant"] = "Deviant"; +$a->strings["Fetish"] = "Fetišista"; +$a->strings["Oodles"] = "Hodně"; +$a->strings["Nonsexual"] = "Nesexuální"; +$a->strings["Single"] = "Svobodný"; +$a->strings["Lonely"] = "Osamnělý"; +$a->strings["Available"] = "Dostupný"; +$a->strings["Unavailable"] = "Nedostupný"; +$a->strings["Has crush"] = "Zamilovaný"; +$a->strings["Infatuated"] = "Zabouchnutý"; +$a->strings["Dating"] = "Seznamující se"; +$a->strings["Unfaithful"] = "Nevěrný"; +$a->strings["Sex Addict"] = "Závislý na sexu"; +$a->strings["Friends/Benefits"] = "Přátelé / výhody"; +$a->strings["Casual"] = "Ležérní"; +$a->strings["Engaged"] = "Zadaný"; +$a->strings["Married"] = "Ženatý/vdaná"; +$a->strings["Imaginarily married"] = "Pomyslně ženatý/vdaná"; +$a->strings["Partners"] = "Partneři"; +$a->strings["Cohabiting"] = "Žijící ve společné domácnosti"; +$a->strings["Common law"] = "Zvykové právo"; +$a->strings["Happy"] = "Šťastný"; +$a->strings["Not looking"] = "Nehledající"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Zrazen"; +$a->strings["Separated"] = "Odloučený"; +$a->strings["Unstable"] = "Nestálý"; +$a->strings["Divorced"] = "Rozvedený(á)"; +$a->strings["Imaginarily divorced"] = "Pomyslně rozvedený"; +$a->strings["Widowed"] = "Ovdovělý(á)"; +$a->strings["Uncertain"] = "Nejistý"; +$a->strings["It's complicated"] = "Je to složité"; +$a->strings["Don't care"] = "Nezajímá"; +$a->strings["Ask me"] = "Zeptej se mě"; +$a->strings["Friendica Notification"] = "Friendica Notifikace"; +$a->strings["Thank You,"] = "Děkujeme, "; +$a->strings["%s Administrator"] = "%s Administrátor"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Upozornění] Obdržena nová zpráva na %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s Vám poslal novou soukromou zprávu na %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s Vám poslal %2\$s."; +$a->strings["a private message"] = "soukromá zpráva"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s's %4\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]Váš %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Upozornění] Komentář ke konverzaci #%1\$d od %2\$s"; +$a->strings["%s commented on an item/conversation you have been following."] = "Uživatel %s okomentoval vámi sledovanou položku/konverzaci."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s přidal příspěvek na Vaši profilovou zeď na %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s napřidáno na [url=%2\$s]na Vaši zeď[/url]"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Upozornění] %s Vás označil"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s Vás označil na %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]Vás označil[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s nasdílel nový příspěvek"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s nasdílel nový příspěvek na %2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]nasdílel příspěvek[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Upozornění] %1\$s Vás šťouchnul"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s Vás šťouchnul na %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "Uživatel %1\$s [url=%2\$s]Vás šťouchnul[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Upozornění] %s označil Váš příspěvek"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s označil Váš příspěvek na %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s označil [url=%2\$s]Váš příspěvek[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Upozornění] Obdrženo přestavení"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Obdržel jste žádost o spojení od '%1\$s' na %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]žádost o spojení[/url] od %2\$s."; +$a->strings["You may visit their profile at %s"] = "Můžete navštívit jejich profil na %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Prosím navštivte %s pro schválení či zamítnutí představení."; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Upozornění] Nový člověk s vámi sdílí"; +$a->strings["%1\$s is sharing with you at %2\$s"] = "uživatel %1\$s sdílí s vámi ma %2\$s"; +$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Upozornění] Máte nového následovníka"; +$a->strings["You have a new follower at %2\$s : %1\$s"] = "Máte nového následovníka na %2\$s : %1\$s"; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Upozornění] Obdržen návrh na přátelství"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Obdržel jste návrh přátelství od '%1\$s' na %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Obdržel jste [url=%1\$s]návrh přátelství[/url] s %2\$s from %3\$s."; +$a->strings["Name:"] = "Jméno:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Prosím navštivte %s pro schválení či zamítnutí doporučení."; +$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Upozornění] Spojení akceptováno"; +$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' akceptoval váš požadavek na spojení na %2\$s"; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s akceptoval váš [url=%1\$s]požadavek na spojení[/url]."; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Jste nyní vzájemnými přáteli a můžete si vyměňovat aktualizace statusu, fotografií a emailů\nbez omezení."; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Prosím navštivte %s pokud chcete změnit tento vztah."; +$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' vás přijal jako \"fanouška\", což omezuje některé formy komunikace - jako jsou soukromé zprávy a některé interakce na profilech. Pokud se jedná o celebritu, případně o komunitní stránky, pak bylo toto nastavení provedeno automaticky.."; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "''%1\$s' se může rozhodnout rozšířit tento vztah na oboustraný nebo méně restriktivní"; +$a->strings["[Friendica System:Notify] registration request"] = "[Systém Friendica :Upozornění] registrační požadavek"; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Obdržel jste požadavek na registraci od '%1\$s' na %2\$s"; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]požadavek na registraci[/url] od '%2\$s'."; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Plné jméno:\t%1\$s\\nUmístění webu:\t%2\$s\\nPřihlašovací účet:\t%3\$s (%4\$s)"; +$a->strings["Please visit %s to approve or reject the request."] = "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku."; +$a->strings["Embedded content"] = "vložený obsah"; +$a->strings["Embedding disabled"] = "Vkládání zakázáno"; +$a->strings["Error decoding account file"] = "Chyba dekódování uživatelského účtu"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Chyba! Nelze ověřit přezdívku"; +$a->strings["User '%s' already exists on this server!"] = "Uživatel '%s' již na tomto serveru existuje!"; +$a->strings["User creation error"] = "Chyba vytváření uživatele"; +$a->strings["User profile creation error"] = "Chyba vytváření uživatelského účtu"; +$a->strings["%d contact not imported"] = array( + 0 => "%d kontakt nenaimporován", + 1 => "%d kontaktů nenaimporováno", + 2 => "%d kontakty nenaimporovány", +); +$a->strings["Done. You can now login with your username and password"] = "Hotovo. Nyní se můžete přihlásit se svými uživatelským účtem a heslem"; +$a->strings["toggle mobile"] = "přepnout mobil"; +$a->strings["Theme settings"] = "Nastavení téma"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)"; +$a->strings["Set font-size for posts and comments"] = "Nastav velikost písma pro přízpěvky a komentáře."; +$a->strings["Set theme width"] = "Nastavení šířku grafické šablony"; +$a->strings["Color scheme"] = "Barevné schéma"; +$a->strings["Set line-height for posts and comments"] = "Nastav výšku řádku pro přízpěvky a komentáře."; +$a->strings["Set colour scheme"] = "Nastavit barevné schéma"; +$a->strings["Alignment"] = "Zarovnání"; +$a->strings["Left"] = "Vlevo"; +$a->strings["Center"] = "Uprostřed"; +$a->strings["Posts font size"] = "Velikost písma u příspěvků"; +$a->strings["Textareas font size"] = "Velikost písma textů"; +$a->strings["Set resolution for middle column"] = "Nastav rozlišení pro prostřední sloupec"; +$a->strings["Set color scheme"] = "Nastavení barevného schematu"; +$a->strings["Set zoomfactor for Earth Layer"] = "Nastavit přiblížení pro Earth Layer"; +$a->strings["Set longitude (X) for Earth Layers"] = "Nastavit zeměpistnou délku (X) pro Earth Layers"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Nastavit zeměpistnou šířku (X) pro Earth Layers"; +$a->strings["Community Pages"] = "Komunitní stránky"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Community Profiles"] = "Komunitní profily"; +$a->strings["Help or @NewHere ?"] = "Pomoc nebo @ProNováčky ?"; +$a->strings["Connect Services"] = "Propojené služby"; +$a->strings["Find Friends"] = "Nalézt Přátele"; +$a->strings["Last users"] = "Poslední uživatelé"; +$a->strings["Last photos"] = "Poslední fotografie"; +$a->strings["Last likes"] = "Poslední líbí/nelíbí"; +$a->strings["Your contacts"] = "Vaše kontakty"; +$a->strings["Your personal photos"] = "Vaše osobní fotky"; +$a->strings["Local Directory"] = "Lokální Adresář"; +$a->strings["Set zoomfactor for Earth Layers"] = "Nastavit faktor přiblížení pro Earth Layers"; +$a->strings["Show/hide boxes at right-hand column:"] = "Zobrazit/skrýt boxy na pravém sloupci:"; +$a->strings["Set style"] = "Nastavit styl"; +$a->strings["greenzero"] = ""; +$a->strings["purplezero"] = ""; +$a->strings["easterbunny"] = ""; +$a->strings["darkzero"] = ""; +$a->strings["comix"] = ""; +$a->strings["slackr"] = ""; +$a->strings["Variations"] = ""; diff --git a/view/de/messages.po b/view/de/messages.po index 249af61464..ef96bb95c5 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the Friendica package. # # Translators: +# Abrax , 2015 # bavatar , 2011 # Erkan Yilmaz , 2011 # Fabian Dost , 2012 @@ -11,6 +12,7 @@ # greeneyedred , 2012 # Hauke Zühl , 2012 # Hauke Zühl , 2011-2012 +# Johannes Schwab , 2015 # leberwurscht , 2012 # marmor , 2012 # Martin Schmitt , 2012 @@ -26,9 +28,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-07 14:32+0200\n" -"PO-Revision-Date: 2014-09-28 10:34+0000\n" -"Last-Translator: bavatar \n" +"POT-Creation-Date: 2015-01-22 17:30+0100\n" +"PO-Revision-Date: 2015-01-23 14:42+0000\n" +"Last-Translator: Abrax \n" "Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,3399 +38,3575 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/vier/config.php:52 ../../view/theme/diabook/config.php:148 -#: ../../view/theme/diabook/theme.php:633 -#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 -#: ../../object/Item.php:678 ../../mod/contacts.php:470 -#: ../../mod/manage.php:110 ../../mod/fsuggest.php:107 -#: ../../mod/photos.php:1084 ../../mod/photos.php:1205 -#: ../../mod/photos.php:1512 ../../mod/photos.php:1563 -#: ../../mod/photos.php:1607 ../../mod/photos.php:1695 -#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137 -#: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/profiles.php:645 ../../mod/install.php:248 -#: ../../mod/install.php:286 ../../mod/crepair.php:179 -#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 -msgid "Submit" -msgstr "Senden" +#: ../../mod/contacts.php:107 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "%d Kontakt bearbeitet." +msgstr[1] "%d Kontakte bearbeitet" -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/vier/config.php:54 ../../view/theme/diabook/config.php:150 -#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 -msgid "Theme settings" -msgstr "Themeneinstellungen" +#: ../../mod/contacts.php:138 ../../mod/contacts.php:271 +msgid "Could not access contact record." +msgstr "Konnte nicht auf die Kontaktdaten zugreifen." -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)" +#: ../../mod/contacts.php:152 +msgid "Could not locate selected profile." +msgstr "Konnte das ausgewählte Profil nicht finden." -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/diabook/config.php:151 -#: ../../view/theme/dispy/config.php:73 -msgid "Set font-size for posts and comments" -msgstr "Schriftgröße für Beiträge und Kommentare festlegen" +#: ../../mod/contacts.php:185 +msgid "Contact updated." +msgstr "Kontakt aktualisiert." -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Theme Breite festlegen" +#: ../../mod/contacts.php:187 ../../mod/dfrn_request.php:576 +msgid "Failed to update contact record." +msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Farbschema" +#: ../../mod/contacts.php:253 ../../mod/manage.php:96 +#: ../../mod/display.php:475 ../../mod/profile_photo.php:19 +#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180 +#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9 +#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19 +#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78 +#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:22 +#: ../../mod/notifications.php:66 ../../mod/message.php:38 +#: ../../mod/message.php:174 ../../mod/crepair.php:119 +#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9 +#: ../../mod/events.php:140 ../../mod/install.php:151 +#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 +#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 +#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102 +#: ../../mod/settings.php:596 ../../mod/settings.php:601 +#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114 +#: ../../mod/suggest.php:58 ../../mod/profiles.php:148 +#: ../../mod/profiles.php:584 ../../mod/editpost.php:10 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135 +#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134 +#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23 +#: ../../mod/attach.php:33 ../../include/items.php:4683 ../../index.php:369 +msgid "Permission denied." +msgstr "Zugriff verweigert." -#: ../../view/theme/vier/config.php:55 -msgid "Set style" -msgstr "Stil auswählen" +#: ../../mod/contacts.php:286 +msgid "Contact has been blocked" +msgstr "Kontakt wurde blockiert" -#: ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:328 -msgid "don't show" -msgstr "nicht zeigen" +#: ../../mod/contacts.php:286 +msgid "Contact has been unblocked" +msgstr "Kontakt wurde wieder freigegeben" -#: ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:327 -msgid "show" -msgstr "zeigen" +#: ../../mod/contacts.php:297 +msgid "Contact has been ignored" +msgstr "Kontakt wurde ignoriert" -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Liniengröße für Beiträge und Kommantare festlegen" +#: ../../mod/contacts.php:297 +msgid "Contact has been unignored" +msgstr "Kontakt wird nicht mehr ignoriert" -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Auflösung für die Mittelspalte setzen" +#: ../../mod/contacts.php:309 +msgid "Contact has been archived" +msgstr "Kontakt wurde archiviert" -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Wähle Farbschema" +#: ../../mod/contacts.php:309 +msgid "Contact has been unarchived" +msgstr "Kontakt wurde aus dem Archiv geholt" -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Zoomfaktor der Earth Layer" +#: ../../mod/contacts.php:334 ../../mod/contacts.php:710 +msgid "Do you really want to delete this contact?" +msgstr "Möchtest du wirklich diesen Kontakt löschen?" -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "Longitude (X) der Earth Layer" +#: ../../mod/contacts.php:336 ../../mod/message.php:209 +#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 +#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 +#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 +#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 +#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 +#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 +#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 +#: ../../mod/register.php:233 ../../mod/suggest.php:29 +#: ../../mod/profiles.php:627 ../../mod/profiles.php:630 ../../mod/api.php:105 +#: ../../include/items.php:4528 +msgid "Yes" +msgstr "Ja" -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Latitude (Y) der Earth Layer" +#: ../../mod/contacts.php:339 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 +#: ../../mod/message.php:212 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615 +#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844 +#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 +#: ../../mod/photos.php:203 ../../mod/photos.php:292 +#: ../../include/conversation.php:1129 ../../include/items.php:4531 +msgid "Cancel" +msgstr "Abbrechen" -#: ../../view/theme/diabook/config.php:158 -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "Foren" +#: ../../mod/contacts.php:351 +msgid "Contact has been removed." +msgstr "Kontakt wurde entfernt." -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Earth Layers" +#: ../../mod/contacts.php:389 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Du hast mit %s eine beidseitige Freundschaft" -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Community-Profile" +#: ../../mod/contacts.php:393 +#, php-format +msgid "You are sharing with %s" +msgstr "Du teilst mit %s" -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "Hilfe oder @NewHere" +#: ../../mod/contacts.php:398 +#, php-format +msgid "%s is sharing with you" +msgstr "%s teilt mit Dir" -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Verbinde Dienste" +#: ../../mod/contacts.php:415 +msgid "Private communications are not available for this contact." +msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Freunde finden" +#: ../../mod/contacts.php:418 ../../mod/admin.php:546 +msgid "Never" +msgstr "Niemals" -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Letzte Nutzer" +#: ../../mod/contacts.php:422 +msgid "(Update was successful)" +msgstr "(Aktualisierung war erfolgreich)" -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Letzte Fotos" +#: ../../mod/contacts.php:422 +msgid "(Update was not successful)" +msgstr "(Aktualisierung war nicht erfolgreich)" -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Zuletzt gemocht" +#: ../../mod/contacts.php:424 +msgid "Suggest friends" +msgstr "Kontakte vorschlagen" -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105 -#: ../../include/nav.php:146 ../../mod/notifications.php:93 -msgid "Home" -msgstr "Pinnwand" +#: ../../mod/contacts.php:428 +#, php-format +msgid "Network type: %s" +msgstr "Netzwerktyp: %s" -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:146 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" +#: ../../mod/contacts.php:431 ../../include/contact_widgets.php:200 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d gemeinsamer Kontakt" +msgstr[1] "%d gemeinsame Kontakte" -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2070 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 -#: ../../include/nav.php:77 ../../mod/profperm.php:103 -#: ../../mod/newmember.php:32 -msgid "Profile" -msgstr "Profil" +#: ../../mod/contacts.php:436 +msgid "View all contacts" +msgstr "Alle Kontakte anzeigen" -#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 -msgid "Your profile page" -msgstr "Deine Profilseite" +#: ../../mod/contacts.php:441 ../../mod/contacts.php:500 +#: ../../mod/contacts.php:713 ../../mod/admin.php:981 +msgid "Unblock" +msgstr "Entsperren" -#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:175 -#: ../../mod/contacts.php:694 -msgid "Contacts" -msgstr "Kontakte" +#: ../../mod/contacts.php:441 ../../mod/contacts.php:500 +#: ../../mod/contacts.php:713 ../../mod/admin.php:980 +msgid "Block" +msgstr "Sperren" -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Deine Kontakte" +#: ../../mod/contacts.php:444 +msgid "Toggle Blocked status" +msgstr "Geblockt-Status ein-/ausschalten" -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2077 -#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Bilder" +#: ../../mod/contacts.php:447 ../../mod/contacts.php:501 +#: ../../mod/contacts.php:714 +msgid "Unignore" +msgstr "Ignorieren aufheben" -#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 -msgid "Your photos" -msgstr "Deine Fotos" +#: ../../mod/contacts.php:447 ../../mod/contacts.php:501 +#: ../../mod/contacts.php:714 ../../mod/notifications.php:51 +#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 +msgid "Ignore" +msgstr "Ignorieren" -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2094 -#: ../../include/nav.php:80 ../../mod/events.php:370 -msgid "Events" -msgstr "Veranstaltungen" +#: ../../mod/contacts.php:450 +msgid "Toggle Ignored status" +msgstr "Ignoriert-Status ein-/ausschalten" -#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80 -msgid "Your events" -msgstr "Deine Ereignisse" +#: ../../mod/contacts.php:454 ../../mod/contacts.php:715 +msgid "Unarchive" +msgstr "Aus Archiv zurückholen" -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81 -msgid "Personal notes" -msgstr "Persönliche Notizen" +#: ../../mod/contacts.php:454 ../../mod/contacts.php:715 +msgid "Archive" +msgstr "Archivieren" -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Deine privaten Fotos" +#: ../../mod/contacts.php:457 +msgid "Toggle Archive status" +msgstr "Archiviert-Status ein-/ausschalten" -#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129 -#: ../../mod/community.php:32 -msgid "Community" -msgstr "Gemeinschaft" +#: ../../mod/contacts.php:460 +msgid "Repair" +msgstr "Reparieren" -#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1964 -msgid "event" -msgstr "Veranstaltung" +#: ../../mod/contacts.php:463 +msgid "Advanced Contact Settings" +msgstr "Fortgeschrittene Kontakteinstellungen" -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1919 -#: ../../include/conversation.php:121 ../../include/conversation.php:130 -#: ../../include/conversation.php:249 ../../include/conversation.php:258 -#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 -#: ../../mod/tagger.php:62 -msgid "status" -msgstr "Status" +#: ../../mod/contacts.php:469 +msgid "Communications lost with this contact!" +msgstr "Verbindungen mit diesem Kontakt verloren!" -#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:1919 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1966 ../../mod/like.php:149 -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 -msgid "photo" -msgstr "Foto" +#: ../../mod/contacts.php:472 +msgid "Contact Editor" +msgstr "Kontakt Editor" -#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:1935 -#: ../../include/conversation.php:137 ../../mod/like.php:166 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s mag %2$ss %3$s" +#: ../../mod/contacts.php:474 ../../mod/manage.php:110 +#: ../../mod/fsuggest.php:107 ../../mod/message.php:335 +#: ../../mod/message.php:564 ../../mod/crepair.php:186 +#: ../../mod/events.php:478 ../../mod/content.php:710 +#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137 +#: ../../mod/profiles.php:652 ../../mod/localtime.php:45 +#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084 +#: ../../mod/photos.php:1203 ../../mod/photos.php:1514 +#: ../../mod/photos.php:1565 ../../mod/photos.php:1609 +#: ../../mod/photos.php:1697 ../../object/Item.php:678 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 +#: ../../view/theme/diabook/config.php:148 +#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53 +#: ../../view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Senden" -#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 -#: ../../mod/photos.php:155 ../../mod/photos.php:1064 -#: ../../mod/photos.php:1189 ../../mod/photos.php:1212 -#: ../../mod/photos.php:1758 ../../mod/photos.php:1770 -msgid "Contact Photos" -msgstr "Kontaktbilder" +#: ../../mod/contacts.php:475 +msgid "Profile Visibility" +msgstr "Profil-Sichtbarkeit" -#: ../../view/theme/diabook/theme.php:500 ../../include/user.php:335 -#: ../../include/user.php:342 ../../include/user.php:349 -#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1189 -#: ../../mod/photos.php:1212 ../../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 -msgid "Profile Photos" -msgstr "Profilbilder" +#: ../../mod/contacts.php:476 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft." -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Lokales Verzeichnis" +#: ../../mod/contacts.php:477 +msgid "Contact Information / Notes" +msgstr "Kontakt Informationen / Notizen" -#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51 -msgid "Global Directory" -msgstr "Weltweites Verzeichnis" +#: ../../mod/contacts.php:478 +msgid "Edit contact notes" +msgstr "Notizen zum Kontakt bearbeiten" -#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "Ähnliche Interessen" +#: ../../mod/contacts.php:483 ../../mod/contacts.php:678 +#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Besuche %ss Profil [%s]" -#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35 -#: ../../mod/suggest.php:66 -msgid "Friend Suggestions" -msgstr "Kontaktvorschläge" +#: ../../mod/contacts.php:484 +msgid "Block/Unblock contact" +msgstr "Kontakt blockieren/freischalten" -#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "Freunde einladen" +#: ../../mod/contacts.php:485 +msgid "Ignore contact" +msgstr "Ignoriere den Kontakt" -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:170 -#: ../../mod/settings.php:85 ../../mod/admin.php:1065 ../../mod/admin.php:1286 -#: ../../mod/newmember.php:22 -msgid "Settings" -msgstr "Einstellungen" +#: ../../mod/contacts.php:486 +msgid "Repair URL settings" +msgstr "URL Einstellungen reparieren" -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Zoomfaktor der Earth Layer" +#: ../../mod/contacts.php:487 +msgid "View conversations" +msgstr "Unterhaltungen anzeigen" -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Rahmen auf der rechten Seite anzeigen/verbergen" +#: ../../mod/contacts.php:489 +msgid "Delete contact" +msgstr "Lösche den Kontakt" -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Ausrichtung" +#: ../../mod/contacts.php:493 +msgid "Last update:" +msgstr "letzte Aktualisierung:" -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Links" +#: ../../mod/contacts.php:495 +msgid "Update public posts" +msgstr "Öffentliche Beiträge aktualisieren" -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Mitte" +#: ../../mod/contacts.php:497 ../../mod/admin.php:1475 +msgid "Update now" +msgstr "Jetzt aktualisieren" -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Schriftgröße in Beiträgen" +#: ../../mod/contacts.php:504 +msgid "Currently blocked" +msgstr "Derzeit geblockt" -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Schriftgröße in Eingabefeldern" +#: ../../mod/contacts.php:505 +msgid "Currently ignored" +msgstr "Derzeit ignoriert" -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Farbschema wählen" +#: ../../mod/contacts.php:506 +msgid "Currently archived" +msgstr "Momentan archiviert" -#: ../../index.php:203 ../../mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "Sie müssen angemeldet sein um Addons benutzen zu können." +#: ../../mod/contacts.php:507 ../../mod/notifications.php:157 +#: ../../mod/notifications.php:204 +msgid "Hide this contact from others" +msgstr "Verberge diesen Kontakt vor anderen" -#: ../../index.php:247 ../../mod/help.php:90 -msgid "Not Found" -msgstr "Nicht gefunden" +#: ../../mod/contacts.php:507 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein" -#: ../../index.php:250 ../../mod/help.php:93 -msgid "Page not found." -msgstr "Seite nicht gefunden." +#: ../../mod/contacts.php:508 +msgid "Notification for new posts" +msgstr "Benachrichtigung bei neuen Beiträgen" -#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19 -msgid "Permission denied" -msgstr "Zugriff verweigert" +#: ../../mod/contacts.php:508 +msgid "Send a notification of every new post of this contact" +msgstr "Sende eine Benachrichtigung wann immer dieser Kontakt einen neuen Beitrag schreibt." -#: ../../index.php:360 ../../include/items.php:4550 ../../mod/attach.php:33 -#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 -#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 -#: ../../mod/group.php:19 ../../mod/delegate.php:6 -#: ../../mod/notifications.php:66 ../../mod/settings.php:102 -#: ../../mod/settings.php:593 ../../mod/settings.php:598 -#: ../../mod/contacts.php:249 ../../mod/wall_attach.php:55 -#: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10 -#: ../../mod/regmod.php:109 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/suggest.php:56 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78 -#: ../../mod/viewcontacts.php:22 ../../mod/wall_upload.php:66 -#: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134 -#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23 -#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140 -#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174 -#: ../../mod/profiles.php:148 ../../mod/profiles.php:577 -#: ../../mod/install.php:151 ../../mod/crepair.php:117 ../../mod/poke.php:135 -#: ../../mod/display.php:455 ../../mod/dfrn_confirm.php:55 -#: ../../mod/item.php:148 ../../mod/item.php:164 -#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 -#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 -#: ../../mod/allfriends.php:9 -msgid "Permission denied." -msgstr "Zugriff verweigert." +#: ../../mod/contacts.php:509 +msgid "Fetch further information for feeds" +msgstr "Weitere Informationen zu Feeds holen" -#: ../../index.php:419 -msgid "toggle mobile" -msgstr "auf/von Mobile Ansicht wechseln" +#: ../../mod/contacts.php:510 +msgid "Disabled" +msgstr "Deaktiviert" -#: ../../boot.php:719 -msgid "Delete this item?" -msgstr "Diesen Beitrag löschen?" +#: ../../mod/contacts.php:510 +msgid "Fetch information" +msgstr "Beziehe Information" -#: ../../boot.php:720 ../../object/Item.php:361 ../../object/Item.php:677 -#: ../../mod/photos.php:1562 ../../mod/photos.php:1606 -#: ../../mod/photos.php:1694 ../../mod/content.php:709 -msgid "Comment" -msgstr "Kommentar" +#: ../../mod/contacts.php:510 +msgid "Fetch information and keywords" +msgstr "Beziehe Information und Schlüsselworte" -#: ../../boot.php:721 ../../include/contact_widgets.php:205 -#: ../../object/Item.php:390 ../../mod/content.php:606 -msgid "show more" -msgstr "mehr anzeigen" +#: ../../mod/contacts.php:512 +msgid "Blacklisted keywords" +msgstr "Blacklistete Schlüsselworte " -#: ../../boot.php:722 -msgid "show fewer" -msgstr "weniger anzeigen" +#: ../../mod/contacts.php:512 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Komma-Separierte Liste mit Schlüsselworten die nicht in Hashtags konvertiert werden wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde" -#: ../../boot.php:1042 ../../boot.php:1073 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." +#: ../../mod/contacts.php:563 +msgid "Suggestions" +msgstr "Kontaktvorschläge" -#: ../../boot.php:1194 -msgid "Create a New Account" -msgstr "Neues Konto erstellen" +#: ../../mod/contacts.php:566 +msgid "Suggest potential friends" +msgstr "Freunde vorschlagen" -#: ../../boot.php:1195 ../../include/nav.php:109 ../../mod/register.php:266 -msgid "Register" -msgstr "Registrieren" +#: ../../mod/contacts.php:569 ../../mod/group.php:194 +msgid "All Contacts" +msgstr "Alle Kontakte" -#: ../../boot.php:1219 ../../include/nav.php:73 -msgid "Logout" -msgstr "Abmelden" +#: ../../mod/contacts.php:572 +msgid "Show all contacts" +msgstr "Alle Kontakte anzeigen" -#: ../../boot.php:1220 ../../include/nav.php:92 -msgid "Login" -msgstr "Anmeldung" +#: ../../mod/contacts.php:575 +msgid "Unblocked" +msgstr "Ungeblockt" -#: ../../boot.php:1222 -msgid "Nickname or Email address: " -msgstr "Spitzname oder E-Mail-Adresse: " +#: ../../mod/contacts.php:578 +msgid "Only show unblocked contacts" +msgstr "Nur nicht-blockierte Kontakte anzeigen" -#: ../../boot.php:1223 -msgid "Password: " -msgstr "Passwort: " +#: ../../mod/contacts.php:582 +msgid "Blocked" +msgstr "Geblockt" -#: ../../boot.php:1224 -msgid "Remember me" -msgstr "Anmeldedaten merken" +#: ../../mod/contacts.php:585 +msgid "Only show blocked contacts" +msgstr "Nur blockierte Kontakte anzeigen" -#: ../../boot.php:1227 -msgid "Or login using OpenID: " -msgstr "Oder melde dich mit deiner OpenID an: " +#: ../../mod/contacts.php:589 +msgid "Ignored" +msgstr "Ignoriert" -#: ../../boot.php:1233 -msgid "Forgot your password?" -msgstr "Passwort vergessen?" +#: ../../mod/contacts.php:592 +msgid "Only show ignored contacts" +msgstr "Nur ignorierte Kontakte anzeigen" -#: ../../boot.php:1234 ../../mod/lostpass.php:109 -msgid "Password Reset" -msgstr "Passwort zurücksetzen" +#: ../../mod/contacts.php:596 +msgid "Archived" +msgstr "Archiviert" -#: ../../boot.php:1236 -msgid "Website Terms of Service" -msgstr "Website Nutzungsbedingungen" +#: ../../mod/contacts.php:599 +msgid "Only show archived contacts" +msgstr "Nur archivierte Kontakte anzeigen" -#: ../../boot.php:1237 -msgid "terms of service" -msgstr "Nutzungsbedingungen" +#: ../../mod/contacts.php:603 +msgid "Hidden" +msgstr "Verborgen" -#: ../../boot.php:1239 -msgid "Website Privacy Policy" -msgstr "Website Datenschutzerklärung" +#: ../../mod/contacts.php:606 +msgid "Only show hidden contacts" +msgstr "Nur verborgene Kontakte anzeigen" -#: ../../boot.php:1240 -msgid "privacy policy" -msgstr "Datenschutzerklärung" +#: ../../mod/contacts.php:654 +msgid "Mutual Friendship" +msgstr "Beidseitige Freundschaft" -#: ../../boot.php:1373 -msgid "Requested account is not available." -msgstr "Das angefragte Profil ist nicht vorhanden." +#: ../../mod/contacts.php:658 +msgid "is a fan of yours" +msgstr "ist ein Fan von dir" -#: ../../boot.php:1412 ../../mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "Das angefragte Profil ist nicht vorhanden." +#: ../../mod/contacts.php:662 +msgid "you are a fan of" +msgstr "du bist Fan von" -#: ../../boot.php:1455 ../../boot.php:1589 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Profil bearbeiten" +#: ../../mod/contacts.php:679 ../../mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Kontakt bearbeiten" -#: ../../boot.php:1522 ../../include/contact_widgets.php:10 -#: ../../mod/suggest.php:88 ../../mod/match.php:58 -msgid "Connect" -msgstr "Verbinden" +#: ../../mod/contacts.php:701 ../../include/nav.php:175 +#: ../../view/theme/diabook/theme.php:125 +msgid "Contacts" +msgstr "Kontakte" -#: ../../boot.php:1554 -msgid "Message" -msgstr "Nachricht" +#: ../../mod/contacts.php:705 +msgid "Search your contacts" +msgstr "Suche in deinen Kontakten" -#: ../../boot.php:1560 ../../include/nav.php:173 -msgid "Profiles" -msgstr "Profile" +#: ../../mod/contacts.php:706 ../../mod/directory.php:61 +msgid "Finding: " +msgstr "Funde: " -#: ../../boot.php:1560 -msgid "Manage/edit profiles" -msgstr "Profile verwalten/editieren" +#: ../../mod/contacts.php:707 ../../mod/directory.php:63 +#: ../../include/contact_widgets.php:34 +msgid "Find" +msgstr "Finde" -#: ../../boot.php:1565 ../../boot.php:1591 ../../mod/profiles.php:763 -msgid "Change profile photo" -msgstr "Profilbild ändern" +#: ../../mod/contacts.php:712 ../../mod/settings.php:132 +#: ../../mod/settings.php:640 +msgid "Update" +msgstr "Aktualisierungen" -#: ../../boot.php:1566 ../../mod/profiles.php:764 -msgid "Create New Profile" -msgstr "Neues Profil anlegen" +#: ../../mod/contacts.php:716 ../../mod/group.php:171 ../../mod/admin.php:979 +#: ../../mod/content.php:438 ../../mod/content.php:741 +#: ../../mod/settings.php:677 ../../mod/photos.php:1654 +#: ../../object/Item.php:130 ../../include/conversation.php:614 +msgid "Delete" +msgstr "Löschen" -#: ../../boot.php:1576 ../../mod/profiles.php:775 -msgid "Profile Image" -msgstr "Profilbild" +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Kein Profil" -#: ../../boot.php:1579 ../../mod/profiles.php:777 -msgid "visible to everybody" -msgstr "sichtbar für jeden" +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Verwalte Identitäten und/oder Seiten" -#: ../../boot.php:1580 ../../mod/profiles.php:778 -msgid "Edit visibility" -msgstr "Sichtbarkeit bearbeiten" +#: ../../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 "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast." -#: ../../boot.php:1602 ../../include/event.php:40 -#: ../../include/bb2diaspora.php:156 ../../mod/events.php:471 -#: ../../mod/directory.php:136 -msgid "Location:" -msgstr "Ort:" +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Wähle eine Identität zum Verwalten aus: " -#: ../../boot.php:1604 ../../include/profile_advanced.php:17 -#: ../../mod/directory.php:138 -msgid "Gender:" -msgstr "Geschlecht:" +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Beitrag erfolgreich veröffentlicht." -#: ../../boot.php:1607 ../../include/profile_advanced.php:37 -#: ../../mod/directory.php:140 -msgid "Status:" -msgstr "Status:" +#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368 +msgid "Permission denied" +msgstr "Zugriff verweigert" -#: ../../boot.php:1609 ../../include/profile_advanced.php:48 -#: ../../mod/directory.php:142 -msgid "Homepage:" -msgstr "Homepage:" +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Bezeichner." -#: ../../boot.php:1657 -msgid "Network:" -msgstr "Netzwerk" +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Editor für die Profil-Sichtbarkeit" -#: ../../boot.php:1687 ../../boot.php:1773 -msgid "g A l F d" -msgstr "l, d. F G \\U\\h\\r" +#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2114 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 +#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 +msgid "Profile" +msgstr "Profil" -#: ../../boot.php:1688 ../../boot.php:1774 -msgid "F d" -msgstr "d. F" +#: ../../mod/profperm.php:105 ../../mod/group.php:224 +msgid "Click on a contact to add or remove." +msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" -#: ../../boot.php:1733 ../../boot.php:1814 -msgid "[today]" -msgstr "[heute]" - -#: ../../boot.php:1745 -msgid "Birthday Reminders" -msgstr "Geburtstagserinnerungen" - -#: ../../boot.php:1746 -msgid "Birthdays this week:" -msgstr "Geburtstage diese Woche:" +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Sichtbar für" -#: ../../boot.php:1807 -msgid "[No description]" -msgstr "[keine Beschreibung]" +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" -#: ../../boot.php:1825 -msgid "Event Reminders" -msgstr "Veranstaltungserinnerungen" +#: ../../mod/display.php:70 ../../mod/display.php:260 +#: ../../mod/display.php:479 ../../mod/viewsrc.php:15 ../../mod/admin.php:166 +#: ../../mod/admin.php:1024 ../../mod/admin.php:1237 ../../mod/notice.php:15 +#: ../../include/items.php:4487 +msgid "Item not found." +msgstr "Beitrag nicht gefunden." -#: ../../boot.php:1826 -msgid "Events this week:" -msgstr "Veranstaltungen diese Woche" +#: ../../mod/display.php:200 ../../mod/videos.php:115 +#: ../../mod/viewcontacts.php:17 ../../mod/community.php:18 +#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89 +#: ../../mod/directory.php:33 ../../mod/photos.php:920 +msgid "Public access denied." +msgstr "Öffentlicher Zugriff verweigert." -#: ../../boot.php:2063 ../../include/nav.php:76 -msgid "Status" -msgstr "Status" +#: ../../mod/display.php:308 ../../mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." -#: ../../boot.php:2066 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" +#: ../../mod/display.php:472 +msgid "Item has been removed." +msgstr "Eintrag wurde entfernt." -#: ../../boot.php:2073 -msgid "Profile Details" -msgstr "Profildetails" +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Willkommen bei Friendica" -#: ../../boot.php:2080 ../../mod/photos.php:52 -msgid "Photo Albums" -msgstr "Fotoalben" +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Checkliste für neue Mitglieder" -#: ../../boot.php:2084 ../../boot.php:2087 ../../include/nav.php:79 -msgid "Videos" -msgstr "Videos" +#: ../../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 "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden." -#: ../../boot.php:2097 -msgid "Events and Calendar" -msgstr "Ereignisse und Kalender" +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "Einstieg" -#: ../../boot.php:2101 ../../mod/notes.php:44 -msgid "Personal Notes" -msgstr "Persönliche Notizen" +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Friendica Rundgang" -#: ../../boot.php:2104 -msgid "Only You Can See This" -msgstr "Nur du kannst das sehen" +#: ../../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 "Auf der Quick Start Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst." -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Allgemeine Features" +#: ../../mod/newmember.php:22 ../../mod/admin.php:1076 +#: ../../mod/admin.php:1297 ../../mod/settings.php:85 +#: ../../include/nav.php:170 ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 +msgid "Settings" +msgstr "Einstellungen" -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Mehrere Profile" +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Gehe zu deinen Einstellungen" -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Möglichkeit mehrere Profile zu erstellen" +#: ../../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 "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen." -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Beitragserstellung Features" +#: ../../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 "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können." -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Web-Editor" +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 +#: ../../mod/profiles.php:665 +msgid "Upload Profile Photo" +msgstr "Profilbild hochladen" -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Den Web-Editor für neue Beiträge aktivieren" +#: ../../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 "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust." -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Beitragsvorschau" +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Editiere dein Profil" -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben." +#: ../../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 "Editiere dein Standard Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils." -#: ../../include/features.php:33 -msgid "Auto-mention Forums" -msgstr "Foren automatisch erwähnen" +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Profil Schlüsselbegriffe" -#: ../../include/features.php:33 +#: ../../mod/newmember.php:40 msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde." +"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 "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen." -#: ../../include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Widgets für Netzwerk und Seitenleiste" +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "Verbindungen knüpfen" -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "Archiv" +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren" +#: ../../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 "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst." -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "Gruppen Filter" +#: ../../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 "Wenn dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten." -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren." +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "Emails Importieren" -#: ../../include/features.php:41 -msgid "Network Filter" -msgstr "Netzwerk Filter" +#: ../../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 "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst." -#: ../../include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren." +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Gehe zu deiner Kontakt-Seite" -#: ../../include/features.php:42 ../../mod/network.php:188 -#: ../../mod/search.php:30 -msgid "Saved Searches" -msgstr "Gespeicherte Suchen" +#: ../../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 "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein." -#: ../../include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Speichere Suchanfragen für spätere Wiederholung." +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Gehe zum Verzeichnis deiner Friendica Instanz" -#: ../../include/features.php:47 -msgid "Network Tabs" -msgstr "Netzwerk Reiter" +#: ../../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 "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst." -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "Netzwerk-Reiter: Persönlich" +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "Neue Leute kennenlernen" -#: ../../include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast" +#: ../../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 "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden." -#: ../../include/features.php:49 -msgid "Network New Tab" -msgstr "Netzwerk-Reiter: Neue" +#: ../../mod/newmember.php:66 ../../include/group.php:270 +msgid "Groups" +msgstr "Gruppen" -#: ../../include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden" +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Gruppiere deine Kontakte" -#: ../../include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "Netzwerk-Reiter: Geteilte Links" +#: ../../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 "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren." -#: ../../include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält" +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Warum sind meine Beiträge nicht öffentlich?" -#: ../../include/features.php:55 -msgid "Post/Comment Tools" -msgstr "Werkzeuge für Beiträge und Kommentare" +#: ../../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 respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch." -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "Mehrere Beiträge löschen" +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "Hilfe bekommen" -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen" +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Zum Hilfe Abschnitt gehen" -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Gesendete Beiträge editieren" +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten." -#: ../../include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren." +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." -#: ../../include/features.php:58 -msgid "Tagging" -msgstr "Tagging" +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet." -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen." +#: ../../mod/openid.php:93 ../../include/auth.php:112 +#: ../../include/auth.php:175 +msgid "Login failed." +msgstr "Anmeldung fehlgeschlagen." -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "Beitragskategorien" +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl." -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "Eigene Beiträge mit Kategorien versehen" +#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81 +#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204 +#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305 +#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../include/user.php:335 +#: ../../include/user.php:342 ../../include/user.php:349 +#: ../../view/theme/diabook/theme.php:500 +msgid "Profile Photos" +msgstr "Profilbilder" -#: ../../include/features.php:60 ../../include/contact_widgets.php:104 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" +#: ../../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 "Verkleinern der Bildgröße von [%s] scheiterte." -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Beiträge in Ordnern speichern aktivieren" +#: ../../mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird." -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "Beiträge 'nicht mögen'" +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Bild konnte nicht verarbeitet werden" -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'" +#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Bildgröße überschreitet das Limit von %d" -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "Beiträge Markieren" +#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144 +#: ../../mod/photos.php:807 +msgid "Unable to process image." +msgstr "Konnte das Bild nicht bearbeiten." -#: ../../include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren" +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Datei hochladen:" -#: ../../include/features.php:63 -msgid "Mute Post Notifications" -msgstr "Benachrichtigungen für Beiträge Stumm schalten" +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Profil auswählen:" -#: ../../include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können" +#: ../../mod/profile_photo.php:245 +msgid "Upload" +msgstr "Hochladen" -#: ../../include/items.php:2090 ../../include/datetime.php:472 -#, php-format -msgid "%s's birthday" -msgstr "%ss Geburtstag" +#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062 +msgid "or" +msgstr "oder" -#: ../../include/items.php:2091 ../../include/datetime.php:473 -#, php-format -msgid "Happy Birthday %s" -msgstr "Herzlichen Glückwunsch %s" +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "diesen Schritt überspringen" -#: ../../include/items.php:3856 ../../mod/dfrn_request.php:721 -#: ../../mod/dfrn_confirm.php:752 -msgid "[Name Withheld]" -msgstr "[Name unterdrückt]" +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "wähle ein Foto aus deinen Fotoalben" -#: ../../include/items.php:4354 ../../mod/admin.php:166 -#: ../../mod/admin.php:1013 ../../mod/admin.php:1226 ../../mod/viewsrc.php:15 -#: ../../mod/notice.php:15 ../../mod/display.php:70 ../../mod/display.php:240 -#: ../../mod/display.php:459 -msgid "Item not found." -msgstr "Beitrag nicht gefunden." +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Bild zurechtschneiden" -#: ../../include/items.php:4393 -msgid "Do you really want to delete this item?" -msgstr "Möchtest du wirklich dieses Item löschen?" +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann." -#: ../../include/items.php:4395 ../../mod/settings.php:1007 -#: ../../mod/settings.php:1013 ../../mod/settings.php:1021 -#: ../../mod/settings.php:1025 ../../mod/settings.php:1030 -#: ../../mod/settings.php:1036 ../../mod/settings.php:1042 -#: ../../mod/settings.php:1048 ../../mod/settings.php:1078 -#: ../../mod/settings.php:1079 ../../mod/settings.php:1080 -#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 -#: ../../mod/contacts.php:332 ../../mod/register.php:230 -#: ../../mod/dfrn_request.php:834 ../../mod/api.php:105 -#: ../../mod/suggest.php:29 ../../mod/message.php:209 -#: ../../mod/profiles.php:620 ../../mod/profiles.php:623 -msgid "Yes" -msgstr "Ja" +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Bearbeitung abgeschlossen" -#: ../../include/items.php:4398 ../../include/conversation.php:1129 -#: ../../mod/settings.php:612 ../../mod/settings.php:638 -#: ../../mod/contacts.php:335 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:848 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 ../../mod/message.php:212 -msgid "Cancel" -msgstr "Abbrechen" +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Bild erfolgreich hochgeladen." -#: ../../include/items.php:4616 -msgid "Archives" -msgstr "Archiv" +#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172 +#: ../../mod/photos.php:834 +msgid "Image upload failed." +msgstr "Hochladen des Bildes gescheitert." -#: ../../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 "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen." +#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 +#: ../../include/conversation.php:126 ../../include/conversation.php:254 +#: ../../include/text.php:1965 ../../include/diaspora.php:1919 +#: ../../view/theme/diabook/theme.php:471 +msgid "photo" +msgstr "Foto" -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Voreingestellte Gruppe für neue Kontakte" +#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 +#: ../../mod/like.php:319 ../../include/conversation.php:121 +#: ../../include/conversation.php:130 ../../include/conversation.php:249 +#: ../../include/conversation.php:258 ../../include/diaspora.php:1919 +#: ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 +msgid "status" +msgstr "Status" -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Alle Kontakte" +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s folgt %2$s %3$s" -#: ../../include/group.php:249 -msgid "edit" -msgstr "bearbeiten" +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag entfernt" -#: ../../include/group.php:270 ../../mod/newmember.php:66 -msgid "Groups" -msgstr "Gruppen" +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Gegenstands-Tag entfernen" -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Gruppe bearbeiten" +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Wähle ein Tag zum Entfernen aus: " -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Neue Gruppe erstellen" +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139 +msgid "Remove" +msgstr "Entfernen" -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Kontakte in keiner Gruppe" +#: ../../mod/filer.php:30 ../../include/conversation.php:1006 +#: ../../include/conversation.php:1024 +msgid "Save to Folder:" +msgstr "In diesem Ordner speichern:" -#: ../../include/group.php:275 ../../mod/network.php:189 -msgid "add" -msgstr "hinzufügen" +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- auswählen -" + +#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63 +#: ../../include/text.php:955 +msgid "Save" +msgstr "Speichern" + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Kontakt hinzugefügt" + +#: ../../mod/item.php:113 +msgid "Unable to locate original post." +msgstr "Konnte den Originalbeitrag nicht finden." + +#: ../../mod/item.php:345 +msgid "Empty post discarded." +msgstr "Leerer Beitrag wurde verworfen." -#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926 -#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955 -#: ../../include/Photo.php:911 ../../include/Photo.php:926 -#: ../../include/Photo.php:933 ../../include/Photo.php:955 -#: ../../include/message.php:144 ../../mod/wall_upload.php:169 +#: ../../mod/item.php:484 ../../mod/wall_upload.php:169 #: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 -#: ../../mod/item.php:463 +#: ../../include/Photo.php:916 ../../include/Photo.php:931 +#: ../../include/Photo.php:938 ../../include/Photo.php:960 +#: ../../include/message.php:144 msgid "Wall Photos" msgstr "Pinnwand-Bilder" -#: ../../include/dba.php:51 ../../include/dba_pdo.php:72 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln." +#: ../../mod/item.php:938 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden." -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Neuen Kontakt hinzufügen" +#: ../../mod/item.php:964 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica." -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Adresse oder Web-Link eingeben" +#: ../../mod/item.php:966 +#, php-format +msgid "You may visit them online at %s" +msgstr "Du kannst sie online unter %s besuchen" -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: bob@example.com, http://example.com/barbara" +#: ../../mod/item.php:967 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest." -#: ../../include/contact_widgets.php:24 +#: ../../mod/item.php:971 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d Einladung verfügbar" -msgstr[1] "%d Einladungen verfügbar" +msgid "%s posted an update." +msgstr "%s hat ein Update veröffentlicht." -#: ../../include/contact_widgets.php:30 -msgid "Find People" -msgstr "Leute finden" +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Gruppe erstellt." -#: ../../include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Konnte die Gruppe nicht erstellen." -#: ../../include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." +msgstr "Gruppe nicht gefunden." -#: ../../include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiel: Robert Morgenstein, Angeln" +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "Gruppenname geändert." -#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:700 -#: ../../mod/directory.php:63 -msgid "Find" -msgstr "Finde" +#: ../../mod/group.php:87 +msgid "Save Group" +msgstr "Gruppe speichern" -#: ../../include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Zufälliges Profil" +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Eine Gruppe von Kontakten/Freunden anlegen." -#: ../../include/contact_widgets.php:71 -msgid "Networks" -msgstr "Netzwerke" +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "Gruppenname:" -#: ../../include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Alle Netzwerke" +#: ../../mod/group.php:113 +msgid "Group removed." +msgstr "Gruppe entfernt." -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 -msgid "Everything" -msgstr "Alles" +#: ../../mod/group.php:115 +msgid "Unable to remove group." +msgstr "Konnte die Gruppe nicht entfernen." -#: ../../include/contact_widgets.php:136 -msgid "Categories" -msgstr "Kategorien" +#: ../../mod/group.php:179 +msgid "Group Editor" +msgstr "Gruppeneditor" -#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:427 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d gemeinsamer Kontakt" -msgstr[1] "%d gemeinsame Kontakte" +#: ../../mod/group.php:192 +msgid "Members" +msgstr "Mitglieder" -#: ../../include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Friendica-Benachrichtigung" +#: ../../mod/apps.php:7 ../../index.php:212 +msgid "You must be logged in to use addons. " +msgstr "Sie müssen angemeldet sein um Addons benutzen zu können." -#: ../../include/enotify.php:21 -msgid "Thank You," -msgstr "Danke," +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Anwendungen" -#: ../../include/enotify.php:23 -#, php-format -msgid "%s Administrator" -msgstr "der Administrator von %s" +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Keine Applikationen installiert." -#: ../../include/enotify.php:30 ../../include/delivery.php:467 -#: ../../include/notifier.php:784 -msgid "noreply" -msgstr "noreply" +#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18 +#: ../../mod/profiles.php:133 ../../mod/profiles.php:162 +#: ../../mod/profiles.php:596 +msgid "Profile not found." +msgstr "Profil nicht gefunden." -#: ../../include/enotify.php:55 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20 +#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133 +msgid "Contact not found." +msgstr "Kontakt nicht gefunden." -#: ../../include/enotify.php:59 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s" +#: ../../mod/dfrn_confirm.php:121 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde." -#: ../../include/enotify.php:61 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s hat dir eine neue private Nachricht auf %2$s geschickt." +#: ../../mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Antwort der Gegenstelle unverständlich." -#: ../../include/enotify.php:62 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s schickte dir %2$s." +#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "Unerwartete Antwort der Gegenstelle: " -#: ../../include/enotify.php:62 -msgid "a private message" -msgstr "eine private Nachricht" +#: ../../mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Bestätigung erfolgreich abgeschlossen." -#: ../../include/enotify.php:63 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten." +#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 +#: ../../mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Gegenstelle meldet: " -#: ../../include/enotify.php:115 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]" +#: ../../mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal." -#: ../../include/enotify.php:122 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]" +#: ../../mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." -#: ../../include/enotify.php:130 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s kommentierte [url=%2$s]deinen %3$s[/url]" +#: ../../mod/dfrn_confirm.php:429 +msgid "Unable to set contact photo." +msgstr "Konnte das Bild des Kontakts nicht speichern." -#: ../../include/enotify.php:140 +#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172 +#: ../../include/diaspora.php:620 #, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s" +msgid "%1$s is now friends with %2$s" +msgstr "%1$s ist nun mit %2$s befreundet" -#: ../../include/enotify.php:141 +#: ../../mod/dfrn_confirm.php:571 #, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s hat einen Beitrag kommentiert, dem du folgst." +msgid "No user record found for '%s' " +msgstr "Für '%s' wurde kein Nutzer gefunden" -#: ../../include/enotify.php:144 ../../include/enotify.php:159 -#: ../../include/enotify.php:172 ../../include/enotify.php:185 -#: ../../include/enotify.php:203 ../../include/enotify.php:216 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren." +#: ../../mod/dfrn_confirm.php:581 +msgid "Our site encryption key is apparently messed up." +msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung." -#: ../../include/enotify.php:151 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben" +#: ../../mod/dfrn_confirm.php:592 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden." -#: ../../include/enotify.php:153 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s schrieb auf %2$s auf deine Pinnwand" +#: ../../mod/dfrn_confirm.php:613 +msgid "Contact record was not found for you on our site." +msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden." -#: ../../include/enotify.php:155 +#: ../../mod/dfrn_confirm.php:627 #, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s hat etwas auf [url=%2$s]deiner Pinnwand[/url] gepostet" +msgid "Site public key not available in contact record for URL %s." +msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server." -#: ../../include/enotify.php:166 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica-Meldung] %s hat dich erwähnt" +#: ../../mod/dfrn_confirm.php:647 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal." -#: ../../include/enotify.php:167 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s erwähnte dich auf %2$s" +#: ../../mod/dfrn_confirm.php:658 +msgid "Unable to set your contact credentials on our system." +msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." -#: ../../include/enotify.php:168 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]erwähnte dich[/url]." +#: ../../mod/dfrn_confirm.php:725 +msgid "Unable to update your contact profile details on our system" +msgstr "Die Updates für dein Profil konnten nicht gespeichert werden" -#: ../../include/enotify.php:179 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt" +#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717 +#: ../../include/items.php:3979 +msgid "[Name Withheld]" +msgstr "[Name unterdrückt]" -#: ../../include/enotify.php:180 +#: ../../mod/dfrn_confirm.php:797 #, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt" +msgid "%1$s has joined %2$s" +msgstr "%1$s ist %2$s beigetreten" -#: ../../include/enotify.php:181 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]." +#: ../../mod/profile.php:21 ../../boot.php:1453 +msgid "Requested profile is not available." +msgstr "Das angefragte Profil ist nicht vorhanden." -#: ../../include/enotify.php:193 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica-Meldung] %1$s hat dich angestupst" +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Tipps für neue Nutzer" -#: ../../include/enotify.php:194 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s hat dich auf %2$s angestupst" +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "Keine Videos ausgewählt" -#: ../../include/enotify.php:195 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]hat dich angestupst[/url]." +#: ../../mod/videos.php:226 ../../mod/photos.php:1031 +msgid "Access to this item is restricted." +msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." -#: ../../include/enotify.php:210 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica-Meldung] %s hat deinen Beitrag getaggt" +#: ../../mod/videos.php:301 ../../include/text.php:1402 +msgid "View Video" +msgstr "Video ansehen" -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s erwähnte deinen Beitrag auf %2$s" +#: ../../mod/videos.php:308 ../../mod/photos.php:1808 +msgid "View Album" +msgstr "Album betrachten" -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]" +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "Neueste Videos" -#: ../../include/enotify.php:223 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica-Meldung] Kontaktanfrage erhalten" +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "Neues Video hochladen" -#: ../../include/enotify.php:224 +#: ../../mod/tagger.php:95 ../../include/conversation.php:266 #, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten" +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" -#: ../../include/enotify.php:225 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten." +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Kontaktvorschlag gesendet." -#: ../../include/enotify.php:228 ../../include/enotify.php:270 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Hier kannst du das Profil betrachten: %s" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Kontakte vorschlagen" -#: ../../include/enotify.php:230 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen." - -#: ../../include/enotify.php:238 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit dir" +msgid "Suggest a friend for %s" +msgstr "Schlage %s einen Kontakt vor" -#: ../../include/enotify.php:239 ../../include/enotify.php:240 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "%1$s teilt mit dir auf %2$s" +#: ../../mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." -#: ../../include/enotify.php:246 -msgid "[Friendica:Notify] You have a new follower" -msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf " +#: ../../mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail." -#: ../../include/enotify.php:247 ../../include/enotify.php:248 +#: ../../mod/lostpass.php:42 #, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s" - -#: ../../include/enotify.php:261 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten" +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen deines Passworts gesteööt\nworden. Um diese Anfrage zu verifizieren folge bitte dem unten stehenden\nLink oder kopiere ihn und füge ihn in die Addressleiste deines Browsers ein.\n\nSolltest du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nEmail bitte.\n\nDein Passwort wird nicht geändern solange wir nicht verifiziert haben, dass\ndu diese Änderung angefragt hast." -#: ../../include/enotify.php:262 +#: ../../mod/lostpass.php:53 #, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten" +msgid "" +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "\nUm deine Identität zu verifizieren folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere Email mit deinem neuen Passwort erhalten. Sobald du dich\nangemeldet hast, kannst du dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s" -#: ../../include/enotify.php:263 +#: ../../mod/lostpass.php:72 #, php-format -msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten." +msgid "Password reset requested at %s" +msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" -#: ../../include/enotify.php:268 -msgid "Name:" -msgstr "Name:" +#: ../../mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." -#: ../../include/enotify.php:269 -msgid "Photo:" -msgstr "Foto:" +#: ../../mod/lostpass.php:109 ../../boot.php:1275 +msgid "Password Reset" +msgstr "Passwort zurücksetzen" -#: ../../include/enotify.php:272 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen." +#: ../../mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." -#: ../../include/enotify.php:280 ../../include/enotify.php:293 -msgid "[Friendica:Notify] Connection accepted" -msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt" +#: ../../mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" -#: ../../include/enotify.php:281 ../../include/enotify.php:294 -#, php-format -msgid "'%1$s' has acepted your connection request at %2$s" -msgstr "'%1$s' hat deine Kontaktanfrage auf %2$s bestätigt" +#: ../../mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere dein neues Passwort - und dann" -#: ../../include/enotify.php:282 ../../include/enotify.php:295 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "%2$s hat deine [url=%1$s]Kontaktanfrage[/url] akzeptiert." +#: ../../mod/lostpass.php:113 +msgid "click here to login" +msgstr "hier klicken, um dich anzumelden" -#: ../../include/enotify.php:285 +#: ../../mod/lostpass.php:114 msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." -msgstr "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen." +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Du kannst das Passwort in den Einstellungen ändern, sobald du dich erfolgreich angemeldet hast." -#: ../../include/enotify.php:288 ../../include/enotify.php:302 +#: ../../mod/lostpass.php:125 #, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst." +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" +msgstr "\nHallo %1$s,\n\ndein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere dein Passwort zu etwas, das du dir leicht merken kannst)." -#: ../../include/enotify.php:298 +#: ../../mod/lostpass.php:131 #, php-format msgid "" -"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." -msgstr "'%1$s' hat sich entschieden dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen." +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t\t" +msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann, und sollte, in den Kontoeinstellungen nach der Anmeldung geändert werden." -#: ../../include/enotify.php:300 +#: ../../mod/lostpass.php:147 #, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " -msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. " +msgid "Your password has been changed at %s" +msgstr "Auf %s wurde dein Passwort geändert" -#: ../../include/enotify.php:313 -msgid "[Friendica System:Notify] registration request" -msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage" +#: ../../mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Hast du dein Passwort vergessen?" -#: ../../include/enotify.php:314 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten" +#: ../../mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet." -#: ../../include/enotify.php:315 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten." +#: ../../mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Spitzname oder E-Mail:" -#: ../../include/enotify.php:318 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +#: ../../mod/lostpass.php:162 +msgid "Reset" +msgstr "Zurücksetzen" -#: ../../include/enotify.php:321 +#: ../../mod/like.php:166 ../../include/conversation.php:137 +#: ../../include/diaspora.php:1935 ../../view/theme/diabook/theme.php:480 #, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Bitte besuche %s um die Anfrage zu bearbeiten." - -#: ../../include/api.php:262 ../../include/api.php:273 -#: ../../include/api.php:374 ../../include/api.php:958 -#: ../../include/api.php:960 -msgid "User not found." -msgstr "Nutzer nicht gefunden." +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s mag %2$ss %3$s" -#: ../../include/api.php:1167 -msgid "There is no status with this id." -msgstr "Es gibt keinen Status mit dieser ID." +#: ../../mod/like.php:168 ../../include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s mag %2$ss %3$s nicht" -#: ../../include/api.php:1237 -msgid "There is no conversation with this id." -msgstr "Es existiert keine Unterhaltung mit dieser ID." +#: ../../mod/ping.php:240 +msgid "{0} wants to be your friend" +msgstr "{0} möchte mit dir in Kontakt treten" -#: ../../include/network.php:892 -msgid "view full size" -msgstr "Volle Größe anzeigen" +#: ../../mod/ping.php:245 +msgid "{0} sent you a message" +msgstr "{0} schickte dir eine Nachricht" -#: ../../include/Scrape.php:584 -msgid " on Last.fm" -msgstr " bei Last.fm" +#: ../../mod/ping.php:250 +msgid "{0} requested registration" +msgstr "{0} möchte sich registrieren" -#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1125 -msgid "Full Name:" -msgstr "Kompletter Name:" +#: ../../mod/ping.php:256 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} kommentierte einen Beitrag von %s" -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "j F, Y" +#: ../../mod/ping.php:261 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0} mag %ss Beitrag" -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "j F" +#: ../../mod/ping.php:266 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0} mag %ss Beitrag nicht" -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Geburtstag:" +#: ../../mod/ping.php:271 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} ist jetzt mit %s befreundet" -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Alter:" +#: ../../mod/ping.php:276 +msgid "{0} posted" +msgstr "{0} hat etwas veröffentlicht" -#: ../../include/profile_advanced.php:43 +#: ../../mod/ping.php:281 #, php-format -msgid "for %1$d %2$s" -msgstr "für %1$d %2$s" +msgid "{0} tagged %s's post with #%s" +msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen" -#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:673 -msgid "Sexual Preference:" -msgstr "Sexuelle Vorlieben:" +#: ../../mod/ping.php:287 +msgid "{0} mentioned you in a post" +msgstr "{0} hat dich in einem Beitrag erwähnt" -#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:675 -msgid "Hometown:" -msgstr "Heimatort:" +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "Keine Kontakte." -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Tags" +#: ../../mod/viewcontacts.php:76 ../../include/text.php:875 +msgid "View Contacts" +msgstr "Kontakte anzeigen" -#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:676 -msgid "Political Views:" -msgstr "Politische Ansichten:" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Invalid request identifier." -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religion:" +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "Verwerfen" -#: ../../include/profile_advanced.php:58 ../../mod/directory.php:144 -msgid "About:" -msgstr "Über:" +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "System" -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Hobbies/Interessen:" +#: ../../mod/notifications.php:83 ../../include/nav.php:143 +msgid "Network" +msgstr "Netzwerk" -#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:680 -msgid "Likes:" -msgstr "Likes:" +#: ../../mod/notifications.php:88 ../../mod/network.php:371 +msgid "Personal" +msgstr "Persönlich" -#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:681 -msgid "Dislikes:" -msgstr "Dislikes:" +#: ../../mod/notifications.php:93 ../../include/nav.php:105 +#: ../../include/nav.php:146 ../../view/theme/diabook/theme.php:123 +msgid "Home" +msgstr "Pinnwand" -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformationen und Soziale Netzwerke:" +#: ../../mod/notifications.php:98 ../../include/nav.php:152 +msgid "Introductions" +msgstr "Kontaktanfragen" -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "Zeige ignorierte Anfragen" -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Literatur/Bücher:" +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "Verberge ignorierte Anfragen" -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Fernsehen:" +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " +msgstr "Benachrichtigungstyp: " -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Filme/Tänze/Kultur/Unterhaltung:" +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "Kontaktvorschlag" -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Liebesleben:" +#: ../../mod/notifications.php:152 +#, php-format +msgid "suggested by %s" +msgstr "vorgeschlagen von %s" -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Arbeit/Beschäftigung:" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" +msgstr "Neue-Kontakt Nachricht senden" -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Schule/Ausbildung:" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" +msgstr "falls anwendbar" -#: ../../include/nav.php:34 ../../mod/navigation.php:20 -msgid "Nothing new here" -msgstr "Keine Neuigkeiten" +#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 +#: ../../mod/admin.php:977 +msgid "Approve" +msgstr "Genehmigen" -#: ../../include/nav.php:38 ../../mod/navigation.php:24 -msgid "Clear notifications" -msgstr "Bereinige Benachrichtigungen" +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "Behauptet dich zu kennen: " -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Diese Sitzung beenden" +#: ../../mod/notifications.php:181 +msgid "yes" +msgstr "ja" -#: ../../include/nav.php:79 -msgid "Your videos" -msgstr "Deine Videos" +#: ../../mod/notifications.php:181 +msgid "no" +msgstr "nein" -#: ../../include/nav.php:81 -msgid "Your personal notes" -msgstr "Deine persönlichen Notizen" +#: ../../mod/notifications.php:188 +msgid "Approve as: " +msgstr "Genehmigen als: " -#: ../../include/nav.php:92 -msgid "Sign in" -msgstr "Anmelden" +#: ../../mod/notifications.php:189 +msgid "Friend" +msgstr "Freund" -#: ../../include/nav.php:105 -msgid "Home Page" -msgstr "Homepage" +#: ../../mod/notifications.php:190 +msgid "Sharer" +msgstr "Teilenden" -#: ../../include/nav.php:109 -msgid "Create an account" -msgstr "Nutzerkonto erstellen" +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "Fan/Verehrer" -#: ../../include/nav.php:114 ../../mod/help.php:84 -msgid "Help" -msgstr "Hilfe" +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "Kontakt-/Freundschaftsanfrage" -#: ../../include/nav.php:114 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" +#: ../../mod/notifications.php:196 +msgid "New Follower" +msgstr "Neuer Bewunderer" -#: ../../include/nav.php:117 -msgid "Apps" -msgstr "Apps" +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "Keine Kontaktanfragen." -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Addon Anwendungen, Dienstprogramme, Spiele" +#: ../../mod/notifications.php:220 ../../include/nav.php:153 +msgid "Notifications" +msgstr "Benachrichtigungen" -#: ../../include/nav.php:119 ../../include/text.php:952 -#: ../../include/text.php:953 ../../mod/search.php:99 -msgid "Search" -msgstr "Suche" +#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 +#: ../../mod/notifications.php:478 +#, php-format +msgid "%s liked %s's post" +msgstr "%s mag %ss Beitrag" -#: ../../include/nav.php:119 -msgid "Search site content" -msgstr "Inhalt der Seite durchsuchen" +#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 +#: ../../mod/notifications.php:488 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s mag %ss Beitrag nicht" -#: ../../include/nav.php:129 -msgid "Conversations on this site" -msgstr "Unterhaltungen auf dieser Seite" +#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 +#: ../../mod/notifications.php:503 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s ist jetzt mit %s befreundet" -#: ../../include/nav.php:131 -msgid "Directory" -msgstr "Verzeichnis" +#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 +#, php-format +msgid "%s created a new post" +msgstr "%s hat einen neuen Beitrag erstellt" -#: ../../include/nav.php:131 -msgid "People directory" -msgstr "Nutzerverzeichnis" +#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 +#: ../../mod/notifications.php:513 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s hat %ss Beitrag kommentiert" -#: ../../include/nav.php:133 -msgid "Information" -msgstr "Information" +#: ../../mod/notifications.php:306 +msgid "No more network notifications." +msgstr "Keine weiteren Netzwerk-Benachrichtigungen." -#: ../../include/nav.php:133 -msgid "Information about this friendica instance" -msgstr "Informationen zu dieser Friendica Instanz" +#: ../../mod/notifications.php:310 +msgid "Network Notifications" +msgstr "Netzwerk Benachrichtigungen" -#: ../../include/nav.php:143 ../../mod/notifications.php:83 -msgid "Network" -msgstr "Netzwerk" +#: ../../mod/notifications.php:336 ../../mod/notify.php:75 +msgid "No more system notifications." +msgstr "Keine weiteren Systembenachrichtigungen." -#: ../../include/nav.php:143 -msgid "Conversations from your friends" -msgstr "Unterhaltungen deiner Kontakte" +#: ../../mod/notifications.php:340 ../../mod/notify.php:79 +msgid "System Notifications" +msgstr "Systembenachrichtigungen" -#: ../../include/nav.php:144 -msgid "Network Reset" -msgstr "Netzwerk zurücksetzen" +#: ../../mod/notifications.php:435 +msgid "No more personal notifications." +msgstr "Keine weiteren persönlichen Benachrichtigungen" -#: ../../include/nav.php:144 -msgid "Load Network page with no filters" -msgstr "Netzwerk-Seite ohne Filter laden" +#: ../../mod/notifications.php:439 +msgid "Personal Notifications" +msgstr "Persönliche Benachrichtigungen" -#: ../../include/nav.php:152 ../../mod/notifications.php:98 -msgid "Introductions" -msgstr "Kontaktanfragen" +#: ../../mod/notifications.php:520 +msgid "No more home notifications." +msgstr "Keine weiteren Pinnwand-Benachrichtigungen" -#: ../../include/nav.php:152 -msgid "Friend Requests" -msgstr "Kontaktanfragen" +#: ../../mod/notifications.php:524 +msgid "Home Notifications" +msgstr "Pinnwand Benachrichtigungen" -#: ../../include/nav.php:153 ../../mod/notifications.php:220 -msgid "Notifications" -msgstr "Benachrichtigungen" +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Quelle (bbcode) Text:" -#: ../../include/nav.php:154 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen anzeigen" +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:" -#: ../../include/nav.php:155 -msgid "Mark all system notifications seen" -msgstr "Markiere alle Systembenachrichtigungen als gelesen" +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Originaltext:" -#: ../../include/nav.php:159 ../../mod/notifications.php:103 -#: ../../mod/message.php:182 -msgid "Messages" -msgstr "Nachrichten" +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (reines HTML): " -#: ../../include/nav.php:159 -msgid "Private mail" -msgstr "Private E-Mail" +#: ../../mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html: " -#: ../../include/nav.php:160 -msgid "Inbox" -msgstr "Eingang" +#: ../../mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " -#: ../../include/nav.php:161 -msgid "Outbox" -msgstr "Ausgang" +#: ../../mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " -#: ../../include/nav.php:162 ../../mod/message.php:9 -msgid "New Message" -msgstr "Neue Nachricht" +#: ../../mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " -#: ../../include/nav.php:165 -msgid "Manage" -msgstr "Verwalten" +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " -#: ../../include/nav.php:165 -msgid "Manage other pages" -msgstr "Andere Seiten verwalten" +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " -#: ../../include/nav.php:168 ../../mod/settings.php:62 -msgid "Delegations" -msgstr "Delegationen" +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Originaltext (Diaspora Format): " -#: ../../include/nav.php:168 ../../mod/delegate.php:124 -msgid "Delegate Page Management" -msgstr "Delegiere das Management für die Seite" +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " -#: ../../include/nav.php:170 -msgid "Account settings" -msgstr "Kontoeinstellungen" +#: ../../mod/navigation.php:20 ../../include/nav.php:34 +msgid "Nothing new here" +msgstr "Keine Neuigkeiten" -#: ../../include/nav.php:173 -msgid "Manage/Edit Profiles" -msgstr "Profile Verwalten/Editieren" +#: ../../mod/navigation.php:24 ../../include/nav.php:38 +msgid "Clear notifications" +msgstr "Bereinige Benachrichtigungen" -#: ../../include/nav.php:175 -msgid "Manage/edit friends and contacts" -msgstr "Freunde und Kontakte verwalten/editieren" +#: ../../mod/message.php:9 ../../include/nav.php:162 +msgid "New Message" +msgstr "Neue Nachricht" -#: ../../include/nav.php:182 ../../mod/admin.php:128 -msgid "Admin" -msgstr "Administration" +#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Kein Empfänger gewählt." -#: ../../include/nav.php:182 -msgid "Site setup and configuration" -msgstr "Einstellungen der Seite und Konfiguration" +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Konnte die Kontaktinformationen nicht finden." -#: ../../include/nav.php:186 -msgid "Navigation" -msgstr "Navigation" +#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Nachricht konnte nicht gesendet werden." -#: ../../include/nav.php:186 -msgid "Site map" -msgstr "Sitemap" +#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Konnte Nachrichten nicht abrufen." -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "Zum Upgraden hier klicken." +#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Nachricht gesendet." -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements." +#: ../../mod/message.php:182 ../../include/nav.php:159 +msgid "Messages" +msgstr "Nachrichten" -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar." +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Möchtest du wirklich diese Nachricht löschen?" -#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507 -msgid "Disallowed profile URL." -msgstr "Nicht erlaubte Profil-URL." +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Nachricht gelöscht." -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "Connect-URL fehlt" +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann." +#: ../../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:1002 ../../include/conversation.php:1020 +msgid "Please enter a link URL:" +msgstr "Bitte gib die URL des Links ein:" -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." +#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Private Nachricht senden" -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." +#: ../../mod/message.php:320 ../../mod/message.php:553 +#: ../../mod/wallmessage.php:144 +msgid "To:" +msgstr "An:" -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Es wurde kein Autor oder Name gefunden." +#: ../../mod/message.php:325 ../../mod/message.php:555 +#: ../../mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Betreff:" -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden." +#: ../../mod/message.php:329 ../../mod/message.php:558 +#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +msgid "Your message:" +msgstr "Deine Nachricht:" -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen." +#: ../../mod/message.php:332 ../../mod/message.php:562 +#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 +#: ../../include/conversation.php:1091 +msgid "Upload photo" +msgstr "Foto hochladen" -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen." +#: ../../mod/message.php:333 ../../mod/message.php:563 +#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 +#: ../../include/conversation.php:1095 +msgid "Insert web link" +msgstr "Einen Link einfügen" -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde." +#: ../../mod/message.php:334 ../../mod/message.php:565 +#: ../../mod/content.php:499 ../../mod/content.php:883 +#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124 +#: ../../mod/photos.php:1545 ../../object/Item.php:364 +#: ../../include/conversation.php:692 ../../include/conversation.php:1109 +msgid "Please wait" +msgstr "Bitte warten" -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können." +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Keine Nachrichten." -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Konnte die Kontaktinformationen nicht empfangen." +#: ../../mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "'Unbekannter Absender - %s" -#: ../../include/follow.php:259 -msgid "following" -msgstr "folgen" +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Du und %s" -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Fehler beim Verarbeiten der Account Datei" +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "%s und du" -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?" +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Fehler! Konnte den Nickname nicht überprüfen." +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D, d. M Y - g:i A" -#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#: ../../mod/message.php:411 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "Nutzer '%s' existiert bereits auf diesem Server!" +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d Nachricht" +msgstr[1] "%d Nachrichten" -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten" +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Nachricht nicht verfügbar." -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Fehler beim Anlegen des Nutzerkontos" +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Nachricht löschen" -#: ../../include/uimport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d Kontakt nicht importiert" -msgstr[1] "%d Kontakte nicht importiert" +#: ../../mod/message.php:548 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst du auf der Profilseite des Absenders antworten." -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" -msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden" +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Antwort senden" -#: ../../include/event.php:11 ../../include/bb2diaspora.php:134 -#: ../../mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y\\, H:i" +#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 +#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41 +#: ../../mod/update_network.php:25 +msgid "[Embedded content - reload page to view]" +msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:140 -msgid "Starts:" -msgstr "Beginnt:" +#: ../../mod/crepair.php:106 +msgid "Contact settings applied." +msgstr "Einstellungen zum Kontakt angewandt." -#: ../../include/event.php:30 ../../include/bb2diaspora.php:148 -msgid "Finishes:" -msgstr "Endet:" +#: ../../mod/crepair.php:108 +msgid "Contact update failed." +msgstr "Konnte den Kontakt nicht aktualisieren." -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "wird nicht mehr gefolgt" +#: ../../mod/crepair.php:139 +msgid "Repair Contact Settings" +msgstr "Kontakteinstellungen reparieren" -#: ../../include/Contact.php:228 ../../include/conversation.php:882 -msgid "Poke" -msgstr "Anstupsen" +#: ../../mod/crepair.php:141 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." -#: ../../include/Contact.php:229 ../../include/conversation.php:876 -msgid "View Status" -msgstr "Pinnwand anschauen" +#: ../../mod/crepair.php:142 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Bitte nutze den Zurück-Button deines Browsers jetzt, wenn du dir unsicher bist, was du tun willst." -#: ../../include/Contact.php:230 ../../include/conversation.php:877 -msgid "View Profile" -msgstr "Profil anschauen" +#: ../../mod/crepair.php:148 +msgid "Return to contact editor" +msgstr "Zurück zum Kontakteditor" -#: ../../include/Contact.php:231 ../../include/conversation.php:878 -msgid "View Photos" -msgstr "Bilder anschauen" +#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +msgid "No mirroring" +msgstr "Kein Spiegeln" -#: ../../include/Contact.php:232 ../../include/Contact.php:255 -#: ../../include/conversation.php:879 -msgid "Network Posts" -msgstr "Netzwerkbeiträge" +#: ../../mod/crepair.php:159 +msgid "Mirror as forwarded posting" +msgstr "Spiegeln als weitergeleitete Beiträge" -#: ../../include/Contact.php:233 ../../include/Contact.php:255 -#: ../../include/conversation.php:880 -msgid "Edit Contact" -msgstr "Kontakt bearbeiten" +#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +msgid "Mirror as my own posting" +msgstr "Spiegeln als meine eigenen Beiträge" -#: ../../include/Contact.php:234 -msgid "Drop Contact" -msgstr "Kontakt löschen" +#: ../../mod/crepair.php:165 ../../mod/admin.php:975 ../../mod/admin.php:987 +#: ../../mod/admin.php:988 ../../mod/admin.php:1001 ../../mod/settings.php:616 +#: ../../mod/settings.php:642 +msgid "Name" +msgstr "Name" -#: ../../include/Contact.php:235 ../../include/Contact.php:255 -#: ../../include/conversation.php:881 -msgid "Send PM" -msgstr "Private Nachricht senden" +#: ../../mod/crepair.php:166 +msgid "Account Nickname" +msgstr "Konto-Spitzname" -#: ../../include/dbstructure.php:23 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein." +#: ../../mod/crepair.php:167 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname - überschreibt Name/Spitzname" -#: ../../include/dbstructure.php:28 -#, php-format +#: ../../mod/crepair.php:168 +msgid "Account URL" +msgstr "Konto-URL" + +#: ../../mod/crepair.php:169 +msgid "Friend Request URL" +msgstr "URL für Freundschaftsanfragen" + +#: ../../mod/crepair.php:170 +msgid "Friend Confirm URL" +msgstr "URL für Bestätigungen von Freundschaftsanfragen" + +#: ../../mod/crepair.php:171 +msgid "Notification Endpoint URL" +msgstr "URL-Endpunkt für Benachrichtigungen" + +#: ../../mod/crepair.php:172 +msgid "Poll/Feed URL" +msgstr "Pull/Feed-URL" + +#: ../../mod/crepair.php:173 +msgid "New photo from this URL" +msgstr "Neues Foto von dieser URL" + +#: ../../mod/crepair.php:174 +msgid "Remote Self" +msgstr "Entfernte Konten" + +#: ../../mod/crepair.php:176 +msgid "Mirror postings from this contact" +msgstr "Spiegle Beiträge dieses Kontakts" + +#: ../../mod/crepair.php:176 msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all deine Kontakte zu senden." -#: ../../include/dbstructure.php:181 -msgid "Errors encountered creating database tables." -msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Zugriff verweigert." -#: ../../include/dbstructure.php:239 -msgid "Errors encountered performing database changes." -msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Personensuche" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Verschiedenes" +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "Keine Übereinstimmungen" -#: ../../include/datetime.php:153 ../../include/datetime.php:285 -msgid "year" -msgstr "Jahr" +#: ../../mod/fbrowser.php:25 ../../boot.php:2121 ../../include/nav.php:78 +#: ../../view/theme/diabook/theme.php:126 +msgid "Photos" +msgstr "Bilder" -#: ../../include/datetime.php:158 ../../include/datetime.php:286 -msgid "month" -msgstr "Monat" +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "Dateien" -#: ../../include/datetime.php:163 ../../include/datetime.php:288 -msgid "day" -msgstr "Tag" +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Kontakte, die keiner Gruppe zugewiesen sind" -#: ../../include/datetime.php:276 -msgid "never" -msgstr "nie" +#: ../../mod/admin.php:57 +msgid "Theme settings updated." +msgstr "Themeneinstellungen aktualisiert." -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "vor weniger als einer Sekunde" +#: ../../mod/admin.php:104 ../../mod/admin.php:596 +msgid "Site" +msgstr "Seite" -#: ../../include/datetime.php:285 -msgid "years" -msgstr "Jahre" +#: ../../mod/admin.php:105 ../../mod/admin.php:970 ../../mod/admin.php:985 +msgid "Users" +msgstr "Nutzer" -#: ../../include/datetime.php:286 -msgid "months" -msgstr "Monate" +#: ../../mod/admin.php:106 ../../mod/admin.php:1074 ../../mod/admin.php:1127 +#: ../../mod/settings.php:57 +msgid "Plugins" +msgstr "Plugins" -#: ../../include/datetime.php:287 -msgid "week" -msgstr "Woche" +#: ../../mod/admin.php:107 ../../mod/admin.php:1295 ../../mod/admin.php:1329 +msgid "Themes" +msgstr "Themen" -#: ../../include/datetime.php:287 -msgid "weeks" -msgstr "Wochen" +#: ../../mod/admin.php:108 +msgid "DB updates" +msgstr "DB Updates" -#: ../../include/datetime.php:288 -msgid "days" -msgstr "Tage" +#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1416 +msgid "Logs" +msgstr "Protokolle" -#: ../../include/datetime.php:289 -msgid "hour" -msgstr "Stunde" +#: ../../mod/admin.php:128 ../../include/nav.php:182 +msgid "Admin" +msgstr "Administration" -#: ../../include/datetime.php:289 -msgid "hours" -msgstr "Stunden" +#: ../../mod/admin.php:129 +msgid "Plugin Features" +msgstr "Plugin Features" -#: ../../include/datetime.php:290 -msgid "minute" -msgstr "Minute" +#: ../../mod/admin.php:131 +msgid "User registrations waiting for confirmation" +msgstr "Nutzeranmeldungen die auf Bestätigung warten" -#: ../../include/datetime.php:290 -msgid "minutes" -msgstr "Minuten" +#: ../../mod/admin.php:190 ../../mod/admin.php:924 +msgid "Normal Account" +msgstr "Normales Konto" -#: ../../include/datetime.php:291 -msgid "second" -msgstr "Sekunde" +#: ../../mod/admin.php:191 ../../mod/admin.php:925 +msgid "Soapbox Account" +msgstr "Marktschreier-Konto" -#: ../../include/datetime.php:291 -msgid "seconds" -msgstr "Sekunden" +#: ../../mod/admin.php:192 ../../mod/admin.php:926 +msgid "Community/Celebrity Account" +msgstr "Forum/Promi-Konto" -#: ../../include/datetime.php:300 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s her" +#: ../../mod/admin.php:193 ../../mod/admin.php:927 +msgid "Automatic Friend Account" +msgstr "Automatisches Freundekonto" -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[kein Betreff]" +#: ../../mod/admin.php:194 +msgid "Blog Account" +msgstr "Blog-Konto" -#: ../../include/delivery.php:456 ../../include/notifier.php:774 -msgid "(no subject)" -msgstr "(kein Betreff)" +#: ../../mod/admin.php:195 +msgid "Private Forum" +msgstr "Privates Forum" -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Unbekannt | Nicht kategorisiert" +#: ../../mod/admin.php:214 +msgid "Message queues" +msgstr "Nachrichten-Warteschlangen" -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Sofort blockieren" +#: ../../mod/admin.php:219 ../../mod/admin.php:595 ../../mod/admin.php:969 +#: ../../mod/admin.php:1073 ../../mod/admin.php:1126 ../../mod/admin.php:1294 +#: ../../mod/admin.php:1328 ../../mod/admin.php:1415 +msgid "Administration" +msgstr "Administration" -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Zwielichtig, Spammer, Selbstdarsteller" +#: ../../mod/admin.php:220 +msgid "Summary" +msgstr "Zusammenfassung" -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Ist mir bekannt, hab aber keine Meinung" +#: ../../mod/admin.php:222 +msgid "Registered users" +msgstr "Registrierte Nutzer" -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, wahrscheinlich harmlos" +#: ../../mod/admin.php:224 +msgid "Pending registrations" +msgstr "Anstehende Anmeldungen" -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Seriös, hat mein Vertrauen" +#: ../../mod/admin.php:225 +msgid "Version" +msgstr "Version" + +#: ../../mod/admin.php:229 +msgid "Active plugins" +msgstr "Aktive Plugins" + +#: ../../mod/admin.php:252 +msgid "Can not parse base url. Must have at least ://" +msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen" + +#: ../../mod/admin.php:500 +msgid "Site settings updated." +msgstr "Seiteneinstellungen aktualisiert." + +#: ../../mod/admin.php:529 ../../mod/settings.php:828 +msgid "No special theme for mobile devices" +msgstr "Kein spezielles Theme für mobile Geräte verwenden." + +#: ../../mod/admin.php:547 +msgid "At post arrival" +msgstr "Beim Empfang von Nachrichten" -#: ../../include/contact_selectors.php:56 ../../mod/admin.php:542 +#: ../../mod/admin.php:548 ../../include/contact_selectors.php:56 msgid "Frequently" msgstr "immer wieder" -#: ../../include/contact_selectors.php:57 ../../mod/admin.php:543 +#: ../../mod/admin.php:549 ../../include/contact_selectors.php:57 msgid "Hourly" msgstr "Stündlich" -#: ../../include/contact_selectors.php:58 ../../mod/admin.php:544 +#: ../../mod/admin.php:550 ../../include/contact_selectors.php:58 msgid "Twice daily" msgstr "Zweimal täglich" -#: ../../include/contact_selectors.php:59 ../../mod/admin.php:545 +#: ../../mod/admin.php:551 ../../include/contact_selectors.php:59 msgid "Daily" msgstr "Täglich" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wöchentlich" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Monatlich" +#: ../../mod/admin.php:556 +msgid "Multi user instance" +msgstr "Mehrbenutzer Instanz" -#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840 -msgid "Friendica" -msgstr "Friendica" +#: ../../mod/admin.php:579 +msgid "Closed" +msgstr "Geschlossen" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" +#: ../../mod/admin.php:580 +msgid "Requires approval" +msgstr "Bedarf der Zustimmung" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../mod/admin.php:581 +msgid "Open" +msgstr "Offen" -#: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 ../../mod/admin.php:964 -#: ../../mod/admin.php:976 ../../mod/admin.php:977 ../../mod/admin.php:992 -msgid "Email" -msgstr "E-Mail" +#: ../../mod/admin.php:585 +msgid "No SSL policy, links will track page SSL state" +msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten" -#: ../../include/contact_selectors.php:80 ../../mod/settings.php:733 -#: ../../mod/dfrn_request.php:842 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../mod/admin.php:586 +msgid "Force all links to use SSL" +msgstr "SSL für alle Links erzwingen" -#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49 -#: ../../mod/newmember.php:51 -msgid "Facebook" -msgstr "Facebook" +#: ../../mod/admin.php:587 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zott" +#: ../../mod/admin.php:597 ../../mod/admin.php:1128 ../../mod/admin.php:1330 +#: ../../mod/admin.php:1417 ../../mod/settings.php:614 +#: ../../mod/settings.php:724 ../../mod/settings.php:798 +#: ../../mod/settings.php:880 ../../mod/settings.php:1113 +msgid "Save Settings" +msgstr "Einstellungen speichern" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../mod/admin.php:598 ../../mod/register.php:255 +msgid "Registration" +msgstr "Registrierung" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/Chat" +#: ../../mod/admin.php:599 +msgid "File upload" +msgstr "Datei hochladen" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: ../../mod/admin.php:600 +msgid "Policies" +msgstr "Regeln" -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" +#: ../../mod/admin.php:601 +msgid "Advanced" +msgstr "Erweitert" -#: ../../include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" +#: ../../mod/admin.php:602 +msgid "Performance" +msgstr "Performance" -#: ../../include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" +#: ../../mod/admin.php:603 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen." -#: ../../include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Diaspora" +#: ../../mod/admin.php:606 +msgid "Site name" +msgstr "Seitenname" -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "StatusNet" +#: ../../mod/admin.php:607 +msgid "Host name" +msgstr "Host Name" -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" +#: ../../mod/admin.php:608 +msgid "Banner/Logo" +msgstr "Banner/Logo" -#: ../../include/diaspora.php:620 ../../include/conversation.php:172 -#: ../../mod/dfrn_confirm.php:486 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s ist nun mit %2$s befreundet" +#: ../../mod/admin.php:609 +msgid "Additional Info" +msgstr "Zusätzliche Informationen" -#: ../../include/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "Freigabe-Benachrichtigung von Diaspora" +#: ../../mod/admin.php:609 +msgid "" +"For public servers: you can add additional information here that will be " +"listed at dir.friendica.com/siteinfo." +msgstr "Für öffentliche Server kannst du hier zusätzliche Informationen angeben, die dann auf dir.friendica.com/siteinfo angezeigt werden." -#: ../../include/diaspora.php:2312 -msgid "Attachments:" -msgstr "Anhänge:" +#: ../../mod/admin.php:610 +msgid "System language" +msgstr "Systemsprache" -#: ../../include/conversation.php:140 ../../mod/like.php:168 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s mag %2$ss %3$s nicht" +#: ../../mod/admin.php:611 +msgid "System theme" +msgstr "Systemweites Theme" -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s" +#: ../../mod/admin.php:611 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - Theme-Einstellungen ändern" -#: ../../include/conversation.php:211 ../../include/text.php:1004 -msgid "poked" -msgstr "stupste" +#: ../../mod/admin.php:612 +msgid "Mobile system theme" +msgstr "Systemweites mobiles Theme" -#: ../../include/conversation.php:227 ../../mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s ist momentan %2$s" +#: ../../mod/admin.php:612 +msgid "Theme for mobile devices" +msgstr "Thema für mobile Geräte" -#: ../../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 hat %2$ss %3$s mit %4$s getaggt" +#: ../../mod/admin.php:613 +msgid "SSL link policy" +msgstr "Regeln für SSL Links" -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "Nachricht/Beitrag" +#: ../../mod/admin.php:613 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Bestimmt, ob generierte Links SSL verwenden müssen" -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert" +#: ../../mod/admin.php:614 +msgid "Force SSL" +msgstr "Erzwinge SSL" -#: ../../include/conversation.php:613 ../../object/Item.php:129 -#: ../../mod/photos.php:1651 ../../mod/content.php:437 -#: ../../mod/content.php:740 -msgid "Select" -msgstr "Auswählen" +#: ../../mod/admin.php:614 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife." -#: ../../include/conversation.php:614 ../../object/Item.php:130 -#: ../../mod/group.php:171 ../../mod/settings.php:674 -#: ../../mod/contacts.php:709 ../../mod/admin.php:968 -#: ../../mod/photos.php:1652 ../../mod/content.php:438 -#: ../../mod/content.php:741 -msgid "Delete" -msgstr "Löschen" +#: ../../mod/admin.php:615 +msgid "Old style 'Share'" +msgstr "Altes \"Teilen\" Element" -#: ../../include/conversation.php:654 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../mod/content.php:471 -#: ../../mod/content.php:852 ../../mod/content.php:853 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Das Profil von %s auf %s betrachten." +#: ../../mod/admin.php:615 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen." -#: ../../include/conversation.php:666 ../../object/Item.php:316 -msgid "Categories:" -msgstr "Kategorien:" +#: ../../mod/admin.php:616 +msgid "Hide help entry from navigation menu" +msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü" -#: ../../include/conversation.php:667 ../../object/Item.php:317 -msgid "Filed under:" -msgstr "Abgelegt unter:" +#: ../../mod/admin.php:616 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden." -#: ../../include/conversation.php:674 ../../object/Item.php:340 -#: ../../mod/content.php:481 ../../mod/content.php:864 -#, php-format -msgid "%s from %s" -msgstr "%s von %s" +#: ../../mod/admin.php:617 +msgid "Single user instance" +msgstr "Ein-Nutzer Instanz" -#: ../../include/conversation.php:690 ../../mod/content.php:497 -msgid "View in context" -msgstr "Im Zusammenhang betrachten" +#: ../../mod/admin.php:617 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt." -#: ../../include/conversation.php:692 ../../include/conversation.php:1109 -#: ../../object/Item.php:364 ../../mod/wallmessage.php:156 -#: ../../mod/editpost.php:124 ../../mod/photos.php:1543 -#: ../../mod/message.php:334 ../../mod/message.php:565 -#: ../../mod/content.php:499 ../../mod/content.php:883 -msgid "Please wait" -msgstr "Bitte warten" +#: ../../mod/admin.php:618 +msgid "Maximum image size" +msgstr "Maximale Bildgröße" -#: ../../include/conversation.php:772 -msgid "remove" -msgstr "löschen" +#: ../../mod/admin.php:618 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit." -#: ../../include/conversation.php:776 -msgid "Delete Selected Items" -msgstr "Lösche die markierten Beiträge" +#: ../../mod/admin.php:619 +msgid "Maximum image length" +msgstr "Maximale Bildlänge" -#: ../../include/conversation.php:875 -msgid "Follow Thread" -msgstr "Folge der Unterhaltung" +#: ../../mod/admin.php:619 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet." -#: ../../include/conversation.php:944 -#, php-format -msgid "%s likes this." -msgstr "%s mag das." +#: ../../mod/admin.php:620 +msgid "JPEG image quality" +msgstr "Qualität des JPEG Bildes" -#: ../../include/conversation.php:944 -#, php-format -msgid "%s doesn't like this." -msgstr "%s mag das nicht." +#: ../../mod/admin.php:620 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust." -#: ../../include/conversation.php:949 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d Personen mögen das" +#: ../../mod/admin.php:622 +msgid "Register policy" +msgstr "Registrierungsmethode" -#: ../../include/conversation.php:952 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d Personen mögen das nicht" +#: ../../mod/admin.php:623 +msgid "Maximum Daily Registrations" +msgstr "Maximum täglicher Registrierungen" -#: ../../include/conversation.php:966 -msgid "and" -msgstr "und" +#: ../../mod/admin.php:623 +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 "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt." -#: ../../include/conversation.php:972 -#, php-format -msgid ", and %d other people" -msgstr " und %d andere" - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s like this." -msgstr "%s mögen das." +#: ../../mod/admin.php:624 +msgid "Register text" +msgstr "Registrierungstext" -#: ../../include/conversation.php:974 -#, php-format -msgid "%s don't like this." -msgstr "%s mögen das nicht." +#: ../../mod/admin.php:624 +msgid "Will be displayed prominently on the registration page." +msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt." -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Visible to everybody" -msgstr "Für jedermann sichtbar" +#: ../../mod/admin.php:625 +msgid "Accounts abandoned after x days" +msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -#: ../../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 "Bitte gib die URL des Links ein:" +#: ../../mod/admin.php:625 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit." -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter a video link/URL:" -msgstr "Bitte Link/URL zum Video einfügen:" +#: ../../mod/admin.php:626 +msgid "Allowed friend domains" +msgstr "Erlaubte Domains für Kontakte" -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Please enter an audio link/URL:" -msgstr "Bitte Link/URL zum Audio einfügen:" +#: ../../mod/admin.php:626 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -msgid "Tag term:" -msgstr "Tag:" +#: ../../mod/admin.php:627 +msgid "Allowed email domains" +msgstr "Erlaubte Domains für E-Mails" -#: ../../include/conversation.php:1006 ../../include/conversation.php:1024 -#: ../../mod/filer.php:30 -msgid "Save to Folder:" -msgstr "In diesem Ordner speichern:" +#: ../../mod/admin.php:627 +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 der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 -msgid "Where are you right now?" -msgstr "Wo hältst du dich jetzt gerade auf?" +#: ../../mod/admin.php:628 +msgid "Block public" +msgstr "Öffentlichen Zugriff blockieren" -#: ../../include/conversation.php:1008 -msgid "Delete item(s)?" -msgstr "Einträge löschen?" +#: ../../mod/admin.php:628 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist." -#: ../../include/conversation.php:1051 -msgid "Post to Email" -msgstr "An E-Mail senden" +#: ../../mod/admin.php:629 +msgid "Force publish" +msgstr "Erzwinge Veröffentlichung" -#: ../../include/conversation.php:1056 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist." +#: ../../mod/admin.php:629 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen." -#: ../../include/conversation.php:1057 ../../mod/settings.php:1025 -msgid "Hide your profile details from unknown viewers?" -msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" +#: ../../mod/admin.php:630 +msgid "Global directory update URL" +msgstr "URL für Updates beim weltweiten Verzeichnis" -#: ../../include/conversation.php:1090 ../../mod/photos.php:1542 -msgid "Share" -msgstr "Teilen" +#: ../../mod/admin.php:630 +msgid "" +"URL to update the global directory. If this is not set, the global directory" +" is completely unavailable to the application." +msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar." -#: ../../include/conversation.php:1091 ../../mod/wallmessage.php:154 -#: ../../mod/editpost.php:110 ../../mod/message.php:332 -#: ../../mod/message.php:562 -msgid "Upload photo" -msgstr "Foto hochladen" +#: ../../mod/admin.php:631 +msgid "Allow threaded items" +msgstr "Erlaube Threads in Diskussionen" -#: ../../include/conversation.php:1092 ../../mod/editpost.php:111 -msgid "upload photo" -msgstr "Bild hochladen" +#: ../../mod/admin.php:631 +msgid "Allow infinite level threading for items on this site." +msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite." -#: ../../include/conversation.php:1093 ../../mod/editpost.php:112 -msgid "Attach file" -msgstr "Datei anhängen" +#: ../../mod/admin.php:632 +msgid "Private posts by default for new users" +msgstr "Private Beiträge als Standard für neue Nutzer" -#: ../../include/conversation.php:1094 ../../mod/editpost.php:113 -msgid "attach file" -msgstr "Datei anhängen" +#: ../../mod/admin.php:632 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen." -#: ../../include/conversation.php:1095 ../../mod/wallmessage.php:155 -#: ../../mod/editpost.php:114 ../../mod/message.php:333 -#: ../../mod/message.php:563 -msgid "Insert web link" -msgstr "Einen Link einfügen" +#: ../../mod/admin.php:633 +msgid "Don't include post content in email notifications" +msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden" -#: ../../include/conversation.php:1096 ../../mod/editpost.php:115 -msgid "web link" -msgstr "Weblink" +#: ../../mod/admin.php:633 +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 "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden." -#: ../../include/conversation.php:1097 ../../mod/editpost.php:116 -msgid "Insert video link" -msgstr "Video-Adresse einfügen" +#: ../../mod/admin.php:634 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten." -#: ../../include/conversation.php:1098 ../../mod/editpost.php:117 -msgid "video link" -msgstr "Video-Link" +#: ../../mod/admin.php:634 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt." -#: ../../include/conversation.php:1099 ../../mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Audio-Adresse einfügen" +#: ../../mod/admin.php:635 +msgid "Don't embed private images in posts" +msgstr "Private Bilder nicht in Beiträgen einbetten." -#: ../../include/conversation.php:1100 ../../mod/editpost.php:119 -msgid "audio link" -msgstr "Audio-Link" +#: ../../mod/admin.php:635 +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 "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert." -#: ../../include/conversation.php:1101 ../../mod/editpost.php:120 -msgid "Set your location" -msgstr "Deinen Standort festlegen" +#: ../../mod/admin.php:636 +msgid "Allow Users to set remote_self" +msgstr "Nutzern erlauben das remote_self Flag zu setzen" -#: ../../include/conversation.php:1102 ../../mod/editpost.php:121 -msgid "set location" -msgstr "Ort setzen" +#: ../../mod/admin.php:636 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet." -#: ../../include/conversation.php:1103 ../../mod/editpost.php:122 -msgid "Clear browser location" -msgstr "Browser-Standort leeren" +#: ../../mod/admin.php:637 +msgid "Block multiple registrations" +msgstr "Unterbinde Mehrfachregistrierung" -#: ../../include/conversation.php:1104 ../../mod/editpost.php:123 -msgid "clear location" -msgstr "Ort löschen" +#: ../../mod/admin.php:637 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen." -#: ../../include/conversation.php:1106 ../../mod/editpost.php:137 -msgid "Set title" -msgstr "Titel setzen" +#: ../../mod/admin.php:638 +msgid "OpenID support" +msgstr "OpenID Unterstützung" -#: ../../include/conversation.php:1108 ../../mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (kommasepariert)" +#: ../../mod/admin.php:638 +msgid "OpenID support for registration and logins." +msgstr "OpenID-Unterstützung für Registrierung und Login." -#: ../../include/conversation.php:1110 ../../mod/editpost.php:125 -msgid "Permission settings" -msgstr "Berechtigungseinstellungen" +#: ../../mod/admin.php:639 +msgid "Fullname check" +msgstr "Namen auf Vollständigkeit überprüfen" -#: ../../include/conversation.php:1111 -msgid "permissions" -msgstr "Zugriffsrechte" +#: ../../mod/admin.php:639 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden." -#: ../../include/conversation.php:1119 ../../mod/editpost.php:133 -msgid "CC: email addresses" -msgstr "Cc: E-Mail-Addressen" +#: ../../mod/admin.php:640 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 Reguläre Ausdrücke" -#: ../../include/conversation.php:1120 ../../mod/editpost.php:134 -msgid "Public post" -msgstr "Öffentlicher Beitrag" +#: ../../mod/admin.php:640 +msgid "Use PHP UTF8 regular expressions" +msgstr "PHP UTF8 Ausdrücke verwenden" -#: ../../include/conversation.php:1122 ../../mod/editpost.php:140 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Z.B.: bob@example.com, mary@example.com" +#: ../../mod/admin.php:641 +msgid "Show Community Page" +msgstr "Gemeinschaftsseite anzeigen" -#: ../../include/conversation.php:1126 ../../object/Item.php:687 -#: ../../mod/editpost.php:145 ../../mod/photos.php:1564 -#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 -#: ../../mod/content.php:719 -msgid "Preview" -msgstr "Vorschau" +#: ../../mod/admin.php:641 +msgid "" +"Display a Community page showing all recent public postings on this site." +msgstr "Zeige die Gemeinschaftsseite mit allen öffentlichen Beiträgen auf diesem Server." -#: ../../include/conversation.php:1135 -msgid "Post to Groups" -msgstr "Poste an Gruppe" +#: ../../mod/admin.php:642 +msgid "Enable OStatus support" +msgstr "OStatus Unterstützung aktivieren" -#: ../../include/conversation.php:1136 -msgid "Post to Contacts" -msgstr "Poste an Kontakte" +#: ../../mod/admin.php:642 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt." -#: ../../include/conversation.php:1137 -msgid "Private post" -msgstr "Privater Beitrag" +#: ../../mod/admin.php:643 +msgid "OStatus conversation completion interval" +msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen" -#: ../../include/text.php:296 -msgid "newer" -msgstr "neuer" +#: ../../mod/admin.php:643 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein." -#: ../../include/text.php:298 -msgid "older" -msgstr "älter" +#: ../../mod/admin.php:644 +msgid "Enable Diaspora support" +msgstr "Diaspora-Support aktivieren" -#: ../../include/text.php:303 -msgid "prev" -msgstr "vorige" +#: ../../mod/admin.php:644 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Verwende die eingebaute Diaspora-Verknüpfung." -#: ../../include/text.php:305 -msgid "first" -msgstr "erste" +#: ../../mod/admin.php:645 +msgid "Only allow Friendica contacts" +msgstr "Nur Friendica-Kontakte erlauben" -#: ../../include/text.php:337 -msgid "last" -msgstr "letzte" +#: ../../mod/admin.php:645 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert." -#: ../../include/text.php:340 -msgid "next" -msgstr "nächste" +#: ../../mod/admin.php:646 +msgid "Verify SSL" +msgstr "SSL Überprüfen" -#: ../../include/text.php:854 -msgid "No contacts" -msgstr "Keine Kontakte" +#: ../../mod/admin.php:646 +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 "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann." -#: ../../include/text.php:863 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d Kontakt" -msgstr[1] "%d Kontakte" +#: ../../mod/admin.php:647 +msgid "Proxy user" +msgstr "Proxy Nutzer" -#: ../../include/text.php:875 ../../mod/viewcontacts.php:76 -msgid "View Contacts" -msgstr "Kontakte anzeigen" +#: ../../mod/admin.php:648 +msgid "Proxy URL" +msgstr "Proxy URL" -#: ../../include/text.php:955 ../../mod/editpost.php:109 -#: ../../mod/notes.php:63 ../../mod/filer.php:31 -msgid "Save" -msgstr "Speichern" +#: ../../mod/admin.php:649 +msgid "Network timeout" +msgstr "Netzwerk Wartezeit" -#: ../../include/text.php:1004 -msgid "poke" -msgstr "anstupsen" +#: ../../mod/admin.php:649 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)." -#: ../../include/text.php:1005 -msgid "ping" -msgstr "anpingen" +#: ../../mod/admin.php:650 +msgid "Delivery interval" +msgstr "Zustellungsintervall" -#: ../../include/text.php:1005 -msgid "pinged" -msgstr "pingte" +#: ../../mod/admin.php:650 +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 "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." -#: ../../include/text.php:1006 -msgid "prod" -msgstr "knuffen" +#: ../../mod/admin.php:651 +msgid "Poll interval" +msgstr "Abfrageintervall" -#: ../../include/text.php:1006 -msgid "prodded" -msgstr "knuffte" +#: ../../mod/admin.php:651 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet." -#: ../../include/text.php:1007 -msgid "slap" -msgstr "ohrfeigen" +#: ../../mod/admin.php:652 +msgid "Maximum Load Average" +msgstr "Maximum Load Average" -#: ../../include/text.php:1007 -msgid "slapped" -msgstr "ohrfeigte" +#: ../../mod/admin.php:652 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50" -#: ../../include/text.php:1008 -msgid "finger" -msgstr "befummeln" +#: ../../mod/admin.php:654 +msgid "Use MySQL full text engine" +msgstr "Nutze MySQL full text engine" -#: ../../include/text.php:1008 -msgid "fingered" -msgstr "befummelte" +#: ../../mod/admin.php:654 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden." -#: ../../include/text.php:1009 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" +#: ../../mod/admin.php:655 +msgid "Suppress Language" +msgstr "Sprachinformation unterdrücken" -#: ../../include/text.php:1009 -msgid "rebuffed" -msgstr "abfuhrerteilte" +#: ../../mod/admin.php:655 +msgid "Suppress language information in meta information about a posting." +msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags." -#: ../../include/text.php:1023 -msgid "happy" -msgstr "glücklich" +#: ../../mod/admin.php:656 +msgid "Path to item cache" +msgstr "Pfad zum Eintrag Cache" -#: ../../include/text.php:1024 -msgid "sad" -msgstr "traurig" +#: ../../mod/admin.php:657 +msgid "Cache duration in seconds" +msgstr "Cache-Dauer in Sekunden" -#: ../../include/text.php:1025 -msgid "mellow" -msgstr "sanft" +#: ../../mod/admin.php:657 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "Wie lange sollen die gecachedten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item Cache zu deaktivieren, setze diesen Wert auf -1." -#: ../../include/text.php:1026 -msgid "tired" -msgstr "müde" +#: ../../mod/admin.php:658 +msgid "Maximum numbers of comments per post" +msgstr "Maximale Anzahl von Kommentaren pro Beitrag" -#: ../../include/text.php:1027 -msgid "perky" -msgstr "frech" +#: ../../mod/admin.php:658 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100." -#: ../../include/text.php:1028 -msgid "angry" -msgstr "sauer" +#: ../../mod/admin.php:659 +msgid "Path for lock file" +msgstr "Pfad für die Sperrdatei" -#: ../../include/text.php:1029 -msgid "stupified" -msgstr "verblüfft" +#: ../../mod/admin.php:660 +msgid "Temp path" +msgstr "Temp Pfad" -#: ../../include/text.php:1030 -msgid "puzzled" -msgstr "verwirrt" +#: ../../mod/admin.php:661 +msgid "Base path to installation" +msgstr "Basis-Pfad zur Installation" -#: ../../include/text.php:1031 -msgid "interested" -msgstr "interessiert" +#: ../../mod/admin.php:662 +msgid "Disable picture proxy" +msgstr "Bilder Proxy deaktivieren" -#: ../../include/text.php:1032 -msgid "bitter" -msgstr "verbittert" +#: ../../mod/admin.php:662 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "Der Proxy für Bilder verbessert die Leitung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen." -#: ../../include/text.php:1033 -msgid "cheerful" -msgstr "fröhlich" +#: ../../mod/admin.php:664 +msgid "New base url" +msgstr "Neue Basis-URL" -#: ../../include/text.php:1034 -msgid "alive" -msgstr "lebendig" +#: ../../mod/admin.php:666 +msgid "Disable noscrape" +msgstr "Noscrape deaktivieren" -#: ../../include/text.php:1035 -msgid "annoyed" -msgstr "verärgert" +#: ../../mod/admin.php:666 +msgid "" +"The noscrape feature speeds up directory submissions by using JSON data " +"instead of HTML scraping. Disabling it will cause higher load on your server" +" and the directory server." +msgstr "Das noscrape Feature beschleunigt Verzeichnis einsendungen indem JSON Daten gesendet werden anstelle vom analysieren der HTML Struktur. Wird es deaktiviert, wird mehr Last auf deinem Server und den Verzichnis Servern verursacht." -#: ../../include/text.php:1036 -msgid "anxious" -msgstr "unruhig" +#: ../../mod/admin.php:683 +msgid "Update has been marked successful" +msgstr "Update wurde als erfolgreich markiert" -#: ../../include/text.php:1037 -msgid "cranky" -msgstr "schrullig" +#: ../../mod/admin.php:691 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt." -#: ../../include/text.php:1038 -msgid "disturbed" -msgstr "verstört" +#: ../../mod/admin.php:694 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s" -#: ../../include/text.php:1039 -msgid "frustrated" -msgstr "frustriert" +#: ../../mod/admin.php:706 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s" -#: ../../include/text.php:1040 -msgid "motivated" -msgstr "motiviert" +#: ../../mod/admin.php:709 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s war erfolgreich." -#: ../../include/text.php:1041 -msgid "relaxed" -msgstr "entspannt" +#: ../../mod/admin.php:713 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status." -#: ../../include/text.php:1042 -msgid "surprised" -msgstr "überrascht" +#: ../../mod/admin.php:715 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste." -#: ../../include/text.php:1210 -msgid "Monday" -msgstr "Montag" +#: ../../mod/admin.php:734 +msgid "No failed updates." +msgstr "Keine fehlgeschlagenen Updates." -#: ../../include/text.php:1210 -msgid "Tuesday" -msgstr "Dienstag" +#: ../../mod/admin.php:735 +msgid "Check database structure" +msgstr "Datenbank Struktur überprüfen" -#: ../../include/text.php:1210 -msgid "Wednesday" -msgstr "Mittwoch" +#: ../../mod/admin.php:740 +msgid "Failed Updates" +msgstr "Fehlgeschlagene Updates" -#: ../../include/text.php:1210 -msgid "Thursday" -msgstr "Donnerstag" +#: ../../mod/admin.php:741 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben." -#: ../../include/text.php:1210 -msgid "Friday" -msgstr "Freitag" +#: ../../mod/admin.php:742 +msgid "Mark success (if update was manually applied)" +msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" -#: ../../include/text.php:1210 -msgid "Saturday" -msgstr "Samstag" +#: ../../mod/admin.php:743 +msgid "Attempt to execute this update step automatically" +msgstr "Versuchen, diesen Schritt automatisch auszuführen" -#: ../../include/text.php:1210 -msgid "Sunday" -msgstr "Sonntag" +#: ../../mod/admin.php:775 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "\nHallo %1$s,\n\nauf %2$s wurde ein Account für dich angelegt." -#: ../../include/text.php:1214 -msgid "January" -msgstr "Januar" +#: ../../mod/admin.php:778 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tThank you and welcome to %4$s." +msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%1$s\n\tBenutzernamename:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %4$s." -#: ../../include/text.php:1214 -msgid "February" -msgstr "Februar" +#: ../../mod/admin.php:810 ../../include/user.php:413 +#, php-format +msgid "Registration details for %s" +msgstr "Details der Registration von %s" -#: ../../include/text.php:1214 -msgid "March" -msgstr "März" +#: ../../mod/admin.php:822 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s Benutzer geblockt/freigegeben" +msgstr[1] "%s Benutzer geblockt/freigegeben" -#: ../../include/text.php:1214 -msgid "April" -msgstr "April" +#: ../../mod/admin.php:829 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s Nutzer gelöscht" +msgstr[1] "%s Nutzer gelöscht" -#: ../../include/text.php:1214 -msgid "May" -msgstr "Mai" +#: ../../mod/admin.php:868 +#, php-format +msgid "User '%s' deleted" +msgstr "Nutzer '%s' gelöscht" -#: ../../include/text.php:1214 -msgid "June" -msgstr "Juni" +#: ../../mod/admin.php:876 +#, php-format +msgid "User '%s' unblocked" +msgstr "Nutzer '%s' entsperrt" -#: ../../include/text.php:1214 -msgid "July" -msgstr "Juli" +#: ../../mod/admin.php:876 +#, php-format +msgid "User '%s' blocked" +msgstr "Nutzer '%s' gesperrt" -#: ../../include/text.php:1214 -msgid "August" -msgstr "August" +#: ../../mod/admin.php:971 +msgid "Add User" +msgstr "Nutzer hinzufügen" -#: ../../include/text.php:1214 -msgid "September" -msgstr "September" +#: ../../mod/admin.php:972 +msgid "select all" +msgstr "Alle auswählen" -#: ../../include/text.php:1214 -msgid "October" -msgstr "Oktober" +#: ../../mod/admin.php:973 +msgid "User registrations waiting for confirm" +msgstr "Neuanmeldungen, die auf deine Bestätigung warten" -#: ../../include/text.php:1214 -msgid "November" -msgstr "November" +#: ../../mod/admin.php:974 +msgid "User waiting for permanent deletion" +msgstr "Nutzer wartet auf permanente Löschung" -#: ../../include/text.php:1214 -msgid "December" -msgstr "Dezember" +#: ../../mod/admin.php:975 +msgid "Request date" +msgstr "Anfragedatum" -#: ../../include/text.php:1403 ../../mod/videos.php:301 -msgid "View Video" -msgstr "Video ansehen" +#: ../../mod/admin.php:975 ../../mod/admin.php:987 ../../mod/admin.php:988 +#: ../../mod/admin.php:1003 ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 +msgid "Email" +msgstr "E-Mail" -#: ../../include/text.php:1435 -msgid "bytes" -msgstr "Byte" +#: ../../mod/admin.php:976 +msgid "No registrations." +msgstr "Keine Neuanmeldungen." -#: ../../include/text.php:1459 ../../include/text.php:1471 -msgid "Click to open/close" -msgstr "Zum öffnen/schließen klicken" +#: ../../mod/admin.php:978 +msgid "Deny" +msgstr "Verwehren" -#: ../../include/text.php:1645 ../../include/text.php:1655 -#: ../../mod/events.php:335 -msgid "link to source" -msgstr "Link zum Originalbeitrag" +#: ../../mod/admin.php:982 +msgid "Site admin" +msgstr "Seitenadministrator" -#: ../../include/text.php:1700 ../../include/user.php:247 -msgid "default" -msgstr "Standard" +#: ../../mod/admin.php:983 +msgid "Account expired" +msgstr "Account ist abgelaufen" -#: ../../include/text.php:1712 -msgid "Select an alternate language" -msgstr "Alternative Sprache auswählen" +#: ../../mod/admin.php:986 +msgid "New User" +msgstr "Neuer Nutzer" -#: ../../include/text.php:1968 -msgid "activity" -msgstr "Aktivität" +#: ../../mod/admin.php:987 ../../mod/admin.php:988 +msgid "Register date" +msgstr "Anmeldedatum" -#: ../../include/text.php:1970 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../mod/content.php:605 -msgid "comment" -msgid_plural "comments" -msgstr[0] "Kommentar" -msgstr[1] "Kommentare" +#: ../../mod/admin.php:987 ../../mod/admin.php:988 +msgid "Last login" +msgstr "Letzte Anmeldung" -#: ../../include/text.php:1971 -msgid "post" -msgstr "Beitrag" +#: ../../mod/admin.php:987 ../../mod/admin.php:988 +msgid "Last item" +msgstr "Letzter Beitrag" -#: ../../include/text.php:2139 -msgid "Item filed" -msgstr "Beitrag abgelegt" +#: ../../mod/admin.php:987 +msgid "Deleted since" +msgstr "Gelöscht seit" -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Abgemeldet." +#: ../../mod/admin.php:988 ../../mod/settings.php:36 +msgid "Account" +msgstr "Nutzerkonto" -#: ../../include/auth.php:112 ../../include/auth.php:175 -#: ../../mod/openid.php:93 -msgid "Login failed." -msgstr "Anmeldung fehlgeschlagen." +#: ../../mod/admin.php:990 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?" -#: ../../include/auth.php:128 ../../include/user.php:67 +#: ../../mod/admin.php:991 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast." +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist du sicher?" -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "The error message was:" -msgstr "Die Fehlermeldung lautete:" +#: ../../mod/admin.php:1001 +msgid "Name of the new user." +msgstr "Name des neuen Nutzers" -#: ../../include/bbcode.php:449 ../../include/bbcode.php:1050 -#: ../../include/bbcode.php:1051 -msgid "Image/photo" -msgstr "Bild/Foto" +#: ../../mod/admin.php:1002 +msgid "Nickname" +msgstr "Spitzname" -#: ../../include/bbcode.php:545 +#: ../../mod/admin.php:1002 +msgid "Nickname of the new user." +msgstr "Spitznamen für den neuen Nutzer" + +#: ../../mod/admin.php:1003 +msgid "Email address of the new user." +msgstr "Email Adresse des neuen Nutzers" + +#: ../../mod/admin.php:1036 #, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" +msgid "Plugin %s disabled." +msgstr "Plugin %s deaktiviert." -#: ../../include/bbcode.php:579 +#: ../../mod/admin.php:1040 #, php-format -msgid "" -"%s wrote the following post" -msgstr "%s schrieb den folgenden Beitrag" +msgid "Plugin %s enabled." +msgstr "Plugin %s aktiviert." -#: ../../include/bbcode.php:1014 ../../include/bbcode.php:1034 -msgid "$1 wrote:" -msgstr "$1 hat geschrieben:" +#: ../../mod/admin.php:1050 ../../mod/admin.php:1266 +msgid "Disable" +msgstr "Ausschalten" -#: ../../include/bbcode.php:1059 ../../include/bbcode.php:1060 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" +#: ../../mod/admin.php:1052 ../../mod/admin.php:1268 +msgid "Enable" +msgstr "Einschalten" -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Willkommen " +#: ../../mod/admin.php:1075 ../../mod/admin.php:1296 +msgid "Toggle" +msgstr "Umschalten" -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Bitte lade ein Profilbild hoch." +#: ../../mod/admin.php:1083 ../../mod/admin.php:1306 +msgid "Author: " +msgstr "Autor:" -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Willkommen zurück " +#: ../../mod/admin.php:1084 ../../mod/admin.php:1307 +msgid "Maintainer: " +msgstr "Betreuer:" -#: ../../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 "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)." +#: ../../mod/admin.php:1226 +msgid "No themes found." +msgstr "Keine Themen gefunden." -#: ../../include/oembed.php:205 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" +#: ../../mod/admin.php:1288 +msgid "Screenshot" +msgstr "Bildschirmfoto" -#: ../../include/oembed.php:214 -msgid "Embedding disabled" -msgstr "Einbettungen deaktiviert" +#: ../../mod/admin.php:1334 +msgid "[Experimental]" +msgstr "[Experimentell]" -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Männlich" +#: ../../mod/admin.php:1335 +msgid "[Unsupported]" +msgstr "[Nicht unterstützt]" -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Weiblich" +#: ../../mod/admin.php:1362 +msgid "Log settings updated." +msgstr "Protokolleinstellungen aktualisiert." -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Momentan männlich" +#: ../../mod/admin.php:1418 +msgid "Clear" +msgstr "löschen" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Momentan weiblich" +#: ../../mod/admin.php:1424 +msgid "Enable Debugging" +msgstr "Protokoll führen" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Hauptsächlich männlich" +#: ../../mod/admin.php:1425 +msgid "Log file" +msgstr "Protokolldatei" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Hauptsächlich weiblich" +#: ../../mod/admin.php:1425 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis." -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" +#: ../../mod/admin.php:1426 +msgid "Log level" +msgstr "Protokoll-Level" -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersex" +#: ../../mod/admin.php:1476 +msgid "Close" +msgstr "Schließen" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transsexuell" +#: ../../mod/admin.php:1482 +msgid "FTP Host" +msgstr "FTP Host" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermaphrodit" +#: ../../mod/admin.php:1483 +msgid "FTP Path" +msgstr "FTP Pfad" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neuter" +#: ../../mod/admin.php:1484 +msgid "FTP User" +msgstr "FTP Nutzername" -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Nicht spezifiziert" +#: ../../mod/admin.php:1485 +msgid "FTP Password" +msgstr "FTP Passwort" -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Andere" +#: ../../mod/network.php:142 +msgid "Search Results For:" +msgstr "Suchergebnisse für:" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Unentschieden" +#: ../../mod/network.php:185 ../../mod/search.php:21 +msgid "Remove term" +msgstr "Begriff entfernen" -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Männer" +#: ../../mod/network.php:194 ../../mod/search.php:30 +#: ../../include/features.php:42 +msgid "Saved Searches" +msgstr "Gespeicherte Suchen" -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Frauen" +#: ../../mod/network.php:195 ../../include/group.php:275 +msgid "add" +msgstr "hinzufügen" -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Schwul" +#: ../../mod/network.php:356 +msgid "Commented Order" +msgstr "Neueste Kommentare" -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbisch" +#: ../../mod/network.php:359 +msgid "Sort by Comment Date" +msgstr "Nach Kommentardatum sortieren" -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Keine Vorlieben" +#: ../../mod/network.php:362 +msgid "Posted Order" +msgstr "Neueste Beiträge" -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisexuell" +#: ../../mod/network.php:365 +msgid "Sort by Post Date" +msgstr "Nach Beitragsdatum sortieren" -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosexual" +#: ../../mod/network.php:374 +msgid "Posts that mention or involve you" +msgstr "Beiträge, in denen es um dich geht" -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Abstinent" +#: ../../mod/network.php:380 +msgid "New" +msgstr "Neue" -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Jungfrauen" +#: ../../mod/network.php:383 +msgid "Activity Stream - by date" +msgstr "Aktivitäten-Stream - nach Datum" -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Deviant" +#: ../../mod/network.php:389 +msgid "Shared Links" +msgstr "Geteilte Links" -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetish" +#: ../../mod/network.php:392 +msgid "Interesting Links" +msgstr "Interessante Links" -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Oodles" +#: ../../mod/network.php:398 +msgid "Starred" +msgstr "Markierte" -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Nonsexual" +#: ../../mod/network.php:401 +msgid "Favourite Posts" +msgstr "Favorisierte Beiträge" -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Single" +#: ../../mod/network.php:463 +#, 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] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk." +msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken." -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Einsam" +#: ../../mod/network.php:466 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten." -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Verfügbar" +#: ../../mod/network.php:520 ../../mod/content.php:119 +msgid "No such group" +msgstr "Es gibt keine solche Gruppe" -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Nicht verfügbar" +#: ../../mod/network.php:537 ../../mod/content.php:130 +msgid "Group is empty" +msgstr "Gruppe ist leer" -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "verknallt" +#: ../../mod/network.php:544 ../../mod/content.php:134 +msgid "Group: " +msgstr "Gruppe: " -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "verliebt" +#: ../../mod/network.php:554 +msgid "Contact: " +msgstr "Kontakt: " -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Dating" +#: ../../mod/network.php:556 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen." -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Untreu" +#: ../../mod/network.php:561 +msgid "Invalid contact." +msgstr "Ungültiger Kontakt." -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Sexbesessen" +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Freunde von %s" -#: ../../include/profile_selectors.php:42 ../../include/user.php:289 -#: ../../include/user.php:293 -msgid "Friends" -msgstr "Freunde" +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Keine Freunde zum Anzeigen." -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Freunde/Zuwendungen" +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Casual" +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "l, F j" -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Verlobt" +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "Veranstaltung bearbeiten" -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Verheiratet" +#: ../../mod/events.php:335 ../../include/text.php:1644 +#: ../../include/text.php:1654 +msgid "link to source" +msgstr "Link zum Originalbeitrag" -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "imaginär verheiratet" +#: ../../mod/events.php:370 ../../boot.php:2138 ../../include/nav.php:80 +#: ../../view/theme/diabook/theme.php:127 +msgid "Events" +msgstr "Veranstaltungen" -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Partner" +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "Neue Veranstaltung erstellen" -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "zusammenlebend" +#: ../../mod/events.php:372 +msgid "Previous" +msgstr "Vorherige" -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "wilde Ehe" +#: ../../mod/events.php:373 ../../mod/install.php:207 +msgid "Next" +msgstr "Nächste" -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Glücklich" +#: ../../mod/events.php:446 +msgid "hour:minute" +msgstr "Stunde:Minute" -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Nicht auf der Suche" +#: ../../mod/events.php:456 +msgid "Event details" +msgstr "Veranstaltungsdetails" -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Swinger" +#: ../../mod/events.php:457 +#, php-format +msgid "Format is %s %s. Starting date and Title are required." +msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt." -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Betrogen" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Getrennt" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Unstabil" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Geschieden" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "imaginär geschieden" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Verwitwet" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Unsicher" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Ist kompliziert" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Ist mir nicht wichtig" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Frag mich" - -#: ../../include/user.php:40 -msgid "An invitation is required." -msgstr "Du benötigst eine Einladung." - -#: ../../include/user.php:45 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht überprüft werden." - -#: ../../include/user.php:53 -msgid "Invalid OpenID url" -msgstr "Ungültige OpenID URL" - -#: ../../include/user.php:74 -msgid "Please enter the required information." -msgstr "Bitte trage die erforderlichen Informationen ein." - -#: ../../include/user.php:88 -msgid "Please use a shorter name." -msgstr "Bitte verwende einen kürzeren Namen." - -#: ../../include/user.php:90 -msgid "Name too short." -msgstr "Der Name ist zu kurz." +#: ../../mod/events.php:459 +msgid "Event Starts:" +msgstr "Veranstaltungsbeginn:" -#: ../../include/user.php:105 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein." +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" +msgstr "Benötigt" -#: ../../include/user.php:110 -msgid "Your email domain is not among those allowed on this site." -msgstr "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt." +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" +msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" -#: ../../include/user.php:113 -msgid "Not a valid email address." -msgstr "Keine gültige E-Mail-Adresse." +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "Veranstaltungsende:" -#: ../../include/user.php:126 -msgid "Cannot use that email." -msgstr "Konnte diese E-Mail-Adresse nicht verwenden." +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "An Zeitzone des Betrachters anpassen" -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen." +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "Beschreibung" -#: ../../include/user.php:138 ../../include/user.php:236 -msgid "Nickname is already registered. Please choose another." -msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." +#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1643 +#: ../../include/bb2diaspora.php:170 ../../include/event.php:40 +msgid "Location:" +msgstr "Ort:" -#: ../../include/user.php:148 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "Titel:" -#: ../../include/user.php:164 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "Veranstaltung teilen" -#: ../../include/user.php:222 -msgid "An error occurred during registration. Please try again." -msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal." +#: ../../mod/content.php:437 ../../mod/content.php:740 +#: ../../mod/photos.php:1653 ../../object/Item.php:129 +#: ../../include/conversation.php:613 +msgid "Select" +msgstr "Auswählen" -#: ../../include/user.php:257 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal." +#: ../../mod/content.php:471 ../../mod/content.php:852 +#: ../../mod/content.php:853 ../../object/Item.php:326 +#: ../../object/Item.php:327 ../../include/conversation.php:654 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Das Profil von %s auf %s betrachten." -#: ../../include/user.php:377 +#: ../../mod/content.php:481 ../../mod/content.php:864 +#: ../../object/Item.php:340 ../../include/conversation.php:674 #, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "\nHallo %1$s,\n\ndanke für deine Registrierung auf %2$s. Dein Account wurde eingerichtet." +msgid "%s from %s" +msgstr "%s von %s" -#: ../../include/user.php:381 -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." -msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite)\n\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst, das erleichtert es Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser angaben ist nötigg.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %2$s." +#: ../../mod/content.php:497 ../../include/conversation.php:690 +msgid "View in context" +msgstr "Im Zusammenhang betrachten" -#: ../../include/user.php:413 ../../mod/admin.php:799 +#: ../../mod/content.php:603 ../../object/Item.php:387 #, php-format -msgid "Registration details for %s" -msgstr "Details der Registration von %s" +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d Kommentar" +msgstr[1] "%d Kommentare" -#: ../../include/acl_selectors.php:326 -msgid "Visible to everybody" -msgstr "Für jeden sichtbar" +#: ../../mod/content.php:605 ../../object/Item.php:389 +#: ../../object/Item.php:402 ../../include/text.php:1969 +msgid "comment" +msgid_plural "comments" +msgstr[0] "Kommentar" +msgstr[1] "Kommentare" -#: ../../object/Item.php:94 -msgid "This entry was edited" -msgstr "Dieser Beitrag wurde bearbeitet." +#: ../../mod/content.php:606 ../../boot.php:746 ../../object/Item.php:390 +#: ../../include/contact_widgets.php:205 +msgid "show more" +msgstr "mehr anzeigen" -#: ../../object/Item.php:116 ../../mod/photos.php:1357 -#: ../../mod/content.php:620 +#: ../../mod/content.php:620 ../../mod/photos.php:1359 +#: ../../object/Item.php:116 msgid "Private Message" msgstr "Private Nachricht" -#: ../../object/Item.php:120 ../../mod/settings.php:673 -#: ../../mod/content.php:728 -msgid "Edit" -msgstr "Bearbeiten" - -#: ../../object/Item.php:133 ../../mod/content.php:763 -msgid "save to folder" -msgstr "In Ordner speichern" - -#: ../../object/Item.php:195 ../../mod/content.php:753 -msgid "add star" -msgstr "markieren" - -#: ../../object/Item.php:196 ../../mod/content.php:754 -msgid "remove star" -msgstr "Markierung entfernen" - -#: ../../object/Item.php:197 ../../mod/content.php:755 -msgid "toggle star status" -msgstr "Markierung umschalten" - -#: ../../object/Item.php:200 ../../mod/content.php:758 -msgid "starred" -msgstr "markiert" - -#: ../../object/Item.php:208 -msgid "ignore thread" -msgstr "Thread ignorieren" - -#: ../../object/Item.php:209 -msgid "unignore thread" -msgstr "Thread nicht mehr ignorieren" - -#: ../../object/Item.php:210 -msgid "toggle ignore status" -msgstr "Ignoriert-Status ein-/ausschalten" - -#: ../../object/Item.php:213 -msgid "ignored" -msgstr "Ignoriert" - -#: ../../object/Item.php:220 ../../mod/content.php:759 -msgid "add tag" -msgstr "Tag hinzufügen" - -#: ../../object/Item.php:231 ../../mod/photos.php:1540 -#: ../../mod/content.php:684 +#: ../../mod/content.php:684 ../../mod/photos.php:1542 +#: ../../object/Item.php:231 msgid "I like this (toggle)" msgstr "Ich mag das (toggle)" -#: ../../object/Item.php:231 ../../mod/content.php:684 +#: ../../mod/content.php:684 ../../object/Item.php:231 msgid "like" msgstr "mag ich" -#: ../../object/Item.php:232 ../../mod/photos.php:1541 -#: ../../mod/content.php:685 +#: ../../mod/content.php:685 ../../mod/photos.php:1543 +#: ../../object/Item.php:232 msgid "I don't like this (toggle)" msgstr "Ich mag das nicht (toggle)" -#: ../../object/Item.php:232 ../../mod/content.php:685 +#: ../../mod/content.php:685 ../../object/Item.php:232 msgid "dislike" msgstr "mag ich nicht" -#: ../../object/Item.php:234 ../../mod/content.php:687 +#: ../../mod/content.php:687 ../../object/Item.php:234 msgid "Share this" msgstr "Weitersagen" -#: ../../object/Item.php:234 ../../mod/content.php:687 +#: ../../mod/content.php:687 ../../object/Item.php:234 msgid "share" msgstr "Teilen" -#: ../../object/Item.php:328 ../../mod/content.php:854 -msgid "to" -msgstr "zu" - -#: ../../object/Item.php:329 -msgid "via" -msgstr "via" - -#: ../../object/Item.php:330 ../../mod/content.php:855 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" - -#: ../../object/Item.php:331 ../../mod/content.php:856 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" - -#: ../../object/Item.php:387 ../../mod/content.php:603 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d Kommentar" -msgstr[1] "%d Kommentare" - -#: ../../object/Item.php:675 ../../mod/photos.php:1560 -#: ../../mod/photos.php:1604 ../../mod/photos.php:1692 -#: ../../mod/content.php:707 +#: ../../mod/content.php:707 ../../mod/photos.php:1562 +#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 +#: ../../object/Item.php:675 msgid "This is you" msgstr "Das bist du" -#: ../../object/Item.php:679 ../../mod/content.php:711 +#: ../../mod/content.php:709 ../../mod/photos.php:1564 +#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:745 +#: ../../object/Item.php:361 ../../object/Item.php:677 +msgid "Comment" +msgstr "Kommentar" + +#: ../../mod/content.php:711 ../../object/Item.php:679 msgid "Bold" msgstr "Fett" -#: ../../object/Item.php:680 ../../mod/content.php:712 +#: ../../mod/content.php:712 ../../object/Item.php:680 msgid "Italic" msgstr "Kursiv" -#: ../../object/Item.php:681 ../../mod/content.php:713 +#: ../../mod/content.php:713 ../../object/Item.php:681 msgid "Underline" msgstr "Unterstrichen" -#: ../../object/Item.php:682 ../../mod/content.php:714 +#: ../../mod/content.php:714 ../../object/Item.php:682 msgid "Quote" msgstr "Zitat" -#: ../../object/Item.php:683 ../../mod/content.php:715 +#: ../../mod/content.php:715 ../../object/Item.php:683 msgid "Code" msgstr "Code" -#: ../../object/Item.php:684 ../../mod/content.php:716 +#: ../../mod/content.php:716 ../../object/Item.php:684 msgid "Image" msgstr "Bild" -#: ../../object/Item.php:685 ../../mod/content.php:717 +#: ../../mod/content.php:717 ../../object/Item.php:685 msgid "Link" msgstr "Link" -#: ../../object/Item.php:686 ../../mod/content.php:718 +#: ../../mod/content.php:718 ../../object/Item.php:686 msgid "Video" msgstr "Video" -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Beitrag nicht verfügbar." - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Beitrag konnte nicht gefunden werden." +#: ../../mod/content.php:719 ../../mod/editpost.php:145 +#: ../../mod/photos.php:1566 ../../mod/photos.php:1610 +#: ../../mod/photos.php:1698 ../../object/Item.php:687 +#: ../../include/conversation.php:1126 +msgid "Preview" +msgstr "Vorschau" -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen." +#: ../../mod/content.php:728 ../../mod/settings.php:676 +#: ../../object/Item.php:120 +msgid "Edit" +msgstr "Bearbeiten" -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 -msgid "No recipient selected." -msgstr "Kein Empfänger gewählt." - -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Konnte deinen Heimatort nicht bestimmen." - -#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 -msgid "Message could not be sent." -msgstr "Nachricht konnte nicht gesendet werden." +#: ../../mod/content.php:753 ../../object/Item.php:195 +msgid "add star" +msgstr "markieren" -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "Konnte Nachrichten nicht abrufen." +#: ../../mod/content.php:754 ../../object/Item.php:196 +msgid "remove star" +msgstr "Markierung entfernen" -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -msgid "Message sent." -msgstr "Nachricht gesendet." +#: ../../mod/content.php:755 ../../object/Item.php:197 +msgid "toggle star status" +msgstr "Markierung umschalten" -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Kein Empfänger." +#: ../../mod/content.php:758 ../../object/Item.php:200 +msgid "starred" +msgstr "markiert" -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 -msgid "Send Private Message" -msgstr "Private Nachricht senden" +#: ../../mod/content.php:759 ../../object/Item.php:220 +msgid "add tag" +msgstr "Tag hinzufügen" -#: ../../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 "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern." +#: ../../mod/content.php:763 ../../object/Item.php:133 +msgid "save to folder" +msgstr "In Ordner speichern" -#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 -#: ../../mod/message.php:553 -msgid "To:" -msgstr "An:" +#: ../../mod/content.php:854 ../../object/Item.php:328 +msgid "to" +msgstr "zu" -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 -msgid "Subject:" -msgstr "Betreff:" +#: ../../mod/content.php:855 ../../object/Item.php:330 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -#: ../../mod/message.php:329 ../../mod/message.php:558 -msgid "Your message:" -msgstr "Deine Nachricht:" +#: ../../mod/content.php:856 ../../object/Item.php:331 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Gruppe erstellt." +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Konto löschen" -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Konnte die Gruppe nicht erstellen." +#: ../../mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen." -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Gruppe nicht gefunden." +#: ../../mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Bitte gib dein Passwort zur Verifikation ein:" -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Gruppenname geändert." +#: ../../mod/install.php:117 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica-Server für soziale Netzwerke – Setup" -#: ../../mod/group.php:87 -msgid "Save Group" -msgstr "Gruppe speichern" +#: ../../mod/install.php:123 +msgid "Could not connect to database." +msgstr "Verbindung zur Datenbank gescheitert." -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Eine Gruppe von Kontakten/Freunden anlegen." +#: ../../mod/install.php:127 +msgid "Could not create table." +msgstr "Tabelle konnte nicht angelegt werden." -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Gruppenname:" +#: ../../mod/install.php:133 +msgid "Your Friendica site database has been installed." +msgstr "Die Datenbank deiner Friendicaseite wurde installiert." -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Gruppe entfernt." +#: ../../mod/install.php:138 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren." -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Konnte die Gruppe nicht entfernen." +#: ../../mod/install.php:139 ../../mod/install.php:206 +#: ../../mod/install.php:525 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Lies bitte die \"INSTALL.txt\"." -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Gruppeneditor" +#: ../../mod/install.php:203 +msgid "System check" +msgstr "Systemtest" -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Mitglieder" +#: ../../mod/install.php:208 +msgid "Check again" +msgstr "Noch einmal testen" -#: ../../mod/group.php:194 ../../mod/contacts.php:562 -msgid "All Contacts" -msgstr "Alle Kontakte" +#: ../../mod/install.php:227 +msgid "Database connection" +msgstr "Datenbankverbindung" -#: ../../mod/group.php:224 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." -msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" +#: ../../mod/install.php:228 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit deiner Datenbank Kontakt aufnehmen können." -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." +#: ../../mod/install.php:229 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest." -#: ../../mod/delegate.php:126 +#: ../../mod/install.php:230 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 "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor du mit der Installation fortfährst." -#: ../../mod/delegate.php:127 -msgid "Existing Page Managers" -msgstr "Vorhandene Seitenmanager" +#: ../../mod/install.php:234 +msgid "Database Server Name" +msgstr "Datenbank-Server" -#: ../../mod/delegate.php:129 -msgid "Existing Page Delegates" -msgstr "Vorhandene Bevollmächtigte für die Seite" +#: ../../mod/install.php:235 +msgid "Database Login Name" +msgstr "Datenbank-Nutzer" -#: ../../mod/delegate.php:131 -msgid "Potential Delegates" -msgstr "Potentielle Bevollmächtigte" +#: ../../mod/install.php:236 +msgid "Database Login Password" +msgstr "Datenbank-Passwort" -#: ../../mod/delegate.php:133 ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Entfernen" +#: ../../mod/install.php:237 +msgid "Database Name" +msgstr "Datenbank-Name" -#: ../../mod/delegate.php:134 -msgid "Add" -msgstr "Hinzufügen" +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "Site administrator email address" +msgstr "E-Mail-Adresse des Administrators" -#: ../../mod/delegate.php:135 -msgid "No entries." -msgstr "Keine Einträge." +#: ../../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 "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst." -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Invalid request identifier." +#: ../../mod/install.php:242 ../../mod/install.php:280 +msgid "Please select a default timezone for your website" +msgstr "Bitte wähle die Standardzeitzone deiner Webseite" -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "Verwerfen" +#: ../../mod/install.php:267 +msgid "Site settings" +msgstr "Server-Einstellungen" -#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:210 ../../mod/contacts.php:443 -#: ../../mod/contacts.php:497 ../../mod/contacts.php:707 -msgid "Ignore" -msgstr "Ignorieren" +#: ../../mod/install.php:321 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden." -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "System" +#: ../../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 "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'" -#: ../../mod/notifications.php:88 ../../mod/network.php:365 -msgid "Personal" -msgstr "Persönlich" +#: ../../mod/install.php:326 +msgid "PHP executable path" +msgstr "Pfad zu PHP" -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Zeige ignorierte Anfragen" +#: ../../mod/install.php:326 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren." -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Verberge ignorierte Anfragen" +#: ../../mod/install.php:331 +msgid "Command line PHP" +msgstr "Kommandozeilen-PHP" -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "Benachrichtigungstyp: " +#: ../../mod/install.php:340 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)" -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Kontaktvorschlag" +#: ../../mod/install.php:341 +msgid "Found PHP version: " +msgstr "Gefundene PHP Version:" -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "vorgeschlagen von %s" +#: ../../mod/install.php:343 +msgid "PHP cli binary" +msgstr "PHP CLI Binary" -#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 -#: ../../mod/contacts.php:503 -msgid "Hide this contact from others" -msgstr "Verberge diesen Kontakt vor anderen" +#: ../../mod/install.php:354 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert." -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "Neue-Kontakt Nachricht senden" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "falls anwendbar" +#: ../../mod/install.php:355 +msgid "This is required for message delivery to work." +msgstr "Dies wird für die Auslieferung von Nachrichten benötigt." -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 -#: ../../mod/admin.php:966 -msgid "Approve" -msgstr "Genehmigen" +#: ../../mod/install.php:357 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Behauptet dich zu kennen: " +#: ../../mod/install.php:378 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen" -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "ja" +#: ../../mod/install.php:379 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an." -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "nein" +#: ../../mod/install.php:381 +msgid "Generate encryption keys" +msgstr "Schlüssel erzeugen" -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Genehmigen als: " +#: ../../mod/install.php:388 +msgid "libCurl PHP module" +msgstr "PHP: libCurl-Modul" -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "Freund" +#: ../../mod/install.php:389 +msgid "GD graphics PHP module" +msgstr "PHP: GD-Grafikmodul" -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "Teilenden" +#: ../../mod/install.php:390 +msgid "OpenSSL PHP module" +msgstr "PHP: OpenSSL-Modul" -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "Fan/Verehrer" +#: ../../mod/install.php:391 +msgid "mysqli PHP module" +msgstr "PHP: mysqli-Modul" -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "Kontakt-/Freundschaftsanfrage" +#: ../../mod/install.php:392 +msgid "mb_string PHP module" +msgstr "PHP: mb_string-Modul" -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "Neuer Bewunderer" +#: ../../mod/install.php:397 ../../mod/install.php:399 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "Keine Kontaktanfragen." +#: ../../mod/install.php:397 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert." -#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 -#: ../../mod/notifications.php:478 -#, php-format -msgid "%s liked %s's post" -msgstr "%s mag %ss Beitrag" +#: ../../mod/install.php:405 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert." -#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 -#: ../../mod/notifications.php:488 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s mag %ss Beitrag nicht" +#: ../../mod/install.php:409 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert." -#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 -#: ../../mod/notifications.php:503 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s ist jetzt mit %s befreundet" +#: ../../mod/install.php:413 +msgid "Error: openssl PHP module required but not installed." +msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert." -#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 -#, php-format -msgid "%s created a new post" -msgstr "%s hat einen neuen Beitrag erstellt" +#: ../../mod/install.php:417 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert." -#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 -#: ../../mod/notifications.php:513 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s hat %ss Beitrag kommentiert" +#: ../../mod/install.php:421 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert." -#: ../../mod/notifications.php:306 -msgid "No more network notifications." -msgstr "Keine weiteren Netzwerk-Benachrichtigungen." +#: ../../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 "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun." -#: ../../mod/notifications.php:310 -msgid "Network Notifications" -msgstr "Netzwerk Benachrichtigungen" +#: ../../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 "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast." -#: ../../mod/notifications.php:336 ../../mod/notify.php:75 -msgid "No more system notifications." -msgstr "Keine weiteren Systembenachrichtigungen." +#: ../../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 "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst." -#: ../../mod/notifications.php:340 ../../mod/notify.php:79 -msgid "System Notifications" -msgstr "Systembenachrichtigungen" +#: ../../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 "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt." -#: ../../mod/notifications.php:435 -msgid "No more personal notifications." -msgstr "Keine weiteren persönlichen Benachrichtigungen" +#: ../../mod/install.php:444 +msgid ".htconfig.php is writable" +msgstr "Schreibrechte auf .htconfig.php" -#: ../../mod/notifications.php:439 -msgid "Personal Notifications" -msgstr "Persönliche Benachrichtigungen" +#: ../../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 nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen." -#: ../../mod/notifications.php:520 -msgid "No more home notifications." -msgstr "Keine weiteren Pinnwand-Benachrichtigungen" +#: ../../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 "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica." -#: ../../mod/notifications.php:524 -msgid "Home Notifications" -msgstr "Pinnwand Benachrichtigungen" +#: ../../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 "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat." -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Kein Profil" +#: ../../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 "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten." -#: ../../mod/settings.php:29 ../../mod/photos.php:80 -msgid "everybody" -msgstr "jeder" +#: ../../mod/install.php:460 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 ist schreibbar" -#: ../../mod/settings.php:36 ../../mod/admin.php:977 -msgid "Account" -msgstr "Nutzerkonto" +#: ../../mod/install.php:472 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers." -#: ../../mod/settings.php:41 -msgid "Additional features" -msgstr "Zusätzliche Features" +#: ../../mod/install.php:474 +msgid "Url rewrite is working" +msgstr "URL rewrite funktioniert" -#: ../../mod/settings.php:46 -msgid "Display" -msgstr "Anzeige" +#: ../../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 "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen." -#: ../../mod/settings.php:52 ../../mod/settings.php:777 -msgid "Social Networks" -msgstr "Soziale Netzwerke" +#: ../../mod/install.php:523 +msgid "

What next

" +msgstr "

Wie geht es weiter?

" -#: ../../mod/settings.php:57 ../../mod/admin.php:106 ../../mod/admin.php:1063 -#: ../../mod/admin.php:1116 -msgid "Plugins" -msgstr "Plugins" +#: ../../mod/install.php:524 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten." -#: ../../mod/settings.php:67 -msgid "Connected apps" -msgstr "Verbundene Programme" +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen." -#: ../../mod/settings.php:72 ../../mod/uexport.php:85 -msgid "Export personal data" -msgstr "Persönliche Daten exportieren" +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Konnte deinen Heimatort nicht bestimmen." -#: ../../mod/settings.php:77 -msgid "Remove account" -msgstr "Konto löschen" +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Kein Empfänger." -#: ../../mod/settings.php:129 -msgid "Missing some important data!" -msgstr "Wichtige Daten fehlen!" +#: ../../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 "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern." -#: ../../mod/settings.php:132 ../../mod/settings.php:637 -#: ../../mod/contacts.php:705 -msgid "Update" -msgstr "Aktualisierungen" +#: ../../mod/help.php:79 +msgid "Help:" +msgstr "Hilfe:" + +#: ../../mod/help.php:84 ../../include/nav.php:114 +msgid "Help" +msgstr "Hilfe" + +#: ../../mod/help.php:90 ../../index.php:256 +msgid "Not Found" +msgstr "Nicht gefunden" + +#: ../../mod/help.php:93 ../../index.php:259 +msgid "Page not found." +msgstr "Seite nicht gefunden." + +#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s heißt %2$s herzlich willkommen" + +#: ../../mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Willkommen zu %s" + +#: ../../mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt." + +#: ../../mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?" + +#: ../../mod/wall_attach.php:81 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Die Datei ist größer als das erlaubte Limit von %d" + +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +msgid "File upload failed." +msgstr "Hochladen der Datei fehlgeschlagen." + +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Profilübereinstimmungen" + +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu." + +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "ist interessiert an:" + +#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1563 +#: ../../include/contact_widgets.php:10 +msgid "Connect" +msgstr "Verbinden" + +#: ../../mod/share.php:44 +msgid "link" +msgstr "Link" + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Nicht verfügbar." + +#: ../../mod/community.php:32 ../../include/nav.php:129 +#: ../../view/theme/diabook/theme.php:129 +msgid "Community" +msgstr "Gemeinschaft" + +#: ../../mod/community.php:62 ../../mod/community.php:71 +#: ../../mod/search.php:170 ../../mod/search.php:196 +msgid "No results." +msgstr "Keine Ergebnisse." + +#: ../../mod/settings.php:29 ../../mod/photos.php:80 +msgid "everybody" +msgstr "jeder" + +#: ../../mod/settings.php:41 +msgid "Additional features" +msgstr "Zusätzliche Features" + +#: ../../mod/settings.php:46 +msgid "Display" +msgstr "Anzeige" + +#: ../../mod/settings.php:52 ../../mod/settings.php:780 +msgid "Social Networks" +msgstr "Soziale Netzwerke" + +#: ../../mod/settings.php:62 ../../include/nav.php:168 +msgid "Delegations" +msgstr "Delegationen" + +#: ../../mod/settings.php:67 +msgid "Connected apps" +msgstr "Verbundene Programme" + +#: ../../mod/settings.php:72 ../../mod/uexport.php:85 +msgid "Export personal data" +msgstr "Persönliche Daten exportieren" + +#: ../../mod/settings.php:77 +msgid "Remove account" +msgstr "Konto löschen" + +#: ../../mod/settings.php:129 +msgid "Missing some important data!" +msgstr "Wichtige Daten fehlen!" #: ../../mod/settings.php:238 msgid "Failed to connect with email account using the settings provided." @@ -3466,918 +3644,926 @@ msgstr "Passwort geändert." msgid "Password update failed. Please try again." msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." -#: ../../mod/settings.php:426 +#: ../../mod/settings.php:428 msgid " Please use a shorter name." msgstr " Bitte verwende einen kürzeren Namen." -#: ../../mod/settings.php:428 +#: ../../mod/settings.php:430 msgid " Name too short." msgstr " Name ist zu kurz." -#: ../../mod/settings.php:437 +#: ../../mod/settings.php:439 msgid "Wrong Password" msgstr "Falsches Passwort" -#: ../../mod/settings.php:442 +#: ../../mod/settings.php:444 msgid " Not valid email." msgstr " Keine gültige E-Mail." -#: ../../mod/settings.php:448 +#: ../../mod/settings.php:450 msgid " Cannot change to that email." msgstr "Ändern der E-Mail nicht möglich. " -#: ../../mod/settings.php:503 +#: ../../mod/settings.php:506 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt." -#: ../../mod/settings.php:507 +#: ../../mod/settings.php:510 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte." -#: ../../mod/settings.php:537 +#: ../../mod/settings.php:540 msgid "Settings updated." msgstr "Einstellungen aktualisiert." -#: ../../mod/settings.php:610 ../../mod/settings.php:636 -#: ../../mod/settings.php:672 +#: ../../mod/settings.php:613 ../../mod/settings.php:639 +#: ../../mod/settings.php:675 msgid "Add application" msgstr "Programm hinzufügen" -#: ../../mod/settings.php:611 ../../mod/settings.php:721 -#: ../../mod/settings.php:795 ../../mod/settings.php:877 -#: ../../mod/settings.php:1110 ../../mod/admin.php:588 -#: ../../mod/admin.php:1117 ../../mod/admin.php:1319 ../../mod/admin.php:1406 -msgid "Save Settings" -msgstr "Einstellungen speichern" - -#: ../../mod/settings.php:613 ../../mod/settings.php:639 -#: ../../mod/admin.php:964 ../../mod/admin.php:976 ../../mod/admin.php:977 -#: ../../mod/admin.php:990 ../../mod/crepair.php:158 -msgid "Name" -msgstr "Name" - -#: ../../mod/settings.php:614 ../../mod/settings.php:640 +#: ../../mod/settings.php:617 ../../mod/settings.php:643 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../mod/settings.php:615 ../../mod/settings.php:641 +#: ../../mod/settings.php:618 ../../mod/settings.php:644 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../mod/settings.php:616 ../../mod/settings.php:642 +#: ../../mod/settings.php:619 ../../mod/settings.php:645 msgid "Redirect" msgstr "Umleiten" -#: ../../mod/settings.php:617 ../../mod/settings.php:643 +#: ../../mod/settings.php:620 ../../mod/settings.php:646 msgid "Icon url" msgstr "Icon URL" -#: ../../mod/settings.php:628 +#: ../../mod/settings.php:631 msgid "You can't edit this application." msgstr "Du kannst dieses Programm nicht bearbeiten." -#: ../../mod/settings.php:671 +#: ../../mod/settings.php:674 msgid "Connected Apps" msgstr "Verbundene Programme" -#: ../../mod/settings.php:675 +#: ../../mod/settings.php:678 msgid "Client key starts with" msgstr "Anwenderschlüssel beginnt mit" -#: ../../mod/settings.php:676 +#: ../../mod/settings.php:679 msgid "No name" msgstr "Kein Name" -#: ../../mod/settings.php:677 +#: ../../mod/settings.php:680 msgid "Remove authorization" msgstr "Autorisierung entziehen" -#: ../../mod/settings.php:689 +#: ../../mod/settings.php:692 msgid "No Plugin settings configured" msgstr "Keine Plugin-Einstellungen konfiguriert" -#: ../../mod/settings.php:697 +#: ../../mod/settings.php:700 msgid "Plugin Settings" msgstr "Plugin-Einstellungen" -#: ../../mod/settings.php:711 +#: ../../mod/settings.php:714 msgid "Off" msgstr "Aus" -#: ../../mod/settings.php:711 +#: ../../mod/settings.php:714 msgid "On" msgstr "An" -#: ../../mod/settings.php:719 +#: ../../mod/settings.php:722 msgid "Additional Features" msgstr "Zusätzliche Features" -#: ../../mod/settings.php:733 ../../mod/settings.php:734 +#: ../../mod/settings.php:736 ../../mod/settings.php:737 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s" -#: ../../mod/settings.php:733 ../../mod/settings.php:734 +#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../mod/settings.php:736 ../../mod/settings.php:737 msgid "enabled" msgstr "eingeschaltet" -#: ../../mod/settings.php:733 ../../mod/settings.php:734 +#: ../../mod/settings.php:736 ../../mod/settings.php:737 msgid "disabled" msgstr "ausgeschaltet" -#: ../../mod/settings.php:734 +#: ../../mod/settings.php:737 msgid "StatusNet" msgstr "StatusNet" -#: ../../mod/settings.php:770 +#: ../../mod/settings.php:773 msgid "Email access is disabled on this site." msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." -#: ../../mod/settings.php:782 +#: ../../mod/settings.php:785 msgid "Email/Mailbox Setup" msgstr "E-Mail/Postfach-Einstellungen" -#: ../../mod/settings.php:783 +#: ../../mod/settings.php:786 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an." -#: ../../mod/settings.php:784 +#: ../../mod/settings.php:787 msgid "Last successful email check:" msgstr "Letzter erfolgreicher E-Mail Check" -#: ../../mod/settings.php:786 +#: ../../mod/settings.php:789 msgid "IMAP server name:" msgstr "IMAP-Server-Name:" -#: ../../mod/settings.php:787 +#: ../../mod/settings.php:790 msgid "IMAP port:" msgstr "IMAP-Port:" -#: ../../mod/settings.php:788 +#: ../../mod/settings.php:791 msgid "Security:" msgstr "Sicherheit:" -#: ../../mod/settings.php:788 ../../mod/settings.php:793 +#: ../../mod/settings.php:791 ../../mod/settings.php:796 msgid "None" msgstr "Keine" -#: ../../mod/settings.php:789 +#: ../../mod/settings.php:792 msgid "Email login name:" msgstr "E-Mail-Login-Name:" -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:793 msgid "Email password:" msgstr "E-Mail-Passwort:" -#: ../../mod/settings.php:791 +#: ../../mod/settings.php:794 msgid "Reply-to address:" msgstr "Reply-to Adresse:" -#: ../../mod/settings.php:792 +#: ../../mod/settings.php:795 msgid "Send public posts to all email contacts:" msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" -#: ../../mod/settings.php:793 +#: ../../mod/settings.php:796 msgid "Action after import:" msgstr "Aktion nach Import:" -#: ../../mod/settings.php:793 +#: ../../mod/settings.php:796 msgid "Mark as seen" msgstr "Als gelesen markieren" -#: ../../mod/settings.php:793 +#: ../../mod/settings.php:796 msgid "Move to folder" msgstr "In einen Ordner verschieben" -#: ../../mod/settings.php:794 +#: ../../mod/settings.php:797 msgid "Move to folder:" msgstr "In diesen Ordner verschieben:" -#: ../../mod/settings.php:825 ../../mod/admin.php:523 -msgid "No special theme for mobile devices" -msgstr "Kein spezielles Theme für mobile Geräte verwenden." - -#: ../../mod/settings.php:875 +#: ../../mod/settings.php:878 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: ../../mod/settings.php:881 ../../mod/settings.php:896 +#: ../../mod/settings.php:884 ../../mod/settings.php:899 msgid "Display Theme:" msgstr "Theme:" -#: ../../mod/settings.php:882 +#: ../../mod/settings.php:885 msgid "Mobile Theme:" msgstr "Mobiles Theme" -#: ../../mod/settings.php:883 +#: ../../mod/settings.php:886 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: ../../mod/settings.php:883 +#: ../../mod/settings.php:886 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimal 10 Sekunden, kein Maximum" -#: ../../mod/settings.php:884 +#: ../../mod/settings.php:887 msgid "Number of items to display per page:" msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " -#: ../../mod/settings.php:884 ../../mod/settings.php:885 +#: ../../mod/settings.php:887 ../../mod/settings.php:888 msgid "Maximum of 100 items" msgstr "Maximal 100 Beiträge" -#: ../../mod/settings.php:885 +#: ../../mod/settings.php:888 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:" -#: ../../mod/settings.php:886 +#: ../../mod/settings.php:889 msgid "Don't show emoticons" msgstr "Keine Smilies anzeigen" -#: ../../mod/settings.php:887 +#: ../../mod/settings.php:890 msgid "Don't show notices" msgstr "Info-Popups nicht anzeigen" -#: ../../mod/settings.php:888 +#: ../../mod/settings.php:891 msgid "Infinite scroll" msgstr "Endloses Scrollen" -#: ../../mod/settings.php:889 +#: ../../mod/settings.php:892 msgid "Automatic updates only at the top of the network page" msgstr "Automatische Updates nur, wenn du oben auf der Netzwerkseite bist." -#: ../../mod/settings.php:966 +#: ../../mod/settings.php:969 msgid "User Types" msgstr "Nutzer Art" -#: ../../mod/settings.php:967 +#: ../../mod/settings.php:970 msgid "Community Types" msgstr "Gemeinschafts Art" -#: ../../mod/settings.php:968 +#: ../../mod/settings.php:971 msgid "Normal Account Page" msgstr "Normales Konto" -#: ../../mod/settings.php:969 +#: ../../mod/settings.php:972 msgid "This account is a normal personal profile" msgstr "Dieses Konto ist ein normales persönliches Profil" -#: ../../mod/settings.php:972 +#: ../../mod/settings.php:975 msgid "Soapbox Page" msgstr "Marktschreier-Konto" -#: ../../mod/settings.php:973 +#: ../../mod/settings.php:976 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert" -#: ../../mod/settings.php:976 +#: ../../mod/settings.php:979 msgid "Community Forum/Celebrity Account" msgstr "Forum/Promi-Konto" -#: ../../mod/settings.php:977 +#: ../../mod/settings.php:980 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert" -#: ../../mod/settings.php:980 +#: ../../mod/settings.php:983 msgid "Automatic Friend Page" msgstr "Automatische Freunde Seite" -#: ../../mod/settings.php:981 +#: ../../mod/settings.php:984 msgid "Automatically approve all connection/friend requests as friends" msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert" -#: ../../mod/settings.php:984 +#: ../../mod/settings.php:987 msgid "Private Forum [Experimental]" msgstr "Privates Forum [Versuchsstadium]" -#: ../../mod/settings.php:985 +#: ../../mod/settings.php:988 msgid "Private forum - approved members only" msgstr "Privates Forum, nur für Mitglieder" -#: ../../mod/settings.php:997 +#: ../../mod/settings.php:1000 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:997 +#: ../../mod/settings.php:1000 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID." -#: ../../mod/settings.php:1007 +#: ../../mod/settings.php:1010 msgid "Publish your default profile in your local site directory?" msgstr "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?" -#: ../../mod/settings.php:1007 ../../mod/settings.php:1013 -#: ../../mod/settings.php:1021 ../../mod/settings.php:1025 -#: ../../mod/settings.php:1030 ../../mod/settings.php:1036 -#: ../../mod/settings.php:1042 ../../mod/settings.php:1048 -#: ../../mod/settings.php:1078 ../../mod/settings.php:1079 -#: ../../mod/settings.php:1080 ../../mod/settings.php:1081 -#: ../../mod/settings.php:1082 ../../mod/register.php:231 -#: ../../mod/dfrn_request.php:834 ../../mod/api.php:106 -#: ../../mod/profiles.php:620 ../../mod/profiles.php:624 +#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 +#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 +#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 +#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 +#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 +#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 +#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 +#: ../../mod/register.php:234 ../../mod/profiles.php:627 +#: ../../mod/profiles.php:631 ../../mod/api.php:106 msgid "No" msgstr "Nein" -#: ../../mod/settings.php:1013 +#: ../../mod/settings.php:1016 msgid "Publish your default profile in the global social directory?" msgstr "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?" -#: ../../mod/settings.php:1021 +#: ../../mod/settings.php:1024 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?" -#: ../../mod/settings.php:1030 +#: ../../mod/settings.php:1028 ../../include/conversation.php:1057 +msgid "Hide your profile details from unknown viewers?" +msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" + +#: ../../mod/settings.php:1028 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich" + +#: ../../mod/settings.php:1033 msgid "Allow friends to post to your profile page?" msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?" -#: ../../mod/settings.php:1036 +#: ../../mod/settings.php:1039 msgid "Allow friends to tag your posts?" msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?" -#: ../../mod/settings.php:1042 +#: ../../mod/settings.php:1045 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" -#: ../../mod/settings.php:1048 +#: ../../mod/settings.php:1051 msgid "Permit unknown people to send you private mail?" msgstr "Dürfen dir Unbekannte private Nachrichten schicken?" -#: ../../mod/settings.php:1056 +#: ../../mod/settings.php:1059 msgid "Profile is not published." msgstr "Profil ist nicht veröffentlicht." -#: ../../mod/settings.php:1059 ../../mod/profile_photo.php:248 -msgid "or" -msgstr "oder" - -#: ../../mod/settings.php:1064 +#: ../../mod/settings.php:1067 msgid "Your Identity Address is" msgstr "Die Adresse deines Profils lautet:" -#: ../../mod/settings.php:1075 +#: ../../mod/settings.php:1078 msgid "Automatically expire posts after this many days:" msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" -#: ../../mod/settings.php:1075 +#: ../../mod/settings.php:1078 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht." -#: ../../mod/settings.php:1076 +#: ../../mod/settings.php:1079 msgid "Advanced expiration settings" msgstr "Erweiterte Verfallseinstellungen" -#: ../../mod/settings.php:1077 +#: ../../mod/settings.php:1080 msgid "Advanced Expiration" msgstr "Erweitertes Verfallen" -#: ../../mod/settings.php:1078 +#: ../../mod/settings.php:1081 msgid "Expire posts:" msgstr "Beiträge verfallen lassen:" -#: ../../mod/settings.php:1079 +#: ../../mod/settings.php:1082 msgid "Expire personal notes:" msgstr "Persönliche Notizen verfallen lassen:" -#: ../../mod/settings.php:1080 +#: ../../mod/settings.php:1083 msgid "Expire starred posts:" msgstr "Markierte Beiträge verfallen lassen:" -#: ../../mod/settings.php:1081 +#: ../../mod/settings.php:1084 msgid "Expire photos:" msgstr "Fotos verfallen lassen:" -#: ../../mod/settings.php:1082 +#: ../../mod/settings.php:1085 msgid "Only expire posts by others:" msgstr "Nur Beiträge anderer verfallen:" -#: ../../mod/settings.php:1108 +#: ../../mod/settings.php:1111 msgid "Account Settings" msgstr "Kontoeinstellungen" -#: ../../mod/settings.php:1116 +#: ../../mod/settings.php:1119 msgid "Password Settings" msgstr "Passwort-Einstellungen" -#: ../../mod/settings.php:1117 +#: ../../mod/settings.php:1120 msgid "New Password:" msgstr "Neues Passwort:" -#: ../../mod/settings.php:1118 +#: ../../mod/settings.php:1121 msgid "Confirm:" msgstr "Bestätigen:" -#: ../../mod/settings.php:1118 +#: ../../mod/settings.php:1121 msgid "Leave password fields blank unless changing" msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern" -#: ../../mod/settings.php:1119 +#: ../../mod/settings.php:1122 msgid "Current Password:" msgstr "Aktuelles Passwort:" -#: ../../mod/settings.php:1119 ../../mod/settings.php:1120 +#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 msgid "Your current password to confirm the changes" msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" -#: ../../mod/settings.php:1120 +#: ../../mod/settings.php:1123 msgid "Password:" msgstr "Passwort:" -#: ../../mod/settings.php:1124 +#: ../../mod/settings.php:1127 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: ../../mod/settings.php:1126 +#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "Kompletter Name:" + +#: ../../mod/settings.php:1129 msgid "Email Address:" msgstr "E-Mail-Adresse:" -#: ../../mod/settings.php:1127 +#: ../../mod/settings.php:1130 msgid "Your Timezone:" msgstr "Deine Zeitzone:" -#: ../../mod/settings.php:1128 +#: ../../mod/settings.php:1131 msgid "Default Post Location:" msgstr "Standardstandort:" -#: ../../mod/settings.php:1129 +#: ../../mod/settings.php:1132 msgid "Use Browser Location:" msgstr "Standort des Browsers verwenden:" -#: ../../mod/settings.php:1132 +#: ../../mod/settings.php:1135 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Privatsphäre-Einstellungen" -#: ../../mod/settings.php:1134 +#: ../../mod/settings.php:1137 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:" -#: ../../mod/settings.php:1134 ../../mod/settings.php:1164 +#: ../../mod/settings.php:1137 ../../mod/settings.php:1167 msgid "(to prevent spam abuse)" msgstr "(um SPAM zu vermeiden)" -#: ../../mod/settings.php:1135 +#: ../../mod/settings.php:1138 msgid "Default Post Permissions" msgstr "Standard-Zugriffsrechte für Beiträge" -#: ../../mod/settings.php:1136 +#: ../../mod/settings.php:1139 msgid "(click to open/close)" msgstr "(klicke zum öffnen/schließen)" -#: ../../mod/settings.php:1145 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1517 +#: ../../mod/settings.php:1148 ../../mod/photos.php:1146 +#: ../../mod/photos.php:1519 msgid "Show to Groups" msgstr "Zeige den Gruppen" -#: ../../mod/settings.php:1146 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1518 +#: ../../mod/settings.php:1149 ../../mod/photos.php:1147 +#: ../../mod/photos.php:1520 msgid "Show to Contacts" msgstr "Zeige den Kontakten" -#: ../../mod/settings.php:1147 +#: ../../mod/settings.php:1150 msgid "Default Private Post" msgstr "Privater Standardbeitrag" -#: ../../mod/settings.php:1148 +#: ../../mod/settings.php:1151 msgid "Default Public Post" msgstr "Öffentlicher Standardbeitrag" -#: ../../mod/settings.php:1152 +#: ../../mod/settings.php:1155 msgid "Default Permissions for New Posts" msgstr "Standardberechtigungen für neue Beiträge" -#: ../../mod/settings.php:1164 +#: ../../mod/settings.php:1167 msgid "Maximum private messages per day from unknown people:" msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" -#: ../../mod/settings.php:1167 +#: ../../mod/settings.php:1170 msgid "Notification Settings" msgstr "Benachrichtigungseinstellungen" -#: ../../mod/settings.php:1168 +#: ../../mod/settings.php:1171 msgid "By default post a status message when:" msgstr "Standardmäßig eine Statusnachricht posten, wenn:" -#: ../../mod/settings.php:1169 +#: ../../mod/settings.php:1172 msgid "accepting a friend request" msgstr "– du eine Kontaktanfrage akzeptierst" -#: ../../mod/settings.php:1170 +#: ../../mod/settings.php:1173 msgid "joining a forum/community" msgstr "– du einem Forum/einer Gemeinschaftsseite beitrittst" -#: ../../mod/settings.php:1171 +#: ../../mod/settings.php:1174 msgid "making an interesting profile change" msgstr "– du eine interessante Änderung an deinem Profil durchführst" -#: ../../mod/settings.php:1172 +#: ../../mod/settings.php:1175 msgid "Send a notification email when:" msgstr "Benachrichtigungs-E-Mail senden wenn:" -#: ../../mod/settings.php:1173 +#: ../../mod/settings.php:1176 msgid "You receive an introduction" msgstr "– du eine Kontaktanfrage erhältst" -#: ../../mod/settings.php:1174 +#: ../../mod/settings.php:1177 msgid "Your introductions are confirmed" msgstr "– eine deiner Kontaktanfragen akzeptiert wurde" -#: ../../mod/settings.php:1175 +#: ../../mod/settings.php:1178 msgid "Someone writes on your profile wall" msgstr "– jemand etwas auf deine Pinnwand schreibt" -#: ../../mod/settings.php:1176 +#: ../../mod/settings.php:1179 msgid "Someone writes a followup comment" msgstr "– jemand auch einen Kommentar verfasst" -#: ../../mod/settings.php:1177 +#: ../../mod/settings.php:1180 msgid "You receive a private message" msgstr "– du eine private Nachricht erhältst" -#: ../../mod/settings.php:1178 +#: ../../mod/settings.php:1181 msgid "You receive a friend suggestion" msgstr "– du eine Empfehlung erhältst" -#: ../../mod/settings.php:1179 +#: ../../mod/settings.php:1182 msgid "You are tagged in a post" msgstr "– du in einem Beitrag erwähnt wirst" -#: ../../mod/settings.php:1180 +#: ../../mod/settings.php:1183 msgid "You are poked/prodded/etc. in a post" msgstr "– du von jemandem angestupst oder sonstwie behandelt wirst" -#: ../../mod/settings.php:1183 +#: ../../mod/settings.php:1185 +msgid "Text-only notification emails" +msgstr "Benachrichtigungs E-Mail als Rein-Text." + +#: ../../mod/settings.php:1187 +msgid "Send text only notification emails, without the html part" +msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil" + +#: ../../mod/settings.php:1189 msgid "Advanced Account/Page Type Settings" msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" -#: ../../mod/settings.php:1184 +#: ../../mod/settings.php:1190 msgid "Change the behaviour of this account for special situations" msgstr "Verhalten dieses Kontos in bestimmten Situationen:" -#: ../../mod/settings.php:1187 +#: ../../mod/settings.php:1193 msgid "Relocate" msgstr "Umziehen" -#: ../../mod/settings.php:1188 +#: ../../mod/settings.php:1194 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Wenn du dein Profil von einem anderen Server umgezogen hast und einige deiner Kontakte deine Beiträge nicht erhalten, verwende diesen Button." -#: ../../mod/settings.php:1189 +#: ../../mod/settings.php:1195 msgid "Resend relocate message to contacts" msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Gemeinsame Freunde" +#: ../../mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Keine gemeinsamen Kontakte." +#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung." -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden." -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Sichtbar für:" +#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse." -#: ../../mod/contacts.php:107 +#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 #, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "%d Kontakt bearbeitet." -msgstr[1] "%d Kontakte bearbeitet" - -#: ../../mod/contacts.php:138 ../../mod/contacts.php:267 -msgid "Could not access contact record." -msgstr "Konnte nicht auf die Kontaktdaten zugreifen." +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 benötigter Parameter wurde an der angegebenen Stelle nicht gefunden" +msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden" -#: ../../mod/contacts.php:152 -msgid "Could not locate selected profile." -msgstr "Konnte das ausgewählte Profil nicht finden." +#: ../../mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Kontaktanfrage abgeschlossen." -#: ../../mod/contacts.php:181 -msgid "Contact updated." -msgstr "Kontakt aktualisiert." +#: ../../mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Nicht behebbarer Protokollfehler." -#: ../../mod/contacts.php:183 ../../mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." +#: ../../mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profil nicht verfügbar." -#: ../../mod/contacts.php:282 -msgid "Contact has been blocked" -msgstr "Kontakt wurde blockiert" +#: ../../mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten." -#: ../../mod/contacts.php:282 -msgid "Contact has been unblocked" -msgstr "Kontakt wurde wieder freigegeben" +#: ../../mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Maßnahmen zum Spamschutz wurden ergriffen." -#: ../../mod/contacts.php:293 -msgid "Contact has been ignored" -msgstr "Kontakt wurde ignoriert" +#: ../../mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen." -#: ../../mod/contacts.php:293 -msgid "Contact has been unignored" -msgstr "Kontakt wird nicht mehr ignoriert" +#: ../../mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Ungültiger Locator" -#: ../../mod/contacts.php:305 -msgid "Contact has been archived" -msgstr "Kontakt wurde archiviert" +#: ../../mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Ungültige E-Mail-Adresse." -#: ../../mod/contacts.php:305 -msgid "Contact has been unarchived" -msgstr "Kontakt wurde aus dem Archiv geholt" +#: ../../mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen." -#: ../../mod/contacts.php:330 ../../mod/contacts.php:703 -msgid "Do you really want to delete this contact?" -msgstr "Möchtest du wirklich diesen Kontakt löschen?" +#: ../../mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden." -#: ../../mod/contacts.php:347 -msgid "Contact has been removed." -msgstr "Kontakt wurde entfernt." +#: ../../mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Du hast dich hier bereits vorgestellt." -#: ../../mod/contacts.php:385 +#: ../../mod/dfrn_request.php:480 #, php-format -msgid "You are mutual friends with %s" -msgstr "Du hast mit %s eine beidseitige Freundschaft" +msgid "Apparently you are already friends with %s." +msgstr "Es scheint so, als ob du bereits mit %s befreundet bist." -#: ../../mod/contacts.php:389 -#, php-format -msgid "You are sharing with %s" -msgstr "Du teilst mit %s" +#: ../../mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Ungültige Profil-URL." -#: ../../mod/contacts.php:394 -#, php-format -msgid "%s is sharing with you" -msgstr "%s teilt mit Dir" +#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "Nicht erlaubte Profil-URL." -#: ../../mod/contacts.php:411 -msgid "Private communications are not available for this contact." -msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." +#: ../../mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "Deine Kontaktanfrage wurde gesendet." -#: ../../mod/contacts.php:414 ../../mod/admin.php:540 -msgid "Never" -msgstr "Niemals" +#: ../../mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen." -#: ../../mod/contacts.php:418 -msgid "(Update was successful)" -msgstr "(Aktualisierung war erfolgreich)" +#: ../../mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an." -#: ../../mod/contacts.php:418 -msgid "(Update was not successful)" -msgstr "(Aktualisierung war nicht erfolgreich)" +#: ../../mod/dfrn_request.php:671 +msgid "Hide this contact" +msgstr "Verberge diesen Kontakt" -#: ../../mod/contacts.php:420 -msgid "Suggest friends" -msgstr "Kontakte vorschlagen" +#: ../../mod/dfrn_request.php:674 +#, php-format +msgid "Welcome home %s." +msgstr "Willkommen zurück %s." -#: ../../mod/contacts.php:424 +#: ../../mod/dfrn_request.php:675 #, php-format -msgid "Network type: %s" -msgstr "Netzwerktyp: %s" +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bitte bestätige deine Kontaktanfrage bei %s." -#: ../../mod/contacts.php:432 -msgid "View all contacts" -msgstr "Alle Kontakte anzeigen" +#: ../../mod/dfrn_request.php:676 +msgid "Confirm" +msgstr "Bestätigen" -#: ../../mod/contacts.php:437 ../../mod/contacts.php:496 -#: ../../mod/contacts.php:706 ../../mod/admin.php:970 -msgid "Unblock" -msgstr "Entsperren" +#: ../../mod/dfrn_request.php:804 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:" -#: ../../mod/contacts.php:437 ../../mod/contacts.php:496 -#: ../../mod/contacts.php:706 ../../mod/admin.php:969 -msgid "Block" -msgstr "Sperren" +#: ../../mod/dfrn_request.php:824 +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 "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten." -#: ../../mod/contacts.php:440 -msgid "Toggle Blocked status" -msgstr "Geblockt-Status ein-/ausschalten" +#: ../../mod/dfrn_request.php:827 +msgid "Friend/Connection Request" +msgstr "Freundschafts-/Kontaktanfrage" -#: ../../mod/contacts.php:443 ../../mod/contacts.php:497 -#: ../../mod/contacts.php:707 -msgid "Unignore" -msgstr "Ignorieren aufheben" +#: ../../mod/dfrn_request.php:828 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" -#: ../../mod/contacts.php:446 -msgid "Toggle Ignored status" -msgstr "Ignoriert-Status ein-/ausschalten" +#: ../../mod/dfrn_request.php:829 +msgid "Please answer the following:" +msgstr "Bitte beantworte folgendes:" -#: ../../mod/contacts.php:450 ../../mod/contacts.php:708 -msgid "Unarchive" -msgstr "Aus Archiv zurückholen" +#: ../../mod/dfrn_request.php:830 +#, php-format +msgid "Does %s know you?" +msgstr "Kennt %s dich?" -#: ../../mod/contacts.php:450 ../../mod/contacts.php:708 -msgid "Archive" -msgstr "Archivieren" +#: ../../mod/dfrn_request.php:834 +msgid "Add a personal note:" +msgstr "Eine persönliche Notiz beifügen:" -#: ../../mod/contacts.php:453 -msgid "Toggle Archive status" -msgstr "Archiviert-Status ein-/ausschalten" +#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../mod/contacts.php:456 -msgid "Repair" -msgstr "Reparieren" +#: ../../mod/dfrn_request.php:837 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" -#: ../../mod/contacts.php:459 -msgid "Advanced Contact Settings" -msgstr "Fortgeschrittene Kontakteinstellungen" +#: ../../mod/dfrn_request.php:839 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste." -#: ../../mod/contacts.php:465 -msgid "Communications lost with this contact!" -msgstr "Verbindungen mit diesem Kontakt verloren!" +#: ../../mod/dfrn_request.php:840 +msgid "Your Identity Address:" +msgstr "Adresse deines Profils:" -#: ../../mod/contacts.php:468 -msgid "Contact Editor" -msgstr "Kontakt Editor" +#: ../../mod/dfrn_request.php:843 +msgid "Submit Request" +msgstr "Anfrage abschicken" -#: ../../mod/contacts.php:471 -msgid "Profile Visibility" -msgstr "Profil-Sichtbarkeit" +#: ../../mod/register.php:90 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet." -#: ../../mod/contacts.php:472 +#: ../../mod/register.php:96 #, php-format msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft." - -#: ../../mod/contacts.php:473 -msgid "Contact Information / Notes" -msgstr "Kontakt Informationen / Notizen" - -#: ../../mod/contacts.php:474 -msgid "Edit contact notes" -msgstr "Notizen zum Kontakt bearbeiten" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern." -#: ../../mod/contacts.php:479 ../../mod/contacts.php:671 -#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:62 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Besuche %ss Profil [%s]" +#: ../../mod/register.php:105 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." -#: ../../mod/contacts.php:480 -msgid "Block/Unblock contact" -msgstr "Kontakt blockieren/freischalten" +#: ../../mod/register.php:148 +msgid "Your registration is pending approval by the site owner." +msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." -#: ../../mod/contacts.php:481 -msgid "Ignore contact" -msgstr "Ignoriere den Kontakt" +#: ../../mod/register.php:186 ../../mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal." -#: ../../mod/contacts.php:482 -msgid "Repair URL settings" -msgstr "URL Einstellungen reparieren" +#: ../../mod/register.php:214 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst." -#: ../../mod/contacts.php:483 -msgid "View conversations" -msgstr "Unterhaltungen anzeigen" +#: ../../mod/register.php:215 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus." -#: ../../mod/contacts.php:485 -msgid "Delete contact" -msgstr "Lösche den Kontakt" +#: ../../mod/register.php:216 +msgid "Your OpenID (optional): " +msgstr "Deine OpenID (optional): " -#: ../../mod/contacts.php:489 -msgid "Last update:" -msgstr "letzte Aktualisierung:" +#: ../../mod/register.php:230 +msgid "Include your profile in member directory?" +msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?" -#: ../../mod/contacts.php:491 -msgid "Update public posts" -msgstr "Öffentliche Beiträge aktualisieren" +#: ../../mod/register.php:251 +msgid "Membership on this site is by invitation only." +msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." -#: ../../mod/contacts.php:493 ../../mod/admin.php:1464 -msgid "Update now" -msgstr "Jetzt aktualisieren" +#: ../../mod/register.php:252 +msgid "Your invitation ID: " +msgstr "ID deiner Einladung: " -#: ../../mod/contacts.php:500 -msgid "Currently blocked" -msgstr "Derzeit geblockt" +#: ../../mod/register.php:263 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Vollständiger Name (z.B. Max Mustermann): " -#: ../../mod/contacts.php:501 -msgid "Currently ignored" -msgstr "Derzeit ignoriert" +#: ../../mod/register.php:264 +msgid "Your Email Address: " +msgstr "Deine E-Mail-Adresse: " -#: ../../mod/contacts.php:502 -msgid "Currently archived" -msgstr "Momentan archiviert" - -#: ../../mod/contacts.php:503 +#: ../../mod/register.php:265 msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein" - -#: ../../mod/contacts.php:504 -msgid "Notification for new posts" -msgstr "Benachrichtigung bei neuen Beiträgen" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird 'spitzname@$sitename' sein." -#: ../../mod/contacts.php:504 -msgid "Send a notification of every new post of this contact" -msgstr "Sende eine Benachrichtigung wann immer dieser Kontakt einen neuen Beitrag schreibt." +#: ../../mod/register.php:266 +msgid "Choose a nickname: " +msgstr "Spitznamen wählen: " -#: ../../mod/contacts.php:505 -msgid "Fetch further information for feeds" -msgstr "Weitere Informationen zu Feeds holen" +#: ../../mod/register.php:269 ../../boot.php:1236 ../../include/nav.php:109 +msgid "Register" +msgstr "Registrieren" -#: ../../mod/contacts.php:556 -msgid "Suggestions" -msgstr "Kontaktvorschläge" +#: ../../mod/register.php:275 ../../mod/uimport.php:64 +msgid "Import" +msgstr "Import" -#: ../../mod/contacts.php:559 -msgid "Suggest potential friends" -msgstr "Freunde vorschlagen" +#: ../../mod/register.php:276 +msgid "Import your profile to this friendica instance" +msgstr "Importiere dein Profil auf diese Friendica Instanz" -#: ../../mod/contacts.php:565 -msgid "Show all contacts" -msgstr "Alle Kontakte anzeigen" +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "System zur Wartung abgeschaltet" -#: ../../mod/contacts.php:568 -msgid "Unblocked" -msgstr "Ungeblockt" +#: ../../mod/search.php:99 ../../include/text.php:952 +#: ../../include/text.php:953 ../../include/nav.php:119 +msgid "Search" +msgstr "Suche" -#: ../../mod/contacts.php:571 -msgid "Only show unblocked contacts" -msgstr "Nur nicht-blockierte Kontakte anzeigen" +#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Weltweites Verzeichnis" -#: ../../mod/contacts.php:575 -msgid "Blocked" -msgstr "Geblockt" +#: ../../mod/directory.php:59 +msgid "Find on this site" +msgstr "Auf diesem Server suchen" -#: ../../mod/contacts.php:578 -msgid "Only show blocked contacts" -msgstr "Nur blockierte Kontakte anzeigen" +#: ../../mod/directory.php:62 +msgid "Site Directory" +msgstr "Verzeichnis" -#: ../../mod/contacts.php:582 -msgid "Ignored" -msgstr "Ignoriert" +#: ../../mod/directory.php:113 ../../mod/profiles.php:716 +msgid "Age: " +msgstr "Alter: " -#: ../../mod/contacts.php:585 -msgid "Only show ignored contacts" -msgstr "Nur ignorierte Kontakte anzeigen" +#: ../../mod/directory.php:116 +msgid "Gender: " +msgstr "Geschlecht:" -#: ../../mod/contacts.php:589 -msgid "Archived" -msgstr "Archiviert" +#: ../../mod/directory.php:138 ../../boot.php:1645 +#: ../../include/profile_advanced.php:17 +msgid "Gender:" +msgstr "Geschlecht:" -#: ../../mod/contacts.php:592 -msgid "Only show archived contacts" -msgstr "Nur archivierte Kontakte anzeigen" +#: ../../mod/directory.php:140 ../../boot.php:1648 +#: ../../include/profile_advanced.php:37 +msgid "Status:" +msgstr "Status:" -#: ../../mod/contacts.php:596 -msgid "Hidden" -msgstr "Verborgen" +#: ../../mod/directory.php:142 ../../boot.php:1650 +#: ../../include/profile_advanced.php:48 +msgid "Homepage:" +msgstr "Homepage:" -#: ../../mod/contacts.php:599 -msgid "Only show hidden contacts" -msgstr "Nur verborgene Kontakte anzeigen" +#: ../../mod/directory.php:144 ../../boot.php:1652 +#: ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "Über:" -#: ../../mod/contacts.php:647 -msgid "Mutual Friendship" -msgstr "Beidseitige Freundschaft" +#: ../../mod/directory.php:189 +msgid "No entries (some entries may be hidden)." +msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." -#: ../../mod/contacts.php:651 -msgid "is a fan of yours" -msgstr "ist ein Fan von dir" +#: ../../mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." -#: ../../mod/contacts.php:655 -msgid "you are a fan of" -msgstr "du bist Fan von" +#: ../../mod/delegate.php:130 ../../include/nav.php:168 +msgid "Delegate Page Management" +msgstr "Delegiere das Management für die Seite" -#: ../../mod/contacts.php:672 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Kontakt bearbeiten" +#: ../../mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!" -#: ../../mod/contacts.php:698 -msgid "Search your contacts" -msgstr "Suche in deinen Kontakten" +#: ../../mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Vorhandene Seitenmanager" -#: ../../mod/contacts.php:699 ../../mod/directory.php:61 -msgid "Finding: " -msgstr "Funde: " +#: ../../mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Vorhandene Bevollmächtigte für die Seite" -#: ../../mod/wall_attach.php:75 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt." +#: ../../mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Potentielle Bevollmächtigte" -#: ../../mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?" +#: ../../mod/delegate.php:140 +msgid "Add" +msgstr "Hinzufügen" -#: ../../mod/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Die Datei ist größer als das erlaubte Limit von %d" +#: ../../mod/delegate.php:141 +msgid "No entries." +msgstr "Keine Einträge." -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Hochladen der Datei fehlgeschlagen." +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Gemeinsame Freunde" -#: ../../mod/update_community.php:18 ../../mod/update_network.php:25 -#: ../../mod/update_notes.php:37 ../../mod/update_display.php:22 -#: ../../mod/update_profile.php:41 -msgid "[Embedded content - reload page to view]" -msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]" +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Keine gemeinsamen Kontakte." #: ../../mod/uexport.php:77 msgid "Export account" @@ -4400,3318 +4586,3236 @@ msgid "" "of your account (photos are not exported)" msgstr "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Fotos werden nicht exportiert)." -#: ../../mod/register.php:93 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet." +#: ../../mod/mood.php:62 ../../include/conversation.php:227 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s ist momentan %2$s" -#: ../../mod/register.php:97 -msgid "Failed to send email message. Here is the message that failed." -msgstr "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte." +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Stimmung" -#: ../../mod/register.php:102 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden" -#: ../../mod/register.php:145 -msgid "Your registration is pending approval by the site owner." -msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Möchtest du wirklich diese Empfehlung löschen?" -#: ../../mod/register.php:183 ../../mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal." +#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35 +#: ../../view/theme/diabook/theme.php:527 +msgid "Friend Suggestions" +msgstr "Kontaktvorschläge" -#: ../../mod/register.php:211 +#: ../../mod/suggest.php:74 msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst." +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal." -#: ../../mod/register.php:212 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus." +#: ../../mod/suggest.php:92 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verbergen" -#: ../../mod/register.php:213 -msgid "Your OpenID (optional): " -msgstr "Deine OpenID (optional): " +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profil gelöscht." -#: ../../mod/register.php:227 -msgid "Include your profile in member directory?" -msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?" +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" +msgstr "Profil-" -#: ../../mod/register.php:248 -msgid "Membership on this site is by invitation only." -msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." +msgstr "Neues Profil angelegt." -#: ../../mod/register.php:249 -msgid "Your invitation ID: " -msgstr "ID deiner Einladung: " +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Profil nicht zum Duplizieren verfügbar." -#: ../../mod/register.php:252 ../../mod/admin.php:589 -msgid "Registration" -msgstr "Registrierung" +#: ../../mod/profiles.php:172 +msgid "Profile Name is required." +msgstr "Profilname ist erforderlich." -#: ../../mod/register.php:260 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Vollständiger Name (z.B. Max Mustermann): " +#: ../../mod/profiles.php:323 +msgid "Marital Status" +msgstr "Familienstand" -#: ../../mod/register.php:261 -msgid "Your Email Address: " -msgstr "Deine E-Mail-Adresse: " +#: ../../mod/profiles.php:327 +msgid "Romantic Partner" +msgstr "Romanze" -#: ../../mod/register.php:262 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird 'spitzname@$sitename' sein." +#: ../../mod/profiles.php:331 +msgid "Likes" +msgstr "Likes" -#: ../../mod/register.php:263 -msgid "Choose a nickname: " -msgstr "Spitznamen wählen: " +#: ../../mod/profiles.php:335 +msgid "Dislikes" +msgstr "Dislikes" -#: ../../mod/register.php:272 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Import" +#: ../../mod/profiles.php:339 +msgid "Work/Employment" +msgstr "Arbeit / Beschäftigung" -#: ../../mod/register.php:273 -msgid "Import your profile to this friendica instance" -msgstr "Importiere dein Profil auf diese Friendica Instanz" +#: ../../mod/profiles.php:342 +msgid "Religion" +msgstr "Religion" -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Beitrag erfolgreich veröffentlicht." +#: ../../mod/profiles.php:346 +msgid "Political Views" +msgstr "Politische Ansichten" -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "System zur Wartung abgeschaltet" +#: ../../mod/profiles.php:350 +msgid "Gender" +msgstr "Geschlecht" -#: ../../mod/profile.php:155 ../../mod/display.php:288 -msgid "Access to this profile has been restricted." -msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." +#: ../../mod/profiles.php:354 +msgid "Sexual Preference" +msgstr "Sexuelle Vorlieben" -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Tipps für neue Nutzer" +#: ../../mod/profiles.php:358 +msgid "Homepage" +msgstr "Webseite" -#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:766 -#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:920 -#: ../../mod/search.php:89 ../../mod/community.php:18 -#: ../../mod/display.php:180 ../../mod/directory.php:33 -msgid "Public access denied." -msgstr "Öffentlicher Zugriff verweigert." +#: ../../mod/profiles.php:362 ../../mod/profiles.php:664 +msgid "Interests" +msgstr "Interessen" -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Keine Videos ausgewählt" +#: ../../mod/profiles.php:366 +msgid "Address" +msgstr "Adresse" -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 -msgid "Access to this item is restricted." -msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." +#: ../../mod/profiles.php:373 ../../mod/profiles.php:660 +msgid "Location" +msgstr "Wohnort" -#: ../../mod/videos.php:308 ../../mod/photos.php:1806 -msgid "View Album" -msgstr "Album betrachten" +#: ../../mod/profiles.php:456 +msgid "Profile updated." +msgstr "Profil aktualisiert." -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Neueste Videos" +#: ../../mod/profiles.php:534 +msgid " and " +msgstr " und " -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Neues Video hochladen" +#: ../../mod/profiles.php:542 +msgid "public profile" +msgstr "öffentliches Profil" -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Verwalte Identitäten und/oder Seiten" +#: ../../mod/profiles.php:545 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s hat %2$s geändert auf “%3$s”" -#: ../../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 "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast." +#: ../../mod/profiles.php:546 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " – %1$ss %2$s besuchen" -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Wähle eine Identität zum Verwalten aus: " +#: ../../mod/profiles.php:549 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s." -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Beitrag nicht gefunden" +#: ../../mod/profiles.php:624 +msgid "Hide contacts and friends:" +msgstr "Kontakte und Freunde verbergen" -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Beitrag bearbeiten" +#: ../../mod/profiles.php:629 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?" -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Personensuche" +#: ../../mod/profiles.php:651 +msgid "Edit Profile Details" +msgstr "Profil bearbeiten" -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Keine Übereinstimmungen" +#: ../../mod/profiles.php:653 +msgid "Change Profile Photo" +msgstr "Profilbild ändern" -#: ../../mod/regmod.php:54 -msgid "Account approved." -msgstr "Konto freigegeben." +#: ../../mod/profiles.php:654 +msgid "View this profile" +msgstr "Dieses Profil anzeigen" -#: ../../mod/regmod.php:91 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s wurde zurückgezogen" +#: ../../mod/profiles.php:655 +msgid "Create a new profile using these settings" +msgstr "Neues Profil anlegen und diese Einstellungen verwenden" -#: ../../mod/regmod.php:103 -msgid "Please login." -msgstr "Bitte melde dich an." +#: ../../mod/profiles.php:656 +msgid "Clone this profile" +msgstr "Dieses Profil duplizieren" -#: ../../mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." +#: ../../mod/profiles.php:657 +msgid "Delete this profile" +msgstr "Dieses Profil löschen" -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung." +#: ../../mod/profiles.php:658 +msgid "Basic information" +msgstr "Grundinformationen" -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden." +#: ../../mod/profiles.php:659 +msgid "Profile picture" +msgstr "Profilbild" -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse." +#: ../../mod/profiles.php:661 +msgid "Preferences" +msgstr "Vorlieben" -#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden" -msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden" +#: ../../mod/profiles.php:662 +msgid "Status information" +msgstr "Status Informationen" -#: ../../mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Kontaktanfrage abgeschlossen." +#: ../../mod/profiles.php:663 +msgid "Additional information" +msgstr "Zusätzliche Informationen" -#: ../../mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Nicht behebbarer Protokollfehler." +#: ../../mod/profiles.php:666 +msgid "Profile Name:" +msgstr "Profilname:" -#: ../../mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profil nicht verfügbar." +#: ../../mod/profiles.php:667 +msgid "Your Full Name:" +msgstr "Dein kompletter Name:" -#: ../../mod/dfrn_request.php:267 +#: ../../mod/profiles.php:668 +msgid "Title/Description:" +msgstr "Titel/Beschreibung:" + +#: ../../mod/profiles.php:669 +msgid "Your Gender:" +msgstr "Dein Geschlecht:" + +#: ../../mod/profiles.php:670 #, php-format -msgid "%s has received too many connection requests today." -msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten." +msgid "Birthday (%s):" +msgstr "Geburtstag (%s):" -#: ../../mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Maßnahmen zum Spamschutz wurden ergriffen." +#: ../../mod/profiles.php:671 +msgid "Street Address:" +msgstr "Adresse:" -#: ../../mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen." +#: ../../mod/profiles.php:672 +msgid "Locality/City:" +msgstr "Wohnort:" -#: ../../mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Ungültiger Locator" +#: ../../mod/profiles.php:673 +msgid "Postal/Zip Code:" +msgstr "Postleitzahl:" -#: ../../mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Ungültige E-Mail-Adresse." +#: ../../mod/profiles.php:674 +msgid "Country:" +msgstr "Land:" -#: ../../mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen." +#: ../../mod/profiles.php:675 +msgid "Region/State:" +msgstr "Region/Bundesstaat:" -#: ../../mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden." +#: ../../mod/profiles.php:676 +msgid " Marital Status:" +msgstr " Beziehungsstatus:" -#: ../../mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Du hast dich hier bereits vorgestellt." +#: ../../mod/profiles.php:677 +msgid "Who: (if applicable)" +msgstr "Wer: (falls anwendbar)" -#: ../../mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Es scheint so, als ob du bereits mit %s befreundet bist." +#: ../../mod/profiles.php:678 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" -#: ../../mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Ungültige Profil-URL." +#: ../../mod/profiles.php:679 +msgid "Since [date]:" +msgstr "Seit [Datum]:" -#: ../../mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Deine Kontaktanfrage wurde gesendet." +#: ../../mod/profiles.php:680 ../../include/profile_advanced.php:46 +msgid "Sexual Preference:" +msgstr "Sexuelle Vorlieben:" -#: ../../mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen." +#: ../../mod/profiles.php:681 +msgid "Homepage URL:" +msgstr "Adresse der Homepage:" -#: ../../mod/dfrn_request.php:664 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an." +#: ../../mod/profiles.php:682 ../../include/profile_advanced.php:50 +msgid "Hometown:" +msgstr "Heimatort:" -#: ../../mod/dfrn_request.php:675 -msgid "Hide this contact" -msgstr "Verberge diesen Kontakt" +#: ../../mod/profiles.php:683 ../../include/profile_advanced.php:54 +msgid "Political Views:" +msgstr "Politische Ansichten:" -#: ../../mod/dfrn_request.php:678 -#, php-format -msgid "Welcome home %s." -msgstr "Willkommen zurück %s." +#: ../../mod/profiles.php:684 +msgid "Religious Views:" +msgstr "Religiöse Ansichten:" -#: ../../mod/dfrn_request.php:679 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bitte bestätige deine Kontaktanfrage bei %s." +#: ../../mod/profiles.php:685 +msgid "Public Keywords:" +msgstr "Öffentliche Schlüsselwörter:" -#: ../../mod/dfrn_request.php:680 -msgid "Confirm" -msgstr "Bestätigen" +#: ../../mod/profiles.php:686 +msgid "Private Keywords:" +msgstr "Private Schlüsselwörter:" -#: ../../mod/dfrn_request.php:808 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:" +#: ../../mod/profiles.php:687 ../../include/profile_advanced.php:62 +msgid "Likes:" +msgstr "Likes:" -#: ../../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 "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten." +#: ../../mod/profiles.php:688 ../../include/profile_advanced.php:64 +msgid "Dislikes:" +msgstr "Dislikes:" -#: ../../mod/dfrn_request.php:831 -msgid "Friend/Connection Request" -msgstr "Freundschafts-/Kontaktanfrage" +#: ../../mod/profiles.php:689 +msgid "Example: fishing photography software" +msgstr "Beispiel: Fischen Fotografie Software" -#: ../../mod/dfrn_request.php:832 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" +#: ../../mod/profiles.php:690 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)" -#: ../../mod/dfrn_request.php:833 -msgid "Please answer the following:" -msgstr "Bitte beantworte folgendes:" +#: ../../mod/profiles.php:691 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)" -#: ../../mod/dfrn_request.php:834 -#, php-format -msgid "Does %s know you?" -msgstr "Kennt %s dich?" +#: ../../mod/profiles.php:692 +msgid "Tell us about yourself..." +msgstr "Erzähle uns ein bisschen von dir …" -#: ../../mod/dfrn_request.php:838 -msgid "Add a personal note:" -msgstr "Eine persönliche Notiz beifügen:" +#: ../../mod/profiles.php:693 +msgid "Hobbies/Interests" +msgstr "Hobbies/Interessen" -#: ../../mod/dfrn_request.php:841 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" +#: ../../mod/profiles.php:694 +msgid "Contact information and Social Networks" +msgstr "Kontaktinformationen und Soziale Netzwerke" -#: ../../mod/dfrn_request.php:843 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste." +#: ../../mod/profiles.php:695 +msgid "Musical interests" +msgstr "Musikalische Interessen" -#: ../../mod/dfrn_request.php:844 -msgid "Your Identity Address:" -msgstr "Adresse deines Profils:" +#: ../../mod/profiles.php:696 +msgid "Books, literature" +msgstr "Bücher, Literatur" -#: ../../mod/dfrn_request.php:847 -msgid "Submit Request" -msgstr "Anfrage abschicken" +#: ../../mod/profiles.php:697 +msgid "Television" +msgstr "Fernsehen" -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Dateien" +#: ../../mod/profiles.php:698 +msgid "Film/dance/culture/entertainment" +msgstr "Filme/Tänze/Kultur/Unterhaltung" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Verbindung der Applikation autorisieren" +#: ../../mod/profiles.php:699 +msgid "Love/romance" +msgstr "Liebe/Romantik" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:" +#: ../../mod/profiles.php:700 +msgid "Work/employment" +msgstr "Arbeit/Anstellung" -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Bitte melde dich an um fortzufahren." +#: ../../mod/profiles.php:701 +msgid "School/education" +msgstr "Schule/Ausbildung" -#: ../../mod/api.php:104 +#: ../../mod/profiles.php:706 msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Dies ist dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein." -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Möchtest du wirklich diese Empfehlung löschen?" +#: ../../mod/profiles.php:769 +msgid "Edit/Manage Profiles" +msgstr "Bearbeite/Verwalte Profile" -#: ../../mod/suggest.php:72 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal." +#: ../../mod/profiles.php:770 ../../boot.php:1606 ../../boot.php:1632 +msgid "Change profile photo" +msgstr "Profilbild ändern" -#: ../../mod/suggest.php:90 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verbergen" +#: ../../mod/profiles.php:771 ../../boot.php:1607 +msgid "Create New Profile" +msgstr "Neues Profil anlegen" -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Kontakte, die keiner Gruppe zugewiesen sind" +#: ../../mod/profiles.php:782 ../../boot.php:1617 +msgid "Profile Image" +msgstr "Profilbild" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -#: ../../mod/crepair.php:131 ../../mod/dfrn_confirm.php:120 -msgid "Contact not found." -msgstr "Kontakt nicht gefunden." +#: ../../mod/profiles.php:784 ../../boot.php:1620 +msgid "visible to everybody" +msgstr "sichtbar für jeden" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Kontaktvorschlag gesendet." +#: ../../mod/profiles.php:785 ../../boot.php:1621 +msgid "Edit visibility" +msgstr "Sichtbarkeit bearbeiten" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Kontakte vorschlagen" +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Beitrag nicht gefunden" -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Schlage %s einen Kontakt vor" +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Beitrag bearbeiten" -#: ../../mod/share.php:44 -msgid "link" -msgstr "Link" +#: ../../mod/editpost.php:111 ../../include/conversation.php:1092 +msgid "upload photo" +msgstr "Bild hochladen" -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." -msgstr "Keine Kontakte." +#: ../../mod/editpost.php:112 ../../include/conversation.php:1093 +msgid "Attach file" +msgstr "Datei anhängen" -#: ../../mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Themeneinstellungen aktualisiert." +#: ../../mod/editpost.php:113 ../../include/conversation.php:1094 +msgid "attach file" +msgstr "Datei anhängen" -#: ../../mod/admin.php:104 ../../mod/admin.php:587 -msgid "Site" -msgstr "Seite" +#: ../../mod/editpost.php:115 ../../include/conversation.php:1096 +msgid "web link" +msgstr "Weblink" -#: ../../mod/admin.php:105 ../../mod/admin.php:959 ../../mod/admin.php:974 -msgid "Users" -msgstr "Nutzer" +#: ../../mod/editpost.php:116 ../../include/conversation.php:1097 +msgid "Insert video link" +msgstr "Video-Adresse einfügen" -#: ../../mod/admin.php:107 ../../mod/admin.php:1284 ../../mod/admin.php:1318 -msgid "Themes" -msgstr "Themen" +#: ../../mod/editpost.php:117 ../../include/conversation.php:1098 +msgid "video link" +msgstr "Video-Link" -#: ../../mod/admin.php:108 -msgid "DB updates" -msgstr "DB Updates" +#: ../../mod/editpost.php:118 ../../include/conversation.php:1099 +msgid "Insert audio link" +msgstr "Audio-Adresse einfügen" -#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1405 -msgid "Logs" -msgstr "Protokolle" +#: ../../mod/editpost.php:119 ../../include/conversation.php:1100 +msgid "audio link" +msgstr "Audio-Link" -#: ../../mod/admin.php:129 -msgid "Plugin Features" -msgstr "Plugin Features" +#: ../../mod/editpost.php:120 ../../include/conversation.php:1101 +msgid "Set your location" +msgstr "Deinen Standort festlegen" -#: ../../mod/admin.php:131 -msgid "User registrations waiting for confirmation" -msgstr "Nutzeranmeldungen die auf Bestätigung warten" +#: ../../mod/editpost.php:121 ../../include/conversation.php:1102 +msgid "set location" +msgstr "Ort setzen" -#: ../../mod/admin.php:190 ../../mod/admin.php:913 -msgid "Normal Account" -msgstr "Normales Konto" +#: ../../mod/editpost.php:122 ../../include/conversation.php:1103 +msgid "Clear browser location" +msgstr "Browser-Standort leeren" -#: ../../mod/admin.php:191 ../../mod/admin.php:914 -msgid "Soapbox Account" -msgstr "Marktschreier-Konto" +#: ../../mod/editpost.php:123 ../../include/conversation.php:1104 +msgid "clear location" +msgstr "Ort löschen" -#: ../../mod/admin.php:192 ../../mod/admin.php:915 -msgid "Community/Celebrity Account" -msgstr "Forum/Promi-Konto" +#: ../../mod/editpost.php:125 ../../include/conversation.php:1110 +msgid "Permission settings" +msgstr "Berechtigungseinstellungen" -#: ../../mod/admin.php:193 ../../mod/admin.php:916 -msgid "Automatic Friend Account" -msgstr "Automatisches Freundekonto" +#: ../../mod/editpost.php:133 ../../include/conversation.php:1119 +msgid "CC: email addresses" +msgstr "Cc: E-Mail-Addressen" -#: ../../mod/admin.php:194 -msgid "Blog Account" -msgstr "Blog-Konto" +#: ../../mod/editpost.php:134 ../../include/conversation.php:1120 +msgid "Public post" +msgstr "Öffentlicher Beitrag" -#: ../../mod/admin.php:195 -msgid "Private Forum" -msgstr "Privates Forum" +#: ../../mod/editpost.php:137 ../../include/conversation.php:1106 +msgid "Set title" +msgstr "Titel setzen" -#: ../../mod/admin.php:214 -msgid "Message queues" -msgstr "Nachrichten-Warteschlangen" +#: ../../mod/editpost.php:139 ../../include/conversation.php:1108 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (kommasepariert)" -#: ../../mod/admin.php:219 ../../mod/admin.php:586 ../../mod/admin.php:958 -#: ../../mod/admin.php:1062 ../../mod/admin.php:1115 ../../mod/admin.php:1283 -#: ../../mod/admin.php:1317 ../../mod/admin.php:1404 -msgid "Administration" -msgstr "Administration" +#: ../../mod/editpost.php:140 ../../include/conversation.php:1122 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Z.B.: bob@example.com, mary@example.com" -#: ../../mod/admin.php:220 -msgid "Summary" -msgstr "Zusammenfassung" +#: ../../mod/friendica.php:62 +msgid "This is Friendica, version" +msgstr "Dies ist Friendica, Version" -#: ../../mod/admin.php:222 -msgid "Registered users" -msgstr "Registrierte Nutzer" +#: ../../mod/friendica.php:63 +msgid "running at web location" +msgstr "die unter folgender Webadresse zu finden ist" -#: ../../mod/admin.php:224 -msgid "Pending registrations" -msgstr "Anstehende Anmeldungen" +#: ../../mod/friendica.php:65 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren." -#: ../../mod/admin.php:225 -msgid "Version" -msgstr "Version" +#: ../../mod/friendica.php:67 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" -#: ../../mod/admin.php:227 -msgid "Active plugins" -msgstr "Aktive Plugins" +#: ../../mod/friendica.php:68 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com" -#: ../../mod/admin.php:250 -msgid "Can not parse base url. Must have at least ://" -msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen" +#: ../../mod/friendica.php:82 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Erweiterungen/Apps" -#: ../../mod/admin.php:494 -msgid "Site settings updated." -msgstr "Seiteneinstellungen aktualisiert." +#: ../../mod/friendica.php:95 +msgid "No installed plugins/addons/apps" +msgstr "Keine Plugins/Erweiterungen/Apps installiert" -#: ../../mod/admin.php:541 -msgid "At post arrival" -msgstr "Beim Empfang von Nachrichten" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Verbindung der Applikation autorisieren" -#: ../../mod/admin.php:550 -msgid "Multi user instance" -msgstr "Mehrbenutzer Instanz" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:" -#: ../../mod/admin.php:573 -msgid "Closed" -msgstr "Geschlossen" +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Bitte melde dich an um fortzufahren." -#: ../../mod/admin.php:574 -msgid "Requires approval" -msgstr "Bedarf der Zustimmung" +#: ../../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 "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?" -#: ../../mod/admin.php:575 -msgid "Open" -msgstr "Offen" +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." -#: ../../mod/admin.php:579 -msgid "No SSL policy, links will track page SSL state" -msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten" +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Sichtbar für:" -#: ../../mod/admin.php:580 -msgid "Force all links to use SSL" -msgstr "SSL für alle Links erzwingen" +#: ../../mod/notes.php:44 ../../boot.php:2145 +msgid "Personal Notes" +msgstr "Persönliche Notizen" -#: ../../mod/admin.php:581 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)" +#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148 +#: ../../include/event.php:11 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y\\, H:i" -#: ../../mod/admin.php:590 -msgid "File upload" -msgstr "Datei hochladen" +#: ../../mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Zeitumrechnung" -#: ../../mod/admin.php:591 -msgid "Policies" -msgstr "Regeln" +#: ../../mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann." -#: ../../mod/admin.php:592 -msgid "Advanced" -msgstr "Erweitert" +#: ../../mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "UTC Zeit: %s" -#: ../../mod/admin.php:593 -msgid "Performance" -msgstr "Performance" +#: ../../mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Aktuelle Zeitzone: %s" -#: ../../mod/admin.php:594 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen." +#: ../../mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Umgerechnete lokale Zeit: %s" -#: ../../mod/admin.php:597 -msgid "Site name" -msgstr "Seitenname" +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Bitte wähle deine Zeitzone:" -#: ../../mod/admin.php:598 -msgid "Banner/Logo" -msgstr "Banner/Logo" +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Anstupsen" -#: ../../mod/admin.php:599 -msgid "Additional Info" -msgstr "Zusätzliche Informationen" +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "Stupse Leute an oder mache anderes mit ihnen" -#: ../../mod/admin.php:599 -msgid "" -"For public servers: you can add additional information here that will be " -"listed at dir.friendica.com/siteinfo." -msgstr "Für öffentliche Server kannst du hier zusätzliche Informationen angeben, die dann auf dir.friendica.com/siteinfo angezeigt werden." +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Empfänger" -#: ../../mod/admin.php:600 -msgid "System language" -msgstr "Systemsprache" +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Was willst du mit dem Empfänger machen:" -#: ../../mod/admin.php:601 -msgid "System theme" -msgstr "Systemweites Theme" +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" -#: ../../mod/admin.php:601 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - Theme-Einstellungen ändern" +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limit für Einladungen erreicht." -#: ../../mod/admin.php:602 -msgid "Mobile system theme" -msgstr "Systemweites mobiles Theme" +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: Keine gültige Email Adresse." -#: ../../mod/admin.php:602 -msgid "Theme for mobile devices" -msgstr "Thema für mobile Geräte" +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein" -#: ../../mod/admin.php:603 -msgid "SSL link policy" -msgstr "Regeln für SSL Links" +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite." -#: ../../mod/admin.php:603 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Bestimmt, ob generierte Links SSL verwenden müssen" +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Zustellung der Nachricht fehlgeschlagen." -#: ../../mod/admin.php:604 -msgid "Old style 'Share'" -msgstr "Altes \"Teilen\" Element" +#: ../../mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d Nachricht gesendet." +msgstr[1] "%d Nachrichten gesendet." -#: ../../mod/admin.php:604 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen." +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren Einladungen" -#: ../../mod/admin.php:605 -msgid "Hide help entry from navigation menu" -msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü" +#: ../../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 "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke." -#: ../../mod/admin.php:605 +#: ../../mod/invite.php:122 +#, php-format msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden." +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website." -#: ../../mod/admin.php:606 -msgid "Single user instance" -msgstr "Ein-Nutzer Instanz" +#: ../../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 "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst." -#: ../../mod/admin.php:606 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt." +#: ../../mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen." -#: ../../mod/admin.php:607 -msgid "Maximum image size" -msgstr "Maximale Bildgröße" +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "Einladungen senden" -#: ../../mod/admin.php:607 +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "E-Mail-Adressen eingeben, eine pro Zeile:" + +#: ../../mod/invite.php:135 msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit." +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen." -#: ../../mod/admin.php:608 -msgid "Maximum image length" -msgstr "Maximale Bildlänge" +#: ../../mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Du benötigst den folgenden Einladungscode: $invite_code" -#: ../../mod/admin.php:608 +#: ../../mod/invite.php:137 msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet." - -#: ../../mod/admin.php:609 -msgid "JPEG image quality" -msgstr "Qualität des JPEG Bildes" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:" -#: ../../mod/admin.php:609 +#: ../../mod/invite.php:139 msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust." +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com" -#: ../../mod/admin.php:611 -msgid "Register policy" -msgstr "Registrierungsmethode" +#: ../../mod/photos.php:52 ../../boot.php:2124 +msgid "Photo Albums" +msgstr "Fotoalben" -#: ../../mod/admin.php:612 -msgid "Maximum Daily Registrations" -msgstr "Maximum täglicher Registrierungen" +#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1760 ../../mod/photos.php:1772 +#: ../../view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Kontaktbilder" -#: ../../mod/admin.php:612 -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 "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt." +#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 +msgid "Upload New Photos" +msgstr "Neue Fotos hochladen" -#: ../../mod/admin.php:613 -msgid "Register text" -msgstr "Registrierungstext" +#: ../../mod/photos.php:144 +msgid "Contact information unavailable" +msgstr "Kontaktinformationen nicht verfügbar" -#: ../../mod/admin.php:613 -msgid "Will be displayed prominently on the registration page." -msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt." - -#: ../../mod/admin.php:614 -msgid "Accounts abandoned after x days" -msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" +#: ../../mod/photos.php:165 +msgid "Album not found." +msgstr "Album nicht gefunden." -#: ../../mod/admin.php:614 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit." +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +msgid "Delete Album" +msgstr "Album löschen" -#: ../../mod/admin.php:615 -msgid "Allowed friend domains" -msgstr "Erlaubte Domains für Kontakte" +#: ../../mod/photos.php:198 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?" -#: ../../mod/admin.php:615 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 +msgid "Delete Photo" +msgstr "Foto löschen" -#: ../../mod/admin.php:616 -msgid "Allowed email domains" -msgstr "Erlaubte Domains für E-Mails" +#: ../../mod/photos.php:287 +msgid "Do you really want to delete this photo?" +msgstr "Möchtest du wirklich dieses Foto löschen?" -#: ../../mod/admin.php:616 -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 der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." +#: ../../mod/photos.php:662 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s wurde von %3$s in %2$s getaggt" -#: ../../mod/admin.php:617 -msgid "Block public" -msgstr "Öffentlichen Zugriff blockieren" +#: ../../mod/photos.php:662 +msgid "a photo" +msgstr "einem Foto" -#: ../../mod/admin.php:617 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist." +#: ../../mod/photos.php:767 +msgid "Image exceeds size limit of " +msgstr "Die Bildgröße übersteigt das Limit von " -#: ../../mod/admin.php:618 -msgid "Force publish" -msgstr "Erzwinge Veröffentlichung" +#: ../../mod/photos.php:775 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." -#: ../../mod/admin.php:618 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen." +#: ../../mod/photos.php:930 +msgid "No photos selected" +msgstr "Keine Bilder ausgewählt" -#: ../../mod/admin.php:619 -msgid "Global directory update URL" -msgstr "URL für Updates beim weltweiten Verzeichnis" +#: ../../mod/photos.php:1094 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers." -#: ../../mod/admin.php:619 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar." +#: ../../mod/photos.php:1129 +msgid "Upload Photos" +msgstr "Bilder hochladen" -#: ../../mod/admin.php:620 -msgid "Allow threaded items" -msgstr "Erlaube Threads in Diskussionen" +#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 +msgid "New album name: " +msgstr "Name des neuen Albums: " -#: ../../mod/admin.php:620 -msgid "Allow infinite level threading for items on this site." -msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite." +#: ../../mod/photos.php:1134 +msgid "or existing album name: " +msgstr "oder existierender Albumname: " -#: ../../mod/admin.php:621 -msgid "Private posts by default for new users" -msgstr "Private Beiträge als Standard für neue Nutzer" +#: ../../mod/photos.php:1135 +msgid "Do not show a status post for this upload" +msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" -#: ../../mod/admin.php:621 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen." +#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 +msgid "Permissions" +msgstr "Berechtigungen" -#: ../../mod/admin.php:622 -msgid "Don't include post content in email notifications" -msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden" +#: ../../mod/photos.php:1148 +msgid "Private Photo" +msgstr "Privates Foto" -#: ../../mod/admin.php:622 -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 "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden." +#: ../../mod/photos.php:1149 +msgid "Public Photo" +msgstr "Öffentliches Foto" -#: ../../mod/admin.php:623 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten." +#: ../../mod/photos.php:1212 +msgid "Edit Album" +msgstr "Album bearbeiten" -#: ../../mod/admin.php:623 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt." +#: ../../mod/photos.php:1218 +msgid "Show Newest First" +msgstr "Zeige neueste zuerst" -#: ../../mod/admin.php:624 -msgid "Don't embed private images in posts" -msgstr "Private Bilder nicht in Beiträgen einbetten." +#: ../../mod/photos.php:1220 +msgid "Show Oldest First" +msgstr "Zeige älteste zuerst" -#: ../../mod/admin.php:624 -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 "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert." +#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 +msgid "View Photo" +msgstr "Foto betrachten" -#: ../../mod/admin.php:625 -msgid "Allow Users to set remote_self" -msgstr "Nutzern erlauben das remote_self Flag zu setzen" +#: ../../mod/photos.php:1294 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." -#: ../../mod/admin.php:625 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." -msgstr "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet." +#: ../../mod/photos.php:1296 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" -#: ../../mod/admin.php:626 -msgid "Block multiple registrations" -msgstr "Unterbinde Mehrfachregistrierung" +#: ../../mod/photos.php:1352 +msgid "View photo" +msgstr "Fotos ansehen" -#: ../../mod/admin.php:626 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen." +#: ../../mod/photos.php:1352 +msgid "Edit photo" +msgstr "Foto bearbeiten" -#: ../../mod/admin.php:627 -msgid "OpenID support" -msgstr "OpenID Unterstützung" +#: ../../mod/photos.php:1353 +msgid "Use as profile photo" +msgstr "Als Profilbild verwenden" -#: ../../mod/admin.php:627 -msgid "OpenID support for registration and logins." -msgstr "OpenID-Unterstützung für Registrierung und Login." +#: ../../mod/photos.php:1378 +msgid "View Full Size" +msgstr "Betrachte Originalgröße" -#: ../../mod/admin.php:628 -msgid "Fullname check" -msgstr "Namen auf Vollständigkeit überprüfen" +#: ../../mod/photos.php:1457 +msgid "Tags: " +msgstr "Tags: " -#: ../../mod/admin.php:628 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden." +#: ../../mod/photos.php:1460 +msgid "[Remove any tag]" +msgstr "[Tag entfernen]" -#: ../../mod/admin.php:629 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 Reguläre Ausdrücke" +#: ../../mod/photos.php:1500 +msgid "Rotate CW (right)" +msgstr "Drehen US (rechts)" -#: ../../mod/admin.php:629 -msgid "Use PHP UTF8 regular expressions" -msgstr "PHP UTF8 Ausdrücke verwenden" +#: ../../mod/photos.php:1501 +msgid "Rotate CCW (left)" +msgstr "Drehen EUS (links)" -#: ../../mod/admin.php:630 -msgid "Show Community Page" -msgstr "Gemeinschaftsseite anzeigen" +#: ../../mod/photos.php:1503 +msgid "New album name" +msgstr "Name des neuen Albums" -#: ../../mod/admin.php:630 -msgid "" -"Display a Community page showing all recent public postings on this site." -msgstr "Zeige die Gemeinschaftsseite mit allen öffentlichen Beiträgen auf diesem Server." +#: ../../mod/photos.php:1506 +msgid "Caption" +msgstr "Bildunterschrift" -#: ../../mod/admin.php:631 -msgid "Enable OStatus support" -msgstr "OStatus Unterstützung aktivieren" +#: ../../mod/photos.php:1508 +msgid "Add a Tag" +msgstr "Tag hinzufügen" -#: ../../mod/admin.php:631 +#: ../../mod/photos.php:1512 msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt." +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: ../../mod/admin.php:632 -msgid "OStatus conversation completion interval" -msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen" +#: ../../mod/photos.php:1521 +msgid "Private photo" +msgstr "Privates Foto" -#: ../../mod/admin.php:632 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein." +#: ../../mod/photos.php:1522 +msgid "Public photo" +msgstr "Öffentliches Foto" -#: ../../mod/admin.php:633 -msgid "Enable Diaspora support" -msgstr "Diaspora-Support aktivieren" +#: ../../mod/photos.php:1544 ../../include/conversation.php:1090 +msgid "Share" +msgstr "Teilen" -#: ../../mod/admin.php:633 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Verwende die eingebaute Diaspora-Verknüpfung." +#: ../../mod/photos.php:1817 +msgid "Recent Photos" +msgstr "Neueste Fotos" -#: ../../mod/admin.php:634 -msgid "Only allow Friendica contacts" -msgstr "Nur Friendica-Kontakte erlauben" +#: ../../mod/regmod.php:55 +msgid "Account approved." +msgstr "Konto freigegeben." -#: ../../mod/admin.php:634 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert." +#: ../../mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrierung für %s wurde zurückgezogen" -#: ../../mod/admin.php:635 -msgid "Verify SSL" -msgstr "SSL Überprüfen" +#: ../../mod/regmod.php:104 +msgid "Please login." +msgstr "Bitte melde dich an." -#: ../../mod/admin.php:635 +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Account umziehen" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Du kannst einen Account von einem anderen Friendica Server importieren." + +#: ../../mod/uimport.php:68 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 "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann." +"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 "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist." -#: ../../mod/admin.php:636 -msgid "Proxy user" -msgstr "Proxy Nutzer" +#: ../../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 "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren" -#: ../../mod/admin.php:637 -msgid "Proxy URL" -msgstr "Proxy URL" +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "Account Datei" -#: ../../mod/admin.php:638 -msgid "Network timeout" -msgstr "Netzwerk Wartezeit" +#: ../../mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"" -#: ../../mod/admin.php:638 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)." +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Beitrag nicht verfügbar." -#: ../../mod/admin.php:639 -msgid "Delivery interval" -msgstr "Zustellungsintervall" +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Beitrag konnte nicht gefunden werden." -#: ../../mod/admin.php:639 -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 "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." +#: ../../boot.php:744 +msgid "Delete this item?" +msgstr "Diesen Beitrag löschen?" -#: ../../mod/admin.php:640 -msgid "Poll interval" -msgstr "Abfrageintervall" +#: ../../boot.php:747 +msgid "show fewer" +msgstr "weniger anzeigen" -#: ../../mod/admin.php:640 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet." +#: ../../boot.php:1117 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." -#: ../../mod/admin.php:641 -msgid "Maximum Load Average" -msgstr "Maximum Load Average" +#: ../../boot.php:1235 +msgid "Create a New Account" +msgstr "Neues Konto erstellen" -#: ../../mod/admin.php:641 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50" +#: ../../boot.php:1260 ../../include/nav.php:73 +msgid "Logout" +msgstr "Abmelden" -#: ../../mod/admin.php:643 -msgid "Use MySQL full text engine" -msgstr "Nutze MySQL full text engine" +#: ../../boot.php:1261 ../../include/nav.php:92 +msgid "Login" +msgstr "Anmeldung" -#: ../../mod/admin.php:643 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden." +#: ../../boot.php:1263 +msgid "Nickname or Email address: " +msgstr "Spitzname oder E-Mail-Adresse: " -#: ../../mod/admin.php:644 -msgid "Suppress Language" -msgstr "Sprachinformation unterdrücken" +#: ../../boot.php:1264 +msgid "Password: " +msgstr "Passwort: " -#: ../../mod/admin.php:644 -msgid "Suppress language information in meta information about a posting." -msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags." +#: ../../boot.php:1265 +msgid "Remember me" +msgstr "Anmeldedaten merken" -#: ../../mod/admin.php:645 -msgid "Path to item cache" -msgstr "Pfad zum Eintrag Cache" +#: ../../boot.php:1268 +msgid "Or login using OpenID: " +msgstr "Oder melde dich mit deiner OpenID an: " -#: ../../mod/admin.php:646 -msgid "Cache duration in seconds" -msgstr "Cache-Dauer in Sekunden" +#: ../../boot.php:1274 +msgid "Forgot your password?" +msgstr "Passwort vergessen?" -#: ../../mod/admin.php:646 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "Wie lange sollen die gecachedten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item Cache zu deaktivieren, setze diesen Wert auf -1." +#: ../../boot.php:1277 +msgid "Website Terms of Service" +msgstr "Website Nutzungsbedingungen" -#: ../../mod/admin.php:647 -msgid "Maximum numbers of comments per post" -msgstr "Maximale Anzahl von Kommentaren pro Beitrag" +#: ../../boot.php:1278 +msgid "terms of service" +msgstr "Nutzungsbedingungen" -#: ../../mod/admin.php:647 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100." +#: ../../boot.php:1280 +msgid "Website Privacy Policy" +msgstr "Website Datenschutzerklärung" -#: ../../mod/admin.php:648 -msgid "Path for lock file" -msgstr "Pfad für die Sperrdatei" +#: ../../boot.php:1281 +msgid "privacy policy" +msgstr "Datenschutzerklärung" -#: ../../mod/admin.php:649 -msgid "Temp path" -msgstr "Temp Pfad" +#: ../../boot.php:1414 +msgid "Requested account is not available." +msgstr "Das angefragte Profil ist nicht vorhanden." -#: ../../mod/admin.php:650 -msgid "Base path to installation" -msgstr "Basis-Pfad zur Installation" +#: ../../boot.php:1496 ../../boot.php:1630 +#: ../../include/profile_advanced.php:84 +msgid "Edit profile" +msgstr "Profil bearbeiten" -#: ../../mod/admin.php:651 -msgid "Disable picture proxy" -msgstr "Bilder Proxy deaktivieren" +#: ../../boot.php:1595 +msgid "Message" +msgstr "Nachricht" -#: ../../mod/admin.php:651 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "Der Proxy für Bilder verbessert die Leitung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen." +#: ../../boot.php:1601 ../../include/nav.php:173 +msgid "Profiles" +msgstr "Profile" -#: ../../mod/admin.php:653 -msgid "New base url" -msgstr "Neue Basis-URL" +#: ../../boot.php:1601 +msgid "Manage/edit profiles" +msgstr "Profile verwalten/editieren" -#: ../../mod/admin.php:655 -msgid "Enable noscrape" -msgstr "Noscrape aktivieren" +#: ../../boot.php:1701 +msgid "Network:" +msgstr "Netzwerk" -#: ../../mod/admin.php:655 -msgid "" -"The noscrape feature speeds up directory submissions by using JSON data " -"instead of HTML scraping." -msgstr "Das noscrape Feature beschleunigt Verzeichnis einsendungen indem JSON Daten gesendet werden anstelle vom analysieren der HTML Struktur." +#: ../../boot.php:1731 ../../boot.php:1817 +msgid "g A l F d" +msgstr "l, d. F G \\U\\h\\r" -#: ../../mod/admin.php:672 -msgid "Update has been marked successful" -msgstr "Update wurde als erfolgreich markiert" +#: ../../boot.php:1732 ../../boot.php:1818 +msgid "F d" +msgstr "d. F" -#: ../../mod/admin.php:680 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt." +#: ../../boot.php:1777 ../../boot.php:1858 +msgid "[today]" +msgstr "[heute]" -#: ../../mod/admin.php:683 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s" +#: ../../boot.php:1789 +msgid "Birthday Reminders" +msgstr "Geburtstagserinnerungen" -#: ../../mod/admin.php:695 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s" +#: ../../boot.php:1790 +msgid "Birthdays this week:" +msgstr "Geburtstage diese Woche:" -#: ../../mod/admin.php:698 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s war erfolgreich." +#: ../../boot.php:1851 +msgid "[No description]" +msgstr "[keine Beschreibung]" -#: ../../mod/admin.php:702 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status." +#: ../../boot.php:1869 +msgid "Event Reminders" +msgstr "Veranstaltungserinnerungen" -#: ../../mod/admin.php:704 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste." +#: ../../boot.php:1870 +msgid "Events this week:" +msgstr "Veranstaltungen diese Woche" -#: ../../mod/admin.php:723 -msgid "No failed updates." -msgstr "Keine fehlgeschlagenen Updates." +#: ../../boot.php:2107 ../../include/nav.php:76 +msgid "Status" +msgstr "Status" -#: ../../mod/admin.php:724 -msgid "Check database structure" -msgstr "Datenbank Struktur überprüfen" +#: ../../boot.php:2110 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" -#: ../../mod/admin.php:729 -msgid "Failed Updates" -msgstr "Fehlgeschlagene Updates" +#: ../../boot.php:2117 +msgid "Profile Details" +msgstr "Profildetails" -#: ../../mod/admin.php:730 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben." +#: ../../boot.php:2128 ../../boot.php:2131 ../../include/nav.php:79 +msgid "Videos" +msgstr "Videos" -#: ../../mod/admin.php:731 -msgid "Mark success (if update was manually applied)" -msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" +#: ../../boot.php:2141 +msgid "Events and Calendar" +msgstr "Ereignisse und Kalender" -#: ../../mod/admin.php:732 -msgid "Attempt to execute this update step automatically" -msgstr "Versuchen, diesen Schritt automatisch auszuführen" +#: ../../boot.php:2148 +msgid "Only You Can See This" +msgstr "Nur du kannst das sehen" -#: ../../mod/admin.php:764 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "\nHallo %1$s,\n\nauf %2$s wurde ein Account für dich angelegt." +#: ../../object/Item.php:94 +msgid "This entry was edited" +msgstr "Dieser Beitrag wurde bearbeitet." -#: ../../mod/admin.php:767 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%1$s\n\tBenutzernamename:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite)\n\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst, das erleichtert es Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser angaben ist nötigg.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %4$s." +#: ../../object/Item.php:208 +msgid "ignore thread" +msgstr "Thread ignorieren" -#: ../../mod/admin.php:811 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s Benutzer geblockt/freigegeben" -msgstr[1] "%s Benutzer geblockt/freigegeben" +#: ../../object/Item.php:209 +msgid "unignore thread" +msgstr "Thread nicht mehr ignorieren" -#: ../../mod/admin.php:818 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s Nutzer gelöscht" -msgstr[1] "%s Nutzer gelöscht" +#: ../../object/Item.php:210 +msgid "toggle ignore status" +msgstr "Ignoriert-Status ein-/ausschalten" -#: ../../mod/admin.php:857 -#, php-format -msgid "User '%s' deleted" -msgstr "Nutzer '%s' gelöscht" +#: ../../object/Item.php:213 +msgid "ignored" +msgstr "Ignoriert" -#: ../../mod/admin.php:865 -#, php-format -msgid "User '%s' unblocked" -msgstr "Nutzer '%s' entsperrt" +#: ../../object/Item.php:316 ../../include/conversation.php:666 +msgid "Categories:" +msgstr "Kategorien:" -#: ../../mod/admin.php:865 -#, php-format -msgid "User '%s' blocked" -msgstr "Nutzer '%s' gesperrt" +#: ../../object/Item.php:317 ../../include/conversation.php:667 +msgid "Filed under:" +msgstr "Abgelegt unter:" -#: ../../mod/admin.php:960 -msgid "Add User" -msgstr "Nutzer hinzufügen" +#: ../../object/Item.php:329 +msgid "via" +msgstr "via" -#: ../../mod/admin.php:961 -msgid "select all" -msgstr "Alle auswählen" +#: ../../include/dbstructure.php:26 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein." -#: ../../mod/admin.php:962 -msgid "User registrations waiting for confirm" -msgstr "Neuanmeldungen, die auf deine Bestätigung warten" +#: ../../include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" -#: ../../mod/admin.php:963 -msgid "User waiting for permanent deletion" -msgstr "Nutzer wartet auf permanente Löschung" +#: ../../include/dbstructure.php:162 +msgid "Errors encountered creating database tables." +msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." -#: ../../mod/admin.php:964 -msgid "Request date" -msgstr "Anfragedatum" +#: ../../include/dbstructure.php:220 +msgid "Errors encountered performing database changes." +msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." -#: ../../mod/admin.php:965 -msgid "No registrations." -msgstr "Keine Neuanmeldungen." +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Abgemeldet." -#: ../../mod/admin.php:967 -msgid "Deny" -msgstr "Verwehren" +#: ../../include/auth.php:128 ../../include/user.php:67 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast." -#: ../../mod/admin.php:971 -msgid "Site admin" -msgstr "Seitenadministrator" +#: ../../include/auth.php:128 ../../include/user.php:67 +msgid "The error message was:" +msgstr "Die Fehlermeldung lautete:" -#: ../../mod/admin.php:972 -msgid "Account expired" -msgstr "Account ist abgelaufen" +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Neuen Kontakt hinzufügen" -#: ../../mod/admin.php:975 -msgid "New User" -msgstr "Neuer Nutzer" +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Adresse oder Web-Link eingeben" -#: ../../mod/admin.php:976 ../../mod/admin.php:977 -msgid "Register date" -msgstr "Anmeldedatum" +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Beispiel: bob@example.com, http://example.com/barbara" -#: ../../mod/admin.php:976 ../../mod/admin.php:977 -msgid "Last login" -msgstr "Letzte Anmeldung" +#: ../../include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d Einladung verfügbar" +msgstr[1] "%d Einladungen verfügbar" -#: ../../mod/admin.php:976 ../../mod/admin.php:977 -msgid "Last item" -msgstr "Letzter Beitrag" +#: ../../include/contact_widgets.php:30 +msgid "Find People" +msgstr "Leute finden" -#: ../../mod/admin.php:976 -msgid "Deleted since" -msgstr "Gelöscht seit" +#: ../../include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" -#: ../../mod/admin.php:979 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?" +#: ../../include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" -#: ../../mod/admin.php:980 -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 "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist du sicher?" +#: ../../include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiel: Robert Morgenstein, Angeln" -#: ../../mod/admin.php:990 -msgid "Name of the new user." -msgstr "Name des neuen Nutzers" +#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526 +msgid "Similar Interests" +msgstr "Ähnliche Interessen" -#: ../../mod/admin.php:991 -msgid "Nickname" -msgstr "Spitzname" +#: ../../include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Zufälliges Profil" -#: ../../mod/admin.php:991 -msgid "Nickname of the new user." -msgstr "Spitznamen für den neuen Nutzer" +#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528 +msgid "Invite Friends" +msgstr "Freunde einladen" -#: ../../mod/admin.php:992 -msgid "Email address of the new user." -msgstr "Email Adresse des neuen Nutzers" +#: ../../include/contact_widgets.php:71 +msgid "Networks" +msgstr "Netzwerke" -#: ../../mod/admin.php:1025 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s deaktiviert." +#: ../../include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Alle Netzwerke" -#: ../../mod/admin.php:1029 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s aktiviert." +#: ../../include/contact_widgets.php:104 ../../include/features.php:60 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" -#: ../../mod/admin.php:1039 ../../mod/admin.php:1255 -msgid "Disable" -msgstr "Ausschalten" +#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 +msgid "Everything" +msgstr "Alles" -#: ../../mod/admin.php:1041 ../../mod/admin.php:1257 -msgid "Enable" -msgstr "Einschalten" +#: ../../include/contact_widgets.php:136 +msgid "Categories" +msgstr "Kategorien" -#: ../../mod/admin.php:1064 ../../mod/admin.php:1285 -msgid "Toggle" -msgstr "Umschalten" +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Allgemeine Features" -#: ../../mod/admin.php:1072 ../../mod/admin.php:1295 -msgid "Author: " -msgstr "Autor:" +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "Mehrere Profile" -#: ../../mod/admin.php:1073 ../../mod/admin.php:1296 -msgid "Maintainer: " -msgstr "Betreuer:" +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Möglichkeit mehrere Profile zu erstellen" -#: ../../mod/admin.php:1215 -msgid "No themes found." -msgstr "Keine Themen gefunden." +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "Beitragserstellung Features" -#: ../../mod/admin.php:1277 -msgid "Screenshot" -msgstr "Bildschirmfoto" +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "Web-Editor" -#: ../../mod/admin.php:1323 -msgid "[Experimental]" -msgstr "[Experimentell]" +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "Den Web-Editor für neue Beiträge aktivieren" -#: ../../mod/admin.php:1324 -msgid "[Unsupported]" -msgstr "[Nicht unterstützt]" +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Beitragsvorschau" -#: ../../mod/admin.php:1351 -msgid "Log settings updated." -msgstr "Protokolleinstellungen aktualisiert." +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben." -#: ../../mod/admin.php:1407 -msgid "Clear" -msgstr "löschen" +#: ../../include/features.php:33 +msgid "Auto-mention Forums" +msgstr "Foren automatisch erwähnen" -#: ../../mod/admin.php:1413 -msgid "Enable Debugging" -msgstr "Protokoll führen" +#: ../../include/features.php:33 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde." -#: ../../mod/admin.php:1414 -msgid "Log file" -msgstr "Protokolldatei" +#: ../../include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "Widgets für Netzwerk und Seitenleiste" -#: ../../mod/admin.php:1414 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis." - -#: ../../mod/admin.php:1415 -msgid "Log level" -msgstr "Protokoll-Level" +#: ../../include/features.php:39 +msgid "Search by Date" +msgstr "Archiv" -#: ../../mod/admin.php:1465 -msgid "Close" -msgstr "Schließen" +#: ../../include/features.php:39 +msgid "Ability to select posts by date ranges" +msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren" -#: ../../mod/admin.php:1471 -msgid "FTP Host" -msgstr "FTP Host" +#: ../../include/features.php:40 +msgid "Group Filter" +msgstr "Gruppen Filter" -#: ../../mod/admin.php:1472 -msgid "FTP Path" -msgstr "FTP Pfad" +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren." -#: ../../mod/admin.php:1473 -msgid "FTP User" -msgstr "FTP Nutzername" +#: ../../include/features.php:41 +msgid "Network Filter" +msgstr "Netzwerk Filter" -#: ../../mod/admin.php:1474 -msgid "FTP Password" -msgstr "FTP Passwort" +#: ../../include/features.php:41 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren." -#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Bildgröße überschreitet das Limit von %d" +#: ../../include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Speichere Suchanfragen für spätere Wiederholung." -#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807 -#: ../../mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Konnte das Bild nicht bearbeiten." +#: ../../include/features.php:47 +msgid "Network Tabs" +msgstr "Netzwerk Reiter" -#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Hochladen des Bildes gescheitert." +#: ../../include/features.php:48 +msgid "Network Personal Tab" +msgstr "Netzwerk-Reiter: Persönlich" -#: ../../mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen zu %s" +#: ../../include/features.php:48 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast" -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." +#: ../../include/features.php:49 +msgid "Network New Tab" +msgstr "Netzwerk-Reiter: Neue" -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet." +#: ../../include/features.php:49 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden" -#: ../../mod/network.php:136 -msgid "Search Results For:" -msgstr "Suchergebnisse für:" +#: ../../include/features.php:50 +msgid "Network Shared Links Tab" +msgstr "Netzwerk-Reiter: Geteilte Links" -#: ../../mod/network.php:179 ../../mod/search.php:21 -msgid "Remove term" -msgstr "Begriff entfernen" +#: ../../include/features.php:50 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält" -#: ../../mod/network.php:350 -msgid "Commented Order" -msgstr "Neueste Kommentare" +#: ../../include/features.php:55 +msgid "Post/Comment Tools" +msgstr "Werkzeuge für Beiträge und Kommentare" -#: ../../mod/network.php:353 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortieren" +#: ../../include/features.php:56 +msgid "Multiple Deletion" +msgstr "Mehrere Beiträge löschen" -#: ../../mod/network.php:356 -msgid "Posted Order" -msgstr "Neueste Beiträge" +#: ../../include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen" -#: ../../mod/network.php:359 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortieren" +#: ../../include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Gesendete Beiträge editieren" -#: ../../mod/network.php:368 -msgid "Posts that mention or involve you" -msgstr "Beiträge, in denen es um dich geht" +#: ../../include/features.php:57 +msgid "Edit and correct posts and comments after sending" +msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren." -#: ../../mod/network.php:374 -msgid "New" -msgstr "Neue" +#: ../../include/features.php:58 +msgid "Tagging" +msgstr "Tagging" -#: ../../mod/network.php:377 -msgid "Activity Stream - by date" -msgstr "Aktivitäten-Stream - nach Datum" +#: ../../include/features.php:58 +msgid "Ability to tag existing posts" +msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen." -#: ../../mod/network.php:383 -msgid "Shared Links" -msgstr "Geteilte Links" +#: ../../include/features.php:59 +msgid "Post Categories" +msgstr "Beitragskategorien" -#: ../../mod/network.php:386 -msgid "Interesting Links" -msgstr "Interessante Links" +#: ../../include/features.php:59 +msgid "Add categories to your posts" +msgstr "Eigene Beiträge mit Kategorien versehen" -#: ../../mod/network.php:392 -msgid "Starred" -msgstr "Markierte" +#: ../../include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Beiträge in Ordnern speichern aktivieren" -#: ../../mod/network.php:395 -msgid "Favourite Posts" -msgstr "Favorisierte Beiträge" +#: ../../include/features.php:61 +msgid "Dislike Posts" +msgstr "Beiträge 'nicht mögen'" -#: ../../mod/network.php:457 -#, 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] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk." -msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken." +#: ../../include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'" -#: ../../mod/network.php:460 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten." +#: ../../include/features.php:62 +msgid "Star Posts" +msgstr "Beiträge Markieren" -#: ../../mod/network.php:514 ../../mod/content.php:119 -msgid "No such group" -msgstr "Es gibt keine solche Gruppe" +#: ../../include/features.php:62 +msgid "Ability to mark special posts with a star indicator" +msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren" -#: ../../mod/network.php:531 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "Gruppe ist leer" +#: ../../include/features.php:63 +msgid "Mute Post Notifications" +msgstr "Benachrichtigungen für Beiträge Stumm schalten" -#: ../../mod/network.php:538 ../../mod/content.php:134 -msgid "Group: " -msgstr "Gruppe: " +#: ../../include/features.php:63 +msgid "Ability to mute notifications for a thread" +msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können" -#: ../../mod/network.php:548 -msgid "Contact: " -msgstr "Kontakt: " +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "Connect-URL fehlt" -#: ../../mod/network.php:550 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen." +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann." -#: ../../mod/network.php:555 -msgid "Invalid contact." -msgstr "Ungültiger Kontakt." +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- auswählen -" +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." -#: ../../mod/friendica.php:62 -msgid "This is Friendica, version" -msgstr "Dies ist Friendica, Version" +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Es wurde kein Autor oder Name gefunden." -#: ../../mod/friendica.php:63 -msgid "running at web location" -msgstr "die unter folgender Webadresse zu finden ist" +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden." -#: ../../mod/friendica.php:65 +#: ../../include/follow.php:86 msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren." +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen." -#: ../../mod/friendica.php:67 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen." -#: ../../mod/friendica.php:68 +#: ../../include/follow.php:93 msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde." -#: ../../mod/friendica.php:82 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Erweiterungen/Apps" +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können." -#: ../../mod/friendica.php:95 -msgid "No installed plugins/addons/apps" -msgstr "Keine Plugins/Erweiterungen/Apps installiert" +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Konnte die Kontaktinformationen nicht empfangen." -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Anwendungen" +#: ../../include/follow.php:258 +msgid "following" +msgstr "folgen" -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Keine Applikationen installiert." +#: ../../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 "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen." -#: ../../mod/photos.php:67 ../../mod/photos.php:1228 ../../mod/photos.php:1817 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" - -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "Kontaktinformationen nicht verfügbar" - -#: ../../mod/photos.php:165 -msgid "Album not found." -msgstr "Album nicht gefunden." +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Voreingestellte Gruppe für neue Kontakte" -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1206 -msgid "Delete Album" -msgstr "Album löschen" +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "Alle Kontakte" -#: ../../mod/photos.php:198 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?" +#: ../../include/group.php:249 +msgid "edit" +msgstr "bearbeiten" -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1513 -msgid "Delete Photo" -msgstr "Foto löschen" +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "Gruppe bearbeiten" -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "Möchtest du wirklich dieses Foto löschen?" +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Neue Gruppe erstellen" -#: ../../mod/photos.php:662 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s wurde von %3$s in %2$s getaggt" +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "Kontakte in keiner Gruppe" -#: ../../mod/photos.php:662 -msgid "a photo" -msgstr "einem Foto" +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Verschiedenes" -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "Die Bildgröße übersteigt das Limit von " +#: ../../include/datetime.php:153 ../../include/datetime.php:290 +msgid "year" +msgstr "Jahr" -#: ../../mod/photos.php:775 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." +#: ../../include/datetime.php:158 ../../include/datetime.php:291 +msgid "month" +msgstr "Monat" -#: ../../mod/photos.php:930 -msgid "No photos selected" -msgstr "Keine Bilder ausgewählt" +#: ../../include/datetime.php:163 ../../include/datetime.php:293 +msgid "day" +msgstr "Tag" -#: ../../mod/photos.php:1094 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers." +#: ../../include/datetime.php:276 +msgid "never" +msgstr "nie" -#: ../../mod/photos.php:1129 -msgid "Upload Photos" -msgstr "Bilder hochladen" +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "vor weniger als einer Sekunde" -#: ../../mod/photos.php:1133 ../../mod/photos.php:1201 -msgid "New album name: " -msgstr "Name des neuen Albums: " +#: ../../include/datetime.php:290 +msgid "years" +msgstr "Jahre" -#: ../../mod/photos.php:1134 -msgid "or existing album name: " -msgstr "oder existierender Albumname: " +#: ../../include/datetime.php:291 +msgid "months" +msgstr "Monate" -#: ../../mod/photos.php:1135 -msgid "Do not show a status post for this upload" -msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" +#: ../../include/datetime.php:292 +msgid "week" +msgstr "Woche" -#: ../../mod/photos.php:1137 ../../mod/photos.php:1508 -msgid "Permissions" -msgstr "Berechtigungen" +#: ../../include/datetime.php:292 +msgid "weeks" +msgstr "Wochen" -#: ../../mod/photos.php:1148 -msgid "Private Photo" -msgstr "Privates Foto" +#: ../../include/datetime.php:293 +msgid "days" +msgstr "Tage" -#: ../../mod/photos.php:1149 -msgid "Public Photo" -msgstr "Öffentliches Foto" +#: ../../include/datetime.php:294 +msgid "hour" +msgstr "Stunde" -#: ../../mod/photos.php:1216 -msgid "Edit Album" -msgstr "Album bearbeiten" +#: ../../include/datetime.php:294 +msgid "hours" +msgstr "Stunden" -#: ../../mod/photos.php:1222 -msgid "Show Newest First" -msgstr "Zeige neueste zuerst" +#: ../../include/datetime.php:295 +msgid "minute" +msgstr "Minute" -#: ../../mod/photos.php:1224 -msgid "Show Oldest First" -msgstr "Zeige älteste zuerst" +#: ../../include/datetime.php:295 +msgid "minutes" +msgstr "Minuten" -#: ../../mod/photos.php:1257 ../../mod/photos.php:1800 -msgid "View Photo" -msgstr "Foto betrachten" +#: ../../include/datetime.php:296 +msgid "second" +msgstr "Sekunde" -#: ../../mod/photos.php:1292 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." +#: ../../include/datetime.php:296 +msgid "seconds" +msgstr "Sekunden" -#: ../../mod/photos.php:1294 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" +#: ../../include/datetime.php:305 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s her" -#: ../../mod/photos.php:1350 -msgid "View photo" -msgstr "Fotos ansehen" +#: ../../include/datetime.php:477 ../../include/items.php:2195 +#, php-format +msgid "%s's birthday" +msgstr "%ss Geburtstag" -#: ../../mod/photos.php:1350 -msgid "Edit photo" -msgstr "Foto bearbeiten" +#: ../../include/datetime.php:478 ../../include/items.php:2196 +#, php-format +msgid "Happy Birthday %s" +msgstr "Herzlichen Glückwunsch %s" -#: ../../mod/photos.php:1351 -msgid "Use as profile photo" -msgstr "Als Profilbild verwenden" +#: ../../include/acl_selectors.php:326 +msgid "Visible to everybody" +msgstr "Für jeden sichtbar" -#: ../../mod/photos.php:1376 -msgid "View Full Size" -msgstr "Betrachte Originalgröße" +#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:142 +#: ../../view/theme/diabook/theme.php:621 +msgid "show" +msgstr "zeigen" -#: ../../mod/photos.php:1455 -msgid "Tags: " -msgstr "Tags: " +#: ../../include/acl_selectors.php:328 ../../view/theme/diabook/config.php:142 +#: ../../view/theme/diabook/theme.php:621 +msgid "don't show" +msgstr "nicht zeigen" -#: ../../mod/photos.php:1458 -msgid "[Remove any tag]" -msgstr "[Tag entfernen]" +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[kein Betreff]" -#: ../../mod/photos.php:1498 -msgid "Rotate CW (right)" -msgstr "Drehen US (rechts)" +#: ../../include/Contact.php:115 +msgid "stopped following" +msgstr "wird nicht mehr gefolgt" -#: ../../mod/photos.php:1499 -msgid "Rotate CCW (left)" -msgstr "Drehen EUS (links)" +#: ../../include/Contact.php:228 ../../include/conversation.php:882 +msgid "Poke" +msgstr "Anstupsen" -#: ../../mod/photos.php:1501 -msgid "New album name" -msgstr "Name des neuen Albums" +#: ../../include/Contact.php:229 ../../include/conversation.php:876 +msgid "View Status" +msgstr "Pinnwand anschauen" -#: ../../mod/photos.php:1504 -msgid "Caption" -msgstr "Bildunterschrift" +#: ../../include/Contact.php:230 ../../include/conversation.php:877 +msgid "View Profile" +msgstr "Profil anschauen" -#: ../../mod/photos.php:1506 -msgid "Add a Tag" -msgstr "Tag hinzufügen" +#: ../../include/Contact.php:231 ../../include/conversation.php:878 +msgid "View Photos" +msgstr "Bilder anschauen" -#: ../../mod/photos.php:1510 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +#: ../../include/Contact.php:232 ../../include/Contact.php:255 +#: ../../include/conversation.php:879 +msgid "Network Posts" +msgstr "Netzwerkbeiträge" -#: ../../mod/photos.php:1519 -msgid "Private photo" -msgstr "Privates Foto" +#: ../../include/Contact.php:233 ../../include/Contact.php:255 +#: ../../include/conversation.php:880 +msgid "Edit Contact" +msgstr "Kontakt bearbeiten" -#: ../../mod/photos.php:1520 -msgid "Public photo" -msgstr "Öffentliches Foto" +#: ../../include/Contact.php:234 +msgid "Drop Contact" +msgstr "Kontakt löschen" -#: ../../mod/photos.php:1815 -msgid "Recent Photos" -msgstr "Neueste Fotos" +#: ../../include/Contact.php:235 ../../include/Contact.php:255 +#: ../../include/conversation.php:881 +msgid "Send PM" +msgstr "Private Nachricht senden" -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Kontakt hinzugefügt" +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "Willkommen " -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Account umziehen" +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Bitte lade ein Profilbild hoch." -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Du kannst einen Account von einem anderen Friendica Server importieren." +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "Willkommen zurück " -#: ../../mod/uimport.php:68 +#: ../../include/security.php:366 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 "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist." +"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 "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)." -#: ../../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 "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren" +#: ../../include/conversation.php:118 ../../include/conversation.php:246 +#: ../../include/text.php:1963 ../../view/theme/diabook/theme.php:463 +msgid "event" +msgstr "Veranstaltung" -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "Account Datei" +#: ../../include/conversation.php:207 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s" -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"" +#: ../../include/conversation.php:211 ../../include/text.php:1004 +msgid "poked" +msgstr "stupste" -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limit für Einladungen erreicht." +#: ../../include/conversation.php:291 +msgid "post/item" +msgstr "Nachricht/Beitrag" -#: ../../mod/invite.php:49 +#: ../../include/conversation.php:292 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Keine gültige Email Adresse." +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert" -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein" +#: ../../include/conversation.php:772 +msgid "remove" +msgstr "löschen" -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite." +#: ../../include/conversation.php:776 +msgid "Delete Selected Items" +msgstr "Lösche die markierten Beiträge" -#: ../../mod/invite.php:89 +#: ../../include/conversation.php:875 +msgid "Follow Thread" +msgstr "Folge der Unterhaltung" + +#: ../../include/conversation.php:944 #, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Zustellung der Nachricht fehlgeschlagen." +msgid "%s likes this." +msgstr "%s mag das." -#: ../../mod/invite.php:93 +#: ../../include/conversation.php:944 #, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d Nachricht gesendet." -msgstr[1] "%d Nachrichten gesendet." +msgid "%s doesn't like this." +msgstr "%s mag das nicht." -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren Einladungen" +#: ../../include/conversation.php:949 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d Personen mögen das" -#: ../../mod/invite.php:120 +#: ../../include/conversation.php:952 #, 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 "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke." +msgid "%2$d people don't like this" +msgstr "%2$d Personen mögen das nicht" -#: ../../mod/invite.php:122 +#: ../../include/conversation.php:966 +msgid "and" +msgstr "und" + +#: ../../include/conversation.php:972 #, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website." +msgid ", and %d other people" +msgstr " und %d andere" -#: ../../mod/invite.php:123 +#: ../../include/conversation.php:974 #, 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 "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst." +msgid "%s like this." +msgstr "%s mögen das." -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen." +#: ../../include/conversation.php:974 +#, php-format +msgid "%s don't like this." +msgstr "%s mögen das nicht." -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Einladungen senden" +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +msgid "Visible to everybody" +msgstr "Für jedermann sichtbar" -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "E-Mail-Adressen eingeben, eine pro Zeile:" +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Please enter a video link/URL:" +msgstr "Bitte Link/URL zum Video einfügen:" -#: ../../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 "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen." +#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 +msgid "Please enter an audio link/URL:" +msgstr "Bitte Link/URL zum Audio einfügen:" -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Du benötigst den folgenden Einladungscode: $invite_code" +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 +msgid "Tag term:" +msgstr "Tag:" -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:" +#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 +msgid "Where are you right now?" +msgstr "Wo hältst du dich jetzt gerade auf?" -#: ../../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 "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com" +#: ../../include/conversation.php:1008 +msgid "Delete item(s)?" +msgstr "Einträge löschen?" -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Zugriff verweigert." +#: ../../include/conversation.php:1051 +msgid "Post to Email" +msgstr "An E-Mail senden" -#: ../../mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." +#: ../../include/conversation.php:1056 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist." -#: ../../mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail." +#: ../../include/conversation.php:1111 +msgid "permissions" +msgstr "Zugriffsrechte" -#: ../../mod/lostpass.php:42 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen deines Passworts gesteööt\nworden. Um diese Anfrage zu verifizieren folge bitte dem unten stehenden\nLink oder kopiere ihn und füge ihn in die Addressleiste deines Browsers ein.\n\nSolltest du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nEmail bitte.\n\nDein Passwort wird nicht geändern solange wir nicht verifiziert haben, dass\ndu diese Änderung angefragt hast." +#: ../../include/conversation.php:1135 +msgid "Post to Groups" +msgstr "Poste an Gruppe" -#: ../../mod/lostpass.php:53 -#, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "\nUm deine Identität zu verifizieren folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere Email mit deinem neuen Passwort erhalten. Sobald du dich\nangemeldet hast, kannst du dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s" +#: ../../include/conversation.php:1136 +msgid "Post to Contacts" +msgstr "Poste an Kontakte" -#: ../../mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" +#: ../../include/conversation.php:1137 +msgid "Private post" +msgstr "Privater Beitrag" -#: ../../mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." +#: ../../include/network.php:895 +msgid "view full size" +msgstr "Volle Größe anzeigen" -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." +#: ../../include/text.php:296 +msgid "newer" +msgstr "neuer" -#: ../../mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" +#: ../../include/text.php:298 +msgid "older" +msgstr "älter" -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere dein neues Passwort - und dann" +#: ../../include/text.php:303 +msgid "prev" +msgstr "vorige" -#: ../../mod/lostpass.php:113 -msgid "click here to login" -msgstr "hier klicken, um dich anzumelden" +#: ../../include/text.php:305 +msgid "first" +msgstr "erste" -#: ../../mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Du kannst das Passwort in den Einstellungen ändern, sobald du dich erfolgreich angemeldet hast." +#: ../../include/text.php:337 +msgid "last" +msgstr "letzte" -#: ../../mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "\nHallo %1$s,\n\ndein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere dein Passwort zu etwas, das du dir leicht merken kannst)." +#: ../../include/text.php:340 +msgid "next" +msgstr "nächste" -#: ../../mod/lostpass.php:131 +#: ../../include/text.php:854 +msgid "No contacts" +msgstr "Keine Kontakte" + +#: ../../include/text.php:863 #, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann, und sollte, in den Kontoeinstellungen nach der Anmeldung geändert werden." +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d Kontakt" +msgstr[1] "%d Kontakte" + +#: ../../include/text.php:1004 +msgid "poke" +msgstr "anstupsen" + +#: ../../include/text.php:1005 +msgid "ping" +msgstr "anpingen" + +#: ../../include/text.php:1005 +msgid "pinged" +msgstr "pingte" + +#: ../../include/text.php:1006 +msgid "prod" +msgstr "knuffen" + +#: ../../include/text.php:1006 +msgid "prodded" +msgstr "knuffte" + +#: ../../include/text.php:1007 +msgid "slap" +msgstr "ohrfeigen" + +#: ../../include/text.php:1007 +msgid "slapped" +msgstr "ohrfeigte" + +#: ../../include/text.php:1008 +msgid "finger" +msgstr "befummeln" + +#: ../../include/text.php:1008 +msgid "fingered" +msgstr "befummelte" + +#: ../../include/text.php:1009 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" + +#: ../../include/text.php:1009 +msgid "rebuffed" +msgstr "abfuhrerteilte" + +#: ../../include/text.php:1023 +msgid "happy" +msgstr "glücklich" + +#: ../../include/text.php:1024 +msgid "sad" +msgstr "traurig" + +#: ../../include/text.php:1025 +msgid "mellow" +msgstr "sanft" + +#: ../../include/text.php:1026 +msgid "tired" +msgstr "müde" -#: ../../mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Auf %s wurde dein Passwort geändert" +#: ../../include/text.php:1027 +msgid "perky" +msgstr "frech" -#: ../../mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Hast du dein Passwort vergessen?" +#: ../../include/text.php:1028 +msgid "angry" +msgstr "sauer" -#: ../../mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet." +#: ../../include/text.php:1029 +msgid "stupified" +msgstr "verblüfft" -#: ../../mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Spitzname oder E-Mail:" +#: ../../include/text.php:1030 +msgid "puzzled" +msgstr "verwirrt" -#: ../../mod/lostpass.php:162 -msgid "Reset" -msgstr "Zurücksetzen" +#: ../../include/text.php:1031 +msgid "interested" +msgstr "interessiert" -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Quelle (bbcode) Text:" +#: ../../include/text.php:1032 +msgid "bitter" +msgstr "verbittert" -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:" +#: ../../include/text.php:1033 +msgid "cheerful" +msgstr "fröhlich" -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Originaltext:" +#: ../../include/text.php:1034 +msgid "alive" +msgstr "lebendig" -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (reines HTML): " +#: ../../include/text.php:1035 +msgid "annoyed" +msgstr "verärgert" -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " +#: ../../include/text.php:1036 +msgid "anxious" +msgstr "unruhig" -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " +#: ../../include/text.php:1037 +msgid "cranky" +msgstr "schrullig" -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " +#: ../../include/text.php:1038 +msgid "disturbed" +msgstr "verstört" -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " +#: ../../include/text.php:1039 +msgid "frustrated" +msgstr "frustriert" -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " +#: ../../include/text.php:1040 +msgid "motivated" +msgstr "motiviert" -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " +#: ../../include/text.php:1041 +msgid "relaxed" +msgstr "entspannt" -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Originaltext (Diaspora Format): " +#: ../../include/text.php:1042 +msgid "surprised" +msgstr "überrascht" -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " +#: ../../include/text.php:1210 +msgid "Monday" +msgstr "Montag" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag entfernt" +#: ../../include/text.php:1210 +msgid "Tuesday" +msgstr "Dienstag" -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Gegenstands-Tag entfernen" +#: ../../include/text.php:1210 +msgid "Wednesday" +msgstr "Mittwoch" -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Wähle ein Tag zum Entfernen aus: " +#: ../../include/text.php:1210 +msgid "Thursday" +msgstr "Donnerstag" -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Konto löschen" +#: ../../include/text.php:1210 +msgid "Friday" +msgstr "Freitag" -#: ../../mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen." +#: ../../include/text.php:1210 +msgid "Saturday" +msgstr "Samstag" -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Bitte gib dein Passwort zur Verifikation ein:" +#: ../../include/text.php:1210 +msgid "Sunday" +msgstr "Sonntag" -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Bezeichner." +#: ../../include/text.php:1214 +msgid "January" +msgstr "Januar" -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Editor für die Profil-Sichtbarkeit" +#: ../../include/text.php:1214 +msgid "February" +msgstr "Februar" -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Sichtbar für" +#: ../../include/text.php:1214 +msgid "March" +msgstr "März" -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" +#: ../../include/text.php:1214 +msgid "April" +msgstr "April" -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Profilübereinstimmungen" +#: ../../include/text.php:1214 +msgid "May" +msgstr "Mai" -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu." +#: ../../include/text.php:1214 +msgid "June" +msgstr "Juni" -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "ist interessiert an:" +#: ../../include/text.php:1214 +msgid "July" +msgstr "Juli" -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." +#: ../../include/text.php:1214 +msgid "August" +msgstr "August" -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "l, F j" +#: ../../include/text.php:1214 +msgid "September" +msgstr "September" -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Veranstaltung bearbeiten" +#: ../../include/text.php:1214 +msgid "October" +msgstr "Oktober" -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Neue Veranstaltung erstellen" +#: ../../include/text.php:1214 +msgid "November" +msgstr "November" -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Vorherige" +#: ../../include/text.php:1214 +msgid "December" +msgstr "Dezember" -#: ../../mod/events.php:373 ../../mod/install.php:207 -msgid "Next" -msgstr "Nächste" +#: ../../include/text.php:1434 +msgid "bytes" +msgstr "Byte" -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "Stunde:Minute" +#: ../../include/text.php:1458 ../../include/text.php:1470 +msgid "Click to open/close" +msgstr "Zum öffnen/schließen klicken" -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Veranstaltungsdetails" +#: ../../include/text.php:1699 ../../include/user.php:247 +#: ../../view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "Standard" -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt." +#: ../../include/text.php:1711 +msgid "Select an alternate language" +msgstr "Alternative Sprache auswählen" -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "Veranstaltungsbeginn:" +#: ../../include/text.php:1967 +msgid "activity" +msgstr "Aktivität" -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Benötigt" +#: ../../include/text.php:1970 +msgid "post" +msgstr "Beitrag" -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" +#: ../../include/text.php:2138 +msgid "Item filed" +msgstr "Beitrag abgelegt" + +#: ../../include/bbcode.php:428 ../../include/bbcode.php:1027 +#: ../../include/bbcode.php:1028 +msgid "Image/photo" +msgstr "Bild/Foto" + +#: ../../include/bbcode.php:528 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "Veranstaltungsende:" +#: ../../include/bbcode.php:562 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s schrieb den folgenden Beitrag" -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "An Zeitzone des Betrachters anpassen" +#: ../../include/bbcode.php:991 ../../include/bbcode.php:1011 +msgid "$1 wrote:" +msgstr "$1 hat geschrieben:" -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Beschreibung" +#: ../../include/bbcode.php:1036 ../../include/bbcode.php:1037 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Titel:" +#: ../../include/notifier.php:786 ../../include/delivery.php:456 +msgid "(no subject)" +msgstr "(kein Betreff)" -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Veranstaltung teilen" +#: ../../include/notifier.php:796 ../../include/delivery.php:467 +#: ../../include/enotify.php:31 +msgid "noreply" +msgstr "noreply" -#: ../../mod/ping.php:240 -msgid "{0} wants to be your friend" -msgstr "{0} möchte mit dir in Kontakt treten" +#: ../../include/dba_pdo.php:72 ../../include/dba.php:56 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln." -#: ../../mod/ping.php:245 -msgid "{0} sent you a message" -msgstr "{0} schickte dir eine Nachricht" +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Unbekannt | Nicht kategorisiert" -#: ../../mod/ping.php:250 -msgid "{0} requested registration" -msgstr "{0} möchte sich registrieren" +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Sofort blockieren" -#: ../../mod/ping.php:256 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} kommentierte einen Beitrag von %s" +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Zwielichtig, Spammer, Selbstdarsteller" -#: ../../mod/ping.php:261 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0} mag %ss Beitrag" +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Ist mir bekannt, hab aber keine Meinung" -#: ../../mod/ping.php:266 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} mag %ss Beitrag nicht" +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, wahrscheinlich harmlos" -#: ../../mod/ping.php:271 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} ist jetzt mit %s befreundet" +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Seriös, hat mein Vertrauen" -#: ../../mod/ping.php:276 -msgid "{0} posted" -msgstr "{0} hat etwas veröffentlicht" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wöchentlich" -#: ../../mod/ping.php:281 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Monatlich" -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} hat dich in einem Beitrag erwähnt" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Stimmung" +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden" +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zott" -#: ../../mod/search.php:170 ../../mod/search.php:196 -#: ../../mod/community.php:62 ../../mod/community.php:71 -msgid "No results." -msgstr "Keine Ergebnisse." +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Konnte die Kontaktinformationen nicht finden." +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/Chat" -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Möchtest du wirklich diese Nachricht löschen?" +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Nachricht gelöscht." +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." +#: ../../include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Keine Nachrichten." +#: ../../include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "'Unbekannter Absender - %s" +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora" -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Du und %s" +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "StatusNet" -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s und du" +#: ../../include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" +#: ../../include/Scrape.php:593 +msgid " on Last.fm" +msgstr " bei Last.fm" -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - g:i A" +#: ../../include/bb2diaspora.php:154 ../../include/event.php:20 +msgid "Starts:" +msgstr "Beginnt:" -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d Nachricht" -msgstr[1] "%d Nachrichten" +#: ../../include/bb2diaspora.php:162 ../../include/event.php:30 +msgid "Finishes:" +msgstr "Endet:" -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Nachricht nicht verfügbar." +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" +msgstr "j F, Y" -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Nachricht löschen" +#: ../../include/profile_advanced.php:23 +msgid "j F" +msgstr "j F" -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst du auf der Profilseite des Absenders antworten." +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" +msgstr "Geburtstag:" -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Antwort senden" +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Alter:" -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Nicht verfügbar." +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "für %1$d %2$s" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:133 -#: ../../mod/profiles.php:162 ../../mod/profiles.php:589 -#: ../../mod/dfrn_confirm.php:64 -msgid "Profile not found." -msgstr "Profil nicht gefunden." +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Tags" -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profil gelöscht." +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Religion:" -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Profil-" +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Hobbies/Interessen:" -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Neues Profil angelegt." +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformationen und Soziale Netzwerke:" -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Profil nicht zum Duplizieren verfügbar." +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" -#: ../../mod/profiles.php:172 -msgid "Profile Name is required." -msgstr "Profilname ist erforderlich." +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Literatur/Bücher:" -#: ../../mod/profiles.php:323 -msgid "Marital Status" -msgstr "Familienstand" +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "Fernsehen:" -#: ../../mod/profiles.php:327 -msgid "Romantic Partner" -msgstr "Romanze" +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Filme/Tänze/Kultur/Unterhaltung:" -#: ../../mod/profiles.php:331 -msgid "Likes" -msgstr "Likes" +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Liebesleben:" -#: ../../mod/profiles.php:335 -msgid "Dislikes" -msgstr "Dislikes" +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Arbeit/Beschäftigung:" -#: ../../mod/profiles.php:339 -msgid "Work/Employment" -msgstr "Arbeit / Beschäftigung" +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "Schule/Ausbildung:" -#: ../../mod/profiles.php:342 -msgid "Religion" -msgstr "Religion" +#: ../../include/plugin.php:455 ../../include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "Zum Upgraden hier klicken." -#: ../../mod/profiles.php:346 -msgid "Political Views" -msgstr "Politische Ansichten" +#: ../../include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements." -#: ../../mod/profiles.php:350 -msgid "Gender" -msgstr "Geschlecht" +#: ../../include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar." -#: ../../mod/profiles.php:354 -msgid "Sexual Preference" -msgstr "Sexuelle Vorlieben" +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Diese Sitzung beenden" -#: ../../mod/profiles.php:358 -msgid "Homepage" -msgstr "Webseite" +#: ../../include/nav.php:76 ../../include/nav.php:146 +#: ../../view/theme/diabook/theme.php:123 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" -#: ../../mod/profiles.php:362 ../../mod/profiles.php:657 -msgid "Interests" -msgstr "Interessen" +#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 +msgid "Your profile page" +msgstr "Deine Profilseite" -#: ../../mod/profiles.php:366 -msgid "Address" -msgstr "Adresse" +#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126 +msgid "Your photos" +msgstr "Deine Fotos" -#: ../../mod/profiles.php:373 ../../mod/profiles.php:653 -msgid "Location" -msgstr "Wohnort" +#: ../../include/nav.php:79 +msgid "Your videos" +msgstr "Deine Videos" -#: ../../mod/profiles.php:456 -msgid "Profile updated." -msgstr "Profil aktualisiert." +#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127 +msgid "Your events" +msgstr "Deine Ereignisse" -#: ../../mod/profiles.php:527 -msgid " and " -msgstr " und " +#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128 +msgid "Personal notes" +msgstr "Persönliche Notizen" -#: ../../mod/profiles.php:535 -msgid "public profile" -msgstr "öffentliches Profil" +#: ../../include/nav.php:81 +msgid "Your personal notes" +msgstr "Deine persönlichen Notizen" -#: ../../mod/profiles.php:538 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s hat %2$s geändert auf “%3$s”" +#: ../../include/nav.php:92 +msgid "Sign in" +msgstr "Anmelden" -#: ../../mod/profiles.php:539 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " – %1$ss %2$s besuchen" +#: ../../include/nav.php:105 +msgid "Home Page" +msgstr "Homepage" -#: ../../mod/profiles.php:542 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s." +#: ../../include/nav.php:109 +msgid "Create an account" +msgstr "Nutzerkonto erstellen" -#: ../../mod/profiles.php:617 -msgid "Hide contacts and friends:" -msgstr "Kontakte und Freunde verbergen" +#: ../../include/nav.php:114 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" -#: ../../mod/profiles.php:622 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?" +#: ../../include/nav.php:117 +msgid "Apps" +msgstr "Apps" -#: ../../mod/profiles.php:644 -msgid "Edit Profile Details" -msgstr "Profil bearbeiten" +#: ../../include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Addon Anwendungen, Dienstprogramme, Spiele" -#: ../../mod/profiles.php:646 -msgid "Change Profile Photo" -msgstr "Profilbild ändern" +#: ../../include/nav.php:119 +msgid "Search site content" +msgstr "Inhalt der Seite durchsuchen" -#: ../../mod/profiles.php:647 -msgid "View this profile" -msgstr "Dieses Profil anzeigen" +#: ../../include/nav.php:129 +msgid "Conversations on this site" +msgstr "Unterhaltungen auf dieser Seite" -#: ../../mod/profiles.php:648 -msgid "Create a new profile using these settings" -msgstr "Neues Profil anlegen und diese Einstellungen verwenden" +#: ../../include/nav.php:131 +msgid "Directory" +msgstr "Verzeichnis" -#: ../../mod/profiles.php:649 -msgid "Clone this profile" -msgstr "Dieses Profil duplizieren" +#: ../../include/nav.php:131 +msgid "People directory" +msgstr "Nutzerverzeichnis" -#: ../../mod/profiles.php:650 -msgid "Delete this profile" -msgstr "Dieses Profil löschen" +#: ../../include/nav.php:133 +msgid "Information" +msgstr "Information" -#: ../../mod/profiles.php:651 -msgid "Basic information" -msgstr "Grundinformationen" +#: ../../include/nav.php:133 +msgid "Information about this friendica instance" +msgstr "Informationen zu dieser Friendica Instanz" -#: ../../mod/profiles.php:652 -msgid "Profile picture" -msgstr "Profilbild" +#: ../../include/nav.php:143 +msgid "Conversations from your friends" +msgstr "Unterhaltungen deiner Kontakte" -#: ../../mod/profiles.php:654 -msgid "Preferences" -msgstr "Vorlieben" +#: ../../include/nav.php:144 +msgid "Network Reset" +msgstr "Netzwerk zurücksetzen" -#: ../../mod/profiles.php:655 -msgid "Status information" -msgstr "Status Informationen" +#: ../../include/nav.php:144 +msgid "Load Network page with no filters" +msgstr "Netzwerk-Seite ohne Filter laden" -#: ../../mod/profiles.php:656 -msgid "Additional information" -msgstr "Zusätzliche Informationen" +#: ../../include/nav.php:152 +msgid "Friend Requests" +msgstr "Kontaktanfragen" -#: ../../mod/profiles.php:658 ../../mod/newmember.php:36 -#: ../../mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "Profilbild hochladen" +#: ../../include/nav.php:154 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen anzeigen" -#: ../../mod/profiles.php:659 -msgid "Profile Name:" -msgstr "Profilname:" +#: ../../include/nav.php:155 +msgid "Mark all system notifications seen" +msgstr "Markiere alle Systembenachrichtigungen als gelesen" -#: ../../mod/profiles.php:660 -msgid "Your Full Name:" -msgstr "Dein kompletter Name:" +#: ../../include/nav.php:159 +msgid "Private mail" +msgstr "Private E-Mail" -#: ../../mod/profiles.php:661 -msgid "Title/Description:" -msgstr "Titel/Beschreibung:" +#: ../../include/nav.php:160 +msgid "Inbox" +msgstr "Eingang" -#: ../../mod/profiles.php:662 -msgid "Your Gender:" -msgstr "Dein Geschlecht:" +#: ../../include/nav.php:161 +msgid "Outbox" +msgstr "Ausgang" -#: ../../mod/profiles.php:663 -#, php-format -msgid "Birthday (%s):" -msgstr "Geburtstag (%s):" +#: ../../include/nav.php:165 +msgid "Manage" +msgstr "Verwalten" -#: ../../mod/profiles.php:664 -msgid "Street Address:" -msgstr "Adresse:" +#: ../../include/nav.php:165 +msgid "Manage other pages" +msgstr "Andere Seiten verwalten" -#: ../../mod/profiles.php:665 -msgid "Locality/City:" -msgstr "Wohnort:" +#: ../../include/nav.php:170 +msgid "Account settings" +msgstr "Kontoeinstellungen" -#: ../../mod/profiles.php:666 -msgid "Postal/Zip Code:" -msgstr "Postleitzahl:" +#: ../../include/nav.php:173 +msgid "Manage/Edit Profiles" +msgstr "Profile Verwalten/Editieren" -#: ../../mod/profiles.php:667 -msgid "Country:" -msgstr "Land:" +#: ../../include/nav.php:175 +msgid "Manage/edit friends and contacts" +msgstr "Freunde und Kontakte verwalten/editieren" -#: ../../mod/profiles.php:668 -msgid "Region/State:" -msgstr "Region/Bundesstaat:" +#: ../../include/nav.php:182 +msgid "Site setup and configuration" +msgstr "Einstellungen der Seite und Konfiguration" -#: ../../mod/profiles.php:669 -msgid " Marital Status:" -msgstr " Beziehungsstatus:" +#: ../../include/nav.php:186 +msgid "Navigation" +msgstr "Navigation" -#: ../../mod/profiles.php:670 -msgid "Who: (if applicable)" -msgstr "Wer: (falls anwendbar)" +#: ../../include/nav.php:186 +msgid "Site map" +msgstr "Sitemap" -#: ../../mod/profiles.php:671 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" +#: ../../include/api.php:304 ../../include/api.php:315 +#: ../../include/api.php:416 ../../include/api.php:1062 +#: ../../include/api.php:1064 +msgid "User not found." +msgstr "Nutzer nicht gefunden." -#: ../../mod/profiles.php:672 -msgid "Since [date]:" -msgstr "Seit [Datum]:" +#: ../../include/api.php:771 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." + +#: ../../include/api.php:790 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." -#: ../../mod/profiles.php:674 -msgid "Homepage URL:" -msgstr "Adresse der Homepage:" +#: ../../include/api.php:809 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." -#: ../../mod/profiles.php:677 -msgid "Religious Views:" -msgstr "Religiöse Ansichten:" +#: ../../include/api.php:1271 +msgid "There is no status with this id." +msgstr "Es gibt keinen Status mit dieser ID." -#: ../../mod/profiles.php:678 -msgid "Public Keywords:" -msgstr "Öffentliche Schlüsselwörter:" +#: ../../include/api.php:1341 +msgid "There is no conversation with this id." +msgstr "Es existiert keine Unterhaltung mit dieser ID." -#: ../../mod/profiles.php:679 -msgid "Private Keywords:" -msgstr "Private Schlüsselwörter:" +#: ../../include/api.php:1613 +msgid "Invalid request." +msgstr "Ungültige Anfrage" -#: ../../mod/profiles.php:682 -msgid "Example: fishing photography software" -msgstr "Beispiel: Fischen Fotografie Software" +#: ../../include/api.php:1624 +msgid "Invalid item." +msgstr "Ungültiges Objekt" -#: ../../mod/profiles.php:683 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)" +#: ../../include/api.php:1634 +msgid "Invalid action. " +msgstr "Ungültige Aktion" -#: ../../mod/profiles.php:684 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)" +#: ../../include/api.php:1642 +msgid "DB error" +msgstr "DB Error" -#: ../../mod/profiles.php:685 -msgid "Tell us about yourself..." -msgstr "Erzähle uns ein bisschen von dir …" +#: ../../include/user.php:40 +msgid "An invitation is required." +msgstr "Du benötigst eine Einladung." -#: ../../mod/profiles.php:686 -msgid "Hobbies/Interests" -msgstr "Hobbies/Interessen" +#: ../../include/user.php:45 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht überprüft werden." -#: ../../mod/profiles.php:687 -msgid "Contact information and Social Networks" -msgstr "Kontaktinformationen und Soziale Netzwerke" +#: ../../include/user.php:53 +msgid "Invalid OpenID url" +msgstr "Ungültige OpenID URL" -#: ../../mod/profiles.php:688 -msgid "Musical interests" -msgstr "Musikalische Interessen" +#: ../../include/user.php:74 +msgid "Please enter the required information." +msgstr "Bitte trage die erforderlichen Informationen ein." -#: ../../mod/profiles.php:689 -msgid "Books, literature" -msgstr "Bücher, Literatur" +#: ../../include/user.php:88 +msgid "Please use a shorter name." +msgstr "Bitte verwende einen kürzeren Namen." -#: ../../mod/profiles.php:690 -msgid "Television" -msgstr "Fernsehen" +#: ../../include/user.php:90 +msgid "Name too short." +msgstr "Der Name ist zu kurz." -#: ../../mod/profiles.php:691 -msgid "Film/dance/culture/entertainment" -msgstr "Filme/Tänze/Kultur/Unterhaltung" +#: ../../include/user.php:105 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein." -#: ../../mod/profiles.php:692 -msgid "Love/romance" -msgstr "Liebe/Romantik" +#: ../../include/user.php:110 +msgid "Your email domain is not among those allowed on this site." +msgstr "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt." -#: ../../mod/profiles.php:693 -msgid "Work/employment" -msgstr "Arbeit/Anstellung" +#: ../../include/user.php:113 +msgid "Not a valid email address." +msgstr "Keine gültige E-Mail-Adresse." -#: ../../mod/profiles.php:694 -msgid "School/education" -msgstr "Schule/Ausbildung" +#: ../../include/user.php:126 +msgid "Cannot use that email." +msgstr "Konnte diese E-Mail-Adresse nicht verwenden." -#: ../../mod/profiles.php:699 +#: ../../include/user.php:132 msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Dies ist dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein." +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen." -#: ../../mod/profiles.php:709 ../../mod/directory.php:113 -msgid "Age: " -msgstr "Alter: " +#: ../../include/user.php:138 ../../include/user.php:236 +msgid "Nickname is already registered. Please choose another." +msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." -#: ../../mod/profiles.php:762 -msgid "Edit/Manage Profiles" -msgstr "Bearbeite/Verwalte Profile" +#: ../../include/user.php:148 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." -#: ../../mod/install.php:117 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica-Server für soziale Netzwerke – Setup" +#: ../../include/user.php:164 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr "Verbindung zur Datenbank gescheitert." +#: ../../include/user.php:222 +msgid "An error occurred during registration. Please try again." +msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal." -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "Tabelle konnte nicht angelegt werden." +#: ../../include/user.php:257 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal." -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "Die Datenbank deiner Friendicaseite wurde installiert." +#: ../../include/user.php:289 ../../include/user.php:293 +#: ../../include/profile_selectors.php:42 +msgid "Friends" +msgstr "Freunde" -#: ../../mod/install.php:138 +#: ../../include/user.php:377 +#, php-format msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren." +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\nHallo %1$s,\n\ndanke für deine Registrierung auf %2$s. Dein Account wurde eingerichtet." -#: ../../mod/install.php:139 ../../mod/install.php:206 -#: ../../mod/install.php:525 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Lies bitte die \"INSTALL.txt\"." +#: ../../include/user.php:381 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %2$s." -#: ../../mod/install.php:203 -msgid "System check" -msgstr "Systemtest" +#: ../../include/diaspora.php:703 +msgid "Sharing notification from Diaspora network" +msgstr "Freigabe-Benachrichtigung von Diaspora" -#: ../../mod/install.php:208 -msgid "Check again" -msgstr "Noch einmal testen" +#: ../../include/diaspora.php:2332 +msgid "Attachments:" +msgstr "Anhänge:" -#: ../../mod/install.php:227 -msgid "Database connection" -msgstr "Datenbankverbindung" +#: ../../include/items.php:4526 +msgid "Do you really want to delete this item?" +msgstr "Möchtest du wirklich dieses Item löschen?" -#: ../../mod/install.php:228 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit deiner Datenbank Kontakt aufnehmen können." +#: ../../include/items.php:4749 +msgid "Archives" +msgstr "Archiv" -#: ../../mod/install.php:229 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest." +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Männlich" -#: ../../mod/install.php:230 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor du mit der Installation fortfährst." +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Weiblich" -#: ../../mod/install.php:234 -msgid "Database Server Name" -msgstr "Datenbank-Server" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Momentan männlich" -#: ../../mod/install.php:235 -msgid "Database Login Name" -msgstr "Datenbank-Nutzer" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Momentan weiblich" -#: ../../mod/install.php:236 -msgid "Database Login Password" -msgstr "Datenbank-Passwort" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Hauptsächlich männlich" -#: ../../mod/install.php:237 -msgid "Database Name" -msgstr "Datenbank-Name" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Hauptsächlich weiblich" -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "E-Mail-Adresse des Administrators" +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" -#: ../../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 "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst." +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersex" -#: ../../mod/install.php:242 ../../mod/install.php:280 -msgid "Please select a default timezone for your website" -msgstr "Bitte wähle die Standardzeitzone deiner Webseite" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transsexuell" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermaphrodit" -#: ../../mod/install.php:267 -msgid "Site settings" -msgstr "Server-Einstellungen" +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neuter" -#: ../../mod/install.php:321 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden." +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Nicht spezifiziert" -#: ../../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 "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'" +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Andere" -#: ../../mod/install.php:326 -msgid "PHP executable path" -msgstr "Pfad zu PHP" +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Unentschieden" -#: ../../mod/install.php:326 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren." +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Männer" -#: ../../mod/install.php:331 -msgid "Command line PHP" -msgstr "Kommandozeilen-PHP" +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Frauen" -#: ../../mod/install.php:340 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)" +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Schwul" -#: ../../mod/install.php:341 -msgid "Found PHP version: " -msgstr "Gefundene PHP Version:" +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbisch" -#: ../../mod/install.php:343 -msgid "PHP cli binary" -msgstr "PHP CLI Binary" +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Keine Vorlieben" -#: ../../mod/install.php:354 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert." +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisexuell" -#: ../../mod/install.php:355 -msgid "This is required for message delivery to work." -msgstr "Dies wird für die Auslieferung von Nachrichten benötigt." +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autosexual" -#: ../../mod/install.php:357 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Abstinent" -#: ../../mod/install.php:378 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen" +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Jungfrauen" -#: ../../mod/install.php:379 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an." +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Deviant" -#: ../../mod/install.php:381 -msgid "Generate encryption keys" -msgstr "Schlüssel erzeugen" +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetish" -#: ../../mod/install.php:388 -msgid "libCurl PHP module" -msgstr "PHP: libCurl-Modul" +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Oodles" -#: ../../mod/install.php:389 -msgid "GD graphics PHP module" -msgstr "PHP: GD-Grafikmodul" +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Nonsexual" -#: ../../mod/install.php:390 -msgid "OpenSSL PHP module" -msgstr "PHP: OpenSSL-Modul" +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Single" -#: ../../mod/install.php:391 -msgid "mysqli PHP module" -msgstr "PHP: mysqli-Modul" +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Einsam" -#: ../../mod/install.php:392 -msgid "mb_string PHP module" -msgstr "PHP: mb_string-Modul" +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Verfügbar" -#: ../../mod/install.php:397 ../../mod/install.php:399 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Nicht verfügbar" -#: ../../mod/install.php:397 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert." +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "verknallt" -#: ../../mod/install.php:405 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert." +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "verliebt" -#: ../../mod/install.php:409 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert." +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "Dating" -#: ../../mod/install.php:413 -msgid "Error: openssl PHP module required but not installed." -msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert." +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Untreu" -#: ../../mod/install.php:417 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert." +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Sexbesessen" -#: ../../mod/install.php:421 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert." +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Freunde/Zuwendungen" -#: ../../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 "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun." +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Casual" -#: ../../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 "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast." +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Verlobt" -#: ../../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 "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst." +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Verheiratet" -#: ../../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 "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt." +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "imaginär verheiratet" -#: ../../mod/install.php:444 -msgid ".htconfig.php is writable" -msgstr "Schreibrechte auf .htconfig.php" +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partner" -#: ../../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 nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen." +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "zusammenlebend" -#: ../../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 "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica." +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "wilde Ehe" -#: ../../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 "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat." +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Glücklich" -#: ../../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 "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten." +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Nicht auf der Suche" -#: ../../mod/install.php:460 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 ist schreibbar" +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Swinger" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Betrogen" -#: ../../mod/install.php:472 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers." +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Getrennt" -#: ../../mod/install.php:474 -msgid "Url rewrite is working" -msgstr "URL rewrite funktioniert" +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Unstabil" -#: ../../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 "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen." +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Geschieden" -#: ../../mod/install.php:523 -msgid "

What next

" -msgstr "

Wie geht es weiter?

" +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "imaginär geschieden" -#: ../../mod/install.php:524 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten." +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Verwitwet" -#: ../../mod/help.php:79 -msgid "Help:" -msgstr "Hilfe:" +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Unsicher" -#: ../../mod/crepair.php:104 -msgid "Contact settings applied." -msgstr "Einstellungen zum Kontakt angewandt." +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Ist kompliziert" -#: ../../mod/crepair.php:106 -msgid "Contact update failed." -msgstr "Konnte den Kontakt nicht aktualisieren." +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Ist mir nicht wichtig" -#: ../../mod/crepair.php:137 -msgid "Repair Contact Settings" -msgstr "Kontakteinstellungen reparieren" +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Frag mich" -#: ../../mod/crepair.php:139 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." +#: ../../include/enotify.php:18 +msgid "Friendica Notification" +msgstr "Friendica-Benachrichtigung" -#: ../../mod/crepair.php:140 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Bitte nutze den Zurück-Button deines Browsers jetzt, wenn du dir unsicher bist, was du tun willst." +#: ../../include/enotify.php:21 +msgid "Thank You," +msgstr "Danke," -#: ../../mod/crepair.php:146 -msgid "Return to contact editor" -msgstr "Zurück zum Kontakteditor" +#: ../../include/enotify.php:23 +#, php-format +msgid "%s Administrator" +msgstr "der Administrator von %s" -#: ../../mod/crepair.php:159 -msgid "Account Nickname" -msgstr "Konto-Spitzname" +#: ../../include/enotify.php:61 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../mod/crepair.php:160 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - überschreibt Name/Spitzname" +#: ../../include/enotify.php:65 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s" -#: ../../mod/crepair.php:161 -msgid "Account URL" -msgstr "Konto-URL" +#: ../../include/enotify.php:67 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s hat dir eine neue private Nachricht auf %2$s geschickt." -#: ../../mod/crepair.php:162 -msgid "Friend Request URL" -msgstr "URL für Freundschaftsanfragen" +#: ../../include/enotify.php:68 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s schickte dir %2$s." -#: ../../mod/crepair.php:163 -msgid "Friend Confirm URL" -msgstr "URL für Bestätigungen von Freundschaftsanfragen" +#: ../../include/enotify.php:68 +msgid "a private message" +msgstr "eine private Nachricht" -#: ../../mod/crepair.php:164 -msgid "Notification Endpoint URL" -msgstr "URL-Endpunkt für Benachrichtigungen" +#: ../../include/enotify.php:69 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten." -#: ../../mod/crepair.php:165 -msgid "Poll/Feed URL" -msgstr "Pull/Feed-URL" +#: ../../include/enotify.php:121 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]" -#: ../../mod/crepair.php:166 -msgid "New photo from this URL" -msgstr "Neues Foto von dieser URL" +#: ../../include/enotify.php:128 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]" -#: ../../mod/crepair.php:167 -msgid "Remote Self" -msgstr "Entfernte Konten" +#: ../../include/enotify.php:136 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s kommentierte [url=%2$s]deinen %3$s[/url]" -#: ../../mod/crepair.php:169 -msgid "Mirror postings from this contact" -msgstr "Spiegle Beiträge dieses Kontakts" +#: ../../include/enotify.php:146 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s" -#: ../../mod/crepair.php:169 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all deine Kontakte zu senden." +#: ../../include/enotify.php:147 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s hat einen Beitrag kommentiert, dem du folgst." -#: ../../mod/crepair.php:169 -msgid "No mirroring" -msgstr "Kein Spiegeln" +#: ../../include/enotify.php:150 ../../include/enotify.php:165 +#: ../../include/enotify.php:178 ../../include/enotify.php:191 +#: ../../include/enotify.php:209 ../../include/enotify.php:222 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren." -#: ../../mod/crepair.php:169 -msgid "Mirror as forwarded posting" -msgstr "Spiegeln als weitergeleitete Beiträge" +#: ../../include/enotify.php:157 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben" -#: ../../mod/crepair.php:169 -msgid "Mirror as my own posting" -msgstr "Spiegeln als meine eigenen Beiträge" +#: ../../include/enotify.php:159 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s schrieb auf %2$s auf deine Pinnwand" -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Willkommen bei Friendica" +#: ../../include/enotify.php:161 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s hat etwas auf [url=%2$s]deiner Pinnwand[/url] gepostet" -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Checkliste für neue Mitglieder" +#: ../../include/enotify.php:172 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica-Meldung] %s hat dich erwähnt" -#: ../../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 "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden." +#: ../../include/enotify.php:173 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s erwähnte dich auf %2$s" -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Einstieg" +#: ../../include/enotify.php:174 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]erwähnte dich[/url]." -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Friendica Rundgang" +#: ../../include/enotify.php:185 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt" -#: ../../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 "Auf der Quick Start Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst." +#: ../../include/enotify.php:186 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt" -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Gehe zu deinen Einstellungen" +#: ../../include/enotify.php:187 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]." -#: ../../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 "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen." +#: ../../include/enotify.php:199 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica-Meldung] %1$s hat dich angestupst" -#: ../../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 "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können." +#: ../../include/enotify.php:200 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s hat dich auf %2$s angestupst" -#: ../../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 "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust." +#: ../../include/enotify.php:201 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s [url=%2$s]hat dich angestupst[/url]." -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Editiere dein Profil" +#: ../../include/enotify.php:216 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica-Meldung] %s hat deinen Beitrag getaggt" -#: ../../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 "Editiere dein Standard Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils." +#: ../../include/enotify.php:217 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s erwähnte deinen Beitrag auf %2$s" -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Profil Schlüsselbegriffe" +#: ../../include/enotify.php:218 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]" -#: ../../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 "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen." +#: ../../include/enotify.php:229 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica-Meldung] Kontaktanfrage erhalten" -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Verbindungen knüpfen" +#: ../../include/enotify.php:230 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten" -#: ../../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 "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst." +#: ../../include/enotify.php:231 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten." -#: ../../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 "Wenn dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten." +#: ../../include/enotify.php:234 ../../include/enotify.php:276 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Hier kannst du das Profil betrachten: %s" -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "Emails Importieren" +#: ../../include/enotify.php:236 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen." -#: ../../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 "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst." +#: ../../include/enotify.php:244 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit dir" -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Gehe zu deiner Kontakt-Seite" +#: ../../include/enotify.php:245 ../../include/enotify.php:246 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "%1$s teilt mit dir auf %2$s" -#: ../../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 "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein." +#: ../../include/enotify.php:252 +msgid "[Friendica:Notify] You have a new follower" +msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf " -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Gehe zum Verzeichnis deiner Friendica Instanz" +#: ../../include/enotify.php:253 ../../include/enotify.php:254 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s" -#: ../../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 "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst." +#: ../../include/enotify.php:267 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten" -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Neue Leute kennenlernen" +#: ../../include/enotify.php:268 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten" -#: ../../mod/newmember.php:62 +#: ../../include/enotify.php:269 +#, php-format 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 "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden." +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten." -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Gruppiere deine Kontakte" +#: ../../include/enotify.php:274 +msgid "Name:" +msgstr "Name:" -#: ../../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 "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren." +#: ../../include/enotify.php:275 +msgid "Photo:" +msgstr "Foto:" -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Warum sind meine Beiträge nicht öffentlich?" +#: ../../include/enotify.php:278 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen." -#: ../../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 respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch." +#: ../../include/enotify.php:286 ../../include/enotify.php:299 +msgid "[Friendica:Notify] Connection accepted" +msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt" -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "Hilfe bekommen" +#: ../../include/enotify.php:287 ../../include/enotify.php:300 +#, php-format +msgid "'%1$s' has acepted your connection request at %2$s" +msgstr "'%1$s' hat deine Kontaktanfrage auf %2$s bestätigt" -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Zum Hilfe Abschnitt gehen" +#: ../../include/enotify.php:288 ../../include/enotify.php:301 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$s hat deine [url=%1$s]Kontaktanfrage[/url] akzeptiert." -#: ../../mod/newmember.php:82 +#: ../../include/enotify.php:291 msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten." - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Anstupsen" +"You are now mutual friends and may exchange status updates, photos, and email\n" +"\twithout restriction." +msgstr "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen." -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "Stupse Leute an oder mache anderes mit ihnen" +#: ../../include/enotify.php:294 ../../include/enotify.php:308 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst." -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Empfänger" +#: ../../include/enotify.php:304 +#, php-format +msgid "" +"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." +msgstr "'%1$s' hat sich entschieden dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen." -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Was willst du mit dem Empfänger machen:" +#: ../../include/enotify.php:306 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future. " +msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. " -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" +#: ../../include/enotify.php:319 +msgid "[Friendica System:Notify] registration request" +msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage" -#: ../../mod/prove.php:93 -msgid "" -"\n" -"\t\tDear $[username],\n" -"\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\tinformation for your records (or change your password immediately to\n" -"\t\tsomething that you will remember).\n" -"\t" -msgstr "\nHallo $[username],\n\ndein Passwort wurde wie angefordert geändert. Bitte bewahre diese Informationen auf (oder ändere dein Passwort augenblicklich in etwas an das du dir merken kannst)." +#: ../../include/enotify.php:320 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten" -#: ../../mod/display.php:452 -msgid "Item has been removed." -msgstr "Eintrag wurde entfernt." +#: ../../include/enotify.php:321 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten." -#: ../../mod/subthread.php:103 +#: ../../include/enotify.php:324 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s folgt %2$s %3$s" +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#: ../../include/enotify.php:327 #, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s heißt %2$s herzlich willkommen" +msgid "Please visit %s to approve or reject the request." +msgstr "Bitte besuche %s um die Anfrage zu bearbeiten." -#: ../../mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde." +#: ../../include/oembed.php:210 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" -#: ../../mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Antwort der Gegenstelle unverständlich." +#: ../../include/oembed.php:219 +msgid "Embedding disabled" +msgstr "Einbettungen deaktiviert" -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Unerwartete Antwort der Gegenstelle: " +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Fehler beim Verarbeiten der Account Datei" -#: ../../mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Bestätigung erfolgreich abgeschlossen." +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?" -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Gegenstelle meldet: " +#: ../../include/uimport.php:116 ../../include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Fehler! Konnte den Nickname nicht überprüfen." -#: ../../mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal." +#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Nutzer '%s' existiert bereits auf diesem Server!" -#: ../../mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." +#: ../../include/uimport.php:153 +msgid "User creation error" +msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten" -#: ../../mod/dfrn_confirm.php:429 -msgid "Unable to set contact photo." -msgstr "Konnte das Bild des Kontakts nicht speichern." +#: ../../include/uimport.php:171 +msgid "User profile creation error" +msgstr "Fehler beim Anlegen des Nutzerkontos" -#: ../../mod/dfrn_confirm.php:571 +#: ../../include/uimport.php:220 #, php-format -msgid "No user record found for '%s' " -msgstr "Für '%s' wurde kein Nutzer gefunden" +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d Kontakt nicht importiert" +msgstr[1] "%d Kontakte nicht importiert" -#: ../../mod/dfrn_confirm.php:581 -msgid "Our site encryption key is apparently messed up." -msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung." +#: ../../include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden" -#: ../../mod/dfrn_confirm.php:592 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden." +#: ../../index.php:428 +msgid "toggle mobile" +msgstr "auf/von Mobile Ansicht wechseln" -#: ../../mod/dfrn_confirm.php:613 -msgid "Contact record was not found for you on our site." -msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden." +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 +#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55 +#: ../../view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Themeneinstellungen" -#: ../../mod/dfrn_confirm.php:627 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server." +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)" -#: ../../mod/dfrn_confirm.php:647 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal." +#: ../../view/theme/cleanzero/config.php:84 +#: ../../view/theme/dispy/config.php:73 +#: ../../view/theme/diabook/config.php:151 +msgid "Set font-size for posts and comments" +msgstr "Schriftgröße für Beiträge und Kommentare festlegen" -#: ../../mod/dfrn_confirm.php:658 -msgid "Unable to set your contact credentials on our system." -msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Theme Breite festlegen" -#: ../../mod/dfrn_confirm.php:725 -msgid "Unable to update your contact profile details on our system" -msgstr "Die Updates für dein Profil konnten nicht gespeichert werden" +#: ../../view/theme/cleanzero/config.php:86 +#: ../../view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Farbschema" -#: ../../mod/dfrn_confirm.php:797 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s ist %2$s beigetreten" +#: ../../view/theme/dispy/config.php:74 +#: ../../view/theme/diabook/config.php:152 +msgid "Set line-height for posts and comments" +msgstr "Liniengröße für Beiträge und Kommantare festlegen" -#: ../../mod/item.php:113 -msgid "Unable to locate original post." -msgstr "Konnte den Originalbeitrag nicht finden." +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Farbschema wählen" -#: ../../mod/item.php:324 -msgid "Empty post discarded." -msgstr "Leerer Beitrag wurde verworfen." +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Ausrichtung" -#: ../../mod/item.php:915 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden." +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Links" -#: ../../mod/item.php:941 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica." +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Mitte" -#: ../../mod/item.php:943 -#, php-format -msgid "You may visit them online at %s" -msgstr "Du kannst sie online unter %s besuchen" +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Schriftgröße in Beiträgen" -#: ../../mod/item.php:944 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest." +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Schriftgröße in Eingabefeldern" -#: ../../mod/item.php:948 -#, php-format -msgid "%s posted an update." -msgstr "%s hat ein Update veröffentlicht." +#: ../../view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Auflösung für die Mittelspalte setzen" -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl." +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Wähle Farbschema" -#: ../../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 "Verkleinern der Bildgröße von [%s] scheiterte." +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Zoomfaktor der Earth Layer" -#: ../../mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird." +#: ../../view/theme/diabook/config.php:156 +#: ../../view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" +msgstr "Longitude (X) der Earth Layer" -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Bild konnte nicht verarbeitet werden" +#: ../../view/theme/diabook/config.php:157 +#: ../../view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Latitude (Y) der Earth Layer" -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Datei hochladen:" +#: ../../view/theme/diabook/config.php:158 +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +msgid "Community Pages" +msgstr "Foren" -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Profil auswählen:" +#: ../../view/theme/diabook/config.php:159 +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +msgid "Earth Layers" +msgstr "Earth Layers" -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Hochladen" +#: ../../view/theme/diabook/config.php:160 +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +msgid "Community Profiles" +msgstr "Community-Profile" -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "diesen Schritt überspringen" +#: ../../view/theme/diabook/config.php:161 +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +msgid "Help or @NewHere ?" +msgstr "Hilfe oder @NewHere" -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "wähle ein Foto aus deinen Fotoalben" +#: ../../view/theme/diabook/config.php:162 +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +msgid "Connect Services" +msgstr "Verbinde Dienste" -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Bild zurechtschneiden" +#: ../../view/theme/diabook/config.php:163 +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +msgid "Find Friends" +msgstr "Freunde finden" -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann." +#: ../../view/theme/diabook/config.php:164 +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +msgid "Last users" +msgstr "Letzte Nutzer" -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Bearbeitung abgeschlossen" +#: ../../view/theme/diabook/config.php:165 +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "Letzte Fotos" -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Bild erfolgreich hochgeladen." +#: ../../view/theme/diabook/config.php:166 +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +msgid "Last likes" +msgstr "Zuletzt gemocht" -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Freunde von %s" +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Deine Kontakte" -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Keine Freunde zum Anzeigen." +#: ../../view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Deine privaten Fotos" -#: ../../mod/directory.php:59 -msgid "Find on this site" -msgstr "Auf diesem Server suchen" +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Lokales Verzeichnis" -#: ../../mod/directory.php:62 -msgid "Site Directory" -msgstr "Verzeichnis" +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Zoomfaktor der Earth Layer" -#: ../../mod/directory.php:116 -msgid "Gender: " -msgstr "Geschlecht:" +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Rahmen auf der rechten Seite anzeigen/verbergen" -#: ../../mod/directory.php:189 -msgid "No entries (some entries may be hidden)." -msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." +#: ../../view/theme/vier/config.php:56 +msgid "Set style" +msgstr "Stil auswählen" -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Zeitumrechnung" +#: ../../view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "greenzero" -#: ../../mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann." +#: ../../view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "purplezero" -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "UTC Zeit: %s" +#: ../../view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "easterbunny" -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Aktuelle Zeitzone: %s" +#: ../../view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "darkzero" -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Umgerechnete lokale Zeit: %s" +#: ../../view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "comix" -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Bitte wähle deine Zeitzone:" +#: ../../view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "slackr" + +#: ../../view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "Variationen" diff --git a/view/de/strings.php b/view/de/strings.php index e511aa27d0..cb21bc55fe 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -5,742 +5,287 @@ function string_plural_select_de($n){ return ($n != 1);; }} ; -$a->strings["Submit"] = "Senden"; -$a->strings["Theme settings"] = "Themeneinstellungen"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"; -$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen"; -$a->strings["Set theme width"] = "Theme Breite festlegen"; -$a->strings["Color scheme"] = "Farbschema"; -$a->strings["Set style"] = "Stil auswählen"; -$a->strings["don't show"] = "nicht zeigen"; -$a->strings["show"] = "zeigen"; -$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen"; -$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen"; -$a->strings["Set color scheme"] = "Wähle Farbschema"; -$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer"; -$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer"; -$a->strings["Community Pages"] = "Foren"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Community Profiles"] = "Community-Profile"; -$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere"; -$a->strings["Connect Services"] = "Verbinde Dienste"; -$a->strings["Find Friends"] = "Freunde finden"; -$a->strings["Last users"] = "Letzte Nutzer"; -$a->strings["Last photos"] = "Letzte Fotos"; -$a->strings["Last likes"] = "Zuletzt gemocht"; -$a->strings["Home"] = "Pinnwand"; -$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; -$a->strings["Profile"] = "Profil"; -$a->strings["Your profile page"] = "Deine Profilseite"; -$a->strings["Contacts"] = "Kontakte"; -$a->strings["Your contacts"] = "Deine Kontakte"; -$a->strings["Photos"] = "Bilder"; -$a->strings["Your photos"] = "Deine Fotos"; -$a->strings["Events"] = "Veranstaltungen"; -$a->strings["Your events"] = "Deine Ereignisse"; -$a->strings["Personal notes"] = "Persönliche Notizen"; -$a->strings["Your personal photos"] = "Deine privaten Fotos"; -$a->strings["Community"] = "Gemeinschaft"; -$a->strings["event"] = "Veranstaltung"; -$a->strings["status"] = "Status"; -$a->strings["photo"] = "Foto"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s"; -$a->strings["Contact Photos"] = "Kontaktbilder"; -$a->strings["Profile Photos"] = "Profilbilder"; -$a->strings["Local Directory"] = "Lokales Verzeichnis"; -$a->strings["Global Directory"] = "Weltweites Verzeichnis"; -$a->strings["Similar Interests"] = "Ähnliche Interessen"; -$a->strings["Friend Suggestions"] = "Kontaktvorschläge"; -$a->strings["Invite Friends"] = "Freunde einladen"; -$a->strings["Settings"] = "Einstellungen"; -$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer"; -$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen"; -$a->strings["Alignment"] = "Ausrichtung"; -$a->strings["Left"] = "Links"; -$a->strings["Center"] = "Mitte"; -$a->strings["Posts font size"] = "Schriftgröße in Beiträgen"; -$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern"; -$a->strings["Set colour scheme"] = "Farbschema wählen"; -$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können."; -$a->strings["Not Found"] = "Nicht gefunden"; -$a->strings["Page not found."] = "Seite nicht gefunden."; -$a->strings["Permission denied"] = "Zugriff verweigert"; +$a->strings["%d contact edited."] = array( + 0 => "%d Kontakt bearbeitet.", + 1 => "%d Kontakte bearbeitet", +); +$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen."; +$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden."; +$a->strings["Contact updated."] = "Kontakt aktualisiert."; +$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen."; $a->strings["Permission denied."] = "Zugriff verweigert."; -$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; -$a->strings["Delete this item?"] = "Diesen Beitrag löschen?"; -$a->strings["Comment"] = "Kommentar"; -$a->strings["show more"] = "mehr anzeigen"; -$a->strings["show fewer"] = "weniger anzeigen"; -$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."; -$a->strings["Create a New Account"] = "Neues Konto erstellen"; -$a->strings["Register"] = "Registrieren"; -$a->strings["Logout"] = "Abmelden"; -$a->strings["Login"] = "Anmeldung"; -$a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: "; -$a->strings["Password: "] = "Passwort: "; -$a->strings["Remember me"] = "Anmeldedaten merken"; -$a->strings["Or login using OpenID: "] = "Oder melde dich mit deiner OpenID an: "; -$a->strings["Forgot your password?"] = "Passwort vergessen?"; -$a->strings["Password Reset"] = "Passwort zurücksetzen"; -$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen"; -$a->strings["terms of service"] = "Nutzungsbedingungen"; -$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung"; -$a->strings["privacy policy"] = "Datenschutzerklärung"; -$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden."; -$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden."; -$a->strings["Edit profile"] = "Profil bearbeiten"; -$a->strings["Connect"] = "Verbinden"; -$a->strings["Message"] = "Nachricht"; -$a->strings["Profiles"] = "Profile"; -$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren"; -$a->strings["Change profile photo"] = "Profilbild ändern"; -$a->strings["Create New Profile"] = "Neues Profil anlegen"; -$a->strings["Profile Image"] = "Profilbild"; -$a->strings["visible to everybody"] = "sichtbar für jeden"; -$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; -$a->strings["Location:"] = "Ort:"; -$a->strings["Gender:"] = "Geschlecht:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["Network:"] = "Netzwerk"; -$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r"; -$a->strings["F d"] = "d. F"; -$a->strings["[today]"] = "[heute]"; -$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen"; -$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:"; -$a->strings["[No description]"] = "[keine Beschreibung]"; -$a->strings["Event Reminders"] = "Veranstaltungserinnerungen"; -$a->strings["Events this week:"] = "Veranstaltungen diese Woche"; -$a->strings["Status"] = "Status"; -$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; -$a->strings["Profile Details"] = "Profildetails"; -$a->strings["Photo Albums"] = "Fotoalben"; -$a->strings["Videos"] = "Videos"; -$a->strings["Events and Calendar"] = "Ereignisse und Kalender"; -$a->strings["Personal Notes"] = "Persönliche Notizen"; -$a->strings["Only You Can See This"] = "Nur du kannst das sehen"; -$a->strings["General Features"] = "Allgemeine Features"; -$a->strings["Multiple Profiles"] = "Mehrere Profile"; -$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen"; -$a->strings["Post Composition Features"] = "Beitragserstellung Features"; -$a->strings["Richtext Editor"] = "Web-Editor"; -$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren"; -$a->strings["Post Preview"] = "Beitragsvorschau"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."; -$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen"; -$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde."; -$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste"; -$a->strings["Search by Date"] = "Archiv"; -$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"; -$a->strings["Group Filter"] = "Gruppen Filter"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."; -$a->strings["Network Filter"] = "Netzwerk Filter"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."; -$a->strings["Saved Searches"] = "Gespeicherte Suchen"; -$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung."; -$a->strings["Network Tabs"] = "Netzwerk Reiter"; -$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast"; -$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"; -$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"; -$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare"; -$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen"; -$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"; -$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren"; -$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren."; -$a->strings["Tagging"] = "Tagging"; -$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."; -$a->strings["Post Categories"] = "Beitragskategorien"; -$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen"; -$a->strings["Saved Folders"] = "Gespeicherte Ordner"; -$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren"; -$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'"; -$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"; -$a->strings["Star Posts"] = "Beiträge Markieren"; -$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"; -$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten"; -$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"; -$a->strings["%s's birthday"] = "%ss Geburtstag"; -$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s"; -$a->strings["[Name Withheld]"] = "[Name unterdrückt]"; -$a->strings["Item not found."] = "Beitrag nicht gefunden."; -$a->strings["Do you really want to delete this item?"] = "Möchtest du wirklich dieses Item löschen?"; +$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert"; +$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben"; +$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert"; +$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert"; +$a->strings["Contact has been archived"] = "Kontakt wurde archiviert"; +$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt"; +$a->strings["Do you really want to delete this contact?"] = "Möchtest du wirklich diesen Kontakt löschen?"; $a->strings["Yes"] = "Ja"; $a->strings["Cancel"] = "Abbrechen"; -$a->strings["Archives"] = "Archiv"; -$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."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."; -$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte"; -$a->strings["Everybody"] = "Alle Kontakte"; -$a->strings["edit"] = "bearbeiten"; -$a->strings["Groups"] = "Gruppen"; -$a->strings["Edit group"] = "Gruppe bearbeiten"; -$a->strings["Create a new group"] = "Neue Gruppe erstellen"; -$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe"; -$a->strings["add"] = "hinzufügen"; -$a->strings["Wall Photos"] = "Pinnwand-Bilder"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."; -$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen"; -$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d Einladung verfügbar", - 1 => "%d Einladungen verfügbar", -); -$a->strings["Find People"] = "Leute finden"; -$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; -$a->strings["Connect/Follow"] = "Verbinden/Folgen"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln"; -$a->strings["Find"] = "Finde"; -$a->strings["Random Profile"] = "Zufälliges Profil"; -$a->strings["Networks"] = "Netzwerke"; -$a->strings["All Networks"] = "Alle Netzwerke"; -$a->strings["Everything"] = "Alles"; -$a->strings["Categories"] = "Kategorien"; +$a->strings["Contact has been removed."] = "Kontakt wurde entfernt."; +$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft"; +$a->strings["You are sharing with %s"] = "Du teilst mit %s"; +$a->strings["%s is sharing with you"] = "%s teilt mit Dir"; +$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar."; +$a->strings["Never"] = "Niemals"; +$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)"; +$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)"; +$a->strings["Suggest friends"] = "Kontakte vorschlagen"; +$a->strings["Network type: %s"] = "Netzwerktyp: %s"; $a->strings["%d contact in common"] = array( 0 => "%d gemeinsamer Kontakt", 1 => "%d gemeinsame Kontakte", ); -$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung"; -$a->strings["Thank You,"] = "Danke,"; -$a->strings["%s Administrator"] = "der Administrator von %s"; -$a->strings["noreply"] = "noreply"; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat dir eine neue private Nachricht auf %2\$s geschickt."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte dir %2\$s."; -$a->strings["a private message"] = "eine private Nachricht"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]deinen %3\$s[/url]"; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s"; -$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem du folgst."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben"; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf deine Pinnwand"; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]deiner Pinnwand[/url] gepostet"; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat dich erwähnt"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte dich auf %2\$s"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte dich[/url]."; -$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"; -$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt"; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url]."; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat dich angestupst"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat dich auf %2\$s angestupst"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat dich angestupst[/url]."; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat deinen Beitrag getaggt"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte deinen Beitrag auf %2\$s"; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]"; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten."; -$a->strings["You may visit their profile at %s"] = "Hier kannst du das Profil betrachten: %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."; -$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica Benachrichtigung] Eine neue Person teilt mit dir"; -$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit dir auf %2\$s"; -$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "; -$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s"; -$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten"; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-Vorschlag von '%1\$s' auf %2\$s erhalten"; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Freunde-Vorschlag[/url] %2\$s von %3\$s erhalten."; -$a->strings["Name:"] = "Name:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."; -$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"; -$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' hat deine Kontaktanfrage auf %2\$s bestätigt"; -$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert."; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst."; -$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' hat sich entschieden dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen."; -$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "; -$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Benachrichtigung] Registrationsanfrage"; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten"; -$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten."; -$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"; -$a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten."; -$a->strings["User not found."] = "Nutzer nicht gefunden."; -$a->strings["There is no status with this id."] = "Es gibt keinen Status mit dieser ID."; -$a->strings["There is no conversation with this id."] = "Es existiert keine Unterhaltung mit dieser ID."; -$a->strings["view full size"] = "Volle Größe anzeigen"; -$a->strings[" on Last.fm"] = " bei Last.fm"; -$a->strings["Full Name:"] = "Kompletter Name:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Geburtstag:"; -$a->strings["Age:"] = "Alter:"; -$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:"; -$a->strings["Hometown:"] = "Heimatort:"; -$a->strings["Tags:"] = "Tags"; -$a->strings["Political Views:"] = "Politische Ansichten:"; -$a->strings["Religion:"] = "Religion:"; -$a->strings["About:"] = "Über:"; -$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:"; -$a->strings["Likes:"] = "Likes:"; -$a->strings["Dislikes:"] = "Dislikes:"; -$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:"; -$a->strings["Musical interests:"] = "Musikalische Interessen:"; -$a->strings["Books, literature:"] = "Literatur/Bücher:"; -$a->strings["Television:"] = "Fernsehen:"; -$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:"; -$a->strings["Love/Romance:"] = "Liebesleben:"; -$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:"; -$a->strings["School/education:"] = "Schule/Ausbildung:"; -$a->strings["Nothing new here"] = "Keine Neuigkeiten"; -$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen"; -$a->strings["End this session"] = "Diese Sitzung beenden"; -$a->strings["Your videos"] = "Deine Videos"; -$a->strings["Your personal notes"] = "Deine persönlichen Notizen"; -$a->strings["Sign in"] = "Anmelden"; -$a->strings["Home Page"] = "Homepage"; -$a->strings["Create an account"] = "Nutzerkonto erstellen"; -$a->strings["Help"] = "Hilfe"; -$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; -$a->strings["Apps"] = "Apps"; -$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele"; -$a->strings["Search"] = "Suche"; -$a->strings["Search site content"] = "Inhalt der Seite durchsuchen"; -$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite"; -$a->strings["Directory"] = "Verzeichnis"; -$a->strings["People directory"] = "Nutzerverzeichnis"; -$a->strings["Information"] = "Information"; -$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz"; -$a->strings["Network"] = "Netzwerk"; -$a->strings["Conversations from your friends"] = "Unterhaltungen deiner Kontakte"; -$a->strings["Network Reset"] = "Netzwerk zurücksetzen"; -$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden"; -$a->strings["Introductions"] = "Kontaktanfragen"; -$a->strings["Friend Requests"] = "Kontaktanfragen"; -$a->strings["Notifications"] = "Benachrichtigungen"; -$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen"; -$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen"; -$a->strings["Messages"] = "Nachrichten"; -$a->strings["Private mail"] = "Private E-Mail"; -$a->strings["Inbox"] = "Eingang"; -$a->strings["Outbox"] = "Ausgang"; -$a->strings["New Message"] = "Neue Nachricht"; -$a->strings["Manage"] = "Verwalten"; -$a->strings["Manage other pages"] = "Andere Seiten verwalten"; -$a->strings["Delegations"] = "Delegationen"; -$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite"; -$a->strings["Account settings"] = "Kontoeinstellungen"; -$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren"; -$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren"; -$a->strings["Admin"] = "Administration"; -$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration"; -$a->strings["Navigation"] = "Navigation"; -$a->strings["Site map"] = "Sitemap"; -$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze deines Abonnements."; -$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in deinem Abonnement nicht verfügbar."; -$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL."; -$a->strings["Connect URL missing."] = "Connect-URL fehlt"; -$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."; -$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen."; -$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden."; -$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."; -$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können."; -$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen."; -$a->strings["following"] = "folgen"; -$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"; -$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen."; -$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!"; -$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten"; -$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos"; -$a->strings["%d contact not imported"] = array( - 0 => "%d Kontakt nicht importiert", - 1 => "%d Kontakte nicht importiert", -); -$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden"; -$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i"; -$a->strings["Starts:"] = "Beginnt:"; -$a->strings["Finishes:"] = "Endet:"; -$a->strings["stopped following"] = "wird nicht mehr gefolgt"; -$a->strings["Poke"] = "Anstupsen"; -$a->strings["View Status"] = "Pinnwand anschauen"; -$a->strings["View Profile"] = "Profil anschauen"; -$a->strings["View Photos"] = "Bilder anschauen"; -$a->strings["Network Posts"] = "Netzwerkbeiträge"; -$a->strings["Edit Contact"] = "Kontakt bearbeiten"; -$a->strings["Drop Contact"] = "Kontakt löschen"; -$a->strings["Send PM"] = "Private Nachricht senden"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."; -$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."; -$a->strings["Miscellaneous"] = "Verschiedenes"; -$a->strings["year"] = "Jahr"; -$a->strings["month"] = "Monat"; -$a->strings["day"] = "Tag"; -$a->strings["never"] = "nie"; -$a->strings["less than a second ago"] = "vor weniger als einer Sekunde"; -$a->strings["years"] = "Jahre"; -$a->strings["months"] = "Monate"; -$a->strings["week"] = "Woche"; -$a->strings["weeks"] = "Wochen"; -$a->strings["days"] = "Tage"; -$a->strings["hour"] = "Stunde"; -$a->strings["hours"] = "Stunden"; -$a->strings["minute"] = "Minute"; -$a->strings["minutes"] = "Minuten"; -$a->strings["second"] = "Sekunde"; -$a->strings["seconds"] = "Sekunden"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her"; -$a->strings["[no subject]"] = "[kein Betreff]"; -$a->strings["(no subject)"] = "(kein Betreff)"; -$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert"; -$a->strings["Block immediately"] = "Sofort blockieren"; -$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller"; -$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung"; -$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos"; -$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen"; -$a->strings["Frequently"] = "immer wieder"; -$a->strings["Hourly"] = "Stündlich"; -$a->strings["Twice daily"] = "Zweimal täglich"; -$a->strings["Daily"] = "Täglich"; -$a->strings["Weekly"] = "Wöchentlich"; -$a->strings["Monthly"] = "Monatlich"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "E-Mail"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Zot!"] = "Zott"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/Chat"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Diaspora"; -$a->strings["Statusnet"] = "StatusNet"; -$a->strings["App.net"] = "App.net"; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet"; -$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora"; -$a->strings["Attachments:"] = "Anhänge:"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; -$a->strings["poked"] = "stupste"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt"; -$a->strings["post/item"] = "Nachricht/Beitrag"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert"; -$a->strings["Select"] = "Auswählen"; +$a->strings["View all contacts"] = "Alle Kontakte anzeigen"; +$a->strings["Unblock"] = "Entsperren"; +$a->strings["Block"] = "Sperren"; +$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten"; +$a->strings["Unignore"] = "Ignorieren aufheben"; +$a->strings["Ignore"] = "Ignorieren"; +$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten"; +$a->strings["Unarchive"] = "Aus Archiv zurückholen"; +$a->strings["Archive"] = "Archivieren"; +$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten"; +$a->strings["Repair"] = "Reparieren"; +$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen"; +$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!"; +$a->strings["Contact Editor"] = "Kontakt Editor"; +$a->strings["Submit"] = "Senden"; +$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft."; +$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen"; +$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten"; +$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]"; +$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten"; +$a->strings["Ignore contact"] = "Ignoriere den Kontakt"; +$a->strings["Repair URL settings"] = "URL Einstellungen reparieren"; +$a->strings["View conversations"] = "Unterhaltungen anzeigen"; +$a->strings["Delete contact"] = "Lösche den Kontakt"; +$a->strings["Last update:"] = "letzte Aktualisierung:"; +$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; +$a->strings["Update now"] = "Jetzt aktualisieren"; +$a->strings["Currently blocked"] = "Derzeit geblockt"; +$a->strings["Currently ignored"] = "Derzeit ignoriert"; +$a->strings["Currently archived"] = "Momentan archiviert"; +$a->strings["Hide this contact from others"] = "Verberge diesen Kontakt vor anderen"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein"; +$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen"; +$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung wann immer dieser Kontakt einen neuen Beitrag schreibt."; +$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen"; +$a->strings["Disabled"] = "Deaktiviert"; +$a->strings["Fetch information"] = "Beziehe Information"; +$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte"; +$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte "; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten die nicht in Hashtags konvertiert werden wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"; +$a->strings["Suggestions"] = "Kontaktvorschläge"; +$a->strings["Suggest potential friends"] = "Freunde vorschlagen"; +$a->strings["All Contacts"] = "Alle Kontakte"; +$a->strings["Show all contacts"] = "Alle Kontakte anzeigen"; +$a->strings["Unblocked"] = "Ungeblockt"; +$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen"; +$a->strings["Blocked"] = "Geblockt"; +$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen"; +$a->strings["Ignored"] = "Ignoriert"; +$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen"; +$a->strings["Archived"] = "Archiviert"; +$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen"; +$a->strings["Hidden"] = "Verborgen"; +$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen"; +$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft"; +$a->strings["is a fan of yours"] = "ist ein Fan von dir"; +$a->strings["you are a fan of"] = "du bist Fan von"; +$a->strings["Edit contact"] = "Kontakt bearbeiten"; +$a->strings["Contacts"] = "Kontakte"; +$a->strings["Search your contacts"] = "Suche in deinen Kontakten"; +$a->strings["Finding: "] = "Funde: "; +$a->strings["Find"] = "Finde"; +$a->strings["Update"] = "Aktualisierungen"; $a->strings["Delete"] = "Löschen"; -$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten."; -$a->strings["Categories:"] = "Kategorien:"; -$a->strings["Filed under:"] = "Abgelegt unter:"; -$a->strings["%s from %s"] = "%s von %s"; -$a->strings["View in context"] = "Im Zusammenhang betrachten"; -$a->strings["Please wait"] = "Bitte warten"; -$a->strings["remove"] = "löschen"; -$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; -$a->strings["Follow Thread"] = "Folge der Unterhaltung"; -$a->strings["%s likes this."] = "%s mag das."; -$a->strings["%s doesn't like this."] = "%s mag das nicht."; -$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; -$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; -$a->strings["and"] = "und"; -$a->strings[", and %d other people"] = " und %d andere"; -$a->strings["%s like this."] = "%s mögen das."; -$a->strings["%s don't like this."] = "%s mögen das nicht."; -$a->strings["Visible to everybody"] = "Für jedermann sichtbar"; -$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:"; -$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:"; -$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:"; -$a->strings["Tag term:"] = "Tag:"; +$a->strings["No profile"] = "Kein Profil"; +$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast."; +$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: "; +$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht."; +$a->strings["Permission denied"] = "Zugriff verweigert"; +$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner."; +$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit"; +$a->strings["Profile"] = "Profil"; +$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"; +$a->strings["Visible To"] = "Sichtbar für"; +$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)"; +$a->strings["Item not found."] = "Beitrag nicht gefunden."; +$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert."; +$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt."; +$a->strings["Item has been removed."] = "Eintrag wurde entfernt."; +$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica"; +$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder"; +$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."] = "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."; +$a->strings["Getting Started"] = "Einstieg"; +$a->strings["Friendica Walk-Through"] = "Friendica Rundgang"; +$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."] = "Auf der Quick Start Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst."; +$a->strings["Settings"] = "Einstellungen"; +$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen"; +$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."] = "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."; +$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."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können."; +$a->strings["Upload Profile Photo"] = "Profilbild hochladen"; +$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."] = "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust."; +$a->strings["Edit Your Profile"] = "Editiere dein 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."] = "Editiere dein Standard Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils."; +$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe"; +$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."] = "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen."; +$a->strings["Connecting"] = "Verbindungen knüpfen"; +$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."] = "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Wenn dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten."; +$a->strings["Importing Emails"] = "Emails Importieren"; +$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"] = "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst."; +$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite"; +$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."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein."; +$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis deiner Friendica Instanz"; +$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."] = "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst."; +$a->strings["Finding New People"] = "Neue Leute kennenlernen"; +$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."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."; +$a->strings["Groups"] = "Gruppen"; +$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte"; +$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."] = "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."; +$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?"; +$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 respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."; +$a->strings["Getting Help"] = "Hilfe bekommen"; +$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."; +$a->strings["Login failed."] = "Anmeldung fehlgeschlagen."; +$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl."; +$a->strings["Profile Photos"] = "Profilbilder"; +$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."; +$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden"; +$a->strings["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d"; +$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten."; +$a->strings["Upload File:"] = "Datei hochladen:"; +$a->strings["Select a profile:"] = "Profil auswählen:"; +$a->strings["Upload"] = "Hochladen"; +$a->strings["or"] = "oder"; +$a->strings["skip this step"] = "diesen Schritt überspringen"; +$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben"; +$a->strings["Crop Image"] = "Bild zurechtschneiden"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."; +$a->strings["Done Editing"] = "Bearbeitung abgeschlossen"; +$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen."; +$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert."; +$a->strings["photo"] = "Foto"; +$a->strings["status"] = "Status"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s"; +$a->strings["Tag removed"] = "Tag entfernt"; +$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen"; +$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: "; +$a->strings["Remove"] = "Entfernen"; $a->strings["Save to Folder:"] = "In diesem Ordner speichern:"; -$a->strings["Where are you right now?"] = "Wo hältst du dich jetzt gerade auf?"; -$a->strings["Delete item(s)?"] = "Einträge löschen?"; -$a->strings["Post to Email"] = "An E-Mail senden"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."; -$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?"; -$a->strings["Share"] = "Teilen"; -$a->strings["Upload photo"] = "Foto hochladen"; -$a->strings["upload photo"] = "Bild hochladen"; -$a->strings["Attach file"] = "Datei anhängen"; -$a->strings["attach file"] = "Datei anhängen"; -$a->strings["Insert web link"] = "Einen Link einfügen"; -$a->strings["web link"] = "Weblink"; -$a->strings["Insert video link"] = "Video-Adresse einfügen"; -$a->strings["video link"] = "Video-Link"; -$a->strings["Insert audio link"] = "Audio-Adresse einfügen"; -$a->strings["audio link"] = "Audio-Link"; -$a->strings["Set your location"] = "Deinen Standort festlegen"; -$a->strings["set location"] = "Ort setzen"; -$a->strings["Clear browser location"] = "Browser-Standort leeren"; -$a->strings["clear location"] = "Ort löschen"; -$a->strings["Set title"] = "Titel setzen"; -$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)"; -$a->strings["Permission settings"] = "Berechtigungseinstellungen"; -$a->strings["permissions"] = "Zugriffsrechte"; -$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen"; -$a->strings["Public post"] = "Öffentlicher Beitrag"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com"; -$a->strings["Preview"] = "Vorschau"; -$a->strings["Post to Groups"] = "Poste an Gruppe"; -$a->strings["Post to Contacts"] = "Poste an Kontakte"; -$a->strings["Private post"] = "Privater Beitrag"; -$a->strings["newer"] = "neuer"; -$a->strings["older"] = "älter"; -$a->strings["prev"] = "vorige"; -$a->strings["first"] = "erste"; -$a->strings["last"] = "letzte"; -$a->strings["next"] = "nächste"; -$a->strings["No contacts"] = "Keine Kontakte"; -$a->strings["%d Contact"] = array( - 0 => "%d Kontakt", - 1 => "%d Kontakte", -); -$a->strings["View Contacts"] = "Kontakte anzeigen"; +$a->strings["- select -"] = "- auswählen -"; $a->strings["Save"] = "Speichern"; -$a->strings["poke"] = "anstupsen"; -$a->strings["ping"] = "anpingen"; -$a->strings["pinged"] = "pingte"; -$a->strings["prod"] = "knuffen"; -$a->strings["prodded"] = "knuffte"; -$a->strings["slap"] = "ohrfeigen"; -$a->strings["slapped"] = "ohrfeigte"; -$a->strings["finger"] = "befummeln"; -$a->strings["fingered"] = "befummelte"; -$a->strings["rebuff"] = "eine Abfuhr erteilen"; -$a->strings["rebuffed"] = "abfuhrerteilte"; -$a->strings["happy"] = "glücklich"; -$a->strings["sad"] = "traurig"; -$a->strings["mellow"] = "sanft"; -$a->strings["tired"] = "müde"; -$a->strings["perky"] = "frech"; -$a->strings["angry"] = "sauer"; -$a->strings["stupified"] = "verblüfft"; -$a->strings["puzzled"] = "verwirrt"; -$a->strings["interested"] = "interessiert"; -$a->strings["bitter"] = "verbittert"; -$a->strings["cheerful"] = "fröhlich"; -$a->strings["alive"] = "lebendig"; -$a->strings["annoyed"] = "verärgert"; -$a->strings["anxious"] = "unruhig"; -$a->strings["cranky"] = "schrullig"; -$a->strings["disturbed"] = "verstört"; -$a->strings["frustrated"] = "frustriert"; -$a->strings["motivated"] = "motiviert"; -$a->strings["relaxed"] = "entspannt"; -$a->strings["surprised"] = "überrascht"; -$a->strings["Monday"] = "Montag"; -$a->strings["Tuesday"] = "Dienstag"; -$a->strings["Wednesday"] = "Mittwoch"; -$a->strings["Thursday"] = "Donnerstag"; -$a->strings["Friday"] = "Freitag"; -$a->strings["Saturday"] = "Samstag"; -$a->strings["Sunday"] = "Sonntag"; -$a->strings["January"] = "Januar"; -$a->strings["February"] = "Februar"; -$a->strings["March"] = "März"; -$a->strings["April"] = "April"; -$a->strings["May"] = "Mai"; -$a->strings["June"] = "Juni"; -$a->strings["July"] = "Juli"; -$a->strings["August"] = "August"; -$a->strings["September"] = "September"; -$a->strings["October"] = "Oktober"; -$a->strings["November"] = "November"; -$a->strings["December"] = "Dezember"; +$a->strings["Contact added"] = "Kontakt hinzugefügt"; +$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden."; +$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen."; +$a->strings["Wall Photos"] = "Pinnwand-Bilder"; +$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."; +$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest."; +$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht."; +$a->strings["Group created."] = "Gruppe erstellt."; +$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen."; +$a->strings["Group not found."] = "Gruppe nicht gefunden."; +$a->strings["Group name changed."] = "Gruppenname geändert."; +$a->strings["Save Group"] = "Gruppe speichern"; +$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen."; +$a->strings["Group Name: "] = "Gruppenname:"; +$a->strings["Group removed."] = "Gruppe entfernt."; +$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen."; +$a->strings["Group Editor"] = "Gruppeneditor"; +$a->strings["Members"] = "Mitglieder"; +$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können."; +$a->strings["Applications"] = "Anwendungen"; +$a->strings["No installed applications."] = "Keine Applikationen installiert."; +$a->strings["Profile not found."] = "Profil nicht gefunden."; +$a->strings["Contact not found."] = "Kontakt nicht gefunden."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."; +$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich."; +$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: "; +$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen."; +$a->strings["Remote site reported: "] = "Gegenstelle meldet: "; +$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."; +$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen."; +$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet"; +$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden"; +$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."; +$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."; +$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."; +$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."; +$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für dein Profil konnten nicht gespeichert werden"; +$a->strings["[Name Withheld]"] = "[Name unterdrückt]"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten"; +$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden."; +$a->strings["Tips for New Members"] = "Tipps für neue Nutzer"; +$a->strings["No videos selected"] = "Keine Videos ausgewählt"; +$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt."; $a->strings["View Video"] = "Video ansehen"; -$a->strings["bytes"] = "Byte"; -$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken"; -$a->strings["link to source"] = "Link zum Originalbeitrag"; -$a->strings["default"] = "Standard"; -$a->strings["Select an alternate language"] = "Alternative Sprache auswählen"; -$a->strings["activity"] = "Aktivität"; -$a->strings["comment"] = array( - 0 => "Kommentar", - 1 => "Kommentare", -); -$a->strings["post"] = "Beitrag"; -$a->strings["Item filed"] = "Beitrag abgelegt"; -$a->strings["Logged out."] = "Abgemeldet."; -$a->strings["Login failed."] = "Anmeldung fehlgeschlagen."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast."; -$a->strings["The error message was:"] = "Die Fehlermeldung lautete:"; -$a->strings["Image/photo"] = "Bild/Foto"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["%s wrote the following post"] = "%s schrieb den folgenden Beitrag"; -$a->strings["$1 wrote:"] = "$1 hat geschrieben:"; -$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; -$a->strings["Welcome "] = "Willkommen "; -$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch."; -$a->strings["Welcome back "] = "Willkommen zurück "; -$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."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."; -$a->strings["Embedded content"] = "Eingebetteter Inhalt"; -$a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; -$a->strings["Male"] = "Männlich"; -$a->strings["Female"] = "Weiblich"; -$a->strings["Currently Male"] = "Momentan männlich"; -$a->strings["Currently Female"] = "Momentan weiblich"; -$a->strings["Mostly Male"] = "Hauptsächlich männlich"; -$a->strings["Mostly Female"] = "Hauptsächlich weiblich"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Intersex"; -$a->strings["Transsexual"] = "Transsexuell"; -$a->strings["Hermaphrodite"] = "Hermaphrodit"; -$a->strings["Neuter"] = "Neuter"; -$a->strings["Non-specific"] = "Nicht spezifiziert"; -$a->strings["Other"] = "Andere"; -$a->strings["Undecided"] = "Unentschieden"; -$a->strings["Males"] = "Männer"; -$a->strings["Females"] = "Frauen"; -$a->strings["Gay"] = "Schwul"; -$a->strings["Lesbian"] = "Lesbisch"; -$a->strings["No Preference"] = "Keine Vorlieben"; -$a->strings["Bisexual"] = "Bisexuell"; -$a->strings["Autosexual"] = "Autosexual"; -$a->strings["Abstinent"] = "Abstinent"; -$a->strings["Virgin"] = "Jungfrauen"; -$a->strings["Deviant"] = "Deviant"; -$a->strings["Fetish"] = "Fetish"; -$a->strings["Oodles"] = "Oodles"; -$a->strings["Nonsexual"] = "Nonsexual"; -$a->strings["Single"] = "Single"; -$a->strings["Lonely"] = "Einsam"; -$a->strings["Available"] = "Verfügbar"; -$a->strings["Unavailable"] = "Nicht verfügbar"; -$a->strings["Has crush"] = "verknallt"; -$a->strings["Infatuated"] = "verliebt"; -$a->strings["Dating"] = "Dating"; -$a->strings["Unfaithful"] = "Untreu"; -$a->strings["Sex Addict"] = "Sexbesessen"; -$a->strings["Friends"] = "Freunde"; -$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen"; -$a->strings["Casual"] = "Casual"; -$a->strings["Engaged"] = "Verlobt"; -$a->strings["Married"] = "Verheiratet"; -$a->strings["Imaginarily married"] = "imaginär verheiratet"; -$a->strings["Partners"] = "Partner"; -$a->strings["Cohabiting"] = "zusammenlebend"; -$a->strings["Common law"] = "wilde Ehe"; -$a->strings["Happy"] = "Glücklich"; -$a->strings["Not looking"] = "Nicht auf der Suche"; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Betrogen"; -$a->strings["Separated"] = "Getrennt"; -$a->strings["Unstable"] = "Unstabil"; -$a->strings["Divorced"] = "Geschieden"; -$a->strings["Imaginarily divorced"] = "imaginär geschieden"; -$a->strings["Widowed"] = "Verwitwet"; -$a->strings["Uncertain"] = "Unsicher"; -$a->strings["It's complicated"] = "Ist kompliziert"; -$a->strings["Don't care"] = "Ist mir nicht wichtig"; -$a->strings["Ask me"] = "Frag mich"; -$a->strings["An invitation is required."] = "Du benötigst eine Einladung."; -$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden."; -$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL"; -$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein."; -$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen."; -$a->strings["Name too short."] = "Der Name ist zu kurz."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein."; -$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."; -$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse."; -$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen."; -$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."; -$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für deine Registrierung auf %2\$s. Dein Account wurde eingerichtet."; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5$\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite)\n\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst, das erleichtert es Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser angaben ist nötigg.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %2\$s."; -$a->strings["Registration details for %s"] = "Details der Registration von %s"; -$a->strings["Visible to everybody"] = "Für jeden sichtbar"; -$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet."; -$a->strings["Private Message"] = "Private Nachricht"; -$a->strings["Edit"] = "Bearbeiten"; -$a->strings["save to folder"] = "In Ordner speichern"; -$a->strings["add star"] = "markieren"; -$a->strings["remove star"] = "Markierung entfernen"; -$a->strings["toggle star status"] = "Markierung umschalten"; -$a->strings["starred"] = "markiert"; -$a->strings["ignore thread"] = "Thread ignorieren"; -$a->strings["unignore thread"] = "Thread nicht mehr ignorieren"; -$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten"; -$a->strings["ignored"] = "Ignoriert"; -$a->strings["add tag"] = "Tag hinzufügen"; -$a->strings["I like this (toggle)"] = "Ich mag das (toggle)"; -$a->strings["like"] = "mag ich"; -$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)"; -$a->strings["dislike"] = "mag ich nicht"; -$a->strings["Share this"] = "Weitersagen"; -$a->strings["share"] = "Teilen"; -$a->strings["to"] = "zu"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; -$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; -$a->strings["%d comment"] = array( - 0 => "%d Kommentar", - 1 => "%d Kommentare", -); -$a->strings["This is you"] = "Das bist du"; -$a->strings["Bold"] = "Fett"; -$a->strings["Italic"] = "Kursiv"; -$a->strings["Underline"] = "Unterstrichen"; -$a->strings["Quote"] = "Zitat"; -$a->strings["Code"] = "Code"; -$a->strings["Image"] = "Bild"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Item not available."] = "Beitrag nicht verfügbar."; -$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden."; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."; -$a->strings["No recipient selected."] = "Kein Empfänger gewählt."; -$a->strings["Unable to check your home location."] = "Konnte deinen Heimatort nicht bestimmen."; -$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden."; -$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen."; -$a->strings["Message sent."] = "Nachricht gesendet."; -$a->strings["No recipient."] = "Kein Empfänger."; -$a->strings["Send Private Message"] = "Private Nachricht senden"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."; -$a->strings["To:"] = "An:"; -$a->strings["Subject:"] = "Betreff:"; -$a->strings["Your message:"] = "Deine Nachricht:"; -$a->strings["Group created."] = "Gruppe erstellt."; -$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen."; -$a->strings["Group not found."] = "Gruppe nicht gefunden."; -$a->strings["Group name changed."] = "Gruppenname geändert."; -$a->strings["Save Group"] = "Gruppe speichern"; -$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen."; -$a->strings["Group Name: "] = "Gruppenname:"; -$a->strings["Group removed."] = "Gruppe entfernt."; -$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen."; -$a->strings["Group Editor"] = "Gruppeneditor"; -$a->strings["Members"] = "Mitglieder"; -$a->strings["All Contacts"] = "Alle Kontakte"; -$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"; -$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden."; -$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."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!"; -$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager"; -$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite"; -$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; -$a->strings["Remove"] = "Entfernen"; -$a->strings["Add"] = "Hinzufügen"; -$a->strings["No entries."] = "Keine Einträge."; +$a->strings["View Album"] = "Album betrachten"; +$a->strings["Recent Videos"] = "Neueste Videos"; +$a->strings["Upload New Videos"] = "Neues Video hochladen"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt"; +$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet."; +$a->strings["Suggest Friends"] = "Kontakte vorschlagen"; +$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor"; +$a->strings["No valid account found."] = "Kein gültiges Konto gefunden."; +$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen deines Passworts gesteööt\nworden. Um diese Anfrage zu verifizieren folge bitte dem unten stehenden\nLink oder kopiere ihn und füge ihn in die Addressleiste deines Browsers ein.\n\nSolltest du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nEmail bitte.\n\nDein Passwort wird nicht geändern solange wir nicht verifiziert haben, dass\ndu diese Änderung angefragt hast."; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm deine Identität zu verifizieren folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere Email mit deinem neuen Passwort erhalten. Sobald du dich\nangemeldet hast, kannst du dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s"; +$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."; +$a->strings["Password Reset"] = "Passwort zurücksetzen"; +$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt."; +$a->strings["Your new password is"] = "Dein neues Passwort lautet"; +$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere dein neues Passwort - und dann"; +$a->strings["click here to login"] = "hier klicken, um dich anzumelden"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Du kannst das Passwort in den Einstellungen ändern, sobald du dich erfolgreich angemeldet hast."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nHallo %1\$s,\n\ndein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere dein Passwort zu etwas, das du dir leicht merken kannst)."; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann, und sollte, in den Kontoeinstellungen nach der Anmeldung geändert werden."; +$a->strings["Your password has been changed at %s"] = "Auf %s wurde dein Passwort geändert"; +$a->strings["Forgot your Password?"] = "Hast du dein Passwort vergessen?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet."; +$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:"; +$a->strings["Reset"] = "Zurücksetzen"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht"; +$a->strings["{0} wants to be your friend"] = "{0} möchte mit dir in Kontakt treten"; +$a->strings["{0} sent you a message"] = "{0} schickte dir eine Nachricht"; +$a->strings["{0} requested registration"] = "{0} möchte sich registrieren"; +$a->strings["{0} commented %s's post"] = "{0} kommentierte einen Beitrag von %s"; +$a->strings["{0} liked %s's post"] = "{0} mag %ss Beitrag"; +$a->strings["{0} disliked %s's post"] = "{0} mag %ss Beitrag nicht"; +$a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet"; +$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"; +$a->strings["{0} mentioned you in a post"] = "{0} hat dich in einem Beitrag erwähnt"; +$a->strings["No contacts."] = "Keine Kontakte."; +$a->strings["View Contacts"] = "Kontakte anzeigen"; $a->strings["Invalid request identifier."] = "Invalid request identifier."; $a->strings["Discard"] = "Verwerfen"; -$a->strings["Ignore"] = "Ignorieren"; $a->strings["System"] = "System"; +$a->strings["Network"] = "Netzwerk"; $a->strings["Personal"] = "Persönlich"; +$a->strings["Home"] = "Pinnwand"; +$a->strings["Introductions"] = "Kontaktanfragen"; $a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen"; $a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen"; $a->strings["Notification type: "] = "Benachrichtigungstyp: "; $a->strings["Friend Suggestion"] = "Kontaktvorschlag"; $a->strings["suggested by %s"] = "vorgeschlagen von %s"; -$a->strings["Hide this contact from others"] = "Verberge diesen Kontakt vor anderen"; $a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden"; $a->strings["if applicable"] = "falls anwendbar"; $a->strings["Approve"] = "Genehmigen"; @@ -754,6 +299,7 @@ $a->strings["Fan/Admirer"] = "Fan/Verehrer"; $a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage"; $a->strings["New Follower"] = "Neuer Bewunderer"; $a->strings["No introductions."] = "Keine Kontaktanfragen."; +$a->strings["Notifications"] = "Benachrichtigungen"; $a->strings["%s liked %s's post"] = "%s mag %ss Beitrag"; $a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht"; $a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet"; @@ -767,350 +313,88 @@ $a->strings["No more personal notifications."] = "Keine weiteren persönlichen B $a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen"; $a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen"; $a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen"; -$a->strings["No profile"] = "Kein Profil"; -$a->strings["everybody"] = "jeder"; -$a->strings["Account"] = "Nutzerkonto"; -$a->strings["Additional features"] = "Zusätzliche Features"; -$a->strings["Display"] = "Anzeige"; -$a->strings["Social Networks"] = "Soziale Netzwerke"; -$a->strings["Plugins"] = "Plugins"; -$a->strings["Connected apps"] = "Verbundene Programme"; -$a->strings["Export personal data"] = "Persönliche Daten exportieren"; -$a->strings["Remove account"] = "Konto löschen"; -$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!"; -$a->strings["Update"] = "Aktualisierungen"; -$a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."; -$a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet."; -$a->strings["Features updated"] = "Features aktualisiert"; -$a->strings["Relocate message has been send to your contacts"] = "Die Umzugsbenachrichtigung wurde an deine Kontakte versendet."; -$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."; -$a->strings["Wrong password."] = "Falsches Passwort."; -$a->strings["Password changed."] = "Passwort geändert."; -$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."; -$a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen."; -$a->strings[" Name too short."] = " Name ist zu kurz."; -$a->strings["Wrong Password"] = "Falsches Passwort"; -$a->strings[" Not valid email."] = " Keine gültige E-Mail."; -$a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. "; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."; -$a->strings["Settings updated."] = "Einstellungen aktualisiert."; -$a->strings["Add application"] = "Programm hinzufügen"; -$a->strings["Save Settings"] = "Einstellungen speichern"; -$a->strings["Name"] = "Name"; -$a->strings["Consumer Key"] = "Consumer Key"; -$a->strings["Consumer Secret"] = "Consumer Secret"; -$a->strings["Redirect"] = "Umleiten"; -$a->strings["Icon url"] = "Icon URL"; -$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten."; -$a->strings["Connected Apps"] = "Verbundene Programme"; -$a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit"; -$a->strings["No name"] = "Kein Name"; -$a->strings["Remove authorization"] = "Autorisierung entziehen"; -$a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert"; -$a->strings["Plugin Settings"] = "Plugin-Einstellungen"; -$a->strings["Off"] = "Aus"; -$a->strings["On"] = "An"; -$a->strings["Additional Features"] = "Zusätzliche Features"; -$a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s"; -$a->strings["enabled"] = "eingeschaltet"; -$a->strings["disabled"] = "ausgeschaltet"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert."; -$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an."; -$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail Check"; -$a->strings["IMAP server name:"] = "IMAP-Server-Name:"; -$a->strings["IMAP port:"] = "IMAP-Port:"; -$a->strings["Security:"] = "Sicherheit:"; -$a->strings["None"] = "Keine"; -$a->strings["Email login name:"] = "E-Mail-Login-Name:"; -$a->strings["Email password:"] = "E-Mail-Passwort:"; -$a->strings["Reply-to address:"] = "Reply-to Adresse:"; -$a->strings["Send public posts to all email contacts:"] = "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"; -$a->strings["Action after import:"] = "Aktion nach Import:"; -$a->strings["Mark as seen"] = "Als gelesen markieren"; -$a->strings["Move to folder"] = "In einen Ordner verschieben"; -$a->strings["Move to folder:"] = "In diesen Ordner verschieben:"; -$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden."; -$a->strings["Display Settings"] = "Anzeige-Einstellungen"; -$a->strings["Display Theme:"] = "Theme:"; -$a->strings["Mobile Theme:"] = "Mobiles Theme"; -$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimal 10 Sekunden, kein Maximum"; -$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "; -$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"; -$a->strings["Don't show emoticons"] = "Keine Smilies anzeigen"; -$a->strings["Don't show notices"] = "Info-Popups nicht anzeigen"; -$a->strings["Infinite scroll"] = "Endloses Scrollen"; -$a->strings["Automatic updates only at the top of the network page"] = "Automatische Updates nur, wenn du oben auf der Netzwerkseite bist."; -$a->strings["User Types"] = "Nutzer Art"; -$a->strings["Community Types"] = "Gemeinschafts Art"; -$a->strings["Normal Account Page"] = "Normales Konto"; -$a->strings["This account is a normal personal profile"] = "Dieses Konto ist ein normales persönliches Profil"; -$a->strings["Soapbox Page"] = "Marktschreier-Konto"; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"; -$a->strings["Community Forum/Celebrity Account"] = "Forum/Promi-Konto"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"; -$a->strings["Automatic Friend Page"] = "Automatische Freunde Seite"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert"; -$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]"; -$a->strings["Private forum - approved members only"] = "Privates Forum, nur für Mitglieder"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."; -$a->strings["Publish your default profile in your local site directory?"] = "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"; -$a->strings["No"] = "Nein"; -$a->strings["Publish your default profile in the global social directory?"] = "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"; -$a->strings["Allow friends to post to your profile page?"] = "Dürfen deine Kontakte auf deine Pinnwand schreiben?"; -$a->strings["Allow friends to tag your posts?"] = "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"; -$a->strings["Permit unknown people to send you private mail?"] = "Dürfen dir Unbekannte private Nachrichten schicken?"; -$a->strings["Profile is not published."] = "Profil ist nicht veröffentlicht."; -$a->strings["or"] = "oder"; -$a->strings["Your Identity Address is"] = "Die Adresse deines Profils lautet:"; -$a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."; -$a->strings["Advanced expiration settings"] = "Erweiterte Verfallseinstellungen"; -$a->strings["Advanced Expiration"] = "Erweitertes Verfallen"; -$a->strings["Expire posts:"] = "Beiträge verfallen lassen:"; -$a->strings["Expire personal notes:"] = "Persönliche Notizen verfallen lassen:"; -$a->strings["Expire starred posts:"] = "Markierte Beiträge verfallen lassen:"; -$a->strings["Expire photos:"] = "Fotos verfallen lassen:"; -$a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:"; -$a->strings["Account Settings"] = "Kontoeinstellungen"; -$a->strings["Password Settings"] = "Passwort-Einstellungen"; -$a->strings["New Password:"] = "Neues Passwort:"; -$a->strings["Confirm:"] = "Bestätigen:"; -$a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer du willst das Passwort ändern"; -$a->strings["Current Password:"] = "Aktuelles Passwort:"; -$a->strings["Your current password to confirm the changes"] = "Dein aktuelles Passwort um die Änderungen zu bestätigen"; -$a->strings["Password:"] = "Passwort:"; -$a->strings["Basic Settings"] = "Grundeinstellungen"; -$a->strings["Email Address:"] = "E-Mail-Adresse:"; -$a->strings["Your Timezone:"] = "Deine Zeitzone:"; -$a->strings["Default Post Location:"] = "Standardstandort:"; -$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:"; -$a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen"; -$a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschaftsanfragen/Tag:"; -$a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)"; -$a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge"; -$a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)"; -$a->strings["Show to Groups"] = "Zeige den Gruppen"; -$a->strings["Show to Contacts"] = "Zeige den Kontakten"; -$a->strings["Default Private Post"] = "Privater Standardbeitrag"; -$a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag"; -$a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge"; -$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"; -$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen"; -$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:"; -$a->strings["accepting a friend request"] = "– du eine Kontaktanfrage akzeptierst"; -$a->strings["joining a forum/community"] = "– du einem Forum/einer Gemeinschaftsseite beitrittst"; -$a->strings["making an interesting profile change"] = "– du eine interessante Änderung an deinem Profil durchführst"; -$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:"; -$a->strings["You receive an introduction"] = "– du eine Kontaktanfrage erhältst"; -$a->strings["Your introductions are confirmed"] = "– eine deiner Kontaktanfragen akzeptiert wurde"; -$a->strings["Someone writes on your profile wall"] = "– jemand etwas auf deine Pinnwand schreibt"; -$a->strings["Someone writes a followup comment"] = "– jemand auch einen Kommentar verfasst"; -$a->strings["You receive a private message"] = "– du eine private Nachricht erhältst"; -$a->strings["You receive a friend suggestion"] = "– du eine Empfehlung erhältst"; -$a->strings["You are tagged in a post"] = "– du in einem Beitrag erwähnt wirst"; -$a->strings["You are poked/prodded/etc. in a post"] = "– du von jemandem angestupst oder sonstwie behandelt wirst"; -$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen"; -$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:"; -$a->strings["Relocate"] = "Umziehen"; -$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn du dein Profil von einem anderen Server umgezogen hast und einige deiner Kontakte deine Beiträge nicht erhalten, verwende diesen Button."; -$a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden"; -$a->strings["Common Friends"] = "Gemeinsame Freunde"; -$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; -$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar."; -$a->strings["Visible to:"] = "Sichtbar für:"; -$a->strings["%d contact edited."] = array( - 0 => "%d Kontakt bearbeitet.", - 1 => "%d Kontakte bearbeitet", +$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"; +$a->strings["Source input: "] = "Originaltext:"; +$a->strings["bb2html (raw HTML): "] = "bb2html (reines 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): "] = "Originaltext (Diaspora Format): "; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Nothing new here"] = "Keine Neuigkeiten"; +$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen"; +$a->strings["New Message"] = "Neue Nachricht"; +$a->strings["No recipient selected."] = "Kein Empfänger gewählt."; +$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden."; +$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden."; +$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen."; +$a->strings["Message sent."] = "Nachricht gesendet."; +$a->strings["Messages"] = "Nachrichten"; +$a->strings["Do you really want to delete this message?"] = "Möchtest du wirklich diese Nachricht löschen?"; +$a->strings["Message deleted."] = "Nachricht gelöscht."; +$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; +$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:"; +$a->strings["Send Private Message"] = "Private Nachricht senden"; +$a->strings["To:"] = "An:"; +$a->strings["Subject:"] = "Betreff:"; +$a->strings["Your message:"] = "Deine Nachricht:"; +$a->strings["Upload photo"] = "Foto hochladen"; +$a->strings["Insert web link"] = "Einen Link einfügen"; +$a->strings["Please wait"] = "Bitte warten"; +$a->strings["No messages."] = "Keine Nachrichten."; +$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s"; +$a->strings["You and %s"] = "Du und %s"; +$a->strings["%s and You"] = "%s und du"; +$a->strings["Delete conversation"] = "Unterhaltung löschen"; +$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d Nachricht", + 1 => "%d Nachrichten", ); -$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen."; -$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden."; -$a->strings["Contact updated."] = "Kontakt aktualisiert."; -$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen."; -$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert"; -$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben"; -$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert"; -$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert"; -$a->strings["Contact has been archived"] = "Kontakt wurde archiviert"; -$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt"; -$a->strings["Do you really want to delete this contact?"] = "Möchtest du wirklich diesen Kontakt löschen?"; -$a->strings["Contact has been removed."] = "Kontakt wurde entfernt."; -$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft"; -$a->strings["You are sharing with %s"] = "Du teilst mit %s"; -$a->strings["%s is sharing with you"] = "%s teilt mit Dir"; -$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar."; -$a->strings["Never"] = "Niemals"; -$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)"; -$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)"; -$a->strings["Suggest friends"] = "Kontakte vorschlagen"; -$a->strings["Network type: %s"] = "Netzwerktyp: %s"; -$a->strings["View all contacts"] = "Alle Kontakte anzeigen"; -$a->strings["Unblock"] = "Entsperren"; -$a->strings["Block"] = "Sperren"; -$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten"; -$a->strings["Unignore"] = "Ignorieren aufheben"; -$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten"; -$a->strings["Unarchive"] = "Aus Archiv zurückholen"; -$a->strings["Archive"] = "Archivieren"; -$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten"; -$a->strings["Repair"] = "Reparieren"; -$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen"; -$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!"; -$a->strings["Contact Editor"] = "Kontakt Editor"; -$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft."; -$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen"; -$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten"; -$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]"; -$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten"; -$a->strings["Ignore contact"] = "Ignoriere den Kontakt"; -$a->strings["Repair URL settings"] = "URL Einstellungen reparieren"; -$a->strings["View conversations"] = "Unterhaltungen anzeigen"; -$a->strings["Delete contact"] = "Lösche den Kontakt"; -$a->strings["Last update:"] = "letzte Aktualisierung:"; -$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; -$a->strings["Update now"] = "Jetzt aktualisieren"; -$a->strings["Currently blocked"] = "Derzeit geblockt"; -$a->strings["Currently ignored"] = "Derzeit ignoriert"; -$a->strings["Currently archived"] = "Momentan archiviert"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein"; -$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen"; -$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung wann immer dieser Kontakt einen neuen Beitrag schreibt."; -$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen"; -$a->strings["Suggestions"] = "Kontaktvorschläge"; -$a->strings["Suggest potential friends"] = "Freunde vorschlagen"; -$a->strings["Show all contacts"] = "Alle Kontakte anzeigen"; -$a->strings["Unblocked"] = "Ungeblockt"; -$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen"; -$a->strings["Blocked"] = "Geblockt"; -$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen"; -$a->strings["Ignored"] = "Ignoriert"; -$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen"; -$a->strings["Archived"] = "Archiviert"; -$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen"; -$a->strings["Hidden"] = "Verborgen"; -$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen"; -$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft"; -$a->strings["is a fan of yours"] = "ist ein Fan von dir"; -$a->strings["you are a fan of"] = "du bist Fan von"; -$a->strings["Edit contact"] = "Kontakt bearbeiten"; -$a->strings["Search your contacts"] = "Suche in deinen Kontakten"; -$a->strings["Finding: "] = "Funde: "; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."; -$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?"; -$a->strings["File exceeds size limit of %d"] = "Die Datei ist größer als das erlaubte Limit von %d"; -$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen."; +$a->strings["Message not available."] = "Nachricht nicht verfügbar."; +$a->strings["Delete message"] = "Nachricht löschen"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst du auf der Profilseite des Absenders antworten."; +$a->strings["Send Reply"] = "Antwort senden"; $a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"; -$a->strings["Export account"] = "Account exportieren"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere deine Accountinformationen und Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."; -$a->strings["Export all"] = "Alles exportieren"; -$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)"] = "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Fotos werden nicht exportiert)."; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."; -$a->strings["Failed to send email message. Here is the message that failed."] = "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte."; -$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; -$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."; -$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): "; -$a->strings["Include your profile in member directory?"] = "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"; -$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; -$a->strings["Your invitation ID: "] = "ID deiner Einladung: "; -$a->strings["Registration"] = "Registrierung"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): "; -$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: "; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird 'spitzname@\$sitename' sein."; -$a->strings["Choose a nickname: "] = "Spitznamen wählen: "; -$a->strings["Import"] = "Import"; -$a->strings["Import your profile to this friendica instance"] = "Importiere dein Profil auf diese Friendica Instanz"; -$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht."; -$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet"; -$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt."; -$a->strings["Tips for New Members"] = "Tipps für neue Nutzer"; -$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert."; -$a->strings["No videos selected"] = "Keine Videos ausgewählt"; -$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt."; -$a->strings["View Album"] = "Album betrachten"; -$a->strings["Recent Videos"] = "Neueste Videos"; -$a->strings["Upload New Videos"] = "Neues Video hochladen"; -$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast."; -$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: "; -$a->strings["Item not found"] = "Beitrag nicht gefunden"; -$a->strings["Edit post"] = "Beitrag bearbeiten"; +$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt."; +$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren."; +$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button deines Browsers jetzt, wenn du dir unsicher bist, was du tun willst."; +$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; +$a->strings["No mirroring"] = "Kein Spiegeln"; +$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge"; +$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge"; +$a->strings["Name"] = "Name"; +$a->strings["Account Nickname"] = "Konto-Spitzname"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname"; +$a->strings["Account URL"] = "Konto-URL"; +$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen"; +$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen"; +$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen"; +$a->strings["Poll/Feed URL"] = "Pull/Feed-URL"; +$a->strings["New photo from this URL"] = "Neues Foto von dieser URL"; +$a->strings["Remote Self"] = "Entfernte Konten"; +$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all deine Kontakte zu senden."; +$a->strings["Access denied."] = "Zugriff verweigert."; $a->strings["People Search"] = "Personensuche"; $a->strings["No matches"] = "Keine Übereinstimmungen"; -$a->strings["Account approved."] = "Konto freigegeben."; -$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen"; -$a->strings["Please login."] = "Bitte melde dich an."; -$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."; -$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden", - 1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden", -); -$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen."; -$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler."; -$a->strings["Profile unavailable."] = "Profil nicht verfügbar."; -$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten."; -$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."; -$a->strings["Invalid locator"] = "Ungültiger Locator"; -$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse."; -$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."; -$a->strings["Unable to resolve your name at the provided location."] = "Konnte deinen Namen an der angegebenen Stelle nicht finden."; -$a->strings["You have already introduced yourself here."] = "Du hast dich hier bereits vorgestellt."; -$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob du bereits mit %s befreundet bist."; -$a->strings["Invalid profile URL."] = "Ungültige Profil-URL."; -$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet."; -$a->strings["Please login to confirm introduction."] = "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an."; -$a->strings["Hide this contact"] = "Verberge diesen Kontakt"; -$a->strings["Welcome home %s."] = "Willkommen zurück %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige deine Kontaktanfrage bei %s."; -$a->strings["Confirm"] = "Bestätigen"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:"; -$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."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten."; -$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:"; -$a->strings["Does %s know you?"] = "Kennt %s dich?"; -$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:"; -$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."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste."; -$a->strings["Your Identity Address:"] = "Adresse deines Profils:"; -$a->strings["Submit Request"] = "Anfrage abschicken"; +$a->strings["Photos"] = "Bilder"; $a->strings["Files"] = "Dateien"; -$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren"; -$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"; -$a->strings["Please login to continue."] = "Bitte melde dich an um fortzufahren."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?"; -$a->strings["Do you really want to delete this suggestion?"] = "Möchtest du wirklich diese Empfehlung löschen?"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."; -$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen"; $a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind"; -$a->strings["Contact not found."] = "Kontakt nicht gefunden."; -$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet."; -$a->strings["Suggest Friends"] = "Kontakte vorschlagen"; -$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor"; -$a->strings["link"] = "Link"; -$a->strings["No contacts."] = "Keine Kontakte."; $a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert."; $a->strings["Site"] = "Seite"; $a->strings["Users"] = "Nutzer"; +$a->strings["Plugins"] = "Plugins"; $a->strings["Themes"] = "Themen"; $a->strings["DB updates"] = "DB Updates"; $a->strings["Logs"] = "Protokolle"; +$a->strings["Admin"] = "Administration"; $a->strings["Plugin Features"] = "Plugin Features"; $a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten"; $a->strings["Normal Account"] = "Normales Konto"; @@ -1128,7 +412,12 @@ $a->strings["Version"] = "Version"; $a->strings["Active plugins"] = "Aktive Plugins"; $a->strings["Can not parse base url. Must have at least ://"] = "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen"; $a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert."; +$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden."; $a->strings["At post arrival"] = "Beim Empfang von Nachrichten"; +$a->strings["Frequently"] = "immer wieder"; +$a->strings["Hourly"] = "Stündlich"; +$a->strings["Twice daily"] = "Zweimal täglich"; +$a->strings["Daily"] = "Täglich"; $a->strings["Multi user instance"] = "Mehrbenutzer Instanz"; $a->strings["Closed"] = "Geschlossen"; $a->strings["Requires approval"] = "Bedarf der Zustimmung"; @@ -1136,12 +425,15 @@ $a->strings["Open"] = "Offen"; $a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"; $a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen"; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"; +$a->strings["Save Settings"] = "Einstellungen speichern"; +$a->strings["Registration"] = "Registrierung"; $a->strings["File upload"] = "Datei hochladen"; $a->strings["Policies"] = "Regeln"; $a->strings["Advanced"] = "Erweitert"; $a->strings["Performance"] = "Performance"; $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."; $a->strings["Site name"] = "Seitenname"; +$a->strings["Host name"] = "Host Name"; $a->strings["Banner/Logo"] = "Banner/Logo"; $a->strings["Additional Info"] = "Zusätzliche Informationen"; $a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Für öffentliche Server kannst du hier zusätzliche Informationen angeben, die dann auf dir.friendica.com/siteinfo angezeigt werden."; @@ -1152,6 +444,8 @@ $a->strings["Mobile system theme"] = "Systemweites mobiles Theme"; $a->strings["Theme for mobile devices"] = "Thema für mobile Geräte"; $a->strings["SSL link policy"] = "Regeln für SSL Links"; $a->strings["Determines whether generated links should be forced to use SSL"] = "Bestimmt, ob generierte Links SSL verwenden müssen"; +$a->strings["Force SSL"] = "Erzwinge SSL"; +$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife."; $a->strings["Old style 'Share'"] = "Altes \"Teilen\" Element"; $a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen."; $a->strings["Hide help entry from navigation menu"] = "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"; @@ -1238,8 +532,8 @@ $a->strings["Base path to installation"] = "Basis-Pfad zur Installation"; $a->strings["Disable picture proxy"] = "Bilder Proxy deaktivieren"; $a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Der Proxy für Bilder verbessert die Leitung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen."; $a->strings["New base url"] = "Neue Basis-URL"; -$a->strings["Enable noscrape"] = "Noscrape aktivieren"; -$a->strings["The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping."] = "Das noscrape Feature beschleunigt Verzeichnis einsendungen indem JSON Daten gesendet werden anstelle vom analysieren der HTML Struktur."; +$a->strings["Disable noscrape"] = "Noscrape deaktivieren"; +$a->strings["The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping. Disabling it will cause higher load on your server and the directory server."] = "Das noscrape Feature beschleunigt Verzeichnis einsendungen indem JSON Daten gesendet werden anstelle vom analysieren der HTML Struktur. Wird es deaktiviert, wird mehr Last auf deinem Server und den Verzichnis Servern verursacht."; $a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert"; $a->strings["Database structure update %s was successfully applied."] = "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."; $a->strings["Executing of database structure update %s failed with error: %s"] = "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s"; @@ -1254,7 +548,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)"] = "Als erfolgreich markieren (falls das Update manuell installiert wurde)"; $a->strings["Attempt to execute this update step automatically"] = "Versuchen, diesen Schritt automatisch auszuführen"; $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\nHallo %1\$s,\n\nauf %2\$s wurde ein Account für dich angelegt."; -$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%1\$s\n\tBenutzernamename:\t%2\$s\n\tPasswort:\t%3\$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite)\n\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst, das erleichtert es Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser angaben ist nötigg.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %4\$s."; +$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%1\$s\n\tBenutzernamename:\t%2\$s\n\tPasswort:\t%3\$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %4\$s."; +$a->strings["Registration details for %s"] = "Details der Registration von %s"; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s Benutzer geblockt/freigegeben", 1 => "%s Benutzer geblockt/freigegeben", @@ -1271,6 +566,7 @@ $a->strings["select all"] = "Alle auswählen"; $a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf deine Bestätigung warten"; $a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung"; $a->strings["Request date"] = "Anfragedatum"; +$a->strings["Email"] = "E-Mail"; $a->strings["No registrations."] = "Keine Neuanmeldungen."; $a->strings["Deny"] = "Verwehren"; $a->strings["Site admin"] = "Seitenadministrator"; @@ -1280,6 +576,7 @@ $a->strings["Register date"] = "Anmeldedatum"; $a->strings["Last login"] = "Letzte Anmeldung"; $a->strings["Last item"] = "Letzter Beitrag"; $a->strings["Deleted since"] = "Gelöscht seit"; +$a->strings["Account"] = "Nutzerkonto"; $a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?"; $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?"] = "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist du sicher?"; $a->strings["Name of the new user."] = "Name des neuen Nutzers"; @@ -1308,14 +605,10 @@ $a->strings["FTP Host"] = "FTP Host"; $a->strings["FTP Path"] = "FTP Pfad"; $a->strings["FTP User"] = "FTP Nutzername"; $a->strings["FTP Password"] = "FTP Passwort"; -$a->strings["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d"; -$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten."; -$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert."; -$a->strings["Welcome to %s"] = "Willkommen zu %s"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."; $a->strings["Search Results For:"] = "Suchergebnisse für:"; $a->strings["Remove term"] = "Begriff entfernen"; +$a->strings["Saved Searches"] = "Gespeicherte Suchen"; +$a->strings["add"] = "hinzufügen"; $a->strings["Commented Order"] = "Neueste Kommentare"; $a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren"; $a->strings["Posted Order"] = "Neueste Beiträge"; @@ -1338,131 +631,13 @@ $a->strings["Group: "] = "Gruppe: "; $a->strings["Contact: "] = "Kontakt: "; $a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."; $a->strings["Invalid contact."] = "Ungültiger Kontakt."; -$a->strings["- select -"] = "- auswählen -"; -$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version"; -$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren."; -$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"; -$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps"; -$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert"; -$a->strings["Applications"] = "Anwendungen"; -$a->strings["No installed applications."] = "Keine Applikationen installiert."; -$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; -$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar"; -$a->strings["Album not found."] = "Album nicht gefunden."; -$a->strings["Delete Album"] = "Album löschen"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?"; -$a->strings["Delete Photo"] = "Foto löschen"; -$a->strings["Do you really want to delete this photo?"] = "Möchtest du wirklich dieses Foto löschen?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt"; -$a->strings["a photo"] = "einem Foto"; -$a->strings["Image exceeds size limit of "] = "Die Bildgröße übersteigt das Limit von "; -$a->strings["Image file is empty."] = "Bilddatei ist leer."; -$a->strings["No photos selected"] = "Keine Bilder ausgewählt"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."; -$a->strings["Upload Photos"] = "Bilder hochladen"; -$a->strings["New album name: "] = "Name des neuen Albums: "; -$a->strings["or existing album name: "] = "oder existierender Albumname: "; -$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen"; -$a->strings["Permissions"] = "Berechtigungen"; -$a->strings["Private Photo"] = "Privates Foto"; -$a->strings["Public Photo"] = "Öffentliches Foto"; -$a->strings["Edit Album"] = "Album bearbeiten"; -$a->strings["Show Newest First"] = "Zeige neueste zuerst"; -$a->strings["Show Oldest First"] = "Zeige älteste zuerst"; -$a->strings["View Photo"] = "Foto betrachten"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."; -$a->strings["Photo not available"] = "Foto nicht verfügbar"; -$a->strings["View photo"] = "Fotos ansehen"; -$a->strings["Edit photo"] = "Foto bearbeiten"; -$a->strings["Use as profile photo"] = "Als Profilbild verwenden"; -$a->strings["View Full Size"] = "Betrachte Originalgröße"; -$a->strings["Tags: "] = "Tags: "; -$a->strings["[Remove any tag]"] = "[Tag entfernen]"; -$a->strings["Rotate CW (right)"] = "Drehen US (rechts)"; -$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; -$a->strings["New album name"] = "Name des neuen Albums"; -$a->strings["Caption"] = "Bildunterschrift"; -$a->strings["Add a Tag"] = "Tag hinzufügen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Private photo"] = "Privates Foto"; -$a->strings["Public photo"] = "Öffentliches Foto"; -$a->strings["Recent Photos"] = "Neueste Fotos"; -$a->strings["Contact added"] = "Kontakt hinzugefügt"; -$a->strings["Move account"] = "Account umziehen"; -$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren."; -$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 musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"; -$a->strings["Account file"] = "Account Datei"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""; -$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht."; -$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse."; -$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."; -$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen."; -$a->strings["%d message sent."] = array( - 0 => "%d Nachricht gesendet.", - 1 => "%d Nachrichten gesendet.", -); -$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen"; -$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."] = "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen 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."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."; -$a->strings["Send invitations"] = "Einladungen senden"; -$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:"; -$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 bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"; -$a->strings["Access denied."] = "Zugriff verweigert."; -$a->strings["No valid account found."] = "Kein gültiges Konto gefunden."; -$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen deines Passworts gesteööt\nworden. Um diese Anfrage zu verifizieren folge bitte dem unten stehenden\nLink oder kopiere ihn und füge ihn in die Addressleiste deines Browsers ein.\n\nSolltest du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nEmail bitte.\n\nDein Passwort wird nicht geändern solange wir nicht verifiziert haben, dass\ndu diese Änderung angefragt hast."; -$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm deine Identität zu verifizieren folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere Email mit deinem neuen Passwort erhalten. Sobald du dich\nangemeldet hast, kannst du dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s"; -$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."; -$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt."; -$a->strings["Your new password is"] = "Dein neues Passwort lautet"; -$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere dein neues Passwort - und dann"; -$a->strings["click here to login"] = "hier klicken, um dich anzumelden"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Du kannst das Passwort in den Einstellungen ändern, sobald du dich erfolgreich angemeldet hast."; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nHallo %1\$s,\n\ndein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere dein Passwort zu etwas, das du dir leicht merken kannst)."; -$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann, und sollte, in den Kontoeinstellungen nach der Anmeldung geändert werden."; -$a->strings["Your password has been changed at %s"] = "Auf %s wurde dein Passwort geändert"; -$a->strings["Forgot your Password?"] = "Hast du dein Passwort vergessen?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet."; -$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:"; -$a->strings["Reset"] = "Zurücksetzen"; -$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"; -$a->strings["Source input: "] = "Originaltext:"; -$a->strings["bb2html (raw HTML): "] = "bb2html (reines 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): "] = "Originaltext (Diaspora Format): "; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Tag removed"] = "Tag entfernt"; -$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen"; -$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: "; -$a->strings["Remove My Account"] = "Konto löschen"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."; -$a->strings["Please enter your password for verification:"] = "Bitte gib dein Passwort zur Verifikation ein:"; -$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner."; -$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit"; -$a->strings["Visible To"] = "Sichtbar für"; -$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)"; -$a->strings["Profile Match"] = "Profilübereinstimmungen"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu."; -$a->strings["is interested in:"] = "ist interessiert an:"; +$a->strings["Friends of %s"] = "Freunde von %s"; +$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen."; $a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."; $a->strings["l, F j"] = "l, F j"; $a->strings["Edit event"] = "Veranstaltung bearbeiten"; +$a->strings["link to source"] = "Link zum Originalbeitrag"; +$a->strings["Events"] = "Veranstaltungen"; $a->strings["Create New Event"] = "Neue Veranstaltung erstellen"; $a->strings["Previous"] = "Vorherige"; $a->strings["Next"] = "Nächste"; @@ -1475,113 +650,53 @@ $a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit i $a->strings["Event Finishes:"] = "Veranstaltungsende:"; $a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen"; $a->strings["Description:"] = "Beschreibung"; +$a->strings["Location:"] = "Ort:"; $a->strings["Title:"] = "Titel:"; $a->strings["Share this event"] = "Veranstaltung teilen"; -$a->strings["{0} wants to be your friend"] = "{0} möchte mit dir in Kontakt treten"; -$a->strings["{0} sent you a message"] = "{0} schickte dir eine Nachricht"; -$a->strings["{0} requested registration"] = "{0} möchte sich registrieren"; -$a->strings["{0} commented %s's post"] = "{0} kommentierte einen Beitrag von %s"; -$a->strings["{0} liked %s's post"] = "{0} mag %ss Beitrag"; -$a->strings["{0} disliked %s's post"] = "{0} mag %ss Beitrag nicht"; -$a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet"; -$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"; -$a->strings["{0} mentioned you in a post"] = "{0} hat dich in einem Beitrag erwähnt"; -$a->strings["Mood"] = "Stimmung"; -$a->strings["Set your current mood and tell your friends"] = "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden"; -$a->strings["No results."] = "Keine Ergebnisse."; -$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden."; -$a->strings["Do you really want to delete this message?"] = "Möchtest du wirklich diese Nachricht löschen?"; -$a->strings["Message deleted."] = "Nachricht gelöscht."; -$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; -$a->strings["No messages."] = "Keine Nachrichten."; -$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s"; -$a->strings["You and %s"] = "Du und %s"; -$a->strings["%s and You"] = "%s und du"; -$a->strings["Delete conversation"] = "Unterhaltung löschen"; -$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d Nachricht", - 1 => "%d Nachrichten", +$a->strings["Select"] = "Auswählen"; +$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten."; +$a->strings["%s from %s"] = "%s von %s"; +$a->strings["View in context"] = "Im Zusammenhang betrachten"; +$a->strings["%d comment"] = array( + 0 => "%d Kommentar", + 1 => "%d Kommentare", ); -$a->strings["Message not available."] = "Nachricht nicht verfügbar."; -$a->strings["Delete message"] = "Nachricht löschen"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst du auf der Profilseite des Absenders antworten."; -$a->strings["Send Reply"] = "Antwort senden"; -$a->strings["Not available."] = "Nicht verfügbar."; -$a->strings["Profile not found."] = "Profil nicht gefunden."; -$a->strings["Profile deleted."] = "Profil gelöscht."; -$a->strings["Profile-"] = "Profil-"; -$a->strings["New profile created."] = "Neues Profil angelegt."; -$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar."; -$a->strings["Profile Name is required."] = "Profilname ist erforderlich."; -$a->strings["Marital Status"] = "Familienstand"; -$a->strings["Romantic Partner"] = "Romanze"; -$a->strings["Likes"] = "Likes"; -$a->strings["Dislikes"] = "Dislikes"; -$a->strings["Work/Employment"] = "Arbeit / Beschäftigung"; -$a->strings["Religion"] = "Religion"; -$a->strings["Political Views"] = "Politische Ansichten"; -$a->strings["Gender"] = "Geschlecht"; -$a->strings["Sexual Preference"] = "Sexuelle Vorlieben"; -$a->strings["Homepage"] = "Webseite"; -$a->strings["Interests"] = "Interessen"; -$a->strings["Address"] = "Adresse"; -$a->strings["Location"] = "Wohnort"; -$a->strings["Profile updated."] = "Profil aktualisiert."; -$a->strings[" and "] = " und "; -$a->strings["public profile"] = "öffentliches Profil"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s geändert auf “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s."; -$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"; -$a->strings["Edit Profile Details"] = "Profil bearbeiten"; -$a->strings["Change Profile Photo"] = "Profilbild ändern"; -$a->strings["View this profile"] = "Dieses Profil anzeigen"; -$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden"; -$a->strings["Clone this profile"] = "Dieses Profil duplizieren"; -$a->strings["Delete this profile"] = "Dieses Profil löschen"; -$a->strings["Basic information"] = "Grundinformationen"; -$a->strings["Profile picture"] = "Profilbild"; -$a->strings["Preferences"] = "Vorlieben"; -$a->strings["Status information"] = "Status Informationen"; -$a->strings["Additional information"] = "Zusätzliche Informationen"; -$a->strings["Upload Profile Photo"] = "Profilbild hochladen"; -$a->strings["Profile Name:"] = "Profilname:"; -$a->strings["Your Full Name:"] = "Dein kompletter Name:"; -$a->strings["Title/Description:"] = "Titel/Beschreibung:"; -$a->strings["Your Gender:"] = "Dein Geschlecht:"; -$a->strings["Birthday (%s):"] = "Geburtstag (%s):"; -$a->strings["Street Address:"] = "Adresse:"; -$a->strings["Locality/City:"] = "Wohnort:"; -$a->strings["Postal/Zip Code:"] = "Postleitzahl:"; -$a->strings["Country:"] = "Land:"; -$a->strings["Region/State:"] = "Region/Bundesstaat:"; -$a->strings[" Marital Status:"] = " Beziehungsstatus:"; -$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Seit [Datum]:"; -$a->strings["Homepage URL:"] = "Adresse der Homepage:"; -$a->strings["Religious Views:"] = "Religiöse Ansichten:"; -$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:"; -$a->strings["Private Keywords:"] = "Private Schlüsselwörter:"; -$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"; -$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von dir …"; -$a->strings["Hobbies/Interests"] = "Hobbies/Interessen"; -$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke"; -$a->strings["Musical interests"] = "Musikalische Interessen"; -$a->strings["Books, literature"] = "Bücher, Literatur"; -$a->strings["Television"] = "Fernsehen"; -$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung"; -$a->strings["Love/romance"] = "Liebe/Romantik"; -$a->strings["Work/employment"] = "Arbeit/Anstellung"; -$a->strings["School/education"] = "Schule/Ausbildung"; -$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Dies ist dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein."; -$a->strings["Age: "] = "Alter: "; -$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile"; +$a->strings["comment"] = array( + 0 => "Kommentar", + 1 => "Kommentare", +); +$a->strings["show more"] = "mehr anzeigen"; +$a->strings["Private Message"] = "Private Nachricht"; +$a->strings["I like this (toggle)"] = "Ich mag das (toggle)"; +$a->strings["like"] = "mag ich"; +$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)"; +$a->strings["dislike"] = "mag ich nicht"; +$a->strings["Share this"] = "Weitersagen"; +$a->strings["share"] = "Teilen"; +$a->strings["This is you"] = "Das bist du"; +$a->strings["Comment"] = "Kommentar"; +$a->strings["Bold"] = "Fett"; +$a->strings["Italic"] = "Kursiv"; +$a->strings["Underline"] = "Unterstrichen"; +$a->strings["Quote"] = "Zitat"; +$a->strings["Code"] = "Code"; +$a->strings["Image"] = "Bild"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Preview"] = "Vorschau"; +$a->strings["Edit"] = "Bearbeiten"; +$a->strings["add star"] = "markieren"; +$a->strings["remove star"] = "Markierung entfernen"; +$a->strings["toggle star status"] = "Markierung umschalten"; +$a->strings["starred"] = "markiert"; +$a->strings["add tag"] = "Tag hinzufügen"; +$a->strings["save to folder"] = "In Ordner speichern"; +$a->strings["to"] = "zu"; +$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; +$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; +$a->strings["Remove My Account"] = "Konto löschen"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."; +$a->strings["Please enter your password for verification:"] = "Bitte gib dein Passwort zur Verifikation ein:"; $a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup"; $a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert."; $a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden."; @@ -1643,114 +758,1023 @@ $a->strings["Url rewrite is working"] = "URL rewrite funktioniert"; $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."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen."; $a->strings["

What next

"] = "

Wie geht es weiter?

"; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."; +$a->strings["Unable to check your home location."] = "Konnte deinen Heimatort nicht bestimmen."; +$a->strings["No recipient."] = "Kein Empfänger."; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."; $a->strings["Help:"] = "Hilfe:"; -$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt."; -$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren."; -$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button deines Browsers jetzt, wenn du dir unsicher bist, was du tun willst."; -$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; -$a->strings["Account Nickname"] = "Konto-Spitzname"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname"; -$a->strings["Account URL"] = "Konto-URL"; -$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen"; -$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen"; -$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen"; -$a->strings["Poll/Feed URL"] = "Pull/Feed-URL"; -$a->strings["New photo from this URL"] = "Neues Foto von dieser URL"; -$a->strings["Remote Self"] = "Entfernte Konten"; -$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all deine Kontakte zu senden."; -$a->strings["No mirroring"] = "Kein Spiegeln"; -$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge"; -$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge"; -$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica"; -$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder"; -$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."] = "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."; -$a->strings["Getting Started"] = "Einstieg"; -$a->strings["Friendica Walk-Through"] = "Friendica Rundgang"; -$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."] = "Auf der Quick Start Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst."; -$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen"; -$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."] = "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."; -$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."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können."; -$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."] = "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust."; -$a->strings["Edit Your Profile"] = "Editiere dein 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."] = "Editiere dein Standard Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils."; -$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe"; -$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."] = "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen."; -$a->strings["Connecting"] = "Verbindungen knüpfen"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Wenn dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten."; -$a->strings["Importing Emails"] = "Emails Importieren"; -$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"] = "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst."; -$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite"; -$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."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein."; -$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis deiner Friendica Instanz"; -$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."] = "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst."; -$a->strings["Finding New People"] = "Neue Leute kennenlernen"; -$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."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."; -$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte"; -$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."] = "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."; -$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?"; -$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 respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."; -$a->strings["Getting Help"] = "Hilfe bekommen"; -$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."; -$a->strings["Poke/Prod"] = "Anstupsen"; -$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen"; -$a->strings["Recipient"] = "Empfänger"; -$a->strings["Choose what you wish to do to recipient"] = "Was willst du mit dem Empfänger machen:"; -$a->strings["Make this post private"] = "Diesen Beitrag privat machen"; -$a->strings["\n\t\tDear $[username],\n\t\t\tYour password has been changed as requested. Please retain this\n\t\tinformation for your records (or change your password immediately to\n\t\tsomething that you will remember).\n\t"] = "\nHallo $[username],\n\ndein Passwort wurde wie angefordert geändert. Bitte bewahre diese Informationen auf (oder ändere dein Passwort augenblicklich in etwas an das du dir merken kannst)."; -$a->strings["Item has been removed."] = "Eintrag wurde entfernt."; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s"; +$a->strings["Help"] = "Hilfe"; +$a->strings["Not Found"] = "Nicht gefunden"; +$a->strings["Page not found."] = "Seite nicht gefunden."; $a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen"; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."; -$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich."; -$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: "; -$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen."; -$a->strings["Remote site reported: "] = "Gegenstelle meldet: "; -$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."; -$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen."; -$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern."; -$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden"; -$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."; -$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."; -$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."; -$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."; -$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für dein Profil konnten nicht gespeichert werden"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten"; -$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden."; -$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen."; -$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."; -$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest."; -$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht."; -$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl."; -$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."; -$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden"; -$a->strings["Upload File:"] = "Datei hochladen:"; -$a->strings["Select a profile:"] = "Profil auswählen:"; -$a->strings["Upload"] = "Hochladen"; -$a->strings["skip this step"] = "diesen Schritt überspringen"; -$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben"; -$a->strings["Crop Image"] = "Bild zurechtschneiden"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."; -$a->strings["Done Editing"] = "Bearbeitung abgeschlossen"; -$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen."; -$a->strings["Friends of %s"] = "Freunde von %s"; -$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen."; -$a->strings["Find on this site"] = "Auf diesem Server suchen"; -$a->strings["Site Directory"] = "Verzeichnis"; -$a->strings["Gender: "] = "Geschlecht:"; -$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein)."; -$a->strings["Time Conversion"] = "Zeitumrechnung"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."; -$a->strings["UTC time: %s"] = "UTC Zeit: %s"; -$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s"; -$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s"; -$a->strings["Please select your timezone:"] = "Bitte wähle deine Zeitzone:"; +$a->strings["Welcome to %s"] = "Willkommen zu %s"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."; +$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?"; +$a->strings["File exceeds size limit of %d"] = "Die Datei ist größer als das erlaubte Limit von %d"; +$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen."; +$a->strings["Profile Match"] = "Profilübereinstimmungen"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu."; +$a->strings["is interested in:"] = "ist interessiert an:"; +$a->strings["Connect"] = "Verbinden"; +$a->strings["link"] = "Link"; +$a->strings["Not available."] = "Nicht verfügbar."; +$a->strings["Community"] = "Gemeinschaft"; +$a->strings["No results."] = "Keine Ergebnisse."; +$a->strings["everybody"] = "jeder"; +$a->strings["Additional features"] = "Zusätzliche Features"; +$a->strings["Display"] = "Anzeige"; +$a->strings["Social Networks"] = "Soziale Netzwerke"; +$a->strings["Delegations"] = "Delegationen"; +$a->strings["Connected apps"] = "Verbundene Programme"; +$a->strings["Export personal data"] = "Persönliche Daten exportieren"; +$a->strings["Remove account"] = "Konto löschen"; +$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!"; +$a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."; +$a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet."; +$a->strings["Features updated"] = "Features aktualisiert"; +$a->strings["Relocate message has been send to your contacts"] = "Die Umzugsbenachrichtigung wurde an deine Kontakte versendet."; +$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."; +$a->strings["Wrong password."] = "Falsches Passwort."; +$a->strings["Password changed."] = "Passwort geändert."; +$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."; +$a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen."; +$a->strings[" Name too short."] = " Name ist zu kurz."; +$a->strings["Wrong Password"] = "Falsches Passwort"; +$a->strings[" Not valid email."] = " Keine gültige E-Mail."; +$a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. "; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."; +$a->strings["Settings updated."] = "Einstellungen aktualisiert."; +$a->strings["Add application"] = "Programm hinzufügen"; +$a->strings["Consumer Key"] = "Consumer Key"; +$a->strings["Consumer Secret"] = "Consumer Secret"; +$a->strings["Redirect"] = "Umleiten"; +$a->strings["Icon url"] = "Icon URL"; +$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten."; +$a->strings["Connected Apps"] = "Verbundene Programme"; +$a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit"; +$a->strings["No name"] = "Kein Name"; +$a->strings["Remove authorization"] = "Autorisierung entziehen"; +$a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert"; +$a->strings["Plugin Settings"] = "Plugin-Einstellungen"; +$a->strings["Off"] = "Aus"; +$a->strings["On"] = "An"; +$a->strings["Additional Features"] = "Zusätzliche Features"; +$a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["enabled"] = "eingeschaltet"; +$a->strings["disabled"] = "ausgeschaltet"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert."; +$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an."; +$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail Check"; +$a->strings["IMAP server name:"] = "IMAP-Server-Name:"; +$a->strings["IMAP port:"] = "IMAP-Port:"; +$a->strings["Security:"] = "Sicherheit:"; +$a->strings["None"] = "Keine"; +$a->strings["Email login name:"] = "E-Mail-Login-Name:"; +$a->strings["Email password:"] = "E-Mail-Passwort:"; +$a->strings["Reply-to address:"] = "Reply-to Adresse:"; +$a->strings["Send public posts to all email contacts:"] = "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"; +$a->strings["Action after import:"] = "Aktion nach Import:"; +$a->strings["Mark as seen"] = "Als gelesen markieren"; +$a->strings["Move to folder"] = "In einen Ordner verschieben"; +$a->strings["Move to folder:"] = "In diesen Ordner verschieben:"; +$a->strings["Display Settings"] = "Anzeige-Einstellungen"; +$a->strings["Display Theme:"] = "Theme:"; +$a->strings["Mobile Theme:"] = "Mobiles Theme"; +$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimal 10 Sekunden, kein Maximum"; +$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "; +$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"; +$a->strings["Don't show emoticons"] = "Keine Smilies anzeigen"; +$a->strings["Don't show notices"] = "Info-Popups nicht anzeigen"; +$a->strings["Infinite scroll"] = "Endloses Scrollen"; +$a->strings["Automatic updates only at the top of the network page"] = "Automatische Updates nur, wenn du oben auf der Netzwerkseite bist."; +$a->strings["User Types"] = "Nutzer Art"; +$a->strings["Community Types"] = "Gemeinschafts Art"; +$a->strings["Normal Account Page"] = "Normales Konto"; +$a->strings["This account is a normal personal profile"] = "Dieses Konto ist ein normales persönliches Profil"; +$a->strings["Soapbox Page"] = "Marktschreier-Konto"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"; +$a->strings["Community Forum/Celebrity Account"] = "Forum/Promi-Konto"; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"; +$a->strings["Automatic Friend Page"] = "Automatische Freunde Seite"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert"; +$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]"; +$a->strings["Private forum - approved members only"] = "Privates Forum, nur für Mitglieder"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."; +$a->strings["Publish your default profile in your local site directory?"] = "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"; +$a->strings["No"] = "Nein"; +$a->strings["Publish your default profile in the global social directory?"] = "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"; +$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?"; +$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich"; +$a->strings["Allow friends to post to your profile page?"] = "Dürfen deine Kontakte auf deine Pinnwand schreiben?"; +$a->strings["Allow friends to tag your posts?"] = "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"; +$a->strings["Permit unknown people to send you private mail?"] = "Dürfen dir Unbekannte private Nachrichten schicken?"; +$a->strings["Profile is not published."] = "Profil ist nicht veröffentlicht."; +$a->strings["Your Identity Address is"] = "Die Adresse deines Profils lautet:"; +$a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."; +$a->strings["Advanced expiration settings"] = "Erweiterte Verfallseinstellungen"; +$a->strings["Advanced Expiration"] = "Erweitertes Verfallen"; +$a->strings["Expire posts:"] = "Beiträge verfallen lassen:"; +$a->strings["Expire personal notes:"] = "Persönliche Notizen verfallen lassen:"; +$a->strings["Expire starred posts:"] = "Markierte Beiträge verfallen lassen:"; +$a->strings["Expire photos:"] = "Fotos verfallen lassen:"; +$a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:"; +$a->strings["Account Settings"] = "Kontoeinstellungen"; +$a->strings["Password Settings"] = "Passwort-Einstellungen"; +$a->strings["New Password:"] = "Neues Passwort:"; +$a->strings["Confirm:"] = "Bestätigen:"; +$a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer du willst das Passwort ändern"; +$a->strings["Current Password:"] = "Aktuelles Passwort:"; +$a->strings["Your current password to confirm the changes"] = "Dein aktuelles Passwort um die Änderungen zu bestätigen"; +$a->strings["Password:"] = "Passwort:"; +$a->strings["Basic Settings"] = "Grundeinstellungen"; +$a->strings["Full Name:"] = "Kompletter Name:"; +$a->strings["Email Address:"] = "E-Mail-Adresse:"; +$a->strings["Your Timezone:"] = "Deine Zeitzone:"; +$a->strings["Default Post Location:"] = "Standardstandort:"; +$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:"; +$a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen"; +$a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschaftsanfragen/Tag:"; +$a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)"; +$a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge"; +$a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)"; +$a->strings["Show to Groups"] = "Zeige den Gruppen"; +$a->strings["Show to Contacts"] = "Zeige den Kontakten"; +$a->strings["Default Private Post"] = "Privater Standardbeitrag"; +$a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag"; +$a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"; +$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen"; +$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:"; +$a->strings["accepting a friend request"] = "– du eine Kontaktanfrage akzeptierst"; +$a->strings["joining a forum/community"] = "– du einem Forum/einer Gemeinschaftsseite beitrittst"; +$a->strings["making an interesting profile change"] = "– du eine interessante Änderung an deinem Profil durchführst"; +$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:"; +$a->strings["You receive an introduction"] = "– du eine Kontaktanfrage erhältst"; +$a->strings["Your introductions are confirmed"] = "– eine deiner Kontaktanfragen akzeptiert wurde"; +$a->strings["Someone writes on your profile wall"] = "– jemand etwas auf deine Pinnwand schreibt"; +$a->strings["Someone writes a followup comment"] = "– jemand auch einen Kommentar verfasst"; +$a->strings["You receive a private message"] = "– du eine private Nachricht erhältst"; +$a->strings["You receive a friend suggestion"] = "– du eine Empfehlung erhältst"; +$a->strings["You are tagged in a post"] = "– du in einem Beitrag erwähnt wirst"; +$a->strings["You are poked/prodded/etc. in a post"] = "– du von jemandem angestupst oder sonstwie behandelt wirst"; +$a->strings["Text-only notification emails"] = "Benachrichtigungs E-Mail als Rein-Text."; +$a->strings["Send text only notification emails, without the html part"] = "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"; +$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen"; +$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:"; +$a->strings["Relocate"] = "Umziehen"; +$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn du dein Profil von einem anderen Server umgezogen hast und einige deiner Kontakte deine Beiträge nicht erhalten, verwende diesen Button."; +$a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden"; +$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."; +$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden", + 1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden", +); +$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen."; +$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler."; +$a->strings["Profile unavailable."] = "Profil nicht verfügbar."; +$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten."; +$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."; +$a->strings["Invalid locator"] = "Ungültiger Locator"; +$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse."; +$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."; +$a->strings["Unable to resolve your name at the provided location."] = "Konnte deinen Namen an der angegebenen Stelle nicht finden."; +$a->strings["You have already introduced yourself here."] = "Du hast dich hier bereits vorgestellt."; +$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob du bereits mit %s befreundet bist."; +$a->strings["Invalid profile URL."] = "Ungültige Profil-URL."; +$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL."; +$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet."; +$a->strings["Please login to confirm introduction."] = "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an."; +$a->strings["Hide this contact"] = "Verberge diesen Kontakt"; +$a->strings["Welcome home %s."] = "Willkommen zurück %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige deine Kontaktanfrage bei %s."; +$a->strings["Confirm"] = "Bestätigen"; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:"; +$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."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten."; +$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:"; +$a->strings["Does %s know you?"] = "Kennt %s dich?"; +$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste."; +$a->strings["Your Identity Address:"] = "Adresse deines Profils:"; +$a->strings["Submit Request"] = "Anfrage abschicken"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."; +$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; +$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."; +$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): "; +$a->strings["Include your profile in member directory?"] = "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"; +$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; +$a->strings["Your invitation ID: "] = "ID deiner Einladung: "; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): "; +$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: "; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird 'spitzname@\$sitename' sein."; +$a->strings["Choose a nickname: "] = "Spitznamen wählen: "; +$a->strings["Register"] = "Registrieren"; +$a->strings["Import"] = "Import"; +$a->strings["Import your profile to this friendica instance"] = "Importiere dein Profil auf diese Friendica Instanz"; +$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet"; +$a->strings["Search"] = "Suche"; +$a->strings["Global Directory"] = "Weltweites Verzeichnis"; +$a->strings["Find on this site"] = "Auf diesem Server suchen"; +$a->strings["Site Directory"] = "Verzeichnis"; +$a->strings["Age: "] = "Alter: "; +$a->strings["Gender: "] = "Geschlecht:"; +$a->strings["Gender:"] = "Geschlecht:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["About:"] = "Über:"; +$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein)."; +$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden."; +$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite"; +$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."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!"; +$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager"; +$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite"; +$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; +$a->strings["Add"] = "Hinzufügen"; +$a->strings["No entries."] = "Keine Einträge."; +$a->strings["Common Friends"] = "Gemeinsame Freunde"; +$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; +$a->strings["Export account"] = "Account exportieren"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere deine Accountinformationen und Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."; +$a->strings["Export all"] = "Alles exportieren"; +$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)"] = "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Fotos werden nicht exportiert)."; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s"; +$a->strings["Mood"] = "Stimmung"; +$a->strings["Set your current mood and tell your friends"] = "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden"; +$a->strings["Do you really want to delete this suggestion?"] = "Möchtest du wirklich diese Empfehlung löschen?"; +$a->strings["Friend Suggestions"] = "Kontaktvorschläge"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."; +$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen"; +$a->strings["Profile deleted."] = "Profil gelöscht."; +$a->strings["Profile-"] = "Profil-"; +$a->strings["New profile created."] = "Neues Profil angelegt."; +$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar."; +$a->strings["Profile Name is required."] = "Profilname ist erforderlich."; +$a->strings["Marital Status"] = "Familienstand"; +$a->strings["Romantic Partner"] = "Romanze"; +$a->strings["Likes"] = "Likes"; +$a->strings["Dislikes"] = "Dislikes"; +$a->strings["Work/Employment"] = "Arbeit / Beschäftigung"; +$a->strings["Religion"] = "Religion"; +$a->strings["Political Views"] = "Politische Ansichten"; +$a->strings["Gender"] = "Geschlecht"; +$a->strings["Sexual Preference"] = "Sexuelle Vorlieben"; +$a->strings["Homepage"] = "Webseite"; +$a->strings["Interests"] = "Interessen"; +$a->strings["Address"] = "Adresse"; +$a->strings["Location"] = "Wohnort"; +$a->strings["Profile updated."] = "Profil aktualisiert."; +$a->strings[" and "] = " und "; +$a->strings["public profile"] = "öffentliches Profil"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s geändert auf “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s."; +$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"; +$a->strings["Edit Profile Details"] = "Profil bearbeiten"; +$a->strings["Change Profile Photo"] = "Profilbild ändern"; +$a->strings["View this profile"] = "Dieses Profil anzeigen"; +$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden"; +$a->strings["Clone this profile"] = "Dieses Profil duplizieren"; +$a->strings["Delete this profile"] = "Dieses Profil löschen"; +$a->strings["Basic information"] = "Grundinformationen"; +$a->strings["Profile picture"] = "Profilbild"; +$a->strings["Preferences"] = "Vorlieben"; +$a->strings["Status information"] = "Status Informationen"; +$a->strings["Additional information"] = "Zusätzliche Informationen"; +$a->strings["Profile Name:"] = "Profilname:"; +$a->strings["Your Full Name:"] = "Dein kompletter Name:"; +$a->strings["Title/Description:"] = "Titel/Beschreibung:"; +$a->strings["Your Gender:"] = "Dein Geschlecht:"; +$a->strings["Birthday (%s):"] = "Geburtstag (%s):"; +$a->strings["Street Address:"] = "Adresse:"; +$a->strings["Locality/City:"] = "Wohnort:"; +$a->strings["Postal/Zip Code:"] = "Postleitzahl:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Region/State:"] = "Region/Bundesstaat:"; +$a->strings[" Marital Status:"] = " Beziehungsstatus:"; +$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Seit [Datum]:"; +$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:"; +$a->strings["Homepage URL:"] = "Adresse der Homepage:"; +$a->strings["Hometown:"] = "Heimatort:"; +$a->strings["Political Views:"] = "Politische Ansichten:"; +$a->strings["Religious Views:"] = "Religiöse Ansichten:"; +$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:"; +$a->strings["Private Keywords:"] = "Private Schlüsselwörter:"; +$a->strings["Likes:"] = "Likes:"; +$a->strings["Dislikes:"] = "Dislikes:"; +$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"; +$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von dir …"; +$a->strings["Hobbies/Interests"] = "Hobbies/Interessen"; +$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke"; +$a->strings["Musical interests"] = "Musikalische Interessen"; +$a->strings["Books, literature"] = "Bücher, Literatur"; +$a->strings["Television"] = "Fernsehen"; +$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung"; +$a->strings["Love/romance"] = "Liebe/Romantik"; +$a->strings["Work/employment"] = "Arbeit/Anstellung"; +$a->strings["School/education"] = "Schule/Ausbildung"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Dies ist dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein."; +$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile"; +$a->strings["Change profile photo"] = "Profilbild ändern"; +$a->strings["Create New Profile"] = "Neues Profil anlegen"; +$a->strings["Profile Image"] = "Profilbild"; +$a->strings["visible to everybody"] = "sichtbar für jeden"; +$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; +$a->strings["Item not found"] = "Beitrag nicht gefunden"; +$a->strings["Edit post"] = "Beitrag bearbeiten"; +$a->strings["upload photo"] = "Bild hochladen"; +$a->strings["Attach file"] = "Datei anhängen"; +$a->strings["attach file"] = "Datei anhängen"; +$a->strings["web link"] = "Weblink"; +$a->strings["Insert video link"] = "Video-Adresse einfügen"; +$a->strings["video link"] = "Video-Link"; +$a->strings["Insert audio link"] = "Audio-Adresse einfügen"; +$a->strings["audio link"] = "Audio-Link"; +$a->strings["Set your location"] = "Deinen Standort festlegen"; +$a->strings["set location"] = "Ort setzen"; +$a->strings["Clear browser location"] = "Browser-Standort leeren"; +$a->strings["clear location"] = "Ort löschen"; +$a->strings["Permission settings"] = "Berechtigungseinstellungen"; +$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen"; +$a->strings["Public post"] = "Öffentlicher Beitrag"; +$a->strings["Set title"] = "Titel setzen"; +$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com"; +$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version"; +$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren."; +$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"; +$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps"; +$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert"; +$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren"; +$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"; +$a->strings["Please login to continue."] = "Bitte melde dich an um fortzufahren."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?"; +$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar."; +$a->strings["Visible to:"] = "Sichtbar für:"; +$a->strings["Personal Notes"] = "Persönliche Notizen"; +$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i"; +$a->strings["Time Conversion"] = "Zeitumrechnung"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."; +$a->strings["UTC time: %s"] = "UTC Zeit: %s"; +$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s"; +$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s"; +$a->strings["Please select your timezone:"] = "Bitte wähle deine Zeitzone:"; +$a->strings["Poke/Prod"] = "Anstupsen"; +$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen"; +$a->strings["Recipient"] = "Empfänger"; +$a->strings["Choose what you wish to do to recipient"] = "Was willst du mit dem Empfänger machen:"; +$a->strings["Make this post private"] = "Diesen Beitrag privat machen"; +$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht."; +$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse."; +$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."; +$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen."; +$a->strings["%d message sent."] = array( + 0 => "%d Nachricht gesendet.", + 1 => "%d Nachrichten gesendet.", +); +$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen"; +$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."] = "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen 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."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."; +$a->strings["Send invitations"] = "Einladungen senden"; +$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:"; +$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 bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"; +$a->strings["Photo Albums"] = "Fotoalben"; +$a->strings["Contact Photos"] = "Kontaktbilder"; +$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; +$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar"; +$a->strings["Album not found."] = "Album nicht gefunden."; +$a->strings["Delete Album"] = "Album löschen"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?"; +$a->strings["Delete Photo"] = "Foto löschen"; +$a->strings["Do you really want to delete this photo?"] = "Möchtest du wirklich dieses Foto löschen?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt"; +$a->strings["a photo"] = "einem Foto"; +$a->strings["Image exceeds size limit of "] = "Die Bildgröße übersteigt das Limit von "; +$a->strings["Image file is empty."] = "Bilddatei ist leer."; +$a->strings["No photos selected"] = "Keine Bilder ausgewählt"; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."; +$a->strings["Upload Photos"] = "Bilder hochladen"; +$a->strings["New album name: "] = "Name des neuen Albums: "; +$a->strings["or existing album name: "] = "oder existierender Albumname: "; +$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen"; +$a->strings["Permissions"] = "Berechtigungen"; +$a->strings["Private Photo"] = "Privates Foto"; +$a->strings["Public Photo"] = "Öffentliches Foto"; +$a->strings["Edit Album"] = "Album bearbeiten"; +$a->strings["Show Newest First"] = "Zeige neueste zuerst"; +$a->strings["Show Oldest First"] = "Zeige älteste zuerst"; +$a->strings["View Photo"] = "Foto betrachten"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."; +$a->strings["Photo not available"] = "Foto nicht verfügbar"; +$a->strings["View photo"] = "Fotos ansehen"; +$a->strings["Edit photo"] = "Foto bearbeiten"; +$a->strings["Use as profile photo"] = "Als Profilbild verwenden"; +$a->strings["View Full Size"] = "Betrachte Originalgröße"; +$a->strings["Tags: "] = "Tags: "; +$a->strings["[Remove any tag]"] = "[Tag entfernen]"; +$a->strings["Rotate CW (right)"] = "Drehen US (rechts)"; +$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; +$a->strings["New album name"] = "Name des neuen Albums"; +$a->strings["Caption"] = "Bildunterschrift"; +$a->strings["Add a Tag"] = "Tag hinzufügen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Private photo"] = "Privates Foto"; +$a->strings["Public photo"] = "Öffentliches Foto"; +$a->strings["Share"] = "Teilen"; +$a->strings["Recent Photos"] = "Neueste Fotos"; +$a->strings["Account approved."] = "Konto freigegeben."; +$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen"; +$a->strings["Please login."] = "Bitte melde dich an."; +$a->strings["Move account"] = "Account umziehen"; +$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren."; +$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 musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"; +$a->strings["Account file"] = "Account Datei"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""; +$a->strings["Item not available."] = "Beitrag nicht verfügbar."; +$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden."; +$a->strings["Delete this item?"] = "Diesen Beitrag löschen?"; +$a->strings["show fewer"] = "weniger anzeigen"; +$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."; +$a->strings["Create a New Account"] = "Neues Konto erstellen"; +$a->strings["Logout"] = "Abmelden"; +$a->strings["Login"] = "Anmeldung"; +$a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: "; +$a->strings["Password: "] = "Passwort: "; +$a->strings["Remember me"] = "Anmeldedaten merken"; +$a->strings["Or login using OpenID: "] = "Oder melde dich mit deiner OpenID an: "; +$a->strings["Forgot your password?"] = "Passwort vergessen?"; +$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen"; +$a->strings["terms of service"] = "Nutzungsbedingungen"; +$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung"; +$a->strings["privacy policy"] = "Datenschutzerklärung"; +$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden."; +$a->strings["Edit profile"] = "Profil bearbeiten"; +$a->strings["Message"] = "Nachricht"; +$a->strings["Profiles"] = "Profile"; +$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren"; +$a->strings["Network:"] = "Netzwerk"; +$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r"; +$a->strings["F d"] = "d. F"; +$a->strings["[today]"] = "[heute]"; +$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen"; +$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:"; +$a->strings["[No description]"] = "[keine Beschreibung]"; +$a->strings["Event Reminders"] = "Veranstaltungserinnerungen"; +$a->strings["Events this week:"] = "Veranstaltungen diese Woche"; +$a->strings["Status"] = "Status"; +$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; +$a->strings["Profile Details"] = "Profildetails"; +$a->strings["Videos"] = "Videos"; +$a->strings["Events and Calendar"] = "Ereignisse und Kalender"; +$a->strings["Only You Can See This"] = "Nur du kannst das sehen"; +$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet."; +$a->strings["ignore thread"] = "Thread ignorieren"; +$a->strings["unignore thread"] = "Thread nicht mehr ignorieren"; +$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten"; +$a->strings["ignored"] = "Ignoriert"; +$a->strings["Categories:"] = "Kategorien:"; +$a->strings["Filed under:"] = "Abgelegt unter:"; +$a->strings["via"] = "via"; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]"; +$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."; +$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."; +$a->strings["Logged out."] = "Abgemeldet."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast."; +$a->strings["The error message was:"] = "Die Fehlermeldung lautete:"; +$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen"; +$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d Einladung verfügbar", + 1 => "%d Einladungen verfügbar", +); +$a->strings["Find People"] = "Leute finden"; +$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; +$a->strings["Connect/Follow"] = "Verbinden/Folgen"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln"; +$a->strings["Similar Interests"] = "Ähnliche Interessen"; +$a->strings["Random Profile"] = "Zufälliges Profil"; +$a->strings["Invite Friends"] = "Freunde einladen"; +$a->strings["Networks"] = "Netzwerke"; +$a->strings["All Networks"] = "Alle Netzwerke"; +$a->strings["Saved Folders"] = "Gespeicherte Ordner"; +$a->strings["Everything"] = "Alles"; +$a->strings["Categories"] = "Kategorien"; +$a->strings["General Features"] = "Allgemeine Features"; +$a->strings["Multiple Profiles"] = "Mehrere Profile"; +$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen"; +$a->strings["Post Composition Features"] = "Beitragserstellung Features"; +$a->strings["Richtext Editor"] = "Web-Editor"; +$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren"; +$a->strings["Post Preview"] = "Beitragsvorschau"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."; +$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen"; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde."; +$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste"; +$a->strings["Search by Date"] = "Archiv"; +$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"; +$a->strings["Group Filter"] = "Gruppen Filter"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."; +$a->strings["Network Filter"] = "Netzwerk Filter"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."; +$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung."; +$a->strings["Network Tabs"] = "Netzwerk Reiter"; +$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast"; +$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"; +$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"; +$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare"; +$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen"; +$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"; +$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren"; +$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren."; +$a->strings["Tagging"] = "Tagging"; +$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."; +$a->strings["Post Categories"] = "Beitragskategorien"; +$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen"; +$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren"; +$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'"; +$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"; +$a->strings["Star Posts"] = "Beiträge Markieren"; +$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"; +$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten"; +$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"; +$a->strings["Connect URL missing."] = "Connect-URL fehlt"; +$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."; +$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen."; +$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden."; +$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."; +$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können."; +$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen."; +$a->strings["following"] = "folgen"; +$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."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."; +$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte"; +$a->strings["Everybody"] = "Alle Kontakte"; +$a->strings["edit"] = "bearbeiten"; +$a->strings["Edit group"] = "Gruppe bearbeiten"; +$a->strings["Create a new group"] = "Neue Gruppe erstellen"; +$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe"; +$a->strings["Miscellaneous"] = "Verschiedenes"; +$a->strings["year"] = "Jahr"; +$a->strings["month"] = "Monat"; +$a->strings["day"] = "Tag"; +$a->strings["never"] = "nie"; +$a->strings["less than a second ago"] = "vor weniger als einer Sekunde"; +$a->strings["years"] = "Jahre"; +$a->strings["months"] = "Monate"; +$a->strings["week"] = "Woche"; +$a->strings["weeks"] = "Wochen"; +$a->strings["days"] = "Tage"; +$a->strings["hour"] = "Stunde"; +$a->strings["hours"] = "Stunden"; +$a->strings["minute"] = "Minute"; +$a->strings["minutes"] = "Minuten"; +$a->strings["second"] = "Sekunde"; +$a->strings["seconds"] = "Sekunden"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her"; +$a->strings["%s's birthday"] = "%ss Geburtstag"; +$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s"; +$a->strings["Visible to everybody"] = "Für jeden sichtbar"; +$a->strings["show"] = "zeigen"; +$a->strings["don't show"] = "nicht zeigen"; +$a->strings["[no subject]"] = "[kein Betreff]"; +$a->strings["stopped following"] = "wird nicht mehr gefolgt"; +$a->strings["Poke"] = "Anstupsen"; +$a->strings["View Status"] = "Pinnwand anschauen"; +$a->strings["View Profile"] = "Profil anschauen"; +$a->strings["View Photos"] = "Bilder anschauen"; +$a->strings["Network Posts"] = "Netzwerkbeiträge"; +$a->strings["Edit Contact"] = "Kontakt bearbeiten"; +$a->strings["Drop Contact"] = "Kontakt löschen"; +$a->strings["Send PM"] = "Private Nachricht senden"; +$a->strings["Welcome "] = "Willkommen "; +$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch."; +$a->strings["Welcome back "] = "Willkommen zurück "; +$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."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."; +$a->strings["event"] = "Veranstaltung"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; +$a->strings["poked"] = "stupste"; +$a->strings["post/item"] = "Nachricht/Beitrag"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert"; +$a->strings["remove"] = "löschen"; +$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; +$a->strings["Follow Thread"] = "Folge der Unterhaltung"; +$a->strings["%s likes this."] = "%s mag das."; +$a->strings["%s doesn't like this."] = "%s mag das nicht."; +$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; +$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; +$a->strings["and"] = "und"; +$a->strings[", and %d other people"] = " und %d andere"; +$a->strings["%s like this."] = "%s mögen das."; +$a->strings["%s don't like this."] = "%s mögen das nicht."; +$a->strings["Visible to everybody"] = "Für jedermann sichtbar"; +$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:"; +$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Where are you right now?"] = "Wo hältst du dich jetzt gerade auf?"; +$a->strings["Delete item(s)?"] = "Einträge löschen?"; +$a->strings["Post to Email"] = "An E-Mail senden"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."; +$a->strings["permissions"] = "Zugriffsrechte"; +$a->strings["Post to Groups"] = "Poste an Gruppe"; +$a->strings["Post to Contacts"] = "Poste an Kontakte"; +$a->strings["Private post"] = "Privater Beitrag"; +$a->strings["view full size"] = "Volle Größe anzeigen"; +$a->strings["newer"] = "neuer"; +$a->strings["older"] = "älter"; +$a->strings["prev"] = "vorige"; +$a->strings["first"] = "erste"; +$a->strings["last"] = "letzte"; +$a->strings["next"] = "nächste"; +$a->strings["No contacts"] = "Keine Kontakte"; +$a->strings["%d Contact"] = array( + 0 => "%d Kontakt", + 1 => "%d Kontakte", +); +$a->strings["poke"] = "anstupsen"; +$a->strings["ping"] = "anpingen"; +$a->strings["pinged"] = "pingte"; +$a->strings["prod"] = "knuffen"; +$a->strings["prodded"] = "knuffte"; +$a->strings["slap"] = "ohrfeigen"; +$a->strings["slapped"] = "ohrfeigte"; +$a->strings["finger"] = "befummeln"; +$a->strings["fingered"] = "befummelte"; +$a->strings["rebuff"] = "eine Abfuhr erteilen"; +$a->strings["rebuffed"] = "abfuhrerteilte"; +$a->strings["happy"] = "glücklich"; +$a->strings["sad"] = "traurig"; +$a->strings["mellow"] = "sanft"; +$a->strings["tired"] = "müde"; +$a->strings["perky"] = "frech"; +$a->strings["angry"] = "sauer"; +$a->strings["stupified"] = "verblüfft"; +$a->strings["puzzled"] = "verwirrt"; +$a->strings["interested"] = "interessiert"; +$a->strings["bitter"] = "verbittert"; +$a->strings["cheerful"] = "fröhlich"; +$a->strings["alive"] = "lebendig"; +$a->strings["annoyed"] = "verärgert"; +$a->strings["anxious"] = "unruhig"; +$a->strings["cranky"] = "schrullig"; +$a->strings["disturbed"] = "verstört"; +$a->strings["frustrated"] = "frustriert"; +$a->strings["motivated"] = "motiviert"; +$a->strings["relaxed"] = "entspannt"; +$a->strings["surprised"] = "überrascht"; +$a->strings["Monday"] = "Montag"; +$a->strings["Tuesday"] = "Dienstag"; +$a->strings["Wednesday"] = "Mittwoch"; +$a->strings["Thursday"] = "Donnerstag"; +$a->strings["Friday"] = "Freitag"; +$a->strings["Saturday"] = "Samstag"; +$a->strings["Sunday"] = "Sonntag"; +$a->strings["January"] = "Januar"; +$a->strings["February"] = "Februar"; +$a->strings["March"] = "März"; +$a->strings["April"] = "April"; +$a->strings["May"] = "Mai"; +$a->strings["June"] = "Juni"; +$a->strings["July"] = "Juli"; +$a->strings["August"] = "August"; +$a->strings["September"] = "September"; +$a->strings["October"] = "Oktober"; +$a->strings["November"] = "November"; +$a->strings["December"] = "Dezember"; +$a->strings["bytes"] = "Byte"; +$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken"; +$a->strings["default"] = "Standard"; +$a->strings["Select an alternate language"] = "Alternative Sprache auswählen"; +$a->strings["activity"] = "Aktivität"; +$a->strings["post"] = "Beitrag"; +$a->strings["Item filed"] = "Beitrag abgelegt"; +$a->strings["Image/photo"] = "Bild/Foto"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["%s wrote the following post"] = "%s schrieb den folgenden Beitrag"; +$a->strings["$1 wrote:"] = "$1 hat geschrieben:"; +$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; +$a->strings["(no subject)"] = "(kein Betreff)"; +$a->strings["noreply"] = "noreply"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."; +$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert"; +$a->strings["Block immediately"] = "Sofort blockieren"; +$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller"; +$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung"; +$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos"; +$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen"; +$a->strings["Weekly"] = "Wöchentlich"; +$a->strings["Monthly"] = "Monatlich"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zott"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/Chat"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Diaspora"; +$a->strings["Statusnet"] = "StatusNet"; +$a->strings["App.net"] = "App.net"; +$a->strings[" on Last.fm"] = " bei Last.fm"; +$a->strings["Starts:"] = "Beginnt:"; +$a->strings["Finishes:"] = "Endet:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Geburtstag:"; +$a->strings["Age:"] = "Alter:"; +$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s"; +$a->strings["Tags:"] = "Tags"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:"; +$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:"; +$a->strings["Musical interests:"] = "Musikalische Interessen:"; +$a->strings["Books, literature:"] = "Literatur/Bücher:"; +$a->strings["Television:"] = "Fernsehen:"; +$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:"; +$a->strings["Love/Romance:"] = "Liebesleben:"; +$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:"; +$a->strings["School/education:"] = "Schule/Ausbildung:"; +$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze deines Abonnements."; +$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in deinem Abonnement nicht verfügbar."; +$a->strings["End this session"] = "Diese Sitzung beenden"; +$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; +$a->strings["Your profile page"] = "Deine Profilseite"; +$a->strings["Your photos"] = "Deine Fotos"; +$a->strings["Your videos"] = "Deine Videos"; +$a->strings["Your events"] = "Deine Ereignisse"; +$a->strings["Personal notes"] = "Persönliche Notizen"; +$a->strings["Your personal notes"] = "Deine persönlichen Notizen"; +$a->strings["Sign in"] = "Anmelden"; +$a->strings["Home Page"] = "Homepage"; +$a->strings["Create an account"] = "Nutzerkonto erstellen"; +$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele"; +$a->strings["Search site content"] = "Inhalt der Seite durchsuchen"; +$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite"; +$a->strings["Directory"] = "Verzeichnis"; +$a->strings["People directory"] = "Nutzerverzeichnis"; +$a->strings["Information"] = "Information"; +$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz"; +$a->strings["Conversations from your friends"] = "Unterhaltungen deiner Kontakte"; +$a->strings["Network Reset"] = "Netzwerk zurücksetzen"; +$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden"; +$a->strings["Friend Requests"] = "Kontaktanfragen"; +$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen"; +$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen"; +$a->strings["Private mail"] = "Private E-Mail"; +$a->strings["Inbox"] = "Eingang"; +$a->strings["Outbox"] = "Ausgang"; +$a->strings["Manage"] = "Verwalten"; +$a->strings["Manage other pages"] = "Andere Seiten verwalten"; +$a->strings["Account settings"] = "Kontoeinstellungen"; +$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren"; +$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren"; +$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration"; +$a->strings["Navigation"] = "Navigation"; +$a->strings["Site map"] = "Sitemap"; +$a->strings["User not found."] = "Nutzer nicht gefunden."; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; +$a->strings["There is no status with this id."] = "Es gibt keinen Status mit dieser ID."; +$a->strings["There is no conversation with this id."] = "Es existiert keine Unterhaltung mit dieser ID."; +$a->strings["Invalid request."] = "Ungültige Anfrage"; +$a->strings["Invalid item."] = "Ungültiges Objekt"; +$a->strings["Invalid action. "] = "Ungültige Aktion"; +$a->strings["DB error"] = "DB Error"; +$a->strings["An invitation is required."] = "Du benötigst eine Einladung."; +$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden."; +$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL"; +$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein."; +$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen."; +$a->strings["Name too short."] = "Der Name ist zu kurz."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein."; +$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."; +$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse."; +$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen."; +$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."; +$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; +$a->strings["Friends"] = "Freunde"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für deine Registrierung auf %2\$s. Dein Account wurde eingerichtet."; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %2\$s."; +$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora"; +$a->strings["Attachments:"] = "Anhänge:"; +$a->strings["Do you really want to delete this item?"] = "Möchtest du wirklich dieses Item löschen?"; +$a->strings["Archives"] = "Archiv"; +$a->strings["Male"] = "Männlich"; +$a->strings["Female"] = "Weiblich"; +$a->strings["Currently Male"] = "Momentan männlich"; +$a->strings["Currently Female"] = "Momentan weiblich"; +$a->strings["Mostly Male"] = "Hauptsächlich männlich"; +$a->strings["Mostly Female"] = "Hauptsächlich weiblich"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Intersex"; +$a->strings["Transsexual"] = "Transsexuell"; +$a->strings["Hermaphrodite"] = "Hermaphrodit"; +$a->strings["Neuter"] = "Neuter"; +$a->strings["Non-specific"] = "Nicht spezifiziert"; +$a->strings["Other"] = "Andere"; +$a->strings["Undecided"] = "Unentschieden"; +$a->strings["Males"] = "Männer"; +$a->strings["Females"] = "Frauen"; +$a->strings["Gay"] = "Schwul"; +$a->strings["Lesbian"] = "Lesbisch"; +$a->strings["No Preference"] = "Keine Vorlieben"; +$a->strings["Bisexual"] = "Bisexuell"; +$a->strings["Autosexual"] = "Autosexual"; +$a->strings["Abstinent"] = "Abstinent"; +$a->strings["Virgin"] = "Jungfrauen"; +$a->strings["Deviant"] = "Deviant"; +$a->strings["Fetish"] = "Fetish"; +$a->strings["Oodles"] = "Oodles"; +$a->strings["Nonsexual"] = "Nonsexual"; +$a->strings["Single"] = "Single"; +$a->strings["Lonely"] = "Einsam"; +$a->strings["Available"] = "Verfügbar"; +$a->strings["Unavailable"] = "Nicht verfügbar"; +$a->strings["Has crush"] = "verknallt"; +$a->strings["Infatuated"] = "verliebt"; +$a->strings["Dating"] = "Dating"; +$a->strings["Unfaithful"] = "Untreu"; +$a->strings["Sex Addict"] = "Sexbesessen"; +$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Verlobt"; +$a->strings["Married"] = "Verheiratet"; +$a->strings["Imaginarily married"] = "imaginär verheiratet"; +$a->strings["Partners"] = "Partner"; +$a->strings["Cohabiting"] = "zusammenlebend"; +$a->strings["Common law"] = "wilde Ehe"; +$a->strings["Happy"] = "Glücklich"; +$a->strings["Not looking"] = "Nicht auf der Suche"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Betrogen"; +$a->strings["Separated"] = "Getrennt"; +$a->strings["Unstable"] = "Unstabil"; +$a->strings["Divorced"] = "Geschieden"; +$a->strings["Imaginarily divorced"] = "imaginär geschieden"; +$a->strings["Widowed"] = "Verwitwet"; +$a->strings["Uncertain"] = "Unsicher"; +$a->strings["It's complicated"] = "Ist kompliziert"; +$a->strings["Don't care"] = "Ist mir nicht wichtig"; +$a->strings["Ask me"] = "Frag mich"; +$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung"; +$a->strings["Thank You,"] = "Danke,"; +$a->strings["%s Administrator"] = "der Administrator von %s"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat dir eine neue private Nachricht auf %2\$s geschickt."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte dir %2\$s."; +$a->strings["a private message"] = "eine private Nachricht"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]deinen %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem du folgst."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf deine Pinnwand"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]deiner Pinnwand[/url] gepostet"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat dich erwähnt"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte dich auf %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte dich[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat dich angestupst"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat dich auf %2\$s angestupst"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat dich angestupst[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat deinen Beitrag getaggt"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte deinen Beitrag auf %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten."; +$a->strings["You may visit their profile at %s"] = "Hier kannst du das Profil betrachten: %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica Benachrichtigung] Eine neue Person teilt mit dir"; +$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit dir auf %2\$s"; +$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "; +$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s"; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-Vorschlag von '%1\$s' auf %2\$s erhalten"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Freunde-Vorschlag[/url] %2\$s von %3\$s erhalten."; +$a->strings["Name:"] = "Name:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."; +$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"; +$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' hat deine Kontaktanfrage auf %2\$s bestätigt"; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert."; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst."; +$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' hat sich entschieden dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen."; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "; +$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Benachrichtigung] Registrationsanfrage"; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten"; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten."; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"; +$a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten."; +$a->strings["Embedded content"] = "Eingebetteter Inhalt"; +$a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; +$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"; +$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen."; +$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!"; +$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten"; +$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos"; +$a->strings["%d contact not imported"] = array( + 0 => "%d Kontakt nicht importiert", + 1 => "%d Kontakte nicht importiert", +); +$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden"; +$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; +$a->strings["Theme settings"] = "Themeneinstellungen"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"; +$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen"; +$a->strings["Set theme width"] = "Theme Breite festlegen"; +$a->strings["Color scheme"] = "Farbschema"; +$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen"; +$a->strings["Set colour scheme"] = "Farbschema wählen"; +$a->strings["Alignment"] = "Ausrichtung"; +$a->strings["Left"] = "Links"; +$a->strings["Center"] = "Mitte"; +$a->strings["Posts font size"] = "Schriftgröße in Beiträgen"; +$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern"; +$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen"; +$a->strings["Set color scheme"] = "Wähle Farbschema"; +$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer"; +$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer"; +$a->strings["Community Pages"] = "Foren"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Community Profiles"] = "Community-Profile"; +$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere"; +$a->strings["Connect Services"] = "Verbinde Dienste"; +$a->strings["Find Friends"] = "Freunde finden"; +$a->strings["Last users"] = "Letzte Nutzer"; +$a->strings["Last photos"] = "Letzte Fotos"; +$a->strings["Last likes"] = "Zuletzt gemocht"; +$a->strings["Your contacts"] = "Deine Kontakte"; +$a->strings["Your personal photos"] = "Deine privaten Fotos"; +$a->strings["Local Directory"] = "Lokales Verzeichnis"; +$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer"; +$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen"; +$a->strings["Set style"] = "Stil auswählen"; +$a->strings["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "easterbunny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "slackr"; +$a->strings["Variations"] = "Variationen"; diff --git a/view/fr/messages.po b/view/fr/messages.po index 700c2a8338..cebd06869e 100644 --- a/view/fr/messages.po +++ b/view/fr/messages.po @@ -3,3427 +3,3610 @@ # This file is distributed under the same license as the Friendica package. # # Translators: -# Rafael GARAU , 2012 -# Rafael GARAU , 2012-2013 +# Cyboulette , 2014 +# Domovoy , 2012 +# Jak , 2014 +# Lionel Triay , 2013 +# Marquis_de_Carabas , 2012 +# Olivier , 2011-2012 +# Sylvain Lagacé, 2014-2015 +# tomamplius , 2014 +# Tubuntu , 2013-2014 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-07 14:32+0200\n" -"PO-Revision-Date: 2014-09-08 10:08+0000\n" -"Last-Translator: fabrixxm \n" -"Language-Team: Catalan (http://www.transifex.com/projects/p/friendica/language/ca/)\n" +"POT-Creation-Date: 2015-01-22 17:30+0100\n" +"PO-Revision-Date: 2015-01-23 11:48+0000\n" +"Last-Translator: Sylvain Lagacé\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" "Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/vier/config.php:52 ../../view/theme/diabook/config.php:148 -#: ../../view/theme/diabook/theme.php:633 -#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 -#: ../../object/Item.php:678 ../../mod/contacts.php:470 -#: ../../mod/manage.php:110 ../../mod/fsuggest.php:107 -#: ../../mod/photos.php:1084 ../../mod/photos.php:1205 -#: ../../mod/photos.php:1512 ../../mod/photos.php:1563 -#: ../../mod/photos.php:1607 ../../mod/photos.php:1695 -#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137 -#: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/profiles.php:645 ../../mod/install.php:248 -#: ../../mod/install.php:286 ../../mod/crepair.php:179 -#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 -msgid "Submit" -msgstr "Enviar" - -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/vier/config.php:54 ../../view/theme/diabook/config.php:150 -#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 -msgid "Theme settings" -msgstr "Configuració de Temes" +#: ../../mod/contacts.php:107 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "%d contact édité" +msgstr[1] "%d contacts édités." -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Ajusteu el nivell de canvi de mida d'imatges en els missatges i comentaris ( amplada i alçada" +#: ../../mod/contacts.php:138 ../../mod/contacts.php:271 +msgid "Could not access contact record." +msgstr "Impossible d'accéder à l'enregistrement du contact." -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/diabook/config.php:151 -#: ../../view/theme/dispy/config.php:73 -msgid "Set font-size for posts and comments" -msgstr "Canvia la mida del tipus de lletra per enviaments i comentaris" +#: ../../mod/contacts.php:152 +msgid "Could not locate selected profile." +msgstr "Impossible de localiser le profil séléctionné." -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Ajustar l'ample del tema" +#: ../../mod/contacts.php:185 +msgid "Contact updated." +msgstr "Contact mis-à-jour." -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Esquema de colors" +#: ../../mod/contacts.php:187 ../../mod/dfrn_request.php:576 +msgid "Failed to update contact record." +msgstr "Échec de mise-à-jour du contact." + +#: ../../mod/contacts.php:253 ../../mod/manage.php:96 +#: ../../mod/display.php:475 ../../mod/profile_photo.php:19 +#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180 +#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9 +#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19 +#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78 +#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:22 +#: ../../mod/notifications.php:66 ../../mod/message.php:38 +#: ../../mod/message.php:174 ../../mod/crepair.php:119 +#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9 +#: ../../mod/events.php:140 ../../mod/install.php:151 +#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 +#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 +#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102 +#: ../../mod/settings.php:596 ../../mod/settings.php:601 +#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114 +#: ../../mod/suggest.php:58 ../../mod/profiles.php:148 +#: ../../mod/profiles.php:584 ../../mod/editpost.php:10 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135 +#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134 +#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23 +#: ../../mod/attach.php:33 ../../include/items.php:4683 ../../index.php:369 +msgid "Permission denied." +msgstr "Permission refusée." -#: ../../view/theme/vier/config.php:55 -msgid "Set style" -msgstr "" +#: ../../mod/contacts.php:286 +msgid "Contact has been blocked" +msgstr "Le contact a été bloqué" -#: ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:328 -msgid "don't show" -msgstr "no mostris" +#: ../../mod/contacts.php:286 +msgid "Contact has been unblocked" +msgstr "Le contact n'est plus bloqué" -#: ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:327 -msgid "show" -msgstr "mostra" +#: ../../mod/contacts.php:297 +msgid "Contact has been ignored" +msgstr "Le contact a été ignoré" -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Canvia l'espaiat de línia per enviaments i comentaris" +#: ../../mod/contacts.php:297 +msgid "Contact has been unignored" +msgstr "Le contact n'est plus ignoré" -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "canvia la resolució per a la columna central" +#: ../../mod/contacts.php:309 +msgid "Contact has been archived" +msgstr "Contact archivé" -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Canvia l'esquema de color" +#: ../../mod/contacts.php:309 +msgid "Contact has been unarchived" +msgstr "Contact désarchivé" -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Ajustar el factor de zoom de Earth Layers" +#: ../../mod/contacts.php:334 ../../mod/contacts.php:710 +msgid "Do you really want to delete this contact?" +msgstr "Voulez-vous vraiment supprimer ce contact?" -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "Ajustar longitud (X) per Earth Layers" +#: ../../mod/contacts.php:336 ../../mod/message.php:209 +#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 +#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 +#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 +#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 +#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 +#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 +#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 +#: ../../mod/register.php:233 ../../mod/suggest.php:29 +#: ../../mod/profiles.php:627 ../../mod/profiles.php:630 ../../mod/api.php:105 +#: ../../include/items.php:4528 +msgid "Yes" +msgstr "Oui" + +#: ../../mod/contacts.php:339 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 +#: ../../mod/message.php:212 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615 +#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844 +#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 +#: ../../mod/photos.php:203 ../../mod/photos.php:292 +#: ../../include/conversation.php:1129 ../../include/items.php:4531 +msgid "Cancel" +msgstr "Annuler" -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Ajustar latitud (Y) per Earth Layers" +#: ../../mod/contacts.php:351 +msgid "Contact has been removed." +msgstr "Ce contact a été retiré." -#: ../../view/theme/diabook/config.php:158 -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "Pàgines de la Comunitat" +#: ../../mod/contacts.php:389 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Vous êtes ami (et réciproquement) avec %s" -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Earth Layers" +#: ../../mod/contacts.php:393 +#, php-format +msgid "You are sharing with %s" +msgstr "Vous partagez avec %s" -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Perfils de Comunitat" +#: ../../mod/contacts.php:398 +#, php-format +msgid "%s is sharing with you" +msgstr "%s partage avec vous" -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "Ajuda o @NouAqui?" +#: ../../mod/contacts.php:415 +msgid "Private communications are not available for this contact." +msgstr "Les communications privées ne sont pas disponibles pour ce contact." -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Serveis Connectats" +#: ../../mod/contacts.php:418 ../../mod/admin.php:546 +msgid "Never" +msgstr "Jamais" -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Trobar Amistats" +#: ../../mod/contacts.php:422 +msgid "(Update was successful)" +msgstr "(Mise à jour effectuée avec succès)" -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Últims usuaris" +#: ../../mod/contacts.php:422 +msgid "(Update was not successful)" +msgstr "(Mise à jour échouée)" -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Últimes fotos" +#: ../../mod/contacts.php:424 +msgid "Suggest friends" +msgstr "Suggérer amitié/contact" -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Últims \"m'agrada\"" +#: ../../mod/contacts.php:428 +#, php-format +msgid "Network type: %s" +msgstr "Type de réseau %s" -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105 -#: ../../include/nav.php:146 ../../mod/notifications.php:93 -msgid "Home" -msgstr "Inici" +#: ../../mod/contacts.php:431 ../../include/contact_widgets.php:200 +#, 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" -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:146 -msgid "Your posts and conversations" -msgstr "Els teus anuncis i converses" +#: ../../mod/contacts.php:436 +msgid "View all contacts" +msgstr "Voir tous les contacts" -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2070 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 -#: ../../include/nav.php:77 ../../mod/profperm.php:103 -#: ../../mod/newmember.php:32 -msgid "Profile" -msgstr "Perfil" +#: ../../mod/contacts.php:441 ../../mod/contacts.php:500 +#: ../../mod/contacts.php:713 ../../mod/admin.php:981 +msgid "Unblock" +msgstr "Débloquer" -#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 -msgid "Your profile page" -msgstr "La seva pàgina de perfil" +#: ../../mod/contacts.php:441 ../../mod/contacts.php:500 +#: ../../mod/contacts.php:713 ../../mod/admin.php:980 +msgid "Block" +msgstr "Bloquer" -#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:175 -#: ../../mod/contacts.php:694 -msgid "Contacts" -msgstr "Contactes" +#: ../../mod/contacts.php:444 +msgid "Toggle Blocked status" +msgstr "(dés)activer l'état \"bloqué\"" -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Els teus contactes" +#: ../../mod/contacts.php:447 ../../mod/contacts.php:501 +#: ../../mod/contacts.php:714 +msgid "Unignore" +msgstr "Ne plus ignorer" -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2077 -#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Fotos" +#: ../../mod/contacts.php:447 ../../mod/contacts.php:501 +#: ../../mod/contacts.php:714 ../../mod/notifications.php:51 +#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 +msgid "Ignore" +msgstr "Ignorer" -#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 -msgid "Your photos" -msgstr "Les seves fotos" +#: ../../mod/contacts.php:450 +msgid "Toggle Ignored status" +msgstr "(dés)activer l'état \"ignoré\"" -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2094 -#: ../../include/nav.php:80 ../../mod/events.php:370 -msgid "Events" -msgstr "Esdeveniments" +#: ../../mod/contacts.php:454 ../../mod/contacts.php:715 +msgid "Unarchive" +msgstr "Désarchiver" -#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80 -msgid "Your events" -msgstr "Els seus esdeveniments" +#: ../../mod/contacts.php:454 ../../mod/contacts.php:715 +msgid "Archive" +msgstr "Archiver" -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81 -msgid "Personal notes" -msgstr "Notes personals" +#: ../../mod/contacts.php:457 +msgid "Toggle Archive status" +msgstr "(dés)activer l'état \"archivé\"" -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Les seves fotos personals" +#: ../../mod/contacts.php:460 +msgid "Repair" +msgstr "Réparer" -#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129 -#: ../../mod/community.php:32 -msgid "Community" -msgstr "Comunitat" +#: ../../mod/contacts.php:463 +msgid "Advanced Contact Settings" +msgstr "Réglages avancés du contact" -#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1964 -msgid "event" -msgstr "esdeveniment" +#: ../../mod/contacts.php:469 +msgid "Communications lost with this contact!" +msgstr "Communications perdues avec ce contact !" -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1919 -#: ../../include/conversation.php:121 ../../include/conversation.php:130 -#: ../../include/conversation.php:249 ../../include/conversation.php:258 -#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 -#: ../../mod/tagger.php:62 -msgid "status" -msgstr "estatus" +#: ../../mod/contacts.php:472 +msgid "Contact Editor" +msgstr "Éditeur de contact" + +#: ../../mod/contacts.php:474 ../../mod/manage.php:110 +#: ../../mod/fsuggest.php:107 ../../mod/message.php:335 +#: ../../mod/message.php:564 ../../mod/crepair.php:186 +#: ../../mod/events.php:478 ../../mod/content.php:710 +#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137 +#: ../../mod/profiles.php:652 ../../mod/localtime.php:45 +#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084 +#: ../../mod/photos.php:1203 ../../mod/photos.php:1514 +#: ../../mod/photos.php:1565 ../../mod/photos.php:1609 +#: ../../mod/photos.php:1697 ../../object/Item.php:678 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 +#: ../../view/theme/diabook/config.php:148 +#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53 +#: ../../view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Envoyer" -#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:1919 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1966 ../../mod/like.php:149 -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 -msgid "photo" -msgstr "foto" +#: ../../mod/contacts.php:475 +msgid "Profile Visibility" +msgstr "Visibilité du profil" -#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:1935 -#: ../../include/conversation.php:137 ../../mod/like.php:166 +#: ../../mod/contacts.php:476 #, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "a %1$s agrada %2$s de %3$s" - -#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 -#: ../../mod/photos.php:155 ../../mod/photos.php:1064 -#: ../../mod/photos.php:1189 ../../mod/photos.php:1212 -#: ../../mod/photos.php:1758 ../../mod/photos.php:1770 -msgid "Contact Photos" -msgstr "Fotos de Contacte" +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." -#: ../../view/theme/diabook/theme.php:500 ../../include/user.php:335 -#: ../../include/user.php:342 ../../include/user.php:349 -#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1189 -#: ../../mod/photos.php:1212 ../../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 -msgid "Profile Photos" -msgstr "Fotos del Perfil" +#: ../../mod/contacts.php:477 +msgid "Contact Information / Notes" +msgstr "Informations de contact / Notes" -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Directori Local" +#: ../../mod/contacts.php:478 +msgid "Edit contact notes" +msgstr "Éditer les notes des contacts" -#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51 -msgid "Global Directory" -msgstr "Directori Global" +#: ../../mod/contacts.php:483 ../../mod/contacts.php:678 +#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visiter le profil de %s [%s]" -#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "Aficions Similars" +#: ../../mod/contacts.php:484 +msgid "Block/Unblock contact" +msgstr "Bloquer/débloquer ce contact" -#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35 -#: ../../mod/suggest.php:66 -msgid "Friend Suggestions" -msgstr "Amics Suggerits" +#: ../../mod/contacts.php:485 +msgid "Ignore contact" +msgstr "Ignorer ce contact" -#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "Invita Amics" +#: ../../mod/contacts.php:486 +msgid "Repair URL settings" +msgstr "Réglages de réparation des URL" -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:170 -#: ../../mod/settings.php:85 ../../mod/admin.php:1065 ../../mod/admin.php:1286 -#: ../../mod/newmember.php:22 -msgid "Settings" -msgstr "Ajustos" +#: ../../mod/contacts.php:487 +msgid "View conversations" +msgstr "Voir les conversations" -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Ajustar el factor de zoom per Earth Layers" +#: ../../mod/contacts.php:489 +msgid "Delete contact" +msgstr "Effacer ce contact" -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Mostra/amaga els marcs de la columna a ma dreta" +#: ../../mod/contacts.php:493 +msgid "Last update:" +msgstr "Dernière mise-à-jour :" -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Adaptació" +#: ../../mod/contacts.php:495 +msgid "Update public posts" +msgstr "Mettre à jour les publications publiques:" -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Esquerra" +#: ../../mod/contacts.php:497 ../../mod/admin.php:1475 +msgid "Update now" +msgstr "Mettre à jour" -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Centre" +#: ../../mod/contacts.php:504 +msgid "Currently blocked" +msgstr "Actuellement bloqué" -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Mida del text en enviaments" +#: ../../mod/contacts.php:505 +msgid "Currently ignored" +msgstr "Actuellement ignoré" -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "mida del text en Areas de Text" +#: ../../mod/contacts.php:506 +msgid "Currently archived" +msgstr "Actuellement archivé" -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Establir l'esquema de color" +#: ../../mod/contacts.php:507 ../../mod/notifications.php:157 +#: ../../mod/notifications.php:204 +msgid "Hide this contact from others" +msgstr "Cacher ce contact aux autres" -#: ../../index.php:203 ../../mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "T'has d'identificar per emprar els complements" +#: ../../mod/contacts.php:507 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Les réponses et \"j'aime\" à vos publications publiques peuvent être toujours visibles" -#: ../../index.php:247 ../../mod/help.php:90 -msgid "Not Found" -msgstr "No trobat" +#: ../../mod/contacts.php:508 +msgid "Notification for new posts" +msgstr "Notification des nouvelles publications" -#: ../../index.php:250 ../../mod/help.php:93 -msgid "Page not found." -msgstr "Pàgina no trobada." +#: ../../mod/contacts.php:508 +msgid "Send a notification of every new post of this contact" +msgstr "Envoyer une notification de chaque nouveau message en provenance de ce contact" -#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19 -msgid "Permission denied" -msgstr "Permís denegat" +#: ../../mod/contacts.php:509 +msgid "Fetch further information for feeds" +msgstr "Chercher plus d'informations pour les flux" -#: ../../index.php:360 ../../include/items.php:4550 ../../mod/attach.php:33 -#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 -#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 -#: ../../mod/group.php:19 ../../mod/delegate.php:6 -#: ../../mod/notifications.php:66 ../../mod/settings.php:102 -#: ../../mod/settings.php:593 ../../mod/settings.php:598 -#: ../../mod/contacts.php:249 ../../mod/wall_attach.php:55 -#: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10 -#: ../../mod/regmod.php:109 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/suggest.php:56 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78 -#: ../../mod/viewcontacts.php:22 ../../mod/wall_upload.php:66 -#: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134 -#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23 -#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140 -#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174 -#: ../../mod/profiles.php:148 ../../mod/profiles.php:577 -#: ../../mod/install.php:151 ../../mod/crepair.php:117 ../../mod/poke.php:135 -#: ../../mod/display.php:455 ../../mod/dfrn_confirm.php:55 -#: ../../mod/item.php:148 ../../mod/item.php:164 -#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 -#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 -#: ../../mod/allfriends.php:9 -msgid "Permission denied." -msgstr "Permís denegat." +#: ../../mod/contacts.php:510 +msgid "Disabled" +msgstr "Désactivé" -#: ../../index.php:419 -msgid "toggle mobile" -msgstr "canviar a mòbil" +#: ../../mod/contacts.php:510 +msgid "Fetch information" +msgstr "" -#: ../../boot.php:719 -msgid "Delete this item?" -msgstr "Esborrar aquest element?" +#: ../../mod/contacts.php:510 +msgid "Fetch information and keywords" +msgstr "" -#: ../../boot.php:720 ../../object/Item.php:361 ../../object/Item.php:677 -#: ../../mod/photos.php:1562 ../../mod/photos.php:1606 -#: ../../mod/photos.php:1694 ../../mod/content.php:709 -msgid "Comment" -msgstr "Comentari" +#: ../../mod/contacts.php:512 +msgid "Blacklisted keywords" +msgstr "" -#: ../../boot.php:721 ../../include/contact_widgets.php:205 -#: ../../object/Item.php:390 ../../mod/content.php:606 -msgid "show more" -msgstr "Mostrar més" +#: ../../mod/contacts.php:512 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" -#: ../../boot.php:722 -msgid "show fewer" -msgstr "Mostrar menys" +#: ../../mod/contacts.php:563 +msgid "Suggestions" +msgstr "Suggestions" -#: ../../boot.php:1042 ../../boot.php:1073 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Actualització de %s fracassà. Mira el registre d'errors." +#: ../../mod/contacts.php:566 +msgid "Suggest potential friends" +msgstr "Suggérer des amis potentiels" -#: ../../boot.php:1194 -msgid "Create a New Account" -msgstr "Crear un Nou Compte" +#: ../../mod/contacts.php:569 ../../mod/group.php:194 +msgid "All Contacts" +msgstr "Tous les contacts" -#: ../../boot.php:1195 ../../include/nav.php:109 ../../mod/register.php:266 -msgid "Register" -msgstr "Registrar" +#: ../../mod/contacts.php:572 +msgid "Show all contacts" +msgstr "Montrer tous les contacts" -#: ../../boot.php:1219 ../../include/nav.php:73 -msgid "Logout" -msgstr "Sortir" +#: ../../mod/contacts.php:575 +msgid "Unblocked" +msgstr "Non-bloqués" -#: ../../boot.php:1220 ../../include/nav.php:92 -msgid "Login" -msgstr "Identifica't" +#: ../../mod/contacts.php:578 +msgid "Only show unblocked contacts" +msgstr "Ne montrer que les contacts non-bloqués" -#: ../../boot.php:1222 -msgid "Nickname or Email address: " -msgstr "Àlies o Adreça de correu:" +#: ../../mod/contacts.php:582 +msgid "Blocked" +msgstr "Bloqués" -#: ../../boot.php:1223 -msgid "Password: " -msgstr "Contrasenya:" +#: ../../mod/contacts.php:585 +msgid "Only show blocked contacts" +msgstr "Ne montrer que les contacts bloqués" -#: ../../boot.php:1224 -msgid "Remember me" -msgstr "Recorda'm ho" +#: ../../mod/contacts.php:589 +msgid "Ignored" +msgstr "Ignorés" -#: ../../boot.php:1227 -msgid "Or login using OpenID: " -msgstr "O accedixi emprant OpenID:" +#: ../../mod/contacts.php:592 +msgid "Only show ignored contacts" +msgstr "Ne montrer que les contacts ignorés" -#: ../../boot.php:1233 -msgid "Forgot your password?" -msgstr "Oblidà la contrasenya?" +#: ../../mod/contacts.php:596 +msgid "Archived" +msgstr "Archivés" -#: ../../boot.php:1234 ../../mod/lostpass.php:109 -msgid "Password Reset" -msgstr "Restabliment de Contrasenya" +#: ../../mod/contacts.php:599 +msgid "Only show archived contacts" +msgstr "Ne montrer que les contacts archivés" -#: ../../boot.php:1236 -msgid "Website Terms of Service" -msgstr "Termes del Servei al Llocweb" +#: ../../mod/contacts.php:603 +msgid "Hidden" +msgstr "Cachés" -#: ../../boot.php:1237 -msgid "terms of service" -msgstr "termes del servei" +#: ../../mod/contacts.php:606 +msgid "Only show hidden contacts" +msgstr "Ne montrer que les contacts masqués" -#: ../../boot.php:1239 -msgid "Website Privacy Policy" -msgstr "Política de Privacitat al Llocweb" +#: ../../mod/contacts.php:654 +msgid "Mutual Friendship" +msgstr "Relation réciproque" -#: ../../boot.php:1240 -msgid "privacy policy" -msgstr "política de privacitat" +#: ../../mod/contacts.php:658 +msgid "is a fan of yours" +msgstr "Vous suit" -#: ../../boot.php:1373 -msgid "Requested account is not available." -msgstr "El compte sol·licitat no esta disponible" +#: ../../mod/contacts.php:662 +msgid "you are a fan of" +msgstr "Vous le/la suivez" -#: ../../boot.php:1412 ../../mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "El perfil sol·licitat no està disponible." +#: ../../mod/contacts.php:679 ../../mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Éditer le contact" -#: ../../boot.php:1455 ../../boot.php:1589 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Editar perfil" +#: ../../mod/contacts.php:701 ../../include/nav.php:175 +#: ../../view/theme/diabook/theme.php:125 +msgid "Contacts" +msgstr "Contacts" -#: ../../boot.php:1522 ../../include/contact_widgets.php:10 -#: ../../mod/suggest.php:88 ../../mod/match.php:58 -msgid "Connect" -msgstr "Connexió" +#: ../../mod/contacts.php:705 +msgid "Search your contacts" +msgstr "Rechercher dans vos contacts" -#: ../../boot.php:1554 -msgid "Message" -msgstr "Missatge" +#: ../../mod/contacts.php:706 ../../mod/directory.php:61 +msgid "Finding: " +msgstr "Trouvé: " -#: ../../boot.php:1560 ../../include/nav.php:173 -msgid "Profiles" -msgstr "Perfils" +#: ../../mod/contacts.php:707 ../../mod/directory.php:63 +#: ../../include/contact_widgets.php:34 +msgid "Find" +msgstr "Trouver" -#: ../../boot.php:1560 -msgid "Manage/edit profiles" -msgstr "Gestiona/edita perfils" +#: ../../mod/contacts.php:712 ../../mod/settings.php:132 +#: ../../mod/settings.php:640 +msgid "Update" +msgstr "Mises-à-jour" -#: ../../boot.php:1565 ../../boot.php:1591 ../../mod/profiles.php:763 -msgid "Change profile photo" -msgstr "Canviar la foto del perfil" +#: ../../mod/contacts.php:716 ../../mod/group.php:171 ../../mod/admin.php:979 +#: ../../mod/content.php:438 ../../mod/content.php:741 +#: ../../mod/settings.php:677 ../../mod/photos.php:1654 +#: ../../object/Item.php:130 ../../include/conversation.php:614 +msgid "Delete" +msgstr "Supprimer" -#: ../../boot.php:1566 ../../mod/profiles.php:764 -msgid "Create New Profile" -msgstr "Crear un Nou Perfil" +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Aucun profil" -#: ../../boot.php:1576 ../../mod/profiles.php:775 -msgid "Profile Image" -msgstr "Imatge del Perfil" +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Gérer les identités et/ou les pages" -#: ../../boot.php:1579 ../../mod/profiles.php:777 -msgid "visible to everybody" -msgstr "Visible per tothom" +#: ../../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." -#: ../../boot.php:1580 ../../mod/profiles.php:778 -msgid "Edit visibility" -msgstr "Editar visibilitat" +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Choisir une identité à gérer: " -#: ../../boot.php:1602 ../../include/event.php:40 -#: ../../include/bb2diaspora.php:156 ../../mod/events.php:471 -#: ../../mod/directory.php:136 -msgid "Location:" -msgstr "Ubicació:" +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Publication réussie." -#: ../../boot.php:1604 ../../include/profile_advanced.php:17 -#: ../../mod/directory.php:138 -msgid "Gender:" -msgstr "Gènere:" +#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368 +msgid "Permission denied" +msgstr "Permission refusée" -#: ../../boot.php:1607 ../../include/profile_advanced.php:37 -#: ../../mod/directory.php:140 -msgid "Status:" -msgstr "Estatus:" +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Identifiant de profil invalide." -#: ../../boot.php:1609 ../../include/profile_advanced.php:48 -#: ../../mod/directory.php:142 -msgid "Homepage:" -msgstr "Pàgina web:" +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Éditer la visibilité du profil" -#: ../../boot.php:1657 -msgid "Network:" -msgstr "" +#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2114 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 +#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 +msgid "Profile" +msgstr "Profil" -#: ../../boot.php:1687 ../../boot.php:1773 -msgid "g A l F d" -msgstr "g A l F d" +#: ../../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." -#: ../../boot.php:1688 ../../boot.php:1774 -msgid "F d" -msgstr "F d" +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Visible par" -#: ../../boot.php:1733 ../../boot.php:1814 -msgid "[today]" -msgstr "[avui]" +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Tous les contacts (ayant un accès sécurisé)" -#: ../../boot.php:1745 -msgid "Birthday Reminders" -msgstr "Recordatori d'Aniversaris" +#: ../../mod/display.php:70 ../../mod/display.php:260 +#: ../../mod/display.php:479 ../../mod/viewsrc.php:15 ../../mod/admin.php:166 +#: ../../mod/admin.php:1024 ../../mod/admin.php:1237 ../../mod/notice.php:15 +#: ../../include/items.php:4487 +msgid "Item not found." +msgstr "Élément introuvable." -#: ../../boot.php:1746 -msgid "Birthdays this week:" -msgstr "Aniversari aquesta setmana" +#: ../../mod/display.php:200 ../../mod/videos.php:115 +#: ../../mod/viewcontacts.php:17 ../../mod/community.php:18 +#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89 +#: ../../mod/directory.php:33 ../../mod/photos.php:920 +msgid "Public access denied." +msgstr "Accès public refusé." -#: ../../boot.php:1807 -msgid "[No description]" -msgstr "[sense descripció]" +#: ../../mod/display.php:308 ../../mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "L'accès au profil a été restreint." -#: ../../boot.php:1825 -msgid "Event Reminders" -msgstr "Recordatori d'Esdeveniments" +#: ../../mod/display.php:472 +msgid "Item has been removed." +msgstr "Cet élément a été enlevé." -#: ../../boot.php:1826 -msgid "Events this week:" -msgstr "Esdeveniments aquesta setmana" +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Bienvenue sur Friendica" -#: ../../boot.php:2063 ../../include/nav.php:76 -msgid "Status" -msgstr "Estatus" +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Checklist du nouvel utilisateur" -#: ../../boot.php:2066 -msgid "Status Messages and Posts" -msgstr "Missatges i Enviaments d'Estatus" +#: ../../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." -#: ../../boot.php:2073 -msgid "Profile Details" -msgstr "Detalls del Perfil" +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "Bien démarrer" -#: ../../boot.php:2080 ../../mod/photos.php:52 -msgid "Photo Albums" -msgstr "Àlbum de Fotos" +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Friendica pas-à-pas" -#: ../../boot.php:2084 ../../boot.php:2087 ../../include/nav.php:79 -msgid "Videos" -msgstr "Vídeos" +#: ../../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." -#: ../../boot.php:2097 -msgid "Events and Calendar" -msgstr "Esdeveniments i Calendari" +#: ../../mod/newmember.php:22 ../../mod/admin.php:1076 +#: ../../mod/admin.php:1297 ../../mod/settings.php:85 +#: ../../include/nav.php:170 ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 +msgid "Settings" +msgstr "Réglages" -#: ../../boot.php:2101 ../../mod/notes.php:44 -msgid "Personal Notes" -msgstr "Notes Personals" +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Éditer vos Réglages" -#: ../../boot.php:2104 -msgid "Only You Can See This" -msgstr "Només ho pots veure tu" +#: ../../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." -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Característiques Generals" +#: ../../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." -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Perfils Múltiples" +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 +#: ../../mod/profiles.php:665 +msgid "Upload Profile Photo" +msgstr "Téléverser une photo de profil" -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Habilitat per crear múltiples perfils" +#: ../../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." -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Característiques de Composició d'Enviaments" +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Éditer votre Profil" -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Editor de Text Enriquit" +#: ../../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." -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Activar l'Editor de Text Enriquit" +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Mots-clés du profil" -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Vista Prèvia de l'Enviament" +#: ../../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." -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Permetre la vista prèvia dels enviament i comentaris abans de publicar-los" +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "Connexions" -#: ../../include/features.php:33 -msgid "Auto-mention Forums" -msgstr "" +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/features.php:33 +#: ../../mod/newmember.php:49 msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "" - -#: ../../include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Barra Lateral Selectora de Xarxa " +"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." -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "Cerca per Data" +#: ../../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." -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Possibilitat de seleccionar els missatges per intervals de temps" +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "Importer courriels" -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "Filtre de Grup" +#: ../../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." -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Habilitar botò per veure missatges de Xarxa només del grup seleccionat" +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Consulter vos Contacts" -#: ../../include/features.php:41 -msgid "Network Filter" -msgstr "Filtre de Xarxa" +#: ../../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." -#: ../../include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Habilitar botò per veure missatges de Xarxa només de la xarxa seleccionada" +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Consulter l'Annuaire de votre Site" -#: ../../include/features.php:42 ../../mod/network.php:188 -#: ../../mod/search.php:30 -msgid "Saved Searches" -msgstr "Cerques Guardades" +#: ../../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é." -#: ../../include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Guarda els termes de cerca per re-emprar" +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "Trouver de nouvelles personnes" -#: ../../include/features.php:47 -msgid "Network Tabs" -msgstr "Pestanya Xarxes" +#: ../../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." -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "Pestanya Xarxa Personal" +#: ../../mod/newmember.php:66 ../../include/group.php:270 +msgid "Groups" +msgstr "Groupes" -#: ../../include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Habilitar la pestanya per veure unicament missatges de Xarxa en els que has intervingut" +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Grouper vos contacts" -#: ../../include/features.php:49 -msgid "Network New Tab" -msgstr "Pestanya Nova Xarxa" +#: ../../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." -#: ../../include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Habilitar la pestanya per veure només els nous missatges de Xarxa (els de les darreres 12 hores)" +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Pourquoi mes éléments ne sont pas publics?" -#: ../../include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "Pestanya d'Enllaços de Xarxa Compartits" +#: ../../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, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus." -#: ../../include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Habilitar la pestanya per veure els missatges de Xarxa amb enllaços en ells" +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "Obtenir de l'aide" -#: ../../include/features.php:55 -msgid "Post/Comment Tools" -msgstr "Eines d'Enviaments/Comentaris" +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Aller à la section Aide" -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "Esborrat Múltiple" +#: ../../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." -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Sel·lecciona i esborra múltiples enviaments/commentaris en una vegada" +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Erreur de protocole OpenID. Pas d'ID en retour." -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Editar Missatges Enviats" +#: ../../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." -#: ../../include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "Edita i corregeix enviaments i comentaris una vegada han estat enviats" +#: ../../mod/openid.php:93 ../../include/auth.php:112 +#: ../../include/auth.php:175 +msgid "Login failed." +msgstr "Échec de connexion." -#: ../../include/features.php:58 -msgid "Tagging" -msgstr "Etiquetant" +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Image envoyée, mais impossible de la retailler." -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Habilitar el etiquetar missatges existents" +#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81 +#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204 +#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305 +#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../include/user.php:335 +#: ../../include/user.php:342 ../../include/user.php:349 +#: ../../view/theme/diabook/theme.php:500 +msgid "Profile Photos" +msgstr "Photos du profil" -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "Categories en Enviaments" +#: ../../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." -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "Afegeix categories als teus enviaments" +#: ../../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." -#: ../../include/features.php:60 ../../include/contact_widgets.php:104 -msgid "Saved Folders" -msgstr "Carpetes Guardades" +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Impossible de traiter l'image" -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Habilitar el arxivar missatges en carpetes" +#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "L'image dépasse la taille limite de %d" -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "No agrada el Missatge" +#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144 +#: ../../mod/photos.php:807 +msgid "Unable to process image." +msgstr "Impossible de traiter l'image." -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Habilita el marcar amb \"no agrada\" els enviaments/comentaris" +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Fichier à téléverser:" -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "Missatge Estelar" +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Choisir un profil:" -#: ../../include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "Habilita el marcar amb un estel, missatges especials" +#: ../../mod/profile_photo.php:245 +msgid "Upload" +msgstr "Téléverser" -#: ../../include/features.php:63 -msgid "Mute Post Notifications" -msgstr "" +#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062 +msgid "or" +msgstr "ou" -#: ../../include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "" +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "ignorer cette étape" -#: ../../include/items.php:2090 ../../include/datetime.php:472 -#, php-format -msgid "%s's birthday" -msgstr "%s aniversari" +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "choisissez une photo depuis vos albums" -#: ../../include/items.php:2091 ../../include/datetime.php:473 -#, php-format -msgid "Happy Birthday %s" -msgstr "Feliç Aniversari %s" +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "(Re)cadrer l'image" -#: ../../include/items.php:3856 ../../mod/dfrn_request.php:721 -#: ../../mod/dfrn_confirm.php:752 -msgid "[Name Withheld]" -msgstr "[Nom Amagat]" +#: ../../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." -#: ../../include/items.php:4354 ../../mod/admin.php:166 -#: ../../mod/admin.php:1013 ../../mod/admin.php:1226 ../../mod/viewsrc.php:15 -#: ../../mod/notice.php:15 ../../mod/display.php:70 ../../mod/display.php:240 -#: ../../mod/display.php:459 -msgid "Item not found." -msgstr "Article no trobat." +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Édition terminée" -#: ../../include/items.php:4393 -msgid "Do you really want to delete this item?" -msgstr "Realment vols esborrar aquest article?" - -#: ../../include/items.php:4395 ../../mod/settings.php:1007 -#: ../../mod/settings.php:1013 ../../mod/settings.php:1021 -#: ../../mod/settings.php:1025 ../../mod/settings.php:1030 -#: ../../mod/settings.php:1036 ../../mod/settings.php:1042 -#: ../../mod/settings.php:1048 ../../mod/settings.php:1078 -#: ../../mod/settings.php:1079 ../../mod/settings.php:1080 -#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 -#: ../../mod/contacts.php:332 ../../mod/register.php:230 -#: ../../mod/dfrn_request.php:834 ../../mod/api.php:105 -#: ../../mod/suggest.php:29 ../../mod/message.php:209 -#: ../../mod/profiles.php:620 ../../mod/profiles.php:623 -msgid "Yes" -msgstr "Si" - -#: ../../include/items.php:4398 ../../include/conversation.php:1129 -#: ../../mod/settings.php:612 ../../mod/settings.php:638 -#: ../../mod/contacts.php:335 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:848 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 ../../mod/message.php:212 -msgid "Cancel" -msgstr "Cancel·lar" +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Image téléversée avec succès." -#: ../../include/items.php:4616 -msgid "Archives" -msgstr "Arxius" +#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172 +#: ../../mod/photos.php:834 +msgid "Image upload failed." +msgstr "Le téléversement de l'image a échoué." -#: ../../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 grup eliminat amb aquest nom va ser restablert. Els permisos dels elements existents poden aplicar-se a aquest grup i tots els futurs membres. Si això no és el que pretén, si us plau, crei un altre grup amb un nom diferent." +#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 +#: ../../include/conversation.php:126 ../../include/conversation.php:254 +#: ../../include/text.php:1965 ../../include/diaspora.php:1919 +#: ../../view/theme/diabook/theme.php:471 +msgid "photo" +msgstr "photo" -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Privacitat per defecte per a nous contactes" +#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 +#: ../../mod/like.php:319 ../../include/conversation.php:121 +#: ../../include/conversation.php:130 ../../include/conversation.php:249 +#: ../../include/conversation.php:258 ../../include/diaspora.php:1919 +#: ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 +msgid "status" +msgstr "le statut" -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Tothom" +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s suit les %3$s de %2$s" -#: ../../include/group.php:249 -msgid "edit" -msgstr "editar" +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Étiquette supprimée" -#: ../../include/group.php:270 ../../mod/newmember.php:66 -msgid "Groups" -msgstr "Grups" +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Enlever l'étiquette de l'élément" -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Editar grup" +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Sélectionner une étiquette à supprimer: " -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Crear un nou grup" +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139 +msgid "Remove" +msgstr "Utiliser comme photo de profil" -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Contactes en cap grup" +#: ../../mod/filer.php:30 ../../include/conversation.php:1006 +#: ../../include/conversation.php:1024 +msgid "Save to Folder:" +msgstr "Sauver dans le Dossier:" -#: ../../include/group.php:275 ../../mod/network.php:189 -msgid "add" -msgstr "afegir" +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- choisir -" + +#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63 +#: ../../include/text.php:955 +msgid "Save" +msgstr "Sauver" -#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926 -#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955 -#: ../../include/Photo.php:911 ../../include/Photo.php:926 -#: ../../include/Photo.php:933 ../../include/Photo.php:955 -#: ../../include/message.php:144 ../../mod/wall_upload.php:169 +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Contact ajouté" + +#: ../../mod/item.php:113 +msgid "Unable to locate original post." +msgstr "Impossible de localiser la publication originale." + +#: ../../mod/item.php:345 +msgid "Empty post discarded." +msgstr "Publication vide rejetée." + +#: ../../mod/item.php:484 ../../mod/wall_upload.php:169 #: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 -#: ../../mod/item.php:463 +#: ../../include/Photo.php:916 ../../include/Photo.php:931 +#: ../../include/Photo.php:938 ../../include/Photo.php:960 +#: ../../include/message.php:144 msgid "Wall Photos" -msgstr "Fotos del Mur" +msgstr "Photos du mur" -#: ../../include/dba.php:51 ../../include/dba_pdo.php:72 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "No put trobar informació de DNS del servidor de base de dades '%s'" +#: ../../mod/item.php:938 +msgid "System error. Post not saved." +msgstr "Erreur système. Publication non sauvée." -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Afegir Nou Contacte" +#: ../../mod/item.php:964 +#, 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." -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Introdueixi adreça o ubicació web" +#: ../../mod/item.php:966 +#, php-format +msgid "You may visit them online at %s" +msgstr "Vous pouvez leur rendre visite sur %s" -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Exemple: bob@example.com, http://example.com/barbara" +#: ../../mod/item.php:967 +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." -#: ../../include/contact_widgets.php:24 +#: ../../mod/item.php:971 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitació disponible" -msgstr[1] "%d invitacions disponibles" +msgid "%s posted an update." +msgstr "%s a publié une mise à jour." -#: ../../include/contact_widgets.php:30 -msgid "Find People" -msgstr "Trobar Gent" +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Groupe créé." -#: ../../include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Introdueixi nom o aficions" +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Impossible de créer le groupe." -#: ../../include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Connectar/Seguir" +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." +msgstr "Groupe introuvable." -#: ../../include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exemples: Robert Morgenstein, Pescar" +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "Groupe renommé." -#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:700 -#: ../../mod/directory.php:63 -msgid "Find" -msgstr "Cercar" +#: ../../mod/group.php:87 +msgid "Save Group" +msgstr "Sauvegarder le groupe" -#: ../../include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Perfi Aleatori" +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Créez un groupe de contacts/amis." -#: ../../include/contact_widgets.php:71 -msgid "Networks" -msgstr "Xarxes" +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "Nom du groupe: " -#: ../../include/contact_widgets.php:74 -msgid "All Networks" -msgstr "totes les Xarxes" +#: ../../mod/group.php:113 +msgid "Group removed." +msgstr "Groupe enlevé." -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 -msgid "Everything" -msgstr "Tot" +#: ../../mod/group.php:115 +msgid "Unable to remove group." +msgstr "Impossible d'enlever le groupe." -#: ../../include/contact_widgets.php:136 -msgid "Categories" -msgstr "Categories" +#: ../../mod/group.php:179 +msgid "Group Editor" +msgstr "Éditeur de groupe" -#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:427 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contacte en comú" -msgstr[1] "%d contactes en comú" +#: ../../mod/group.php:192 +msgid "Members" +msgstr "Membres" -#: ../../include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Notificacions de Friendica" +#: ../../mod/apps.php:7 ../../index.php:212 +msgid "You must be logged in to use addons. " +msgstr "Vous devez être connecté pour utiliser les greffons." -#: ../../include/enotify.php:21 -msgid "Thank You," -msgstr "Gràcies," +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Applications" -#: ../../include/enotify.php:23 -#, php-format -msgid "%s Administrator" -msgstr "%s Administrador" +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Pas d'application installée." -#: ../../include/enotify.php:30 ../../include/delivery.php:467 -#: ../../include/notifier.php:784 -msgid "noreply" -msgstr "no contestar" +#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18 +#: ../../mod/profiles.php:133 ../../mod/profiles.php:162 +#: ../../mod/profiles.php:596 +msgid "Profile not found." +msgstr "Profil introuvable." -#: ../../include/enotify.php:55 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20 +#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133 +msgid "Contact not found." +msgstr "Contact introuvable." -#: ../../include/enotify.php:59 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica: Notifica] nou correu rebut a %s" +#: ../../mod/dfrn_confirm.php:121 +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é." -#: ../../include/enotify.php:61 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s t'ha enviat un missatge privat nou en %2$s." +#: ../../mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Réponse du site distant incomprise." -#: ../../include/enotify.php:62 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s t'ha enviat %2$s." +#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "Réponse inattendue du site distant: " -#: ../../include/enotify.php:62 -msgid "a private message" -msgstr "un missatge privat" +#: ../../mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Confirmation achevée avec succès." -#: ../../include/enotify.php:63 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Per favor, visiteu %s per a veure i/o respondre els teus missatges privats." +#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 +#: ../../mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Alerte du site distant: " -#: ../../include/enotify.php:115 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s ha comentat en [url=%2$s]a %3$s[/url]" +#: ../../mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Échec temporaire. Merci de recommencer ultérieurement." -#: ../../include/enotify.php:122 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s ha comentat en [url=%2$s]%3$s de %4$s[/url]" +#: ../../mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "Introduction échouée ou annulée." + +#: ../../mod/dfrn_confirm.php:429 +msgid "Unable to set contact photo." +msgstr "Impossible de définir la photo du contact." -#: ../../include/enotify.php:130 +#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172 +#: ../../include/diaspora.php:620 #, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s ha comentat en [url=%2$s] el teu %3$s[/url]" - -#: ../../include/enotify.php:140 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Notificació] Comentaris a la conversació #%1$d per %2$s" +msgid "%1$s is now friends with %2$s" +msgstr "%1$s est désormais lié à %2$s" -#: ../../include/enotify.php:141 +#: ../../mod/dfrn_confirm.php:571 #, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s ha comentat un element/conversació que estas seguint." +msgid "No user record found for '%s' " +msgstr "Pas d'utilisateur trouvé pour '%s' " -#: ../../include/enotify.php:144 ../../include/enotify.php:159 -#: ../../include/enotify.php:172 ../../include/enotify.php:185 -#: ../../include/enotify.php:203 ../../include/enotify.php:216 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Si us pau, visiteu %s per a veure i/o respondre la conversació." +#: ../../mod/dfrn_confirm.php:581 +msgid "Our site encryption key is apparently messed up." +msgstr "Notre clé de chiffrement de site est apparemment corrompue." -#: ../../include/enotify.php:151 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notifica] %s enviat al teu mur del perfil" +#: ../../mod/dfrn_confirm.php:592 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "URL de site absente ou indéchiffrable." -#: ../../include/enotify.php:153 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s ha fet un enviament al teu mur de perfils en %2$s" +#: ../../mod/dfrn_confirm.php:613 +msgid "Contact record was not found for you on our site." +msgstr "Pas d'entrée pour ce contact sur notre site." -#: ../../include/enotify.php:155 +#: ../../mod/dfrn_confirm.php:627 #, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s enviat a [url=%2$s]teu mur[/url]" +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." -#: ../../include/enotify.php:166 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notifica] %s t'ha etiquetat" +#: ../../mod/dfrn_confirm.php:647 +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." -#: ../../include/enotify.php:167 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s t'ha etiquetat a %2$s" +#: ../../mod/dfrn_confirm.php:658 +msgid "Unable to set your contact credentials on our system." +msgstr "Impossible de vous définir des permissions sur notre système." -#: ../../include/enotify.php:168 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s] t'ha etiquetat[/url]." +#: ../../mod/dfrn_confirm.php:725 +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" -#: ../../include/enotify.php:179 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "" +#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717 +#: ../../include/items.php:3979 +msgid "[Name Withheld]" +msgstr "[Nom non-publié]" -#: ../../include/enotify.php:180 +#: ../../mod/dfrn_confirm.php:797 #, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "" +msgid "%1$s has joined %2$s" +msgstr "%1$s a rejoint %2$s" -#: ../../include/enotify.php:181 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "" +#: ../../mod/profile.php:21 ../../boot.php:1453 +msgid "Requested profile is not available." +msgstr "Le profil demandé n'est pas disponible." -#: ../../include/enotify.php:193 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notificació] %1$s t'atia" +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Conseils aux nouveaux venus" -#: ../../include/enotify.php:194 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s t'atia en %2$s" +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "Pas de vidéo sélectionné" -#: ../../include/enotify.php:195 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]t'atia[/url]." +#: ../../mod/videos.php:226 ../../mod/photos.php:1031 +msgid "Access to this item is restricted." +msgstr "Accès restreint à cet élément." -#: ../../include/enotify.php:210 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notifica] %s ha etiquetat el teu missatge" +#: ../../mod/videos.php:301 ../../include/text.php:1402 +msgid "View Video" +msgstr "Regarder la vidéo" -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s ha etiquetat un missatge teu a %2$s" +#: ../../mod/videos.php:308 ../../mod/photos.php:1808 +msgid "View Album" +msgstr "Voir l'album" -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s etiquetà [url=%2$s] el teu enviament[/url]" +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "Vidéos récente" -#: ../../include/enotify.php:223 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notifica] Presentacio rebuda" +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "Téléversé une nouvelle vidéo" -#: ../../include/enotify.php:224 +#: ../../mod/tagger.php:95 ../../include/conversation.php:266 #, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Has rebut una presentació des de '%1$s' en %2$s" +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s a étiqueté %3$s de %2$s avec %4$s" -#: ../../include/enotify.php:225 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Has rebut [url=%1$s] com a presentació[/url] des de %2$s." +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Suggestion d'amitié/contact envoyée." -#: ../../include/enotify.php:228 ../../include/enotify.php:270 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Pot visitar el seu perfil en %s" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Suggérer des amis/contacts" -#: ../../include/enotify.php:230 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Si us plau visiteu %s per aprovar o rebutjar la presentació." +msgid "Suggest a friend for %s" +msgstr "Suggérer un ami/contact pour %s" -#: ../../include/enotify.php:238 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "" +#: ../../mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Impossible de trouver un compte valide." -#: ../../include/enotify.php:239 ../../include/enotify.php:240 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "" +#: ../../mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel." -#: ../../include/enotify.php:246 -msgid "[Friendica:Notify] You have a new follower" +#: ../../mod/lostpass.php:42 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." msgstr "" -#: ../../include/enotify.php:247 ../../include/enotify.php:248 +#: ../../mod/lostpass.php:53 #, php-format -msgid "You have a new follower at %2$s : %1$s" +msgid "" +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" msgstr "" -#: ../../include/enotify.php:261 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notifica] Suggerencia d'amistat rebuda" - -#: ../../include/enotify.php:262 +#: ../../mod/lostpass.php:72 #, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Has rebut una suggerencia d'amistat des de '%1$s' en %2$s" +msgid "Password reset requested at %s" +msgstr "Requête de réinitialisation de mot de passe à %s" -#: ../../include/enotify.php:263 -#, php-format +#: ../../mod/lostpass.php:92 msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Has rebut [url=%1$s] com a suggerencia d'amistat[/url] per a %2$s des de %3$s." - -#: ../../include/enotify.php:268 -msgid "Name:" -msgstr "Nom:" +"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é." -#: ../../include/enotify.php:269 -msgid "Photo:" -msgstr "Foto:" +#: ../../mod/lostpass.php:109 ../../boot.php:1275 +msgid "Password Reset" +msgstr "Réinitialiser le mot de passe" -#: ../../include/enotify.php:272 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Si us plau, visiteu %s per aprovar o rebutjar la suggerencia." +#: ../../mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Votre mot de passe a bien été réinitialisé." -#: ../../include/enotify.php:280 ../../include/enotify.php:293 -msgid "[Friendica:Notify] Connection accepted" -msgstr "" +#: ../../mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Votre nouveau mot de passe est " -#: ../../include/enotify.php:281 ../../include/enotify.php:294 -#, php-format -msgid "'%1$s' has acepted your connection request at %2$s" -msgstr "" +#: ../../mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Sauvez ou copiez ce nouveau mot de passe - puis" -#: ../../include/enotify.php:282 ../../include/enotify.php:295 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "" +#: ../../mod/lostpass.php:113 +msgid "click here to login" +msgstr "cliquez ici pour vous connecter" -#: ../../include/enotify.php:285 +#: ../../mod/lostpass.php:114 msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." -msgstr "" +"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é." -#: ../../include/enotify.php:288 ../../include/enotify.php:302 +#: ../../mod/lostpass.php:125 #, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" msgstr "" -#: ../../include/enotify.php:298 +#: ../../mod/lostpass.php:131 #, php-format msgid "" -"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t\t" msgstr "" -#: ../../include/enotify.php:300 +#: ../../mod/lostpass.php:147 #, php-format +msgid "Your password has been changed at %s" +msgstr "Votre mot de passe a été modifié à %s" + +#: ../../mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Mot de passe oublié?" + +#: ../../mod/lostpass.php:160 msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " -msgstr "" +"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." -#: ../../include/enotify.php:313 -msgid "[Friendica System:Notify] registration request" -msgstr "" +#: ../../mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Pseudo ou Courriel: " -#: ../../include/enotify.php:314 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "" +#: ../../mod/lostpass.php:162 +msgid "Reset" +msgstr "Réinitialiser" -#: ../../include/enotify.php:315 +#: ../../mod/like.php:166 ../../include/conversation.php:137 +#: ../../include/diaspora.php:1935 ../../view/theme/diabook/theme.php:480 #, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "" +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s aime %3$s de %2$s" -#: ../../include/enotify.php:318 +#: ../../mod/like.php:168 ../../include/conversation.php:140 #, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "" +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s n'aime pas %3$s de %2$s" -#: ../../include/enotify.php:321 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "" +#: ../../mod/ping.php:240 +msgid "{0} wants to be your friend" +msgstr "{0} souhaite être votre ami(e)" -#: ../../include/api.php:262 ../../include/api.php:273 -#: ../../include/api.php:374 ../../include/api.php:958 -#: ../../include/api.php:960 -msgid "User not found." -msgstr "" +#: ../../mod/ping.php:245 +msgid "{0} sent you a message" +msgstr "{0} vous a envoyé un message" -#: ../../include/api.php:1167 -msgid "There is no status with this id." -msgstr "" +#: ../../mod/ping.php:250 +msgid "{0} requested registration" +msgstr "{0} a demandé à s'inscrire" -#: ../../include/api.php:1237 -msgid "There is no conversation with this id." -msgstr "" +#: ../../mod/ping.php:256 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} a commenté la publication de %s" -#: ../../include/network.php:892 -msgid "view full size" -msgstr "Veure'l a mida completa" +#: ../../mod/ping.php:261 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0} a aimé la publication de %s" -#: ../../include/Scrape.php:584 -msgid " on Last.fm" -msgstr " a Last.fm" +#: ../../mod/ping.php:266 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0} n'a pas aimé la publication de %s" -#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1125 -msgid "Full Name:" -msgstr "Nom Complet:" +#: ../../mod/ping.php:271 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} est désormais ami(e) avec %s" -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "j F, Y" +#: ../../mod/ping.php:276 +msgid "{0} posted" +msgstr "{0} a publié" -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "j F" +#: ../../mod/ping.php:281 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} a étiqueté la publication de %s avec #%s" -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Aniversari:" +#: ../../mod/ping.php:287 +msgid "{0} mentioned you in a post" +msgstr "{0} vous a mentionné dans une publication" -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Edat:" +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "Aucun contact." -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "per a %1$d %2$s" +#: ../../mod/viewcontacts.php:76 ../../include/text.php:875 +msgid "View Contacts" +msgstr "Voir les contacts" -#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:673 -msgid "Sexual Preference:" -msgstr "Preferència Sexual:" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Identifiant de demande invalide." -#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:675 -msgid "Hometown:" -msgstr "Lloc de residència:" +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "Rejeter" -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Etiquetes:" +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "Système" -#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:676 -msgid "Political Views:" -msgstr "Idees Polítiques:" +#: ../../mod/notifications.php:83 ../../include/nav.php:143 +msgid "Network" +msgstr "Réseau" -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religió:" +#: ../../mod/notifications.php:88 ../../mod/network.php:371 +msgid "Personal" +msgstr "Personnel" -#: ../../include/profile_advanced.php:58 ../../mod/directory.php:144 -msgid "About:" -msgstr "Acerca de:" +#: ../../mod/notifications.php:93 ../../include/nav.php:105 +#: ../../include/nav.php:146 ../../view/theme/diabook/theme.php:123 +msgid "Home" +msgstr "Profil" -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Aficiones/Intereses:" +#: ../../mod/notifications.php:98 ../../include/nav.php:152 +msgid "Introductions" +msgstr "Introductions" -#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:680 -msgid "Likes:" -msgstr "Agrada:" +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "Voir les demandes ignorées" -#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:681 -msgid "Dislikes:" -msgstr "No Agrada" +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "Cacher les demandes ignorées" -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Informació de contacte i Xarxes Socials:" +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " +msgstr "Type de notification: " -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Gustos musicals:" +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "Suggestion d'amitié/contact" -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Llibres, literatura:" +#: ../../mod/notifications.php:152 +#, php-format +msgid "suggested by %s" +msgstr "suggéré(e) par %s" -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Televisió:" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" +msgstr "Poster une nouvelle avtivité d'ami" -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Cinema/ball/cultura/entreteniments:" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" +msgstr "si possible" -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Amor/sentiments:" +#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 +#: ../../mod/admin.php:977 +msgid "Approve" +msgstr "Approuver" -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Treball/ocupació:" +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "Prétend que vous le connaissez: " -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Escola/formació" +#: ../../mod/notifications.php:181 +msgid "yes" +msgstr "oui" -#: ../../include/nav.php:34 ../../mod/navigation.php:20 -msgid "Nothing new here" -msgstr "Res nou aquí" +#: ../../mod/notifications.php:181 +msgid "no" +msgstr "non" -#: ../../include/nav.php:38 ../../mod/navigation.php:24 -msgid "Clear notifications" -msgstr "Neteja notificacions" +#: ../../mod/notifications.php:188 +msgid "Approve as: " +msgstr "Approuver en tant que: " -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Termina sessió" +#: ../../mod/notifications.php:189 +msgid "Friend" +msgstr "Ami" -#: ../../include/nav.php:79 -msgid "Your videos" -msgstr "" +#: ../../mod/notifications.php:190 +msgid "Sharer" +msgstr "Initiateur du partage" -#: ../../include/nav.php:81 -msgid "Your personal notes" -msgstr "" +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "Fan/Admirateur" -#: ../../include/nav.php:92 -msgid "Sign in" -msgstr "Accedeix" +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "Demande de connexion/relation" -#: ../../include/nav.php:105 -msgid "Home Page" -msgstr "Pàgina d'Inici" +#: ../../mod/notifications.php:196 +msgid "New Follower" +msgstr "Nouvel abonné" -#: ../../include/nav.php:109 -msgid "Create an account" -msgstr "Crear un compte" +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "Aucune demande d'introduction." -#: ../../include/nav.php:114 ../../mod/help.php:84 -msgid "Help" -msgstr "Ajuda" +#: ../../mod/notifications.php:220 ../../include/nav.php:153 +msgid "Notifications" +msgstr "Notifications" -#: ../../include/nav.php:114 -msgid "Help and documentation" -msgstr "Ajuda i documentació" +#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 +#: ../../mod/notifications.php:478 +#, php-format +msgid "%s liked %s's post" +msgstr "%s a aimé la publication de %s" -#: ../../include/nav.php:117 -msgid "Apps" -msgstr "Aplicacions" +#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 +#: ../../mod/notifications.php:488 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s n'a pas aimé la publication de %s" -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Afegits: aplicacions, utilitats, jocs" +#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 +#: ../../mod/notifications.php:503 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s est désormais ami(e) avec %s" -#: ../../include/nav.php:119 ../../include/text.php:952 -#: ../../include/text.php:953 ../../mod/search.php:99 -msgid "Search" -msgstr "Cercar" +#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 +#, php-format +msgid "%s created a new post" +msgstr "%s a créé une nouvelle publication" -#: ../../include/nav.php:119 -msgid "Search site content" -msgstr "Busca contingut en el lloc" +#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 +#: ../../mod/notifications.php:513 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s a commenté la publication de %s" -#: ../../include/nav.php:129 -msgid "Conversations on this site" -msgstr "Converses en aquest lloc" +#: ../../mod/notifications.php:306 +msgid "No more network notifications." +msgstr "Aucune notification du réseau." -#: ../../include/nav.php:131 -msgid "Directory" -msgstr "Directori" +#: ../../mod/notifications.php:310 +msgid "Network Notifications" +msgstr "Notifications du réseau" -#: ../../include/nav.php:131 -msgid "People directory" -msgstr "Directori de gent" +#: ../../mod/notifications.php:336 ../../mod/notify.php:75 +msgid "No more system notifications." +msgstr "Pas plus de notifications système." -#: ../../include/nav.php:133 -msgid "Information" -msgstr "" +#: ../../mod/notifications.php:340 ../../mod/notify.php:79 +msgid "System Notifications" +msgstr "Notifications du système" -#: ../../include/nav.php:133 -msgid "Information about this friendica instance" -msgstr "" +#: ../../mod/notifications.php:435 +msgid "No more personal notifications." +msgstr "Aucun notification personnelle." -#: ../../include/nav.php:143 ../../mod/notifications.php:83 -msgid "Network" -msgstr "Xarxa" +#: ../../mod/notifications.php:439 +msgid "Personal Notifications" +msgstr "Notifications personnelles" -#: ../../include/nav.php:143 -msgid "Conversations from your friends" -msgstr "Converses dels teus amics" +#: ../../mod/notifications.php:520 +msgid "No more home notifications." +msgstr "Aucune notification de la page d'accueil." -#: ../../include/nav.php:144 -msgid "Network Reset" -msgstr "Reiniciar Xarxa" +#: ../../mod/notifications.php:524 +msgid "Home Notifications" +msgstr "Notifications de page d'accueil" -#: ../../include/nav.php:144 -msgid "Load Network page with no filters" -msgstr "carrega la pàgina de Xarxa sense filtres" +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Texte source (bbcode) :" -#: ../../include/nav.php:152 ../../mod/notifications.php:98 -msgid "Introductions" -msgstr "Presentacions" +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Texte source (Diaspora) à convertir en BBcode :" -#: ../../include/nav.php:152 -msgid "Friend Requests" -msgstr "Sol·licitud d'Amistat" +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Source input: " -#: ../../include/nav.php:153 ../../mod/notifications.php:220 -msgid "Notifications" -msgstr "Notificacions" +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (HTML brut)" -#: ../../include/nav.php:154 -msgid "See all notifications" -msgstr "Veure totes les notificacions" +#: ../../mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html: " -#: ../../include/nav.php:155 -msgid "Mark all system notifications seen" -msgstr "Marcar totes les notificacions del sistema com a vistes" +#: ../../mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " -#: ../../include/nav.php:159 ../../mod/notifications.php:103 -#: ../../mod/message.php:182 -msgid "Messages" -msgstr "Missatges" +#: ../../mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " -#: ../../include/nav.php:159 -msgid "Private mail" -msgstr "Correu privat" +#: ../../mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " -#: ../../include/nav.php:160 -msgid "Inbox" -msgstr "Safata d'entrada" +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " -#: ../../include/nav.php:161 -msgid "Outbox" -msgstr "Safata de sortida" +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " -#: ../../include/nav.php:162 ../../mod/message.php:9 -msgid "New Message" -msgstr "Nou Missatge" +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Texte source (format Diaspora) :" -#: ../../include/nav.php:165 -msgid "Manage" -msgstr "Gestionar" +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb :" -#: ../../include/nav.php:165 -msgid "Manage other pages" -msgstr "Gestiona altres pàgines" +#: ../../mod/navigation.php:20 ../../include/nav.php:34 +msgid "Nothing new here" +msgstr "Rien de neuf ici" -#: ../../include/nav.php:168 ../../mod/settings.php:62 -msgid "Delegations" -msgstr "Delegacions" +#: ../../mod/navigation.php:24 ../../include/nav.php:38 +msgid "Clear notifications" +msgstr "Effacer les notifications" -#: ../../include/nav.php:168 ../../mod/delegate.php:124 -msgid "Delegate Page Management" -msgstr "Gestió de les Pàgines Delegades" +#: ../../mod/message.php:9 ../../include/nav.php:162 +msgid "New Message" +msgstr "Nouveau message" -#: ../../include/nav.php:170 -msgid "Account settings" -msgstr "Configuració del compte" +#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Pas de destinataire sélectionné." -#: ../../include/nav.php:173 -msgid "Manage/Edit Profiles" -msgstr "Gestiona/Edita Perfils" +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Impossible de localiser les informations du contact." -#: ../../include/nav.php:175 -msgid "Manage/edit friends and contacts" -msgstr "Gestiona/edita amics i contactes" +#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Impossible d'envoyer le message." -#: ../../include/nav.php:182 ../../mod/admin.php:128 -msgid "Admin" -msgstr "Admin" +#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Récupération des messages infructueuse." -#: ../../include/nav.php:182 -msgid "Site setup and configuration" -msgstr "Ajustos i configuració del lloc" +#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Message envoyé." -#: ../../include/nav.php:186 -msgid "Navigation" -msgstr "Navegació" +#: ../../mod/message.php:182 ../../include/nav.php:159 +msgid "Messages" +msgstr "Messages" -#: ../../include/nav.php:186 -msgid "Site map" -msgstr "Mapa del lloc" +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Voulez-vous vraiment supprimer ce message ?" -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "Clica aquí per actualitzar." +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Message supprimé." -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Aquesta acció excedeix els límits del teu plan de subscripció." - -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "Aquesta acció no està disponible en el teu plan de subscripció." - -#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507 -msgid "Disallowed profile URL." -msgstr "Perfil URL no permès." - -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "URL del connector perduda." - -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Aquest lloc no està configurat per permetre les comunicacions amb altres xarxes." - -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Protocol de comunnicació no compatible o alimentador descobert." - -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "L'adreça de perfil especificada no proveeix informació adient." +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Conversation supprimée." -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Un autor o nom no va ser trobat" +#: ../../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:1002 ../../include/conversation.php:1020 +msgid "Please enter a link URL:" +msgstr "Entrez un lien web:" -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Cap direcció URL del navegador coincideix amb aquesta adreça." +#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Envoyer un message privé" -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Incapaç de trobar coincidències amb la Adreça d'Identitat estil @ amb els protocols coneguts o contactes de correu. " +#: ../../mod/message.php:320 ../../mod/message.php:553 +#: ../../mod/wallmessage.php:144 +msgid "To:" +msgstr "À:" -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "Emprar mailto: davant la adreça per a forçar la comprovació del correu." +#: ../../mod/message.php:325 ../../mod/message.php:555 +#: ../../mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Sujet:" -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "La direcció del perfil especificat pertany a una xarxa que ha estat desactivada en aquest lloc." +#: ../../mod/message.php:329 ../../mod/message.php:558 +#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +msgid "Your message:" +msgstr "Votre message:" -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Perfil limitat. Aquesta persona no podrà rebre notificacions personals/directes de tu." +#: ../../mod/message.php:332 ../../mod/message.php:562 +#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 +#: ../../include/conversation.php:1091 +msgid "Upload photo" +msgstr "Joindre photo" -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "No es pot recuperar la informació de contacte." +#: ../../mod/message.php:333 ../../mod/message.php:563 +#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 +#: ../../include/conversation.php:1095 +msgid "Insert web link" +msgstr "Insérer lien web" -#: ../../include/follow.php:259 -msgid "following" -msgstr "seguint" +#: ../../mod/message.php:334 ../../mod/message.php:565 +#: ../../mod/content.php:499 ../../mod/content.php:883 +#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124 +#: ../../mod/photos.php:1545 ../../object/Item.php:364 +#: ../../include/conversation.php:692 ../../include/conversation.php:1109 +msgid "Please wait" +msgstr "Patientez" -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Error decodificant l'arxiu del compte" +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Aucun message." -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Error! No hi ha dades al arxiu! No es un arxiu de compte de Friendica?" +#: ../../mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "Émetteur inconnu - %s" -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Error! No puc comprobar l'Àlies" +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Vous et %s" -#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#: ../../mod/message.php:384 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "El usuari %s' ja existeix en aquest servidor!" +msgid "%s and You" +msgstr "%s et vous" -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Error en la creació de l'usuari" +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Effacer conversation" -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Error en la creació del perfil d'usuari" +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" -#: ../../include/uimport.php:220 +#: ../../mod/message.php:411 #, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contacte no importat" -msgstr[1] "%d contactes no importats" +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d message" +msgstr[1] "%d messages" -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" -msgstr "Fet. Ja pots identificar-te amb el teu nom d'usuari i contrasenya" +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Message indisponible." -#: ../../include/event.php:11 ../../include/bb2diaspora.php:134 -#: ../../mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Effacer message" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:140 -msgid "Starts:" -msgstr "Inici:" +#: ../../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." -#: ../../include/event.php:30 ../../include/bb2diaspora.php:148 -msgid "Finishes:" -msgstr "Acaba:" +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Répondre" -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "Deixar de seguir" +#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 +#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41 +#: ../../mod/update_network.php:25 +msgid "[Embedded content - reload page to view]" +msgstr "[contenu incorporé - rechargez la page pour le voir]" -#: ../../include/Contact.php:228 ../../include/conversation.php:882 -msgid "Poke" -msgstr "Atia" +#: ../../mod/crepair.php:106 +msgid "Contact settings applied." +msgstr "Réglages du contact appliqués." -#: ../../include/Contact.php:229 ../../include/conversation.php:876 -msgid "View Status" -msgstr "Veure Estatus" +#: ../../mod/crepair.php:108 +msgid "Contact update failed." +msgstr "Impossible d'appliquer les réglages." -#: ../../include/Contact.php:230 ../../include/conversation.php:877 -msgid "View Profile" -msgstr "Veure Perfil" +#: ../../mod/crepair.php:139 +msgid "Repair Contact Settings" +msgstr "Réglages de réparation des contacts" -#: ../../include/Contact.php:231 ../../include/conversation.php:878 -msgid "View Photos" -msgstr "Veure Fotos" +#: ../../mod/crepair.php:141 +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." -#: ../../include/Contact.php:232 ../../include/Contact.php:255 -#: ../../include/conversation.php:879 -msgid "Network Posts" -msgstr "Enviaments a la Xarxa" +#: ../../mod/crepair.php:142 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "une photo" -#: ../../include/Contact.php:233 ../../include/Contact.php:255 -#: ../../include/conversation.php:880 -msgid "Edit Contact" -msgstr "Editat Contacte" +#: ../../mod/crepair.php:148 +msgid "Return to contact editor" +msgstr "Retour à l'éditeur de contact" -#: ../../include/Contact.php:234 -msgid "Drop Contact" +#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +msgid "No mirroring" msgstr "" -#: ../../include/Contact.php:235 ../../include/Contact.php:255 -#: ../../include/conversation.php:881 -msgid "Send PM" -msgstr "Enviar Missatge Privat" - -#: ../../include/dbstructure.php:23 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +#: ../../mod/crepair.php:159 +msgid "Mirror as forwarded posting" msgstr "" -#: ../../include/dbstructure.php:28 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" +#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +msgid "Mirror as my own posting" msgstr "" -#: ../../include/dbstructure.php:181 -msgid "Errors encountered creating database tables." -msgstr "Trobats errors durant la creació de les taules de la base de dades." +#: ../../mod/crepair.php:165 ../../mod/admin.php:975 ../../mod/admin.php:987 +#: ../../mod/admin.php:988 ../../mod/admin.php:1001 ../../mod/settings.php:616 +#: ../../mod/settings.php:642 +msgid "Name" +msgstr "Nom" -#: ../../include/dbstructure.php:239 -msgid "Errors encountered performing database changes." -msgstr "" +#: ../../mod/crepair.php:166 +msgid "Account Nickname" +msgstr "Pseudo du compte" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Miscel·lania" +#: ../../mod/crepair.php:167 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@NomEtiquette - prend le pas sur Nom/Pseudo" -#: ../../include/datetime.php:153 ../../include/datetime.php:285 -msgid "year" -msgstr "any" +#: ../../mod/crepair.php:168 +msgid "Account URL" +msgstr "URL du compte" -#: ../../include/datetime.php:158 ../../include/datetime.php:286 -msgid "month" -msgstr "mes" +#: ../../mod/crepair.php:169 +msgid "Friend Request URL" +msgstr "Echec du téléversement de l'image." -#: ../../include/datetime.php:163 ../../include/datetime.php:288 -msgid "day" -msgstr "dia" +#: ../../mod/crepair.php:170 +msgid "Friend Confirm URL" +msgstr "Accès public refusé." -#: ../../include/datetime.php:276 -msgid "never" -msgstr "mai" +#: ../../mod/crepair.php:171 +msgid "Notification Endpoint URL" +msgstr "Aucune photo sélectionnée" -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "Fa menys d'un segon" +#: ../../mod/crepair.php:172 +msgid "Poll/Feed URL" +msgstr "Téléverser des photos" -#: ../../include/datetime.php:285 -msgid "years" -msgstr "anys" +#: ../../mod/crepair.php:173 +msgid "New photo from this URL" +msgstr "Nouvelle photo depuis cette URL" -#: ../../include/datetime.php:286 -msgid "months" -msgstr "mesos" +#: ../../mod/crepair.php:174 +msgid "Remote Self" +msgstr "" -#: ../../include/datetime.php:287 -msgid "week" -msgstr "setmana" +#: ../../mod/crepair.php:176 +msgid "Mirror postings from this contact" +msgstr "" -#: ../../include/datetime.php:287 -msgid "weeks" -msgstr "setmanes" +#: ../../mod/crepair.php:176 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" -#: ../../include/datetime.php:288 -msgid "days" -msgstr "dies" +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accès refusé." -#: ../../include/datetime.php:289 -msgid "hour" -msgstr "hora" +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Recherche de personnes" -#: ../../include/datetime.php:289 -msgid "hours" -msgstr "hores" +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "Aucune correspondance" -#: ../../include/datetime.php:290 -msgid "minute" -msgstr "minut" +#: ../../mod/fbrowser.php:25 ../../boot.php:2121 ../../include/nav.php:78 +#: ../../view/theme/diabook/theme.php:126 +msgid "Photos" +msgstr "Photos" -#: ../../include/datetime.php:290 -msgid "minutes" -msgstr "minuts" +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "Fichiers" -#: ../../include/datetime.php:291 -msgid "second" -msgstr "segon" +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Contacts qui n’appartiennent à aucun groupe" -#: ../../include/datetime.php:291 -msgid "seconds" -msgstr "segons" +#: ../../mod/admin.php:57 +msgid "Theme settings updated." +msgstr "Réglages du thème sauvés." -#: ../../include/datetime.php:300 -#, php-format -msgid "%1$d %2$s ago" -msgstr " fa %1$d %2$s" +#: ../../mod/admin.php:104 ../../mod/admin.php:596 +msgid "Site" +msgstr "Site" -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[Sense assumpte]" +#: ../../mod/admin.php:105 ../../mod/admin.php:970 ../../mod/admin.php:985 +msgid "Users" +msgstr "Utilisateurs" -#: ../../include/delivery.php:456 ../../include/notifier.php:774 -msgid "(no subject)" -msgstr "(sense assumpte)" +#: ../../mod/admin.php:106 ../../mod/admin.php:1074 ../../mod/admin.php:1127 +#: ../../mod/settings.php:57 +msgid "Plugins" +msgstr "Extensions" -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Desconegut/No categoritzat" +#: ../../mod/admin.php:107 ../../mod/admin.php:1295 ../../mod/admin.php:1329 +msgid "Themes" +msgstr "Thèmes" -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Bloquejar immediatament" +#: ../../mod/admin.php:108 +msgid "DB updates" +msgstr "Mise-à-jour de la base" -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Sospitós, Spam, auto-publicitat" +#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1416 +msgid "Logs" +msgstr "Journaux" -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Conegut per mi, però sense opinió" +#: ../../mod/admin.php:128 ../../include/nav.php:182 +msgid "Admin" +msgstr "Admin" -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "Bé, probablement inofensiu" +#: ../../mod/admin.php:129 +msgid "Plugin Features" +msgstr "Propriétés des extensions" -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Bona reputació, té la meva confiança" +#: ../../mod/admin.php:131 +msgid "User registrations waiting for confirmation" +msgstr "Inscriptions en attente de confirmation" -#: ../../include/contact_selectors.php:56 ../../mod/admin.php:542 -msgid "Frequently" -msgstr "Freqüentment" +#: ../../mod/admin.php:190 ../../mod/admin.php:924 +msgid "Normal Account" +msgstr "Compte normal" -#: ../../include/contact_selectors.php:57 ../../mod/admin.php:543 -msgid "Hourly" -msgstr "Cada hora" +#: ../../mod/admin.php:191 ../../mod/admin.php:925 +msgid "Soapbox Account" +msgstr "Compte \"boîte à savon\"" -#: ../../include/contact_selectors.php:58 ../../mod/admin.php:544 -msgid "Twice daily" -msgstr "Dues vegades al dia" +#: ../../mod/admin.php:192 ../../mod/admin.php:926 +msgid "Community/Celebrity Account" +msgstr "Compte de communauté/célébrité" -#: ../../include/contact_selectors.php:59 ../../mod/admin.php:545 -msgid "Daily" -msgstr "Diari" +#: ../../mod/admin.php:193 ../../mod/admin.php:927 +msgid "Automatic Friend Account" +msgstr "Compte auto-amical" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Setmanal" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensual" +#: ../../mod/admin.php:194 +msgid "Blog Account" +msgstr "Compte de blog" -#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840 -msgid "Friendica" -msgstr "Friendica" +#: ../../mod/admin.php:195 +msgid "Private Forum" +msgstr "Forum privé" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" +#: ../../mod/admin.php:214 +msgid "Message queues" +msgstr "Files d'attente des messages" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../mod/admin.php:219 ../../mod/admin.php:595 ../../mod/admin.php:969 +#: ../../mod/admin.php:1073 ../../mod/admin.php:1126 ../../mod/admin.php:1294 +#: ../../mod/admin.php:1328 ../../mod/admin.php:1415 +msgid "Administration" +msgstr "Administration" -#: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 ../../mod/admin.php:964 -#: ../../mod/admin.php:976 ../../mod/admin.php:977 ../../mod/admin.php:992 -msgid "Email" -msgstr "Correu" +#: ../../mod/admin.php:220 +msgid "Summary" +msgstr "Résumé" -#: ../../include/contact_selectors.php:80 ../../mod/settings.php:733 -#: ../../mod/dfrn_request.php:842 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../mod/admin.php:222 +msgid "Registered users" +msgstr "Utilisateurs inscrits" -#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49 -#: ../../mod/newmember.php:51 -msgid "Facebook" -msgstr "Facebook" +#: ../../mod/admin.php:224 +msgid "Pending registrations" +msgstr "Inscriptions en attente" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" +#: ../../mod/admin.php:225 +msgid "Version" +msgstr "Versio" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../mod/admin.php:229 +msgid "Active plugins" +msgstr "Extensions activés" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../mod/admin.php:252 +msgid "Can not parse base url. Must have at least ://" +msgstr "Impossible d'analyser l'URL de base. Doit contenir au moins ://" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: ../../mod/admin.php:500 +msgid "Site settings updated." +msgstr "Réglages du site mis-à-jour." -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" +#: ../../mod/admin.php:529 ../../mod/settings.php:828 +msgid "No special theme for mobile devices" +msgstr "Pas de thème particulier pour les terminaux mobiles" -#: ../../include/contact_selectors.php:88 -msgid "pump.io" -msgstr "" +#: ../../mod/admin.php:547 +msgid "At post arrival" +msgstr "A l'arrivé d'une publication" -#: ../../include/contact_selectors.php:89 -msgid "Twitter" -msgstr "" +#: ../../mod/admin.php:548 ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Fréquemment" -#: ../../include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "" +#: ../../mod/admin.php:549 ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Toutes les heures" -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "" +#: ../../mod/admin.php:550 ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Deux fois par jour" -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "" +#: ../../mod/admin.php:551 ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Chaque jour" -#: ../../include/diaspora.php:620 ../../include/conversation.php:172 -#: ../../mod/dfrn_confirm.php:486 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s és ara amic amb %2$s" +#: ../../mod/admin.php:556 +msgid "Multi user instance" +msgstr "Instance multi-utilisateurs" -#: ../../include/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "Compartint la notificació de la xarxa Diàspora" +#: ../../mod/admin.php:579 +msgid "Closed" +msgstr "Fermé" -#: ../../include/diaspora.php:2312 -msgid "Attachments:" -msgstr "Adjunts:" +#: ../../mod/admin.php:580 +msgid "Requires approval" +msgstr "Demande une apptrobation" -#: ../../include/conversation.php:140 ../../mod/like.php:168 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "a %1$s no agrada %2$s de %3$s" +#: ../../mod/admin.php:581 +msgid "Open" +msgstr "Ouvert" -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s atiat %2$s" +#: ../../mod/admin.php:585 +msgid "No SSL policy, links will track page SSL state" +msgstr "Pas de politique SSL, le liens conserveront l'état SSL de la page" -#: ../../include/conversation.php:211 ../../include/text.php:1004 -msgid "poked" -msgstr "atiar" +#: ../../mod/admin.php:586 +msgid "Force all links to use SSL" +msgstr "Forcer tous les liens à utiliser SSL" -#: ../../include/conversation.php:227 ../../mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s es normalment %2$s" +#: ../../mod/admin.php:587 +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é)" -#: ../../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 etiquetats %2$s %3$s amb %4$s" +#: ../../mod/admin.php:597 ../../mod/admin.php:1128 ../../mod/admin.php:1330 +#: ../../mod/admin.php:1417 ../../mod/settings.php:614 +#: ../../mod/settings.php:724 ../../mod/settings.php:798 +#: ../../mod/settings.php:880 ../../mod/settings.php:1113 +msgid "Save Settings" +msgstr "Sauvegarder les paramétres" -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "anunci/element" +#: ../../mod/admin.php:598 ../../mod/register.php:255 +msgid "Registration" +msgstr "Inscription" -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s marcat %2$s's %3$s com favorit" +#: ../../mod/admin.php:599 +msgid "File upload" +msgstr "Téléversement de fichier" -#: ../../include/conversation.php:613 ../../object/Item.php:129 -#: ../../mod/photos.php:1651 ../../mod/content.php:437 -#: ../../mod/content.php:740 -msgid "Select" -msgstr "Selecionar" +#: ../../mod/admin.php:600 +msgid "Policies" +msgstr "Politiques" -#: ../../include/conversation.php:614 ../../object/Item.php:130 -#: ../../mod/group.php:171 ../../mod/settings.php:674 -#: ../../mod/contacts.php:709 ../../mod/admin.php:968 -#: ../../mod/photos.php:1652 ../../mod/content.php:438 -#: ../../mod/content.php:741 -msgid "Delete" -msgstr "Esborrar" +#: ../../mod/admin.php:601 +msgid "Advanced" +msgstr "Avancé" -#: ../../include/conversation.php:654 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../mod/content.php:471 -#: ../../mod/content.php:852 ../../mod/content.php:853 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Veure perfil de %s @ %s" +#: ../../mod/admin.php:602 +msgid "Performance" +msgstr "Performance" -#: ../../include/conversation.php:666 ../../object/Item.php:316 -msgid "Categories:" -msgstr "Categories:" +#: ../../mod/admin.php:603 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible." -#: ../../include/conversation.php:667 ../../object/Item.php:317 -msgid "Filed under:" -msgstr "Arxivat a:" +#: ../../mod/admin.php:606 +msgid "Site name" +msgstr "Nom du site" -#: ../../include/conversation.php:674 ../../object/Item.php:340 -#: ../../mod/content.php:481 ../../mod/content.php:864 -#, php-format -msgid "%s from %s" -msgstr "%s des de %s" +#: ../../mod/admin.php:607 +msgid "Host name" +msgstr "" -#: ../../include/conversation.php:690 ../../mod/content.php:497 -msgid "View in context" -msgstr "Veure en context" +#: ../../mod/admin.php:608 +msgid "Banner/Logo" +msgstr "Bannière/Logo" -#: ../../include/conversation.php:692 ../../include/conversation.php:1109 -#: ../../object/Item.php:364 ../../mod/wallmessage.php:156 -#: ../../mod/editpost.php:124 ../../mod/photos.php:1543 -#: ../../mod/message.php:334 ../../mod/message.php:565 -#: ../../mod/content.php:499 ../../mod/content.php:883 -msgid "Please wait" -msgstr "Si us plau esperi" +#: ../../mod/admin.php:609 +msgid "Additional Info" +msgstr "Informations supplémentaires" -#: ../../include/conversation.php:772 -msgid "remove" -msgstr "esborrar" +#: ../../mod/admin.php:609 +msgid "" +"For public servers: you can add additional information here that will be " +"listed at dir.friendica.com/siteinfo." +msgstr "Pour les serveurs publics vous pouvez ajouter ici des informations supplémentaires qui seront listées sur dir.friendica.com/siteinfo." -#: ../../include/conversation.php:776 -msgid "Delete Selected Items" -msgstr "Esborra els Elements Seleccionats" +#: ../../mod/admin.php:610 +msgid "System language" +msgstr "Langue du système" -#: ../../include/conversation.php:875 -msgid "Follow Thread" -msgstr "Seguir el Fil" +#: ../../mod/admin.php:611 +msgid "System theme" +msgstr "Thème du système" -#: ../../include/conversation.php:944 -#, php-format -msgid "%s likes this." -msgstr "a %s agrada això." +#: ../../mod/admin.php:611 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - changer les réglages du thème" -#: ../../include/conversation.php:944 -#, php-format -msgid "%s doesn't like this." -msgstr "a %s desagrada això." +#: ../../mod/admin.php:612 +msgid "Mobile system theme" +msgstr "Thème mobile" -#: ../../include/conversation.php:949 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d gent agrada això" +#: ../../mod/admin.php:612 +msgid "Theme for mobile devices" +msgstr "Thème pour les terminaux mobiles" -#: ../../include/conversation.php:952 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d gent no agrada això" +#: ../../mod/admin.php:613 +msgid "SSL link policy" +msgstr "Politique SSL pour les liens" -#: ../../include/conversation.php:966 -msgid "and" -msgstr "i" +#: ../../mod/admin.php:613 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Détermine si les liens générés doivent forcer l'utilisation de SSL" -#: ../../include/conversation.php:972 -#, php-format -msgid ", and %d other people" -msgstr ", i altres %d persones" +#: ../../mod/admin.php:614 +msgid "Force SSL" +msgstr "" -#: ../../include/conversation.php:974 -#, php-format -msgid "%s like this." -msgstr "a %s li agrada això." +#: ../../mod/admin.php:614 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" -#: ../../include/conversation.php:974 -#, php-format -msgid "%s don't like this." -msgstr "a %s no li agrada això." +#: ../../mod/admin.php:615 +msgid "Old style 'Share'" +msgstr "Anciens style 'Partage'" -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Visible to everybody" -msgstr "Visible per a tothom" +#: ../../mod/admin.php:615 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Désactive l'élément 'partage' de bbcode pour répéter les articles." -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -#: ../../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 "Sius plau, entri l'enllaç URL:" +#: ../../mod/admin.php:616 +msgid "Hide help entry from navigation menu" +msgstr "Cacher l'aide du menu de navigation" -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter a video link/URL:" -msgstr "Per favor , introdueixi el enllaç/URL del video" +#: ../../mod/admin.php:616 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help." -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Please enter an audio link/URL:" -msgstr "Per favor , introdueixi el enllaç/URL del audio:" +#: ../../mod/admin.php:617 +msgid "Single user instance" +msgstr "Instance mono-utilisateur" -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -msgid "Tag term:" -msgstr "Terminis de l'etiqueta:" +#: ../../mod/admin.php:617 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur." -#: ../../include/conversation.php:1006 ../../include/conversation.php:1024 -#: ../../mod/filer.php:30 -msgid "Save to Folder:" -msgstr "Guardar a la Carpeta:" +#: ../../mod/admin.php:618 +msgid "Maximum image size" +msgstr "Taille maximale des images" -#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 -msgid "Where are you right now?" -msgstr "On ets ara?" +#: ../../mod/admin.php:618 +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\"." -#: ../../include/conversation.php:1008 -msgid "Delete item(s)?" -msgstr "Esborrar element(s)?" +#: ../../mod/admin.php:619 +msgid "Maximum image length" +msgstr "Longueur maximale des images" -#: ../../include/conversation.php:1051 -msgid "Post to Email" -msgstr "Correu per enviar" +#: ../../mod/admin.php:619 +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." -#: ../../include/conversation.php:1056 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" +#: ../../mod/admin.php:620 +msgid "JPEG image quality" +msgstr "Qualité JPEG des images" -#: ../../include/conversation.php:1057 ../../mod/settings.php:1025 -msgid "Hide your profile details from unknown viewers?" -msgstr "Amagar els detalls del seu perfil a espectadors desconeguts?" +#: ../../mod/admin.php:620 +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." -#: ../../include/conversation.php:1090 ../../mod/photos.php:1542 -msgid "Share" -msgstr "Compartir" +#: ../../mod/admin.php:622 +msgid "Register policy" +msgstr "Politique d'inscription" -#: ../../include/conversation.php:1091 ../../mod/wallmessage.php:154 -#: ../../mod/editpost.php:110 ../../mod/message.php:332 -#: ../../mod/message.php:562 -msgid "Upload photo" -msgstr "Carregar foto" +#: ../../mod/admin.php:623 +msgid "Maximum Daily Registrations" +msgstr "Inscriptions maximum par jour" -#: ../../include/conversation.php:1092 ../../mod/editpost.php:111 -msgid "upload photo" -msgstr "carregar fotos" +#: ../../mod/admin.php:623 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet." -#: ../../include/conversation.php:1093 ../../mod/editpost.php:112 -msgid "Attach file" -msgstr "Adjunta fitxer" +#: ../../mod/admin.php:624 +msgid "Register text" +msgstr "Texte d'inscription" -#: ../../include/conversation.php:1094 ../../mod/editpost.php:113 -msgid "attach file" -msgstr "adjuntar arxiu" +#: ../../mod/admin.php:624 +msgid "Will be displayed prominently on the registration page." +msgstr "Sera affiché de manière bien visible sur la page d'accueil." -#: ../../include/conversation.php:1095 ../../mod/wallmessage.php:155 -#: ../../mod/editpost.php:114 ../../mod/message.php:333 -#: ../../mod/message.php:563 -msgid "Insert web link" -msgstr "Inserir enllaç web" +#: ../../mod/admin.php:625 +msgid "Accounts abandoned after x days" +msgstr "Les comptes sont abandonnés après x jours" -#: ../../include/conversation.php:1096 ../../mod/editpost.php:115 -msgid "web link" -msgstr "enllaç de web" +#: ../../mod/admin.php:625 +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." -#: ../../include/conversation.php:1097 ../../mod/editpost.php:116 -msgid "Insert video link" -msgstr "Insertar enllaç de video" +#: ../../mod/admin.php:626 +msgid "Allowed friend domains" +msgstr "Domaines autorisés" -#: ../../include/conversation.php:1098 ../../mod/editpost.php:117 -msgid "video link" -msgstr "enllaç de video" +#: ../../mod/admin.php:626 +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" -#: ../../include/conversation.php:1099 ../../mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Insertar enllaç de audio" +#: ../../mod/admin.php:627 +msgid "Allowed email domains" +msgstr "Domaines courriel autorisés" -#: ../../include/conversation.php:1100 ../../mod/editpost.php:119 -msgid "audio link" -msgstr "enllaç de audio" +#: ../../mod/admin.php:627 +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" -#: ../../include/conversation.php:1101 ../../mod/editpost.php:120 -msgid "Set your location" -msgstr "Canvia la teva ubicació" +#: ../../mod/admin.php:628 +msgid "Block public" +msgstr "Interdire la publication globale" -#: ../../include/conversation.php:1102 ../../mod/editpost.php:121 -msgid "set location" -msgstr "establir la ubicació" +#: ../../mod/admin.php:628 +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." -#: ../../include/conversation.php:1103 ../../mod/editpost.php:122 -msgid "Clear browser location" -msgstr "neteja adreçes del navegador" +#: ../../mod/admin.php:629 +msgid "Force publish" +msgstr "Forcer la publication globale" -#: ../../include/conversation.php:1104 ../../mod/editpost.php:123 -msgid "clear location" -msgstr "netejar ubicació" +#: ../../mod/admin.php:629 +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." -#: ../../include/conversation.php:1106 ../../mod/editpost.php:137 -msgid "Set title" -msgstr "Canviar títol" +#: ../../mod/admin.php:630 +msgid "Global directory update URL" +msgstr "URL de mise-à-jour de l'annuaire global" -#: ../../include/conversation.php:1108 ../../mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Categories (lista separada per comes)" +#: ../../mod/admin.php:630 +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." -#: ../../include/conversation.php:1110 ../../mod/editpost.php:125 -msgid "Permission settings" -msgstr "Configuració de permisos" +#: ../../mod/admin.php:631 +msgid "Allow threaded items" +msgstr "autoriser le suivi des éléments par fil conducteur" -#: ../../include/conversation.php:1111 -msgid "permissions" -msgstr "Permissos" +#: ../../mod/admin.php:631 +msgid "Allow infinite level threading for items on this site." +msgstr "Permettre une imbrication infinie des commentaires." -#: ../../include/conversation.php:1119 ../../mod/editpost.php:133 -msgid "CC: email addresses" -msgstr "CC: Adreça de correu" +#: ../../mod/admin.php:632 +msgid "Private posts by default for new users" +msgstr "Publications privées par défaut pour les nouveaux utilisateurs" -#: ../../include/conversation.php:1120 ../../mod/editpost.php:134 -msgid "Public post" -msgstr "Enviament públic" +#: ../../mod/admin.php:632 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde." -#: ../../include/conversation.php:1122 ../../mod/editpost.php:140 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Exemple: bob@example.com, mary@example.com" +#: ../../mod/admin.php:633 +msgid "Don't include post content in email notifications" +msgstr "Ne pas inclure le contenu posté dans l'e-mail de notification" -#: ../../include/conversation.php:1126 ../../object/Item.php:687 -#: ../../mod/editpost.php:145 ../../mod/photos.php:1564 -#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 -#: ../../mod/content.php:719 -msgid "Preview" -msgstr "Vista prèvia" +#: ../../mod/admin.php:633 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "Ne pas inclure le contenu de publication/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité." -#: ../../include/conversation.php:1135 -msgid "Post to Groups" -msgstr "Publica-ho a Grups" +#: ../../mod/admin.php:634 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Interdire l’accès public pour les greffons listées dans le menu apps." -#: ../../include/conversation.php:1136 -msgid "Post to Contacts" -msgstr "Publica-ho a Contactes" +#: ../../mod/admin.php:634 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Cocher cette case restreint la liste des greffons dans le menu des applications seulement aux membres." -#: ../../include/conversation.php:1137 -msgid "Private post" -msgstr "Enviament Privat" +#: ../../mod/admin.php:635 +msgid "Don't embed private images in posts" +msgstr "Ne pas miniaturiser les images privées dans les publications" -#: ../../include/text.php:296 -msgid "newer" -msgstr "Més nou" +#: ../../mod/admin.php:635 +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 "Ne remplacez pas les images privées hébergées localement dans les publications avec une image attaché en copie, car cela signifie que le contact qui reçoit les publications contenant ces photos privées devra s’authentifier pour charger chaque image, ce qui peut prendre du temps." -#: ../../include/text.php:298 -msgid "older" -msgstr "més vell" +#: ../../mod/admin.php:636 +msgid "Allow Users to set remote_self" +msgstr "Autoriser les utilisateurs à définir remote_self" -#: ../../include/text.php:303 -msgid "prev" -msgstr "Prev" +#: ../../mod/admin.php:636 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d'un contact dans le flux d'activités des utilisateurs." -#: ../../include/text.php:305 -msgid "first" -msgstr "Primer" +#: ../../mod/admin.php:637 +msgid "Block multiple registrations" +msgstr "Interdire les inscriptions multiples" -#: ../../include/text.php:337 -msgid "last" -msgstr "Últim" +#: ../../mod/admin.php:637 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages." -#: ../../include/text.php:340 -msgid "next" -msgstr "següent" +#: ../../mod/admin.php:638 +msgid "OpenID support" +msgstr "Support OpenID" -#: ../../include/text.php:854 -msgid "No contacts" -msgstr "Sense contactes" +#: ../../mod/admin.php:638 +msgid "OpenID support for registration and logins." +msgstr "Supporter OpenID pour les inscriptions et connexions." -#: ../../include/text.php:863 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d Contacte" -msgstr[1] "%d Contactes" +#: ../../mod/admin.php:639 +msgid "Fullname check" +msgstr "Vérification du \"Prénom Nom\"" -#: ../../include/text.php:875 ../../mod/viewcontacts.php:76 -msgid "View Contacts" -msgstr "Veure Contactes" +#: ../../mod/admin.php:639 +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" -#: ../../include/text.php:955 ../../mod/editpost.php:109 -#: ../../mod/notes.php:63 ../../mod/filer.php:31 -msgid "Save" -msgstr "Guardar" +#: ../../mod/admin.php:640 +msgid "UTF-8 Regular expressions" +msgstr "Regex UTF-8" -#: ../../include/text.php:1004 -msgid "poke" -msgstr "atia" +#: ../../mod/admin.php:640 +msgid "Use PHP UTF8 regular expressions" +msgstr "Utiliser les expressions rationnelles de PHP en UTF8" -#: ../../include/text.php:1005 -msgid "ping" -msgstr "toc" +#: ../../mod/admin.php:641 +msgid "Show Community Page" +msgstr "Montrer la \"Place publique\"" -#: ../../include/text.php:1005 -msgid "pinged" -msgstr "tocat" +#: ../../mod/admin.php:641 +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." -#: ../../include/text.php:1006 -msgid "prod" -msgstr "pinxat" +#: ../../mod/admin.php:642 +msgid "Enable OStatus support" +msgstr "Activer le support d'OStatus" -#: ../../include/text.php:1006 -msgid "prodded" -msgstr "pinxat" +#: ../../mod/admin.php:642 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile." -#: ../../include/text.php:1007 -msgid "slap" -msgstr "bufetada" +#: ../../mod/admin.php:643 +msgid "OStatus conversation completion interval" +msgstr "Achèvement de l'intervalle de conversation OStatus " -#: ../../include/text.php:1007 -msgid "slapped" -msgstr "Abufetejat" +#: ../../mod/admin.php:643 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "Combien de fois le poller devra vérifier les nouvelles entrées dans les conversations OStatus? Cela peut utilisé beaucoup de ressources." -#: ../../include/text.php:1008 -msgid "finger" -msgstr "dit" +#: ../../mod/admin.php:644 +msgid "Enable Diaspora support" +msgstr "Activer le support de Diaspora" -#: ../../include/text.php:1008 -msgid "fingered" -msgstr "Senyalat" +#: ../../mod/admin.php:644 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Fournir une compatibilité Diaspora intégrée." -#: ../../include/text.php:1009 -msgid "rebuff" -msgstr "rebuig" +#: ../../mod/admin.php:645 +msgid "Only allow Friendica contacts" +msgstr "N'autoriser que les contacts Friendica" -#: ../../include/text.php:1009 -msgid "rebuffed" -msgstr "rebutjat" +#: ../../mod/admin.php:645 +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." -#: ../../include/text.php:1023 -msgid "happy" -msgstr "feliç" +#: ../../mod/admin.php:646 +msgid "Verify SSL" +msgstr "Vérifier SSL" -#: ../../include/text.php:1024 -msgid "sad" -msgstr "trist" +#: ../../mod/admin.php:646 +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é." -#: ../../include/text.php:1025 -msgid "mellow" -msgstr "embafador" +#: ../../mod/admin.php:647 +msgid "Proxy user" +msgstr "Utilisateur du proxy" -#: ../../include/text.php:1026 -msgid "tired" -msgstr "cansat" +#: ../../mod/admin.php:648 +msgid "Proxy URL" +msgstr "URL du proxy" -#: ../../include/text.php:1027 -msgid "perky" -msgstr "alegre" +#: ../../mod/admin.php:649 +msgid "Network timeout" +msgstr "Dépassement du délai d'attente du réseau" -#: ../../include/text.php:1028 -msgid "angry" -msgstr "disgustat" +#: ../../mod/admin.php:649 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)." -#: ../../include/text.php:1029 -msgid "stupified" -msgstr "estupefacte" +#: ../../mod/admin.php:650 +msgid "Delivery interval" +msgstr "Intervalle de transmission" -#: ../../include/text.php:1030 -msgid "puzzled" -msgstr "perplexe" +#: ../../mod/admin.php:650 +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." -#: ../../include/text.php:1031 -msgid "interested" -msgstr "interessat" +#: ../../mod/admin.php:651 +msgid "Poll interval" +msgstr "Intervalle de réception" -#: ../../include/text.php:1032 -msgid "bitter" -msgstr "amarg" +#: ../../mod/admin.php:651 +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." -#: ../../include/text.php:1033 -msgid "cheerful" -msgstr "animat" +#: ../../mod/admin.php:652 +msgid "Maximum Load Average" +msgstr "Plafond de la charge moyenne" -#: ../../include/text.php:1034 -msgid "alive" -msgstr "viu" +#: ../../mod/admin.php:652 +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." -#: ../../include/text.php:1035 -msgid "annoyed" -msgstr "molest" +#: ../../mod/admin.php:654 +msgid "Use MySQL full text engine" +msgstr "Utiliser le moteur de recherche plein texte de MySQL" -#: ../../include/text.php:1036 -msgid "anxious" -msgstr "ansiós" +#: ../../mod/admin.php:654 +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." -#: ../../include/text.php:1037 -msgid "cranky" -msgstr "irritable" +#: ../../mod/admin.php:655 +msgid "Suppress Language" +msgstr "Supprimer un langage" -#: ../../include/text.php:1038 -msgid "disturbed" -msgstr "turbat" +#: ../../mod/admin.php:655 +msgid "Suppress language information in meta information about a posting." +msgstr "Supprimer les informations de langue dans les métadonnées des publications." -#: ../../include/text.php:1039 -msgid "frustrated" -msgstr "frustrat" +#: ../../mod/admin.php:656 +msgid "Path to item cache" +msgstr "Chemin vers le cache des objets." -#: ../../include/text.php:1040 -msgid "motivated" -msgstr "motivat" +#: ../../mod/admin.php:657 +msgid "Cache duration in seconds" +msgstr "Durée du cache en secondes" -#: ../../include/text.php:1041 -msgid "relaxed" -msgstr "tranquil" +#: ../../mod/admin.php:657 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "Combien de temps les fichiers de cache doivent être maintenu? La valeur par défaut est 86400 secondes (une journée). Pour désactiver le cache de l'item, définissez la valeur à -1." -#: ../../include/text.php:1042 -msgid "surprised" -msgstr "sorprès" +#: ../../mod/admin.php:658 +msgid "Maximum numbers of comments per post" +msgstr "Nombre maximum de commentaires par publication" -#: ../../include/text.php:1210 -msgid "Monday" -msgstr "Dilluns" +#: ../../mod/admin.php:658 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100." -#: ../../include/text.php:1210 -msgid "Tuesday" -msgstr "Dimarts" +#: ../../mod/admin.php:659 +msgid "Path for lock file" +msgstr "Chemin vers le ficher de verrouillage" -#: ../../include/text.php:1210 -msgid "Wednesday" -msgstr "Dimecres" +#: ../../mod/admin.php:660 +msgid "Temp path" +msgstr "Chemin des fichiers temporaires" -#: ../../include/text.php:1210 -msgid "Thursday" -msgstr "Dijous" +#: ../../mod/admin.php:661 +msgid "Base path to installation" +msgstr "Chemin de base de l'installation" -#: ../../include/text.php:1210 -msgid "Friday" -msgstr "Divendres" +#: ../../mod/admin.php:662 +msgid "Disable picture proxy" +msgstr "Désactiver le proxy image " -#: ../../include/text.php:1210 -msgid "Saturday" -msgstr "Dissabte" +#: ../../mod/admin.php:662 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante." -#: ../../include/text.php:1210 -msgid "Sunday" -msgstr "Diumenge" +#: ../../mod/admin.php:664 +msgid "New base url" +msgstr "Nouvelle URL de base" -#: ../../include/text.php:1214 -msgid "January" -msgstr "Gener" +#: ../../mod/admin.php:666 +msgid "Disable noscrape" +msgstr "Désactiver le noscrape" -#: ../../include/text.php:1214 -msgid "February" -msgstr "Febrer" +#: ../../mod/admin.php:666 +msgid "" +"The noscrape feature speeds up directory submissions by using JSON data " +"instead of HTML scraping. Disabling it will cause higher load on your server" +" and the directory server." +msgstr "La fonction de noscrape accélère les répertoires de mémoire en utilisant des données JSON lieu de grattage HTML. En le désactivant il entraîne une charge plus élevée sur votre serveur et le serveur d'annuaire." -#: ../../include/text.php:1214 -msgid "March" -msgstr "Març" +#: ../../mod/admin.php:683 +msgid "Update has been marked successful" +msgstr "Mise-à-jour validée comme 'réussie'" -#: ../../include/text.php:1214 -msgid "April" -msgstr "Abril" +#: ../../mod/admin.php:691 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "La structure de base de données pour la mise à jour %s a été appliquée avec succès." -#: ../../include/text.php:1214 -msgid "May" -msgstr "Maig" +#: ../../mod/admin.php:694 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s" -#: ../../include/text.php:1214 -msgid "June" -msgstr "Juny" +#: ../../mod/admin.php:706 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "L'exécution %s a échoué avec l'erreur: %s" -#: ../../include/text.php:1214 -msgid "July" -msgstr "Juliol" +#: ../../mod/admin.php:709 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Mise-à-jour %s appliquée avec succès." -#: ../../include/text.php:1214 -msgid "August" -msgstr "Agost" +#: ../../mod/admin.php:713 +#, 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." -#: ../../include/text.php:1214 -msgid "September" -msgstr "Setembre" +#: ../../mod/admin.php:715 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé" -#: ../../include/text.php:1214 -msgid "October" -msgstr "Octubre" +#: ../../mod/admin.php:734 +msgid "No failed updates." +msgstr "Pas de mises-à-jour échouées." -#: ../../include/text.php:1214 -msgid "November" -msgstr "Novembre" +#: ../../mod/admin.php:735 +msgid "Check database structure" +msgstr "Vérifier la structure de la base de données" -#: ../../include/text.php:1214 -msgid "December" -msgstr "Desembre" +#: ../../mod/admin.php:740 +msgid "Failed Updates" +msgstr "Mises-à-jour échouées" -#: ../../include/text.php:1403 ../../mod/videos.php:301 -msgid "View Video" -msgstr "Veure Video" +#: ../../mod/admin.php:741 +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." -#: ../../include/text.php:1435 -msgid "bytes" -msgstr "bytes" +#: ../../mod/admin.php:742 +msgid "Mark success (if update was manually applied)" +msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)" -#: ../../include/text.php:1459 ../../include/text.php:1471 -msgid "Click to open/close" -msgstr "Clicar per a obrir/tancar" +#: ../../mod/admin.php:743 +msgid "Attempt to execute this update step automatically" +msgstr "Tenter d'éxecuter cette étape automatiquement" -#: ../../include/text.php:1645 ../../include/text.php:1655 -#: ../../mod/events.php:335 -msgid "link to source" -msgstr "Enllaç al origen" +#: ../../mod/admin.php:775 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "\n\t\t\tChère/Cher %1$s,\n\t\t\t\tL’administrateur de %2$s vous a ouvert un compte." -#: ../../include/text.php:1700 ../../include/user.php:247 -msgid "default" -msgstr "per defecte" +#: ../../mod/admin.php:778 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tThank you and welcome to %4$s." +msgstr "" -#: ../../include/text.php:1712 -msgid "Select an alternate language" -msgstr "Sel·lecciona un idioma alternatiu" +#: ../../mod/admin.php:810 ../../include/user.php:413 +#, php-format +msgid "Registration details for %s" +msgstr "Détails d'inscription pour %s" -#: ../../include/text.php:1968 -msgid "activity" -msgstr "activitat" +#: ../../mod/admin.php:822 +#, 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é" -#: ../../include/text.php:1970 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../mod/content.php:605 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "comentari" +#: ../../mod/admin.php:829 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utilisateur supprimé" +msgstr[1] "%s utilisateurs supprimés" -#: ../../include/text.php:1971 -msgid "post" -msgstr "missatge" +#: ../../mod/admin.php:868 +#, php-format +msgid "User '%s' deleted" +msgstr "Utilisateur '%s' supprimé" -#: ../../include/text.php:2139 -msgid "Item filed" -msgstr "Element arxivat" +#: ../../mod/admin.php:876 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utilisateur '%s' débloqué" -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Has sortit" +#: ../../mod/admin.php:876 +#, php-format +msgid "User '%s' blocked" +msgstr "Utilisateur '%s' bloqué" -#: ../../include/auth.php:112 ../../include/auth.php:175 -#: ../../mod/openid.php:93 -msgid "Login failed." -msgstr "Error d'accés." +#: ../../mod/admin.php:971 +msgid "Add User" +msgstr "Ajouter l'utilisateur" -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Em trobat un problema quan accedies amb la OpenID que has proporcionat. Per favor, revisa la cadena del ID." +#: ../../mod/admin.php:972 +msgid "select all" +msgstr "tout sélectionner" -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "The error message was:" -msgstr "El missatge d'error fou: " +#: ../../mod/admin.php:973 +msgid "User registrations waiting for confirm" +msgstr "Inscriptions d'utilisateurs en attente de confirmation" -#: ../../include/bbcode.php:449 ../../include/bbcode.php:1050 -#: ../../include/bbcode.php:1051 -msgid "Image/photo" -msgstr "Imatge/foto" +#: ../../mod/admin.php:974 +msgid "User waiting for permanent deletion" +msgstr "Utilisateur en attente de suppression définitive" -#: ../../include/bbcode.php:545 -#, php-format -msgid "%2$s %3$s" -msgstr "" +#: ../../mod/admin.php:975 +msgid "Request date" +msgstr "Date de la demande" -#: ../../include/bbcode.php:579 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "" +#: ../../mod/admin.php:975 ../../mod/admin.php:987 ../../mod/admin.php:988 +#: ../../mod/admin.php:1003 ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 +msgid "Email" +msgstr "Courriel" -#: ../../include/bbcode.php:1014 ../../include/bbcode.php:1034 -msgid "$1 wrote:" -msgstr "$1 va escriure:" +#: ../../mod/admin.php:976 +msgid "No registrations." +msgstr "Pas d'inscriptions." -#: ../../include/bbcode.php:1059 ../../include/bbcode.php:1060 -msgid "Encrypted content" -msgstr "Encriptar contingut" +#: ../../mod/admin.php:978 +msgid "Deny" +msgstr "Rejetter" -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Benvingut" +#: ../../mod/admin.php:982 +msgid "Site admin" +msgstr "Administration du Site" -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Per favor, carrega una foto per al perfil" +#: ../../mod/admin.php:983 +msgid "Account expired" +msgstr "Compte expiré" -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Benvingut de nou " +#: ../../mod/admin.php:986 +msgid "New User" +msgstr "Nouvel utilisateur" -#: ../../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 "El formulari del token de seguretat no es correcte. Això probablement passa perquè el formulari ha estat massa temps obert (>3 hores) abans d'enviat-lo." +#: ../../mod/admin.php:987 ../../mod/admin.php:988 +msgid "Register date" +msgstr "Date d'inscription" -#: ../../include/oembed.php:205 -msgid "Embedded content" -msgstr "Contingut incrustat" +#: ../../mod/admin.php:987 ../../mod/admin.php:988 +msgid "Last login" +msgstr "Dernière connexion" -#: ../../include/oembed.php:214 -msgid "Embedding disabled" -msgstr "Incrustacions deshabilitades" +#: ../../mod/admin.php:987 ../../mod/admin.php:988 +msgid "Last item" +msgstr "Dernier élément" -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Home" +#: ../../mod/admin.php:987 +msgid "Deleted since" +msgstr "Supprimé depuis" -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Dona" +#: ../../mod/admin.php:988 ../../mod/settings.php:36 +msgid "Account" +msgstr "Compte" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Actualment Home" +#: ../../mod/admin.php:990 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Actualment Dona" +#: ../../mod/admin.php:991 +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?" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Habitualment Home" +#: ../../mod/admin.php:1001 +msgid "Name of the new user." +msgstr "Nom du nouvel utilisateur." -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Habitualment Dona" +#: ../../mod/admin.php:1002 +msgid "Nickname" +msgstr "Pseudo" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgènere" +#: ../../mod/admin.php:1002 +msgid "Nickname of the new user." +msgstr "Pseudo du nouvel utilisateur." -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Bisexual" +#: ../../mod/admin.php:1003 +msgid "Email address of the new user." +msgstr "Adresse mail du nouvel utilisateur." -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transexual" +#: ../../mod/admin.php:1036 +#, php-format +msgid "Plugin %s disabled." +msgstr "Extension %s désactivée." -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodita" +#: ../../mod/admin.php:1040 +#, php-format +msgid "Plugin %s enabled." +msgstr "Extension %s activée." -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutre" +#: ../../mod/admin.php:1050 ../../mod/admin.php:1266 +msgid "Disable" +msgstr "Désactiver" -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "No específicat" +#: ../../mod/admin.php:1052 ../../mod/admin.php:1268 +msgid "Enable" +msgstr "Activer" -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Altres" +#: ../../mod/admin.php:1075 ../../mod/admin.php:1296 +msgid "Toggle" +msgstr "Activer/Désactiver" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "No Decidit" +#: ../../mod/admin.php:1083 ../../mod/admin.php:1306 +msgid "Author: " +msgstr "Auteur: " -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Home" +#: ../../mod/admin.php:1084 ../../mod/admin.php:1307 +msgid "Maintainer: " +msgstr "Mainteneur: " -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Dona" +#: ../../mod/admin.php:1226 +msgid "No themes found." +msgstr "Aucun thème trouvé." -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gay" +#: ../../mod/admin.php:1288 +msgid "Screenshot" +msgstr "Capture d'écran" -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbiana" +#: ../../mod/admin.php:1334 +msgid "[Experimental]" +msgstr "[Expérimental]" -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Sense Preferències" +#: ../../mod/admin.php:1335 +msgid "[Unsupported]" +msgstr "[Non supporté]" -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisexual" +#: ../../mod/admin.php:1362 +msgid "Log settings updated." +msgstr "Réglages des journaux mis-à-jour." -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosexual" +#: ../../mod/admin.php:1418 +msgid "Clear" +msgstr "Effacer" -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Abstinent/a" +#: ../../mod/admin.php:1424 +msgid "Enable Debugging" +msgstr "Activer le déboggage" -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Verge" +#: ../../mod/admin.php:1425 +msgid "Log file" +msgstr "Fichier de journaux" -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Desviat/da" +#: ../../mod/admin.php:1425 +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." -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetixiste" +#: ../../mod/admin.php:1426 +msgid "Log level" +msgstr "Niveau de journalisaton" -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Orgies" +#: ../../mod/admin.php:1476 +msgid "Close" +msgstr "Fermer" -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Asexual" +#: ../../mod/admin.php:1482 +msgid "FTP Host" +msgstr "Hôte FTP" -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Solter/a" +#: ../../mod/admin.php:1483 +msgid "FTP Path" +msgstr "Chemin FTP" -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Solitari" +#: ../../mod/admin.php:1484 +msgid "FTP User" +msgstr "Utilisateur FTP" -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Disponible" +#: ../../mod/admin.php:1485 +msgid "FTP Password" +msgstr "Mot de passe FTP" -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "No Disponible" +#: ../../mod/network.php:142 +msgid "Search Results For:" +msgstr "Résultats pour:" -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Compromés" +#: ../../mod/network.php:185 ../../mod/search.php:21 +msgid "Remove term" +msgstr "Retirer le terme" -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Enamorat" +#: ../../mod/network.php:194 ../../mod/search.php:30 +#: ../../include/features.php:42 +msgid "Saved Searches" +msgstr "Recherches" -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "De cites" +#: ../../mod/network.php:195 ../../include/group.php:275 +msgid "add" +msgstr "ajouter" -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Infidel" +#: ../../mod/network.php:356 +msgid "Commented Order" +msgstr "Tri par commentaires" -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Adicte al sexe" +#: ../../mod/network.php:359 +msgid "Sort by Comment Date" +msgstr "Trier par date de commentaire" -#: ../../include/profile_selectors.php:42 ../../include/user.php:289 -#: ../../include/user.php:293 -msgid "Friends" -msgstr "Amics/Amigues" +#: ../../mod/network.php:362 +msgid "Posted Order" +msgstr "Tri des publications" -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Amics íntims" +#: ../../mod/network.php:365 +msgid "Sort by Post Date" +msgstr "Trier par date de publication" -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Oportunista" +#: ../../mod/network.php:374 +msgid "Posts that mention or involve you" +msgstr "Publications qui vous concernent" -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Promès" +#: ../../mod/network.php:380 +msgid "New" +msgstr "Nouveau" -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Casat" +#: ../../mod/network.php:383 +msgid "Activity Stream - by date" +msgstr "Flux d'activités - par date" -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Matrimoni imaginari" +#: ../../mod/network.php:389 +msgid "Shared Links" +msgstr "Liens partagés" -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Socis" +#: ../../mod/network.php:392 +msgid "Interesting Links" +msgstr "Liens intéressants" -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Cohabitant" +#: ../../mod/network.php:398 +msgid "Starred" +msgstr "Mis en avant" -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "Segons costums" +#: ../../mod/network.php:401 +msgid "Favourite Posts" +msgstr "Publications favorites" -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Feliç" +#: ../../mod/network.php:463 +#, 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." -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "No cerco" +#: ../../mod/network.php:466 +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." -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Parella Liberal" +#: ../../mod/network.php:520 ../../mod/content.php:119 +msgid "No such group" +msgstr "Groupe inexistant" -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Traït/da" +#: ../../mod/network.php:537 ../../mod/content.php:130 +msgid "Group is empty" +msgstr "Groupe vide" -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Separat/da" +#: ../../mod/network.php:544 ../../mod/content.php:134 +msgid "Group: " +msgstr "Groupe: " -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Inestable" +#: ../../mod/network.php:554 +msgid "Contact: " +msgstr "Contact: " -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Divorciat/da" +#: ../../mod/network.php:556 +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." -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Divorci imaginari" +#: ../../mod/network.php:561 +msgid "Invalid contact." +msgstr "Contact invalide." -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Vidu/a" +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Amis de %s" -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Incert" +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Pas d'amis à afficher." -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Es complicat" +#: ../../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." -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "No t'interessa" +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "l, F j" -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Pregunta'm" +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "Editer l'événement" -#: ../../include/user.php:40 -msgid "An invitation is required." -msgstr "Es requereix invitació." +#: ../../mod/events.php:335 ../../include/text.php:1644 +#: ../../include/text.php:1654 +msgid "link to source" +msgstr "lien original" -#: ../../include/user.php:45 -msgid "Invitation could not be verified." -msgstr "La invitació no ha pogut ser verificada." +#: ../../mod/events.php:370 ../../boot.php:2138 ../../include/nav.php:80 +#: ../../view/theme/diabook/theme.php:127 +msgid "Events" +msgstr "Événements" -#: ../../include/user.php:53 -msgid "Invalid OpenID url" -msgstr "OpenID url no vàlid" +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "Créer un nouvel événement" -#: ../../include/user.php:74 -msgid "Please enter the required information." -msgstr "Per favor, introdueixi la informació requerida." +#: ../../mod/events.php:372 +msgid "Previous" +msgstr "Précédent" -#: ../../include/user.php:88 -msgid "Please use a shorter name." -msgstr "Per favor, empri un nom més curt." +#: ../../mod/events.php:373 ../../mod/install.php:207 +msgid "Next" +msgstr "Suivant" -#: ../../include/user.php:90 -msgid "Name too short." -msgstr "Nom massa curt." +#: ../../mod/events.php:446 +msgid "hour:minute" +msgstr "heures:minutes" -#: ../../include/user.php:105 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Això no sembla ser el teu nom complet." +#: ../../mod/events.php:456 +msgid "Event details" +msgstr "Détails de l'événement" -#: ../../include/user.php:110 -msgid "Your email domain is not among those allowed on this site." -msgstr "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc." +#: ../../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." -#: ../../include/user.php:113 -msgid "Not a valid email address." -msgstr "Adreça de correu no vàlida." +#: ../../mod/events.php:459 +msgid "Event Starts:" +msgstr "Début de l'événement:" -#: ../../include/user.php:126 -msgid "Cannot use that email." -msgstr "No es pot utilitzar aquest correu electrònic." +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" +msgstr "Requis" -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "El teu sobrenom nomes pot contenir \"a-z\", \"0-9\", \"-\", i \"_\", i començar amb lletra." +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" +msgstr "Date/heure de fin inconnue ou sans objet" -#: ../../include/user.php:138 ../../include/user.php:236 -msgid "Nickname is already registered. Please choose another." -msgstr "àlies ja registrat. Tria un altre." +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "Fin de l'événement:" -#: ../../include/user.php:148 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "L'àlies emprat ja està registrat alguna vegada i no es pot reutilitzar " +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "Ajuster à la zone horaire du visiteur" -#: ../../include/user.php:164 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERROR IMPORTANT: La generació de claus de seguretat ha fallat." +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "Description:" -#: ../../include/user.php:222 -msgid "An error occurred during registration. Please try again." -msgstr "Un error ha succeït durant el registre. Intenta-ho de nou." +#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1643 +#: ../../include/bb2diaspora.php:170 ../../include/event.php:40 +msgid "Location:" +msgstr "Localisation:" -#: ../../include/user.php:257 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Un error ha succeit durant la creació del teu perfil per defecte. Intenta-ho de nou." +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "Titre :" -#: ../../include/user.php:377 +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "Partager cet événement" + +#: ../../mod/content.php:437 ../../mod/content.php:740 +#: ../../mod/photos.php:1653 ../../object/Item.php:129 +#: ../../include/conversation.php:613 +msgid "Select" +msgstr "Sélectionner" + +#: ../../mod/content.php:471 ../../mod/content.php:852 +#: ../../mod/content.php:853 ../../object/Item.php:326 +#: ../../object/Item.php:327 ../../include/conversation.php:654 #, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "" +msgid "View %s's profile @ %s" +msgstr "Voir le profil de %s @ %s" -#: ../../include/user.php:381 -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." -msgstr "" - -#: ../../include/user.php:413 ../../mod/admin.php:799 +#: ../../mod/content.php:481 ../../mod/content.php:864 +#: ../../object/Item.php:340 ../../include/conversation.php:674 #, php-format -msgid "Registration details for %s" -msgstr "Detalls del registre per a %s" - -#: ../../include/acl_selectors.php:326 -msgid "Visible to everybody" -msgstr "Visible per tothom" - -#: ../../object/Item.php:94 -msgid "This entry was edited" -msgstr "L'entrada fou editada" - -#: ../../object/Item.php:116 ../../mod/photos.php:1357 -#: ../../mod/content.php:620 -msgid "Private Message" -msgstr "Missatge Privat" - -#: ../../object/Item.php:120 ../../mod/settings.php:673 -#: ../../mod/content.php:728 -msgid "Edit" -msgstr "Editar" - -#: ../../object/Item.php:133 ../../mod/content.php:763 -msgid "save to folder" -msgstr "guardat a la carpeta" - -#: ../../object/Item.php:195 ../../mod/content.php:753 -msgid "add star" -msgstr "Afegir a favorits" - -#: ../../object/Item.php:196 ../../mod/content.php:754 -msgid "remove star" -msgstr "Esborrar favorit" - -#: ../../object/Item.php:197 ../../mod/content.php:755 -msgid "toggle star status" -msgstr "Canviar estatus de favorit" - -#: ../../object/Item.php:200 ../../mod/content.php:758 -msgid "starred" -msgstr "favorit" +msgid "%s from %s" +msgstr "%s de %s" -#: ../../object/Item.php:208 -msgid "ignore thread" -msgstr "" +#: ../../mod/content.php:497 ../../include/conversation.php:690 +msgid "View in context" +msgstr "Voir dans le contexte" -#: ../../object/Item.php:209 -msgid "unignore thread" -msgstr "" +#: ../../mod/content.php:603 ../../object/Item.php:387 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commentaire" +msgstr[1] "%d commentaires" -#: ../../object/Item.php:210 -msgid "toggle ignore status" -msgstr "" +#: ../../mod/content.php:605 ../../object/Item.php:389 +#: ../../object/Item.php:402 ../../include/text.php:1969 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "commentaire" -#: ../../object/Item.php:213 -msgid "ignored" -msgstr "" +#: ../../mod/content.php:606 ../../boot.php:746 ../../object/Item.php:390 +#: ../../include/contact_widgets.php:205 +msgid "show more" +msgstr "montrer plus" -#: ../../object/Item.php:220 ../../mod/content.php:759 -msgid "add tag" -msgstr "afegir etiqueta" +#: ../../mod/content.php:620 ../../mod/photos.php:1359 +#: ../../object/Item.php:116 +msgid "Private Message" +msgstr "Message privé" -#: ../../object/Item.php:231 ../../mod/photos.php:1540 -#: ../../mod/content.php:684 +#: ../../mod/content.php:684 ../../mod/photos.php:1542 +#: ../../object/Item.php:231 msgid "I like this (toggle)" -msgstr "M'agrada això (canviar)" +msgstr "J'aime (bascule)" -#: ../../object/Item.php:231 ../../mod/content.php:684 +#: ../../mod/content.php:684 ../../object/Item.php:231 msgid "like" -msgstr "Agrada" +msgstr "aime" -#: ../../object/Item.php:232 ../../mod/photos.php:1541 -#: ../../mod/content.php:685 +#: ../../mod/content.php:685 ../../mod/photos.php:1543 +#: ../../object/Item.php:232 msgid "I don't like this (toggle)" -msgstr "No m'agrada això (canviar)" +msgstr "Je n'aime pas (bascule)" -#: ../../object/Item.php:232 ../../mod/content.php:685 +#: ../../mod/content.php:685 ../../object/Item.php:232 msgid "dislike" -msgstr "Desagrada" +msgstr "n'aime pas" -#: ../../object/Item.php:234 ../../mod/content.php:687 +#: ../../mod/content.php:687 ../../object/Item.php:234 msgid "Share this" -msgstr "Compartir això" +msgstr "Partager" -#: ../../object/Item.php:234 ../../mod/content.php:687 +#: ../../mod/content.php:687 ../../object/Item.php:234 msgid "share" -msgstr "Compartir" - -#: ../../object/Item.php:328 ../../mod/content.php:854 -msgid "to" -msgstr "a" - -#: ../../object/Item.php:329 -msgid "via" -msgstr "via" - -#: ../../object/Item.php:330 ../../mod/content.php:855 -msgid "Wall-to-Wall" -msgstr "Mur-a-Mur" - -#: ../../object/Item.php:331 ../../mod/content.php:856 -msgid "via Wall-To-Wall:" -msgstr "via Mur-a-Mur" - -#: ../../object/Item.php:387 ../../mod/content.php:603 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentari" -msgstr[1] "%d comentaris" +msgstr "partager" -#: ../../object/Item.php:675 ../../mod/photos.php:1560 -#: ../../mod/photos.php:1604 ../../mod/photos.php:1692 -#: ../../mod/content.php:707 +#: ../../mod/content.php:707 ../../mod/photos.php:1562 +#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 +#: ../../object/Item.php:675 msgid "This is you" -msgstr "Aquest ets tu" +msgstr "C'est vous" + +#: ../../mod/content.php:709 ../../mod/photos.php:1564 +#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:745 +#: ../../object/Item.php:361 ../../object/Item.php:677 +msgid "Comment" +msgstr "Commenter" -#: ../../object/Item.php:679 ../../mod/content.php:711 +#: ../../mod/content.php:711 ../../object/Item.php:679 msgid "Bold" -msgstr "Negreta" +msgstr "Gras" -#: ../../object/Item.php:680 ../../mod/content.php:712 +#: ../../mod/content.php:712 ../../object/Item.php:680 msgid "Italic" -msgstr "Itallica" +msgstr "Italique" -#: ../../object/Item.php:681 ../../mod/content.php:713 +#: ../../mod/content.php:713 ../../object/Item.php:681 msgid "Underline" -msgstr "Subratllat" +msgstr "Souligné" -#: ../../object/Item.php:682 ../../mod/content.php:714 +#: ../../mod/content.php:714 ../../object/Item.php:682 msgid "Quote" -msgstr "Cometes" +msgstr "Citation" -#: ../../object/Item.php:683 ../../mod/content.php:715 +#: ../../mod/content.php:715 ../../object/Item.php:683 msgid "Code" -msgstr "Codi" +msgstr "Code" -#: ../../object/Item.php:684 ../../mod/content.php:716 +#: ../../mod/content.php:716 ../../object/Item.php:684 msgid "Image" -msgstr "Imatge" +msgstr "Image" -#: ../../object/Item.php:685 ../../mod/content.php:717 +#: ../../mod/content.php:717 ../../object/Item.php:685 msgid "Link" -msgstr "Enllaç" +msgstr "Lien" -#: ../../object/Item.php:686 ../../mod/content.php:718 +#: ../../mod/content.php:718 ../../object/Item.php:686 msgid "Video" -msgstr "Video" - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Element no disponible" - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Element no trobat." - -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Nombre diari de missatges al mur per %s excedit. El missatge ha fallat." +msgstr "Vidéo" -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 -msgid "No recipient selected." -msgstr "No s'ha seleccionat destinatari." +#: ../../mod/content.php:719 ../../mod/editpost.php:145 +#: ../../mod/photos.php:1566 ../../mod/photos.php:1610 +#: ../../mod/photos.php:1698 ../../object/Item.php:687 +#: ../../include/conversation.php:1126 +msgid "Preview" +msgstr "Aperçu" -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Incapaç de comprovar la localització." +#: ../../mod/content.php:728 ../../mod/settings.php:676 +#: ../../object/Item.php:120 +msgid "Edit" +msgstr "Éditer" -#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 -msgid "Message could not be sent." -msgstr "El Missatge no ha estat enviat." +#: ../../mod/content.php:753 ../../object/Item.php:195 +msgid "add star" +msgstr "mett en avant" -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "Ha fallat la recollida del missatge." +#: ../../mod/content.php:754 ../../object/Item.php:196 +msgid "remove star" +msgstr "ne plus mettre en avant" -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -msgid "Message sent." -msgstr "Missatge enviat." +#: ../../mod/content.php:755 ../../object/Item.php:197 +msgid "toggle star status" +msgstr "mettre en avant" -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Sense destinatari." +#: ../../mod/content.php:758 ../../object/Item.php:200 +msgid "starred" +msgstr "mis en avant" -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 -msgid "Send Private Message" -msgstr "Enviant Missatge Privat" +#: ../../mod/content.php:759 ../../object/Item.php:220 +msgid "add tag" +msgstr "ajouter une étiquette" -#: ../../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 vols respondre a %s, comprova que els ajustos de privacitat del lloc permeten correus privats de remitents desconeguts." +#: ../../mod/content.php:763 ../../object/Item.php:133 +msgid "save to folder" +msgstr "sauver vers dossier" -#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 -#: ../../mod/message.php:553 -msgid "To:" -msgstr "Per a:" +#: ../../mod/content.php:854 ../../object/Item.php:328 +msgid "to" +msgstr "à" -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 -msgid "Subject:" -msgstr "Assumpte::" +#: ../../mod/content.php:855 ../../object/Item.php:330 +msgid "Wall-to-Wall" +msgstr "Inter-mur" -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -#: ../../mod/message.php:329 ../../mod/message.php:558 -msgid "Your message:" -msgstr "El teu missatge:" +#: ../../mod/content.php:856 ../../object/Item.php:331 +msgid "via Wall-To-Wall:" +msgstr "en Inter-mur:" -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Grup creat." +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Supprimer mon compte" -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "No puc crear grup." +#: ../../mod/removeme.php:47 +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/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Grup no trobat" +#: ../../mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Merci de saisir votre mot de passe pour vérification:" -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Nom de Grup canviat." +#: ../../mod/install.php:117 +msgid "Friendica Communications Server - Setup" +msgstr "Serveur de communications Friendica - Configuration" -#: ../../mod/group.php:87 -msgid "Save Group" -msgstr "" +#: ../../mod/install.php:123 +msgid "Could not connect to database." +msgstr "Impossible de se connecter à la base." -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Crear un grup de contactes/amics." +#: ../../mod/install.php:127 +msgid "Could not create table." +msgstr "Impossible de créer une table." -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Nom del Grup:" +#: ../../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/group.php:113 -msgid "Group removed." -msgstr "Grup esborrat." +#: ../../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/group.php:115 -msgid "Unable to remove group." -msgstr "Incapaç de esborrar Grup." +#: ../../mod/install.php:139 ../../mod/install.php:206 +#: ../../mod/install.php:525 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Référez-vous au fichier \"INSTALL.txt\"." -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Editor de Grup:" +#: ../../mod/install.php:203 +msgid "System check" +msgstr "Vérifications système" -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Membres" +#: ../../mod/install.php:208 +msgid "Check again" +msgstr "Vérifier à nouveau" -#: ../../mod/group.php:194 ../../mod/contacts.php:562 -msgid "All Contacts" -msgstr "Tots els Contactes" +#: ../../mod/install.php:227 +msgid "Database connection" +msgstr "Connexion à la base de données" -#: ../../mod/group.php:224 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." -msgstr "Clicar sobre el contacte per afegir o esborrar." +#: ../../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/delegate.php:95 -msgid "No potential page delegates located." -msgstr "No es troben pàgines potencialment delegades." +#: ../../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/delegate.php:126 +#: ../../mod/install.php:230 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 "Els delegats poden gestionar tots els aspectes d'aquest compte/pàgina, excepte per als ajustaments bàsics del compte. Si us plau, no deleguin el seu compte personal a ningú que no confiïn completament." +"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/delegate.php:127 -msgid "Existing Page Managers" -msgstr "Actuals Administradors de Pàgina" +#: ../../mod/install.php:234 +msgid "Database Server Name" +msgstr "Serveur de base de données" -#: ../../mod/delegate.php:129 -msgid "Existing Page Delegates" -msgstr "Actuals Delegats de Pàgina" +#: ../../mod/install.php:235 +msgid "Database Login Name" +msgstr "Nom d'utilisateur de la base" -#: ../../mod/delegate.php:131 -msgid "Potential Delegates" -msgstr "Delegats Potencials" +#: ../../mod/install.php:236 +msgid "Database Login Password" +msgstr "Mot de passe de la base" -#: ../../mod/delegate.php:133 ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Esborrar" +#: ../../mod/install.php:237 +msgid "Database Name" +msgstr "Nom de la base" -#: ../../mod/delegate.php:134 -msgid "Add" -msgstr "Afegir" +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "Site administrator email address" +msgstr "Adresse électronique de l'administrateur du site" -#: ../../mod/delegate.php:135 -msgid "No entries." -msgstr "Sense entrades" +#: ../../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/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Sol·licitud d'identificació no vàlida." +#: ../../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/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "Descartar" +#: ../../mod/install.php:267 +msgid "Site settings" +msgstr "Réglages du site" -#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:210 ../../mod/contacts.php:443 -#: ../../mod/contacts.php:497 ../../mod/contacts.php:707 -msgid "Ignore" -msgstr "Ignorar" +#: ../../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/notifications.php:78 -msgid "System" -msgstr "Sistema" +#: ../../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/notifications.php:88 ../../mod/network.php:365 -msgid "Personal" -msgstr "Personal" +#: ../../mod/install.php:326 +msgid "PHP executable path" +msgstr "Chemin vers l'exécutable de PHP" -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Mostra les Sol·licituds Ignorades" +#: ../../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/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Amaga les Sol·licituds Ignorades" +#: ../../mod/install.php:331 +msgid "Command line PHP" +msgstr "Version \"ligne de commande\" de PHP" -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "Tipus de Notificació:" +#: ../../mod/install.php:340 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)" -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Amics Suggerits " +#: ../../mod/install.php:341 +msgid "Found PHP version: " +msgstr "Version de PHP:" -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "sugerit per %s" +#: ../../mod/install.php:343 +msgid "PHP cli binary" +msgstr "PHP cli binary" -#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 -#: ../../mod/contacts.php:503 -msgid "Hide this contact from others" -msgstr "Amaga aquest contacte dels altres" +#: ../../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/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "Publica una activitat d'amic nova" +#: ../../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/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "si es pot aplicar" +#: ../../mod/install.php:357 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 -#: ../../mod/admin.php:966 -msgid "Approve" -msgstr "Aprovar" +#: ../../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/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Diu que et coneix:" +#: ../../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/notifications.php:181 -msgid "yes" -msgstr "sí" +#: ../../mod/install.php:381 +msgid "Generate encryption keys" +msgstr "Générer les clés de chiffrement" -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "no" +#: ../../mod/install.php:388 +msgid "libCurl PHP module" +msgstr "Module libCurl de PHP" -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Aprovat com:" +#: ../../mod/install.php:389 +msgid "GD graphics PHP module" +msgstr "Module GD (graphiques) de PHP" -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "Amic" +#: ../../mod/install.php:390 +msgid "OpenSSL PHP module" +msgstr "Module OpenSSL de PHP" -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "Partícip" +#: ../../mod/install.php:391 +msgid "mysqli PHP module" +msgstr "Module Mysqli de PHP" -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "Fan/Admirador" +#: ../../mod/install.php:392 +msgid "mb_string PHP module" +msgstr "Module mb_string de PHP" -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "Sol·licitud d'Amistat/Connexió" +#: ../../mod/install.php:397 ../../mod/install.php:399 +msgid "Apache mod_rewrite module" +msgstr "Module mod_rewrite Apache" -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "Nou Seguidor" +#: ../../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/notifications.php:217 -msgid "No introductions." -msgstr "Sense presentacions." +#: ../../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/notifications.php:258 ../../mod/notifications.php:387 -#: ../../mod/notifications.php:478 +#: ../../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 "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu." + +#: ../../mod/install.php: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 "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica." + +#: ../../mod/install.php:456 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier." + +#: ../../mod/install.php: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 "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient." + +#: ../../mod/install.php:460 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 est autorisé à l écriture" + +#: ../../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:523 +msgid "

What next

" +msgstr "

Ensuite

" + +#: ../../mod/install.php:524 +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/wallmessage.php:42 ../../mod/wallmessage.php:112 #, php-format -msgid "%s liked %s's post" -msgstr "A %s li agrada l'enviament de %s" +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/notifications.php:268 ../../mod/notifications.php:397 -#: ../../mod/notifications.php:488 +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Impossible de vérifier votre localisation." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Pas de destinataire." + +#: ../../mod/wallmessage.php:143 #, php-format -msgid "%s disliked %s's post" -msgstr "A %s no li agrada l'enviament de %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 "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus." -#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 -#: ../../mod/notifications.php:503 +#: ../../mod/help.php:79 +msgid "Help:" +msgstr "Aide:" + +#: ../../mod/help.php:84 ../../include/nav.php:114 +msgid "Help" +msgstr "Aide" + +#: ../../mod/help.php:90 ../../index.php:256 +msgid "Not Found" +msgstr "Non trouvé" + +#: ../../mod/help.php:93 ../../index.php:259 +msgid "Page not found." +msgstr "Page introuvable." + +#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #, php-format -msgid "%s is now friends with %s" -msgstr "%s es ara amic de %s" +msgid "%1$s welcomes %2$s" +msgstr "%1$s accueille %2$s" -#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 +#: ../../mod/home.php:35 #, php-format -msgid "%s created a new post" -msgstr "%s ha creat un enviament nou" +msgid "Welcome to %s" +msgstr "Bienvenue sur %s" -#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 -#: ../../mod/notifications.php:513 +#: ../../mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise" + +#: ../../mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: ../../mod/wall_attach.php:81 #, php-format -msgid "%s commented on %s's post" -msgstr "%s va comentar en l'enviament de %s" +msgid "File exceeds size limit of %d" +msgstr "La taille du fichier dépasse la limite de %d" -#: ../../mod/notifications.php:306 -msgid "No more network notifications." -msgstr "No més notificacions de xarxa." +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +msgid "File upload failed." +msgstr "Le téléversement a échoué." -#: ../../mod/notifications.php:310 -msgid "Network Notifications" -msgstr "Notificacions de la Xarxa" +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Correpondance de profils" -#: ../../mod/notifications.php:336 ../../mod/notify.php:75 -msgid "No more system notifications." -msgstr "No més notificacions del sistema." +#: ../../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/notifications.php:340 ../../mod/notify.php:79 -msgid "System Notifications" -msgstr "Notificacions del Sistema" +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "s'intéresse à:" -#: ../../mod/notifications.php:435 -msgid "No more personal notifications." -msgstr "No més notificacions personals." +#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1563 +#: ../../include/contact_widgets.php:10 +msgid "Connect" +msgstr "Relier" -#: ../../mod/notifications.php:439 -msgid "Personal Notifications" -msgstr "Notificacions Personals" +#: ../../mod/share.php:44 +msgid "link" +msgstr "lien" -#: ../../mod/notifications.php:520 -msgid "No more home notifications." -msgstr "No més notificacions d'inici." +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Indisponible." -#: ../../mod/notifications.php:524 -msgid "Home Notifications" -msgstr "Notificacions d'Inici" +#: ../../mod/community.php:32 ../../include/nav.php:129 +#: ../../view/theme/diabook/theme.php:129 +msgid "Community" +msgstr "Communauté" -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Sense perfil" +#: ../../mod/community.php:62 ../../mod/community.php:71 +#: ../../mod/search.php:170 ../../mod/search.php:196 +msgid "No results." +msgstr "Aucun résultat." #: ../../mod/settings.php:29 ../../mod/photos.php:80 msgid "everybody" -msgstr "tothom" - -#: ../../mod/settings.php:36 ../../mod/admin.php:977 -msgid "Account" -msgstr "Compte" +msgstr "tout le monde" #: ../../mod/settings.php:41 msgid "Additional features" -msgstr "Característiques Adicionals" +msgstr "Fonctions supplémentaires" #: ../../mod/settings.php:46 msgid "Display" -msgstr "" +msgstr "Afficher" -#: ../../mod/settings.php:52 ../../mod/settings.php:777 +#: ../../mod/settings.php:52 ../../mod/settings.php:780 msgid "Social Networks" -msgstr "" +msgstr "Réseaux sociaux" -#: ../../mod/settings.php:57 ../../mod/admin.php:106 ../../mod/admin.php:1063 -#: ../../mod/admin.php:1116 -msgid "Plugins" -msgstr "Plugins" +#: ../../mod/settings.php:62 ../../include/nav.php:168 +msgid "Delegations" +msgstr "Délégations" #: ../../mod/settings.php:67 msgid "Connected apps" -msgstr "App connectada" +msgstr "Applications connectées" #: ../../mod/settings.php:72 ../../mod/uexport.php:85 msgid "Export personal data" -msgstr "Exportar dades personals" +msgstr "Exporter" #: ../../mod/settings.php:77 msgid "Remove account" -msgstr "Esborrar compte" +msgstr "Supprimer le compte" #: ../../mod/settings.php:129 msgid "Missing some important data!" -msgstr "Perdudes algunes dades importants!" - -#: ../../mod/settings.php:132 ../../mod/settings.php:637 -#: ../../mod/contacts.php:705 -msgid "Update" -msgstr "Actualitzar" +msgstr "Il manque certaines informations importantes!" #: ../../mod/settings.php:238 msgid "Failed to connect with email account using the settings provided." -msgstr "Connexió fracassada amb el compte de correu emprant la configuració proveïda." +msgstr "Impossible de se connecter au compte courriel configuré." #: ../../mod/settings.php:243 msgid "Email settings updated." -msgstr "Configuració del correu electrònic actualitzada." +msgstr "Réglages de courriel mis-à-jour." #: ../../mod/settings.php:258 msgid "Features updated" -msgstr "Característiques actualitzades" +msgstr "Fonctionnalités mises à jour" #: ../../mod/settings.php:321 msgid "Relocate message has been send to your contacts" @@ -3431,4270 +3614,4196 @@ msgstr "" #: ../../mod/settings.php:335 msgid "Passwords do not match. Password unchanged." -msgstr "Les contrasenyes no coincideixen. Contrasenya no canviada." +msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." #: ../../mod/settings.php:340 msgid "Empty passwords are not allowed. Password unchanged." -msgstr "No es permeten contasenyes buides. Contrasenya no canviada" +msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué." #: ../../mod/settings.php:348 msgid "Wrong password." -msgstr "Contrasenya errònia" +msgstr "Mauvais mot de passe." #: ../../mod/settings.php:359 msgid "Password changed." -msgstr "Contrasenya canviada." +msgstr "Mots de passe changés." #: ../../mod/settings.php:361 msgid "Password update failed. Please try again." -msgstr "Ha fallat l'actualització de la Contrasenya. Per favor, intenti-ho de nou." +msgstr "Le changement de mot de passe a échoué. Merci de recommencer." -#: ../../mod/settings.php:426 +#: ../../mod/settings.php:428 msgid " Please use a shorter name." -msgstr "Si us plau, faci servir un nom més curt." +msgstr " Merci d'utiliser un nom plus court." -#: ../../mod/settings.php:428 +#: ../../mod/settings.php:430 msgid " Name too short." -msgstr "Nom massa curt." +msgstr " Nom trop court." -#: ../../mod/settings.php:437 +#: ../../mod/settings.php:439 msgid "Wrong Password" -msgstr "Contrasenya Errònia" +msgstr "Mauvais mot de passe" -#: ../../mod/settings.php:442 +#: ../../mod/settings.php:444 msgid " Not valid email." -msgstr "Correu no vàlid." +msgstr " Email invalide." -#: ../../mod/settings.php:448 +#: ../../mod/settings.php:450 msgid " Cannot change to that email." -msgstr "No puc canviar a aquest correu." +msgstr " Impossible de changer pour cet email." -#: ../../mod/settings.php:503 +#: ../../mod/settings.php:506 msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Els Fòrums privats no tenen permisos de privacitat. Empra la privacitat de grup per defecte." +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:507 +#: ../../mod/settings.php:510 msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Els Fòrums privats no tenen permisos de privacitat i tampoc privacitat per defecte de grup." +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:537 +#: ../../mod/settings.php:540 msgid "Settings updated." -msgstr "Ajustos actualitzats." - -#: ../../mod/settings.php:610 ../../mod/settings.php:636 -#: ../../mod/settings.php:672 -msgid "Add application" -msgstr "Afegir aplicació" - -#: ../../mod/settings.php:611 ../../mod/settings.php:721 -#: ../../mod/settings.php:795 ../../mod/settings.php:877 -#: ../../mod/settings.php:1110 ../../mod/admin.php:588 -#: ../../mod/admin.php:1117 ../../mod/admin.php:1319 ../../mod/admin.php:1406 -msgid "Save Settings" -msgstr "" +msgstr "Réglages mis à jour." #: ../../mod/settings.php:613 ../../mod/settings.php:639 -#: ../../mod/admin.php:964 ../../mod/admin.php:976 ../../mod/admin.php:977 -#: ../../mod/admin.php:990 ../../mod/crepair.php:158 -msgid "Name" -msgstr "Nom" +#: ../../mod/settings.php:675 +msgid "Add application" +msgstr "Ajouter une application" -#: ../../mod/settings.php:614 ../../mod/settings.php:640 +#: ../../mod/settings.php:617 ../../mod/settings.php:643 msgid "Consumer Key" -msgstr "Consumer Key" +msgstr "Clé utilisateur" -#: ../../mod/settings.php:615 ../../mod/settings.php:641 +#: ../../mod/settings.php:618 ../../mod/settings.php:644 msgid "Consumer Secret" -msgstr "Consumer Secret" +msgstr "Secret utilisateur" -#: ../../mod/settings.php:616 ../../mod/settings.php:642 +#: ../../mod/settings.php:619 ../../mod/settings.php:645 msgid "Redirect" -msgstr "Redirigir" +msgstr "Rediriger" -#: ../../mod/settings.php:617 ../../mod/settings.php:643 +#: ../../mod/settings.php:620 ../../mod/settings.php:646 msgid "Icon url" -msgstr "icona de url" +msgstr "URL de l'icône" -#: ../../mod/settings.php:628 +#: ../../mod/settings.php:631 msgid "You can't edit this application." -msgstr "No pots editar aquesta aplicació." +msgstr "Vous ne pouvez pas éditer cette application." -#: ../../mod/settings.php:671 +#: ../../mod/settings.php:674 msgid "Connected Apps" -msgstr "Aplicacions conectades" +msgstr "Applications connectées" -#: ../../mod/settings.php:675 +#: ../../mod/settings.php:678 msgid "Client key starts with" -msgstr "Les claus de client comançen amb" +msgstr "La clé cliente commence par" -#: ../../mod/settings.php:676 +#: ../../mod/settings.php:679 msgid "No name" -msgstr "Sense nom" +msgstr "Sans nom" -#: ../../mod/settings.php:677 +#: ../../mod/settings.php:680 msgid "Remove authorization" -msgstr "retirar l'autorització" +msgstr "Révoquer l'autorisation" -#: ../../mod/settings.php:689 +#: ../../mod/settings.php:692 msgid "No Plugin settings configured" -msgstr "No s'han configurat ajustos de Plugin" +msgstr "Pas de réglages d'extensions configurés" -#: ../../mod/settings.php:697 +#: ../../mod/settings.php:700 msgid "Plugin Settings" -msgstr "Ajustos de Plugin" +msgstr "Extensions" -#: ../../mod/settings.php:711 +#: ../../mod/settings.php:714 msgid "Off" -msgstr "Apagat" +msgstr "Éteint" -#: ../../mod/settings.php:711 +#: ../../mod/settings.php:714 msgid "On" -msgstr "Engegat" +msgstr "Allumé" -#: ../../mod/settings.php:719 +#: ../../mod/settings.php:722 msgid "Additional Features" -msgstr "Característiques Adicionals" +msgstr "Fonctions supplémentaires" -#: ../../mod/settings.php:733 ../../mod/settings.php:734 +#: ../../mod/settings.php:736 ../../mod/settings.php:737 #, php-format msgid "Built-in support for %s connectivity is %s" -msgstr "El suport integrat per a la connectivitat de %s és %s" +msgstr "Le support natif pour la connectivité %s est %s" -#: ../../mod/settings.php:733 ../../mod/settings.php:734 +#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../mod/settings.php:736 ../../mod/settings.php:737 msgid "enabled" -msgstr "habilitat" +msgstr "activé" -#: ../../mod/settings.php:733 ../../mod/settings.php:734 +#: ../../mod/settings.php:736 ../../mod/settings.php:737 msgid "disabled" -msgstr "deshabilitat" +msgstr "désactivé" -#: ../../mod/settings.php:734 +#: ../../mod/settings.php:737 msgid "StatusNet" msgstr "StatusNet" -#: ../../mod/settings.php:770 +#: ../../mod/settings.php:773 msgid "Email access is disabled on this site." -msgstr "L'accés al correu està deshabilitat en aquest lloc." +msgstr "L'accès courriel est désactivé sur ce site." -#: ../../mod/settings.php:782 +#: ../../mod/settings.php:785 msgid "Email/Mailbox Setup" -msgstr "Preparació de Correu/Bústia" +msgstr "Réglages de courriel/boîte à lettre" -#: ../../mod/settings.php:783 +#: ../../mod/settings.php:786 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." -msgstr "Si vol comunicar-se amb els contactes de correu emprant aquest servei (opcional), Si us plau, especifiqui com connectar amb la seva bústia." +msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte." -#: ../../mod/settings.php:784 +#: ../../mod/settings.php:787 msgid "Last successful email check:" -msgstr "Última comprovació de correu amb èxit:" +msgstr "Dernière vérification réussie des courriels:" -#: ../../mod/settings.php:786 +#: ../../mod/settings.php:789 msgid "IMAP server name:" -msgstr "Nom del servidor IMAP:" +msgstr "Nom du serveur IMAP:" -#: ../../mod/settings.php:787 +#: ../../mod/settings.php:790 msgid "IMAP port:" msgstr "Port IMAP:" -#: ../../mod/settings.php:788 +#: ../../mod/settings.php:791 msgid "Security:" -msgstr "Seguretat:" +msgstr "Sécurité:" -#: ../../mod/settings.php:788 ../../mod/settings.php:793 +#: ../../mod/settings.php:791 ../../mod/settings.php:796 msgid "None" -msgstr "Cap" +msgstr "Aucun(e)" -#: ../../mod/settings.php:789 +#: ../../mod/settings.php:792 msgid "Email login name:" -msgstr "Nom d'usuari del correu" +msgstr "Nom de connexion:" -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:793 msgid "Email password:" -msgstr "Contrasenya del correu:" +msgstr "Mot de passe:" -#: ../../mod/settings.php:791 +#: ../../mod/settings.php:794 msgid "Reply-to address:" -msgstr "Adreça de resposta:" +msgstr "Adresse de réponse:" -#: ../../mod/settings.php:792 +#: ../../mod/settings.php:795 msgid "Send public posts to all email contacts:" -msgstr "Enviar correu públic a tots els contactes del correu:" +msgstr "Envoyer les publications publiques à tous les contacts courriels:" -#: ../../mod/settings.php:793 +#: ../../mod/settings.php:796 msgid "Action after import:" -msgstr "Acció després d'importar:" +msgstr "Action après import:" -#: ../../mod/settings.php:793 +#: ../../mod/settings.php:796 msgid "Mark as seen" -msgstr "Marcar com a vist" +msgstr "Marquer comme vu" -#: ../../mod/settings.php:793 +#: ../../mod/settings.php:796 msgid "Move to folder" -msgstr "Moure a la carpeta" +msgstr "Déplacer vers" -#: ../../mod/settings.php:794 +#: ../../mod/settings.php:797 msgid "Move to folder:" -msgstr "Moure a la carpeta:" - -#: ../../mod/settings.php:825 ../../mod/admin.php:523 -msgid "No special theme for mobile devices" -msgstr "No hi ha un tema específic per a mòbil" +msgstr "Déplacer vers:" -#: ../../mod/settings.php:875 +#: ../../mod/settings.php:878 msgid "Display Settings" -msgstr "Ajustos de Pantalla" +msgstr "Affichage" -#: ../../mod/settings.php:881 ../../mod/settings.php:896 +#: ../../mod/settings.php:884 ../../mod/settings.php:899 msgid "Display Theme:" -msgstr "Visualitzar el Tema:" +msgstr "Thème d'affichage:" -#: ../../mod/settings.php:882 +#: ../../mod/settings.php:885 msgid "Mobile Theme:" -msgstr "Tema Mobile:" +msgstr "Thème mobile:" -#: ../../mod/settings.php:883 +#: ../../mod/settings.php:886 msgid "Update browser every xx seconds" -msgstr "Actualitzar navegador cada xx segons" +msgstr "Mettre-à-jour l'affichage toutes les xx secondes" -#: ../../mod/settings.php:883 +#: ../../mod/settings.php:886 msgid "Minimum of 10 seconds, no maximum" -msgstr "Mínim cada 10 segons, no hi ha màxim" +msgstr "Délai minimum de 10 secondes, pas de maximum" -#: ../../mod/settings.php:884 +#: ../../mod/settings.php:887 msgid "Number of items to display per page:" -msgstr "Número d'elements a mostrar per pàgina" +msgstr "Nombre d’éléments par page:" -#: ../../mod/settings.php:884 ../../mod/settings.php:885 +#: ../../mod/settings.php:887 ../../mod/settings.php:888 msgid "Maximum of 100 items" -msgstr "Màxim de 100 elements" +msgstr "Maximum de 100 éléments" -#: ../../mod/settings.php:885 +#: ../../mod/settings.php:888 msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Nombre d'elements a veure per pàgina quan es vegin des d'un dispositiu mòbil:" +msgstr "Nombre d'éléments a afficher par page pour un appareil mobile" -#: ../../mod/settings.php:886 +#: ../../mod/settings.php:889 msgid "Don't show emoticons" -msgstr "No mostrar emoticons" +msgstr "Ne pas afficher les émoticônes (smileys grahiques)" -#: ../../mod/settings.php:887 +#: ../../mod/settings.php:890 msgid "Don't show notices" -msgstr "" +msgstr "Ne plus afficher les avis" -#: ../../mod/settings.php:888 +#: ../../mod/settings.php:891 msgid "Infinite scroll" -msgstr "" +msgstr "Défilement infini" -#: ../../mod/settings.php:889 +#: ../../mod/settings.php:892 msgid "Automatic updates only at the top of the network page" msgstr "" -#: ../../mod/settings.php:966 +#: ../../mod/settings.php:969 msgid "User Types" -msgstr "" +msgstr "Types d'utilisateurs" -#: ../../mod/settings.php:967 +#: ../../mod/settings.php:970 msgid "Community Types" -msgstr "" +msgstr "Genre de communautés" -#: ../../mod/settings.php:968 +#: ../../mod/settings.php:971 msgid "Normal Account Page" -msgstr "Pàgina Normal del Compte " +msgstr "Compte normal" -#: ../../mod/settings.php:969 +#: ../../mod/settings.php:972 msgid "This account is a normal personal profile" -msgstr "Aques compte es un compte personal normal" +msgstr "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)" -#: ../../mod/settings.php:972 +#: ../../mod/settings.php:975 msgid "Soapbox Page" -msgstr "Pàgina de Soapbox" +msgstr "Compte \"boîte à savon\"" -#: ../../mod/settings.php:973 +#: ../../mod/settings.php:976 msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Aprova automàticament totes les sol·licituds de amistat/connexió com a fans de només lectura." +msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'" -#: ../../mod/settings.php:976 +#: ../../mod/settings.php:979 msgid "Community Forum/Celebrity Account" -msgstr "Compte de Comunitat/Celebritat" +msgstr "Compte de communauté/célébrité" -#: ../../mod/settings.php:977 +#: ../../mod/settings.php:980 msgid "" "Automatically approve all connection/friend requests as read-write fans" -msgstr "Aprova automàticament totes les sol·licituds de amistat/connexió com a fans de lectura-escriptura" +msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'" -#: ../../mod/settings.php:980 +#: ../../mod/settings.php:983 msgid "Automatic Friend Page" -msgstr "Compte d'Amistat Automàtica" +msgstr "Compte d'\"amitié automatique\"" -#: ../../mod/settings.php:981 +#: ../../mod/settings.php:984 msgid "Automatically approve all connection/friend requests as friends" -msgstr "Aprova totes les sol·licituds de amistat/connexió com a amic automàticament" +msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis" -#: ../../mod/settings.php:984 +#: ../../mod/settings.php:987 msgid "Private Forum [Experimental]" -msgstr "Fòrum Privat [Experimental]" +msgstr "Forum privé [expérimental]" -#: ../../mod/settings.php:985 +#: ../../mod/settings.php:988 msgid "Private forum - approved members only" -msgstr "Fòrum privat - Només membres aprovats" +msgstr "Forum privé - modéré en inscription" -#: ../../mod/settings.php:997 +#: ../../mod/settings.php:1000 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:997 +#: ../../mod/settings.php:1000 msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opcional) Permetre a aquest OpenID iniciar sessió en aquest compte." +msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte." -#: ../../mod/settings.php:1007 +#: ../../mod/settings.php:1010 msgid "Publish your default profile in your local site directory?" -msgstr "Publicar el teu perfil predeterminat en el directori del lloc local?" - -#: ../../mod/settings.php:1007 ../../mod/settings.php:1013 -#: ../../mod/settings.php:1021 ../../mod/settings.php:1025 -#: ../../mod/settings.php:1030 ../../mod/settings.php:1036 -#: ../../mod/settings.php:1042 ../../mod/settings.php:1048 -#: ../../mod/settings.php:1078 ../../mod/settings.php:1079 -#: ../../mod/settings.php:1080 ../../mod/settings.php:1081 -#: ../../mod/settings.php:1082 ../../mod/register.php:231 -#: ../../mod/dfrn_request.php:834 ../../mod/api.php:106 -#: ../../mod/profiles.php:620 ../../mod/profiles.php:624 +msgstr "Publier votre profil par défaut sur l'annuaire local de ce site?" + +#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 +#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 +#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 +#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 +#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 +#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 +#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 +#: ../../mod/register.php:234 ../../mod/profiles.php:627 +#: ../../mod/profiles.php:631 ../../mod/api.php:106 msgid "No" -msgstr "No" +msgstr "Non" -#: ../../mod/settings.php:1013 +#: ../../mod/settings.php:1016 msgid "Publish your default profile in the global social directory?" -msgstr "Publicar el teu perfil predeterminat al directori social global?" +msgstr "Publier votre profil par défaut sur l'annuaire social global?" -#: ../../mod/settings.php:1021 +#: ../../mod/settings.php:1024 msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Amaga la teva llista de contactes/amics dels espectadors del seu perfil per defecte?" +msgstr "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?" + +#: ../../mod/settings.php:1028 ../../include/conversation.php:1057 +msgid "Hide your profile details from unknown viewers?" +msgstr "Cacher les détails du profil aux visiteurs inconnus?" -#: ../../mod/settings.php:1030 +#: ../../mod/settings.php:1028 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: ../../mod/settings.php:1033 msgid "Allow friends to post to your profile page?" -msgstr "Permet als amics publicar en la seva pàgina de perfil?" +msgstr "Autoriser vos amis à publier sur votre profil?" -#: ../../mod/settings.php:1036 +#: ../../mod/settings.php:1039 msgid "Allow friends to tag your posts?" -msgstr "Permet als amics d'etiquetar els teus missatges?" +msgstr "Autoriser vos amis à étiqueter vos publications?" -#: ../../mod/settings.php:1042 +#: ../../mod/settings.php:1045 msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Permeteu-nos suggerir-li com un amic potencial dels nous membres?" +msgstr "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?" -#: ../../mod/settings.php:1048 +#: ../../mod/settings.php:1051 msgid "Permit unknown people to send you private mail?" -msgstr "Permetre a desconeguts enviar missatges al teu correu privat?" +msgstr "Autoriser les messages privés d'inconnus?" -#: ../../mod/settings.php:1056 +#: ../../mod/settings.php:1059 msgid "Profile is not published." -msgstr "El Perfil no està publicat." - -#: ../../mod/settings.php:1059 ../../mod/profile_photo.php:248 -msgid "or" -msgstr "o" +msgstr "Ce profil n'est pas publié." -#: ../../mod/settings.php:1064 +#: ../../mod/settings.php:1067 msgid "Your Identity Address is" -msgstr "La seva Adreça d'Identitat és" +msgstr "L'adresse de votre identité est" -#: ../../mod/settings.php:1075 +#: ../../mod/settings.php:1078 msgid "Automatically expire posts after this many days:" -msgstr "Després de aquests nombre de dies, els missatges caduquen automàticament:" +msgstr "Les publications expirent automatiquement après (en jours) :" -#: ../../mod/settings.php:1075 +#: ../../mod/settings.php:1078 msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Si està buit, els missatges no caducarà. Missatges caducats s'eliminaran" +msgstr "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées" -#: ../../mod/settings.php:1076 +#: ../../mod/settings.php:1079 msgid "Advanced expiration settings" -msgstr "Configuració avançada d'expiració" +msgstr "Réglages avancés de l'expiration" -#: ../../mod/settings.php:1077 +#: ../../mod/settings.php:1080 msgid "Advanced Expiration" -msgstr "Expiració Avançada" +msgstr "Expiration (avancé)" -#: ../../mod/settings.php:1078 +#: ../../mod/settings.php:1081 msgid "Expire posts:" -msgstr "Expiració d'enviaments" +msgstr "Faire expirer les publications:" -#: ../../mod/settings.php:1079 +#: ../../mod/settings.php:1082 msgid "Expire personal notes:" -msgstr "Expiració de notes personals" +msgstr "Faire expirer les notes personnelles:" -#: ../../mod/settings.php:1080 +#: ../../mod/settings.php:1083 msgid "Expire starred posts:" -msgstr "Expiració de enviaments de favorits" +msgstr "Faire expirer les publications marqués:" -#: ../../mod/settings.php:1081 +#: ../../mod/settings.php:1084 msgid "Expire photos:" -msgstr "Expiració de fotos" +msgstr "Faire expirer les photos:" -#: ../../mod/settings.php:1082 +#: ../../mod/settings.php:1085 msgid "Only expire posts by others:" -msgstr "Només expiren els enviaments dels altres:" +msgstr "Faire expirer seulement les publications des autres:" -#: ../../mod/settings.php:1108 +#: ../../mod/settings.php:1111 msgid "Account Settings" -msgstr "Ajustos de Compte" +msgstr "Compte" -#: ../../mod/settings.php:1116 +#: ../../mod/settings.php:1119 msgid "Password Settings" -msgstr "Ajustos de Contrasenya" +msgstr "Réglages de mot de passe" -#: ../../mod/settings.php:1117 +#: ../../mod/settings.php:1120 msgid "New Password:" -msgstr "Nova Contrasenya:" +msgstr "Nouveau mot de passe:" -#: ../../mod/settings.php:1118 +#: ../../mod/settings.php:1121 msgid "Confirm:" -msgstr "Confirmar:" +msgstr "Confirmer:" -#: ../../mod/settings.php:1118 +#: ../../mod/settings.php:1121 msgid "Leave password fields blank unless changing" -msgstr "Deixi els camps de contrasenya buits per a no fer canvis" +msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer" -#: ../../mod/settings.php:1119 +#: ../../mod/settings.php:1122 msgid "Current Password:" -msgstr "Contrasenya Actual:" +msgstr "Mot de passe actuel:" -#: ../../mod/settings.php:1119 ../../mod/settings.php:1120 +#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 msgid "Your current password to confirm the changes" -msgstr "La teva actual contrasenya a fi de confirmar els canvis" +msgstr "Votre mot de passe actuel pour confirmer les modifications" -#: ../../mod/settings.php:1120 +#: ../../mod/settings.php:1123 msgid "Password:" -msgstr "Contrasenya:" +msgstr "Mot de passe:" -#: ../../mod/settings.php:1124 +#: ../../mod/settings.php:1127 msgid "Basic Settings" -msgstr "Ajustos Basics" +msgstr "Réglages basiques" + +#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "Nom complet:" -#: ../../mod/settings.php:1126 +#: ../../mod/settings.php:1129 msgid "Email Address:" -msgstr "Adreça de Correu:" +msgstr "Adresse courriel:" -#: ../../mod/settings.php:1127 +#: ../../mod/settings.php:1130 msgid "Your Timezone:" -msgstr "La teva zona Horària:" +msgstr "Votre fuseau horaire:" -#: ../../mod/settings.php:1128 +#: ../../mod/settings.php:1131 msgid "Default Post Location:" -msgstr "Localització per Defecte del Missatge:" +msgstr "Emplacement de publication par défaut:" -#: ../../mod/settings.php:1129 +#: ../../mod/settings.php:1132 msgid "Use Browser Location:" -msgstr "Ubicar-se amb el Navegador:" +msgstr "Utiliser la localisation géographique du navigateur:" -#: ../../mod/settings.php:1132 +#: ../../mod/settings.php:1135 msgid "Security and Privacy Settings" -msgstr "Ajustos de Seguretat i Privacitat" +msgstr "Réglages de sécurité et vie privée" -#: ../../mod/settings.php:1134 +#: ../../mod/settings.php:1137 msgid "Maximum Friend Requests/Day:" -msgstr "Nombre Màxim de Sol·licituds per Dia" +msgstr "Nombre maximal de requêtes d'amitié/jour:" -#: ../../mod/settings.php:1134 ../../mod/settings.php:1164 +#: ../../mod/settings.php:1137 ../../mod/settings.php:1167 msgid "(to prevent spam abuse)" -msgstr "(per a prevenir abusos de spam)" +msgstr "(pour limiter l'impact du spam)" -#: ../../mod/settings.php:1135 +#: ../../mod/settings.php:1138 msgid "Default Post Permissions" -msgstr "Permisos de Correu per Defecte" +msgstr "Permissions de publication par défaut" -#: ../../mod/settings.php:1136 +#: ../../mod/settings.php:1139 msgid "(click to open/close)" -msgstr "(clicar per a obrir/tancar)" +msgstr "(cliquer pour ouvrir/fermer)" -#: ../../mod/settings.php:1145 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1517 +#: ../../mod/settings.php:1148 ../../mod/photos.php:1146 +#: ../../mod/photos.php:1519 msgid "Show to Groups" -msgstr "Mostrar en Grups" +msgstr "Montrer aux groupes" -#: ../../mod/settings.php:1146 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1518 +#: ../../mod/settings.php:1149 ../../mod/photos.php:1147 +#: ../../mod/photos.php:1520 msgid "Show to Contacts" -msgstr "Mostrar a Contactes" +msgstr "Montrer aux Contacts" -#: ../../mod/settings.php:1147 +#: ../../mod/settings.php:1150 msgid "Default Private Post" -msgstr "Missatges Privats Per Defecte" +msgstr "Message privé par défaut" -#: ../../mod/settings.php:1148 +#: ../../mod/settings.php:1151 msgid "Default Public Post" -msgstr "Missatges Públics Per Defecte" +msgstr "Message publique par défaut" -#: ../../mod/settings.php:1152 +#: ../../mod/settings.php:1155 msgid "Default Permissions for New Posts" -msgstr "Permisos Per Defecte per a Nous Missatges" +msgstr "Permissions par défaut pour les nouvelles publications" -#: ../../mod/settings.php:1164 +#: ../../mod/settings.php:1167 msgid "Maximum private messages per day from unknown people:" -msgstr "Màxim nombre de missatges, per dia, de desconeguts:" +msgstr "Maximum de messages privés d'inconnus par jour:" -#: ../../mod/settings.php:1167 +#: ../../mod/settings.php:1170 msgid "Notification Settings" -msgstr "Ajustos de Notificació" +msgstr "Réglages de notification" -#: ../../mod/settings.php:1168 +#: ../../mod/settings.php:1171 msgid "By default post a status message when:" -msgstr "Enviar per defecte un missatge de estatus quan:" +msgstr "Par défaut, poster un statut quand:" -#: ../../mod/settings.php:1169 +#: ../../mod/settings.php:1172 msgid "accepting a friend request" -msgstr "Acceptar una sol·licitud d'amistat" +msgstr "j'accepte un ami" -#: ../../mod/settings.php:1170 +#: ../../mod/settings.php:1173 msgid "joining a forum/community" -msgstr "Unint-se a un fòrum/comunitat" +msgstr "joignant un forum/une communauté" -#: ../../mod/settings.php:1171 +#: ../../mod/settings.php:1174 msgid "making an interesting profile change" -msgstr "fent un canvi al perfil" +msgstr "je fais une modification intéressante de mon profil" -#: ../../mod/settings.php:1172 +#: ../../mod/settings.php:1175 msgid "Send a notification email when:" -msgstr "Envia un correu notificant quan:" +msgstr "Envoyer un courriel de notification quand:" -#: ../../mod/settings.php:1173 +#: ../../mod/settings.php:1176 msgid "You receive an introduction" -msgstr "Has rebut una presentació" +msgstr "Vous recevez une introduction" -#: ../../mod/settings.php:1174 +#: ../../mod/settings.php:1177 msgid "Your introductions are confirmed" -msgstr "La teva presentació està confirmada" +msgstr "Vos introductions sont confirmées" -#: ../../mod/settings.php:1175 +#: ../../mod/settings.php:1178 msgid "Someone writes on your profile wall" -msgstr "Algú ha escrit en el teu mur de perfil" +msgstr "Quelqu'un écrit sur votre mur" -#: ../../mod/settings.php:1176 +#: ../../mod/settings.php:1179 msgid "Someone writes a followup comment" -msgstr "Algú ha escrit un comentari de seguiment" +msgstr "Quelqu'un vous commente" -#: ../../mod/settings.php:1177 +#: ../../mod/settings.php:1180 msgid "You receive a private message" -msgstr "Has rebut un missatge privat" +msgstr "Vous recevez un message privé" -#: ../../mod/settings.php:1178 +#: ../../mod/settings.php:1181 msgid "You receive a friend suggestion" -msgstr "Has rebut una suggerencia d'un amic" +msgstr "Vous avez reçu une suggestion d'ami" -#: ../../mod/settings.php:1179 +#: ../../mod/settings.php:1182 msgid "You are tagged in a post" -msgstr "Estàs etiquetat en un enviament" +msgstr "Vous avez été étiquetté dans une publication" -#: ../../mod/settings.php:1180 +#: ../../mod/settings.php:1183 msgid "You are poked/prodded/etc. in a post" -msgstr "Has estat Atiat/punxat/etc, en un enviament" +msgstr "Vous avez été sollicité dans une publication" -#: ../../mod/settings.php:1183 +#: ../../mod/settings.php:1185 +msgid "Text-only notification emails" +msgstr "" + +#: ../../mod/settings.php:1187 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: ../../mod/settings.php:1189 msgid "Advanced Account/Page Type Settings" -msgstr "Ajustos Avançats de Compte/ Pàgina" +msgstr "Paramètres avancés de compte/page" -#: ../../mod/settings.php:1184 +#: ../../mod/settings.php:1190 msgid "Change the behaviour of this account for special situations" -msgstr "Canviar el comportament d'aquest compte en situacions especials" +msgstr "Modifier le comportement de ce compte dans certaines situations" -#: ../../mod/settings.php:1187 +#: ../../mod/settings.php:1193 msgid "Relocate" msgstr "" -#: ../../mod/settings.php:1188 +#: ../../mod/settings.php:1194 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "" -#: ../../mod/settings.php:1189 +#: ../../mod/settings.php:1195 msgid "Resend relocate message to contacts" msgstr "" -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Amics Comuns" +#: ../../mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Cette introduction a déjà été acceptée." -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Sense contactes en comú." +#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 +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/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informació de privacitat remota no disponible." +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable." -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Visible per a:" +#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Attention: l'emplacement du profil n'a pas de photo de profil." -#: ../../mod/contacts.php:107 +#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 #, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/contacts.php:138 ../../mod/contacts.php:267 -msgid "Could not access contact record." -msgstr "No puc accedir al registre del contacte." +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/contacts.php:152 -msgid "Could not locate selected profile." -msgstr "No puc localitzar el perfil seleccionat." +#: ../../mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Phase d'introduction achevée." -#: ../../mod/contacts.php:181 -msgid "Contact updated." -msgstr "Contacte actualitzat." +#: ../../mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Erreur de protocole non-récupérable." -#: ../../mod/contacts.php:183 ../../mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Error en actualitzar registre de contacte." +#: ../../mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profil indisponible." -#: ../../mod/contacts.php:282 -msgid "Contact has been blocked" -msgstr "Elcontacte ha estat bloquejat" +#: ../../mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s a reçu trop de demandes d'introduction aujourd'hui." -#: ../../mod/contacts.php:282 -msgid "Contact has been unblocked" -msgstr "El contacte ha estat desbloquejat" +#: ../../mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Des mesures de protection contre le spam ont été déclenchées." -#: ../../mod/contacts.php:293 -msgid "Contact has been ignored" -msgstr "El contacte ha estat ignorat" +#: ../../mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer." -#: ../../mod/contacts.php:293 -msgid "Contact has been unignored" -msgstr "El contacte ha estat recordat" +#: ../../mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Localisateur invalide" -#: ../../mod/contacts.php:305 -msgid "Contact has been archived" -msgstr "El contacte ha estat arxivat" +#: ../../mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Adresse courriel invalide." -#: ../../mod/contacts.php:305 -msgid "Contact has been unarchived" -msgstr "El contacte ha estat desarxivat" +#: ../../mod/dfrn_request.php:367 +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/contacts.php:330 ../../mod/contacts.php:703 -msgid "Do you really want to delete this contact?" -msgstr "Realment vols esborrar aquest contacte?" +#: ../../mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Impossible de résoudre votre nom à l'emplacement fourni." -#: ../../mod/contacts.php:347 -msgid "Contact has been removed." -msgstr "El contacte ha estat tret" +#: ../../mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Vous vous êtes déjà présenté ici." -#: ../../mod/contacts.php:385 +#: ../../mod/dfrn_request.php:480 #, php-format -msgid "You are mutual friends with %s" -msgstr "Ara te una amistat mutua amb %s" +msgid "Apparently you are already friends with %s." +msgstr "Il semblerait que vous soyez déjà ami avec %s." -#: ../../mod/contacts.php:389 -#, php-format -msgid "You are sharing with %s" -msgstr "Estas compartint amb %s" +#: ../../mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "URL de profil invalide." -#: ../../mod/contacts.php:394 -#, php-format -msgid "%s is sharing with you" -msgstr "%s esta compartint amb tú" +#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "URL de profil interdite." -#: ../../mod/contacts.php:411 -msgid "Private communications are not available for this contact." -msgstr "Comunicacions privades no disponibles per aquest contacte." +#: ../../mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "Votre introduction a été envoyée." -#: ../../mod/contacts.php:414 ../../mod/admin.php:540 -msgid "Never" -msgstr "Mai" +#: ../../mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Connectez-vous pour confirmer l'introduction." -#: ../../mod/contacts.php:418 -msgid "(Update was successful)" -msgstr "(L'actualització fou exitosa)" +#: ../../mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Identité incorrecte actuellement connectée. Merci de vous connecter à ce profil." -#: ../../mod/contacts.php:418 -msgid "(Update was not successful)" -msgstr "(L'actualització fracassà)" +#: ../../mod/dfrn_request.php:671 +msgid "Hide this contact" +msgstr "Cacher ce contact" -#: ../../mod/contacts.php:420 -msgid "Suggest friends" -msgstr "Suggerir amics" +#: ../../mod/dfrn_request.php:674 +#, php-format +msgid "Welcome home %s." +msgstr "Bienvenue chez vous, %s." -#: ../../mod/contacts.php:424 +#: ../../mod/dfrn_request.php:675 #, php-format -msgid "Network type: %s" -msgstr "Xarxa tipus: %s" +msgid "Please confirm your introduction/connection request to %s." +msgstr "Merci de confirmer votre demande d'introduction auprès de %s." -#: ../../mod/contacts.php:432 -msgid "View all contacts" -msgstr "Veure tots els contactes" +#: ../../mod/dfrn_request.php:676 +msgid "Confirm" +msgstr "Confirmer" -#: ../../mod/contacts.php:437 ../../mod/contacts.php:496 -#: ../../mod/contacts.php:706 ../../mod/admin.php:970 -msgid "Unblock" -msgstr "Desbloquejar" +#: ../../mod/dfrn_request.php:804 +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/contacts.php:437 ../../mod/contacts.php:496 -#: ../../mod/contacts.php:706 ../../mod/admin.php:969 -msgid "Block" -msgstr "Bloquejar" +#: ../../mod/dfrn_request.php:824 +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/contacts.php:440 -msgid "Toggle Blocked status" -msgstr "Canvi de estatus blocat" +#: ../../mod/dfrn_request.php:827 +msgid "Friend/Connection Request" +msgstr "Requête de relation/amitié" -#: ../../mod/contacts.php:443 ../../mod/contacts.php:497 -#: ../../mod/contacts.php:707 -msgid "Unignore" -msgstr "Treure d'Ignorats" +#: ../../mod/dfrn_request.php:828 +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/contacts.php:446 -msgid "Toggle Ignored status" -msgstr "Canvi de estatus ignorat" +#: ../../mod/dfrn_request.php:829 +msgid "Please answer the following:" +msgstr "Merci de répondre à ce qui suit:" -#: ../../mod/contacts.php:450 ../../mod/contacts.php:708 -msgid "Unarchive" -msgstr "Desarxivat" +#: ../../mod/dfrn_request.php:830 +#, php-format +msgid "Does %s know you?" +msgstr "Est-ce que %s vous connaît?" -#: ../../mod/contacts.php:450 ../../mod/contacts.php:708 -msgid "Archive" -msgstr "Arxivat" +#: ../../mod/dfrn_request.php:834 +msgid "Add a personal note:" +msgstr "Ajouter une note personnelle:" -#: ../../mod/contacts.php:453 -msgid "Toggle Archive status" -msgstr "Canvi de estatus del arxiu" +#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../mod/contacts.php:456 -msgid "Repair" -msgstr "Reparar" +#: ../../mod/dfrn_request.php:837 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" -#: ../../mod/contacts.php:459 -msgid "Advanced Contact Settings" -msgstr "Ajustos Avançats per als Contactes" +#: ../../mod/dfrn_request.php:839 +#, 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/contacts.php:465 -msgid "Communications lost with this contact!" -msgstr "La comunicació amb aquest contacte s'ha perdut!" +#: ../../mod/dfrn_request.php:840 +msgid "Your Identity Address:" +msgstr "Votre adresse d'identité:" -#: ../../mod/contacts.php:468 -msgid "Contact Editor" -msgstr "Editor de Contactes" +#: ../../mod/dfrn_request.php:843 +msgid "Submit Request" +msgstr "Envoyer la requête" -#: ../../mod/contacts.php:471 -msgid "Profile Visibility" -msgstr "Perfil de Visibilitat" +#: ../../mod/register.php:90 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Inscription réussie. Vérifiez vos emails pour la suite des instructions." -#: ../../mod/contacts.php:472 +#: ../../mod/register.php:96 #, php-format msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Si us plau triï el perfil que voleu mostrar a %s quan estigui veient el teu de forma segura." +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "" -#: ../../mod/contacts.php:473 -msgid "Contact Information / Notes" -msgstr "Informació/Notes del contacte" +#: ../../mod/register.php:105 +msgid "Your registration can not be processed." +msgstr "Votre inscription ne peut être traitée." -#: ../../mod/contacts.php:474 -msgid "Edit contact notes" -msgstr "Editar notes de contactes" +#: ../../mod/register.php:148 +msgid "Your registration is pending approval by the site owner." +msgstr "Votre inscription attend une validation du propriétaire du site." -#: ../../mod/contacts.php:479 ../../mod/contacts.php:671 -#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:62 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visitar perfil de %s [%s]" +#: ../../mod/register.php:186 ../../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/contacts.php:480 -msgid "Block/Unblock contact" -msgstr "Bloquejar/Alliberar contacte" +#: ../../mod/register.php:214 +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/contacts.php:481 -msgid "Ignore contact" -msgstr "Ignore contacte" +#: ../../mod/register.php:215 +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/contacts.php:482 -msgid "Repair URL settings" -msgstr "Restablir configuració de URL" - -#: ../../mod/contacts.php:483 -msgid "View conversations" -msgstr "Veient conversacions" - -#: ../../mod/contacts.php:485 -msgid "Delete contact" -msgstr "Esborrar contacte" - -#: ../../mod/contacts.php:489 -msgid "Last update:" -msgstr "Última actualització:" +#: ../../mod/register.php:216 +msgid "Your OpenID (optional): " +msgstr "Votre OpenID (facultatif): " -#: ../../mod/contacts.php:491 -msgid "Update public posts" -msgstr "Actualitzar enviament públic" +#: ../../mod/register.php:230 +msgid "Include your profile in member directory?" +msgstr "Inclure votre profil dans l'annuaire des membres?" -#: ../../mod/contacts.php:493 ../../mod/admin.php:1464 -msgid "Update now" -msgstr "Actualitza ara" +#: ../../mod/register.php:251 +msgid "Membership on this site is by invitation only." +msgstr "L'inscription à ce site se fait uniquement sur invitation." -#: ../../mod/contacts.php:500 -msgid "Currently blocked" -msgstr "Bloquejat actualment" +#: ../../mod/register.php:252 +msgid "Your invitation ID: " +msgstr "Votre ID d'invitation: " -#: ../../mod/contacts.php:501 -msgid "Currently ignored" -msgstr "Ignorat actualment" +#: ../../mod/register.php:263 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Votre nom complet (p.ex. Michel Dupont): " -#: ../../mod/contacts.php:502 -msgid "Currently archived" -msgstr "Actualment arxivat" +#: ../../mod/register.php:264 +msgid "Your Email Address: " +msgstr "Votre adresse courriel: " -#: ../../mod/contacts.php:503 +#: ../../mod/register.php:265 msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Répliques/agraiments per als teus missatges públics poden romandre visibles" - -#: ../../mod/contacts.php:504 -msgid "Notification for new posts" -msgstr "" +"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/contacts.php:504 -msgid "Send a notification of every new post of this contact" -msgstr "" +#: ../../mod/register.php:266 +msgid "Choose a nickname: " +msgstr "Choisir un pseudo: " -#: ../../mod/contacts.php:505 -msgid "Fetch further information for feeds" -msgstr "" +#: ../../mod/register.php:269 ../../boot.php:1236 ../../include/nav.php:109 +msgid "Register" +msgstr "S'inscrire" -#: ../../mod/contacts.php:556 -msgid "Suggestions" -msgstr "Suggeriments" +#: ../../mod/register.php:275 ../../mod/uimport.php:64 +msgid "Import" +msgstr "Importer" -#: ../../mod/contacts.php:559 -msgid "Suggest potential friends" -msgstr "Suggerir amics potencials" +#: ../../mod/register.php:276 +msgid "Import your profile to this friendica instance" +msgstr "Importer votre profile dans cette instance de friendica" -#: ../../mod/contacts.php:565 -msgid "Show all contacts" -msgstr "Mostrar tots els contactes" +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Système indisponible pour cause de maintenance" -#: ../../mod/contacts.php:568 -msgid "Unblocked" -msgstr "Desblocat" +#: ../../mod/search.php:99 ../../include/text.php:952 +#: ../../include/text.php:953 ../../include/nav.php:119 +msgid "Search" +msgstr "Recherche" -#: ../../mod/contacts.php:571 -msgid "Only show unblocked contacts" -msgstr "Mostrar únicament els contactes no blocats" +#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Annuaire global" -#: ../../mod/contacts.php:575 -msgid "Blocked" -msgstr "Blocat" +#: ../../mod/directory.php:59 +msgid "Find on this site" +msgstr "Trouver sur ce site" -#: ../../mod/contacts.php:578 -msgid "Only show blocked contacts" -msgstr "Mostrar únicament els contactes blocats" +#: ../../mod/directory.php:62 +msgid "Site Directory" +msgstr "Annuaire local" -#: ../../mod/contacts.php:582 -msgid "Ignored" -msgstr "Ignorat" +#: ../../mod/directory.php:113 ../../mod/profiles.php:716 +msgid "Age: " +msgstr "Age: " -#: ../../mod/contacts.php:585 -msgid "Only show ignored contacts" -msgstr "Mostrar únicament els contactes ignorats" +#: ../../mod/directory.php:116 +msgid "Gender: " +msgstr "Genre: " -#: ../../mod/contacts.php:589 -msgid "Archived" -msgstr "Arxivat" +#: ../../mod/directory.php:138 ../../boot.php:1645 +#: ../../include/profile_advanced.php:17 +msgid "Gender:" +msgstr "Genre:" -#: ../../mod/contacts.php:592 -msgid "Only show archived contacts" -msgstr "Mostrar únicament els contactes arxivats" +#: ../../mod/directory.php:140 ../../boot.php:1648 +#: ../../include/profile_advanced.php:37 +msgid "Status:" +msgstr "Statut:" -#: ../../mod/contacts.php:596 -msgid "Hidden" -msgstr "Amagat" +#: ../../mod/directory.php:142 ../../boot.php:1650 +#: ../../include/profile_advanced.php:48 +msgid "Homepage:" +msgstr "Page personnelle:" -#: ../../mod/contacts.php:599 -msgid "Only show hidden contacts" -msgstr "Mostrar únicament els contactes amagats" +#: ../../mod/directory.php:144 ../../boot.php:1652 +#: ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "À propos:" -#: ../../mod/contacts.php:647 -msgid "Mutual Friendship" -msgstr "Amistat Mutua" +#: ../../mod/directory.php:189 +msgid "No entries (some entries may be hidden)." +msgstr "Aucune entrée (certaines peuvent être cachées)." -#: ../../mod/contacts.php:651 -msgid "is a fan of yours" -msgstr "Es un fan teu" +#: ../../mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Pas de délégataire potentiel." -#: ../../mod/contacts.php:655 -msgid "you are a fan of" -msgstr "ets fan de" +#: ../../mod/delegate.php:130 ../../include/nav.php:168 +msgid "Delegate Page Management" +msgstr "Déléguer la gestion de la page" -#: ../../mod/contacts.php:672 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Editar contacte" +#: ../../mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "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/contacts.php:698 -msgid "Search your contacts" -msgstr "Cercant el seus contactes" +#: ../../mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Gestionnaires existants" -#: ../../mod/contacts.php:699 ../../mod/directory.php:61 -msgid "Finding: " -msgstr "Cercant:" +#: ../../mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Délégataires existants" -#: ../../mod/wall_attach.php:75 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" +#: ../../mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Délégataires potentiels" -#: ../../mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "" +#: ../../mod/delegate.php:140 +msgid "Add" +msgstr "Ajouter" -#: ../../mod/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "L'arxiu excedeix la mida límit de %d" +#: ../../mod/delegate.php:141 +msgid "No entries." +msgstr "Aucune entrée." -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "La càrrega de fitxers ha fallat." +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Amis communs" -#: ../../mod/update_community.php:18 ../../mod/update_network.php:25 -#: ../../mod/update_notes.php:37 ../../mod/update_display.php:22 -#: ../../mod/update_profile.php:41 -msgid "[Embedded content - reload page to view]" -msgstr "[Contingut embegut - recarrega la pàgina per a veure-ho]" +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Pas de contacts en commun." #: ../../mod/uexport.php:77 msgid "Export account" -msgstr "Exportar compte" +msgstr "Exporter le compte" #: ../../mod/uexport.php:77 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." -msgstr "Exportar la teva informació del compte i de contactes. Empra això per fer una còpia de seguretat del teu compte i/o moure'l cap altre servidor. " +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:78 msgid "Export all" -msgstr "Exportar tot" +msgstr "Tout exporter" #: ../../mod/uexport.php:78 msgid "" "Export your accout info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" -msgstr "Exportar la teva informació de compte, contactes i tots els teus articles com a json. Pot ser un fitxer molt gran, i pot trigar molt temps. Empra això per fer una còpia de seguretat total del teu compte (les fotos no s'exporten)" - -#: ../../mod/register.php:93 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrat amb èxit. Per favor, comprovi el seu correu per a posteriors instruccions." +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/register.php:97 -msgid "Failed to send email message. Here is the message that failed." -msgstr "Error en enviar missatge de correu electrònic. Aquí està el missatge que ha fallat." +#: ../../mod/mood.php:62 ../../include/conversation.php:227 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s est d'humeur %2$s" -#: ../../mod/register.php:102 -msgid "Your registration can not be processed." -msgstr "El seu registre no pot ser processat." +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Humeur" -#: ../../mod/register.php:145 -msgid "Your registration is pending approval by the site owner." -msgstr "El seu registre està pendent d'aprovació pel propietari del lloc." +#: ../../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/register.php:183 ../../mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Aquest lloc excedeix el nombre diari de registres de comptes. Per favor, provi de nou demà." +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Voulez-vous vraiment supprimer cette suggestion ?" -#: ../../mod/register.php:211 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Vostè pot (opcionalment), omplir aquest formulari a través de OpenID mitjançant el subministrament de la seva OpenID i fent clic a 'Registrar'." +#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35 +#: ../../view/theme/diabook/theme.php:527 +msgid "Friend Suggestions" +msgstr "Suggestions d'amitiés/contacts" -#: ../../mod/register.php:212 +#: ../../mod/suggest.php:74 msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Si vostè no està familiaritzat amb Twitter, si us plau deixi aquest camp en blanc i completi la resta dels elements." +"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/register.php:213 -msgid "Your OpenID (optional): " -msgstr "El seu OpenID (opcional):" +#: ../../mod/suggest.php:92 +msgid "Ignore/Hide" +msgstr "Ignorer/cacher" -#: ../../mod/register.php:227 -msgid "Include your profile in member directory?" -msgstr "Incloc el seu perfil al directori de membres?" +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profil supprimé." -#: ../../mod/register.php:248 -msgid "Membership on this site is by invitation only." -msgstr "Lloc accesible mitjançant invitació." +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" +msgstr "Profil-" -#: ../../mod/register.php:249 -msgid "Your invitation ID: " -msgstr "El teu ID de invitació:" +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." +msgstr "Nouveau profil créé." -#: ../../mod/register.php:252 ../../mod/admin.php:589 -msgid "Registration" -msgstr "Procés de Registre" +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Ce profil ne peut être cloné." -#: ../../mod/register.php:260 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "El seu nom complet (per exemple, Joan Ningú):" +#: ../../mod/profiles.php:172 +msgid "Profile Name is required." +msgstr "Le nom du profil est requis." -#: ../../mod/register.php:261 -msgid "Your Email Address: " -msgstr "La Seva Adreça de Correu:" +#: ../../mod/profiles.php:323 +msgid "Marital Status" +msgstr "Statut marital" -#: ../../mod/register.php:262 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Tria un nom de perfil. Això ha de començar amb un caràcter de text. La seva adreça de perfil en aquest lloc serà 'alies@$sitename'." +#: ../../mod/profiles.php:327 +msgid "Romantic Partner" +msgstr "Partenaire/conjoint" -#: ../../mod/register.php:263 -msgid "Choose a nickname: " -msgstr "Tria un àlies:" +#: ../../mod/profiles.php:331 +msgid "Likes" +msgstr "Derniers \"J'aime\"" -#: ../../mod/register.php:272 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Importar" +#: ../../mod/profiles.php:335 +msgid "Dislikes" +msgstr "Derniers \"Je n'aime pas\"" -#: ../../mod/register.php:273 -msgid "Import your profile to this friendica instance" -msgstr "" +#: ../../mod/profiles.php:339 +msgid "Work/Employment" +msgstr "Travail/Occupation" -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Publicat amb éxit." +#: ../../mod/profiles.php:342 +msgid "Religion" +msgstr "Religion" -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Sistema apagat per manteniment" +#: ../../mod/profiles.php:346 +msgid "Political Views" +msgstr "Tendance politique" -#: ../../mod/profile.php:155 ../../mod/display.php:288 -msgid "Access to this profile has been restricted." -msgstr "L'accés a aquest perfil ha estat restringit." +#: ../../mod/profiles.php:350 +msgid "Gender" +msgstr "Sexe" -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Consells per a nous membres" +#: ../../mod/profiles.php:354 +msgid "Sexual Preference" +msgstr "Préférence sexuelle" -#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:766 -#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:920 -#: ../../mod/search.php:89 ../../mod/community.php:18 -#: ../../mod/display.php:180 ../../mod/directory.php:33 -msgid "Public access denied." -msgstr "Accés públic denegat." +#: ../../mod/profiles.php:358 +msgid "Homepage" +msgstr "Site internet" -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "No s'han seleccionat vídeos " +#: ../../mod/profiles.php:362 ../../mod/profiles.php:664 +msgid "Interests" +msgstr "Centres d'intérêt" -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 -msgid "Access to this item is restricted." -msgstr "L'accés a aquest element està restringit." +#: ../../mod/profiles.php:366 +msgid "Address" +msgstr "Adresse" -#: ../../mod/videos.php:308 ../../mod/photos.php:1806 -msgid "View Album" -msgstr "Veure Àlbum" +#: ../../mod/profiles.php:373 ../../mod/profiles.php:660 +msgid "Location" +msgstr "Localisation" -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Videos Recents" +#: ../../mod/profiles.php:456 +msgid "Profile updated." +msgstr "Profil mis à jour." -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Carrega Nous Videos" +#: ../../mod/profiles.php:534 +msgid " and " +msgstr " et " -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Administrar Identitats i/o Pàgines" +#: ../../mod/profiles.php:542 +msgid "public profile" +msgstr "profil public" -#: ../../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 "Alternar entre les diferents identitats o les pàgines de comunitats/grups que comparteixen les dades del seu compte o que se li ha concedit els permisos de \"administrar\"" +#: ../../mod/profiles.php:545 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s a changé %2$s en “%3$s”" -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Seleccionar identitat a administrar:" +#: ../../mod/profiles.php:546 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "Visiter le %2$s de %1$s" -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Element no trobat" +#: ../../mod/profiles.php:549 +#, 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/editpost.php:39 -msgid "Edit post" -msgstr "Editar Enviament" +#: ../../mod/profiles.php:624 +msgid "Hide contacts and friends:" +msgstr "Cacher mes contacts et amis:" -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Cercant Gent" +#: ../../mod/profiles.php:629 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Cacher ma liste d'amis/contacts des visiteurs de ce profil?" -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "No hi ha coincidències" +#: ../../mod/profiles.php:651 +msgid "Edit Profile Details" +msgstr "Éditer les détails du profil" -#: ../../mod/regmod.php:54 -msgid "Account approved." -msgstr "Compte aprovat." +#: ../../mod/profiles.php:653 +msgid "Change Profile Photo" +msgstr "Changer la photo du profil" -#: ../../mod/regmod.php:91 -#, php-format -msgid "Registration revoked for %s" -msgstr "Procés de Registre revocat per a %s" +#: ../../mod/profiles.php:654 +msgid "View this profile" +msgstr "Voir ce profil" -#: ../../mod/regmod.php:103 -msgid "Please login." -msgstr "Si us plau, ingressa." +#: ../../mod/profiles.php:655 +msgid "Create a new profile using these settings" +msgstr "Créer un nouveau profil en utilisant ces réglages" -#: ../../mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Aquesta presentació ha estat acceptada." +#: ../../mod/profiles.php:656 +msgid "Clone this profile" +msgstr "Cloner ce profil" -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "El perfil de situació no és vàlid o no contè informació de perfil" +#: ../../mod/profiles.php:657 +msgid "Delete this profile" +msgstr "Supprimer ce profil" -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Atenció: El perfil de situació no te nom de propietari identificable." +#: ../../mod/profiles.php:658 +msgid "Basic information" +msgstr "Information de base" -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Atenció: El perfil de situació no te foto de perfil" +#: ../../mod/profiles.php:659 +msgid "Profile picture" +msgstr "Image de profil" -#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d el paràmetre requerit no es va trobar al lloc indicat" -msgstr[1] "%d els paràmetres requerits no es van trobar allloc indicat" +#: ../../mod/profiles.php:661 +msgid "Preferences" +msgstr "Préférences" -#: ../../mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Completada la presentació." +#: ../../mod/profiles.php:662 +msgid "Status information" +msgstr "Information sur le statut" -#: ../../mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Error de protocol irrecuperable." +#: ../../mod/profiles.php:663 +msgid "Additional information" +msgstr "Information additionnelle" -#: ../../mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Perfil no disponible" +#: ../../mod/profiles.php:666 +msgid "Profile Name:" +msgstr "Nom du profil:" -#: ../../mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s avui ha rebut excesives peticions de connexió. " +#: ../../mod/profiles.php:667 +msgid "Your Full Name:" +msgstr "Votre nom complet:" -#: ../../mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Mesures de protecció contra spam han estat invocades." +#: ../../mod/profiles.php:668 +msgid "Title/Description:" +msgstr "Titre/Description:" -#: ../../mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "S'aconsellà els amics que probin pasades 24 hores." +#: ../../mod/profiles.php:669 +msgid "Your Gender:" +msgstr "Votre genre:" -#: ../../mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Localitzador no vàlid" +#: ../../mod/profiles.php:670 +#, php-format +msgid "Birthday (%s):" +msgstr "Anniversaire (%s):" -#: ../../mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Adreça de correu no vàlida." +#: ../../mod/profiles.php:671 +msgid "Street Address:" +msgstr "Adresse postale:" -#: ../../mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Aquest compte no s'ha configurat per al correu electrònic. Ha fallat la sol·licitud." +#: ../../mod/profiles.php:672 +msgid "Locality/City:" +msgstr "Ville/Localité:" -#: ../../mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Incapaç de resoldre el teu nom al lloc facilitat." +#: ../../mod/profiles.php:673 +msgid "Postal/Zip Code:" +msgstr "Code postal:" -#: ../../mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Has fer la teva presentació aquí." +#: ../../mod/profiles.php:674 +msgid "Country:" +msgstr "Pays:" -#: ../../mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Aparentment, ja tens amistat amb %s" +#: ../../mod/profiles.php:675 +msgid "Region/State:" +msgstr "Région/État:" -#: ../../mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Perfil URL no vàlid." +#: ../../mod/profiles.php:676 +msgid " Marital Status:" +msgstr " Statut marital:" -#: ../../mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "La teva presentació ha estat enviada." +#: ../../mod/profiles.php:677 +msgid "Who: (if applicable)" +msgstr "Qui: (si pertinent)" -#: ../../mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Si us plau, entri per confirmar la presentació." +#: ../../mod/profiles.php:678 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" -#: ../../mod/dfrn_request.php:664 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Sesió iniciada amb la identificació incorrecta. Entra en aquest perfil." +#: ../../mod/profiles.php:679 +msgid "Since [date]:" +msgstr "Depuis [date] :" -#: ../../mod/dfrn_request.php:675 -msgid "Hide this contact" -msgstr "Amaga aquest contacte" +#: ../../mod/profiles.php:680 ../../include/profile_advanced.php:46 +msgid "Sexual Preference:" +msgstr "Préférence sexuelle:" -#: ../../mod/dfrn_request.php:678 -#, php-format -msgid "Welcome home %s." -msgstr "Benvingut de nou %s" +#: ../../mod/profiles.php:681 +msgid "Homepage URL:" +msgstr "Page personnelle:" -#: ../../mod/dfrn_request.php:679 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Si us plau, confirmi la seva sol·licitud de Presentació/Amistat a %s." +#: ../../mod/profiles.php:682 ../../include/profile_advanced.php:50 +msgid "Hometown:" +msgstr " Ville d'origine:" -#: ../../mod/dfrn_request.php:680 -msgid "Confirm" -msgstr "Confirmar" +#: ../../mod/profiles.php:683 ../../include/profile_advanced.php:54 +msgid "Political Views:" +msgstr "Opinions politiques:" -#: ../../mod/dfrn_request.php:808 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Si us plau, introdueixi la seva \"Adreça Identificativa\" d'una de les següents xarxes socials suportades:" +#: ../../mod/profiles.php:684 +msgid "Religious Views:" +msgstr "Opinions religieuses:" -#: ../../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 encara no ets membre de la web social lliure, segueix aquest enllaç per a trobar un lloc Friendica públic i uneix-te avui." +#: ../../mod/profiles.php:685 +msgid "Public Keywords:" +msgstr "Mots-clés publics:" -#: ../../mod/dfrn_request.php:831 -msgid "Friend/Connection Request" -msgstr "Sol·licitud d'Amistat" +#: ../../mod/profiles.php:686 +msgid "Private Keywords:" +msgstr "Mots-clés privés:" -#: ../../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/profiles.php:687 ../../include/profile_advanced.php:62 +msgid "Likes:" +msgstr "J'aime :" -#: ../../mod/dfrn_request.php:833 -msgid "Please answer the following:" -msgstr "Si us plau, contesti les següents preguntes:" +#: ../../mod/profiles.php:688 ../../include/profile_advanced.php:64 +msgid "Dislikes:" +msgstr "Je n'aime pas :" -#: ../../mod/dfrn_request.php:834 -#, php-format -msgid "Does %s know you?" -msgstr "%s et coneix?" +#: ../../mod/profiles.php:689 +msgid "Example: fishing photography software" +msgstr "Exemple: football dessin programmation" -#: ../../mod/dfrn_request.php:838 -msgid "Add a personal note:" -msgstr "Afegir una nota personal:" +#: ../../mod/profiles.php:690 +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/dfrn_request.php:841 -msgid "StatusNet/Federated Social Web" -msgstr "Web Social StatusNet/Federated " +#: ../../mod/profiles.php:691 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)" -#: ../../mod/dfrn_request.php:843 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - per favor no utilitzi aquest formulari. Al contrari, entra %s en la barra de cerques de Diaspora." +#: ../../mod/profiles.php:692 +msgid "Tell us about yourself..." +msgstr "Parlez-nous de vous..." -#: ../../mod/dfrn_request.php:844 -msgid "Your Identity Address:" -msgstr "La Teva Adreça Identificativa:" +#: ../../mod/profiles.php:693 +msgid "Hobbies/Interests" +msgstr "Passe-temps/Centres d'intérêt" -#: ../../mod/dfrn_request.php:847 -msgid "Submit Request" -msgstr "Sol·licitud Enviada" +#: ../../mod/profiles.php:694 +msgid "Contact information and Social Networks" +msgstr "Coordonnées/Réseaux sociaux" -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Arxius" +#: ../../mod/profiles.php:695 +msgid "Musical interests" +msgstr "Goûts musicaux" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autoritzi la connexió de aplicacions" +#: ../../mod/profiles.php:696 +msgid "Books, literature" +msgstr "Lectures" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torni a la seva aplicació i inserti aquest Codi de Seguretat:" +#: ../../mod/profiles.php:697 +msgid "Television" +msgstr "Télévision" -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Per favor, accedeixi per a continuar." +#: ../../mod/profiles.php:698 +msgid "Film/dance/culture/entertainment" +msgstr "Cinéma/Danse/Culture/Divertissement" -#: ../../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 "Vol autoritzar a aquesta aplicació per accedir als teus missatges i contactes, i/o crear nous enviaments per a vostè?" +#: ../../mod/profiles.php:699 +msgid "Love/romance" +msgstr "Amour/Romance" -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Realment vols esborrar aquest suggeriment?" +#: ../../mod/profiles.php:700 +msgid "Work/employment" +msgstr "Activité professionnelle/Occupation" -#: ../../mod/suggest.php:72 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Cap suggeriment disponible. Si això és un nou lloc, si us plau torna a intentar en 24 hores." +#: ../../mod/profiles.php:701 +msgid "School/education" +msgstr "Études/Formation" -#: ../../mod/suggest.php:90 -msgid "Ignore/Hide" -msgstr "Ignorar/Amagar" +#: ../../mod/profiles.php:706 +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/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Contactes que no pertanyen a cap grup" +#: ../../mod/profiles.php:769 +msgid "Edit/Manage Profiles" +msgstr "Editer/gérer les profils" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -#: ../../mod/crepair.php:131 ../../mod/dfrn_confirm.php:120 -msgid "Contact not found." -msgstr "Contacte no trobat" +#: ../../mod/profiles.php:770 ../../boot.php:1606 ../../boot.php:1632 +msgid "Change profile photo" +msgstr "Changer de photo de profil" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Enviat suggeriment d'amic." +#: ../../mod/profiles.php:771 ../../boot.php:1607 +msgid "Create New Profile" +msgstr "Créer un nouveau profil" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggerir Amics" +#: ../../mod/profiles.php:782 ../../boot.php:1617 +msgid "Profile Image" +msgstr "Image du profil" -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerir un amic per a %s" +#: ../../mod/profiles.php:784 ../../boot.php:1620 +msgid "visible to everybody" +msgstr "visible par tous" -#: ../../mod/share.php:44 -msgid "link" -msgstr "enllaç" +#: ../../mod/profiles.php:785 ../../boot.php:1621 +msgid "Edit visibility" +msgstr "Changer la visibilité" -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." -msgstr "Sense Contactes" +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Élément introuvable" -#: ../../mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Ajustos de Tema actualitzats" +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Éditer la publication" -#: ../../mod/admin.php:104 ../../mod/admin.php:587 -msgid "Site" -msgstr "Lloc" +#: ../../mod/editpost.php:111 ../../include/conversation.php:1092 +msgid "upload photo" +msgstr "envoi image" -#: ../../mod/admin.php:105 ../../mod/admin.php:959 ../../mod/admin.php:974 -msgid "Users" -msgstr "Usuaris" +#: ../../mod/editpost.php:112 ../../include/conversation.php:1093 +msgid "Attach file" +msgstr "Joindre fichier" -#: ../../mod/admin.php:107 ../../mod/admin.php:1284 ../../mod/admin.php:1318 -msgid "Themes" -msgstr "Temes" +#: ../../mod/editpost.php:113 ../../include/conversation.php:1094 +msgid "attach file" +msgstr "ajout fichier" -#: ../../mod/admin.php:108 -msgid "DB updates" -msgstr "Actualitzacions de BD" +#: ../../mod/editpost.php:115 ../../include/conversation.php:1096 +msgid "web link" +msgstr "lien web" -#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1405 -msgid "Logs" -msgstr "Registres" +#: ../../mod/editpost.php:116 ../../include/conversation.php:1097 +msgid "Insert video link" +msgstr "Insérer un lien video" -#: ../../mod/admin.php:129 -msgid "Plugin Features" -msgstr "Característiques del Plugin" +#: ../../mod/editpost.php:117 ../../include/conversation.php:1098 +msgid "video link" +msgstr "lien vidéo" -#: ../../mod/admin.php:131 -msgid "User registrations waiting for confirmation" -msgstr "Registre d'usuari a l'espera de confirmació" +#: ../../mod/editpost.php:118 ../../include/conversation.php:1099 +msgid "Insert audio link" +msgstr "Insérer un lien audio" -#: ../../mod/admin.php:190 ../../mod/admin.php:913 -msgid "Normal Account" -msgstr "Compte Normal" +#: ../../mod/editpost.php:119 ../../include/conversation.php:1100 +msgid "audio link" +msgstr "lien audio" -#: ../../mod/admin.php:191 ../../mod/admin.php:914 -msgid "Soapbox Account" -msgstr "Compte Tribuna" +#: ../../mod/editpost.php:120 ../../include/conversation.php:1101 +msgid "Set your location" +msgstr "Définir votre localisation" -#: ../../mod/admin.php:192 ../../mod/admin.php:915 -msgid "Community/Celebrity Account" -msgstr "Compte de Comunitat/Celebritat" +#: ../../mod/editpost.php:121 ../../include/conversation.php:1102 +msgid "set location" +msgstr "spéc. localisation" -#: ../../mod/admin.php:193 ../../mod/admin.php:916 -msgid "Automatic Friend Account" -msgstr "Compte d'Amistat Automàtic" +#: ../../mod/editpost.php:122 ../../include/conversation.php:1103 +msgid "Clear browser location" +msgstr "Effacer la localisation du navigateur" -#: ../../mod/admin.php:194 -msgid "Blog Account" -msgstr "Compte de Blog" +#: ../../mod/editpost.php:123 ../../include/conversation.php:1104 +msgid "clear location" +msgstr "supp. localisation" -#: ../../mod/admin.php:195 -msgid "Private Forum" -msgstr "Fòrum Privat" +#: ../../mod/editpost.php:125 ../../include/conversation.php:1110 +msgid "Permission settings" +msgstr "Réglages des permissions" -#: ../../mod/admin.php:214 -msgid "Message queues" -msgstr "Cues de missatges" +#: ../../mod/editpost.php:133 ../../include/conversation.php:1119 +msgid "CC: email addresses" +msgstr "CC: adresses de courriel" -#: ../../mod/admin.php:219 ../../mod/admin.php:586 ../../mod/admin.php:958 -#: ../../mod/admin.php:1062 ../../mod/admin.php:1115 ../../mod/admin.php:1283 -#: ../../mod/admin.php:1317 ../../mod/admin.php:1404 -msgid "Administration" -msgstr "Administració" +#: ../../mod/editpost.php:134 ../../include/conversation.php:1120 +msgid "Public post" +msgstr "Publication publique" -#: ../../mod/admin.php:220 -msgid "Summary" -msgstr "Sumari" +#: ../../mod/editpost.php:137 ../../include/conversation.php:1106 +msgid "Set title" +msgstr "Définir un titre" -#: ../../mod/admin.php:222 -msgid "Registered users" -msgstr "Usuaris registrats" +#: ../../mod/editpost.php:139 ../../include/conversation.php:1108 +msgid "Categories (comma-separated list)" +msgstr "Catégories (séparées par des virgules)" -#: ../../mod/admin.php:224 -msgid "Pending registrations" -msgstr "Registres d'usuari pendents" +#: ../../mod/editpost.php:140 ../../include/conversation.php:1122 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Exemple: bob@exemple.com, mary@exemple.com" -#: ../../mod/admin.php:225 -msgid "Version" -msgstr "Versió" +#: ../../mod/friendica.php:62 +msgid "This is Friendica, version" +msgstr "Motorisé par Friendica version" -#: ../../mod/admin.php:227 -msgid "Active plugins" -msgstr "Plugins actius" +#: ../../mod/friendica.php:63 +msgid "running at web location" +msgstr "hébergé sur" -#: ../../mod/admin.php:250 -msgid "Can not parse base url. Must have at least ://" -msgstr "" +#: ../../mod/friendica.php:65 +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/admin.php:494 -msgid "Site settings updated." -msgstr "Ajustos del lloc actualitzats." +#: ../../mod/friendica.php:67 +msgid "Bug reports and issues: please visit" +msgstr "Pour les rapports de bugs: rendez vous sur" -#: ../../mod/admin.php:541 -msgid "At post arrival" -msgstr "" +#: ../../mod/friendica.php:68 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com" -#: ../../mod/admin.php:550 -msgid "Multi user instance" -msgstr "Instancia multiusuari" +#: ../../mod/friendica.php:82 +msgid "Installed plugins/addons/apps:" +msgstr "Extensions/greffons/applications installées:" -#: ../../mod/admin.php:573 -msgid "Closed" -msgstr "Tancat" +#: ../../mod/friendica.php:95 +msgid "No installed plugins/addons/apps" +msgstr "Extensions/greffons/applications non installées:" -#: ../../mod/admin.php:574 -msgid "Requires approval" -msgstr "Requereix aprovació" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autoriser l'application à se connecter" -#: ../../mod/admin.php:575 -msgid "Open" -msgstr "Obert" +#: ../../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/admin.php:579 -msgid "No SSL policy, links will track page SSL state" -msgstr "No existe una política de SSL, se hará un seguimiento de los vínculos de la página con SSL" +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Merci de vous connecter pour continuer." -#: ../../mod/admin.php:580 -msgid "Force all links to use SSL" -msgstr "Forzar a tots els enllaços a utilitzar SSL" +#: ../../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 publications et contacts, et/ou à créer des billets à votre place?" -#: ../../mod/admin.php:581 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certificat auto-signat, utilitzar SSL només per a enllaços locals (desaconsellat)" +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informations de confidentialité indisponibles." -#: ../../mod/admin.php:590 -msgid "File upload" -msgstr "Fitxer carregat" +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Visible par:" -#: ../../mod/admin.php:591 -msgid "Policies" -msgstr "Polítiques" +#: ../../mod/notes.php:44 ../../boot.php:2145 +msgid "Personal Notes" +msgstr "Notes personnelles" -#: ../../mod/admin.php:592 -msgid "Advanced" -msgstr "Avançat" +#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148 +#: ../../include/event.php:11 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" -#: ../../mod/admin.php:593 -msgid "Performance" -msgstr "Rendiment" +#: ../../mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Conversion temporelle" -#: ../../mod/admin.php:594 +#: ../../mod/localtime.php:26 msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" - -#: ../../mod/admin.php:597 -msgid "Site name" -msgstr "Nom del lloc" - -#: ../../mod/admin.php:598 -msgid "Banner/Logo" -msgstr "Senyera/Logo" +"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/admin.php:599 -msgid "Additional Info" -msgstr "" +#: ../../mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "Temps UTC : %s" -#: ../../mod/admin.php:599 -msgid "" -"For public servers: you can add additional information here that will be " -"listed at dir.friendica.com/siteinfo." -msgstr "" +#: ../../mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Zone de temps courante : %s" -#: ../../mod/admin.php:600 -msgid "System language" -msgstr "Idioma del Sistema" +#: ../../mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Temps local converti : %s" -#: ../../mod/admin.php:601 -msgid "System theme" -msgstr "Tema del sistema" +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Sélectionner votre zone :" -#: ../../mod/admin.php:601 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema per defecte del sistema - pot ser obviat pels perfils del usuari - Canviar ajustos de tema" +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Solliciter" -#: ../../mod/admin.php:602 -msgid "Mobile system theme" -msgstr "Tema per a mòbil" +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "solliciter (poke/...) quelqu'un" -#: ../../mod/admin.php:602 -msgid "Theme for mobile devices" -msgstr "Tema per a aparells mòbils" +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Destinataire" -#: ../../mod/admin.php:603 -msgid "SSL link policy" -msgstr "Política SSL per als enllaços" +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Choisissez ce que vous voulez faire au destinataire" -#: ../../mod/admin.php:603 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determina si els enllaços generats han de ser forçats a utilitzar SSL" +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Rendez ce message privé" -#: ../../mod/admin.php:604 -msgid "Old style 'Share'" -msgstr "" +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "La limite d'invitation totale est éxédée." -#: ../../mod/admin.php:604 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "" +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Adresse de courriel invalide." -#: ../../mod/admin.php:605 -msgid "Hide help entry from navigation menu" -msgstr "Amaga l'entrada d'ajuda del menu de navegació" +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Rejoignez-nous sur Friendica" -#: ../../mod/admin.php:605 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Amaga l'entrada del menú de les pàgines d'ajuda. Pots encara accedir entrant /ajuda directament." +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site." -#: ../../mod/admin.php:606 -msgid "Single user instance" -msgstr "Instancia per a un únic usuari" +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : L'envoi du message a échoué." -#: ../../mod/admin.php:606 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Fer aquesta instancia multi-usuari o mono-usuari per al usuari anomenat" +#: ../../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/admin.php:607 -msgid "Maximum image size" -msgstr "Mida màxima de les imatges" +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Vous n'avez plus d'invitations disponibles" -#: ../../mod/admin.php:607 +#: ../../mod/invite.php:120 +#, php-format msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Mida màxima en bytes de les imatges a pujar. Per defecte es 0, que vol dir sense límits." - -#: ../../mod/admin.php:608 -msgid "Maximum image length" -msgstr "Maxima longitud d'imatge" +"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/admin.php:608 +#: ../../mod/invite.php:122 +#, php-format msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Longitud màxima en píxels del costat més llarg de la imatge carregada. Per defecte es -1, que significa sense límits" +"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/admin.php:609 -msgid "JPEG image quality" -msgstr "Qualitat per a la imatge JPEG" +#: ../../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/admin.php:609 +#: ../../mod/invite.php:126 msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Els JPEGs pujats seran guardats amb la qualitat que ajustis de [0-100]. Per defecte es 100 màxima qualitat." +"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/admin.php:611 -msgid "Register policy" -msgstr "Política per a registrar" +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "Envoyer des invitations" -#: ../../mod/admin.php:612 -msgid "Maximum Daily Registrations" -msgstr "Registres Màxims Diaris" +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Entrez les adresses email, une par ligne:" -#: ../../mod/admin.php:612 +#: ../../mod/invite.php:135 msgid "" -"If registration is permitted above, this sets the maximum number of new user" -" registrations to accept per day. If register is set to closed, this " -"setting has no effect." -msgstr "Si es permet el registre, això ajusta el nombre màxim de nous usuaris a acceptar diariament. Si el registre esta tancat, aquest ajust no te efectes." - -#: ../../mod/admin.php:613 -msgid "Register text" -msgstr "Text al registrar" - -#: ../../mod/admin.php:613 -msgid "Will be displayed prominently on the registration page." -msgstr "Serà mostrat de forma preminent a la pàgina durant el procés de registre." +"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/admin.php:614 -msgid "Accounts abandoned after x days" -msgstr "Comptes abandonats després de x dies" +#: ../../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/admin.php:614 +#: ../../mod/invite.php:137 msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "No gastará recursos del sistema creant enquestes des de llocs externos per a comptes abandonats. Introdueixi 0 per a cap límit temporal." - -#: ../../mod/admin.php:615 -msgid "Allowed friend domains" -msgstr "Dominis amics permesos" +"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/admin.php:615 +#: ../../mod/invite.php:139 msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Llista de dominis separada per comes, de adreçes de correu que són permeses per establir amistats. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis." +"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/admin.php:616 -msgid "Allowed email domains" -msgstr "Dominis de correu permesos" +#: ../../mod/photos.php:52 ../../boot.php:2124 +msgid "Photo Albums" +msgstr "Albums photo" -#: ../../mod/admin.php:616 -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 "Llista de dominis separada per comes, de adreçes de correu que són permeses per registrtar-se. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis." +#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1760 ../../mod/photos.php:1772 +#: ../../view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Photos du contact" -#: ../../mod/admin.php:617 -msgid "Block public" -msgstr "Bloqueig públic" +#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 +msgid "Upload New Photos" +msgstr "Téléverser de nouvelles photos" -#: ../../mod/admin.php:617 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Bloqueja l'accés públic a qualsevol pàgina del lloc fins que t'hagis identificat." +#: ../../mod/photos.php:144 +msgid "Contact information unavailable" +msgstr "Informations de contact indisponibles" -#: ../../mod/admin.php:618 -msgid "Force publish" -msgstr "Forçar publicació" +#: ../../mod/photos.php:165 +msgid "Album not found." +msgstr "Album introuvable." -#: ../../mod/admin.php:618 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Obliga a que tots el perfils en aquest lloc siguin mostrats en el directori del lloc." +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +msgid "Delete Album" +msgstr "Effacer l'album" -#: ../../mod/admin.php:619 -msgid "Global directory update URL" -msgstr "Actualitzar URL del directori global" +#: ../../mod/photos.php:198 +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/admin.php:619 -msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL per actualitzar el directori global. Si no es configura, el directori global serà completament inaccesible per a l'aplicació. " +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 +msgid "Delete Photo" +msgstr "Effacer la photo" -#: ../../mod/admin.php:620 -msgid "Allow threaded items" -msgstr "Permetre fils als articles" +#: ../../mod/photos.php:287 +msgid "Do you really want to delete this photo?" +msgstr "Voulez-vous vraiment supprimer cette photo ?" -#: ../../mod/admin.php:620 -msgid "Allow infinite level threading for items on this site." -msgstr "Permet un nivell infinit de fils per a articles en aquest lloc." +#: ../../mod/photos.php:662 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s a été étiqueté dans %2$s par %3$s" -#: ../../mod/admin.php:621 -msgid "Private posts by default for new users" -msgstr "Els enviaments dels nous usuaris seran privats per defecte." +#: ../../mod/photos.php:662 +msgid "a photo" +msgstr "une photo" -#: ../../mod/admin.php:621 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Canviar els permisos d'enviament per defecte per a tots els nous membres a grup privat en lloc de públic." +#: ../../mod/photos.php:767 +msgid "Image exceeds size limit of " +msgstr "L'image dépasse la taille maximale de " -#: ../../mod/admin.php:622 -msgid "Don't include post content in email notifications" -msgstr "No incloure el assumpte a les notificacions per correu electrónic" +#: ../../mod/photos.php:775 +msgid "Image file is empty." +msgstr "Fichier image vide." -#: ../../mod/admin.php:622 -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 "No incloure assumpte d'un enviament/comentari/missatge_privat/etc. Als correus electronics que envii fora d'aquest lloc, com a mesura de privacitat. " +#: ../../mod/photos.php:930 +msgid "No photos selected" +msgstr "Aucune photo sélectionnée" -#: ../../mod/admin.php:623 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Deshabilita el accés públic als complements llistats al menu d'aplicacions" +#: ../../mod/photos.php:1094 +#, 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/admin.php:623 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Marcant això restringiras els complements llistats al menú d'aplicacions al membres" +#: ../../mod/photos.php:1129 +msgid "Upload Photos" +msgstr "Téléverser des photos" -#: ../../mod/admin.php:624 -msgid "Don't embed private images in posts" -msgstr "No incrustar imatges en missatges privats" +#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 +msgid "New album name: " +msgstr "Nom du nouvel album: " -#: ../../mod/admin.php:624 -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 "No reemplaçar les fotos privades hospedades localment en missatges amb una còpia de l'imatge embeguda. Això vol dir que els contactes que rebin el missatge contenint fotos privades s'ha d'autenticar i carregar cada imatge, amb el que pot suposar bastant temps." +#: ../../mod/photos.php:1134 +msgid "or existing album name: " +msgstr "ou nom d'un album existant: " -#: ../../mod/admin.php:625 -msgid "Allow Users to set remote_self" -msgstr "" +#: ../../mod/photos.php:1135 +msgid "Do not show a status post for this upload" +msgstr "Ne pas publier de notice de statut pour cet envoi" -#: ../../mod/admin.php:625 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." -msgstr "" +#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 +msgid "Permissions" +msgstr "Permissions" -#: ../../mod/admin.php:626 -msgid "Block multiple registrations" -msgstr "Bloquejar multiples registracions" +#: ../../mod/photos.php:1148 +msgid "Private Photo" +msgstr "Photo privée" -#: ../../mod/admin.php:626 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Inhabilita als usuaris el crear comptes adicionals per a usar com a pàgines." +#: ../../mod/photos.php:1149 +msgid "Public Photo" +msgstr "Photo publique" -#: ../../mod/admin.php:627 -msgid "OpenID support" -msgstr "Suport per a OpenID" +#: ../../mod/photos.php:1212 +msgid "Edit Album" +msgstr "Éditer l'album" -#: ../../mod/admin.php:627 -msgid "OpenID support for registration and logins." -msgstr "Suport per a registre i validació a OpenID." +#: ../../mod/photos.php:1218 +msgid "Show Newest First" +msgstr "Plus récent d'abord" -#: ../../mod/admin.php:628 -msgid "Fullname check" -msgstr "Comprobació de nom complet" +#: ../../mod/photos.php:1220 +msgid "Show Oldest First" +msgstr "Plus ancien d'abord" -#: ../../mod/admin.php:628 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Obliga els usuaris a col·locar un espai en blanc entre nom i cognoms, com a mesura antispam" +#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 +msgid "View Photo" +msgstr "Voir la photo" -#: ../../mod/admin.php:629 -msgid "UTF-8 Regular expressions" -msgstr "expresions regulars UTF-8" +#: ../../mod/photos.php:1294 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Interdit. L'accès à cet élément peut avoir été restreint." -#: ../../mod/admin.php:629 -msgid "Use PHP UTF8 regular expressions" -msgstr "Empri expresions regulars de PHP amb format UTF8" +#: ../../mod/photos.php:1296 +msgid "Photo not available" +msgstr "Photo indisponible" -#: ../../mod/admin.php:630 -msgid "Show Community Page" -msgstr "Mostra la Pàgina de Comunitat" +#: ../../mod/photos.php:1352 +msgid "View photo" +msgstr "Voir photo" -#: ../../mod/admin.php:630 -msgid "" -"Display a Community page showing all recent public postings on this site." -msgstr "Mostra a la pàgina de comunitat tots els missatges públics recents, d'aquest lloc." +#: ../../mod/photos.php:1352 +msgid "Edit photo" +msgstr "Éditer la photo" -#: ../../mod/admin.php:631 -msgid "Enable OStatus support" -msgstr "Activa el suport per a OStatus" +#: ../../mod/photos.php:1353 +msgid "Use as profile photo" +msgstr "Utiliser comme photo de profil" -#: ../../mod/admin.php:631 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "" +#: ../../mod/photos.php:1378 +msgid "View Full Size" +msgstr "Voir en taille réelle" -#: ../../mod/admin.php:632 -msgid "OStatus conversation completion interval" -msgstr "Interval de conclusió de la conversació a OStatus" +#: ../../mod/photos.php:1457 +msgid "Tags: " +msgstr "Étiquettes:" -#: ../../mod/admin.php:632 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "Com de sovint el sondejador ha de comprovar les noves conversacions entrades a OStatus? Això pot implicar una gran càrrega de treball." +#: ../../mod/photos.php:1460 +msgid "[Remove any tag]" +msgstr "[Retirer toutes les étiquettes]" -#: ../../mod/admin.php:633 -msgid "Enable Diaspora support" -msgstr "Habilitar suport per Diaspora" +#: ../../mod/photos.php:1500 +msgid "Rotate CW (right)" +msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" -#: ../../mod/admin.php:633 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Proveeix compatibilitat integrada amb la xarxa Diaspora" +#: ../../mod/photos.php:1501 +msgid "Rotate CCW (left)" +msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" -#: ../../mod/admin.php:634 -msgid "Only allow Friendica contacts" -msgstr "Només permetre contactes de Friendica" +#: ../../mod/photos.php:1503 +msgid "New album name" +msgstr "Nom du nouvel album" -#: ../../mod/admin.php:634 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Tots els contactes " +#: ../../mod/photos.php:1506 +msgid "Caption" +msgstr "Titre" -#: ../../mod/admin.php:635 -msgid "Verify SSL" -msgstr "Verificar SSL" +#: ../../mod/photos.php:1508 +msgid "Add a Tag" +msgstr "Ajouter une étiquette" -#: ../../mod/admin.php:635 +#: ../../mod/photos.php:1512 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 ho vols, pots comprovar el certificat estrictament. Això farà que no puguis connectar (de cap manera) amb llocs amb certificats SSL autosignats." +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" -#: ../../mod/admin.php:636 -msgid "Proxy user" -msgstr "proxy d'usuari" +#: ../../mod/photos.php:1521 +msgid "Private photo" +msgstr "Photo privée" -#: ../../mod/admin.php:637 -msgid "Proxy URL" -msgstr "URL del proxy" +#: ../../mod/photos.php:1522 +msgid "Public photo" +msgstr "Photo publique" -#: ../../mod/admin.php:638 -msgid "Network timeout" -msgstr "Temps excedit a la xarxa" +#: ../../mod/photos.php:1544 ../../include/conversation.php:1090 +msgid "Share" +msgstr "Partager" -#: ../../mod/admin.php:638 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valor en segons. Canviat a 0 es sense límits (no recomenat)" +#: ../../mod/photos.php:1817 +msgid "Recent Photos" +msgstr "Photos récentes" -#: ../../mod/admin.php:639 -msgid "Delivery interval" -msgstr "Interval d'entrega" +#: ../../mod/regmod.php:55 +msgid "Account approved." +msgstr "Inscription validée." -#: ../../mod/admin.php:639 -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 "Retardar processos d'entrega, en segon pla, en aquesta quantitat de segons, per reduir la càrrega del sistema . Recomanem : 4-5 per als servidors compartits , 2-3 per a servidors privats virtuals . 0-1 per els grans servidors dedicats." +#: ../../mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Inscription révoquée pour %s" -#: ../../mod/admin.php:640 -msgid "Poll interval" -msgstr "Interval entre sondejos" +#: ../../mod/regmod.php:104 +msgid "Please login." +msgstr "Merci de vous connecter." -#: ../../mod/admin.php:640 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Endarrerir els processos de sondeig en segon pla durant aquest període, en segons, per tal de reduir la càrrega de treball del sistema, Si s'empra 0, s'utilitza l'interval d'entregues. " +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Migrer le compte" -#: ../../mod/admin.php:641 -msgid "Maximum Load Average" -msgstr "Càrrega Màxima Sostinguda" +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Vous pouvez importer un compte d'un autre serveur Friendica." -#: ../../mod/admin.php:641 +#: ../../mod/uimport.php:68 msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Càrrega màxima del sistema abans d'apaçar els processos d'entrega i sondeig - predeterminat a 50." - -#: ../../mod/admin.php:643 -msgid "Use MySQL full text engine" -msgstr "Emprar el motor de text complet de MySQL" +"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 "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici." -#: ../../mod/admin.php:643 +#: ../../mod/uimport.php:69 msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Activa el motos de text complet. Accelera les cerques pero només pot cercar per quatre o més caracters." +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora" -#: ../../mod/admin.php:644 -msgid "Suppress Language" -msgstr "" +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "Fichier du compte" -#: ../../mod/admin.php:644 -msgid "Suppress language information in meta information about a posting." -msgstr "" +#: ../../mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\"" -#: ../../mod/admin.php:645 -msgid "Path to item cache" -msgstr "Camí cap a la caché de l'article" +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Elément non disponible." -#: ../../mod/admin.php:646 -msgid "Cache duration in seconds" -msgstr "Duració de la caché en segons" +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Element introuvable." -#: ../../mod/admin.php:646 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "" +#: ../../boot.php:744 +msgid "Delete this item?" +msgstr "Effacer cet élément?" -#: ../../mod/admin.php:647 -msgid "Maximum numbers of comments per post" -msgstr "" +#: ../../boot.php:747 +msgid "show fewer" +msgstr "montrer moins" -#: ../../mod/admin.php:647 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" +#: ../../boot.php:1117 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur." -#: ../../mod/admin.php:648 -msgid "Path for lock file" -msgstr "Camí per a l'arxiu bloquejat" +#: ../../boot.php:1235 +msgid "Create a New Account" +msgstr "Créer un nouveau compte" -#: ../../mod/admin.php:649 -msgid "Temp path" -msgstr "Camí a carpeta temporal" +#: ../../boot.php:1260 ../../include/nav.php:73 +msgid "Logout" +msgstr "Se déconnecter" -#: ../../mod/admin.php:650 -msgid "Base path to installation" -msgstr "Trajectoria base per a instal·lar" +#: ../../boot.php:1261 ../../include/nav.php:92 +msgid "Login" +msgstr "Connexion" -#: ../../mod/admin.php:651 -msgid "Disable picture proxy" -msgstr "" +#: ../../boot.php:1263 +msgid "Nickname or Email address: " +msgstr "Pseudo ou courriel: " -#: ../../mod/admin.php:651 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "" +#: ../../boot.php:1264 +msgid "Password: " +msgstr "Mot de passe: " -#: ../../mod/admin.php:653 -msgid "New base url" -msgstr "" +#: ../../boot.php:1265 +msgid "Remember me" +msgstr "Se souvenir de moi" -#: ../../mod/admin.php:655 -msgid "Enable noscrape" -msgstr "" +#: ../../boot.php:1268 +msgid "Or login using OpenID: " +msgstr "Ou connectez-vous via OpenID: " -#: ../../mod/admin.php:655 -msgid "" -"The noscrape feature speeds up directory submissions by using JSON data " -"instead of HTML scraping." -msgstr "" +#: ../../boot.php:1274 +msgid "Forgot your password?" +msgstr "Mot de passe oublié?" -#: ../../mod/admin.php:672 -msgid "Update has been marked successful" -msgstr "L'actualització ha estat marcada amb èxit" +#: ../../boot.php:1277 +msgid "Website Terms of Service" +msgstr "Conditions d'utilisation du site internet" -#: ../../mod/admin.php:680 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "" +#: ../../boot.php:1278 +msgid "terms of service" +msgstr "conditions d'utilisation" -#: ../../mod/admin.php:683 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "" +#: ../../boot.php:1280 +msgid "Website Privacy Policy" +msgstr "Politique de confidentialité du site internet" -#: ../../mod/admin.php:695 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "" +#: ../../boot.php:1281 +msgid "privacy policy" +msgstr "politique de confidentialité" -#: ../../mod/admin.php:698 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'actualització de %s es va aplicar amb èxit." +#: ../../boot.php:1414 +msgid "Requested account is not available." +msgstr "Le compte demandé n'est pas disponible." -#: ../../mod/admin.php:702 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'actualització de %s no ha retornat el seu estatus. Es desconeix si ha estat amb èxit." +#: ../../boot.php:1496 ../../boot.php:1630 +#: ../../include/profile_advanced.php:84 +msgid "Edit profile" +msgstr "Editer le profil" -#: ../../mod/admin.php:704 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" +#: ../../boot.php:1595 +msgid "Message" +msgstr "Message" -#: ../../mod/admin.php:723 -msgid "No failed updates." -msgstr "No hi ha actualitzacions fallides." +#: ../../boot.php:1601 ../../include/nav.php:173 +msgid "Profiles" +msgstr "Profils" -#: ../../mod/admin.php:724 -msgid "Check database structure" -msgstr "" +#: ../../boot.php:1601 +msgid "Manage/edit profiles" +msgstr "Gérer/éditer les profils" -#: ../../mod/admin.php:729 -msgid "Failed Updates" -msgstr "Actualitzacions Fallides" +#: ../../boot.php:1701 +msgid "Network:" +msgstr "Réseau" -#: ../../mod/admin.php:730 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Això no inclou actualitzacions anteriors a 1139, raó per la que no ha retornat l'estatus." - -#: ../../mod/admin.php:731 -msgid "Mark success (if update was manually applied)" -msgstr "Marcat am èxit (si l'actualització es va fer manualment)" - -#: ../../mod/admin.php:732 -msgid "Attempt to execute this update step automatically" -msgstr "Intentant executar aquest pas d'actualització automàticament" +#: ../../boot.php:1731 ../../boot.php:1817 +msgid "g A l F d" +msgstr "g A | F d" -#: ../../mod/admin.php:764 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "" +#: ../../boot.php:1732 ../../boot.php:1818 +msgid "F d" +msgstr "F d" -#: ../../mod/admin.php:767 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "" +#: ../../boot.php:1777 ../../boot.php:1858 +msgid "[today]" +msgstr "[aujourd'hui]" -#: ../../mod/admin.php:811 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s usuari bloquejar/desbloquejar" -msgstr[1] "%s usuaris bloquejar/desbloquejar" +#: ../../boot.php:1789 +msgid "Birthday Reminders" +msgstr "Rappels d'anniversaires" -#: ../../mod/admin.php:818 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s usuari esborrat" -msgstr[1] "%s usuaris esborrats" +#: ../../boot.php:1790 +msgid "Birthdays this week:" +msgstr "Anniversaires cette semaine:" -#: ../../mod/admin.php:857 -#, php-format -msgid "User '%s' deleted" -msgstr "Usuari %s' esborrat" +#: ../../boot.php:1851 +msgid "[No description]" +msgstr "[Sans description]" -#: ../../mod/admin.php:865 -#, php-format -msgid "User '%s' unblocked" -msgstr "Usuari %s' desbloquejat" +#: ../../boot.php:1869 +msgid "Event Reminders" +msgstr "Rappels d'événements" -#: ../../mod/admin.php:865 -#, php-format -msgid "User '%s' blocked" -msgstr "L'usuari '%s' és bloquejat" +#: ../../boot.php:1870 +msgid "Events this week:" +msgstr "Evénements cette semaine:" -#: ../../mod/admin.php:960 -msgid "Add User" -msgstr "" +#: ../../boot.php:2107 ../../include/nav.php:76 +msgid "Status" +msgstr "Statut" -#: ../../mod/admin.php:961 -msgid "select all" -msgstr "Seleccionar tot" +#: ../../boot.php:2110 +msgid "Status Messages and Posts" +msgstr "Messages d'état et publications" -#: ../../mod/admin.php:962 -msgid "User registrations waiting for confirm" -msgstr "Registre d'usuari esperant confirmació" +#: ../../boot.php:2117 +msgid "Profile Details" +msgstr "Détails du profil" -#: ../../mod/admin.php:963 -msgid "User waiting for permanent deletion" -msgstr "" +#: ../../boot.php:2128 ../../boot.php:2131 ../../include/nav.php:79 +msgid "Videos" +msgstr "Vidéos" -#: ../../mod/admin.php:964 -msgid "Request date" -msgstr "Data de sol·licitud" +#: ../../boot.php:2141 +msgid "Events and Calendar" +msgstr "Événements et agenda" -#: ../../mod/admin.php:965 -msgid "No registrations." -msgstr "Sense registres." +#: ../../boot.php:2148 +msgid "Only You Can See This" +msgstr "Vous seul pouvez voir ça" -#: ../../mod/admin.php:967 -msgid "Deny" -msgstr "Denegar" +#: ../../object/Item.php:94 +msgid "This entry was edited" +msgstr "Cette entrée à été édité" -#: ../../mod/admin.php:971 -msgid "Site admin" -msgstr "Administrador del lloc" +#: ../../object/Item.php:208 +msgid "ignore thread" +msgstr "ignorer le fil" -#: ../../mod/admin.php:972 -msgid "Account expired" -msgstr "Compte expirat" +#: ../../object/Item.php:209 +msgid "unignore thread" +msgstr "Ne plus ignorer le fil" -#: ../../mod/admin.php:975 -msgid "New User" -msgstr "" +#: ../../object/Item.php:210 +msgid "toggle ignore status" +msgstr "Ignorer le statut" -#: ../../mod/admin.php:976 ../../mod/admin.php:977 -msgid "Register date" -msgstr "Data de registre" +#: ../../object/Item.php:213 +msgid "ignored" +msgstr "ignoré" -#: ../../mod/admin.php:976 ../../mod/admin.php:977 -msgid "Last login" -msgstr "Últim accés" +#: ../../object/Item.php:316 ../../include/conversation.php:666 +msgid "Categories:" +msgstr "Catégories:" -#: ../../mod/admin.php:976 ../../mod/admin.php:977 -msgid "Last item" -msgstr "Últim element" +#: ../../object/Item.php:317 ../../include/conversation.php:667 +msgid "Filed under:" +msgstr "Rangé sous:" -#: ../../mod/admin.php:976 -msgid "Deleted since" -msgstr "" +#: ../../object/Item.php:329 +msgid "via" +msgstr "via" -#: ../../mod/admin.php:979 +#: ../../include/dbstructure.php:26 +#, php-format msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Els usuaris seleccionats seran esborrats!\\n\\nqualsevol cosa que aquests usuaris hagin publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "" -#: ../../mod/admin.php:980 +#: ../../include/dbstructure.php:31 +#, php-format 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'usuari {0} s'eliminarà!\\n\\nQualsevol cosa que aquest usuari hagi publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?" - -#: ../../mod/admin.php:990 -msgid "Name of the new user." +"The error message is\n" +"[pre]%s[/pre]" msgstr "" -#: ../../mod/admin.php:991 -msgid "Nickname" -msgstr "" +#: ../../include/dbstructure.php:162 +msgid "Errors encountered creating database tables." +msgstr "Des erreurs ont été signalées lors de la création des tables." -#: ../../mod/admin.php:991 -msgid "Nickname of the new user." +#: ../../include/dbstructure.php:220 +msgid "Errors encountered performing database changes." msgstr "" -#: ../../mod/admin.php:992 -msgid "Email address of the new user." -msgstr "" +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Déconnecté." -#: ../../mod/admin.php:1025 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s deshabilitat." +#: ../../include/auth.php:128 ../../include/user.php:67 +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." -#: ../../mod/admin.php:1029 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s habilitat." +#: ../../include/auth.php:128 ../../include/user.php:67 +msgid "The error message was:" +msgstr "Le message d'erreur était :" -#: ../../mod/admin.php:1039 ../../mod/admin.php:1255 -msgid "Disable" -msgstr "Deshabilitar" +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Ajouter un nouveau contact" -#: ../../mod/admin.php:1041 ../../mod/admin.php:1257 -msgid "Enable" -msgstr "Habilitar" +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Entrez son adresse ou sa localisation web" -#: ../../mod/admin.php:1064 ../../mod/admin.php:1285 -msgid "Toggle" -msgstr "Canviar" +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Exemple: bob@example.com, http://example.com/barbara" -#: ../../mod/admin.php:1072 ../../mod/admin.php:1295 -msgid "Author: " -msgstr "Autor:" +#: ../../include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitation disponible" +msgstr[1] "%d invitations disponibles" -#: ../../mod/admin.php:1073 ../../mod/admin.php:1296 -msgid "Maintainer: " -msgstr "Responsable:" +#: ../../include/contact_widgets.php:30 +msgid "Find People" +msgstr "Trouver des personnes" -#: ../../mod/admin.php:1215 -msgid "No themes found." -msgstr "No s'ha trobat temes." +#: ../../include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Entrez un nom ou un centre d'intérêt" -#: ../../mod/admin.php:1277 -msgid "Screenshot" -msgstr "Captura de pantalla" +#: ../../include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Connecter/Suivre" -#: ../../mod/admin.php:1323 -msgid "[Experimental]" -msgstr "[Experimental]" +#: ../../include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Exemples: Robert Morgenstein, Pêche" -#: ../../mod/admin.php:1324 -msgid "[Unsupported]" -msgstr "[No soportat]" +#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526 +msgid "Similar Interests" +msgstr "Intérêts similaires" -#: ../../mod/admin.php:1351 -msgid "Log settings updated." -msgstr "Configuració del registre actualitzada." +#: ../../include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Profil au hasard" -#: ../../mod/admin.php:1407 -msgid "Clear" -msgstr "Netejar" +#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528 +msgid "Invite Friends" +msgstr "Inviter des amis" -#: ../../mod/admin.php:1413 -msgid "Enable Debugging" -msgstr "Habilitar Depuració" +#: ../../include/contact_widgets.php:71 +msgid "Networks" +msgstr "Réseaux" -#: ../../mod/admin.php:1414 -msgid "Log file" -msgstr "Arxiu de registre" +#: ../../include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Tous réseaux" -#: ../../mod/admin.php:1414 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Ha de tenir permisos d'escriptura pel servidor web. En relació amb el seu directori Friendica de nivell superior." +#: ../../include/contact_widgets.php:104 ../../include/features.php:60 +msgid "Saved Folders" +msgstr "Dossiers sauvegardés" -#: ../../mod/admin.php:1415 -msgid "Log level" -msgstr "Nivell de transcripció" +#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 +msgid "Everything" +msgstr "Tout" -#: ../../mod/admin.php:1465 -msgid "Close" -msgstr "Tancar" +#: ../../include/contact_widgets.php:136 +msgid "Categories" +msgstr "Catégories" -#: ../../mod/admin.php:1471 -msgid "FTP Host" -msgstr "Amfitrió FTP" +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Fonctions générales" -#: ../../mod/admin.php:1472 -msgid "FTP Path" -msgstr "Direcció FTP" +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "Profils multiples" -#: ../../mod/admin.php:1473 -msgid "FTP User" -msgstr "Usuari FTP" +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Possibilité de créer plusieurs profils" -#: ../../mod/admin.php:1474 -msgid "FTP Password" -msgstr "Contrasenya FTP" +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "Caractéristiques de composition de publication" -#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "La imatge sobrepassa el límit de mida de %d" +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "Éditeur de texte enrichi" -#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807 -#: ../../mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Incapaç de processar la imatge." +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "Activer l'éditeur de texte enrichi" -#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Actualització de la imatge fracassada." +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Aperçu de la publication" -#: ../../mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Benvingut a %s" +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Permet la prévisualisation des publications et commentaires avant de les publier" -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Error al protocol OpenID. No ha retornat ID." +#: ../../include/features.php:33 +msgid "Auto-mention Forums" +msgstr "" -#: ../../mod/openid.php:53 +#: ../../include/features.php:33 msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Compte no trobat i el registrar-se amb OpenID no està permès en aquest lloc." +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "" -#: ../../mod/network.php:136 -msgid "Search Results For:" -msgstr "Resultats de la Cerca Per a:" +#: ../../include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "Widgets réseau pour barre latérale" -#: ../../mod/network.php:179 ../../mod/search.php:21 -msgid "Remove term" -msgstr "Traieu termini" +#: ../../include/features.php:39 +msgid "Search by Date" +msgstr "Rechercher par Date" -#: ../../mod/network.php:350 -msgid "Commented Order" -msgstr "Ordre dels Comentaris" +#: ../../include/features.php:39 +msgid "Ability to select posts by date ranges" +msgstr "Capacité de sélectionner les publications par intervalles de dates" -#: ../../mod/network.php:353 -msgid "Sort by Comment Date" -msgstr "Ordenar per Data de Comentari" +#: ../../include/features.php:40 +msgid "Group Filter" +msgstr "Filtre de groupe" -#: ../../mod/network.php:356 -msgid "Posted Order" -msgstr "Ordre dels Enviaments" +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné" -#: ../../mod/network.php:359 -msgid "Sort by Post Date" -msgstr "Ordenar per Data d'Enviament" +#: ../../include/features.php:41 +msgid "Network Filter" +msgstr "Filtre de réseau" -#: ../../mod/network.php:368 -msgid "Posts that mention or involve you" -msgstr "Missatge que et menciona o t'impliquen" +#: ../../include/features.php:41 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné" -#: ../../mod/network.php:374 -msgid "New" -msgstr "Nou" +#: ../../include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Sauvegarder la recherche pour une utilisation ultérieure" -#: ../../mod/network.php:377 -msgid "Activity Stream - by date" -msgstr "Activitat del Flux - per data" +#: ../../include/features.php:47 +msgid "Network Tabs" +msgstr "Onglets Réseau" -#: ../../mod/network.php:383 -msgid "Shared Links" -msgstr "Enllaços Compartits" +#: ../../include/features.php:48 +msgid "Network Personal Tab" +msgstr "Onglet Réseau Personnel" -#: ../../mod/network.php:386 -msgid "Interesting Links" -msgstr "Enllaços Interesants" +#: ../../include/features.php:48 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit" -#: ../../mod/network.php:392 -msgid "Starred" -msgstr "Favorits" +#: ../../include/features.php:49 +msgid "Network New Tab" +msgstr "Nouvel onglet réseaux" -#: ../../mod/network.php:395 -msgid "Favourite Posts" -msgstr "Enviaments Favorits" +#: ../../include/features.php:49 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)" -#: ../../mod/network.php:457 -#, 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] "Advertència: Aquest grup conté el membre %s en una xarxa insegura." -msgstr[1] "Advertència: Aquest grup conté %s membres d'una xarxa insegura." +#: ../../include/features.php:50 +msgid "Network Shared Links Tab" +msgstr "Onglet réseau partagé" -#: ../../mod/network.php:460 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Els missatges privats a aquest grup es troben en risc de divulgació pública." +#: ../../include/features.php:50 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens" -#: ../../mod/network.php:514 ../../mod/content.php:119 -msgid "No such group" -msgstr "Cap grup com" +#: ../../include/features.php:55 +msgid "Post/Comment Tools" +msgstr "outils de publication/commentaire" -#: ../../mod/network.php:531 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "El Grup es buit" +#: ../../include/features.php:56 +msgid "Multiple Deletion" +msgstr "Suppression multiple" -#: ../../mod/network.php:538 ../../mod/content.php:134 -msgid "Group: " -msgstr "Grup:" +#: ../../include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "Sélectionner et supprimer plusieurs publications/commentaires à la fois" -#: ../../mod/network.php:548 -msgid "Contact: " -msgstr "Contacte:" +#: ../../include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Éditer les publications envoyées" -#: ../../mod/network.php:550 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Els missatges privats a aquesta persona es troben en risc de divulgació pública." +#: ../../include/features.php:57 +msgid "Edit and correct posts and comments after sending" +msgstr "Éditer et corriger les publications et commentaires après l'envoi" -#: ../../mod/network.php:555 -msgid "Invalid contact." -msgstr "Contacte no vàlid." +#: ../../include/features.php:58 +msgid "Tagging" +msgstr "Étiquettage" -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- seleccionar -" +#: ../../include/features.php:58 +msgid "Ability to tag existing posts" +msgstr "Possibilité d'étiqueter les publications existantes" -#: ../../mod/friendica.php:62 -msgid "This is Friendica, version" -msgstr "Això és Friendica, versió" +#: ../../include/features.php:59 +msgid "Post Categories" +msgstr "Catégories des publications" -#: ../../mod/friendica.php:63 -msgid "running at web location" -msgstr "funcionant en la ubicació web" +#: ../../include/features.php:59 +msgid "Add categories to your posts" +msgstr "Ajouter des catégories à vos publications" -#: ../../mod/friendica.php:65 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Si us plau, visiteu Friendica.com per obtenir més informació sobre el projecte Friendica." +#: ../../include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Possibilité d'afficher les publications sous les répertoires" -#: ../../mod/friendica.php:67 -msgid "Bug reports and issues: please visit" -msgstr "Pels informes d'error i problemes: si us plau, visiteu" +#: ../../include/features.php:61 +msgid "Dislike Posts" +msgstr "Publications non aimées" -#: ../../mod/friendica.php:68 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Suggeriments, elogis, donacions, etc si us plau escrigui a \"Info\" en Friendica - dot com" +#: ../../include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Possibilité de ne pas aimer les publications/commentaires" -#: ../../mod/friendica.php:82 -msgid "Installed plugins/addons/apps:" -msgstr "plugins/addons/apps instal·lats:" +#: ../../include/features.php:62 +msgid "Star Posts" +msgstr "Publications spéciales" -#: ../../mod/friendica.php:95 -msgid "No installed plugins/addons/apps" -msgstr "plugins/addons/apps no instal·lats" +#: ../../include/features.php:62 +msgid "Ability to mark special posts with a star indicator" +msgstr "Possibilité de marquer les publications spéciales d'une étoile" -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Aplicacions" +#: ../../include/features.php:63 +msgid "Mute Post Notifications" +msgstr "" -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Aplicacions no instal·lades." +#: ../../include/features.php:63 +msgid "Ability to mute notifications for a thread" +msgstr "" -#: ../../mod/photos.php:67 ../../mod/photos.php:1228 ../../mod/photos.php:1817 -msgid "Upload New Photos" -msgstr "Actualitzar Noves Fotos" +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "URL de connexion manquante." -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "Informació del Contacte no disponible" +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux." -#: ../../mod/photos.php:165 -msgid "Album not found." -msgstr "Àlbum no trobat." +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert." -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1206 -msgid "Delete Album" -msgstr "Eliminar Àlbum" +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates." -#: ../../mod/photos.php:198 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Realment vols esborrar aquest album de fotos amb totes les fotos?" +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé." -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1513 -msgid "Delete Photo" -msgstr "Eliminar Foto" +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Aucune URL de navigation ne correspond à cette adresse." -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "Realment vols esborrar aquesta foto?" +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel." -#: ../../mod/photos.php:662 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s fou etiquetat a %2$s per %3$s" +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel." -#: ../../mod/photos.php:662 -msgid "a photo" -msgstr "una foto" +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site." -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "La imatge excedeix el límit de " +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part." -#: ../../mod/photos.php:775 -msgid "Image file is empty." -msgstr "El fitxer de imatge és buit." +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Impossible de récupérer les informations du contact." -#: ../../mod/photos.php:930 -msgid "No photos selected" -msgstr "No s'han seleccionat fotos" +#: ../../include/follow.php:258 +msgid "following" +msgstr "following" -#: ../../mod/photos.php:1094 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Has emprat %1$.2f Mbytes de %2$.2f Mbytes del magatzem de fotos." +#: ../../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." -#: ../../mod/photos.php:1129 -msgid "Upload Photos" -msgstr "Carregar Fotos" +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts" -#: ../../mod/photos.php:1133 ../../mod/photos.php:1201 -msgid "New album name: " -msgstr "Nou nom d'àlbum:" +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "Tout le monde" -#: ../../mod/photos.php:1134 -msgid "or existing album name: " -msgstr "o nom d'àlbum existent:" +#: ../../include/group.php:249 +msgid "edit" +msgstr "éditer" -#: ../../mod/photos.php:1135 -msgid "Do not show a status post for this upload" -msgstr "No tornis a mostrar un missatge d'estat d'aquesta pujada" +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "Editer groupe" -#: ../../mod/photos.php:1137 ../../mod/photos.php:1508 -msgid "Permissions" -msgstr "Permisos" +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Créer un nouveau groupe" -#: ../../mod/photos.php:1148 -msgid "Private Photo" -msgstr "Foto Privada" +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "Contacts n'appartenant à aucun groupe" -#: ../../mod/photos.php:1149 -msgid "Public Photo" -msgstr "Foto Pública" +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Divers" -#: ../../mod/photos.php:1216 -msgid "Edit Album" -msgstr "Editar Àlbum" +#: ../../include/datetime.php:153 ../../include/datetime.php:290 +msgid "year" +msgstr "an" -#: ../../mod/photos.php:1222 -msgid "Show Newest First" -msgstr "Mostrar el més Nou Primer" +#: ../../include/datetime.php:158 ../../include/datetime.php:291 +msgid "month" +msgstr "mois" -#: ../../mod/photos.php:1224 -msgid "Show Oldest First" -msgstr "Mostrar el més Antic Primer" +#: ../../include/datetime.php:163 ../../include/datetime.php:293 +msgid "day" +msgstr "jour" -#: ../../mod/photos.php:1257 ../../mod/photos.php:1800 -msgid "View Photo" -msgstr "Veure Foto" +#: ../../include/datetime.php:276 +msgid "never" +msgstr "jamais" -#: ../../mod/photos.php:1292 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permís denegat. L'accés a aquest element pot estar restringit." +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "il y a moins d'une seconde" -#: ../../mod/photos.php:1294 -msgid "Photo not available" -msgstr "Foto no disponible" +#: ../../include/datetime.php:290 +msgid "years" +msgstr "ans" -#: ../../mod/photos.php:1350 -msgid "View photo" -msgstr "Veure foto" +#: ../../include/datetime.php:291 +msgid "months" +msgstr "mois" -#: ../../mod/photos.php:1350 -msgid "Edit photo" -msgstr "Editar foto" +#: ../../include/datetime.php:292 +msgid "week" +msgstr "semaine" -#: ../../mod/photos.php:1351 -msgid "Use as profile photo" -msgstr "Emprar com a foto del perfil" +#: ../../include/datetime.php:292 +msgid "weeks" +msgstr "semaines" -#: ../../mod/photos.php:1376 -msgid "View Full Size" -msgstr "Veure'l a Mida Completa" +#: ../../include/datetime.php:293 +msgid "days" +msgstr "jours" -#: ../../mod/photos.php:1455 -msgid "Tags: " -msgstr "Etiquetes:" +#: ../../include/datetime.php:294 +msgid "hour" +msgstr "heure" -#: ../../mod/photos.php:1458 -msgid "[Remove any tag]" -msgstr "Treure etiquetes" +#: ../../include/datetime.php:294 +msgid "hours" +msgstr "heures" -#: ../../mod/photos.php:1498 -msgid "Rotate CW (right)" -msgstr "Rotar CW (dreta)" +#: ../../include/datetime.php:295 +msgid "minute" +msgstr "minute" -#: ../../mod/photos.php:1499 -msgid "Rotate CCW (left)" -msgstr "Rotar CCW (esquerra)" +#: ../../include/datetime.php:295 +msgid "minutes" +msgstr "minutes" -#: ../../mod/photos.php:1501 -msgid "New album name" -msgstr "Nou nom d'àlbum" +#: ../../include/datetime.php:296 +msgid "second" +msgstr "seconde" -#: ../../mod/photos.php:1504 -msgid "Caption" -msgstr "Títol" +#: ../../include/datetime.php:296 +msgid "seconds" +msgstr "secondes" -#: ../../mod/photos.php:1506 -msgid "Add a Tag" -msgstr "Afegir una etiqueta" +#: ../../include/datetime.php:305 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s auparavant" -#: ../../mod/photos.php:1510 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Exemple: @bob, @Barbara_jensen, @jim@example.com, #California, #camping" +#: ../../include/datetime.php:477 ../../include/items.php:2195 +#, php-format +msgid "%s's birthday" +msgstr "Anniversaire de %s's" -#: ../../mod/photos.php:1519 -msgid "Private photo" -msgstr "Foto Privada" +#: ../../include/datetime.php:478 ../../include/items.php:2196 +#, php-format +msgid "Happy Birthday %s" +msgstr "Joyeux anniversaire, %s !" -#: ../../mod/photos.php:1520 -msgid "Public photo" -msgstr "Foto pública" +#: ../../include/acl_selectors.php:326 +msgid "Visible to everybody" +msgstr "Visible par tout le monde" -#: ../../mod/photos.php:1815 -msgid "Recent Photos" -msgstr "Fotos Recents" +#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:142 +#: ../../view/theme/diabook/theme.php:621 +msgid "show" +msgstr "montrer" -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Contacte afegit" +#: ../../include/acl_selectors.php:328 ../../view/theme/diabook/config.php:142 +#: ../../view/theme/diabook/theme.php:621 +msgid "don't show" +msgstr "cacher" -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Moure el compte" +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[pas de sujet]" -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Pots importar un compte d'un altre servidor Friendica" +#: ../../include/Contact.php:115 +msgid "stopped following" +msgstr "retiré de la liste de suivi" -#: ../../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 "Es necessari que exportis el teu compte de l'antic servidor i el pugis a aquest. Recrearem el teu antic compte aquí amb tots els teus contactes. Intentarem també informar als teus amics que t'has traslladat aquí." +#: ../../include/Contact.php:228 ../../include/conversation.php:882 +msgid "Poke" +msgstr "Sollicitations (pokes)" -#: ../../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 "Aquesta característica es experimental. Podem importar els teus contactes de la xarxa OStatus (status/identi.ca) o de Diaspora" +#: ../../include/Contact.php:229 ../../include/conversation.php:876 +msgid "View Status" +msgstr "Voir les statuts" -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "Arxiu del compte" +#: ../../include/Contact.php:230 ../../include/conversation.php:877 +msgid "View Profile" +msgstr "Voir le profil" -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "" +#: ../../include/Contact.php:231 ../../include/conversation.php:878 +msgid "View Photos" +msgstr "Voir les photos" -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limit d'invitacions excedit." +#: ../../include/Contact.php:232 ../../include/Contact.php:255 +#: ../../include/conversation.php:879 +msgid "Network Posts" +msgstr "Publications du réseau" -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : No es una adreça de correu vàlida" +#: ../../include/Contact.php:233 ../../include/Contact.php:255 +#: ../../include/conversation.php:880 +msgid "Edit Contact" +msgstr "Éditer le contact" -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Per favor, uneixi's a nosaltres en Friendica" +#: ../../include/Contact.php:234 +msgid "Drop Contact" +msgstr "Supprimer le contact" -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limit d'invitacions excedit. Per favor, Contacti amb l'administrador del lloc." +#: ../../include/Contact.php:235 ../../include/Contact.php:255 +#: ../../include/conversation.php:881 +msgid "Send PM" +msgstr "Message privé" -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Ha fallat l'entrega del missatge." +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "Bienvenue " -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d missatge enviat" -msgstr[1] "%d missatges enviats." +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Merci d'illustrer votre profil d'une image." -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "No te més invitacions disponibles" +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "Bienvenue à nouveau, " -#: ../../mod/invite.php:120 -#, php-format +#: ../../include/security.php:366 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 a una llista de llocs públics on unir-te. Els membres de Friendica d'altres llocs poden connectar-se de forma total, així com amb membres de moltes altres xarxes socials." +"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é." -#: ../../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 acceptar aquesta invitació, per favor visita i registra't a %s o en qualsevol altre pàgina web pública Friendica." +#: ../../include/conversation.php:118 ../../include/conversation.php:246 +#: ../../include/text.php:1963 ../../view/theme/diabook/theme.php:463 +msgid "event" +msgstr "évènement" -#: ../../mod/invite.php:123 +#: ../../include/conversation.php:207 #, 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 "Tots els llocs Friendica estàn interconnectats per crear una web social amb privacitat millorada, controlada i propietat dels seus membres. També poden connectar amb moltes xarxes socials tradicionals. Consulteu %s per a una llista de llocs de Friendica alternatius en que pot inscriure's." +msgid "%1$s poked %2$s" +msgstr "%1$s a sollicité %2$s" -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Nostres disculpes. Aquest sistema no està configurat actualment per connectar amb altres llocs públics o convidar als membres." +#: ../../include/conversation.php:211 ../../include/text.php:1004 +msgid "poked" +msgstr "a titillé" -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Enviant Invitacions" +#: ../../include/conversation.php:291 +msgid "post/item" +msgstr "publication/élément" -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Entri adreçes de correu, una per línia:" +#: ../../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" -#: ../../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 "Estàs cordialment convidat a ajuntarte a mi i altres amics propers en Friendica - i ajudar-nos a crear una millor web social." +#: ../../include/conversation.php:772 +msgid "remove" +msgstr "enlever" -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Vostè haurà de proporcionar aquest codi d'invitació: $invite_code" +#: ../../include/conversation.php:776 +msgid "Delete Selected Items" +msgstr "Supprimer les éléments sélectionnés" -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Un cop registrat, si us plau contactar amb mi a través de la meva pàgina de perfil a:" +#: ../../include/conversation.php:875 +msgid "Follow Thread" +msgstr "Suivre le fil" -#: ../../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 a més informació sobre el projecte Friendica i perque creiem que això es important, per favor, visita http://friendica.com" +#: ../../include/conversation.php:944 +#, php-format +msgid "%s likes this." +msgstr "%s aime ça." -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Accés denegat." +#: ../../include/conversation.php:944 +#, php-format +msgid "%s doesn't like this." +msgstr "%s n'aime pas ça." -#: ../../mod/lostpass.php:19 -msgid "No valid account found." -msgstr "compte no vàlid trobat." +#: ../../include/conversation.php:949 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d personnes aiment ça" -#: ../../mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Sol·licitut de restabliment de contrasenya enviat. Comprovi el seu correu." +#: ../../include/conversation.php:952 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d personnes n'aiment pas ça" -#: ../../mod/lostpass.php:42 +#: ../../include/conversation.php:966 +msgid "and" +msgstr "et" + +#: ../../include/conversation.php:972 #, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "" +msgid ", and %d other people" +msgstr ", et %d autres personnes" -#: ../../mod/lostpass.php:53 +#: ../../include/conversation.php:974 #, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "" +msgid "%s like this." +msgstr "%s aiment ça." -#: ../../mod/lostpass.php:72 +#: ../../include/conversation.php:974 #, php-format -msgid "Password reset requested at %s" -msgstr "Contrasenya restablerta enviada a %s" +msgid "%s don't like this." +msgstr "%s n'aiment pas ça." -#: ../../mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La sol·licitut no pot ser verificada. (Hauries de presentar-la abans). Restabliment de contrasenya fracassat." +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +msgid "Visible to everybody" +msgstr "Visible par tout le monde" -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "La teva contrasenya fou restablerta com vas demanar." +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Please enter a video link/URL:" +msgstr "Entrez un lien/URL video :" -#: ../../mod/lostpass.php:111 -msgid "Your new password is" -msgstr "La teva nova contrasenya es" +#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 +msgid "Please enter an audio link/URL:" +msgstr "Entrez un lien/URL audio :" -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Guarda o copia la nova contrasenya - i llavors" +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 +msgid "Tag term:" +msgstr "Terme d'étiquette:" -#: ../../mod/lostpass.php:113 -msgid "click here to login" -msgstr "clica aquí per identificarte" +#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 +msgid "Where are you right now?" +msgstr "Où êtes-vous présentemment?" -#: ../../mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Pots camviar la contrasenya des de la pàgina de Configuración desprès d'accedir amb èxit." +#: ../../include/conversation.php:1008 +msgid "Delete item(s)?" +msgstr "Supprimer les élément(s) ?" -#: ../../mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "" +#: ../../include/conversation.php:1051 +msgid "Post to Email" +msgstr "Publier aux courriels" -#: ../../mod/lostpass.php:131 +#: ../../include/conversation.php:1056 #, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" +msgid "Connectors disabled, since \"%s\" is enabled." msgstr "" -#: ../../mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "La teva contrasenya ha estat canviada a %s" +#: ../../include/conversation.php:1111 +msgid "permissions" +msgstr "permissions" -#: ../../mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Has Oblidat la Contrasenya?" +#: ../../include/conversation.php:1135 +msgid "Post to Groups" +msgstr "Publier aux groupes" -#: ../../mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Introdueixi la seva adreça de correu i enivii-la per restablir la seva contrasenya. Llavors comprovi el seu correu per a les següents instruccións. " +#: ../../include/conversation.php:1136 +msgid "Post to Contacts" +msgstr "Publier aux contacts" -#: ../../mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Àlies o Correu:" +#: ../../include/conversation.php:1137 +msgid "Private post" +msgstr "Message privé" -#: ../../mod/lostpass.php:162 -msgid "Reset" -msgstr "Restablir" +#: ../../include/network.php:895 +msgid "view full size" +msgstr "voir en pleine taille" -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Text Codi (bbcode): " +#: ../../include/text.php:296 +msgid "newer" +msgstr "Plus récent" -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Font (Diaspora) Convertir text a BBcode" +#: ../../include/text.php:298 +msgid "older" +msgstr "Plus ancien" -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Entrada de Codi:" +#: ../../include/text.php:303 +msgid "prev" +msgstr "précédent" -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (raw HTML): " +#: ../../include/text.php:305 +msgid "first" +msgstr "premier" -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " +#: ../../include/text.php:337 +msgid "last" +msgstr "dernier" -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " +#: ../../include/text.php:340 +msgid "next" +msgstr "suivant" -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " +#: ../../include/text.php:854 +msgid "No contacts" +msgstr "Aucun contact" -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " +#: ../../include/text.php:863 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contact" +msgstr[1] "%d contacts" -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " +#: ../../include/text.php:1004 +msgid "poke" +msgstr "titiller" -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " +#: ../../include/text.php:1005 +msgid "ping" +msgstr "attirer l'attention" -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Font d'entrada (format de Diaspora)" +#: ../../include/text.php:1005 +msgid "pinged" +msgstr "a attiré l'attention de" -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " +#: ../../include/text.php:1006 +msgid "prod" +msgstr "aiguillonner" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Etiqueta eliminada" +#: ../../include/text.php:1006 +msgid "prodded" +msgstr "a aiguillonné" -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Esborrar etiqueta del element" +#: ../../include/text.php:1007 +msgid "slap" +msgstr "gifler" -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Selecciona etiqueta a esborrar:" +#: ../../include/text.php:1007 +msgid "slapped" +msgstr "a giflé" -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Eliminar el Meu Compte" +#: ../../include/text.php:1008 +msgid "finger" +msgstr "tripoter" -#: ../../mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Això eliminarà per complet el seu compte. Quan s'hagi fet això, no serà recuperable." +#: ../../include/text.php:1008 +msgid "fingered" +msgstr "a tripoté" -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Si us plau, introduïu la contrasenya per a la verificació:" +#: ../../include/text.php:1009 +msgid "rebuff" +msgstr "rabrouer" -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Identificador del perfil no vàlid." +#: ../../include/text.php:1009 +msgid "rebuffed" +msgstr "a rabroué" -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Editor de Visibilitat del Perfil" +#: ../../include/text.php:1023 +msgid "happy" +msgstr "heureuse" -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Visible Per" +#: ../../include/text.php:1024 +msgid "sad" +msgstr "triste" -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Tots els Contactes (amb accés segur al perfil)" +#: ../../include/text.php:1025 +msgid "mellow" +msgstr "suave" -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Perfil Aconseguit" +#: ../../include/text.php:1026 +msgid "tired" +msgstr "fatiguée" -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "No hi ha paraules clau que coincideixin. Si us plau, afegeixi paraules clau al teu perfil predeterminat." +#: ../../include/text.php:1027 +msgid "perky" +msgstr "guillerette" -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "està interessat en:" +#: ../../include/text.php:1028 +msgid "angry" +msgstr "colérique" -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "Títol d'esdeveniment i hora d'inici requerits." +#: ../../include/text.php:1029 +msgid "stupified" +msgstr "stupéfaite" -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "l, F j" +#: ../../include/text.php:1030 +msgid "puzzled" +msgstr "perplexe" -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Editar esdeveniment" +#: ../../include/text.php:1031 +msgid "interested" +msgstr "intéressée" -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Crear un nou esdeveniment" +#: ../../include/text.php:1032 +msgid "bitter" +msgstr "amère" -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Previ" +#: ../../include/text.php:1033 +msgid "cheerful" +msgstr "entraînante" -#: ../../mod/events.php:373 ../../mod/install.php:207 -msgid "Next" -msgstr "Següent" +#: ../../include/text.php:1034 +msgid "alive" +msgstr "vivante" -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "hora:minut" +#: ../../include/text.php:1035 +msgid "annoyed" +msgstr "ennuyée" -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Detalls del esdeveniment" +#: ../../include/text.php:1036 +msgid "anxious" +msgstr "anxieuse" -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "El Format és %s %s. Data d'inici i títol requerits." +#: ../../include/text.php:1037 +msgid "cranky" +msgstr "excentrique" -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "Inici d'Esdeveniment:" +#: ../../include/text.php:1038 +msgid "disturbed" +msgstr "dérangée" -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Requerit" +#: ../../include/text.php:1039 +msgid "frustrated" +msgstr "frustrée" -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/hora de finalització no es coneixen o no són relevants" +#: ../../include/text.php:1040 +msgid "motivated" +msgstr "motivée" -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "L'esdeveniment Finalitza:" +#: ../../include/text.php:1041 +msgid "relaxed" +msgstr "détendue" -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Ajustar a la zona horaria de l'espectador" +#: ../../include/text.php:1042 +msgid "surprised" +msgstr "surprise" -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Descripció:" +#: ../../include/text.php:1210 +msgid "Monday" +msgstr "Lundi" -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Títol:" +#: ../../include/text.php:1210 +msgid "Tuesday" +msgstr "Mardi" -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Compartir aquest esdeveniment" +#: ../../include/text.php:1210 +msgid "Wednesday" +msgstr "Mercredi" -#: ../../mod/ping.php:240 -msgid "{0} wants to be your friend" -msgstr "{0} vol ser el teu amic" +#: ../../include/text.php:1210 +msgid "Thursday" +msgstr "Jeudi" -#: ../../mod/ping.php:245 -msgid "{0} sent you a message" -msgstr "{0} t'ha enviat un missatge de" +#: ../../include/text.php:1210 +msgid "Friday" +msgstr "Vendredi" -#: ../../mod/ping.php:250 -msgid "{0} requested registration" -msgstr "{0} solicituts de registre" +#: ../../include/text.php:1210 +msgid "Saturday" +msgstr "Samedi" -#: ../../mod/ping.php:256 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} va comentar l'enviament de %s" +#: ../../include/text.php:1210 +msgid "Sunday" +msgstr "Dimanche" -#: ../../mod/ping.php:261 -#, php-format -msgid "{0} liked %s's post" -msgstr "A {0} l'ha agradat l'enviament de %s" +#: ../../include/text.php:1214 +msgid "January" +msgstr "Janvier" -#: ../../mod/ping.php:266 -#, php-format -msgid "{0} disliked %s's post" -msgstr "A {0} no l'ha agradat l'enviament de %s" +#: ../../include/text.php:1214 +msgid "February" +msgstr "Février" -#: ../../mod/ping.php:271 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} ara és amic de %s" +#: ../../include/text.php:1214 +msgid "March" +msgstr "Mars" -#: ../../mod/ping.php:276 -msgid "{0} posted" -msgstr "{0} publicat" +#: ../../include/text.php:1214 +msgid "April" +msgstr "Avril" -#: ../../mod/ping.php:281 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} va etiquetar la publicació de %s com #%s" +#: ../../include/text.php:1214 +msgid "May" +msgstr "Mai" -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} et menciona en un missatge" +#: ../../include/text.php:1214 +msgid "June" +msgstr "Juin" -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Humor" +#: ../../include/text.php:1214 +msgid "July" +msgstr "Juillet" -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Ajusta el teu actual estat d'ànim i comenta-ho als amics" +#: ../../include/text.php:1214 +msgid "August" +msgstr "Août" -#: ../../mod/search.php:170 ../../mod/search.php:196 -#: ../../mod/community.php:62 ../../mod/community.php:71 -msgid "No results." -msgstr "Sense resultats." +#: ../../include/text.php:1214 +msgid "September" +msgstr "Septembre" -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "No es pot trobar informació de contacte." +#: ../../include/text.php:1214 +msgid "October" +msgstr "Octobre" -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Realment vols esborrar aquest missatge?" +#: ../../include/text.php:1214 +msgid "November" +msgstr "Novembre" -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Missatge eliminat." +#: ../../include/text.php:1214 +msgid "December" +msgstr "Décembre" -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Conversació esborrada." +#: ../../include/text.php:1434 +msgid "bytes" +msgstr "octets" -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Sense missatges." +#: ../../include/text.php:1458 ../../include/text.php:1470 +msgid "Click to open/close" +msgstr "Cliquer pour ouvrir/fermer" -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "remitent desconegut - %s" +#: ../../include/text.php:1699 ../../include/user.php:247 +#: ../../view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "défaut" -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Tu i %s" +#: ../../include/text.php:1711 +msgid "Select an alternate language" +msgstr "Choisir une langue alternative" -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s i Tu" +#: ../../include/text.php:1967 +msgid "activity" +msgstr "activité" -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Esborrar conversació" +#: ../../include/text.php:1970 +msgid "post" +msgstr "publication" -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" +#: ../../include/text.php:2138 +msgid "Item filed" +msgstr "Élément classé" -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d missatge" -msgstr[1] "%d missatges" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Missatge no disponible." +#: ../../include/bbcode.php:428 ../../include/bbcode.php:1027 +#: ../../include/bbcode.php:1028 +msgid "Image/photo" +msgstr "Image/photo" -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Esborra missatge" +#: ../../include/bbcode.php:528 +#, php-format +msgid "%2$s %3$s" +msgstr "" -#: ../../mod/message.php:548 +#: ../../include/bbcode.php:562 +#, php-format msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Comunicacions degures no disponibles. Tú pots respondre des de la pàgina de perfil del remitent." +"%s wrote the following post" +msgstr "" -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Enviar Resposta" +#: ../../include/bbcode.php:991 ../../include/bbcode.php:1011 +msgid "$1 wrote:" +msgstr "$1 a écrit:" -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "No disponible." +#: ../../include/bbcode.php:1036 ../../include/bbcode.php:1037 +msgid "Encrypted content" +msgstr "Contenu chiffré" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:133 -#: ../../mod/profiles.php:162 ../../mod/profiles.php:589 -#: ../../mod/dfrn_confirm.php:64 -msgid "Profile not found." -msgstr "Perfil no trobat." +#: ../../include/notifier.php:786 ../../include/delivery.php:456 +msgid "(no subject)" +msgstr "(sans titre)" -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Perfil esborrat." +#: ../../include/notifier.php:796 ../../include/delivery.php:467 +#: ../../include/enotify.php:31 +msgid "noreply" +msgstr "noreply" -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Perfil-" +#: ../../include/dba_pdo.php:72 ../../include/dba.php:56 +#, 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'" -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Nou perfil creat." +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Inconnu | Non-classé" -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "No es pot clonar el perfil." +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Bloquer immédiatement" -#: ../../mod/profiles.php:172 -msgid "Profile Name is required." -msgstr "Nom de perfil requerit." +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Douteux, spammeur, accro à l'auto-promotion" -#: ../../mod/profiles.php:323 -msgid "Marital Status" -msgstr "Estatus Marital" +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Connu de moi, mais sans opinion" -#: ../../mod/profiles.php:327 -msgid "Romantic Partner" -msgstr "Soci Romàntic" +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, probablement inoffensif" -#: ../../mod/profiles.php:331 -msgid "Likes" -msgstr "Agrada" +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Réputé, a toute ma confiance" -#: ../../mod/profiles.php:335 -msgid "Dislikes" -msgstr "No agrada" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Chaque semaine" -#: ../../mod/profiles.php:339 -msgid "Work/Employment" -msgstr "Treball/Ocupació" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Chaque mois" -#: ../../mod/profiles.php:342 -msgid "Religion" -msgstr "Religió" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" -#: ../../mod/profiles.php:346 -msgid "Political Views" -msgstr "Idees Polítiques" +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../mod/profiles.php:350 -msgid "Gender" -msgstr "Gènere" +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" -#: ../../mod/profiles.php:354 -msgid "Sexual Preference" -msgstr "Preferència sexual" +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../mod/profiles.php:358 -msgid "Homepage" -msgstr "Inici" +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../mod/profiles.php:362 ../../mod/profiles.php:657 -msgid "Interests" -msgstr "Interesos" +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" -#: ../../mod/profiles.php:366 -msgid "Address" -msgstr "Adreça" +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" -#: ../../mod/profiles.php:373 ../../mod/profiles.php:653 -msgid "Location" -msgstr "Ubicació" +#: ../../include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" -#: ../../mod/profiles.php:456 -msgid "Profile updated." -msgstr "Perfil actualitzat." +#: ../../include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" -#: ../../mod/profiles.php:527 -msgid " and " -msgstr " i " +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Connecteur Diaspora" -#: ../../mod/profiles.php:535 -msgid "public profile" -msgstr "perfil públic" +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" -#: ../../mod/profiles.php:538 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s s'ha canviat de %2$s a “%3$s”" +#: ../../include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" -#: ../../mod/profiles.php:539 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Visita %1$s de %2$s" +#: ../../include/Scrape.php:593 +msgid " on Last.fm" +msgstr "sur Last.fm" -#: ../../mod/profiles.php:542 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s te una actualització %2$s, canviant %3$s." +#: ../../include/bb2diaspora.php:154 ../../include/event.php:20 +msgid "Starts:" +msgstr "Débute:" -#: ../../mod/profiles.php:617 -msgid "Hide contacts and friends:" -msgstr "" +#: ../../include/bb2diaspora.php:162 ../../include/event.php:30 +msgid "Finishes:" +msgstr "Finit:" -#: ../../mod/profiles.php:622 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Amaga la llista de contactes/amics en la vista d'aquest perfil?" +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" +msgstr "j F, Y" -#: ../../mod/profiles.php:644 -msgid "Edit Profile Details" -msgstr "Editor de Detalls del Perfil" +#: ../../include/profile_advanced.php:23 +msgid "j F" +msgstr "j F" -#: ../../mod/profiles.php:646 -msgid "Change Profile Photo" -msgstr "Canviar la Foto del Perfil" +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" +msgstr "Anniversaire:" -#: ../../mod/profiles.php:647 -msgid "View this profile" -msgstr "Veure aquest perfil" +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Age:" -#: ../../mod/profiles.php:648 -msgid "Create a new profile using these settings" -msgstr "Crear un nou perfil amb aquests ajustos" +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "depuis %1$d %2$s" -#: ../../mod/profiles.php:649 -msgid "Clone this profile" -msgstr "Clonar aquest perfil" +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Étiquette:" -#: ../../mod/profiles.php:650 -msgid "Delete this profile" -msgstr "Esborrar aquest perfil" +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Religion:" -#: ../../mod/profiles.php:651 -msgid "Basic information" -msgstr "" +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Passe-temps/Centres d'intérêt:" -#: ../../mod/profiles.php:652 -msgid "Profile picture" -msgstr "" +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Coordonnées/Réseaux sociaux:" -#: ../../mod/profiles.php:654 -msgid "Preferences" -msgstr "" +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Goûts musicaux:" -#: ../../mod/profiles.php:655 -msgid "Status information" -msgstr "" +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Lectures:" -#: ../../mod/profiles.php:656 -msgid "Additional information" -msgstr "" +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "Télévision:" -#: ../../mod/profiles.php:658 ../../mod/newmember.php:36 -#: ../../mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "Pujar Foto del Perfil" +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Cinéma/Danse/Culture/Divertissement:" -#: ../../mod/profiles.php:659 -msgid "Profile Name:" -msgstr "Nom de Perfil:" +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Amour/Romance:" -#: ../../mod/profiles.php:660 -msgid "Your Full Name:" -msgstr "El Teu Nom Complet." +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Activité professionnelle/Occupation:" -#: ../../mod/profiles.php:661 -msgid "Title/Description:" -msgstr "Títol/Descripció:" +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "Études/Formation:" -#: ../../mod/profiles.php:662 -msgid "Your Gender:" -msgstr "Gènere:" +#: ../../include/plugin.php:455 ../../include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "Cliquez ici pour mettre à jour." -#: ../../mod/profiles.php:663 -#, php-format -msgid "Birthday (%s):" -msgstr "Aniversari (%s)" +#: ../../include/plugin.php:463 +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:664 -msgid "Street Address:" -msgstr "Direcció:" +#: ../../include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "Cette action n'est pas disponible avec votre abonnement." -#: ../../mod/profiles.php:665 -msgid "Locality/City:" -msgstr "Localitat/Ciutat:" +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Mettre fin à cette session" -#: ../../mod/profiles.php:666 -msgid "Postal/Zip Code:" -msgstr "Codi Postal:" +#: ../../include/nav.php:76 ../../include/nav.php:146 +#: ../../view/theme/diabook/theme.php:123 +msgid "Your posts and conversations" +msgstr "Vos publications et conversations" -#: ../../mod/profiles.php:667 -msgid "Country:" -msgstr "País" +#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 +msgid "Your profile page" +msgstr "Votre page de profil" -#: ../../mod/profiles.php:668 -msgid "Region/State:" -msgstr "Regió/Estat:" +#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126 +msgid "Your photos" +msgstr "Vos photos" -#: ../../mod/profiles.php:669 -msgid " Marital Status:" -msgstr " Estat Civil:" +#: ../../include/nav.php:79 +msgid "Your videos" +msgstr "Vos vidéos" -#: ../../mod/profiles.php:670 -msgid "Who: (if applicable)" -msgstr "Qui? (si és aplicable)" +#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127 +msgid "Your events" +msgstr "Vos événements" -#: ../../mod/profiles.php:671 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" +#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128 +msgid "Personal notes" +msgstr "Notes personnelles" -#: ../../mod/profiles.php:672 -msgid "Since [date]:" -msgstr "Des de [data]" +#: ../../include/nav.php:81 +msgid "Your personal notes" +msgstr "Vos notes personnelles" -#: ../../mod/profiles.php:674 -msgid "Homepage URL:" -msgstr "Pàgina web URL:" +#: ../../include/nav.php:92 +msgid "Sign in" +msgstr "Se connecter" -#: ../../mod/profiles.php:677 -msgid "Religious Views:" -msgstr "Creencies Religioses:" +#: ../../include/nav.php:105 +msgid "Home Page" +msgstr "Page d'accueil" -#: ../../mod/profiles.php:678 -msgid "Public Keywords:" -msgstr "Paraules Clau Públiques" +#: ../../include/nav.php:109 +msgid "Create an account" +msgstr "Créer un compte" -#: ../../mod/profiles.php:679 -msgid "Private Keywords:" -msgstr "Paraules Clau Privades:" +#: ../../include/nav.php:114 +msgid "Help and documentation" +msgstr "Aide et documentation" -#: ../../mod/profiles.php:682 -msgid "Example: fishing photography software" -msgstr "Exemple: pesca fotografia programari" +#: ../../include/nav.php:117 +msgid "Apps" +msgstr "Applications" -#: ../../mod/profiles.php:683 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Emprat per suggerir potencials amics, Altres poden veure-ho)" +#: ../../include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Applications supplémentaires, utilitaires, jeux" -#: ../../mod/profiles.php:684 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Emprat durant la cerca de perfils, mai mostrat a ningú)" +#: ../../include/nav.php:119 +msgid "Search site content" +msgstr "Rechercher dans le contenu du site" -#: ../../mod/profiles.php:685 -msgid "Tell us about yourself..." -msgstr "Parla'ns de tú....." - -#: ../../mod/profiles.php:686 -msgid "Hobbies/Interests" -msgstr "Aficions/Interessos" - -#: ../../mod/profiles.php:687 -msgid "Contact information and Social Networks" -msgstr "Informació de contacte i Xarxes Socials" - -#: ../../mod/profiles.php:688 -msgid "Musical interests" -msgstr "Gustos musicals" +#: ../../include/nav.php:129 +msgid "Conversations on this site" +msgstr "Conversations ayant cours sur ce site" -#: ../../mod/profiles.php:689 -msgid "Books, literature" -msgstr "Llibres, Literatura" +#: ../../include/nav.php:131 +msgid "Directory" +msgstr "Annuaire" -#: ../../mod/profiles.php:690 -msgid "Television" -msgstr "Televisió" +#: ../../include/nav.php:131 +msgid "People directory" +msgstr "Annuaire des utilisateurs" -#: ../../mod/profiles.php:691 -msgid "Film/dance/culture/entertainment" -msgstr "Cinema/ball/cultura/entreteniments" +#: ../../include/nav.php:133 +msgid "Information" +msgstr "Information" -#: ../../mod/profiles.php:692 -msgid "Love/romance" -msgstr "Amor/sentiments" +#: ../../include/nav.php:133 +msgid "Information about this friendica instance" +msgstr "Information au sujet de cette instance de friendica" -#: ../../mod/profiles.php:693 -msgid "Work/employment" -msgstr "Treball/ocupació" +#: ../../include/nav.php:143 +msgid "Conversations from your friends" +msgstr "Conversations de vos amis" -#: ../../mod/profiles.php:694 -msgid "School/education" -msgstr "Ensenyament/estudis" +#: ../../include/nav.php:144 +msgid "Network Reset" +msgstr "Réinitialiser le réseau" -#: ../../mod/profiles.php:699 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Aquest és el teu perfil públic.
El qual pot ser visible per qualsevol qui faci servir Internet." +#: ../../include/nav.php:144 +msgid "Load Network page with no filters" +msgstr "Chargement des pages du réseau sans filtre" -#: ../../mod/profiles.php:709 ../../mod/directory.php:113 -msgid "Age: " -msgstr "Edat:" +#: ../../include/nav.php:152 +msgid "Friend Requests" +msgstr "Demande d'amitié" -#: ../../mod/profiles.php:762 -msgid "Edit/Manage Profiles" -msgstr "Editar/Gestionar Perfils" +#: ../../include/nav.php:154 +msgid "See all notifications" +msgstr "Voir toute notification" -#: ../../mod/install.php:117 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica Servidor de Comunicacions - Configuració" +#: ../../include/nav.php:155 +msgid "Mark all system notifications seen" +msgstr "Marquer toutes les notifications système comme 'vues'" -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr "No puc connectar a la base de dades." +#: ../../include/nav.php:159 +msgid "Private mail" +msgstr "Messages privés" -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "No puc creat taula." +#: ../../include/nav.php:160 +msgid "Inbox" +msgstr "Messages entrants" -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "La base de dades del teu lloc Friendica ha estat instal·lada." +#: ../../include/nav.php:161 +msgid "Outbox" +msgstr "Messages sortants" -#: ../../mod/install.php:138 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Pot ser que hagi d'importar l'arxiu \"database.sql\" manualment amb phpmyadmin o mysql." +#: ../../include/nav.php:165 +msgid "Manage" +msgstr "Gérer" -#: ../../mod/install.php:139 ../../mod/install.php:206 -#: ../../mod/install.php:525 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Per favor, consulti l'arxiu \"INSTALL.txt\"." +#: ../../include/nav.php:165 +msgid "Manage other pages" +msgstr "Gérer les autres pages" -#: ../../mod/install.php:203 -msgid "System check" -msgstr "Comprovació del Sistema" +#: ../../include/nav.php:170 +msgid "Account settings" +msgstr "Compte" -#: ../../mod/install.php:208 -msgid "Check again" -msgstr "Comprovi de nou" +#: ../../include/nav.php:173 +msgid "Manage/Edit Profiles" +msgstr "Gérer/Éditer les profiles" -#: ../../mod/install.php:227 -msgid "Database connection" -msgstr "Conexió a la base de dades" +#: ../../include/nav.php:175 +msgid "Manage/edit friends and contacts" +msgstr "Gérer/éditer les amitiés et contacts" -#: ../../mod/install.php:228 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Per a instal·lar Friendica necessitem conèixer com connectar amb la deva base de dades." +#: ../../include/nav.php:182 +msgid "Site setup and configuration" +msgstr "Démarrage et configuration du site" -#: ../../mod/install.php:229 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Per favor, posi's en contacte amb el seu proveïdor de hosting o administrador del lloc si té alguna pregunta sobre aquestes opcions." +#: ../../include/nav.php:186 +msgid "Navigation" +msgstr "Navigation" -#: ../../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 dades que especifiques ja hauria d'existir. Si no és així, crea-la abans de continuar." +#: ../../include/nav.php:186 +msgid "Site map" +msgstr "Carte du site" -#: ../../mod/install.php:234 -msgid "Database Server Name" -msgstr "Nom del Servidor de base de Dades" +#: ../../include/api.php:304 ../../include/api.php:315 +#: ../../include/api.php:416 ../../include/api.php:1062 +#: ../../include/api.php:1064 +msgid "User not found." +msgstr "Utilisateur non trouvé" -#: ../../mod/install.php:235 -msgid "Database Login Name" -msgstr "Nom d'Usuari de la base de Dades" +#: ../../include/api.php:771 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "" -#: ../../mod/install.php:236 -msgid "Database Login Password" -msgstr "Contrasenya d'Usuari de la base de Dades" +#: ../../include/api.php:790 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "" -#: ../../mod/install.php:237 -msgid "Database Name" -msgstr "Nom de la base de Dades" +#: ../../include/api.php:809 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "" -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "Adreça de correu del administrador del lloc" +#: ../../include/api.php:1271 +msgid "There is no status with this id." +msgstr "Il n'y a pas de statut avec cet id." -#: ../../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 "El seu compte d'adreça electrònica ha de coincidir per tal d'utilitzar el panell d'administració web." +#: ../../include/api.php:1341 +msgid "There is no conversation with this id." +msgstr "Il n'y a pas de conversation avec cet id." -#: ../../mod/install.php:242 ../../mod/install.php:280 -msgid "Please select a default timezone for your website" -msgstr "Per favor, seleccioni una zona horària per defecte per al seu lloc web" +#: ../../include/api.php:1613 +msgid "Invalid request." +msgstr "" -#: ../../mod/install.php:267 -msgid "Site settings" -msgstr "Configuracions del lloc" +#: ../../include/api.php:1624 +msgid "Invalid item." +msgstr "" -#: ../../mod/install.php:321 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "No es va poder trobar una versió de línia de comandos de PHP en la ruta del servidor web." +#: ../../include/api.php:1634 +msgid "Invalid action. " +msgstr "" -#: ../../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 no tens una versió de línia de comandos instal·lada al teu servidor PHP, no podràs fer córrer els sondejos via cron. Mira 'Activating scheduled tasks'" +#: ../../include/api.php:1642 +msgid "DB error" +msgstr "" -#: ../../mod/install.php:326 -msgid "PHP executable path" -msgstr "Direcció del executable PHP" +#: ../../include/user.php:40 +msgid "An invitation is required." +msgstr "Une invitation est requise." -#: ../../mod/install.php:326 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Entra la ruta sencera fins l'executable de php. Pots deixar això buit per continuar l'instal·lació." +#: ../../include/user.php:45 +msgid "Invitation could not be verified." +msgstr "L'invitation fournie n'a pu être validée." -#: ../../mod/install.php:331 -msgid "Command line PHP" -msgstr "Linia de comandos PHP" +#: ../../include/user.php:53 +msgid "Invalid OpenID url" +msgstr "Adresse OpenID invalide" -#: ../../mod/install.php:340 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "El programari executable PHP no es el binari php cli (hauria de ser la versió cgi-fcgi)" +#: ../../include/user.php:74 +msgid "Please enter the required information." +msgstr "Entrez les informations requises." -#: ../../mod/install.php:341 -msgid "Found PHP version: " -msgstr "Trobada la versió PHP:" +#: ../../include/user.php:88 +msgid "Please use a shorter name." +msgstr "Utilisez un nom plus court." -#: ../../mod/install.php:343 -msgid "PHP cli binary" -msgstr "PHP cli binari" +#: ../../include/user.php:90 +msgid "Name too short." +msgstr "Nom trop court." -#: ../../mod/install.php:354 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versió de línia de comandos de PHP en el seu sistema no té \"register_argc_argv\" habilitat." +#: ../../include/user.php:105 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)." -#: ../../mod/install.php:355 -msgid "This is required for message delivery to work." -msgstr "Això és necessari perquè funcioni el lliurament de missatges." +#: ../../include/user.php:110 +msgid "Your email domain is not among those allowed on this site." +msgstr "Votre domaine de courriel n'est pas autorisé sur ce site." -#: ../../mod/install.php:357 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../include/user.php:113 +msgid "Not a valid email address." +msgstr "Ceci n'est pas une adresse courriel valide." -#: ../../mod/install.php:378 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: la funció \"openssl_pkey_new\" en aquest sistema no és capaç de generar claus de xifrat" +#: ../../include/user.php:126 +msgid "Cannot use that email." +msgstr "Impossible d'utiliser ce courriel." -#: ../../mod/install.php:379 +#: ../../include/user.php:132 msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Si s'executa en Windows, per favor consulti la secció \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/install.php:381 -msgid "Generate encryption keys" -msgstr "Generar claus d'encripció" - -#: ../../mod/install.php:388 -msgid "libCurl PHP module" -msgstr "Mòdul libCurl de PHP" - -#: ../../mod/install.php:389 -msgid "GD graphics PHP module" -msgstr "Mòdul GD de gràfics de PHP" - -#: ../../mod/install.php:390 -msgid "OpenSSL PHP module" -msgstr "Mòdul OpenSSl de PHP" - -#: ../../mod/install.php:391 -msgid "mysqli PHP module" -msgstr "Mòdul mysqli de PHP" - -#: ../../mod/install.php:392 -msgid "mb_string PHP module" -msgstr "Mòdul mb_string de PHP" +"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." -#: ../../mod/install.php:397 ../../mod/install.php:399 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite modul " +#: ../../include/user.php:138 ../../include/user.php:236 +msgid "Nickname is already registered. Please choose another." +msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre." -#: ../../mod/install.php:397 +#: ../../include/user.php:148 msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: el mòdul mod-rewrite del servidor web Apache és necessari però no està instal·lat." - -#: ../../mod/install.php:405 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: El mòdul libCURL de PHP és necessari però no està instal·lat." +"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." -#: ../../mod/install.php:409 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: el mòdul gràfic GD de PHP amb support per JPEG és necessari però no està instal·lat." +#: ../../include/user.php:164 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué." -#: ../../mod/install.php:413 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: El mòdul enssl de PHP és necessari però no està instal·lat." +#: ../../include/user.php:222 +msgid "An error occurred during registration. Please try again." +msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer." -#: ../../mod/install.php:417 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Error: El mòdul mysqli de PHP és necessari però no està instal·lat." +#: ../../include/user.php:257 +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." -#: ../../mod/install.php:421 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: mòdul mb_string de PHP requerit però no instal·lat." +#: ../../include/user.php:289 ../../include/user.php:293 +#: ../../include/profile_selectors.php:42 +msgid "Friends" +msgstr "Amis" -#: ../../mod/install.php:438 +#: ../../include/user.php:377 +#, php-format 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'instal·lador web necessita crear un arxiu anomenat \".htconfig.php\" en la carpeta superior del seu servidor web però alguna cosa ho va impedir." +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "" -#: ../../mod/install.php:439 +#: ../../include/user.php:381 +#, php-format 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 "Això freqüentment és a causa d'una configuració de permisos; el servidor web no pot escriure arxius en la carpeta - encara que sigui possible." +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "" -#: ../../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 "Al final d'aquest procediment, et facilitarem un text que hauràs de guardar en un arxiu que s'anomena .htconfig.php que hi es a la carpeta principal del teu Friendica." +#: ../../include/diaspora.php:703 +msgid "Sharing notification from Diaspora network" +msgstr "Notification de partage du réseau Diaspora" -#: ../../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 "Alternativament, pots saltar-te aquest procediment i configurar-ho manualment. Per favor, mira l'arxiu \"INTALL.txt\" per a instruccions." +#: ../../include/diaspora.php:2332 +msgid "Attachments:" +msgstr "Pièces jointes : " -#: ../../mod/install.php:444 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php és escribible" +#: ../../include/items.php:4526 +msgid "Do you really want to delete this item?" +msgstr "Voulez-vous vraiment supprimer cet élément ?" -#: ../../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 empra el motor de plantilla Smarty3 per dibuixar la web. Smarty3 compila plantilles a PHP per accelerar el redibuxar." +#: ../../include/items.php:4749 +msgid "Archives" +msgstr "Archives" -#: ../../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 poder guardar aquestes plantilles compilades, el servidor web necessita tenir accés d'escriptura al directori view/smarty3/ sota la carpeta principal de Friendica." +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Masculin" -#: ../../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 favor, asegura que l'usuari que corre el servidor web (p.e. www-data) te accés d'escriptura a aquesta carpeta." +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Féminin" -#: ../../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: Com a mesura de seguretat, hauries de facilitar al servidor web, accés d'escriptura a view/smarty3/ excepte els fitxers de plantilles (.tpl) que conté." +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Actuellement masculin" -#: ../../mod/install.php:460 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 es escribible" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Actuellement féminin" -#: ../../mod/install.php:472 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "URL rewrite en .htaccess no esta treballant. Comprova la configuració del teu servidor." +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Principalement masculin" -#: ../../mod/install.php:474 -msgid "Url rewrite is working" -msgstr "URL rewrite està treballant" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Principalement féminin" -#: ../../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 "L'arxiu per a la configuració de la base de dades \".htconfig.php\" no es pot escriure. Per favor, usi el text adjunt per crear un arxiu de configuració en l'arrel del servidor web." +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgenre" -#: ../../mod/install.php:523 -msgid "

What next

" -msgstr "

Que es següent

" +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Inter-sexe" -#: ../../mod/install.php:524 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT: necessitarà configurar [manualment] el programar una tasca pel sondejador (poller.php)" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transsexuel" -#: ../../mod/help.php:79 -msgid "Help:" -msgstr "Ajuda:" +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermaphrodite" -#: ../../mod/crepair.php:104 -msgid "Contact settings applied." -msgstr "Ajustos de Contacte aplicats." +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutre" -#: ../../mod/crepair.php:106 -msgid "Contact update failed." -msgstr "Fracassà l'actualització de Contacte" +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Non-spécifique" -#: ../../mod/crepair.php:137 -msgid "Repair Contact Settings" -msgstr "Reposar els ajustos de Contacte" +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Autre" -#: ../../mod/crepair.php:139 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ADVERTÈNCIA: Això és molt avançat i si s'introdueix informació incorrecta la seva comunicació amb aquest contacte pot deixar de funcionar." +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Indécis" -#: ../../mod/crepair.php:140 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Si us plau, prem el botó 'Tornar' ara si no saps segur que has de fer aqui." +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Hommes" -#: ../../mod/crepair.php:146 -msgid "Return to contact editor" -msgstr "Tornar al editor de contactes" +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Femmes" -#: ../../mod/crepair.php:159 -msgid "Account Nickname" -msgstr "Àlies del Compte" +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gay" -#: ../../mod/crepair.php:160 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - té prel·lació sobre Nom/Àlies" +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbienne" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Sans préférence" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisexuel" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Auto-sexuel" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Abstinent" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Vierge" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Déviant" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fétichiste" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Oodles" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Non-sexuel" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Célibataire" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Esseulé" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Disponible" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Indisponible" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Attiré par quelqu'un" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Entiché" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "Dans une relation" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Infidèle" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Accro au sexe" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Amis par intérêt" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Casual" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Fiancé" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Marié" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Se croit marié" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partenaire" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "En cohabitation" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "Marié \"de fait\"/\"sui juris\" (concubin)" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Heureux" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Pas intéressé" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Échangiste" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Trahi(e)" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Séparé" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Instable" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Divorcé" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Se croit divorcé" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Veuf/Veuve" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Incertain" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "C'est compliqué" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "S'en désintéresse" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Me demander" + +#: ../../include/enotify.php:18 +msgid "Friendica Notification" +msgstr "Notification Friendica" + +#: ../../include/enotify.php:21 +msgid "Thank You," +msgstr "Merci, " + +#: ../../include/enotify.php:23 +#, php-format +msgid "%s Administrator" +msgstr "L'administrateur de %s" + +#: ../../include/enotify.php:61 +#, php-format +msgid "%s " +msgstr "%s " + +#: ../../include/enotify.php:65 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s" -#: ../../mod/crepair.php:161 -msgid "Account URL" -msgstr "Adreça URL del Compte" +#: ../../include/enotify.php:67 +#, 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." -#: ../../mod/crepair.php:162 -msgid "Friend Request URL" -msgstr "Adreça URL de sol·licitud d'Amistat" +#: ../../include/enotify.php:68 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s vous a envoyé %2$s." -#: ../../mod/crepair.php:163 -msgid "Friend Confirm URL" -msgstr "Adreça URL de confirmació d'Amic" +#: ../../include/enotify.php:68 +msgid "a private message" +msgstr "un message privé" -#: ../../mod/crepair.php:164 -msgid "Notification Endpoint URL" -msgstr "Adreça URL de Notificació" +#: ../../include/enotify.php:69 +#, 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." -#: ../../mod/crepair.php:165 -msgid "Poll/Feed URL" -msgstr "Adreça de Enquesta/Alimentador" +#: ../../include/enotify.php:121 +#, 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]" -#: ../../mod/crepair.php:166 -msgid "New photo from this URL" -msgstr "Nova foto d'aquesta URL" +#: ../../include/enotify.php:128 +#, 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]" -#: ../../mod/crepair.php:167 -msgid "Remote Self" -msgstr "" +#: ../../include/enotify.php:136 +#, 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]" -#: ../../mod/crepair.php:169 -msgid "Mirror postings from this contact" -msgstr "" +#: ../../include/enotify.php:146 +#, 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" -#: ../../mod/crepair.php:169 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" +#: ../../include/enotify.php:147 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s a commenté un élément que vous suivez." -#: ../../mod/crepair.php:169 -msgid "No mirroring" -msgstr "" +#: ../../include/enotify.php:150 ../../include/enotify.php:165 +#: ../../include/enotify.php:178 ../../include/enotify.php:191 +#: ../../include/enotify.php:209 ../../include/enotify.php:222 +#, 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." -#: ../../mod/crepair.php:169 -msgid "Mirror as forwarded posting" -msgstr "" +#: ../../include/enotify.php:157 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notification] %s a posté sur votre mur de profil" -#: ../../mod/crepair.php:169 -msgid "Mirror as my own posting" -msgstr "" +#: ../../include/enotify.php:159 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s a publié sur votre mur à %2$s" -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Benvingut a Friendica" +#: ../../include/enotify.php:161 +#, 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]" -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Llista de Verificació dels Nous Membres" +#: ../../include/enotify.php:172 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notification] %s vous a étiqueté" -#: ../../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 "Ens agradaria oferir alguns consells i enllaços per ajudar a fer la teva experiència agradable. Feu clic a qualsevol element per visitar la pàgina corresponent. Un enllaç a aquesta pàgina serà visible des de la pàgina d'inici durant dues setmanes després de la teva inscripció inicial i després desapareixerà en silenci." +#: ../../include/enotify.php:173 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s vous a étiqueté sur %2$s" -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Començem" +#: ../../include/enotify.php:174 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]vous a étiqueté[/url]." -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Paseja per Friendica" +#: ../../include/enotify.php:185 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notification] %s partage une nouvelle publication" -#: ../../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 "A la teva pàgina de Inici Ràpid - troba una breu presentació per les teves fitxes de perfil i xarxa, crea alguna nova connexió i troba algun grup per unir-te." +#: ../../include/enotify.php:186 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "" -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Anar als Teus Ajustos" +#: ../../include/enotify.php:187 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s]partage une publication[/url]." -#: ../../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 "En la de la seva configuració de la pàgina - canviï la contrasenya inicial. També prengui nota de la Adreça d'Identitat. Això s'assembla a una adreça de correu electrònic - i serà útil per fer amics a la xarxa social lliure." +#: ../../include/enotify.php:199 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notify] %1$s vous a sollicité" -#: ../../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 "Reviseu les altres configuracions, en particular la configuració de privadesa. Una llista de directoris no publicada és com tenir un número de telèfon no llistat. Normalment, hauria de publicar la seva llista - a menys que tots els seus amics i els amics potencials sàpiguen exactament com trobar-li." +#: ../../include/enotify.php:200 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s vous a sollicité via %2$s" -#: ../../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 "Puji una foto del seu perfil si encara no ho ha fet. Els estudis han demostrat que les persones amb fotos reals de ells mateixos tenen deu vegades més probabilitats de fer amics que les persones que no ho fan." +#: ../../include/enotify.php:201 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s vous a [url=%2$s]sollicité[/url]." -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Editar el Teu Perfil" +#: ../../include/enotify.php:216 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notification] %s a étiqueté votre publication" -#: ../../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 "Editi el perfil per defecte al seu gust. Reviseu la configuració per ocultar la seva llista d'amics i ocultar el perfil dels visitants desconeguts." +#: ../../include/enotify.php:217 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s a étiqueté votre publication sur %2$s" -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Paraules clau del Perfil" +#: ../../include/enotify.php:218 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s a étiqueté [url=%2$s]votre publication[/url]" -#: ../../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 "Estableix algunes paraules clau públiques al teu perfil predeterminat que descriguin els teus interessos. Podem ser capaços de trobar altres persones amb interessos similars i suggerir amistats." +#: ../../include/enotify.php:229 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notification] Introduction reçue" -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Connectant" +#: ../../include/enotify.php:230 +#, 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" -#: ../../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 "Autoritzi el connector de Facebook si vostè té un compte al Facebook i nosaltres (opcionalment) importarem tots els teus amics de Facebook i les converses." +#: ../../include/enotify.php:231 +#, 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." -#: ../../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 aquesta és el seu servidor personal, la instal·lació del complement de Facebook pot facilitar la transició a la web social lliure." +#: ../../include/enotify.php:234 ../../include/enotify.php:276 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Vous pouvez visiter son profil sur %s" -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "Important Emails" +#: ../../include/enotify.php:236 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction." -#: ../../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 "Introduïu les dades d'accés al correu electrònic a la seva pàgina de configuració de connector, si es desitja importar i relacionar-se amb amics o llistes de correu de la seva bústia d'email" +#: ../../include/enotify.php:244 +msgid "[Friendica:Notify] A new person is sharing with you" +msgstr "" -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Anar a la Teva Pàgina de Contactes" +#: ../../include/enotify.php:245 ../../include/enotify.php:246 +#, php-format +msgid "%1$s is sharing with you at %2$s" +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 "La seva pàgina de Contactes és la seva porta d'entrada a la gestió de l'amistat i la connexió amb amics d'altres xarxes. Normalment, vostè entrar en la seva direcció o URL del lloc al diàleg Afegir Nou Contacte." +#: ../../include/enotify.php:252 +msgid "[Friendica:Notify] You have a new follower" +msgstr "" -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Anar al Teu Directori" +#: ../../include/enotify.php:253 ../../include/enotify.php:254 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +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 "La pàgina del Directori li permet trobar altres persones en aquesta xarxa o altres llocs federats. Busqui un enllaç Connectar o Seguir a la seva pàgina de perfil. Proporcioni la seva pròpia Adreça de Identitat si així ho sol·licita." +#: ../../include/enotify.php:267 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié" -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Trobar Gent Nova" +#: ../../include/enotify.php:268 +#, 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" -#: ../../mod/newmember.php:62 +#: ../../include/enotify.php:269 +#, php-format 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 "Al tauler lateral de la pàgina de contacte Hi ha diverses eines per trobar nous amics. Podem coincidir amb les persones per interesos, buscar persones pel nom o per interès, i oferir suggeriments basats en les relacions de la xarxa. En un nou lloc, els suggeriments d'amics, en general comencen a poblar el lloc a les 24 hores." +"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." -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Agrupar els Teus Contactes" +#: ../../include/enotify.php:274 +msgid "Name:" +msgstr "Nom :" -#: ../../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 "Una vegada que s'han fet alguns amics, organitzi'ls en grups de conversa privada a la barra lateral de la seva pàgina de contactes i després pot interactuar amb cada grup de forma privada a la pàgina de la xarxa." +#: ../../include/enotify.php:275 +msgid "Photo:" +msgstr "Photo :" -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Per que no es public el meu enviament?" +#: ../../include/enotify.php:278 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion." -#: ../../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 respecta la teva privacitat. Per defecte, els teus enviaments només s'envien a gent que has afegit com a amic. Per més informació, mira la secció d'ajuda des de l'enllaç de dalt." +#: ../../include/enotify.php:286 ../../include/enotify.php:299 +msgid "[Friendica:Notify] Connection accepted" +msgstr "" -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "Demanant Ajuda" +#: ../../include/enotify.php:287 ../../include/enotify.php:300 +#, php-format +msgid "'%1$s' has acepted your connection request at %2$s" +msgstr "" -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Anar a la secció d'Ajuda" +#: ../../include/enotify.php:288 ../../include/enotify.php:301 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "" -#: ../../mod/newmember.php:82 +#: ../../include/enotify.php:291 msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "A les nostres pàgines d'ajuda es poden consultar detalls sobre les característiques d'altres programes i recursos." - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Atia/Punxa" +"You are now mutual friends and may exchange status updates, photos, and email\n" +"\twithout restriction." +msgstr "" -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "Atiar, punxar o fer altres coses a algú" +#: ../../include/enotify.php:294 ../../include/enotify.php:308 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Recipient" +#: ../../include/enotify.php:304 +#, php-format +msgid "" +"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." +msgstr "" -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Tria que vols fer amb el contenidor" +#: ../../include/enotify.php:306 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future. " +msgstr "" -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Fes aquest missatge privat" +#: ../../include/enotify.php:319 +msgid "[Friendica System:Notify] registration request" +msgstr "" -#: ../../mod/prove.php:93 -msgid "" -"\n" -"\t\tDear $[username],\n" -"\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\tinformation for your records (or change your password immediately to\n" -"\t\tsomething that you will remember).\n" -"\t" +#: ../../include/enotify.php:320 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: ../../mod/display.php:452 -msgid "Item has been removed." -msgstr "El element ha estat esborrat." +#: ../../include/enotify.php:321 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" -#: ../../mod/subthread.php:103 +#: ../../include/enotify.php:324 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s esta seguint %2$s de %3$s" +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "" -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#: ../../include/enotify.php:327 #, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s benvingut %2$s" +msgid "Please visit %s to approve or reject the request." +msgstr "" -#: ../../mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Això pot ocorre ocasionalment si el contacte fa una petició per ambdues persones i ja han estat aprovades." +#: ../../include/oembed.php:210 +msgid "Embedded content" +msgstr "Contenu incorporé" -#: ../../mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "La resposta des del lloc remot no s'entenia." +#: ../../include/oembed.php:219 +msgid "Embedding disabled" +msgstr "Incorporation désactivée" -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Resposta inesperada de lloc remot:" +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Une erreur a été détecté en décodant un fichier utilisateur" -#: ../../mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "La confirmació s'ha completat correctament." +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?" -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "El lloc remot informa:" +#: ../../include/uimport.php:116 ../../include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Erreur! Pseudo invalide" -#: ../../mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Fallada temporal. Si us plau, espereu i torneu a intentar." +#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "L'utilisateur '%s' existe déjà sur ce serveur!" -#: ../../mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "La presentació va fallar o va ser revocada." +#: ../../include/uimport.php:153 +msgid "User creation error" +msgstr "Erreur de création d'utilisateur" -#: ../../mod/dfrn_confirm.php:429 -msgid "Unable to set contact photo." -msgstr "No es pot canviar la foto de contacte." +#: ../../include/uimport.php:171 +msgid "User profile creation error" +msgstr "Erreur de création du profil utilisateur" -#: ../../mod/dfrn_confirm.php:571 +#: ../../include/uimport.php:220 #, php-format -msgid "No user record found for '%s' " -msgstr "No es troben registres d'usuari per a '%s'" +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contacts non importés" +msgstr[1] "%d contacts non importés" -#: ../../mod/dfrn_confirm.php:581 -msgid "Our site encryption key is apparently messed up." -msgstr "La nostra clau de xifrat del lloc pel que sembla en mal estat." +#: ../../include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe" -#: ../../mod/dfrn_confirm.php:592 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Es va proporcionar una URL del lloc buida o la URL no va poder ser desxifrada per nosaltres." +#: ../../index.php:428 +msgid "toggle mobile" +msgstr "activ. mobile" -#: ../../mod/dfrn_confirm.php:613 -msgid "Contact record was not found for you on our site." -msgstr "No s'han trobat registres del contacte al nostre lloc." +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 +#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55 +#: ../../view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Réglages du thème graphique" -#: ../../mod/dfrn_confirm.php:627 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "la clau pública del lloc no disponible en les dades del contacte per URL %s." +#: ../../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)" -#: ../../mod/dfrn_confirm.php:647 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "La ID proporcionada pel seu sistema és un duplicat en el nostre sistema. Hauria de treballar si intenta de nou." +#: ../../view/theme/cleanzero/config.php:84 +#: ../../view/theme/dispy/config.php:73 +#: ../../view/theme/diabook/config.php:151 +msgid "Set font-size for posts and comments" +msgstr "Réglez 'font-size' (taille de police) pour publications et commentaires" -#: ../../mod/dfrn_confirm.php:658 -msgid "Unable to set your contact credentials on our system." -msgstr "No es pot canviar les seves credencials de contacte en el nostre sistema." +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Largeur du thème" -#: ../../mod/dfrn_confirm.php:725 -msgid "Unable to update your contact profile details on our system" -msgstr "No es pot actualitzar els detalls del seu perfil de contacte en el nostre sistema" +#: ../../view/theme/cleanzero/config.php:86 +#: ../../view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Palette de couleurs" -#: ../../mod/dfrn_confirm.php:797 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s s'ha unit a %2$s" +#: ../../view/theme/dispy/config.php:74 +#: ../../view/theme/diabook/config.php:152 +msgid "Set line-height for posts and comments" +msgstr "Réglez 'line-height' (hauteur de police) pour publications et commentaires" -#: ../../mod/item.php:113 -msgid "Unable to locate original post." -msgstr "No es pot localitzar post original." +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Choisir le schéma de couleurs" -#: ../../mod/item.php:324 -msgid "Empty post discarded." -msgstr "Buidat després de rebutjar." +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Alignement" -#: ../../mod/item.php:915 -msgid "System error. Post not saved." -msgstr "Error del sistema. Publicació no guardada." +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Gauche" -#: ../../mod/item.php:941 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Aquest missatge va ser enviat a vostè per %s, un membre de la xarxa social Friendica." +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Centre" -#: ../../mod/item.php:943 -#, php-format -msgid "You may visit them online at %s" -msgstr "El pot visitar en línia a %s" +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Taille de texte des publications" -#: ../../mod/item.php:944 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Si us plau, poseu-vos en contacte amb el remitent responent a aquest missatge si no voleu rebre aquests missatges." +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Taille de police des zones de texte" -#: ../../mod/item.php:948 -#, php-format -msgid "%s posted an update." -msgstr "%s ha publicat una actualització." +#: ../../view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Réglez la résolution de la colonne centrale" -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Imatge pujada però no es va poder retallar." +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Choisir le schéma de couleurs" -#: ../../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 "La reducció de la imatge [%s] va fracassar." +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Niveau de zoom" -#: ../../mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Recarregui la pàgina o netegi la caché del navegador si la nova foto no apareix immediatament." +#: ../../view/theme/diabook/config.php:156 +#: ../../view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" +msgstr "Régler la longitude (X) pour la géolocalisation" -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "No es pot processar la imatge" +#: ../../view/theme/diabook/config.php:157 +#: ../../view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Régler la latitude (Y) pour la géolocalisation" -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Pujar arxiu:" +#: ../../view/theme/diabook/config.php:158 +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +msgid "Community Pages" +msgstr "Pages de Communauté" -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Tria un perfil:" +#: ../../view/theme/diabook/config.php:159 +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +msgid "Earth Layers" +msgstr "Géolocalisation" -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Pujar" +#: ../../view/theme/diabook/config.php:160 +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +msgid "Community Profiles" +msgstr "Profils communautaires" -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "saltar aquest pas" +#: ../../view/theme/diabook/config.php:161 +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +msgid "Help or @NewHere ?" +msgstr "Aide ou @NewHere?" -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "tria una foto dels teus àlbums" +#: ../../view/theme/diabook/config.php:162 +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +msgid "Connect Services" +msgstr "Connecter des services" -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "retallar imatge" +#: ../../view/theme/diabook/config.php:163 +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +msgid "Find Friends" +msgstr "Trouver des amis" -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Per favor, ajusta la retallada d'imatge per a una optima visualització." +#: ../../view/theme/diabook/config.php:164 +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +msgid "Last users" +msgstr "Derniers utilisateurs" -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Edició Feta" +#: ../../view/theme/diabook/config.php:165 +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "Dernières photos" -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Carregada de la imatge amb èxit." +#: ../../view/theme/diabook/config.php:166 +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +msgid "Last likes" +msgstr "Dernièrement aimé" -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Amics de %s" +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Vos contacts" -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "No hi ha amics que mostrar" +#: ../../view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Vos photos personnelles" -#: ../../mod/directory.php:59 -msgid "Find on this site" -msgstr "Trobat en aquest lloc" +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Annuaire local" -#: ../../mod/directory.php:62 -msgid "Site Directory" -msgstr "Directori Local" +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Régler le niveau de zoom pour la géolocalisation" -#: ../../mod/directory.php:116 -msgid "Gender: " -msgstr "Gènere:" +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Montrer/cacher les boîtes dans la colonne de droite :" -#: ../../mod/directory.php:189 -msgid "No entries (some entries may be hidden)." -msgstr "No hi ha entrades (algunes de les entrades poden estar amagades)." +#: ../../view/theme/vier/config.php:56 +msgid "Set style" +msgstr "Définir le style" -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Temps de Conversió" +#: ../../view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "" -#: ../../mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica ofereix aquest servei per a compartir esdeveniments amb d'altres xarxes i amics en zones horaries que son desconegudes" +#: ../../view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "" -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "hora UTC: %s" +#: ../../view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "" -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Zona horària actual: %s" +#: ../../view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "" -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Conversión de hora local: %s" +#: ../../view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "" -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Si us plau, seleccioneu la vostra zona horària:" +#: ../../view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "" + +#: ../../view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "" diff --git a/view/fr/strings.php b/view/fr/strings.php index db0ee9ab91..a7cd0d1d86 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -5,742 +5,287 @@ function string_plural_select_fr($n){ return ($n > 1);; }} ; -$a->strings["Submit"] = "Envoyer"; -$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 style"] = "Définir le style"; -$a->strings["don't show"] = "cacher"; -$a->strings["show"] = "montrer"; -$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["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 users"] = "Derniers utilisateurs"; -$a->strings["Last photos"] = "Dernières photos"; -$a->strings["Last likes"] = "Dernièrement aimé"; -$a->strings["Home"] = "Profil"; -$a->strings["Your posts and conversations"] = "Vos publications et conversations"; -$a->strings["Profile"] = "Profil"; -$a->strings["Your profile page"] = "Votre page de profil"; -$a->strings["Contacts"] = "Contacts"; -$a->strings["Your contacts"] = "Vos contacts"; -$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["Community"] = "Communauté"; -$a->strings["event"] = "évènement"; -$a->strings["status"] = "le statut"; -$a->strings["photo"] = "photo"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s"; -$a->strings["Contact Photos"] = "Photos du contact"; -$a->strings["Profile Photos"] = "Photos du profil"; -$a->strings["Local Directory"] = "Annuaire local"; -$a->strings["Global Directory"] = "Annuaire global"; -$a->strings["Similar Interests"] = "Intérêts similaires"; -$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts"; -$a->strings["Invite Friends"] = "Inviter des amis"; -$a->strings["Settings"] = "Réglages"; -$a->strings["Set zoomfactor for Earth Layers"] = "Régler le niveau de zoom pour la géolocalisation"; -$a->strings["Show/hide boxes at right-hand column:"] = "Montrer/cacher les boîtes dans la colonne de droite :"; -$a->strings["Alignment"] = "Alignement"; -$a->strings["Left"] = "Gauche"; -$a->strings["Center"] = "Centre"; -$a->strings["Posts font size"] = "Taille de texte des publications"; -$a->strings["Textareas font size"] = "Taille de police des zones de texte"; -$a->strings["Set colour scheme"] = "Choisir le schéma de couleurs"; -$a->strings["You must be logged in to use addons. "] = "Vous devez être connecté pour utiliser les greffons."; -$a->strings["Not Found"] = "Non trouvé"; -$a->strings["Page not found."] = "Page introuvable."; -$a->strings["Permission denied"] = "Permission refusée"; +$a->strings["%d contact edited."] = array( + 0 => "%d contact édité", + 1 => "%d contacts édités.", +); +$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["Permission denied."] = "Permission refusée."; -$a->strings["toggle mobile"] = "activ. mobile"; -$a->strings["Delete this item?"] = "Effacer cet élément?"; -$a->strings["Comment"] = "Commenter"; -$a->strings["show more"] = "montrer plus"; -$a->strings["show fewer"] = "montrer moins"; -$a->strings["Update %s failed. See error logs."] = "Mise-à-jour %s échouée. Voir les journaux d'erreur."; -$a->strings["Create a New Account"] = "Créer un nouveau compte"; -$a->strings["Register"] = "S'inscrire"; -$a->strings["Logout"] = "Se déconnecter"; -$a->strings["Login"] = "Connexion"; -$a->strings["Nickname or Email address: "] = "Pseudo ou courriel: "; -$a->strings["Password: "] = "Mot de passe: "; -$a->strings["Remember me"] = "Se souvenir de moi"; -$a->strings["Or login using OpenID: "] = "Ou connectez-vous via OpenID: "; -$a->strings["Forgot your password?"] = "Mot de passe oublié?"; -$a->strings["Password Reset"] = "Réinitialiser le mot de passe"; -$a->strings["Website Terms of Service"] = "Conditions d'utilisation du site internet"; -$a->strings["terms of service"] = "conditions d'utilisation"; -$a->strings["Website Privacy Policy"] = "Politique de confidentialité du site internet"; -$a->strings["privacy policy"] = "politique de confidentialité"; -$a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible."; -$a->strings["Requested profile is not available."] = "Le profil demandé n'est pas disponible."; -$a->strings["Edit profile"] = "Editer le profil"; -$a->strings["Connect"] = "Relier"; -$a->strings["Message"] = "Message"; -$a->strings["Profiles"] = "Profils"; -$a->strings["Manage/edit profiles"] = "Gérer/éditer 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["Location:"] = "Localisation:"; -$a->strings["Gender:"] = "Genre:"; -$a->strings["Status:"] = "Statut:"; -$a->strings["Homepage:"] = "Page personnelle:"; -$a->strings["Network:"] = "Réseau"; -$a->strings["g A l F d"] = "g A | F d"; -$a->strings["F d"] = "F d"; -$a->strings["[today]"] = "[aujourd'hui]"; -$a->strings["Birthday Reminders"] = "Rappels d'anniversaires"; -$a->strings["Birthdays this week:"] = "Anniversaires cette semaine:"; -$a->strings["[No description]"] = "[Sans description]"; -$a->strings["Event Reminders"] = "Rappels d'événements"; -$a->strings["Events this week:"] = "Evénements cette semaine:"; -$a->strings["Status"] = "Statut"; -$a->strings["Status Messages and Posts"] = "Messages d'état et publications"; -$a->strings["Profile Details"] = "Détails du profil"; -$a->strings["Photo Albums"] = "Albums photo"; -$a->strings["Videos"] = "Vidéos"; -$a->strings["Events and Calendar"] = "Événements et agenda"; -$a->strings["Personal Notes"] = "Notes personnelles"; -$a->strings["Only You Can See This"] = "Vous seul pouvez voir ça"; -$a->strings["General Features"] = "Fonctions générales"; -$a->strings["Multiple Profiles"] = "Profils multiples"; -$a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils"; -$a->strings["Post Composition Features"] = "Caractéristiques de composition de publication"; -$a->strings["Richtext Editor"] = "Éditeur de texte enrichi"; -$a->strings["Enable richtext editor"] = "Activer l'éditeur de texte enrichi"; -$a->strings["Post Preview"] = "Aperçu de la publication"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Permet la prévisualisation des publications et commentaires avant de les publier"; -$a->strings["Auto-mention Forums"] = ""; -$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = ""; -$a->strings["Network Sidebar Widgets"] = "Widgets réseau pour barre latérale"; -$a->strings["Search by Date"] = "Rechercher par Date"; -$a->strings["Ability to select posts by date ranges"] = "Capacité de sélectionner les publications par intervalles de dates"; -$a->strings["Group Filter"] = "Filtre de groupe"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné"; -$a->strings["Network Filter"] = "Filtre de réseau"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné"; -$a->strings["Saved Searches"] = "Recherches"; -$a->strings["Save search terms for re-use"] = "Sauvegarder la recherche pour une utilisation ultérieure"; -$a->strings["Network Tabs"] = "Onglets Réseau"; -$a->strings["Network Personal Tab"] = "Onglet Réseau Personnel"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit"; -$a->strings["Network New Tab"] = "Nouvel onglet réseaux"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)"; -$a->strings["Network Shared Links Tab"] = "Onglet réseau partagé"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens"; -$a->strings["Post/Comment Tools"] = "outils de publication/commentaire"; -$a->strings["Multiple Deletion"] = "Suppression multiple"; -$a->strings["Select and delete multiple posts/comments at once"] = "Sélectionner et supprimer plusieurs publications/commentaires à la fois"; -$a->strings["Edit Sent Posts"] = "Éditer les publications envoyées"; -$a->strings["Edit and correct posts and comments after sending"] = "Éditer et corriger les publications et commentaires après l'envoi"; -$a->strings["Tagging"] = "Étiquettage"; -$a->strings["Ability to tag existing posts"] = "Possibilité d'étiqueter les publications existantes"; -$a->strings["Post Categories"] = "Catégories des publications"; -$a->strings["Add categories to your posts"] = "Ajouter des catégories à vos publications"; -$a->strings["Saved Folders"] = "Dossiers sauvegardés"; -$a->strings["Ability to file posts under folders"] = "Possibilité d'afficher les publications sous les répertoires"; -$a->strings["Dislike Posts"] = "Publications non aimées"; -$a->strings["Ability to dislike posts/comments"] = "Possibilité de ne pas aimer les publications/commentaires"; -$a->strings["Star Posts"] = "Publications spéciales"; -$a->strings["Ability to mark special posts with a star indicator"] = "Possibilité de marquer les publications spéciales d'une étoile"; -$a->strings["Mute Post Notifications"] = ""; -$a->strings["Ability to mute notifications for a thread"] = ""; -$a->strings["%s's birthday"] = "Anniversaire de %s's"; -$a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !"; -$a->strings["[Name Withheld]"] = "[Nom non-publié]"; -$a->strings["Item not found."] = "Élément introuvable."; -$a->strings["Do you really want to delete this item?"] = "Voulez-vous vraiment supprimer cet élément ?"; +$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?"] = "Voulez-vous vraiment supprimer ce contact?"; $a->strings["Yes"] = "Oui"; $a->strings["Cancel"] = "Annuler"; -$a->strings["Archives"] = "Archives"; -$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["add"] = "ajouter"; -$a->strings["Wall Photos"] = "Photos du mur"; -$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["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["Find"] = "Trouver"; -$a->strings["Random Profile"] = "Profil au hasard"; -$a->strings["Networks"] = "Réseaux"; -$a->strings["All Networks"] = "Tous réseaux"; -$a->strings["Everything"] = "Tout"; -$a->strings["Categories"] = "Catégories"; +$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["Friendica Notification"] = "Notification Friendica"; -$a->strings["Thank You,"] = "Merci, "; -$a->strings["%s Administrator"] = "L'administrateur de %s"; -$a->strings["noreply"] = "noreply"; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notification] Nouveau courriel reçu sur %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s vous a envoyé un nouveau message privé sur %2\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s."; -$a->strings["a private message"] = "un message privé"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir vos messages privés et/ou y répondre."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]un %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]le %4\$s de %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s commented on [url=%2\$s]your %3\$s[/url]"; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notification] Commentaire de %2\$s sur la conversation #%1\$d"; -$a->strings["%s commented on an item/conversation you have been following."] = "%s a commenté un élément que vous suivez."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir la conversation et/ou y répondre."; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notification] %s a posté sur votre mur de profil"; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s a publié sur votre mur à %2\$s"; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s a posté sur [url=%2\$s]votre mur[/url]"; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notification] %s vous a étiqueté"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s vous a étiqueté sur %2\$s"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]vous a étiqueté[/url]."; -$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notification] %s partage une nouvelle publication"; -$a->strings["%1\$s shared a new post at %2\$s"] = ""; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]partage une publication[/url]."; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s vous a sollicité"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s vous a sollicité via %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s vous a [url=%2\$s]sollicité[/url]."; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notification] %s a étiqueté votre publication"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s a étiqueté votre publication sur %2\$s"; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s a étiqueté [url=%2\$s]votre publication[/url]"; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notification] Introduction reçue"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Vous avez reçu une introduction de '%1\$s' sur %2\$s"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Vous avez reçu [url=%1\$s]une introduction[/url] de %2\$s."; -$a->strings["You may visit their profile at %s"] = "Vous pouvez visiter son profil sur %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Merci de visiter %s pour approuver ou rejeter l'introduction."; -$a->strings["[Friendica:Notify] A new person is sharing with you"] = ""; -$a->strings["%1\$s is sharing with you at %2\$s"] = ""; -$a->strings["[Friendica:Notify] You have a new follower"] = ""; -$a->strings["You have a new follower at %2\$s : %1\$s"] = ""; -$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notification] Nouvelle suggestion d'amitié"; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Vous avez reçu une suggestion de '%1\$s' sur %2\$s"; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Vous avez reçu [url=%1\$s]une suggestion[/url] de %3\$s pour %2\$s."; -$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["[Friendica:Notify] Connection accepted"] = ""; -$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = ""; -$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = ""; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = ""; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; -$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = ""; -$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = ""; -$a->strings["[Friendica System:Notify] registration request"] = ""; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = ""; -$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = ""; -$a->strings["Please visit %s to approve or reject the request."] = ""; -$a->strings["User not found."] = "Utilisateur non trouvé"; -$a->strings["There is no status with this id."] = "Il n'y a pas de statut avec cet id."; -$a->strings["There is no conversation with this id."] = "Il n'y a pas de conversation avec cet id."; -$a->strings["view full size"] = "voir en pleine taille"; -$a->strings[" on Last.fm"] = "sur Last.fm"; -$a->strings["Full Name:"] = "Nom complet:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Anniversaire:"; -$a->strings["Age:"] = "Age:"; -$a->strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Préférence sexuelle:"; -$a->strings["Hometown:"] = " Ville d'origine:"; -$a->strings["Tags:"] = "Étiquette:"; -$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:"; -$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["Nothing new here"] = "Rien de neuf ici"; -$a->strings["Clear notifications"] = "Effacer les notifications"; -$a->strings["End this session"] = "Mettre fin à cette session"; -$a->strings["Your videos"] = "Vos vidéos"; -$a->strings["Your personal notes"] = "Vos notes personnelles"; -$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"] = "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"] = "Recherche"; -$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["Information"] = "Information"; -$a->strings["Information about this friendica instance"] = "Information au sujet de cette instance de friendica"; -$a->strings["Network"] = "Réseau"; -$a->strings["Conversations from your friends"] = "Conversations de vos amis"; -$a->strings["Network Reset"] = "Réinitialiser le réseau"; -$a->strings["Load Network page with no filters"] = "Chargement des pages du réseau sans filtre"; -$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"] = "Délégations"; -$a->strings["Delegate Page Management"] = "Déléguer la gestion de la page"; -$a->strings["Account settings"] = "Compte"; -$a->strings["Manage/Edit Profiles"] = "Gérer/Éditer les profiles"; -$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"] = "Navigation"; -$a->strings["Site map"] = "Carte du site"; -$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["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["Error decoding account file"] = "Une erreur a été détecté en décodant un fichier utilisateur"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?"; -$a->strings["Error! Cannot check nickname"] = "Erreur! Pseudo invalide"; -$a->strings["User '%s' already exists on this server!"] = "L'utilisateur '%s' existe déjà sur ce serveur!"; -$a->strings["User creation error"] = "Erreur de création d'utilisateur"; -$a->strings["User profile creation error"] = "Erreur de création du profil utilisateur"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contacts non importés", - 1 => "%d contacts non importés", -); -$a->strings["Done. You can now login with your username and password"] = "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe"; -$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["stopped following"] = "retiré de la liste de suivi"; -$a->strings["Poke"] = "Sollicitations (pokes)"; -$a->strings["View Status"] = "Voir les statuts"; -$a->strings["View Profile"] = "Voir le profil"; -$a->strings["View Photos"] = "Voir les photos"; -$a->strings["Network Posts"] = "Publications du réseau"; -$a->strings["Edit Contact"] = "Éditer le contact"; -$a->strings["Drop Contact"] = "Supprimer le contact"; -$a->strings["Send PM"] = "Message privé"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = ""; -$a->strings["The error message is\n[pre]%s[/pre]"] = ""; -$a->strings["Errors encountered creating database tables."] = "Des erreurs ont été signalées lors de la création des tables."; -$a->strings["Errors encountered performing database changes."] = ""; -$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["[no subject]"] = "[pas de sujet]"; -$a->strings["(no subject)"] = "(sans titre)"; -$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+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Connecteur Diaspora"; -$a->strings["Statusnet"] = "Statusnet"; -$a->strings["App.net"] = "App.net"; -$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["Attachments:"] = "Pièces jointes : "; -$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["poked"] = "a titillé"; -$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 étiqueté %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["View all contacts"] = "Voir tous les contacts"; +$a->strings["Unblock"] = "Débloquer"; +$a->strings["Block"] = "Bloquer"; +$a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\""; +$a->strings["Unignore"] = "Ne plus ignorer"; +$a->strings["Ignore"] = "Ignorer"; +$a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\""; +$a->strings["Unarchive"] = "Désarchiver"; +$a->strings["Archive"] = "Archiver"; +$a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\""; +$a->strings["Repair"] = "Réparer"; +$a->strings["Advanced Contact Settings"] = "Réglages avancés du contact"; +$a->strings["Communications lost with this contact!"] = "Communications perdues avec ce contact !"; +$a->strings["Contact Editor"] = "Éditeur de contact"; +$a->strings["Submit"] = "Envoyer"; +$a->strings["Profile Visibility"] = "Visibilité du profil"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée."; +$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églages de réparation des 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"] = "Mettre à jour les publications publiques:"; +$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["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 publications publiques peuvent être toujours visibles"; +$a->strings["Notification for new posts"] = "Notification des nouvelles publications"; +$a->strings["Send a notification of every new post of this contact"] = "Envoyer une notification de chaque nouveau message en provenance de ce contact"; +$a->strings["Fetch further information for feeds"] = "Chercher plus d'informations pour les flux"; +$a->strings["Disabled"] = "Désactivé"; +$a->strings["Fetch information"] = ""; +$a->strings["Fetch information and keywords"] = ""; +$a->strings["Blacklisted keywords"] = ""; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = ""; +$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["Update"] = "Mises-à-jour"; $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"] = "%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 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:"] = "Terme d'étiquette:"; +$a->strings["No profile"] = "Aucun profil"; +$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["Post successful."] = "Publication réussie."; +$a->strings["Permission denied"] = "Permission refusée"; +$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide."; +$a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil"; +$a->strings["Profile"] = "Profil"; +$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer."; +$a->strings["Visible To"] = "Visible par"; +$a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)"; +$a->strings["Item not found."] = "Élément introuvable."; +$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["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["Settings"] = "Réglages"; +$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["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, toutes vos publications 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["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["Image uploaded but image cropping failed."] = "Image envoyée, mais impossible de la retailler."; +$a->strings["Profile Photos"] = "Photos du profil"; +$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["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["or"] = "ou"; +$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["Image upload failed."] = "Le téléversement de l'image a échoué."; +$a->strings["photo"] = "photo"; +$a->strings["status"] = "le statut"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit les %3\$s de %2\$s"; +$a->strings["Tag removed"] = "Étiquette supprimée"; +$a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément"; +$a->strings["Select a tag to remove: "] = "Sélectionner une étiquette à supprimer: "; +$a->strings["Remove"] = "Utiliser comme photo de profil"; $a->strings["Save to Folder:"] = "Sauver dans le Dossier:"; -$a->strings["Where are you right now?"] = "Où êtes-vous présentemment?"; -$a->strings["Delete item(s)?"] = "Supprimer les élément(s) ?"; -$a->strings["Post to Email"] = "Publier aux courriels"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; -$a->strings["Hide your profile details from unknown viewers?"] = "Cacher les détails du profil aux visiteurs inconnus?"; -$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"] = "Publication 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"] = "Publier aux groupes"; -$a->strings["Post to Contacts"] = "Publier aux contacts"; -$a->strings["Private post"] = "Message privé"; -$a->strings["newer"] = "Plus récent"; -$a->strings["older"] = "Plus ancien"; -$a->strings["prev"] = "précédent"; -$a->strings["first"] = "premier"; -$a->strings["last"] = "dernier"; -$a->strings["next"] = "suivant"; -$a->strings["No contacts"] = "Aucun contact"; -$a->strings["%d Contact"] = array( - 0 => "%d contact", - 1 => "%d contacts", -); -$a->strings["View Contacts"] = "Voir les contacts"; +$a->strings["- select -"] = "- choisir -"; $a->strings["Save"] = "Sauver"; -$a->strings["poke"] = "titiller"; -$a->strings["ping"] = "attirer l'attention"; -$a->strings["pinged"] = "a attiré l'attention de"; -$a->strings["prod"] = "aiguillonner"; -$a->strings["prodded"] = "a aiguillonné"; -$a->strings["slap"] = "gifler"; -$a->strings["slapped"] = "a giflé"; -$a->strings["finger"] = "tripoter"; -$a->strings["fingered"] = "a tripoté"; -$a->strings["rebuff"] = "rabrouer"; -$a->strings["rebuffed"] = "a rabroué"; -$a->strings["happy"] = "heureuse"; -$a->strings["sad"] = "triste"; -$a->strings["mellow"] = "suave"; -$a->strings["tired"] = "fatiguée"; -$a->strings["perky"] = "guillerette"; -$a->strings["angry"] = "colérique"; -$a->strings["stupified"] = "stupéfaite"; -$a->strings["puzzled"] = "perplexe"; -$a->strings["interested"] = "intéressée"; -$a->strings["bitter"] = "amère"; -$a->strings["cheerful"] = "entraînante"; -$a->strings["alive"] = "vivante"; -$a->strings["annoyed"] = "ennuyée"; -$a->strings["anxious"] = "anxieuse"; -$a->strings["cranky"] = "excentrique"; -$a->strings["disturbed"] = "dérangée"; -$a->strings["frustrated"] = "frustrée"; -$a->strings["motivated"] = "motivée"; -$a->strings["relaxed"] = "détendue"; -$a->strings["surprised"] = "surprise"; -$a->strings["Monday"] = "Lundi"; -$a->strings["Tuesday"] = "Mardi"; -$a->strings["Wednesday"] = "Mercredi"; -$a->strings["Thursday"] = "Jeudi"; -$a->strings["Friday"] = "Vendredi"; -$a->strings["Saturday"] = "Samedi"; -$a->strings["Sunday"] = "Dimanche"; -$a->strings["January"] = "Janvier"; -$a->strings["February"] = "Février"; -$a->strings["March"] = "Mars"; -$a->strings["April"] = "Avril"; -$a->strings["May"] = "Mai"; -$a->strings["June"] = "Juin"; -$a->strings["July"] = "Juillet"; -$a->strings["August"] = "Août"; -$a->strings["September"] = "Septembre"; -$a->strings["October"] = "Octobre"; -$a->strings["November"] = "Novembre"; -$a->strings["December"] = "Décembre"; +$a->strings["Contact added"] = "Contact ajouté"; +$a->strings["Unable to locate original post."] = "Impossible de localiser la publication originale."; +$a->strings["Empty post discarded."] = "Publication vide rejetée."; +$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["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["Save Group"] = "Sauvegarder le groupe"; +$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["You must be logged in to use addons. "] = "Vous devez être connecté pour utiliser les greffons."; +$a->strings["Applications"] = "Applications"; +$a->strings["No installed applications."] = "Pas d'application installée."; +$a->strings["Profile not found."] = "Profil introuvable."; +$a->strings["Contact not found."] = "Contact introuvable."; +$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["[Name Withheld]"] = "[Nom non-publié]"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s a rejoint %2\$s"; +$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["No videos selected"] = "Pas de vidéo sélectionné"; +$a->strings["Access to this item is restricted."] = "Accès restreint à cet élément."; $a->strings["View Video"] = "Regarder la vidéo"; -$a->strings["bytes"] = "octets"; -$a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer"; -$a->strings["link to source"] = "lien original"; -$a->strings["default"] = "défaut"; -$a->strings["Select an alternate language"] = "Choisir une langue alternative"; -$a->strings["activity"] = "activité"; -$a->strings["comment"] = array( - 0 => "", - 1 => "commentaire", -); -$a->strings["post"] = "publication"; -$a->strings["Item filed"] = "Élément classé"; -$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["Image/photo"] = "Image/photo"; -$a->strings["%2\$s %3\$s"] = ""; -$a->strings["%s wrote the following post"] = ""; -$a->strings["$1 wrote:"] = "$1 a écrit:"; -$a->strings["Encrypted content"] = "Contenu chiffré"; -$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["Embedded content"] = "Contenu incorporé"; -$a->strings["Embedding disabled"] = "Incorporation désactivée"; -$a->strings["Male"] = "Masculin"; -$a->strings["Female"] = "Féminin"; -$a->strings["Currently Male"] = "Actuellement masculin"; -$a->strings["Currently Female"] = "Actuellement féminin"; -$a->strings["Mostly Male"] = "Principalement masculin"; -$a->strings["Mostly Female"] = "Principalement féminin"; -$a->strings["Transgender"] = "Transgenre"; -$a->strings["Intersex"] = "Inter-sexe"; -$a->strings["Transsexual"] = "Transsexuel"; -$a->strings["Hermaphrodite"] = "Hermaphrodite"; -$a->strings["Neuter"] = "Neutre"; -$a->strings["Non-specific"] = "Non-spécifique"; -$a->strings["Other"] = "Autre"; -$a->strings["Undecided"] = "Indécis"; -$a->strings["Males"] = "Hommes"; -$a->strings["Females"] = "Femmes"; -$a->strings["Gay"] = "Gay"; -$a->strings["Lesbian"] = "Lesbienne"; -$a->strings["No Preference"] = "Sans préférence"; -$a->strings["Bisexual"] = "Bisexuel"; -$a->strings["Autosexual"] = "Auto-sexuel"; -$a->strings["Abstinent"] = "Abstinent"; -$a->strings["Virgin"] = "Vierge"; -$a->strings["Deviant"] = "Déviant"; -$a->strings["Fetish"] = "Fétichiste"; -$a->strings["Oodles"] = "Oodles"; -$a->strings["Nonsexual"] = "Non-sexuel"; -$a->strings["Single"] = "Célibataire"; -$a->strings["Lonely"] = "Esseulé"; -$a->strings["Available"] = "Disponible"; -$a->strings["Unavailable"] = "Indisponible"; -$a->strings["Has crush"] = "Attiré par quelqu'un"; -$a->strings["Infatuated"] = "Entiché"; -$a->strings["Dating"] = "Dans une relation"; -$a->strings["Unfaithful"] = "Infidèle"; -$a->strings["Sex Addict"] = "Accro au sexe"; -$a->strings["Friends"] = "Amis"; -$a->strings["Friends/Benefits"] = "Amis par intérêt"; -$a->strings["Casual"] = "Casual"; -$a->strings["Engaged"] = "Fiancé"; -$a->strings["Married"] = "Marié"; -$a->strings["Imaginarily married"] = "Se croit marié"; -$a->strings["Partners"] = "Partenaire"; -$a->strings["Cohabiting"] = "En cohabitation"; -$a->strings["Common law"] = "Marié \"de fait\"/\"sui juris\" (concubin)"; -$a->strings["Happy"] = "Heureux"; -$a->strings["Not looking"] = "Pas intéressé"; -$a->strings["Swinger"] = "Échangiste"; -$a->strings["Betrayed"] = "Trahi(e)"; -$a->strings["Separated"] = "Séparé"; -$a->strings["Unstable"] = "Instable"; -$a->strings["Divorced"] = "Divorcé"; -$a->strings["Imaginarily divorced"] = "Se croit divorcé"; -$a->strings["Widowed"] = "Veuf/Veuve"; -$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["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["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5$\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = ""; -$a->strings["Registration details for %s"] = "Détails d'inscription pour %s"; -$a->strings["Visible to everybody"] = "Visible par tout le monde"; -$a->strings["This entry was edited"] = "Cette entrée à été édité"; -$a->strings["Private Message"] = "Message privé"; -$a->strings["Edit"] = "Éditer"; -$a->strings["save to folder"] = "sauver vers dossier"; -$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["ignore thread"] = ""; -$a->strings["unignore thread"] = ""; -$a->strings["toggle ignore status"] = ""; -$a->strings["ignored"] = ""; -$a->strings["add tag"] = "ajouter une étiquette"; -$a->strings["I like this (toggle)"] = "J'aime (bascule)"; -$a->strings["like"] = "aime"; -$a->strings["I don't like this (toggle)"] = "Je n'aime pas (bascule)"; -$a->strings["dislike"] = "n'aime pas"; -$a->strings["Share this"] = "Partager"; -$a->strings["share"] = "partager"; -$a->strings["to"] = "à"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Inter-mur"; -$a->strings["via Wall-To-Wall:"] = "en Inter-mur:"; -$a->strings["%d comment"] = array( - 0 => "%d commentaire", - 1 => "%d commentaires", -); -$a->strings["This is you"] = "C'est vous"; -$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["Item not available."] = "Elément non disponible."; -$a->strings["Item was not found."] = "Element introuvable."; -$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["Your message:"] = "Votre message:"; -$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["Save Group"] = "Sauvegarder le groupe"; -$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["All Contacts"] = "Tous les contacts"; -$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer."; -$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["View Album"] = "Voir l'album"; +$a->strings["Recent Videos"] = "Vidéos récente"; +$a->strings["Upload New Videos"] = "Téléversé une nouvelle vidéo"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté %3\$s de %2\$s avec %4\$s"; +$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["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["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = ""; +$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["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = ""; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = ""; +$a->strings["Your password has been changed at %s"] = "Votre mot de passe a été modifié à %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["%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["{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é la publication de %s"; +$a->strings["{0} liked %s's post"] = "{0} a aimé la publication de %s"; +$a->strings["{0} disliked %s's post"] = "{0} n'a pas aimé la publication de %s"; +$a->strings["{0} is now friends with %s"] = "{0} est désormais ami(e) avec %s"; +$a->strings["{0} posted"] = "{0} a publié"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} a étiqueté la publication de %s avec #%s"; +$a->strings["{0} mentioned you in a post"] = "{0} vous a mentionné dans une publication"; +$a->strings["No contacts."] = "Aucun contact."; +$a->strings["View Contacts"] = "Voir les contacts"; $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["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 une nouvelle avtivité d'ami"; $a->strings["if applicable"] = "si possible"; $a->strings["Approve"] = "Approuver"; @@ -754,6 +299,7 @@ $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 publication de %s"; $a->strings["%s disliked %s's post"] = "%s n'a pas aimé la publication de %s"; $a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s"; @@ -767,350 +313,88 @@ $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["No profile"] = "Aucun profil"; -$a->strings["everybody"] = "tout le monde"; -$a->strings["Account"] = "Compte"; -$a->strings["Additional features"] = "Fonctions supplémentaires"; -$a->strings["Display"] = "Afficher"; -$a->strings["Social Networks"] = "Réseaux sociaux"; -$a->strings["Plugins"] = "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"] = "Fonctionnalités mises à jour"; -$a->strings["Relocate message has been send to your contacts"] = ""; -$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."] = "Mauvais mot de passe."; -$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"] = "Mauvais mot de passe"; -$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["Save Settings"] = "Sauvegarder les paramétres"; -$a->strings["Name"] = "Nom"; -$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"] = "Éteint"; -$a->strings["On"] = "Allumé"; -$a->strings["Additional Features"] = "Fonctions supplémentaires"; -$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["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:"] = "Envoyer les publications publiques à tous les contacts courriels:"; -$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["Number of items to display per page when viewed from mobile device:"] = "Nombre d'éléments a afficher par page pour un appareil mobile"; -$a->strings["Don't show emoticons"] = "Ne pas afficher les émoticônes (smileys grahiques)"; -$a->strings["Don't show notices"] = ""; -$a->strings["Infinite scroll"] = ""; -$a->strings["Automatic updates only at the top of the network page"] = ""; -$a->strings["User Types"] = ""; -$a->strings["Community Types"] = ""; -$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["No"] = "Non"; -$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["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 à étiqueter vos publications?"; -$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 publications n'expireront pas. Les publications 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 publications:"; -$a->strings["Expire personal notes:"] = "Faire expirer les notes personnelles:"; -$a->strings["Expire starred posts:"] = "Faire expirer les publications marqués:"; -$a->strings["Expire photos:"] = "Faire expirer les photos:"; -$a->strings["Only expire posts by others:"] = "Faire expirer seulement les publications 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:"] = "Mot de passe actuel:"; -$a->strings["Your current password to confirm the changes"] = "Votre mot de passe actuel pour confirmer les modifications"; -$a->strings["Password:"] = "Mot de passe:"; -$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:"] = "Emplacement de publication par défaut:"; -$a->strings["Use Browser Location:"] = "Utiliser la localisation géographique du navigateur:"; -$a->strings["Security and Privacy Settings"] = "Réglages de sécurité et vie privée"; -$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 de publication par défaut"; -$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"] = "Message privé par défaut"; -$a->strings["Default Public Post"] = "Message publique par défaut"; -$a->strings["Default Permissions for New Posts"] = "Permissions par défaut pour les nouvelles publications"; -$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é étiquetté 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["Relocate"] = ""; -$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = ""; -$a->strings["Resend relocate message to contacts"] = ""; -$a->strings["Common Friends"] = "Amis communs"; -$a->strings["No contacts in common."] = "Pas de contacts en commun."; -$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles."; -$a->strings["Visible to:"] = "Visible par:"; -$a->strings["%d contact edited."] = array( - 0 => "%d contact édité", - 1 => "%d contacts édités.", +$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): "] = "bb2html (HTML brut)"; +$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["Nothing new here"] = "Rien de neuf ici"; +$a->strings["Clear notifications"] = "Effacer les notifications"; +$a->strings["New Message"] = "Nouveau message"; +$a->strings["No recipient selected."] = "Pas de destinataire sélectionné."; +$a->strings["Unable to locate contact information."] = "Impossible de localiser les informations du contact."; +$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["Messages"] = "Messages"; +$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["Please enter a link URL:"] = "Entrez un lien web:"; +$a->strings["Send Private Message"] = "Envoyer un message privé"; +$a->strings["To:"] = "À:"; +$a->strings["Subject:"] = "Sujet:"; +$a->strings["Your message:"] = "Votre message:"; +$a->strings["Upload photo"] = "Joindre photo"; +$a->strings["Insert web link"] = "Insérer lien web"; +$a->strings["Please wait"] = "Patientez"; +$a->strings["No messages."] = "Aucun message."; +$a->strings["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["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?"] = "Voulez-vous vraiment supprimer ce 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["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["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églages de réparation des 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"] = "Mettre à jour les publications publiques:"; -$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 publications publiques peuvent être toujours visibles"; -$a->strings["Notification for new posts"] = "Notification des nouvelles publications"; -$a->strings["Send a notification of every new post of this contact"] = ""; -$a->strings["Fetch further information for feeds"] = ""; -$a->strings["Suggestions"] = "Suggestions"; -$a->strings["Suggest potential friends"] = "Suggérer des amis potentiels"; -$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["Search your contacts"] = "Rechercher dans vos contacts"; -$a->strings["Finding: "] = "Trouvé: "; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise"; -$a->strings["Or - did you try to upload an empty file?"] = ""; -$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["Message not available."] = "Message indisponible."; +$a->strings["Delete message"] = "Effacer message"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur."; +$a->strings["Send Reply"] = "Répondre"; $a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]"; -$a->strings["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["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["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["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["Import"] = "Importer"; -$a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica"; -$a->strings["Post successful."] = "Publication réussie."; -$a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance"; -$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["Public access denied."] = "Accès public refusé."; -$a->strings["No videos selected"] = "Pas de vidéo sélectionné"; -$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"] = "Vidéos récente"; -$a->strings["Upload New Videos"] = "Téléversé une nouvelle vidéo"; -$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["Item not found"] = "Élément introuvable"; -$a->strings["Edit post"] = "Éditer la publication"; +$a->strings["Contact settings applied."] = "Réglages du contact appliqués."; +$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages."; +$a->strings["Repair Contact Settings"] = "Réglages de réparation des contacts"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "une photo"; +$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact"; +$a->strings["No mirroring"] = ""; +$a->strings["Mirror as forwarded posting"] = ""; +$a->strings["Mirror as my own posting"] = ""; +$a->strings["Name"] = "Nom"; +$a->strings["Account Nickname"] = "Pseudo du compte"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@NomEtiquette - 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["Remote Self"] = ""; +$a->strings["Mirror postings from this contact"] = ""; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; +$a->strings["Access denied."] = "Accès refusé."; $a->strings["People Search"] = "Recherche de personnes"; $a->strings["No matches"] = "Aucune correspondance"; -$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["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["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["Photos"] = "Photos"; $a->strings["Files"] = "Fichiers"; -$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 publications et contacts, et/ou à créer des billets à votre place?"; -$a->strings["Do you really want to delete this suggestion?"] = "Voulez-vous vraiment supprimer cette 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["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe"; -$a->strings["Contact not found."] = "Contact introuvable."; -$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["link"] = "lien"; -$a->strings["No contacts."] = "Aucun contact."; $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"; @@ -1128,7 +412,12 @@ $a->strings["Version"] = "Versio"; $a->strings["Active plugins"] = "Extensions activés"; $a->strings["Can not parse base url. Must have at least ://"] = "Impossible d'analyser l'URL de base. Doit contenir au moins ://"; $a->strings["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["At post arrival"] = "A l'arrivé d'une publication"; +$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["Multi user instance"] = "Instance multi-utilisateurs"; $a->strings["Closed"] = "Fermé"; $a->strings["Requires approval"] = "Demande une apptrobation"; @@ -1136,12 +425,15 @@ $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["Save Settings"] = "Sauvegarder les paramétres"; +$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["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible."; $a->strings["Site name"] = "Nom du site"; +$a->strings["Host name"] = ""; $a->strings["Banner/Logo"] = "Bannière/Logo"; $a->strings["Additional Info"] = "Informations supplémentaires"; $a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Pour les serveurs publics vous pouvez ajouter ici des informations supplémentaires qui seront listées sur dir.friendica.com/siteinfo."; @@ -1152,6 +444,8 @@ $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'utilisation de SSL"; +$a->strings["Force SSL"] = ""; +$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = ""; $a->strings["Old style 'Share'"] = "Anciens style 'Partage'"; $a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Désactive l'élément 'partage' de bbcode pour répéter les articles."; $a->strings["Hide help entry from navigation menu"] = "Cacher l'aide du menu de navigation"; @@ -1205,8 +499,8 @@ $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 (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile."; -$a->strings["OStatus conversation completion interval"] = ""; -$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"] = "Achèvement de l'intervalle de conversation OStatus "; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Combien de fois le poller devra vérifier les nouvelles entrées dans les conversations OStatus? Cela peut utilisé beaucoup de ressources."; $a->strings["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"; @@ -1229,24 +523,24 @@ $a->strings["Suppress Language"] = "Supprimer un langage"; $a->strings["Suppress language information in meta information about a posting."] = "Supprimer les informations de langue dans les métadonnées des publications."; $a->strings["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). To disable the item cache, set the value to -1."] = ""; +$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "Combien de temps les fichiers de cache doivent être maintenu? La valeur par défaut est 86400 secondes (une journée). Pour désactiver le cache de l'item, définissez la valeur à -1."; $a->strings["Maximum numbers of comments per post"] = "Nombre maximum de commentaires par publication"; $a->strings["How much comments should be shown for each post? Default value is 100."] = "Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100."; $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["Disable picture proxy"] = ""; -$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = ""; +$a->strings["Disable picture proxy"] = "Désactiver le proxy image "; +$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante."; $a->strings["New base url"] = "Nouvelle URL de base"; -$a->strings["Enable noscrape"] = ""; -$a->strings["The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping."] = ""; +$a->strings["Disable noscrape"] = "Désactiver le noscrape"; +$a->strings["The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping. Disabling it will cause higher load on your server and the directory server."] = "La fonction de noscrape accélère les répertoires de mémoire en utilisant des données JSON lieu de grattage HTML. En le désactivant il entraîne une charge plus élevée sur votre serveur et le serveur d'annuaire."; $a->strings["Update has been marked successful"] = "Mise-à-jour validée comme 'réussie'"; -$a->strings["Database structure update %s was successfully applied."] = ""; -$a->strings["Executing of database structure update %s failed with error: %s"] = ""; -$a->strings["Executing %s failed with error: %s"] = ""; +$a->strings["Database structure update %s was successfully applied."] = "La structure de base de données pour la mise à jour %s a été appliquée avec succès."; +$a->strings["Executing of database structure update %s failed with error: %s"] = "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s"; +$a->strings["Executing %s failed with error: %s"] = "L'exécution %s a échoué avec l'erreur: %s"; $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["There was no additional update function %s that needed to be called."] = ""; +$a->strings["There was no additional update function %s that needed to be called."] = "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé"; $a->strings["No failed updates."] = "Pas de mises-à-jour échouées."; $a->strings["Check database structure"] = "Vérifier la structure de la base de données"; $a->strings["Failed Updates"] = "Mises-à-jour échouées"; @@ -1255,6 +549,7 @@ $a->strings["Mark success (if update was manually applied)"] = "Marquer comme 'r $a->strings["Attempt to execute this update step automatically"] = "Tenter d'éxecuter cette étape automatiquement"; $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tChère/Cher %1\$s,\n\t\t\t\tL’administrateur de %2\$s vous a ouvert un compte."; $a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = ""; +$a->strings["Registration details for %s"] = "Détails d'inscription pour %s"; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s utilisateur a (dé)bloqué", 1 => "%s utilisateurs ont (dé)bloqué", @@ -1271,6 +566,7 @@ $a->strings["select all"] = "tout sélectionner"; $a->strings["User registrations waiting for confirm"] = "Inscriptions d'utilisateurs en attente de confirmation"; $a->strings["User waiting for permanent deletion"] = "Utilisateur en attente de suppression définitive"; $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"; @@ -1280,6 +576,7 @@ $a->strings["Register date"] = "Date d'inscription"; $a->strings["Last login"] = "Dernière connexion"; $a->strings["Last item"] = "Dernier élément"; $a->strings["Deleted since"] = "Supprimé depuis"; +$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 effacé!\\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["Name of the new user."] = "Nom du nouvel utilisateur."; @@ -1308,14 +605,10 @@ $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["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["Welcome to %s"] = "Bienvenue sur %s"; -$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["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 des publications"; @@ -1338,131 +631,13 @@ $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["- select -"] = "- choisir -"; -$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/greffons/applications installées:"; -$a->strings["No installed plugins/addons/apps"] = "Extensions/greffons/applications non installées:"; -$a->strings["Applications"] = "Applications"; -$a->strings["No installed applications."] = "Pas d'application installée."; -$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"] = "%1\$s a été étiqueté dans %2\$s par %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 de statut pour cet envoi"; -$a->strings["Permissions"] = "Permissions"; -$a->strings["Private Photo"] = "Photo privée"; -$a->strings["Public Photo"] = "Photo publique"; -$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["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"] = "Photo privée"; -$a->strings["Public photo"] = "Photo publique"; -$a->strings["Recent Photos"] = "Photos récentes"; -$a->strings["Contact added"] = "Contact ajouté"; -$a->strings["Move account"] = "Migrer le compte"; -$a->strings["You can import an account from another Friendica server."] = "Vous pouvez importer un compte d'un autre serveur Friendica."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora"; -$a->strings["Account file"] = "Fichier du compte"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = ""; -$a->strings["Total invitation limit exceeded."] = "La limite d'invitation totale est éxédée."; -$a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide."; -$a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site."; -$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["Access denied."] = "Accès refusé."; -$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["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; -$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = ""; -$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["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["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = ""; -$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = ""; -$a->strings["Your password has been changed at %s"] = "Votre mot de passe a été modifié à %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["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): "] = "bb2html (HTML brut)"; -$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["Tag removed"] = "Étiquette supprimée"; -$a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément"; -$a->strings["Select a tag to remove: "] = "Sélectionner une étiquette à supprimer: "; -$a->strings["Remove 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["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["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["Friends of %s"] = "Amis de %s"; +$a->strings["No friends to display."] = "Pas d'amis à afficher."; $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"; @@ -1475,113 +650,53 @@ $a->strings["Finish date/time is not known or not relevant"] = "Date/heure de fi $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["{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é la publication de %s"; -$a->strings["{0} liked %s's post"] = "{0} a aimé la publication de %s"; -$a->strings["{0} disliked %s's post"] = "{0} n'a pas aimé la publication de %s"; -$a->strings["{0} is now friends with %s"] = "{0} est désormais ami(e) avec %s"; -$a->strings["{0} posted"] = "{0} a publié"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} a étiqueté la publication de %s avec #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} vous a mentionné dans une publication"; -$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["No results."] = "Aucun résultat."; -$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["Not available."] = "Indisponible."; -$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 contacts and friends:"] = ""; -$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["Change Profile Photo"] = "Changer la photo 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["Basic information"] = ""; -$a->strings["Profile picture"] = ""; -$a->strings["Preferences"] = ""; -$a->strings["Status information"] = ""; -$a->strings["Additional information"] = ""; -$a->strings["Upload Profile Photo"] = "Téléverser une photo de 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["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["Private Message"] = "Message privé"; +$a->strings["I like this (toggle)"] = "J'aime (bascule)"; +$a->strings["like"] = "aime"; +$a->strings["I don't like this (toggle)"] = "Je n'aime pas (bascule)"; +$a->strings["dislike"] = "n'aime pas"; +$a->strings["Share this"] = "Partager"; +$a->strings["share"] = "partager"; +$a->strings["This is you"] = "C'est vous"; +$a->strings["Comment"] = "Commenter"; +$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["Preview"] = "Aperçu"; +$a->strings["Edit"] = "Éditer"; +$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 une étiquette"; +$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["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["Friendica Communications Server - Setup"] = "Serveur de communications Friendica - Configuration"; $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."; @@ -1643,114 +758,1023 @@ $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["

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["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["Unable to check your home location."] = "Impossible de vérifier votre localisation."; +$a->strings["No recipient."] = "Pas de destinataire."; +$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["Help:"] = "Aide:"; -$a->strings["Contact settings applied."] = "Réglages du contact appliqués."; -$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages."; -$a->strings["Repair Contact Settings"] = "Réglages de réparation des contacts"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "une photo"; -$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact"; -$a->strings["Account Nickname"] = "Pseudo du compte"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@NomEtiquette - 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["Remote Self"] = ""; -$a->strings["Mirror postings from this contact"] = ""; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; -$a->strings["No mirroring"] = ""; -$a->strings["Mirror as forwarded posting"] = ""; -$a->strings["Mirror as my own posting"] = ""; -$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 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, toutes vos publications 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["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["\n\t\tDear $[username],\n\t\t\tYour password has been changed as requested. Please retain this\n\t\tinformation for your records (or change your password immediately to\n\t\tsomething that you will remember).\n\t"] = ""; -$a->strings["Item has been removed."] = "Cet élément a été enlevé."; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit les %3\$s de %2\$s"; +$a->strings["Help"] = "Aide"; +$a->strings["Not Found"] = "Non trouvé"; +$a->strings["Page not found."] = "Page introuvable."; $a->strings["%1\$s welcomes %2\$s"] = "%1\$s accueille %2\$s"; -$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["%1\$s has joined %2\$s"] = "%1\$s a rejoint %2\$s"; -$a->strings["Unable to locate original post."] = "Impossible de localiser la publication originale."; -$a->strings["Empty post discarded."] = "Publication vide rejetée."; -$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["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["Friends of %s"] = "Amis de %s"; -$a->strings["No friends to display."] = "Pas d'amis à afficher."; -$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["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["Welcome to %s"] = "Bienvenue sur %s"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise"; +$a->strings["Or - did you try to upload an empty file?"] = ""; +$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["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["link"] = "lien"; +$a->strings["Not available."] = "Indisponible."; +$a->strings["Community"] = "Communauté"; +$a->strings["No results."] = "Aucun résultat."; +$a->strings["everybody"] = "tout le monde"; +$a->strings["Additional features"] = "Fonctions supplémentaires"; +$a->strings["Display"] = "Afficher"; +$a->strings["Social Networks"] = "Réseaux sociaux"; +$a->strings["Delegations"] = "Délégations"; +$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["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"] = "Fonctionnalités mises à jour"; +$a->strings["Relocate message has been send to your contacts"] = ""; +$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."] = "Mauvais mot de passe."; +$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"] = "Mauvais mot de passe"; +$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"] = "Éteint"; +$a->strings["On"] = "Allumé"; +$a->strings["Additional Features"] = "Fonctions supplémentaires"; +$a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["enabled"] = "activé"; +$a->strings["disabled"] = "désactivé"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "L'accès courriel est désactivé sur ce site."; +$a->strings["Email/Mailbox Setup"] = "Réglages de courriel/boîte à lettre"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte."; +$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:"] = "Envoyer les publications publiques à tous les contacts courriels:"; +$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:"] = "Nombre d'éléments a afficher par page pour un appareil mobile"; +$a->strings["Don't show emoticons"] = "Ne pas afficher les émoticônes (smileys grahiques)"; +$a->strings["Don't show notices"] = "Ne plus afficher les avis"; +$a->strings["Infinite scroll"] = "Défilement infini"; +$a->strings["Automatic updates only at the top of the network page"] = ""; +$a->strings["User Types"] = "Types d'utilisateurs"; +$a->strings["Community Types"] = "Genre de communautés"; +$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["No"] = "Non"; +$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["If enabled, posting public messages to Diaspora and other networks isn't possible."] = ""; +$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 à étiqueter vos publications?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?"; +$a->strings["Permit unknown people to send you private mail?"] = "Autoriser les messages privés d'inconnus?"; +$a->strings["Profile is not published."] = "Ce profil n'est pas publié."; +$a->strings["Your Identity Address is"] = "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 publications n'expireront pas. Les publications 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 publications:"; +$a->strings["Expire personal notes:"] = "Faire expirer les notes personnelles:"; +$a->strings["Expire starred posts:"] = "Faire expirer les publications marqués:"; +$a->strings["Expire photos:"] = "Faire expirer les photos:"; +$a->strings["Only expire posts by others:"] = "Faire expirer seulement les publications 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:"] = "Mot de passe actuel:"; +$a->strings["Your current password to confirm the changes"] = "Votre mot de passe actuel pour confirmer les modifications"; +$a->strings["Password:"] = "Mot de passe:"; +$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:"] = "Emplacement de publication par défaut:"; +$a->strings["Use Browser Location:"] = "Utiliser la localisation géographique du navigateur:"; +$a->strings["Security and Privacy Settings"] = "Réglages de sécurité et vie privée"; +$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 de publication par défaut"; +$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"] = "Message privé par défaut"; +$a->strings["Default Public Post"] = "Message publique par défaut"; +$a->strings["Default Permissions for New Posts"] = "Permissions par défaut pour les nouvelles publications"; +$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é étiquetté dans une publication"; +$a->strings["You are poked/prodded/etc. in a post"] = "Vous avez été sollicité dans une publication"; +$a->strings["Text-only notification emails"] = ""; +$a->strings["Send text only notification emails, without the html part"] = ""; +$a->strings["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/page"; +$a->strings["Change the behaviour of this account for special situations"] = "Modifier le comportement de ce compte dans certaines situations"; +$a->strings["Relocate"] = ""; +$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = ""; +$a->strings["Resend relocate message to contacts"] = ""; +$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["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["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[" - 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["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = ""; +$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée."; +$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."; +$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["Register"] = "S'inscrire"; +$a->strings["Import"] = "Importer"; +$a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica"; +$a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance"; +$a->strings["Search"] = "Recherche"; +$a->strings["Global Directory"] = "Annuaire global"; +$a->strings["Find on this site"] = "Trouver sur ce site"; +$a->strings["Site Directory"] = "Annuaire local"; +$a->strings["Age: "] = "Age: "; +$a->strings["Gender: "] = "Genre: "; +$a->strings["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["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["Common Friends"] = "Amis communs"; +$a->strings["No contacts in common."] = "Pas de contacts en commun."; +$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["%1\$s is currently %2\$s"] = "%1\$s est d'humeur %2\$s"; +$a->strings["Mood"] = "Humeur"; +$a->strings["Set your current mood and tell your friends"] = "Spécifiez votre humeur du moment, et informez vos amis"; +$a->strings["Do you really want to delete this suggestion?"] = "Voulez-vous vraiment supprimer cette suggestion ?"; +$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h."; +$a->strings["Ignore/Hide"] = "Ignorer/cacher"; +$a->strings["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 contacts and friends:"] = "Cacher mes contacts et amis:"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher ma liste d'amis/contacts des visiteurs de ce profil?"; +$a->strings["Edit Profile Details"] = "Éditer les détails du profil"; +$a->strings["Change Profile Photo"] = "Changer la photo du profil"; +$a->strings["View this profile"] = "Voir ce profil"; +$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["Basic information"] = "Information de base"; +$a->strings["Profile picture"] = "Image de profil"; +$a->strings["Preferences"] = "Préférences"; +$a->strings["Status information"] = "Information sur le statut"; +$a->strings["Additional information"] = "Information additionnelle"; +$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["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["Item not found"] = "Élément introuvable"; +$a->strings["Edit post"] = "Éditer la publication"; +$a->strings["upload photo"] = "envoi image"; +$a->strings["Attach file"] = "Joindre fichier"; +$a->strings["attach file"] = "ajout fichier"; +$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"] = "Publication 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 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/greffons/applications installées:"; +$a->strings["No installed plugins/addons/apps"] = "Extensions/greffons/applications non installées:"; +$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 publications et contacts, et/ou à créer des billets à votre place?"; +$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles."; +$a->strings["Visible to:"] = "Visible par:"; +$a->strings["Personal Notes"] = "Notes personnelles"; +$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["Total invitation limit exceeded."] = "La limite d'invitation totale est éxédée."; +$a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide."; +$a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site."; +$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["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"] = "%1\$s a été étiqueté dans %2\$s par %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 de statut pour cet envoi"; +$a->strings["Permissions"] = "Permissions"; +$a->strings["Private Photo"] = "Photo privée"; +$a->strings["Public Photo"] = "Photo publique"; +$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["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"] = "Photo privée"; +$a->strings["Public photo"] = "Photo publique"; +$a->strings["Share"] = "Partager"; +$a->strings["Recent Photos"] = "Photos récentes"; +$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["Move account"] = "Migrer le compte"; +$a->strings["You can import an account from another Friendica server."] = "Vous pouvez importer un compte d'un autre serveur Friendica."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora"; +$a->strings["Account file"] = "Fichier du compte"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\""; +$a->strings["Item not available."] = "Elément non disponible."; +$a->strings["Item was not found."] = "Element introuvable."; +$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."; +$a->strings["Create a New Account"] = "Créer un nouveau compte"; +$a->strings["Logout"] = "Se déconnecter"; +$a->strings["Login"] = "Connexion"; +$a->strings["Nickname or Email address: "] = "Pseudo ou courriel: "; +$a->strings["Password: "] = "Mot de passe: "; +$a->strings["Remember me"] = "Se souvenir de moi"; +$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"] = "Conditions d'utilisation du site internet"; +$a->strings["terms of service"] = "conditions d'utilisation"; +$a->strings["Website Privacy Policy"] = "Politique de confidentialité du site internet"; +$a->strings["privacy policy"] = "politique de confidentialité"; +$a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible."; +$a->strings["Edit profile"] = "Editer le profil"; +$a->strings["Message"] = "Message"; +$a->strings["Profiles"] = "Profils"; +$a->strings["Manage/edit profiles"] = "Gérer/éditer les profils"; +$a->strings["Network:"] = "Réseau"; +$a->strings["g A l F d"] = "g A | F d"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[aujourd'hui]"; +$a->strings["Birthday Reminders"] = "Rappels d'anniversaires"; +$a->strings["Birthdays this week:"] = "Anniversaires cette semaine:"; +$a->strings["[No description]"] = "[Sans description]"; +$a->strings["Event Reminders"] = "Rappels d'événements"; +$a->strings["Events this week:"] = "Evénements cette semaine:"; +$a->strings["Status"] = "Statut"; +$a->strings["Status Messages and Posts"] = "Messages d'état et publications"; +$a->strings["Profile Details"] = "Détails du profil"; +$a->strings["Videos"] = "Vidéos"; +$a->strings["Events and Calendar"] = "Événements et agenda"; +$a->strings["Only You Can See This"] = "Vous seul pouvez voir ça"; +$a->strings["This entry was edited"] = "Cette entrée à été édité"; +$a->strings["ignore thread"] = "ignorer le fil"; +$a->strings["unignore thread"] = "Ne plus ignorer le fil"; +$a->strings["toggle ignore status"] = "Ignorer le statut"; +$a->strings["ignored"] = "ignoré"; +$a->strings["Categories:"] = "Catégories:"; +$a->strings["Filed under:"] = "Rangé sous:"; +$a->strings["via"] = "via"; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = ""; +$a->strings["The error message is\n[pre]%s[/pre]"] = ""; +$a->strings["Errors encountered creating database tables."] = "Des erreurs ont été signalées lors de la création des tables."; +$a->strings["Errors encountered performing database changes."] = ""; +$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["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["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["General Features"] = "Fonctions générales"; +$a->strings["Multiple Profiles"] = "Profils multiples"; +$a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils"; +$a->strings["Post Composition Features"] = "Caractéristiques de composition de publication"; +$a->strings["Richtext Editor"] = "Éditeur de texte enrichi"; +$a->strings["Enable richtext editor"] = "Activer l'éditeur de texte enrichi"; +$a->strings["Post Preview"] = "Aperçu de la publication"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Permet la prévisualisation des publications et commentaires avant de les publier"; +$a->strings["Auto-mention Forums"] = ""; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = ""; +$a->strings["Network Sidebar Widgets"] = "Widgets réseau pour barre latérale"; +$a->strings["Search by Date"] = "Rechercher par Date"; +$a->strings["Ability to select posts by date ranges"] = "Capacité de sélectionner les publications par intervalles de dates"; +$a->strings["Group Filter"] = "Filtre de groupe"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné"; +$a->strings["Network Filter"] = "Filtre de réseau"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné"; +$a->strings["Save search terms for re-use"] = "Sauvegarder la recherche pour une utilisation ultérieure"; +$a->strings["Network Tabs"] = "Onglets Réseau"; +$a->strings["Network Personal Tab"] = "Onglet Réseau Personnel"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit"; +$a->strings["Network New Tab"] = "Nouvel onglet réseaux"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)"; +$a->strings["Network Shared Links Tab"] = "Onglet réseau partagé"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens"; +$a->strings["Post/Comment Tools"] = "outils de publication/commentaire"; +$a->strings["Multiple Deletion"] = "Suppression multiple"; +$a->strings["Select and delete multiple posts/comments at once"] = "Sélectionner et supprimer plusieurs publications/commentaires à la fois"; +$a->strings["Edit Sent Posts"] = "Éditer les publications envoyées"; +$a->strings["Edit and correct posts and comments after sending"] = "Éditer et corriger les publications et commentaires après l'envoi"; +$a->strings["Tagging"] = "Étiquettage"; +$a->strings["Ability to tag existing posts"] = "Possibilité d'étiqueter les publications existantes"; +$a->strings["Post Categories"] = "Catégories des publications"; +$a->strings["Add categories to your posts"] = "Ajouter des catégories à vos publications"; +$a->strings["Ability to file posts under folders"] = "Possibilité d'afficher les publications sous les répertoires"; +$a->strings["Dislike Posts"] = "Publications non aimées"; +$a->strings["Ability to dislike posts/comments"] = "Possibilité de ne pas aimer les publications/commentaires"; +$a->strings["Star Posts"] = "Publications spéciales"; +$a->strings["Ability to mark special posts with a star indicator"] = "Possibilité de marquer les publications spéciales d'une étoile"; +$a->strings["Mute Post Notifications"] = ""; +$a->strings["Ability to mute notifications for a thread"] = ""; +$a->strings["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 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["Edit group"] = "Editer groupe"; +$a->strings["Create a new group"] = "Créer un nouveau groupe"; +$a->strings["Contacts not in any group"] = "Contacts n'appartenant à aucun groupe"; +$a->strings["Miscellaneous"] = "Divers"; +$a->strings["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["Visible to everybody"] = "Visible par tout le monde"; +$a->strings["show"] = "montrer"; +$a->strings["don't show"] = "cacher"; +$a->strings["[no subject]"] = "[pas de sujet]"; +$a->strings["stopped following"] = "retiré de la liste de suivi"; +$a->strings["Poke"] = "Sollicitations (pokes)"; +$a->strings["View Status"] = "Voir les statuts"; +$a->strings["View Profile"] = "Voir le profil"; +$a->strings["View Photos"] = "Voir les photos"; +$a->strings["Network Posts"] = "Publications du réseau"; +$a->strings["Edit Contact"] = "Éditer le contact"; +$a->strings["Drop Contact"] = "Supprimer le contact"; +$a->strings["Send PM"] = "Message privé"; +$a->strings["Welcome "] = "Bienvenue "; +$a->strings["Please upload a profile photo."] = "Merci d'illustrer votre profil d'une image."; +$a->strings["Welcome back "] = "Bienvenue à nouveau, "; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé."; +$a->strings["event"] = "évènement"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s a sollicité %2\$s"; +$a->strings["poked"] = "a titillé"; +$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["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:"] = "Terme d'étiquette:"; +$a->strings["Where are you right now?"] = "Où êtes-vous présentemment?"; +$a->strings["Delete item(s)?"] = "Supprimer les élément(s) ?"; +$a->strings["Post to Email"] = "Publier aux courriels"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["permissions"] = "permissions"; +$a->strings["Post to Groups"] = "Publier aux groupes"; +$a->strings["Post to Contacts"] = "Publier aux contacts"; +$a->strings["Private post"] = "Message privé"; +$a->strings["view full size"] = "voir en pleine taille"; +$a->strings["newer"] = "Plus récent"; +$a->strings["older"] = "Plus ancien"; +$a->strings["prev"] = "précédent"; +$a->strings["first"] = "premier"; +$a->strings["last"] = "dernier"; +$a->strings["next"] = "suivant"; +$a->strings["No contacts"] = "Aucun contact"; +$a->strings["%d Contact"] = array( + 0 => "%d contact", + 1 => "%d contacts", +); +$a->strings["poke"] = "titiller"; +$a->strings["ping"] = "attirer l'attention"; +$a->strings["pinged"] = "a attiré l'attention de"; +$a->strings["prod"] = "aiguillonner"; +$a->strings["prodded"] = "a aiguillonné"; +$a->strings["slap"] = "gifler"; +$a->strings["slapped"] = "a giflé"; +$a->strings["finger"] = "tripoter"; +$a->strings["fingered"] = "a tripoté"; +$a->strings["rebuff"] = "rabrouer"; +$a->strings["rebuffed"] = "a rabroué"; +$a->strings["happy"] = "heureuse"; +$a->strings["sad"] = "triste"; +$a->strings["mellow"] = "suave"; +$a->strings["tired"] = "fatiguée"; +$a->strings["perky"] = "guillerette"; +$a->strings["angry"] = "colérique"; +$a->strings["stupified"] = "stupéfaite"; +$a->strings["puzzled"] = "perplexe"; +$a->strings["interested"] = "intéressée"; +$a->strings["bitter"] = "amère"; +$a->strings["cheerful"] = "entraînante"; +$a->strings["alive"] = "vivante"; +$a->strings["annoyed"] = "ennuyée"; +$a->strings["anxious"] = "anxieuse"; +$a->strings["cranky"] = "excentrique"; +$a->strings["disturbed"] = "dérangée"; +$a->strings["frustrated"] = "frustrée"; +$a->strings["motivated"] = "motivée"; +$a->strings["relaxed"] = "détendue"; +$a->strings["surprised"] = "surprise"; +$a->strings["Monday"] = "Lundi"; +$a->strings["Tuesday"] = "Mardi"; +$a->strings["Wednesday"] = "Mercredi"; +$a->strings["Thursday"] = "Jeudi"; +$a->strings["Friday"] = "Vendredi"; +$a->strings["Saturday"] = "Samedi"; +$a->strings["Sunday"] = "Dimanche"; +$a->strings["January"] = "Janvier"; +$a->strings["February"] = "Février"; +$a->strings["March"] = "Mars"; +$a->strings["April"] = "Avril"; +$a->strings["May"] = "Mai"; +$a->strings["June"] = "Juin"; +$a->strings["July"] = "Juillet"; +$a->strings["August"] = "Août"; +$a->strings["September"] = "Septembre"; +$a->strings["October"] = "Octobre"; +$a->strings["November"] = "Novembre"; +$a->strings["December"] = "Décembre"; +$a->strings["bytes"] = "octets"; +$a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer"; +$a->strings["default"] = "défaut"; +$a->strings["Select an alternate language"] = "Choisir une langue alternative"; +$a->strings["activity"] = "activité"; +$a->strings["post"] = "publication"; +$a->strings["Item filed"] = "Élément classé"; +$a->strings["Image/photo"] = "Image/photo"; +$a->strings["%2\$s %3\$s"] = ""; +$a->strings["%s wrote the following post"] = ""; +$a->strings["$1 wrote:"] = "$1 a écrit:"; +$a->strings["Encrypted content"] = "Contenu chiffré"; +$a->strings["(no subject)"] = "(sans titre)"; +$a->strings["noreply"] = "noreply"; +$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["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["Weekly"] = "Chaque semaine"; +$a->strings["Monthly"] = "Chaque mois"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Connecteur Diaspora"; +$a->strings["Statusnet"] = "Statusnet"; +$a->strings["App.net"] = "App.net"; +$a->strings[" on Last.fm"] = "sur Last.fm"; +$a->strings["Starts:"] = "Débute:"; +$a->strings["Finishes:"] = "Finit:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Anniversaire:"; +$a->strings["Age:"] = "Age:"; +$a->strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s"; +$a->strings["Tags:"] = "Étiquette:"; +$a->strings["Religion:"] = "Religion:"; +$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["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["End this session"] = "Mettre fin à cette session"; +$a->strings["Your posts and conversations"] = "Vos publications et conversations"; +$a->strings["Your profile page"] = "Votre page de profil"; +$a->strings["Your photos"] = "Vos photos"; +$a->strings["Your videos"] = "Vos vidéos"; +$a->strings["Your events"] = "Vos événements"; +$a->strings["Personal notes"] = "Notes personnelles"; +$a->strings["Your personal notes"] = "Vos notes personnelles"; +$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["Information"] = "Information"; +$a->strings["Information about this friendica instance"] = "Information au sujet de cette instance de friendica"; +$a->strings["Conversations from your friends"] = "Conversations de vos amis"; +$a->strings["Network Reset"] = "Réinitialiser le réseau"; +$a->strings["Load Network page with no filters"] = "Chargement des pages du réseau sans filtre"; +$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["Account settings"] = "Compte"; +$a->strings["Manage/Edit Profiles"] = "Gérer/Éditer les 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["Navigation"] = "Navigation"; +$a->strings["Site map"] = "Carte du site"; +$a->strings["User not found."] = "Utilisateur non trouvé"; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["There is no status with this id."] = "Il n'y a pas de statut avec cet id."; +$a->strings["There is no conversation with this id."] = "Il n'y a pas de conversation avec cet id."; +$a->strings["Invalid request."] = ""; +$a->strings["Invalid item."] = ""; +$a->strings["Invalid action. "] = ""; +$a->strings["DB error"] = ""; +$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["Friends"] = "Amis"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = ""; +$a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora"; +$a->strings["Attachments:"] = "Pièces jointes : "; +$a->strings["Do you really want to delete this item?"] = "Voulez-vous vraiment supprimer cet élément ?"; +$a->strings["Archives"] = "Archives"; +$a->strings["Male"] = "Masculin"; +$a->strings["Female"] = "Féminin"; +$a->strings["Currently Male"] = "Actuellement masculin"; +$a->strings["Currently Female"] = "Actuellement féminin"; +$a->strings["Mostly Male"] = "Principalement masculin"; +$a->strings["Mostly Female"] = "Principalement féminin"; +$a->strings["Transgender"] = "Transgenre"; +$a->strings["Intersex"] = "Inter-sexe"; +$a->strings["Transsexual"] = "Transsexuel"; +$a->strings["Hermaphrodite"] = "Hermaphrodite"; +$a->strings["Neuter"] = "Neutre"; +$a->strings["Non-specific"] = "Non-spécifique"; +$a->strings["Other"] = "Autre"; +$a->strings["Undecided"] = "Indécis"; +$a->strings["Males"] = "Hommes"; +$a->strings["Females"] = "Femmes"; +$a->strings["Gay"] = "Gay"; +$a->strings["Lesbian"] = "Lesbienne"; +$a->strings["No Preference"] = "Sans préférence"; +$a->strings["Bisexual"] = "Bisexuel"; +$a->strings["Autosexual"] = "Auto-sexuel"; +$a->strings["Abstinent"] = "Abstinent"; +$a->strings["Virgin"] = "Vierge"; +$a->strings["Deviant"] = "Déviant"; +$a->strings["Fetish"] = "Fétichiste"; +$a->strings["Oodles"] = "Oodles"; +$a->strings["Nonsexual"] = "Non-sexuel"; +$a->strings["Single"] = "Célibataire"; +$a->strings["Lonely"] = "Esseulé"; +$a->strings["Available"] = "Disponible"; +$a->strings["Unavailable"] = "Indisponible"; +$a->strings["Has crush"] = "Attiré par quelqu'un"; +$a->strings["Infatuated"] = "Entiché"; +$a->strings["Dating"] = "Dans une relation"; +$a->strings["Unfaithful"] = "Infidèle"; +$a->strings["Sex Addict"] = "Accro au sexe"; +$a->strings["Friends/Benefits"] = "Amis par intérêt"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Fiancé"; +$a->strings["Married"] = "Marié"; +$a->strings["Imaginarily married"] = "Se croit marié"; +$a->strings["Partners"] = "Partenaire"; +$a->strings["Cohabiting"] = "En cohabitation"; +$a->strings["Common law"] = "Marié \"de fait\"/\"sui juris\" (concubin)"; +$a->strings["Happy"] = "Heureux"; +$a->strings["Not looking"] = "Pas intéressé"; +$a->strings["Swinger"] = "Échangiste"; +$a->strings["Betrayed"] = "Trahi(e)"; +$a->strings["Separated"] = "Séparé"; +$a->strings["Unstable"] = "Instable"; +$a->strings["Divorced"] = "Divorcé"; +$a->strings["Imaginarily divorced"] = "Se croit divorcé"; +$a->strings["Widowed"] = "Veuf/Veuve"; +$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["Friendica Notification"] = "Notification Friendica"; +$a->strings["Thank You,"] = "Merci, "; +$a->strings["%s Administrator"] = "L'administrateur de %s"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notification] Nouveau courriel reçu sur %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s vous a envoyé un nouveau message privé sur %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s."; +$a->strings["a private message"] = "un message privé"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir vos messages privés et/ou y répondre."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]un %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]le %4\$s de %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s commented on [url=%2\$s]your %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notification] Commentaire de %2\$s sur la conversation #%1\$d"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s a commenté un élément que vous suivez."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir la conversation et/ou y répondre."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notification] %s a posté sur votre mur de profil"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s a publié sur votre mur à %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s a posté sur [url=%2\$s]votre mur[/url]"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notification] %s vous a étiqueté"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s vous a étiqueté sur %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]vous a étiqueté[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notification] %s partage une nouvelle publication"; +$a->strings["%1\$s shared a new post at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]partage une publication[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s vous a sollicité"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s vous a sollicité via %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s vous a [url=%2\$s]sollicité[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notification] %s a étiqueté votre publication"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s a étiqueté votre publication sur %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s a étiqueté [url=%2\$s]votre publication[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notification] Introduction reçue"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Vous avez reçu une introduction de '%1\$s' sur %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Vous avez reçu [url=%1\$s]une introduction[/url] de %2\$s."; +$a->strings["You may visit their profile at %s"] = "Vous pouvez visiter son profil sur %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Merci de visiter %s pour approuver ou rejeter l'introduction."; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = ""; +$a->strings["%1\$s is sharing with you at %2\$s"] = ""; +$a->strings["[Friendica:Notify] You have a new follower"] = ""; +$a->strings["You have a new follower at %2\$s : %1\$s"] = ""; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notification] Nouvelle suggestion d'amitié"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Vous avez reçu une suggestion de '%1\$s' sur %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Vous avez reçu [url=%1\$s]une suggestion[/url] de %3\$s pour %2\$s."; +$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["[Friendica:Notify] Connection accepted"] = ""; +$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = ""; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = ""; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = ""; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; +$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = ""; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = ""; +$a->strings["[Friendica System:Notify] registration request"] = ""; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = ""; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = ""; +$a->strings["Please visit %s to approve or reject the request."] = ""; +$a->strings["Embedded content"] = "Contenu incorporé"; +$a->strings["Embedding disabled"] = "Incorporation désactivée"; +$a->strings["Error decoding account file"] = "Une erreur a été détecté en décodant un fichier utilisateur"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?"; +$a->strings["Error! Cannot check nickname"] = "Erreur! Pseudo invalide"; +$a->strings["User '%s' already exists on this server!"] = "L'utilisateur '%s' existe déjà sur ce serveur!"; +$a->strings["User creation error"] = "Erreur de création d'utilisateur"; +$a->strings["User profile creation error"] = "Erreur de création du profil utilisateur"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contacts non importés", + 1 => "%d contacts non importés", +); +$a->strings["Done. You can now login with your username and password"] = "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe"; +$a->strings["toggle mobile"] = "activ. mobile"; +$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 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 publications"; +$a->strings["Textareas font size"] = "Taille de police des zones de texte"; +$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["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 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["Your personal photos"] = "Vos photos personnelles"; +$a->strings["Local Directory"] = "Annuaire local"; +$a->strings["Set zoomfactor for Earth Layers"] = "Régler le niveau de zoom pour la géolocalisation"; +$a->strings["Show/hide boxes at right-hand column:"] = "Montrer/cacher les boîtes dans la colonne de droite :"; +$a->strings["Set style"] = "Définir le style"; +$a->strings["greenzero"] = ""; +$a->strings["purplezero"] = ""; +$a->strings["easterbunny"] = ""; +$a->strings["darkzero"] = ""; +$a->strings["comix"] = ""; +$a->strings["slackr"] = ""; +$a->strings["Variations"] = ""; diff --git a/view/it/messages.po b/view/it/messages.po index 548825dad5..41def27aaa 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -3,8 +3,9 @@ # This file is distributed under the same license as the Friendica package. # # Translators: +# Elena , 2014 # fabrixxm , 2011 -# fabrixxm , 2013-2014 +# fabrixxm , 2013-2015 # fabrixxm , 2011-2012 # Francesco Apruzzese , 2012-2013 # ufic , 2012 @@ -13,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-07 14:32+0200\n" -"PO-Revision-Date: 2014-09-10 09:32+0000\n" +"POT-Creation-Date: 2015-02-09 08:57+0100\n" +"PO-Revision-Date: 2015-02-09 10:48+0000\n" "Last-Translator: fabrixxm \n" "Language-Team: Italian (http://www.transifex.com/projects/p/friendica/language/it/)\n" "MIME-Version: 1.0\n" @@ -23,3362 +24,3614 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/vier/config.php:52 ../../view/theme/diabook/config.php:148 -#: ../../view/theme/diabook/theme.php:633 -#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 -#: ../../object/Item.php:678 ../../mod/contacts.php:470 -#: ../../mod/manage.php:110 ../../mod/fsuggest.php:107 -#: ../../mod/photos.php:1084 ../../mod/photos.php:1205 -#: ../../mod/photos.php:1512 ../../mod/photos.php:1563 -#: ../../mod/photos.php:1607 ../../mod/photos.php:1695 -#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137 -#: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/profiles.php:645 ../../mod/install.php:248 -#: ../../mod/install.php:286 ../../mod/crepair.php:179 -#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 -msgid "Submit" -msgstr "Invia" +#: ../../mod/contacts.php:108 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "%d contatto modificato" +msgstr[1] "%d contatti modificati" -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/vier/config.php:54 ../../view/theme/diabook/config.php:150 -#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 -msgid "Theme settings" -msgstr "Impostazioni tema" +#: ../../mod/contacts.php:139 ../../mod/contacts.php:272 +msgid "Could not access contact record." +msgstr "Non è possibile accedere al contatto." -#: ../../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)" +#: ../../mod/contacts.php:153 +msgid "Could not locate selected profile." +msgstr "Non riesco a trovare il profilo selezionato." -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/diabook/config.php:151 -#: ../../view/theme/dispy/config.php:73 -msgid "Set font-size for posts and comments" -msgstr "Dimensione del carattere di messaggi e commenti" +#: ../../mod/contacts.php:186 +msgid "Contact updated." +msgstr "Contatto aggiornato." -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Imposta la larghezza del tema" +#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576 +msgid "Failed to update contact record." +msgstr "Errore nell'aggiornamento del contatto." -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Schema colori" +#: ../../mod/contacts.php:254 ../../mod/manage.php:96 +#: ../../mod/display.php:499 ../../mod/profile_photo.php:19 +#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180 +#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9 +#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19 +#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78 +#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:24 +#: ../../mod/notifications.php:66 ../../mod/message.php:38 +#: ../../mod/message.php:174 ../../mod/crepair.php:119 +#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9 +#: ../../mod/events.php:140 ../../mod/install.php:151 +#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 +#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 +#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102 +#: ../../mod/settings.php:596 ../../mod/settings.php:601 +#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114 +#: ../../mod/suggest.php:58 ../../mod/profiles.php:165 +#: ../../mod/profiles.php:618 ../../mod/editpost.php:10 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135 +#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134 +#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23 +#: ../../mod/attach.php:33 ../../include/items.php:4712 ../../index.php:369 +msgid "Permission denied." +msgstr "Permesso negato." -#: ../../view/theme/vier/config.php:55 -msgid "Set style" -msgstr "Imposta stile" +#: ../../mod/contacts.php:287 +msgid "Contact has been blocked" +msgstr "Il contatto è stato bloccato" -#: ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:328 -msgid "don't show" -msgstr "non mostrare" +#: ../../mod/contacts.php:287 +msgid "Contact has been unblocked" +msgstr "Il contatto è stato sbloccato" -#: ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:327 -msgid "show" -msgstr "mostra" +#: ../../mod/contacts.php:298 +msgid "Contact has been ignored" +msgstr "Il contatto è ignorato" -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Altezza della linea di testo di messaggi e commenti" +#: ../../mod/contacts.php:298 +msgid "Contact has been unignored" +msgstr "Il contatto non è più ignorato" -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Imposta la dimensione della colonna centrale" +#: ../../mod/contacts.php:310 +msgid "Contact has been archived" +msgstr "Il contatto è stato archiviato" -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Imposta lo schema dei colori" +#: ../../mod/contacts.php:310 +msgid "Contact has been unarchived" +msgstr "Il contatto è stato dearchiviato" -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Livello di zoom per Earth Layer" +#: ../../mod/contacts.php:335 ../../mod/contacts.php:711 +msgid "Do you really want to delete this contact?" +msgstr "Vuoi veramente cancellare questo contatto?" -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "Longitudine (X) per Earth Layers" +#: ../../mod/contacts.php:337 ../../mod/message.php:209 +#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 +#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 +#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 +#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 +#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 +#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 +#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 +#: ../../mod/register.php:233 ../../mod/suggest.php:29 +#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 ../../mod/api.php:105 +#: ../../include/items.php:4557 +msgid "Yes" +msgstr "Si" -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Latitudine (Y) per Earth Layers" +#: ../../mod/contacts.php:340 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 +#: ../../mod/message.php:212 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615 +#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844 +#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 +#: ../../mod/photos.php:203 ../../mod/photos.php:292 +#: ../../include/conversation.php:1129 ../../include/items.php:4560 +msgid "Cancel" +msgstr "Annulla" -#: ../../view/theme/diabook/config.php:158 -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "Pagine Comunitarie" +#: ../../mod/contacts.php:352 +msgid "Contact has been removed." +msgstr "Il contatto è stato rimosso." -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Earth Layers" +#: ../../mod/contacts.php:390 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Sei amico reciproco con %s" -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Profili Comunità" +#: ../../mod/contacts.php:394 +#, php-format +msgid "You are sharing with %s" +msgstr "Stai condividendo con %s" -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "Serve aiuto? Sei nuovo?" +#: ../../mod/contacts.php:399 +#, php-format +msgid "%s is sharing with you" +msgstr "%s sta condividendo con te" -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Servizi di conessione" +#: ../../mod/contacts.php:416 +msgid "Private communications are not available for this contact." +msgstr "Le comunicazioni private non sono disponibili per questo contatto." -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Trova Amici" +#: ../../mod/contacts.php:419 ../../mod/admin.php:569 +msgid "Never" +msgstr "Mai" -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Ultimi utenti" +#: ../../mod/contacts.php:423 +msgid "(Update was successful)" +msgstr "(L'aggiornamento è stato completato)" -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Ultime foto" +#: ../../mod/contacts.php:423 +msgid "(Update was not successful)" +msgstr "(L'aggiornamento non è stato completato)" -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Ultimi \"mi piace\"" +#: ../../mod/contacts.php:425 +msgid "Suggest friends" +msgstr "Suggerisci amici" -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105 -#: ../../include/nav.php:146 ../../mod/notifications.php:93 -msgid "Home" -msgstr "Home" +#: ../../mod/contacts.php:429 +#, php-format +msgid "Network type: %s" +msgstr "Tipo di rete: %s" -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:146 -msgid "Your posts and conversations" -msgstr "I tuoi messaggi e le tue conversazioni" +#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contatto in comune" +msgstr[1] "%d contatti in comune" -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2070 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 -#: ../../include/nav.php:77 ../../mod/profperm.php:103 -#: ../../mod/newmember.php:32 -msgid "Profile" -msgstr "Profilo" +#: ../../mod/contacts.php:437 +msgid "View all contacts" +msgstr "Vedi tutti i contatti" -#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 -msgid "Your profile page" -msgstr "Pagina del tuo profilo" +#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 +#: ../../mod/contacts.php:714 ../../mod/admin.php:1009 +msgid "Unblock" +msgstr "Sblocca" -#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:175 -#: ../../mod/contacts.php:694 -msgid "Contacts" -msgstr "Contatti" +#: ../../mod/contacts.php:442 ../../mod/contacts.php:501 +#: ../../mod/contacts.php:714 ../../mod/admin.php:1008 +msgid "Block" +msgstr "Blocca" -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "I tuoi contatti" +#: ../../mod/contacts.php:445 +msgid "Toggle Blocked status" +msgstr "Inverti stato \"Blocca\"" -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2077 -#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foto" +#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 +#: ../../mod/contacts.php:715 +msgid "Unignore" +msgstr "Non ignorare" -#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 -msgid "Your photos" -msgstr "Le tue foto" +#: ../../mod/contacts.php:448 ../../mod/contacts.php:502 +#: ../../mod/contacts.php:715 ../../mod/notifications.php:51 +#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 +msgid "Ignore" +msgstr "Ignora" -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2094 -#: ../../include/nav.php:80 ../../mod/events.php:370 -msgid "Events" -msgstr "Eventi" +#: ../../mod/contacts.php:451 +msgid "Toggle Ignored status" +msgstr "Inverti stato \"Ignora\"" -#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80 -msgid "Your events" -msgstr "I tuoi eventi" +#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 +msgid "Unarchive" +msgstr "Dearchivia" -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81 -msgid "Personal notes" -msgstr "Note personali" +#: ../../mod/contacts.php:455 ../../mod/contacts.php:716 +msgid "Archive" +msgstr "Archivia" -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Le tue foto personali" +#: ../../mod/contacts.php:458 +msgid "Toggle Archive status" +msgstr "Inverti stato \"Archiviato\"" -#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129 -#: ../../mod/community.php:32 -msgid "Community" -msgstr "Comunità" +#: ../../mod/contacts.php:461 +msgid "Repair" +msgstr "Ripara" -#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1964 -msgid "event" -msgstr "l'evento" +#: ../../mod/contacts.php:464 +msgid "Advanced Contact Settings" +msgstr "Impostazioni avanzate Contatto" -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1919 -#: ../../include/conversation.php:121 ../../include/conversation.php:130 -#: ../../include/conversation.php:249 ../../include/conversation.php:258 -#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 -#: ../../mod/tagger.php:62 -msgid "status" -msgstr "stato" +#: ../../mod/contacts.php:470 +msgid "Communications lost with this contact!" +msgstr "Comunicazione con questo contatto persa!" -#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:1919 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1966 ../../mod/like.php:149 -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 -msgid "photo" -msgstr "foto" +#: ../../mod/contacts.php:473 +msgid "Contact Editor" +msgstr "Editor dei Contatti" -#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:1935 -#: ../../include/conversation.php:137 ../../mod/like.php:166 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" +#: ../../mod/contacts.php:475 ../../mod/manage.php:110 +#: ../../mod/fsuggest.php:107 ../../mod/message.php:335 +#: ../../mod/message.php:564 ../../mod/crepair.php:186 +#: ../../mod/events.php:478 ../../mod/content.php:710 +#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137 +#: ../../mod/profiles.php:686 ../../mod/localtime.php:45 +#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084 +#: ../../mod/photos.php:1203 ../../mod/photos.php:1514 +#: ../../mod/photos.php:1565 ../../mod/photos.php:1609 +#: ../../mod/photos.php:1697 ../../object/Item.php:678 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 +#: ../../view/theme/diabook/config.php:148 +#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53 +#: ../../view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Invia" -#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 -#: ../../mod/photos.php:155 ../../mod/photos.php:1064 -#: ../../mod/photos.php:1189 ../../mod/photos.php:1212 -#: ../../mod/photos.php:1758 ../../mod/photos.php:1770 -msgid "Contact Photos" -msgstr "Foto dei contatti" +#: ../../mod/contacts.php:476 +msgid "Profile Visibility" +msgstr "Visibilità del profilo" -#: ../../view/theme/diabook/theme.php:500 ../../include/user.php:335 -#: ../../include/user.php:342 ../../include/user.php:349 -#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1189 -#: ../../mod/photos.php:1212 ../../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 -msgid "Profile Photos" -msgstr "Foto del profilo" +#: ../../mod/contacts.php:477 +#, 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." -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Elenco Locale" +#: ../../mod/contacts.php:478 +msgid "Contact Information / Notes" +msgstr "Informazioni / Note sul contatto" -#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51 -msgid "Global Directory" -msgstr "Elenco globale" +#: ../../mod/contacts.php:479 +msgid "Edit contact notes" +msgstr "Modifica note contatto" -#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "Interessi simili" - -#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35 -#: ../../mod/suggest.php:66 -msgid "Friend Suggestions" -msgstr "Contatti suggeriti" +#: ../../mod/contacts.php:484 ../../mod/contacts.php:679 +#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" -#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "Invita amici" +#: ../../mod/contacts.php:485 +msgid "Block/Unblock contact" +msgstr "Blocca/Sblocca contatto" -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:170 -#: ../../mod/settings.php:85 ../../mod/admin.php:1065 ../../mod/admin.php:1286 -#: ../../mod/newmember.php:22 -msgid "Settings" -msgstr "Impostazioni" +#: ../../mod/contacts.php:486 +msgid "Ignore contact" +msgstr "Ignora il contatto" -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Livello di zoom per Earth Layers" +#: ../../mod/contacts.php:487 +msgid "Repair URL settings" +msgstr "Impostazioni riparazione URL" -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Mostra/Nascondi riquadri nella colonna destra" +#: ../../mod/contacts.php:488 +msgid "View conversations" +msgstr "Vedi conversazioni" -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Allineamento" +#: ../../mod/contacts.php:490 +msgid "Delete contact" +msgstr "Rimuovi contatto" -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Sinistra" +#: ../../mod/contacts.php:494 +msgid "Last update:" +msgstr "Ultimo aggiornamento:" -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Centrato" +#: ../../mod/contacts.php:496 +msgid "Update public posts" +msgstr "Aggiorna messaggi pubblici" -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Dimensione caratteri post" +#: ../../mod/contacts.php:498 ../../mod/admin.php:1503 +msgid "Update now" +msgstr "Aggiorna adesso" -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Dimensione caratteri nelle aree di testo" +#: ../../mod/contacts.php:505 +msgid "Currently blocked" +msgstr "Bloccato" -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Imposta schema colori" +#: ../../mod/contacts.php:506 +msgid "Currently ignored" +msgstr "Ignorato" -#: ../../index.php:203 ../../mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "Devi aver effettuato il login per usare gli addons." +#: ../../mod/contacts.php:507 +msgid "Currently archived" +msgstr "Al momento archiviato" -#: ../../index.php:247 ../../mod/help.php:90 -msgid "Not Found" -msgstr "Non trovato" +#: ../../mod/contacts.php:508 ../../mod/notifications.php:157 +#: ../../mod/notifications.php:204 +msgid "Hide this contact from others" +msgstr "Nascondi questo contatto agli altri" -#: ../../index.php:250 ../../mod/help.php:93 -msgid "Page not found." -msgstr "Pagina non trovata." +#: ../../mod/contacts.php:508 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Risposte ai tuoi post pubblici possono essere comunque visibili" -#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19 -msgid "Permission denied" -msgstr "Permesso negato" +#: ../../mod/contacts.php:509 +msgid "Notification for new posts" +msgstr "Notifica per i nuovi messaggi" -#: ../../index.php:360 ../../include/items.php:4550 ../../mod/attach.php:33 -#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 -#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 -#: ../../mod/group.php:19 ../../mod/delegate.php:6 -#: ../../mod/notifications.php:66 ../../mod/settings.php:102 -#: ../../mod/settings.php:593 ../../mod/settings.php:598 -#: ../../mod/contacts.php:249 ../../mod/wall_attach.php:55 -#: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10 -#: ../../mod/regmod.php:109 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/suggest.php:56 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78 -#: ../../mod/viewcontacts.php:22 ../../mod/wall_upload.php:66 -#: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134 -#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23 -#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140 -#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174 -#: ../../mod/profiles.php:148 ../../mod/profiles.php:577 -#: ../../mod/install.php:151 ../../mod/crepair.php:117 ../../mod/poke.php:135 -#: ../../mod/display.php:455 ../../mod/dfrn_confirm.php:55 -#: ../../mod/item.php:148 ../../mod/item.php:164 -#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 -#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 -#: ../../mod/allfriends.php:9 -msgid "Permission denied." -msgstr "Permesso negato." +#: ../../mod/contacts.php:509 +msgid "Send a notification of every new post of this contact" +msgstr "Invia una notifica per ogni nuovo messaggio di questo contatto" -#: ../../index.php:419 -msgid "toggle mobile" -msgstr "commuta tema mobile" +#: ../../mod/contacts.php:510 +msgid "Fetch further information for feeds" +msgstr "Recupera maggiori infomazioni per i feed" -#: ../../boot.php:719 -msgid "Delete this item?" -msgstr "Cancellare questo elemento?" +#: ../../mod/contacts.php:511 +msgid "Disabled" +msgstr "" -#: ../../boot.php:720 ../../object/Item.php:361 ../../object/Item.php:677 -#: ../../mod/photos.php:1562 ../../mod/photos.php:1606 -#: ../../mod/photos.php:1694 ../../mod/content.php:709 -msgid "Comment" -msgstr "Commento" +#: ../../mod/contacts.php:511 +msgid "Fetch information" +msgstr "" -#: ../../boot.php:721 ../../include/contact_widgets.php:205 -#: ../../object/Item.php:390 ../../mod/content.php:606 -msgid "show more" -msgstr "mostra di più" +#: ../../mod/contacts.php:511 +msgid "Fetch information and keywords" +msgstr "" -#: ../../boot.php:722 -msgid "show fewer" -msgstr "mostra di meno" +#: ../../mod/contacts.php:513 +msgid "Blacklisted keywords" +msgstr "" -#: ../../boot.php:1042 ../../boot.php:1073 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "aggiornamento %s fallito. Guarda i log di errore." +#: ../../mod/contacts.php:513 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" -#: ../../boot.php:1194 -msgid "Create a New Account" -msgstr "Crea un nuovo account" +#: ../../mod/contacts.php:564 +msgid "Suggestions" +msgstr "Suggerimenti" -#: ../../boot.php:1195 ../../include/nav.php:109 ../../mod/register.php:266 -msgid "Register" -msgstr "Registrati" +#: ../../mod/contacts.php:567 +msgid "Suggest potential friends" +msgstr "Suggerisci potenziali amici" -#: ../../boot.php:1219 ../../include/nav.php:73 -msgid "Logout" -msgstr "Esci" +#: ../../mod/contacts.php:570 ../../mod/group.php:194 +msgid "All Contacts" +msgstr "Tutti i contatti" -#: ../../boot.php:1220 ../../include/nav.php:92 -msgid "Login" -msgstr "Accedi" +#: ../../mod/contacts.php:573 +msgid "Show all contacts" +msgstr "Mostra tutti i contatti" -#: ../../boot.php:1222 -msgid "Nickname or Email address: " -msgstr "Nome utente o indirizzo email: " +#: ../../mod/contacts.php:576 +msgid "Unblocked" +msgstr "Sbloccato" -#: ../../boot.php:1223 -msgid "Password: " -msgstr "Password: " +#: ../../mod/contacts.php:579 +msgid "Only show unblocked contacts" +msgstr "Mostra solo contatti non bloccati" -#: ../../boot.php:1224 -msgid "Remember me" -msgstr "Ricordati di me" +#: ../../mod/contacts.php:583 +msgid "Blocked" +msgstr "Bloccato" -#: ../../boot.php:1227 -msgid "Or login using OpenID: " -msgstr "O entra con OpenID:" +#: ../../mod/contacts.php:586 +msgid "Only show blocked contacts" +msgstr "Mostra solo contatti bloccati" -#: ../../boot.php:1233 -msgid "Forgot your password?" -msgstr "Hai dimenticato la password?" +#: ../../mod/contacts.php:590 +msgid "Ignored" +msgstr "Ignorato" -#: ../../boot.php:1234 ../../mod/lostpass.php:109 -msgid "Password Reset" -msgstr "Reimpostazione password" +#: ../../mod/contacts.php:593 +msgid "Only show ignored contacts" +msgstr "Mostra solo contatti ignorati" -#: ../../boot.php:1236 -msgid "Website Terms of Service" -msgstr "Condizioni di servizio del sito web " +#: ../../mod/contacts.php:597 +msgid "Archived" +msgstr "Achiviato" -#: ../../boot.php:1237 -msgid "terms of service" -msgstr "condizioni del servizio" +#: ../../mod/contacts.php:600 +msgid "Only show archived contacts" +msgstr "Mostra solo contatti archiviati" -#: ../../boot.php:1239 -msgid "Website Privacy Policy" -msgstr "Politiche di privacy del sito" +#: ../../mod/contacts.php:604 +msgid "Hidden" +msgstr "Nascosto" -#: ../../boot.php:1240 -msgid "privacy policy" -msgstr "politiche di privacy" +#: ../../mod/contacts.php:607 +msgid "Only show hidden contacts" +msgstr "Mostra solo contatti nascosti" -#: ../../boot.php:1373 -msgid "Requested account is not available." -msgstr "L'account richiesto non è disponibile." +#: ../../mod/contacts.php:655 +msgid "Mutual Friendship" +msgstr "Amicizia reciproca" -#: ../../boot.php:1412 ../../mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "Profilo richiesto non disponibile." +#: ../../mod/contacts.php:659 +msgid "is a fan of yours" +msgstr "è un tuo fan" -#: ../../boot.php:1455 ../../boot.php:1589 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Modifica il profilo" +#: ../../mod/contacts.php:663 +msgid "you are a fan of" +msgstr "sei un fan di" -#: ../../boot.php:1522 ../../include/contact_widgets.php:10 -#: ../../mod/suggest.php:88 ../../mod/match.php:58 -msgid "Connect" -msgstr "Connetti" +#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Modifca contatto" -#: ../../boot.php:1554 -msgid "Message" -msgstr "Messaggio" +#: ../../mod/contacts.php:702 ../../include/nav.php:177 +#: ../../view/theme/diabook/theme.php:125 +msgid "Contacts" +msgstr "Contatti" -#: ../../boot.php:1560 ../../include/nav.php:173 -msgid "Profiles" -msgstr "Profili" +#: ../../mod/contacts.php:706 +msgid "Search your contacts" +msgstr "Cerca nei tuoi contatti" -#: ../../boot.php:1560 -msgid "Manage/edit profiles" -msgstr "Gestisci/modifica i profili" +#: ../../mod/contacts.php:707 ../../mod/directory.php:61 +msgid "Finding: " +msgstr "Ricerca: " -#: ../../boot.php:1565 ../../boot.php:1591 ../../mod/profiles.php:763 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" +#: ../../mod/contacts.php:708 ../../mod/directory.php:63 +#: ../../include/contact_widgets.php:34 +msgid "Find" +msgstr "Trova" -#: ../../boot.php:1566 ../../mod/profiles.php:764 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" +#: ../../mod/contacts.php:713 ../../mod/settings.php:132 +#: ../../mod/settings.php:640 +msgid "Update" +msgstr "Aggiorna" -#: ../../boot.php:1576 ../../mod/profiles.php:775 -msgid "Profile Image" -msgstr "Immagine del Profilo" +#: ../../mod/contacts.php:717 ../../mod/group.php:171 ../../mod/admin.php:1007 +#: ../../mod/content.php:438 ../../mod/content.php:741 +#: ../../mod/settings.php:677 ../../mod/photos.php:1654 +#: ../../object/Item.php:130 ../../include/conversation.php:614 +msgid "Delete" +msgstr "Rimuovi" -#: ../../boot.php:1579 ../../mod/profiles.php:777 -msgid "visible to everybody" -msgstr "visibile a tutti" +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Nessun profilo" -#: ../../boot.php:1580 ../../mod/profiles.php:778 -msgid "Edit visibility" -msgstr "Modifica visibilità" +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Gestisci indentità e/o pagine" -#: ../../boot.php:1602 ../../include/event.php:40 -#: ../../include/bb2diaspora.php:156 ../../mod/events.php:471 -#: ../../mod/directory.php:136 -msgid "Location:" -msgstr "Posizione:" +#: ../../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" -#: ../../boot.php:1604 ../../include/profile_advanced.php:17 -#: ../../mod/directory.php:138 -msgid "Gender:" -msgstr "Genere:" +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Seleziona un'identità da gestire:" -#: ../../boot.php:1607 ../../include/profile_advanced.php:37 -#: ../../mod/directory.php:140 -msgid "Status:" -msgstr "Stato:" +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Inviato!" -#: ../../boot.php:1609 ../../include/profile_advanced.php:48 -#: ../../mod/directory.php:142 -msgid "Homepage:" -msgstr "Homepage:" +#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368 +msgid "Permission denied" +msgstr "Permesso negato" -#: ../../boot.php:1657 -msgid "Network:" -msgstr "Rete:" +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." -#: ../../boot.php:1687 ../../boot.php:1773 -msgid "g A l F d" -msgstr "g A l d F" +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Modifica visibilità del profilo" -#: ../../boot.php:1688 ../../boot.php:1774 -msgid "F d" -msgstr "d F" +#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2119 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 +#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 +msgid "Profile" +msgstr "Profilo" -#: ../../boot.php:1733 ../../boot.php:1814 -msgid "[today]" -msgstr "[oggi]" +#: ../../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." -#: ../../boot.php:1745 -msgid "Birthday Reminders" -msgstr "Promemoria compleanni" +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Visibile a" -#: ../../boot.php:1746 -msgid "Birthdays this week:" -msgstr "Compleanni questa settimana:" - -#: ../../boot.php:1807 -msgid "[No description]" -msgstr "[Nessuna descrizione]" - -#: ../../boot.php:1825 -msgid "Event Reminders" -msgstr "Promemoria" - -#: ../../boot.php:1826 -msgid "Events this week:" -msgstr "Eventi di questa settimana:" +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Tutti i contatti (con profilo ad accesso sicuro)" -#: ../../boot.php:2063 ../../include/nav.php:76 -msgid "Status" -msgstr "Stato" +#: ../../mod/display.php:82 ../../mod/display.php:284 +#: ../../mod/display.php:503 ../../mod/viewsrc.php:15 ../../mod/admin.php:169 +#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/notice.php:15 +#: ../../include/items.php:4516 +msgid "Item not found." +msgstr "Elemento non trovato." -#: ../../boot.php:2066 -msgid "Status Messages and Posts" -msgstr "Messaggi di stato e post" +#: ../../mod/display.php:212 ../../mod/videos.php:115 +#: ../../mod/viewcontacts.php:19 ../../mod/community.php:18 +#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89 +#: ../../mod/directory.php:33 ../../mod/photos.php:920 +msgid "Public access denied." +msgstr "Accesso negato." -#: ../../boot.php:2073 -msgid "Profile Details" -msgstr "Dettagli del profilo" +#: ../../mod/display.php:332 ../../mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "L'accesso a questo profilo è stato limitato." -#: ../../boot.php:2080 ../../mod/photos.php:52 -msgid "Photo Albums" -msgstr "Album foto" +#: ../../mod/display.php:496 +msgid "Item has been removed." +msgstr "L'oggetto è stato rimosso." -#: ../../boot.php:2084 ../../boot.php:2087 ../../include/nav.php:79 -msgid "Videos" -msgstr "Video" +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Benvenuto su Friendica" -#: ../../boot.php:2097 -msgid "Events and Calendar" -msgstr "Eventi e calendario" +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Cose da fare per i Nuovi Utenti" -#: ../../boot.php:2101 ../../mod/notes.php:44 -msgid "Personal Notes" -msgstr "Note personali" +#: ../../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." -#: ../../boot.php:2104 -msgid "Only You Can See This" -msgstr "Solo tu puoi vedere questo" +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "Come Iniziare" -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Funzionalità generali" +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Friendica Passo-Passo" -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Profili multipli" +#: ../../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." -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Possibilità di creare profili multipli" +#: ../../mod/newmember.php:22 ../../mod/admin.php:1104 +#: ../../mod/admin.php:1325 ../../mod/settings.php:85 +#: ../../include/nav.php:172 ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 +msgid "Settings" +msgstr "Impostazioni" -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Funzionalità di composizione dei post" +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Vai alle tue Impostazioni" -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Editor visuale" +#: ../../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." -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Abilita l'editor visuale" +#: ../../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." -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Anteprima dei post" +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 +#: ../../mod/profiles.php:699 +msgid "Upload Profile Photo" +msgstr "Carica la foto del profilo" -#: ../../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" +#: ../../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." -#: ../../include/features.php:33 -msgid "Auto-mention Forums" -msgstr "Auto-cita i Forum" +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Modifica il tuo Profilo" -#: ../../include/features.php:33 +#: ../../mod/newmember.php:38 msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "Aggiunge o rimuove una citazione quando un forum è selezionato o deselezionato nella finestra dei permessi." +"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." -#: ../../include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Widget della barra laterale nella pagina Rete" +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Parole chiave del profilo" -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "Cerca per data" +#: ../../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." -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Permette di filtrare i post per data" +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "Collegarsi" -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "Filtra gruppi" +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Abilita il widget per filtrare i post solo per il gruppo selezionato" +#: ../../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." -#: ../../include/features.php:41 -msgid "Network Filter" -msgstr "Filtro reti" +#: ../../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" -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "Scheda Personali" +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Vai all'Elenco del tuo sito" -#: ../../include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Abilita la scheda per mostrare solo i post a cui hai partecipato" +#: ../../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." -#: ../../include/features.php:49 -msgid "Network New Tab" -msgstr "Scheda Nuovi" +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "Trova nuove persone" -#: ../../include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)" +#: ../../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." -#: ../../include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "Scheda Link Condivisi" +#: ../../mod/newmember.php:66 ../../include/group.php:270 +msgid "Groups" +msgstr "Gruppi" -#: ../../include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Abilita la scheda per mostrare solo i post che contengono link" +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Raggruppa i tuoi contatti" -#: ../../include/features.php:55 -msgid "Post/Comment Tools" -msgstr "Strumenti per mesasggi/commenti" +#: ../../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" -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "Eliminazione multipla" +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Perchè i miei post non sono pubblici?" -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Seleziona ed elimina vari messagi e commenti in una volta sola" +#: ../../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." -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Modifica i post inviati" +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "Ottenere Aiuto" -#: ../../include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "Modifica e correggi messaggi e commenti dopo averli inviati" +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Vai alla sezione Guida" -#: ../../include/features.php:58 -msgid "Tagging" -msgstr "Aggiunta tag" +#: ../../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." -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Permette di aggiungere tag ai post già esistenti" +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Errore protocollo OpenID. Nessun ID ricevuto." -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "Cateorie post" +#: ../../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." -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "Aggiungi categorie ai tuoi post" +#: ../../mod/openid.php:93 ../../include/auth.php:112 +#: ../../include/auth.php:175 +msgid "Login failed." +msgstr "Accesso fallito." -#: ../../include/features.php:60 ../../include/contact_widgets.php:104 -msgid "Saved Folders" -msgstr "Cartelle Salvate" +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Permette di archiviare i post in cartelle" +#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81 +#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204 +#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305 +#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187 +#: ../../mod/photos.php:1210 ../../include/user.php:335 +#: ../../include/user.php:342 ../../include/user.php:349 +#: ../../view/theme/diabook/theme.php:500 +msgid "Profile Photos" +msgstr "Foto del profilo" -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "Non mi piace" +#: ../../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." -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Permetti di inviare \"non mi piace\" ai messaggi" +#: ../../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." -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "Post preferiti" +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" -#: ../../include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "Permette di segnare i post preferiti con una stella" +#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "La dimensione dell'immagine supera il limite di %d" -#: ../../include/features.php:63 -msgid "Mute Post Notifications" -msgstr "Silenzia le notifiche di nuovi post" +#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144 +#: ../../mod/photos.php:807 +msgid "Unable to process image." +msgstr "Impossibile caricare l'immagine." -#: ../../include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "Permette di silenziare le notifiche di nuovi post in una discussione" +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Carica un file:" -#: ../../include/items.php:2090 ../../include/datetime.php:472 -#, php-format -msgid "%s's birthday" -msgstr "Compleanno di %s" +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Seleziona un profilo:" -#: ../../include/items.php:2091 ../../include/datetime.php:473 -#, php-format -msgid "Happy Birthday %s" -msgstr "Buon compleanno %s" +#: ../../mod/profile_photo.php:245 +msgid "Upload" +msgstr "Carica" -#: ../../include/items.php:3856 ../../mod/dfrn_request.php:721 -#: ../../mod/dfrn_confirm.php:752 -msgid "[Name Withheld]" -msgstr "[Nome Nascosto]" +#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062 +msgid "or" +msgstr "o" -#: ../../include/items.php:4354 ../../mod/admin.php:166 -#: ../../mod/admin.php:1013 ../../mod/admin.php:1226 ../../mod/viewsrc.php:15 -#: ../../mod/notice.php:15 ../../mod/display.php:70 ../../mod/display.php:240 -#: ../../mod/display.php:459 -msgid "Item not found." -msgstr "Elemento non trovato." +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "salta questo passaggio" -#: ../../include/items.php:4393 -msgid "Do you really want to delete this item?" -msgstr "Vuoi veramente cancellare questo elemento?" +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "seleziona una foto dai tuoi album" -#: ../../include/items.php:4395 ../../mod/settings.php:1007 -#: ../../mod/settings.php:1013 ../../mod/settings.php:1021 -#: ../../mod/settings.php:1025 ../../mod/settings.php:1030 -#: ../../mod/settings.php:1036 ../../mod/settings.php:1042 -#: ../../mod/settings.php:1048 ../../mod/settings.php:1078 -#: ../../mod/settings.php:1079 ../../mod/settings.php:1080 -#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 -#: ../../mod/contacts.php:332 ../../mod/register.php:230 -#: ../../mod/dfrn_request.php:834 ../../mod/api.php:105 -#: ../../mod/suggest.php:29 ../../mod/message.php:209 -#: ../../mod/profiles.php:620 ../../mod/profiles.php:623 -msgid "Yes" -msgstr "Si" +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Ritaglia immagine" -#: ../../include/items.php:4398 ../../include/conversation.php:1129 -#: ../../mod/settings.php:612 ../../mod/settings.php:638 -#: ../../mod/contacts.php:335 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:848 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 ../../mod/message.php:212 -msgid "Cancel" -msgstr "Annulla" +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ritaglia l'imagine per una visualizzazione migliore." -#: ../../include/items.php:4616 -msgid "Archives" -msgstr "Archivi" +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Finito" -#: ../../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." +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Immagine caricata con successo." -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Gruppo predefinito per i nuovi contatti" +#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172 +#: ../../mod/photos.php:834 +msgid "Image upload failed." +msgstr "Caricamento immagine fallito." -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Tutti" +#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 +#: ../../include/conversation.php:126 ../../include/conversation.php:254 +#: ../../include/text.php:1968 ../../include/diaspora.php:2087 +#: ../../view/theme/diabook/theme.php:471 +msgid "photo" +msgstr "foto" -#: ../../include/group.php:249 -msgid "edit" -msgstr "modifica" +#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 +#: ../../mod/like.php:319 ../../include/conversation.php:121 +#: ../../include/conversation.php:130 ../../include/conversation.php:249 +#: ../../include/conversation.php:258 ../../include/diaspora.php:2087 +#: ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 +msgid "status" +msgstr "stato" -#: ../../include/group.php:270 ../../mod/newmember.php:66 -msgid "Groups" -msgstr "Gruppi" +#: ../../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" -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Modifica gruppo" +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag rimosso" -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Crea un nuovo gruppo" +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Contatti in nessun gruppo." +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " -#: ../../include/group.php:275 ../../mod/network.php:189 -msgid "add" -msgstr "aggiungi" +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139 +msgid "Remove" +msgstr "Rimuovi" + +#: ../../mod/filer.php:30 ../../include/conversation.php:1006 +#: ../../include/conversation.php:1024 +msgid "Save to Folder:" +msgstr "Salva nella Cartella:" + +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- seleziona -" + +#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63 +#: ../../include/text.php:956 +msgid "Save" +msgstr "Salva" + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Contatto aggiunto" + +#: ../../mod/item.php:113 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." + +#: ../../mod/item.php:345 +msgid "Empty post discarded." +msgstr "Messaggio vuoto scartato." -#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926 -#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955 -#: ../../include/Photo.php:911 ../../include/Photo.php:926 -#: ../../include/Photo.php:933 ../../include/Photo.php:955 -#: ../../include/message.php:144 ../../mod/wall_upload.php:169 +#: ../../mod/item.php:484 ../../mod/wall_upload.php:169 #: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 -#: ../../mod/item.php:463 +#: ../../include/Photo.php:916 ../../include/Photo.php:931 +#: ../../include/Photo.php:938 ../../include/Photo.php:960 +#: ../../include/message.php:144 msgid "Wall Photos" msgstr "Foto della bacheca" -#: ../../include/dba.php:51 ../../include/dba_pdo.php:72 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" +#: ../../mod/item.php:938 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Messaggio non salvato." -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Aggiungi nuovo contatto" +#: ../../mod/item.php:964 +#, 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." -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Inserisci posizione o indirizzo web" +#: ../../mod/item.php:966 +#, php-format +msgid "You may visit them online at %s" +msgstr "Puoi visitarli online su %s" -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Esempio: bob@example.com, http://example.com/barbara" +#: ../../mod/item.php:967 +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." -#: ../../include/contact_widgets.php:24 +#: ../../mod/item.php:971 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" +msgid "%s posted an update." +msgstr "%s ha inviato un aggiornamento." -#: ../../include/contact_widgets.php:30 -msgid "Find People" -msgstr "Trova persone" +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Gruppo creato." -#: ../../include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Inserisci un nome o un interesse" +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Impossibile creare il gruppo." -#: ../../include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Connetti/segui" +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." +msgstr "Gruppo non trovato." -#: ../../include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Esempi: Mario Rossi, Pesca" +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "Il nome del gruppo è cambiato." -#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:700 -#: ../../mod/directory.php:63 -msgid "Find" -msgstr "Trova" +#: ../../mod/group.php:87 +msgid "Save Group" +msgstr "Salva gruppo" -#: ../../include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Profilo causale" +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Crea un gruppo di amici/contatti." -#: ../../include/contact_widgets.php:71 -msgid "Networks" -msgstr "Reti" +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "Nome del gruppo:" -#: ../../include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Tutte le Reti" +#: ../../mod/group.php:113 +msgid "Group removed." +msgstr "Gruppo rimosso." -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 -msgid "Everything" -msgstr "Tutto" +#: ../../mod/group.php:115 +msgid "Unable to remove group." +msgstr "Impossibile rimuovere il gruppo." -#: ../../include/contact_widgets.php:136 -msgid "Categories" -msgstr "Categorie" +#: ../../mod/group.php:179 +msgid "Group Editor" +msgstr "Modifica gruppo" -#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:427 -#, 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/group.php:192 +msgid "Members" +msgstr "Membri" -#: ../../include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Notifica Friendica" +#: ../../mod/apps.php:7 ../../index.php:212 +msgid "You must be logged in to use addons. " +msgstr "Devi aver effettuato il login per usare gli addons." -#: ../../include/enotify.php:21 -msgid "Thank You," -msgstr "Grazie," +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Applicazioni" -#: ../../include/enotify.php:23 -#, php-format -msgid "%s Administrator" -msgstr "Amministratore %s" +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Nessuna applicazione installata." -#: ../../include/enotify.php:30 ../../include/delivery.php:467 -#: ../../include/notifier.php:784 -msgid "noreply" -msgstr "nessuna risposta" +#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18 +#: ../../mod/profiles.php:133 ../../mod/profiles.php:179 +#: ../../mod/profiles.php:630 +msgid "Profile not found." +msgstr "Profilo non trovato." -#: ../../include/enotify.php:55 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20 +#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133 +msgid "Contact not found." +msgstr "Contatto non trovato." -#: ../../include/enotify.php:59 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s" +#: ../../mod/dfrn_confirm.php:121 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata." -#: ../../include/enotify.php:61 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s ti ha inviato un nuovo messaggio privato su %2$s." +#: ../../mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Errore di comunicazione con l'altro sito." -#: ../../include/enotify.php:62 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s ti ha inviato %2$s" +#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "La risposta dell'altro sito non può essere gestita: " -#: ../../include/enotify.php:62 -msgid "a private message" -msgstr "un messaggio privato" +#: ../../mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Conferma completata con successo." -#: ../../include/enotify.php:63 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Visita %s per vedere e/o rispodere ai tuoi messaggi privati." +#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 +#: ../../mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Il sito remoto riporta: " -#: ../../include/enotify.php:115 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s ha commentato [url=%2$s]%3$s[/url]" +#: ../../mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Problema temporaneo. Attendi e riprova." -#: ../../include/enotify.php:122 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s ha commentato [url=%2$s]%4$s di %3$s[/url]" +#: ../../mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "La presentazione ha generato un errore o è stata revocata." -#: ../../include/enotify.php:130 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s ha commentato un [url=%2$s]tuo %3$s[/url]" +#: ../../mod/dfrn_confirm.php:429 +msgid "Unable to set contact photo." +msgstr "Impossibile impostare la foto del contatto." -#: ../../include/enotify.php:140 +#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172 +#: ../../include/diaspora.php:620 #, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Notifica] Commento di %2$s alla conversazione #%1$d" +msgid "%1$s is now friends with %2$s" +msgstr "%1$s e %2$s adesso sono amici" -#: ../../include/enotify.php:141 +#: ../../mod/dfrn_confirm.php:571 #, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s ha commentato un elemento che stavi seguendo." +msgid "No user record found for '%s' " +msgstr "Nessun utente trovato '%s'" -#: ../../include/enotify.php:144 ../../include/enotify.php:159 -#: ../../include/enotify.php:172 ../../include/enotify.php:185 -#: ../../include/enotify.php:203 ../../include/enotify.php:216 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Visita %s per vedere e/o commentare la conversazione" +#: ../../mod/dfrn_confirm.php:581 +msgid "Our site encryption key is apparently messed up." +msgstr "La nostra chiave di criptazione del sito sembra essere corrotta." -#: ../../include/enotify.php:151 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notifica] %s ha scritto sulla tua bacheca" +#: ../../mod/dfrn_confirm.php:592 +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." -#: ../../include/enotify.php:153 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s ha scritto sulla tua bacheca su %2$s" +#: ../../mod/dfrn_confirm.php:613 +msgid "Contact record was not found for you on our site." +msgstr "Il contatto non è stato trovato sul nostro sito." -#: ../../include/enotify.php:155 +#: ../../mod/dfrn_confirm.php:627 #, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s ha inviato un messaggio sulla [url=%2$s]tua bacheca[/url]" +msgid "Site public key not available in contact record for URL %s." +msgstr "La chiave pubblica del sito non è disponibile per l'URL %s" -#: ../../include/enotify.php:166 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notifica] %s ti ha taggato" +#: ../../mod/dfrn_confirm.php:647 +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." -#: ../../include/enotify.php:167 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s ti ha taggato su %2$s" +#: ../../mod/dfrn_confirm.php:658 +msgid "Unable to set your contact credentials on our system." +msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema." -#: ../../include/enotify.php:168 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]ti ha taggato[/url]." +#: ../../mod/dfrn_confirm.php:725 +msgid "Unable to update your contact profile details on our system" +msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema" -#: ../../include/enotify.php:179 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica:Notifica] %s ha condiviso un nuovo messaggio" +#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717 +#: ../../include/items.php:4008 +msgid "[Name Withheld]" +msgstr "[Nome Nascosto]" -#: ../../include/enotify.php:180 +#: ../../mod/dfrn_confirm.php:797 #, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s ha condiviso un nuovo messaggio su %2$s" +msgid "%1$s has joined %2$s" +msgstr "%1$s si è unito a %2$s" -#: ../../include/enotify.php:181 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]ha condiviso un messaggio[/url]." +#: ../../mod/profile.php:21 ../../boot.php:1458 +msgid "Requested profile is not available." +msgstr "Profilo richiesto non disponibile." -#: ../../include/enotify.php:193 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notifica] %1$s ti ha stuzzicato" +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Consigli per i Nuovi Utenti" -#: ../../include/enotify.php:194 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s ti ha stuzzicato su %2$s" +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "Nessun video selezionato" -#: ../../include/enotify.php:195 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]ti ha stuzzicato[/url]." +#: ../../mod/videos.php:226 ../../mod/photos.php:1031 +msgid "Access to this item is restricted." +msgstr "Questo oggetto non è visibile a tutti." -#: ../../include/enotify.php:210 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio" +#: ../../mod/videos.php:301 ../../include/text.php:1405 +msgid "View Video" +msgstr "Guarda Video" -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s ha taggato il tuo post su %2$s" +#: ../../mod/videos.php:308 ../../mod/photos.php:1808 +msgid "View Album" +msgstr "Sfoglia l'album" -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s ha taggato [url=%2$s]il tuo post[/url]" +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "Video Recenti" -#: ../../include/enotify.php:223 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notifica] Hai ricevuto una presentazione" +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "Carica Nuovo Video" -#: ../../include/enotify.php:224 +#: ../../mod/tagger.php:95 ../../include/conversation.php:266 #, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Hai ricevuto un'introduzione da '%1$s' su %2$s" +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/enotify.php:225 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Hai ricevuto [url=%1$s]un'introduzione[/url] da %2$s." +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Suggerimento di amicizia inviato." + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Suggerisci amici" -#: ../../include/enotify.php:228 ../../include/enotify.php:270 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "You may visit their profile at %s" -msgstr "Puoi visitare il suo profilo presso %s" +msgid "Suggest a friend for %s" +msgstr "Suggerisci un amico a %s" -#: ../../include/enotify.php:230 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Visita %s per approvare o rifiutare la presentazione." +#: ../../mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Nessun account valido trovato." -#: ../../include/enotify.php:238 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "[Friendica:Notifica] Una nuova persona sta condividendo con te" +#: ../../mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." -#: ../../include/enotify.php:239 ../../include/enotify.php:240 +#: ../../mod/lostpass.php:42 #, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "%1$s sta condividendo con te su %2$s" - -#: ../../include/enotify.php:246 -msgid "[Friendica:Notify] You have a new follower" -msgstr "[Friendica:Notifica] Una nuova persona ti segue" +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "\nGentile %1$s,\n abbiamo ricevuto su \"%2$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica." -#: ../../include/enotify.php:247 ../../include/enotify.php:248 +#: ../../mod/lostpass.php:53 #, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "Un nuovo utente ha iniziato a seguirti su %2$s : %1$s" - -#: ../../include/enotify.php:261 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia" +msgid "" +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "\nSegui questo link per verificare la tua identità:\n\n%1$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2$s\n Nome utente: %3$s" -#: ../../include/enotify.php:262 +#: ../../mod/lostpass.php:72 #, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Hai ricevuto un suggerimento di amicizia da '%1$s' su %2$s" +msgid "Password reset requested at %s" +msgstr "Richiesta reimpostazione password su %s" -#: ../../include/enotify.php:263 -#, php-format +#: ../../mod/lostpass.php:92 msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Hai ricevuto [url=%1$s]un suggerimento di amicizia[/url] per %2$s su %3$s" - -#: ../../include/enotify.php:268 -msgid "Name:" -msgstr "Nome:" +"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." -#: ../../include/enotify.php:269 -msgid "Photo:" -msgstr "Foto:" +#: ../../mod/lostpass.php:109 ../../boot.php:1280 +msgid "Password Reset" +msgstr "Reimpostazione password" -#: ../../include/enotify.php:272 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Visita %s per approvare o rifiutare il suggerimento." +#: ../../mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "La tua password è stata reimpostata come richiesto." -#: ../../include/enotify.php:280 ../../include/enotify.php:293 -msgid "[Friendica:Notify] Connection accepted" -msgstr "[Friendica:Notifica] Connessione accettata" +#: ../../mod/lostpass.php:111 +msgid "Your new password is" +msgstr "La tua nuova password è" -#: ../../include/enotify.php:281 ../../include/enotify.php:294 -#, php-format -msgid "'%1$s' has acepted your connection request at %2$s" -msgstr "'%1$s' ha accettato la tua richiesta di connessione su %2$s" +#: ../../mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Salva o copia la tua nuova password, quindi" -#: ../../include/enotify.php:282 ../../include/enotify.php:295 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "%2$s ha accettato la tua [url=%1$s]richiesta di connessione[/url]" +#: ../../mod/lostpass.php:113 +msgid "click here to login" +msgstr "clicca qui per entrare" -#: ../../include/enotify.php:285 +#: ../../mod/lostpass.php:114 msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." -msgstr "Ora siete connessi reciprocamente e potete scambiarvi aggiornamenti di stato, foto e email\nsenza restrizioni" +"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." -#: ../../include/enotify.php:288 ../../include/enotify.php:302 +#: ../../mod/lostpass.php:125 #, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Visita %s se desideri modificare questo collegamento." +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" +msgstr "\nGentile %1$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare." -#: ../../include/enotify.php:298 +#: ../../mod/lostpass.php:131 #, php-format msgid "" -"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." -msgstr "'%1$s' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibiltà di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente." +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t\t" +msgstr "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato." -#: ../../include/enotify.php:300 +#: ../../mod/lostpass.php:147 #, php-format +msgid "Your password has been changed at %s" +msgstr "La tua password presso %s è stata cambiata" + +#: ../../mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" + +#: ../../mod/lostpass.php:160 msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " -msgstr "'%1$s' può decidere in futuro di estendere la connessione in una reciproca o più permissiva." +"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." -#: ../../include/enotify.php:313 -msgid "[Friendica System:Notify] registration request" -msgstr "[Friendica System:Notifica] richiesta di registrazione" +#: ../../mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Nome utente o email: " -#: ../../include/enotify.php:314 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "Hai ricevuto una richiesta di registrazione da '%1$s' su %2$s" +#: ../../mod/lostpass.php:162 +msgid "Reset" +msgstr "Reimposta" -#: ../../include/enotify.php:315 +#: ../../mod/like.php:166 ../../include/conversation.php:137 +#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480 #, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "Hai ricevuto una [url=%1$s]richiesta di registrazione[/url] da %2$s." +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" -#: ../../include/enotify.php:318 +#: ../../mod/like.php:168 ../../include/conversation.php:140 #, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "Nome completo: %1$s\nIndirizzo del sito: %2$s\nNome utente: %3$s (%4$s)" +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" -#: ../../include/enotify.php:321 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Visita %s per approvare o rifiutare la richiesta." +#: ../../mod/ping.php:240 +msgid "{0} wants to be your friend" +msgstr "{0} vuole essere tuo amico" -#: ../../include/api.php:262 ../../include/api.php:273 -#: ../../include/api.php:374 ../../include/api.php:958 -#: ../../include/api.php:960 -msgid "User not found." -msgstr "Utente non trovato." +#: ../../mod/ping.php:245 +msgid "{0} sent you a message" +msgstr "{0} ti ha inviato un messaggio" -#: ../../include/api.php:1167 -msgid "There is no status with this id." -msgstr "Non c'è nessuno status con questo id." +#: ../../mod/ping.php:250 +msgid "{0} requested registration" +msgstr "{0} chiede la registrazione" -#: ../../include/api.php:1237 -msgid "There is no conversation with this id." -msgstr "Non c'è nessuna conversazione con questo id" +#: ../../mod/ping.php:256 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} ha commentato il post di %s" -#: ../../include/network.php:892 -msgid "view full size" -msgstr "vedi a schermo intero" +#: ../../mod/ping.php:261 +#, php-format +msgid "{0} liked %s's post" +msgstr "a {0} piace il post di %s" -#: ../../include/Scrape.php:584 -msgid " on Last.fm" -msgstr "su Last.fm" +#: ../../mod/ping.php:266 +#, php-format +msgid "{0} disliked %s's post" +msgstr "a {0} non piace il post di %s" -#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1125 -msgid "Full Name:" -msgstr "Nome completo:" +#: ../../mod/ping.php:271 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} ora è amico di %s" -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "j F Y" +#: ../../mod/ping.php:276 +msgid "{0} posted" +msgstr "{0} ha inviato un nuovo messaggio" -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "j F" +#: ../../mod/ping.php:281 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} ha taggato il post di %s con #%s" -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Compleanno:" +#: ../../mod/ping.php:287 +msgid "{0} mentioned you in a post" +msgstr "{0} ti ha citato in un post" -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Età:" +#: ../../mod/viewcontacts.php:41 +msgid "No contacts." +msgstr "Nessun contatto." -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" +#: ../../mod/viewcontacts.php:78 ../../include/text.php:876 +msgid "View Contacts" +msgstr "Visualizza i contatti" -#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:673 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." -#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:675 -msgid "Hometown:" -msgstr "Paese natale:" +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "Scarta" -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Tag:" +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "Sistema" -#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:676 -msgid "Political Views:" -msgstr "Orientamento politico:" +#: ../../mod/notifications.php:83 ../../include/nav.php:145 +msgid "Network" +msgstr "Rete" -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religione:" - -#: ../../include/profile_advanced.php:58 ../../mod/directory.php:144 -msgid "About:" -msgstr "Informazioni:" +#: ../../mod/notifications.php:88 ../../mod/network.php:371 +msgid "Personal" +msgstr "Personale" -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Hobby/Interessi:" +#: ../../mod/notifications.php:93 ../../include/nav.php:105 +#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123 +msgid "Home" +msgstr "Home" -#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:680 -msgid "Likes:" -msgstr "Mi piace:" +#: ../../mod/notifications.php:98 ../../include/nav.php:154 +msgid "Introductions" +msgstr "Presentazioni" -#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:681 -msgid "Dislikes:" -msgstr "Non mi piace:" +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "Mostra richieste ignorate" -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Informazioni su contatti e social network:" +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "Nascondi richieste ignorate" -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Interessi musicali:" +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " +msgstr "Tipo di notifica: " -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Libri, letteratura:" +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "Amico suggerito" -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Televisione:" +#: ../../mod/notifications.php:152 +#, php-format +msgid "suggested by %s" +msgstr "sugerito da %s" -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/danza/cultura/intrattenimento:" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" +msgstr "Invia una attività \"è ora amico con\"" -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Amore:" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" +msgstr "se applicabile" -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Lavoro:" +#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 +#: ../../mod/admin.php:1005 +msgid "Approve" +msgstr "Approva" -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Scuola:" +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "Dice di conoscerti: " -#: ../../include/nav.php:34 ../../mod/navigation.php:20 -msgid "Nothing new here" -msgstr "Niente di nuovo qui" +#: ../../mod/notifications.php:181 +msgid "yes" +msgstr "si" -#: ../../include/nav.php:38 ../../mod/navigation.php:24 -msgid "Clear notifications" -msgstr "Pulisci le notifiche" +#: ../../mod/notifications.php:181 +msgid "no" +msgstr "no" -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Finisci questa sessione" +#: ../../mod/notifications.php:188 +msgid "Approve as: " +msgstr "Approva come: " -#: ../../include/nav.php:79 -msgid "Your videos" -msgstr "I tuoi video" +#: ../../mod/notifications.php:189 +msgid "Friend" +msgstr "Amico" -#: ../../include/nav.php:81 -msgid "Your personal notes" -msgstr "Le tue note personali" +#: ../../mod/notifications.php:190 +msgid "Sharer" +msgstr "Condivisore" -#: ../../include/nav.php:92 -msgid "Sign in" -msgstr "Entra" +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "Fan/Ammiratore" -#: ../../include/nav.php:105 -msgid "Home Page" -msgstr "Home Page" +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "Richiesta amicizia/connessione" -#: ../../include/nav.php:109 -msgid "Create an account" -msgstr "Crea un account" +#: ../../mod/notifications.php:196 +msgid "New Follower" +msgstr "Qualcuno inizia a seguirti" -#: ../../include/nav.php:114 ../../mod/help.php:84 -msgid "Help" -msgstr "Guida" +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "Nessuna presentazione." -#: ../../include/nav.php:114 -msgid "Help and documentation" -msgstr "Guida e documentazione" +#: ../../mod/notifications.php:220 ../../include/nav.php:155 +msgid "Notifications" +msgstr "Notifiche" -#: ../../include/nav.php:117 -msgid "Apps" -msgstr "Applicazioni" +#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 +#: ../../mod/notifications.php:478 +#, php-format +msgid "%s liked %s's post" +msgstr "a %s è piaciuto il messaggio di %s" -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Applicazioni, utilità e giochi aggiuntivi" +#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 +#: ../../mod/notifications.php:488 +#, php-format +msgid "%s disliked %s's post" +msgstr "a %s non è piaciuto il messaggio di %s" -#: ../../include/nav.php:119 ../../include/text.php:952 -#: ../../include/text.php:953 ../../mod/search.php:99 -msgid "Search" -msgstr "Cerca" +#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 +#: ../../mod/notifications.php:503 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s è ora amico di %s" -#: ../../include/nav.php:119 -msgid "Search site content" -msgstr "Cerca nel contenuto del sito" +#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 +#, php-format +msgid "%s created a new post" +msgstr "%s a creato un nuovo messaggio" -#: ../../include/nav.php:129 -msgid "Conversations on this site" -msgstr "Conversazioni su questo sito" +#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 +#: ../../mod/notifications.php:513 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s ha commentato il messaggio di %s" -#: ../../include/nav.php:131 -msgid "Directory" -msgstr "Elenco" +#: ../../mod/notifications.php:306 +msgid "No more network notifications." +msgstr "Nessuna nuova." -#: ../../include/nav.php:131 -msgid "People directory" -msgstr "Elenco delle persone" +#: ../../mod/notifications.php:310 +msgid "Network Notifications" +msgstr "Notifiche dalla rete" -#: ../../include/nav.php:133 -msgid "Information" -msgstr "Informazioni" +#: ../../mod/notifications.php:336 ../../mod/notify.php:75 +msgid "No more system notifications." +msgstr "Nessuna nuova notifica di sistema." -#: ../../include/nav.php:133 -msgid "Information about this friendica instance" -msgstr "Informazioni su questo server friendica" +#: ../../mod/notifications.php:340 ../../mod/notify.php:79 +msgid "System Notifications" +msgstr "Notifiche di sistema" -#: ../../include/nav.php:143 ../../mod/notifications.php:83 -msgid "Network" -msgstr "Rete" +#: ../../mod/notifications.php:435 +msgid "No more personal notifications." +msgstr "Nessuna nuova." -#: ../../include/nav.php:143 -msgid "Conversations from your friends" -msgstr "Conversazioni dai tuoi amici" +#: ../../mod/notifications.php:439 +msgid "Personal Notifications" +msgstr "Notifiche personali" -#: ../../include/nav.php:144 -msgid "Network Reset" -msgstr "Reset pagina Rete" +#: ../../mod/notifications.php:520 +msgid "No more home notifications." +msgstr "Nessuna nuova." -#: ../../include/nav.php:144 -msgid "Load Network page with no filters" -msgstr "Carica la pagina Rete senza nessun filtro" +#: ../../mod/notifications.php:524 +msgid "Home Notifications" +msgstr "Notifiche bacheca" -#: ../../include/nav.php:152 ../../mod/notifications.php:98 -msgid "Introductions" -msgstr "Presentazioni" +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Testo sorgente (bbcode):" -#: ../../include/nav.php:152 -msgid "Friend Requests" -msgstr "Richieste di amicizia" +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:" -#: ../../include/nav.php:153 ../../mod/notifications.php:220 -msgid "Notifications" -msgstr "Notifiche" +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Sorgente:" -#: ../../include/nav.php:154 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (HTML grezzo):" -#: ../../include/nav.php:155 -msgid "Mark all system notifications seen" -msgstr "Segna tutte le notifiche come viste" +#: ../../mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html:" -#: ../../include/nav.php:159 ../../mod/notifications.php:103 -#: ../../mod/message.php:182 -msgid "Messages" -msgstr "Messaggi" +#: ../../mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " -#: ../../include/nav.php:159 -msgid "Private mail" -msgstr "Posta privata" +#: ../../mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " -#: ../../include/nav.php:160 -msgid "Inbox" -msgstr "In arrivo" +#: ../../mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " -#: ../../include/nav.php:161 -msgid "Outbox" -msgstr "Inviati" +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " -#: ../../include/nav.php:162 ../../mod/message.php:9 -msgid "New Message" -msgstr "Nuovo messaggio" - -#: ../../include/nav.php:165 -msgid "Manage" -msgstr "Gestisci" - -#: ../../include/nav.php:165 -msgid "Manage other pages" -msgstr "Gestisci altre pagine" +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " -#: ../../include/nav.php:168 ../../mod/settings.php:62 -msgid "Delegations" -msgstr "Delegazioni" +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Sorgente (formato Diaspora):" -#: ../../include/nav.php:168 ../../mod/delegate.php:124 -msgid "Delegate Page Management" -msgstr "Gestione delegati per la pagina" +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " -#: ../../include/nav.php:170 -msgid "Account settings" -msgstr "Parametri account" +#: ../../mod/navigation.php:20 ../../include/nav.php:34 +msgid "Nothing new here" +msgstr "Niente di nuovo qui" -#: ../../include/nav.php:173 -msgid "Manage/Edit Profiles" -msgstr "Gestisci/Modifica i profili" +#: ../../mod/navigation.php:24 ../../include/nav.php:38 +msgid "Clear notifications" +msgstr "Pulisci le notifiche" -#: ../../include/nav.php:175 -msgid "Manage/edit friends and contacts" -msgstr "Gestisci/modifica amici e contatti" +#: ../../mod/message.php:9 ../../include/nav.php:164 +msgid "New Message" +msgstr "Nuovo messaggio" -#: ../../include/nav.php:182 ../../mod/admin.php:128 -msgid "Admin" -msgstr "Amministrazione" +#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Nessun destinatario selezionato." -#: ../../include/nav.php:182 -msgid "Site setup and configuration" -msgstr "Configurazione del sito" +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Impossibile trovare le informazioni del contatto." -#: ../../include/nav.php:186 -msgid "Navigation" -msgstr "Navigazione" +#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Il messaggio non puo' essere inviato." -#: ../../include/nav.php:186 -msgid "Site map" -msgstr "Mappa del sito" +#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Errore recuperando il messaggio." -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." +#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Messaggio inviato." -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione." +#: ../../mod/message.php:182 ../../include/nav.php:161 +msgid "Messages" +msgstr "Messaggi" -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Vuoi veramente cancellare questo messaggio?" -#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507 -msgid "Disallowed profile URL." -msgstr "Indirizzo profilo non permesso." +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Messaggio eliminato." -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "URL di connessione mancante." +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Conversazione rimossa." -#: ../../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." +#: ../../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:1002 ../../include/conversation.php:1020 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" -#: ../../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." +#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Invia un messaggio 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." +#: ../../mod/message.php:320 ../../mod/message.php:553 +#: ../../mod/wallmessage.php:144 +msgid "To:" +msgstr "A:" -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Non è stato trovato un nome o un autore" +#: ../../mod/message.php:325 ../../mod/message.php:555 +#: ../../mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Oggetto:" -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Nessun URL puo' essere associato a questo indirizzo." +#: ../../mod/message.php:329 ../../mod/message.php:558 +#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +msgid "Your message:" +msgstr "Il tuo messaggio:" -#: ../../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." +#: ../../mod/message.php:332 ../../mod/message.php:562 +#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 +#: ../../include/conversation.php:1091 +msgid "Upload photo" +msgstr "Carica foto" -#: ../../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." +#: ../../mod/message.php:333 ../../mod/message.php:563 +#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 +#: ../../include/conversation.php:1095 +msgid "Insert web link" +msgstr "Inserisci link" -#: ../../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." +#: ../../mod/message.php:334 ../../mod/message.php:565 +#: ../../mod/content.php:499 ../../mod/content.php:883 +#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124 +#: ../../mod/photos.php:1545 ../../object/Item.php:364 +#: ../../include/conversation.php:692 ../../include/conversation.php:1109 +msgid "Please wait" +msgstr "Attendi" -#: ../../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." +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Nessun messaggio." -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Impossibile recuperare informazioni sul contatto." +#: ../../mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "Mittente sconosciuto - %s" -#: ../../include/follow.php:259 -msgid "following" -msgstr "segue" +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Tu e %s" -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Errore decodificando il file account" +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "%s e Tu" -#: ../../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?" +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Elimina la conversazione" -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Errore! Non posso controllare il nickname" +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D d M Y - G:i" -#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#: ../../mod/message.php:411 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "L'utente '%s' esiste già su questo server!" +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d messaggio" +msgstr[1] "%d messaggi" -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Errore creando l'utente" +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Messaggio non disponibile." -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Errore creando il profile dell'utente" +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Elimina il messaggio" -#: ../../include/uimport.php:220 -#, 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" +#: ../../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." -#: ../../include/uimport.php:290 -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" +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Invia la risposta" -#: ../../include/event.php:11 ../../include/bb2diaspora.php:134 -#: ../../mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" +#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 +#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41 +#: ../../mod/update_network.php:25 +msgid "[Embedded content - reload page to view]" +msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:140 -msgid "Starts:" -msgstr "Inizia:" +#: ../../mod/crepair.php:106 +msgid "Contact settings applied." +msgstr "Contatto modificato." -#: ../../include/event.php:30 ../../include/bb2diaspora.php:148 -msgid "Finishes:" -msgstr "Finisce:" +#: ../../mod/crepair.php:108 +msgid "Contact update failed." +msgstr "Le modifiche al contatto non sono state salvate." -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "tolto dai seguiti" +#: ../../mod/crepair.php:139 +msgid "Repair Contact Settings" +msgstr "Ripara il contatto" -#: ../../include/Contact.php:228 ../../include/conversation.php:882 -msgid "Poke" -msgstr "Stuzzica" +#: ../../mod/crepair.php:141 +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ù" -#: ../../include/Contact.php:229 ../../include/conversation.php:876 -msgid "View Status" -msgstr "Visualizza stato" +#: ../../mod/crepair.php:142 +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." -#: ../../include/Contact.php:230 ../../include/conversation.php:877 -msgid "View Profile" -msgstr "Visualizza profilo" +#: ../../mod/crepair.php:148 +msgid "Return to contact editor" +msgstr "Ritorna alla modifica contatto" -#: ../../include/Contact.php:231 ../../include/conversation.php:878 -msgid "View Photos" -msgstr "Visualizza foto" +#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +msgid "No mirroring" +msgstr "Non duplicare" -#: ../../include/Contact.php:232 ../../include/Contact.php:255 -#: ../../include/conversation.php:879 -msgid "Network Posts" -msgstr "Post della Rete" +#: ../../mod/crepair.php:159 +msgid "Mirror as forwarded posting" +msgstr "Duplica come messaggi ricondivisi" -#: ../../include/Contact.php:233 ../../include/Contact.php:255 -#: ../../include/conversation.php:880 -msgid "Edit Contact" -msgstr "Modifica contatti" +#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 +msgid "Mirror as my own posting" +msgstr "Duplica come miei messaggi" -#: ../../include/Contact.php:234 -msgid "Drop Contact" -msgstr "Rimuovi contatto" +#: ../../mod/crepair.php:165 ../../mod/admin.php:1003 ../../mod/admin.php:1015 +#: ../../mod/admin.php:1016 ../../mod/admin.php:1029 +#: ../../mod/settings.php:616 ../../mod/settings.php:642 +msgid "Name" +msgstr "Nome" -#: ../../include/Contact.php:235 ../../include/Contact.php:255 -#: ../../include/conversation.php:881 -msgid "Send PM" -msgstr "Invia messaggio privato" +#: ../../mod/crepair.php:166 +msgid "Account Nickname" +msgstr "Nome utente" -#: ../../include/dbstructure.php:23 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido." +#: ../../mod/crepair.php:167 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@TagName - al posto del nome utente" -#: ../../include/dbstructure.php:28 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Il messaggio di errore è\n[pre]%s[/pre]" +#: ../../mod/crepair.php:168 +msgid "Account URL" +msgstr "URL dell'utente" -#: ../../include/dbstructure.php:181 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." +#: ../../mod/crepair.php:169 +msgid "Friend Request URL" +msgstr "URL Richiesta Amicizia" -#: ../../include/dbstructure.php:239 -msgid "Errors encountered performing database changes." -msgstr "Riscontrati errori applicando le modifiche al database." +#: ../../mod/crepair.php:170 +msgid "Friend Confirm URL" +msgstr "URL Conferma Amicizia" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Varie" +#: ../../mod/crepair.php:171 +msgid "Notification Endpoint URL" +msgstr "URL Notifiche" -#: ../../include/datetime.php:153 ../../include/datetime.php:285 -msgid "year" -msgstr "anno" +#: ../../mod/crepair.php:172 +msgid "Poll/Feed URL" +msgstr "URL Feed" -#: ../../include/datetime.php:158 ../../include/datetime.php:286 -msgid "month" -msgstr "mese" +#: ../../mod/crepair.php:173 +msgid "New photo from this URL" +msgstr "Nuova foto da questo URL" -#: ../../include/datetime.php:163 ../../include/datetime.php:288 -msgid "day" -msgstr "giorno" +#: ../../mod/crepair.php:174 +msgid "Remote Self" +msgstr "Io remoto" -#: ../../include/datetime.php:276 -msgid "never" -msgstr "mai" +#: ../../mod/crepair.php:176 +msgid "Mirror postings from this contact" +msgstr "Ripeti i messaggi di questo contatto" -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "meno di un secondo fa" +#: ../../mod/crepair.php:176 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto." -#: ../../include/datetime.php:285 -msgid "years" -msgstr "anni" +#: ../../mod/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92 +msgid "Login" +msgstr "Accedi" -#: ../../include/datetime.php:286 -msgid "months" -msgstr "mesi" +#: ../../mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "" -#: ../../include/datetime.php:287 -msgid "week" -msgstr "settimana" +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accesso negato." -#: ../../include/datetime.php:287 -msgid "weeks" -msgstr "settimane" +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Cerca persone" -#: ../../include/datetime.php:288 -msgid "days" -msgstr "giorni" +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "Nessun risultato" -#: ../../include/datetime.php:289 -msgid "hour" -msgstr "ora" +#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78 +#: ../../view/theme/diabook/theme.php:126 +msgid "Photos" +msgstr "Foto" -#: ../../include/datetime.php:289 -msgid "hours" -msgstr "ore" +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "File" -#: ../../include/datetime.php:290 -msgid "minute" -msgstr "minuto" +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Contatti che non sono membri di un gruppo" -#: ../../include/datetime.php:290 -msgid "minutes" -msgstr "minuti" +#: ../../mod/admin.php:57 +msgid "Theme settings updated." +msgstr "Impostazioni del tema aggiornate." -#: ../../include/datetime.php:291 -msgid "second" -msgstr "secondo" +#: ../../mod/admin.php:104 ../../mod/admin.php:619 +msgid "Site" +msgstr "Sito" -#: ../../include/datetime.php:291 -msgid "seconds" -msgstr "secondi" +#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013 +msgid "Users" +msgstr "Utenti" -#: ../../include/datetime.php:300 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" +#: ../../mod/admin.php:106 ../../mod/admin.php:1102 ../../mod/admin.php:1155 +#: ../../mod/settings.php:57 +msgid "Plugins" +msgstr "Plugin" -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[nessun oggetto]" +#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 +msgid "Themes" +msgstr "Temi" -#: ../../include/delivery.php:456 ../../include/notifier.php:774 -msgid "(no subject)" -msgstr "(nessun oggetto)" +#: ../../mod/admin.php:108 +msgid "DB updates" +msgstr "Aggiornamenti Database" -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Sconosciuto | non categorizzato" +#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444 +msgid "Logs" +msgstr "Log" -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Blocca immediatamente" +#: ../../mod/admin.php:124 +msgid "probe address" +msgstr "" -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Shady, spammer, self-marketer" +#: ../../mod/admin.php:125 +msgid "check webfinger" +msgstr "" -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Lo conosco, ma non ho un'opinione particolare" +#: ../../mod/admin.php:130 ../../include/nav.php:184 +msgid "Admin" +msgstr "Amministrazione" -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "E' ok, probabilmente innocuo" +#: ../../mod/admin.php:131 +msgid "Plugin Features" +msgstr "Impostazioni Plugins" -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Rispettabile, ha la mia fiducia" +#: ../../mod/admin.php:133 +msgid "diagnostics" +msgstr "" -#: ../../include/contact_selectors.php:56 ../../mod/admin.php:542 -msgid "Frequently" -msgstr "Frequentemente" +#: ../../mod/admin.php:134 +msgid "User registrations waiting for confirmation" +msgstr "Utenti registrati in attesa di conferma" -#: ../../include/contact_selectors.php:57 ../../mod/admin.php:543 -msgid "Hourly" -msgstr "Ogni ora" +#: ../../mod/admin.php:193 ../../mod/admin.php:952 +msgid "Normal Account" +msgstr "Account normale" -#: ../../include/contact_selectors.php:58 ../../mod/admin.php:544 -msgid "Twice daily" -msgstr "Due volte al dì" +#: ../../mod/admin.php:194 ../../mod/admin.php:953 +msgid "Soapbox Account" +msgstr "Account per comunicati e annunci" -#: ../../include/contact_selectors.php:59 ../../mod/admin.php:545 -msgid "Daily" -msgstr "Giornalmente" +#: ../../mod/admin.php:195 ../../mod/admin.php:954 +msgid "Community/Celebrity Account" +msgstr "Account per celebrità o per comunità" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Settimanalmente" +#: ../../mod/admin.php:196 ../../mod/admin.php:955 +msgid "Automatic Friend Account" +msgstr "Account per amicizia automatizzato" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensilmente" +#: ../../mod/admin.php:197 +msgid "Blog Account" +msgstr "Account Blog" -#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840 -msgid "Friendica" -msgstr "Friendica" +#: ../../mod/admin.php:198 +msgid "Private Forum" +msgstr "Forum Privato" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "Ostatus" +#: ../../mod/admin.php:217 +msgid "Message queues" +msgstr "Code messaggi" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS / Atom" +#: ../../mod/admin.php:222 ../../mod/admin.php:618 ../../mod/admin.php:997 +#: ../../mod/admin.php:1101 ../../mod/admin.php:1154 ../../mod/admin.php:1322 +#: ../../mod/admin.php:1356 ../../mod/admin.php:1443 +msgid "Administration" +msgstr "Amministrazione" -#: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 ../../mod/admin.php:964 -#: ../../mod/admin.php:976 ../../mod/admin.php:977 ../../mod/admin.php:992 -msgid "Email" -msgstr "Email" +#: ../../mod/admin.php:223 +msgid "Summary" +msgstr "Sommario" -#: ../../include/contact_selectors.php:80 ../../mod/settings.php:733 -#: ../../mod/dfrn_request.php:842 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../mod/admin.php:225 +msgid "Registered users" +msgstr "Utenti registrati" -#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49 -#: ../../mod/newmember.php:51 -msgid "Facebook" -msgstr "Facebook" +#: ../../mod/admin.php:227 +msgid "Pending registrations" +msgstr "Registrazioni in attesa" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" +#: ../../mod/admin.php:228 +msgid "Version" +msgstr "Versione" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../mod/admin.php:232 +msgid "Active plugins" +msgstr "Plugin attivi" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../mod/admin.php:255 +msgid "Can not parse base url. Must have at least ://" +msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: ../../mod/admin.php:516 +msgid "Site settings updated." +msgstr "Impostazioni del sito aggiornate." -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" +#: ../../mod/admin.php:545 ../../mod/settings.php:828 +msgid "No special theme for mobile devices" +msgstr "Nessun tema speciale per i dispositivi mobili" -#: ../../include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" +#: ../../mod/admin.php:562 +msgid "No community page" +msgstr "" -#: ../../include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" +#: ../../mod/admin.php:563 +msgid "Public postings from users of this site" +msgstr "" -#: ../../include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Connettore Diaspora" +#: ../../mod/admin.php:564 +msgid "Global community page" +msgstr "" -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" +#: ../../mod/admin.php:570 +msgid "At post arrival" +msgstr "All'arrivo di un messaggio" -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" +#: ../../mod/admin.php:571 ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Frequentemente" -#: ../../include/diaspora.php:620 ../../include/conversation.php:172 -#: ../../mod/dfrn_confirm.php:486 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s e %2$s adesso sono amici" +#: ../../mod/admin.php:572 ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Ogni ora" -#: ../../include/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "Notifica di condivisione dal network Diaspora*" +#: ../../mod/admin.php:573 ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Due volte al dì" -#: ../../include/diaspora.php:2312 -msgid "Attachments:" -msgstr "Allegati:" +#: ../../mod/admin.php:574 ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Giornalmente" -#: ../../include/conversation.php:140 ../../mod/like.php:168 -#, 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/admin.php:579 +msgid "Multi user instance" +msgstr "Istanza multi utente" -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha stuzzicato %2$s" +#: ../../mod/admin.php:602 +msgid "Closed" +msgstr "Chiusa" -#: ../../include/conversation.php:211 ../../include/text.php:1004 -msgid "poked" -msgstr "toccato" +#: ../../mod/admin.php:603 +msgid "Requires approval" +msgstr "Richiede l'approvazione" -#: ../../include/conversation.php:227 ../../mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s al momento è %2$s" +#: ../../mod/admin.php:604 +msgid "Open" +msgstr "Aperta" -#: ../../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" +#: ../../mod/admin.php:608 +msgid "No SSL policy, links will track page SSL state" +msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina" -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "post/elemento" +#: ../../mod/admin.php:609 +msgid "Force all links to use SSL" +msgstr "Forza tutti i linki ad usare SSL" -#: ../../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" +#: ../../mod/admin.php:610 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)" -#: ../../include/conversation.php:613 ../../object/Item.php:129 -#: ../../mod/photos.php:1651 ../../mod/content.php:437 -#: ../../mod/content.php:740 -msgid "Select" -msgstr "Seleziona" +#: ../../mod/admin.php:620 ../../mod/admin.php:1156 ../../mod/admin.php:1358 +#: ../../mod/admin.php:1445 ../../mod/settings.php:614 +#: ../../mod/settings.php:724 ../../mod/settings.php:798 +#: ../../mod/settings.php:880 ../../mod/settings.php:1113 +msgid "Save Settings" +msgstr "Salva Impostazioni" -#: ../../include/conversation.php:614 ../../object/Item.php:130 -#: ../../mod/group.php:171 ../../mod/settings.php:674 -#: ../../mod/contacts.php:709 ../../mod/admin.php:968 -#: ../../mod/photos.php:1652 ../../mod/content.php:438 -#: ../../mod/content.php:741 -msgid "Delete" -msgstr "Rimuovi" +#: ../../mod/admin.php:621 ../../mod/register.php:255 +msgid "Registration" +msgstr "Registrazione" -#: ../../include/conversation.php:654 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../mod/content.php:471 -#: ../../mod/content.php:852 ../../mod/content.php:853 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" +#: ../../mod/admin.php:622 +msgid "File upload" +msgstr "Caricamento file" -#: ../../include/conversation.php:666 ../../object/Item.php:316 -msgid "Categories:" -msgstr "Categorie:" +#: ../../mod/admin.php:623 +msgid "Policies" +msgstr "Politiche" -#: ../../include/conversation.php:667 ../../object/Item.php:317 -msgid "Filed under:" -msgstr "Archiviato in:" +#: ../../mod/admin.php:624 +msgid "Advanced" +msgstr "Avanzate" -#: ../../include/conversation.php:674 ../../object/Item.php:340 -#: ../../mod/content.php:481 ../../mod/content.php:864 -#, php-format -msgid "%s from %s" -msgstr "%s da %s" +#: ../../mod/admin.php:625 +msgid "Performance" +msgstr "Performance" -#: ../../include/conversation.php:690 ../../mod/content.php:497 -msgid "View in context" -msgstr "Vedi nel contesto" +#: ../../mod/admin.php:626 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile." -#: ../../include/conversation.php:692 ../../include/conversation.php:1109 -#: ../../object/Item.php:364 ../../mod/wallmessage.php:156 -#: ../../mod/editpost.php:124 ../../mod/photos.php:1543 -#: ../../mod/message.php:334 ../../mod/message.php:565 -#: ../../mod/content.php:499 ../../mod/content.php:883 -msgid "Please wait" -msgstr "Attendi" +#: ../../mod/admin.php:629 +msgid "Site name" +msgstr "Nome del sito" -#: ../../include/conversation.php:772 -msgid "remove" -msgstr "rimuovi" +#: ../../mod/admin.php:630 +msgid "Host name" +msgstr "" -#: ../../include/conversation.php:776 -msgid "Delete Selected Items" -msgstr "Cancella elementi selezionati" +#: ../../mod/admin.php:631 +msgid "Sender Email" +msgstr "" -#: ../../include/conversation.php:875 -msgid "Follow Thread" -msgstr "Segui la discussione" +#: ../../mod/admin.php:632 +msgid "Banner/Logo" +msgstr "Banner/Logo" -#: ../../include/conversation.php:944 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." +#: ../../mod/admin.php:633 +msgid "Shortcut icon" +msgstr "" -#: ../../include/conversation.php:944 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." +#: ../../mod/admin.php:634 +msgid "Touch icon" +msgstr "" -#: ../../include/conversation.php:949 -#, php-format -msgid "%2$d people like this" -msgstr "Piace a %2$d persone." +#: ../../mod/admin.php:635 +msgid "Additional Info" +msgstr "Informazioni aggiuntive" -#: ../../include/conversation.php:952 -#, php-format -msgid "%2$d people don't like this" -msgstr "Non piace a %2$d persone." +#: ../../mod/admin.php:635 +msgid "" +"For public servers: you can add additional information here that will be " +"listed at dir.friendica.com/siteinfo." +msgstr "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su dir.friendica.com/siteinfo." -#: ../../include/conversation.php:966 -msgid "and" -msgstr "e" +#: ../../mod/admin.php:636 +msgid "System language" +msgstr "Lingua di sistema" -#: ../../include/conversation.php:972 -#, php-format -msgid ", and %d other people" -msgstr "e altre %d persone" +#: ../../mod/admin.php:637 +msgid "System theme" +msgstr "Tema di sistema" -#: ../../include/conversation.php:974 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." +#: ../../mod/admin.php:637 +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" -#: ../../include/conversation.php:974 -#, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." +#: ../../mod/admin.php:638 +msgid "Mobile system theme" +msgstr "Tema mobile di sistema" -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Visible to everybody" -msgstr "Visibile a tutti" +#: ../../mod/admin.php:638 +msgid "Theme for mobile devices" +msgstr "Tema per dispositivi mobili" -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -#: ../../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:" +#: ../../mod/admin.php:639 +msgid "SSL link policy" +msgstr "Gestione link SSL" -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter a video link/URL:" -msgstr "Inserisci un collegamento video / URL:" +#: ../../mod/admin.php:639 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Determina se i link generati devono essere forzati a usare SSL" -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Please enter an audio link/URL:" -msgstr "Inserisci un collegamento audio / URL:" +#: ../../mod/admin.php:640 +msgid "Force SSL" +msgstr "" -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -msgid "Tag term:" -msgstr "Tag:" +#: ../../mod/admin.php:640 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "" -#: ../../include/conversation.php:1006 ../../include/conversation.php:1024 -#: ../../mod/filer.php:30 -msgid "Save to Folder:" -msgstr "Salva nella Cartella:" +#: ../../mod/admin.php:641 +msgid "Old style 'Share'" +msgstr "Ricondivisione vecchio stile" -#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 -msgid "Where are you right now?" -msgstr "Dove sei ora?" +#: ../../mod/admin.php:641 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti" -#: ../../include/conversation.php:1008 -msgid "Delete item(s)?" -msgstr "Cancellare questo elemento/i?" +#: ../../mod/admin.php:642 +msgid "Hide help entry from navigation menu" +msgstr "Nascondi la voce 'Guida' dal menu di navigazione" -#: ../../include/conversation.php:1051 -msgid "Post to Email" -msgstr "Invia a email" +#: ../../mod/admin.php:642 +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." -#: ../../include/conversation.php:1056 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." +#: ../../mod/admin.php:643 +msgid "Single user instance" +msgstr "Instanza a singolo utente" -#: ../../include/conversation.php:1057 ../../mod/settings.php:1025 -msgid "Hide your profile details from unknown viewers?" -msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" +#: ../../mod/admin.php:643 +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" -#: ../../include/conversation.php:1090 ../../mod/photos.php:1542 -msgid "Share" -msgstr "Condividi" +#: ../../mod/admin.php:644 +msgid "Maximum image size" +msgstr "Massima dimensione immagini" -#: ../../include/conversation.php:1091 ../../mod/wallmessage.php:154 -#: ../../mod/editpost.php:110 ../../mod/message.php:332 -#: ../../mod/message.php:562 -msgid "Upload photo" -msgstr "Carica foto" +#: ../../mod/admin.php:644 +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." -#: ../../include/conversation.php:1092 ../../mod/editpost.php:111 -msgid "upload photo" -msgstr "carica foto" +#: ../../mod/admin.php:645 +msgid "Maximum image length" +msgstr "Massima lunghezza immagine" -#: ../../include/conversation.php:1093 ../../mod/editpost.php:112 -msgid "Attach file" -msgstr "Allega file" +#: ../../mod/admin.php:645 +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." -#: ../../include/conversation.php:1094 ../../mod/editpost.php:113 -msgid "attach file" -msgstr "allega file" +#: ../../mod/admin.php:646 +msgid "JPEG image quality" +msgstr "Qualità immagini JPEG" -#: ../../include/conversation.php:1095 ../../mod/wallmessage.php:155 -#: ../../mod/editpost.php:114 ../../mod/message.php:333 -#: ../../mod/message.php:563 -msgid "Insert web link" -msgstr "Inserisci link" +#: ../../mod/admin.php:646 +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." -#: ../../include/conversation.php:1096 ../../mod/editpost.php:115 -msgid "web link" -msgstr "link web" +#: ../../mod/admin.php:648 +msgid "Register policy" +msgstr "Politica di registrazione" -#: ../../include/conversation.php:1097 ../../mod/editpost.php:116 -msgid "Insert video link" -msgstr "Inserire collegamento video" +#: ../../mod/admin.php:649 +msgid "Maximum Daily Registrations" +msgstr "Massime registrazioni giornaliere" -#: ../../include/conversation.php:1098 ../../mod/editpost.php:117 -msgid "video link" -msgstr "link video" +#: ../../mod/admin.php:649 +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." -#: ../../include/conversation.php:1099 ../../mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Inserisci collegamento audio" +#: ../../mod/admin.php:650 +msgid "Register text" +msgstr "Testo registrazione" -#: ../../include/conversation.php:1100 ../../mod/editpost.php:119 -msgid "audio link" -msgstr "link audio" +#: ../../mod/admin.php:650 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." -#: ../../include/conversation.php:1101 ../../mod/editpost.php:120 -msgid "Set your location" -msgstr "La tua posizione" +#: ../../mod/admin.php:651 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo x giorni" -#: ../../include/conversation.php:1102 ../../mod/editpost.php:121 -msgid "set location" -msgstr "posizione" +#: ../../mod/admin.php:651 +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." -#: ../../include/conversation.php:1103 ../../mod/editpost.php:122 -msgid "Clear browser location" -msgstr "Rimuovi la localizzazione data dal browser" +#: ../../mod/admin.php:652 +msgid "Allowed friend domains" +msgstr "Domini amici consentiti" -#: ../../include/conversation.php:1104 ../../mod/editpost.php:123 -msgid "clear location" -msgstr "canc. pos." +#: ../../mod/admin.php:652 +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." -#: ../../include/conversation.php:1106 ../../mod/editpost.php:137 -msgid "Set title" -msgstr "Scegli un titolo" +#: ../../mod/admin.php:653 +msgid "Allowed email domains" +msgstr "Domini email consentiti" -#: ../../include/conversation.php:1108 ../../mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Categorie (lista separata da virgola)" +#: ../../mod/admin.php:653 +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." -#: ../../include/conversation.php:1110 ../../mod/editpost.php:125 -msgid "Permission settings" -msgstr "Impostazioni permessi" +#: ../../mod/admin.php:654 +msgid "Block public" +msgstr "Blocca pagine pubbliche" -#: ../../include/conversation.php:1111 -msgid "permissions" -msgstr "permessi" +#: ../../mod/admin.php:654 +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." -#: ../../include/conversation.php:1119 ../../mod/editpost.php:133 -msgid "CC: email addresses" -msgstr "CC: indirizzi email" +#: ../../mod/admin.php:655 +msgid "Force publish" +msgstr "Forza publicazione" -#: ../../include/conversation.php:1120 ../../mod/editpost.php:134 -msgid "Public post" -msgstr "Messaggio pubblico" +#: ../../mod/admin.php:655 +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." -#: ../../include/conversation.php:1122 ../../mod/editpost.php:140 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Esempio: bob@example.com, mary@example.com" +#: ../../mod/admin.php:656 +msgid "Global directory update URL" +msgstr "URL aggiornamento Elenco Globale" -#: ../../include/conversation.php:1126 ../../object/Item.php:687 -#: ../../mod/editpost.php:145 ../../mod/photos.php:1564 -#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 -#: ../../mod/content.php:719 -msgid "Preview" -msgstr "Anteprima" +#: ../../mod/admin.php:656 +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." -#: ../../include/conversation.php:1135 -msgid "Post to Groups" -msgstr "Invia ai Gruppi" +#: ../../mod/admin.php:657 +msgid "Allow threaded items" +msgstr "Permetti commenti nidificati" -#: ../../include/conversation.php:1136 -msgid "Post to Contacts" -msgstr "Invia ai Contatti" +#: ../../mod/admin.php:657 +msgid "Allow infinite level threading for items on this site." +msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito." -#: ../../include/conversation.php:1137 -msgid "Private post" -msgstr "Post privato" +#: ../../mod/admin.php:658 +msgid "Private posts by default for new users" +msgstr "Post privati di default per i nuovi utenti" -#: ../../include/text.php:296 -msgid "newer" -msgstr "nuovi" +#: ../../mod/admin.php:658 +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." -#: ../../include/text.php:298 -msgid "older" -msgstr "vecchi" +#: ../../mod/admin.php:659 +msgid "Don't include post content in email notifications" +msgstr "Non includere il contenuto dei post nelle notifiche via email" -#: ../../include/text.php:303 -msgid "prev" -msgstr "prec" +#: ../../mod/admin.php:659 +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" -#: ../../include/text.php:305 -msgid "first" -msgstr "primo" +#: ../../mod/admin.php:660 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps." -#: ../../include/text.php:337 -msgid "last" -msgstr "ultimo" +#: ../../mod/admin.php:660 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Selezionando questo box si limiterà ai soli membri l'accesso agli addon nel menu applicazioni" -#: ../../include/text.php:340 -msgid "next" -msgstr "succ" +#: ../../mod/admin.php:661 +msgid "Don't embed private images in posts" +msgstr "Non inglobare immagini private nei post" -#: ../../include/text.php:854 -msgid "No contacts" -msgstr "Nessun contatto" +#: ../../mod/admin.php:661 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che puo' richiedere un po' di tempo." -#: ../../include/text.php:863 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contatto" -msgstr[1] "%d contatti" +#: ../../mod/admin.php:662 +msgid "Allow Users to set remote_self" +msgstr "Permetti agli utenti di impostare 'io remoto'" -#: ../../include/text.php:875 ../../mod/viewcontacts.php:76 -msgid "View Contacts" -msgstr "Visualizza i contatti" +#: ../../mod/admin.php:662 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream del'utente." -#: ../../include/text.php:955 ../../mod/editpost.php:109 -#: ../../mod/notes.php:63 ../../mod/filer.php:31 -msgid "Save" -msgstr "Salva" +#: ../../mod/admin.php:663 +msgid "Block multiple registrations" +msgstr "Blocca registrazioni multiple" -#: ../../include/text.php:1004 -msgid "poke" -msgstr "stuzzica" +#: ../../mod/admin.php:663 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Non permette all'utente di registrare account extra da usare come pagine." -#: ../../include/text.php:1005 -msgid "ping" -msgstr "invia un ping" +#: ../../mod/admin.php:664 +msgid "OpenID support" +msgstr "Supporto OpenID" -#: ../../include/text.php:1005 -msgid "pinged" -msgstr "inviato un ping" +#: ../../mod/admin.php:664 +msgid "OpenID support for registration and logins." +msgstr "Supporta OpenID per la registrazione e il login" -#: ../../include/text.php:1006 -msgid "prod" -msgstr "pungola" +#: ../../mod/admin.php:665 +msgid "Fullname check" +msgstr "Controllo nome completo" -#: ../../include/text.php:1006 -msgid "prodded" -msgstr "pungolato" +#: ../../mod/admin.php:665 +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" -#: ../../include/text.php:1007 -msgid "slap" -msgstr "schiaffeggia" +#: ../../mod/admin.php:666 +msgid "UTF-8 Regular expressions" +msgstr "Espressioni regolari UTF-8" -#: ../../include/text.php:1007 -msgid "slapped" -msgstr "schiaffeggiato" +#: ../../mod/admin.php:666 +msgid "Use PHP UTF8 regular expressions" +msgstr "Usa le espressioni regolari PHP in UTF8" -#: ../../include/text.php:1008 -msgid "finger" -msgstr "tocca" +#: ../../mod/admin.php:667 +msgid "Community Page Style" +msgstr "" -#: ../../include/text.php:1008 -msgid "fingered" -msgstr "toccato" +#: ../../mod/admin.php:667 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "" -#: ../../include/text.php:1009 -msgid "rebuff" -msgstr "respingi" +#: ../../mod/admin.php:668 +msgid "Posts per user on community page" +msgstr "" -#: ../../include/text.php:1009 -msgid "rebuffed" -msgstr "respinto" +#: ../../mod/admin.php:668 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "" -#: ../../include/text.php:1023 -msgid "happy" -msgstr "felice" +#: ../../mod/admin.php:669 +msgid "Enable OStatus support" +msgstr "Abilita supporto OStatus" -#: ../../include/text.php:1024 -msgid "sad" -msgstr "triste" +#: ../../mod/admin.php:669 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente." -#: ../../include/text.php:1025 -msgid "mellow" -msgstr "rilassato" +#: ../../mod/admin.php:670 +msgid "OStatus conversation completion interval" +msgstr "Intervallo completamento conversazioni OStatus" -#: ../../include/text.php:1026 -msgid "tired" -msgstr "stanco" +#: ../../mod/admin.php:670 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse." -#: ../../include/text.php:1027 -msgid "perky" -msgstr "vivace" +#: ../../mod/admin.php:671 +msgid "Enable Diaspora support" +msgstr "Abilita il supporto a Diaspora" -#: ../../include/text.php:1028 -msgid "angry" -msgstr "arrabbiato" +#: ../../mod/admin.php:671 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Fornisce compatibilità con il network Diaspora." -#: ../../include/text.php:1029 -msgid "stupified" -msgstr "stupefatto" +#: ../../mod/admin.php:672 +msgid "Only allow Friendica contacts" +msgstr "Permetti solo contatti Friendica" -#: ../../include/text.php:1030 -msgid "puzzled" -msgstr "confuso" +#: ../../mod/admin.php:672 +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." -#: ../../include/text.php:1031 -msgid "interested" -msgstr "interessato" +#: ../../mod/admin.php:673 +msgid "Verify SSL" +msgstr "Verifica SSL" -#: ../../include/text.php:1032 -msgid "bitter" -msgstr "risentito" +#: ../../mod/admin.php:673 +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." -#: ../../include/text.php:1033 -msgid "cheerful" -msgstr "giocoso" +#: ../../mod/admin.php:674 +msgid "Proxy user" +msgstr "Utente Proxy" -#: ../../include/text.php:1034 -msgid "alive" -msgstr "vivo" +#: ../../mod/admin.php:675 +msgid "Proxy URL" +msgstr "URL Proxy" -#: ../../include/text.php:1035 -msgid "annoyed" -msgstr "annoiato" +#: ../../mod/admin.php:676 +msgid "Network timeout" +msgstr "Timeout rete" -#: ../../include/text.php:1036 -msgid "anxious" -msgstr "ansioso" +#: ../../mod/admin.php:676 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)." -#: ../../include/text.php:1037 -msgid "cranky" -msgstr "irritabile" +#: ../../mod/admin.php:677 +msgid "Delivery interval" +msgstr "Intervallo di invio" -#: ../../include/text.php:1038 -msgid "disturbed" -msgstr "disturbato" +#: ../../mod/admin.php:677 +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." -#: ../../include/text.php:1039 -msgid "frustrated" -msgstr "frustato" +#: ../../mod/admin.php:678 +msgid "Poll interval" +msgstr "Intervallo di poll" -#: ../../include/text.php:1040 -msgid "motivated" -msgstr "motivato" +#: ../../mod/admin.php:678 +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." -#: ../../include/text.php:1041 -msgid "relaxed" -msgstr "rilassato" +#: ../../mod/admin.php:679 +msgid "Maximum Load Average" +msgstr "Massimo carico medio" -#: ../../include/text.php:1042 -msgid "surprised" -msgstr "sorpreso" +#: ../../mod/admin.php:679 +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." -#: ../../include/text.php:1210 -msgid "Monday" -msgstr "Lunedì" +#: ../../mod/admin.php:681 +msgid "Use MySQL full text engine" +msgstr "Usa il motore MySQL full text" -#: ../../include/text.php:1210 -msgid "Tuesday" -msgstr "Martedì" +#: ../../mod/admin.php:681 +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." -#: ../../include/text.php:1210 -msgid "Wednesday" -msgstr "Mercoledì" +#: ../../mod/admin.php:682 +msgid "Suppress Language" +msgstr "Disattiva lingua" -#: ../../include/text.php:1210 -msgid "Thursday" -msgstr "Giovedì" +#: ../../mod/admin.php:682 +msgid "Suppress language information in meta information about a posting." +msgstr "Disattiva le informazioni sulla lingua nei meta di un post." -#: ../../include/text.php:1210 -msgid "Friday" -msgstr "Venerdì" +#: ../../mod/admin.php:683 +msgid "Suppress Tags" +msgstr "" -#: ../../include/text.php:1210 -msgid "Saturday" -msgstr "Sabato" +#: ../../mod/admin.php:683 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "" -#: ../../include/text.php:1210 -msgid "Sunday" -msgstr "Domenica" +#: ../../mod/admin.php:684 +msgid "Path to item cache" +msgstr "Percorso cache elementi" -#: ../../include/text.php:1214 -msgid "January" -msgstr "Gennaio" +#: ../../mod/admin.php:685 +msgid "Cache duration in seconds" +msgstr "Durata della cache in secondi" -#: ../../include/text.php:1214 -msgid "February" -msgstr "Febbraio" +#: ../../mod/admin.php:685 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno). Per disabilitare la cache, imposta il valore a -1." -#: ../../include/text.php:1214 -msgid "March" -msgstr "Marzo" +#: ../../mod/admin.php:686 +msgid "Maximum numbers of comments per post" +msgstr "Numero massimo di commenti per post" -#: ../../include/text.php:1214 -msgid "April" -msgstr "Aprile" +#: ../../mod/admin.php:686 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "Quanti commenti devono essere mostrati per ogni post? Default : 100." -#: ../../include/text.php:1214 -msgid "May" -msgstr "Maggio" +#: ../../mod/admin.php:687 +msgid "Path for lock file" +msgstr "Percorso al file di lock" -#: ../../include/text.php:1214 -msgid "June" -msgstr "Giugno" +#: ../../mod/admin.php:688 +msgid "Temp path" +msgstr "Percorso file temporanei" -#: ../../include/text.php:1214 -msgid "July" -msgstr "Luglio" +#: ../../mod/admin.php:689 +msgid "Base path to installation" +msgstr "Percorso base all'installazione" -#: ../../include/text.php:1214 -msgid "August" -msgstr "Agosto" +#: ../../mod/admin.php:690 +msgid "Disable picture proxy" +msgstr "Disabilita il proxy immagini" -#: ../../include/text.php:1214 -msgid "September" -msgstr "Settembre" +#: ../../mod/admin.php:690 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "Il proxy immagini aumenta le performace e la privacy. Non dovrebbe essere usato su server con poca banda disponibile." -#: ../../include/text.php:1214 -msgid "October" -msgstr "Ottobre" +#: ../../mod/admin.php:691 +msgid "Enable old style pager" +msgstr "" -#: ../../include/text.php:1214 -msgid "November" -msgstr "Novembre" +#: ../../mod/admin.php:691 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "" -#: ../../include/text.php:1214 -msgid "December" -msgstr "Dicembre" +#: ../../mod/admin.php:692 +msgid "Only search in tags" +msgstr "" -#: ../../include/text.php:1403 ../../mod/videos.php:301 -msgid "View Video" -msgstr "Guarda Video" +#: ../../mod/admin.php:692 +msgid "On large systems the text search can slow down the system extremely." +msgstr "" -#: ../../include/text.php:1435 -msgid "bytes" -msgstr "bytes" +#: ../../mod/admin.php:694 +msgid "New base url" +msgstr "Nuovo url base" -#: ../../include/text.php:1459 ../../include/text.php:1471 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" +#: ../../mod/admin.php:711 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato segnato come di successo" -#: ../../include/text.php:1645 ../../include/text.php:1655 -#: ../../mod/events.php:335 -msgid "link to source" -msgstr "Collegamento all'originale" +#: ../../mod/admin.php:719 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Aggiornamento struttura database %s applicata con successo." -#: ../../include/text.php:1700 ../../include/user.php:247 -msgid "default" -msgstr "default" +#: ../../mod/admin.php:722 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "Aggiornamento struttura database %s fallita con errore: %s" -#: ../../include/text.php:1712 -msgid "Select an alternate language" -msgstr "Seleziona una diversa lingua" +#: ../../mod/admin.php:734 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Esecuzione di %s fallita con errore: %s" -#: ../../include/text.php:1968 -msgid "activity" -msgstr "attività" +#: ../../mod/admin.php:737 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è stato applicato con successo" -#: ../../include/text.php:1970 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../mod/content.php:605 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "commento" +#: ../../mod/admin.php:741 +#, 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." -#: ../../include/text.php:1971 -msgid "post" -msgstr "messaggio" +#: ../../mod/admin.php:743 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "Non ci sono altre funzioni di aggiornamento %s da richiamare." -#: ../../include/text.php:2139 -msgid "Item filed" -msgstr "Messaggio salvato" +#: ../../mod/admin.php:762 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Uscita effettuata." +#: ../../mod/admin.php:763 +msgid "Check database structure" +msgstr "Controlla struttura database" -#: ../../include/auth.php:112 ../../include/auth.php:175 -#: ../../mod/openid.php:93 -msgid "Login failed." -msgstr "Accesso fallito." +#: ../../mod/admin.php:768 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti" -#: ../../include/auth.php:128 ../../include/user.php:67 +#: ../../mod/admin.php:769 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." +"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." -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "The error message was:" -msgstr "Il messaggio riportato era:" +#: ../../mod/admin.php:770 +msgid "Mark success (if update was manually applied)" +msgstr "Segna completato (se l'update è stato applicato manualmente)" -#: ../../include/bbcode.php:449 ../../include/bbcode.php:1050 -#: ../../include/bbcode.php:1051 -msgid "Image/photo" -msgstr "Immagine/foto" +#: ../../mod/admin.php:771 +msgid "Attempt to execute this update step automatically" +msgstr "Cerco di eseguire questo aggiornamento in automatico" -#: ../../include/bbcode.php:545 +#: ../../mod/admin.php:803 #, php-format -msgid "%2$s %3$s" -msgstr "" +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "\nGentile %1$s,\n l'amministratore di %2$s ha impostato un account per te." -#: ../../include/bbcode.php:579 +#: ../../mod/admin.php:806 #, php-format msgid "" -"%s wrote the following post" -msgstr "%s ha scritto il seguente messaggio" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tThank you and welcome to %4$s." +msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %4$s" -#: ../../include/bbcode.php:1014 ../../include/bbcode.php:1034 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" +#: ../../mod/admin.php:838 ../../include/user.php:413 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" -#: ../../include/bbcode.php:1059 ../../include/bbcode.php:1060 -msgid "Encrypted content" -msgstr "Contenuto criptato" +#: ../../mod/admin.php:850 +#, 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" -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Ciao" +#: ../../mod/admin.php:857 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utente cancellato" +msgstr[1] "%s utenti cancellati" -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Carica una foto per il profilo." +#: ../../mod/admin.php:896 +#, php-format +msgid "User '%s' deleted" +msgstr "Utente '%s' cancellato" -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Ciao " +#: ../../mod/admin.php:904 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utente '%s' sbloccato" -#: ../../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." +#: ../../mod/admin.php:904 +#, php-format +msgid "User '%s' blocked" +msgstr "Utente '%s' bloccato" -#: ../../include/oembed.php:205 -msgid "Embedded content" -msgstr "Contenuto incorporato" +#: ../../mod/admin.php:999 +msgid "Add User" +msgstr "Aggiungi utente" -#: ../../include/oembed.php:214 -msgid "Embedding disabled" -msgstr "Embed disabilitato" +#: ../../mod/admin.php:1000 +msgid "select all" +msgstr "seleziona tutti" -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Maschio" +#: ../../mod/admin.php:1001 +msgid "User registrations waiting for confirm" +msgstr "Richieste di registrazione in attesa di conferma" -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Femmina" +#: ../../mod/admin.php:1002 +msgid "User waiting for permanent deletion" +msgstr "Utente in attesa di cancellazione definitiva" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Al momento maschio" +#: ../../mod/admin.php:1003 +msgid "Request date" +msgstr "Data richiesta" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Al momento femmina" +#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 +#: ../../mod/admin.php:1031 ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 +msgid "Email" +msgstr "Email" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Prevalentemente maschio" +#: ../../mod/admin.php:1004 +msgid "No registrations." +msgstr "Nessuna registrazione." -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Prevalentemente femmina" +#: ../../mod/admin.php:1006 +msgid "Deny" +msgstr "Nega" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" +#: ../../mod/admin.php:1010 +msgid "Site admin" +msgstr "Amministrazione sito" -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersex" +#: ../../mod/admin.php:1011 +msgid "Account expired" +msgstr "Account scaduto" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transessuale" +#: ../../mod/admin.php:1014 +msgid "New User" +msgstr "Nuovo Utente" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Ermafrodito" +#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +msgid "Register date" +msgstr "Data registrazione" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutro" +#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +msgid "Last login" +msgstr "Ultimo accesso" -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Non specificato" +#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 +msgid "Last item" +msgstr "Ultimo elemento" -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Altro" +#: ../../mod/admin.php:1015 +msgid "Deleted since" +msgstr "Rimosso da" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indeciso" +#: ../../mod/admin.php:1016 ../../mod/settings.php:36 +msgid "Account" +msgstr "Account" -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Maschi" +#: ../../mod/admin.php:1018 +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?" -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Femmine" +#: ../../mod/admin.php:1019 +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?" -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gay" +#: ../../mod/admin.php:1029 +msgid "Name of the new user." +msgstr "Nome del nuovo utente." -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbica" +#: ../../mod/admin.php:1030 +msgid "Nickname" +msgstr "Nome utente" -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Nessuna preferenza" +#: ../../mod/admin.php:1030 +msgid "Nickname of the new user." +msgstr "Nome utente del nuovo utente." -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisessuale" +#: ../../mod/admin.php:1031 +msgid "Email address of the new user." +msgstr "Indirizzo Email del nuovo utente." -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosessuale" +#: ../../mod/admin.php:1064 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s disabilitato." -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Astinente" +#: ../../mod/admin.php:1068 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s abilitato." -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Vergine" +#: ../../mod/admin.php:1078 ../../mod/admin.php:1294 +msgid "Disable" +msgstr "Disabilita" -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Deviato" +#: ../../mod/admin.php:1080 ../../mod/admin.php:1296 +msgid "Enable" +msgstr "Abilita" -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetish" +#: ../../mod/admin.php:1103 ../../mod/admin.php:1324 +msgid "Toggle" +msgstr "Inverti" -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Un sacco" +#: ../../mod/admin.php:1111 ../../mod/admin.php:1334 +msgid "Author: " +msgstr "Autore: " -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Asessuato" +#: ../../mod/admin.php:1112 ../../mod/admin.php:1335 +msgid "Maintainer: " +msgstr "Manutentore: " -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Single" +#: ../../mod/admin.php:1254 +msgid "No themes found." +msgstr "Nessun tema trovato." -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Solitario" +#: ../../mod/admin.php:1316 +msgid "Screenshot" +msgstr "Anteprima" -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Disponibile" +#: ../../mod/admin.php:1362 +msgid "[Experimental]" +msgstr "[Sperimentale]" -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Non disponibile" +#: ../../mod/admin.php:1363 +msgid "[Unsupported]" +msgstr "[Non supportato]" -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "è cotto/a" +#: ../../mod/admin.php:1390 +msgid "Log settings updated." +msgstr "Impostazioni Log aggiornate." -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "infatuato/a" +#: ../../mod/admin.php:1446 +msgid "Clear" +msgstr "Pulisci" -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Disponibile a un incontro" +#: ../../mod/admin.php:1452 +msgid "Enable Debugging" +msgstr "Abilita Debugging" -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Infedele" +#: ../../mod/admin.php:1453 +msgid "Log file" +msgstr "File di Log" -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Sesso-dipendente" +#: ../../mod/admin.php:1453 +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." -#: ../../include/profile_selectors.php:42 ../../include/user.php:289 -#: ../../include/user.php:293 -msgid "Friends" -msgstr "Amici" +#: ../../mod/admin.php:1454 +msgid "Log level" +msgstr "Livello di Log" -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Amici con benefici" +#: ../../mod/admin.php:1504 +msgid "Close" +msgstr "Chiudi" -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Casual" +#: ../../mod/admin.php:1510 +msgid "FTP Host" +msgstr "Indirizzo FTP" -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Impegnato" +#: ../../mod/admin.php:1511 +msgid "FTP Path" +msgstr "Percorso FTP" -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Sposato" +#: ../../mod/admin.php:1512 +msgid "FTP User" +msgstr "Utente FTP" -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "immaginariamente sposato/a" +#: ../../mod/admin.php:1513 +msgid "FTP Password" +msgstr "Pasword FTP" -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Partners" +#: ../../mod/network.php:142 +msgid "Search Results For:" +msgstr "Cerca risultati per:" -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Coinquilino" +#: ../../mod/network.php:185 ../../mod/search.php:21 +msgid "Remove term" +msgstr "Rimuovi termine" -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "diritto comune" +#: ../../mod/network.php:194 ../../mod/search.php:30 +#: ../../include/features.php:42 +msgid "Saved Searches" +msgstr "Ricerche salvate" -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Felice" +#: ../../mod/network.php:195 ../../include/group.php:275 +msgid "add" +msgstr "aggiungi" -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Non guarda" +#: ../../mod/network.php:356 +msgid "Commented Order" +msgstr "Ordina per commento" -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Scambista" +#: ../../mod/network.php:359 +msgid "Sort by Comment Date" +msgstr "Ordina per data commento" -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Tradito" +#: ../../mod/network.php:362 +msgid "Posted Order" +msgstr "Ordina per invio" -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Separato" +#: ../../mod/network.php:365 +msgid "Sort by Post Date" +msgstr "Ordina per data messaggio" -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Instabile" +#: ../../mod/network.php:374 +msgid "Posts that mention or involve you" +msgstr "Messaggi che ti citano o coinvolgono" -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Divorziato" +#: ../../mod/network.php:380 +msgid "New" +msgstr "Nuovo" -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "immaginariamente divorziato/a" +#: ../../mod/network.php:383 +msgid "Activity Stream - by date" +msgstr "Activity Stream - per data" -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Vedovo" +#: ../../mod/network.php:389 +msgid "Shared Links" +msgstr "Links condivisi" -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Incerto" +#: ../../mod/network.php:392 +msgid "Interesting Links" +msgstr "Link Interessanti" -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "E' complicato" +#: ../../mod/network.php:398 +msgid "Starred" +msgstr "Preferiti" -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Non interessa" +#: ../../mod/network.php:401 +msgid "Favourite Posts" +msgstr "Messaggi preferiti" -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Chiedimelo" +#: ../../mod/network.php:463 +#, 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." -#: ../../include/user.php:40 -msgid "An invitation is required." -msgstr "E' richiesto un invito." +#: ../../mod/network.php:466 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente." -#: ../../include/user.php:45 -msgid "Invitation could not be verified." -msgstr "L'invito non puo' essere verificato." +#: ../../mod/network.php:520 ../../mod/content.php:119 +msgid "No such group" +msgstr "Nessun gruppo" -#: ../../include/user.php:53 -msgid "Invalid OpenID url" -msgstr "Url OpenID non valido" +#: ../../mod/network.php:537 ../../mod/content.php:130 +msgid "Group is empty" +msgstr "Il gruppo è vuoto" -#: ../../include/user.php:74 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." +#: ../../mod/network.php:544 ../../mod/content.php:134 +msgid "Group: " +msgstr "Gruppo: " -#: ../../include/user.php:88 -msgid "Please use a shorter name." -msgstr "Usa un nome più corto." +#: ../../mod/network.php:554 +msgid "Contact: " +msgstr "Contatto:" -#: ../../include/user.php:90 -msgid "Name too short." -msgstr "Il nome è troppo corto." +#: ../../mod/network.php:556 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente." -#: ../../include/user.php:105 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." +#: ../../mod/network.php:561 +msgid "Invalid contact." +msgstr "Contatto non valido." -#: ../../include/user.php:110 -msgid "Your email domain is not among those allowed on this site." -msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito." +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Amici di %s" -#: ../../include/user.php:113 -msgid "Not a valid email address." -msgstr "L'indirizzo email non è valido." +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Nessun amico da visualizzare." -#: ../../include/user.php:126 -msgid "Cannot use that email." -msgstr "Non puoi usare quell'email." +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "Titolo e ora di inizio dell'evento sono richiesti." -#: ../../include/user.php:132 -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." +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "l j F" -#: ../../include/user.php:138 ../../include/user.php:236 -msgid "Nickname is already registered. Please choose another." -msgstr "Nome utente già registrato. Scegline un altro." +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "Modifca l'evento" -#: ../../include/user.php:148 -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." +#: ../../mod/events.php:335 ../../include/text.php:1647 +#: ../../include/text.php:1657 +msgid "link to source" +msgstr "Collegamento all'originale" -#: ../../include/user.php:164 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." +#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80 +#: ../../view/theme/diabook/theme.php:127 +msgid "Events" +msgstr "Eventi" -#: ../../include/user.php:222 -msgid "An error occurred during registration. Please try again." -msgstr "C'è stato un errore durante la registrazione. Prova ancora." +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "Crea un nuovo evento" -#: ../../include/user.php:257 -msgid "An error occurred creating your default profile. Please try again." -msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora." +#: ../../mod/events.php:372 +msgid "Previous" +msgstr "Precendente" -#: ../../include/user.php:377 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "\nGentile %1$s,\nGrazie per esserti registrato su %2$s. Il tuo account è stato creato." +#: ../../mod/events.php:373 ../../mod/install.php:207 +msgid "Next" +msgstr "Successivo" -#: ../../include/user.php:381 -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." -msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3$s\n Nome utente: %1$s\n Password: %5$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2$s" +#: ../../mod/events.php:446 +msgid "hour:minute" +msgstr "ora:minuti" + +#: ../../mod/events.php:456 +msgid "Event details" +msgstr "Dettagli dell'evento" -#: ../../include/user.php:413 ../../mod/admin.php:799 +#: ../../mod/events.php:457 #, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" +msgid "Format is %s %s. Starting date and Title are required." +msgstr "Il formato è %s %s. Data di inizio e Titolo sono richiesti." -#: ../../include/acl_selectors.php:326 -msgid "Visible to everybody" -msgstr "Visibile a tutti" +#: ../../mod/events.php:459 +msgid "Event Starts:" +msgstr "L'evento inizia:" -#: ../../object/Item.php:94 -msgid "This entry was edited" -msgstr "Questa voce è stata modificata" +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" +msgstr "Richiesto" -#: ../../object/Item.php:116 ../../mod/photos.php:1357 -#: ../../mod/content.php:620 -msgid "Private Message" -msgstr "Messaggio privato" +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" +msgstr "La data/ora di fine non è definita" -#: ../../object/Item.php:120 ../../mod/settings.php:673 -#: ../../mod/content.php:728 -msgid "Edit" -msgstr "Modifica" +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "L'evento finisce:" -#: ../../object/Item.php:133 ../../mod/content.php:763 -msgid "save to folder" -msgstr "salva nella cartella" +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "Visualizza con il fuso orario di chi legge" -#: ../../object/Item.php:195 ../../mod/content.php:753 -msgid "add star" -msgstr "aggiungi a speciali" +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "Descrizione:" -#: ../../object/Item.php:196 ../../mod/content.php:754 -msgid "remove star" -msgstr "rimuovi da speciali" +#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648 +#: ../../include/bb2diaspora.php:170 ../../include/event.php:40 +msgid "Location:" +msgstr "Posizione:" -#: ../../object/Item.php:197 ../../mod/content.php:755 -msgid "toggle star status" -msgstr "Inverti stato preferito" +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "Titolo:" -#: ../../object/Item.php:200 ../../mod/content.php:758 -msgid "starred" -msgstr "preferito" +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "Condividi questo evento" -#: ../../object/Item.php:208 -msgid "ignore thread" -msgstr "ignora la discussione" +#: ../../mod/content.php:437 ../../mod/content.php:740 +#: ../../mod/photos.php:1653 ../../object/Item.php:129 +#: ../../include/conversation.php:613 +msgid "Select" +msgstr "Seleziona" -#: ../../object/Item.php:209 -msgid "unignore thread" -msgstr "non ignorare la discussione" +#: ../../mod/content.php:471 ../../mod/content.php:852 +#: ../../mod/content.php:853 ../../object/Item.php:326 +#: ../../object/Item.php:327 ../../include/conversation.php:654 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" -#: ../../object/Item.php:210 -msgid "toggle ignore status" -msgstr "inverti stato \"Ignora\"" +#: ../../mod/content.php:481 ../../mod/content.php:864 +#: ../../object/Item.php:340 ../../include/conversation.php:674 +#, php-format +msgid "%s from %s" +msgstr "%s da %s" -#: ../../object/Item.php:213 -msgid "ignored" -msgstr "ignorato" +#: ../../mod/content.php:497 ../../include/conversation.php:690 +msgid "View in context" +msgstr "Vedi nel contesto" -#: ../../object/Item.php:220 ../../mod/content.php:759 -msgid "add tag" -msgstr "aggiungi tag" +#: ../../mod/content.php:603 ../../object/Item.php:387 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" + +#: ../../mod/content.php:605 ../../object/Item.php:389 +#: ../../object/Item.php:402 ../../include/text.php:1972 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "commento" + +#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390 +#: ../../include/contact_widgets.php:205 +msgid "show more" +msgstr "mostra di più" + +#: ../../mod/content.php:620 ../../mod/photos.php:1359 +#: ../../object/Item.php:116 +msgid "Private Message" +msgstr "Messaggio privato" -#: ../../object/Item.php:231 ../../mod/photos.php:1540 -#: ../../mod/content.php:684 +#: ../../mod/content.php:684 ../../mod/photos.php:1542 +#: ../../object/Item.php:231 msgid "I like this (toggle)" msgstr "Mi piace (clic per cambiare)" -#: ../../object/Item.php:231 ../../mod/content.php:684 +#: ../../mod/content.php:684 ../../object/Item.php:231 msgid "like" msgstr "mi piace" -#: ../../object/Item.php:232 ../../mod/photos.php:1541 -#: ../../mod/content.php:685 +#: ../../mod/content.php:685 ../../mod/photos.php:1543 +#: ../../object/Item.php:232 msgid "I don't like this (toggle)" msgstr "Non mi piace (clic per cambiare)" -#: ../../object/Item.php:232 ../../mod/content.php:685 +#: ../../mod/content.php:685 ../../object/Item.php:232 msgid "dislike" msgstr "non mi piace" -#: ../../object/Item.php:234 ../../mod/content.php:687 +#: ../../mod/content.php:687 ../../object/Item.php:234 msgid "Share this" msgstr "Condividi questo" -#: ../../object/Item.php:234 ../../mod/content.php:687 +#: ../../mod/content.php:687 ../../object/Item.php:234 msgid "share" msgstr "condividi" -#: ../../object/Item.php:328 ../../mod/content.php:854 -msgid "to" -msgstr "a" - -#: ../../object/Item.php:329 -msgid "via" -msgstr "via" - -#: ../../object/Item.php:330 ../../mod/content.php:855 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" - -#: ../../object/Item.php:331 ../../mod/content.php:856 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca" - -#: ../../object/Item.php:387 ../../mod/content.php:603 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" - -#: ../../object/Item.php:675 ../../mod/photos.php:1560 -#: ../../mod/photos.php:1604 ../../mod/photos.php:1692 -#: ../../mod/content.php:707 +#: ../../mod/content.php:707 ../../mod/photos.php:1562 +#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 +#: ../../object/Item.php:675 msgid "This is you" msgstr "Questo sei tu" -#: ../../object/Item.php:679 ../../mod/content.php:711 +#: ../../mod/content.php:709 ../../mod/photos.php:1564 +#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:750 +#: ../../object/Item.php:361 ../../object/Item.php:677 +msgid "Comment" +msgstr "Commento" + +#: ../../mod/content.php:711 ../../object/Item.php:679 msgid "Bold" msgstr "Grassetto" -#: ../../object/Item.php:680 ../../mod/content.php:712 +#: ../../mod/content.php:712 ../../object/Item.php:680 msgid "Italic" msgstr "Corsivo" -#: ../../object/Item.php:681 ../../mod/content.php:713 +#: ../../mod/content.php:713 ../../object/Item.php:681 msgid "Underline" msgstr "Sottolineato" -#: ../../object/Item.php:682 ../../mod/content.php:714 +#: ../../mod/content.php:714 ../../object/Item.php:682 msgid "Quote" msgstr "Citazione" -#: ../../object/Item.php:683 ../../mod/content.php:715 +#: ../../mod/content.php:715 ../../object/Item.php:683 msgid "Code" msgstr "Codice" -#: ../../object/Item.php:684 ../../mod/content.php:716 +#: ../../mod/content.php:716 ../../object/Item.php:684 msgid "Image" msgstr "Immagine" -#: ../../object/Item.php:685 ../../mod/content.php:717 +#: ../../mod/content.php:717 ../../object/Item.php:685 msgid "Link" msgstr "Link" -#: ../../object/Item.php:686 ../../mod/content.php:718 +#: ../../mod/content.php:718 ../../object/Item.php:686 msgid "Video" msgstr "Video" -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Oggetto non disponibile." +#: ../../mod/content.php:719 ../../mod/editpost.php:145 +#: ../../mod/photos.php:1566 ../../mod/photos.php:1610 +#: ../../mod/photos.php:1698 ../../object/Item.php:687 +#: ../../include/conversation.php:1126 +msgid "Preview" +msgstr "Anteprima" -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Oggetto non trovato." +#: ../../mod/content.php:728 ../../mod/settings.php:676 +#: ../../object/Item.php:120 +msgid "Edit" +msgstr "Modifica" -#: ../../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/content.php:753 ../../object/Item.php:195 +msgid "add star" +msgstr "aggiungi a speciali" -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 -msgid "No recipient selected." -msgstr "Nessun destinatario selezionato." +#: ../../mod/content.php:754 ../../object/Item.php:196 +msgid "remove star" +msgstr "rimuovi da speciali" -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Impossibile controllare la tua posizione di origine." +#: ../../mod/content.php:755 ../../object/Item.php:197 +msgid "toggle star status" +msgstr "Inverti stato preferito" -#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 -msgid "Message could not be sent." -msgstr "Il messaggio non puo' essere inviato." +#: ../../mod/content.php:758 ../../object/Item.php:200 +msgid "starred" +msgstr "preferito" -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "Errore recuperando il messaggio." +#: ../../mod/content.php:759 ../../object/Item.php:220 +msgid "add tag" +msgstr "aggiungi tag" -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -msgid "Message sent." -msgstr "Messaggio inviato." +#: ../../mod/content.php:763 ../../object/Item.php:133 +msgid "save to folder" +msgstr "salva nella cartella" -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Nessun destinatario." +#: ../../mod/content.php:854 ../../object/Item.php:328 +msgid "to" +msgstr "a" -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" +#: ../../mod/content.php:855 ../../object/Item.php:330 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" -#: ../../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/content.php:856 ../../object/Item.php:331 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca" -#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 -#: ../../mod/message.php:553 -msgid "To:" -msgstr "A:" +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Rimuovi il mio account" -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 -msgid "Subject:" -msgstr "Oggetto:" +#: ../../mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -#: ../../mod/message.php:329 ../../mod/message.php:558 -msgid "Your message:" -msgstr "Il tuo messaggio:" +#: ../../mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Gruppo creato." +#: ../../mod/install.php:117 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica Comunicazione Server - Impostazioni" -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Impossibile creare il gruppo." +#: ../../mod/install.php:123 +msgid "Could not connect to database." +msgstr " Impossibile collegarsi con il database." -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Gruppo non trovato." +#: ../../mod/install.php:127 +msgid "Could not create table." +msgstr "Impossibile creare le tabelle." -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Il nome del gruppo è cambiato." +#: ../../mod/install.php:133 +msgid "Your Friendica site database has been installed." +msgstr "Il tuo Friendica è stato installato." -#: ../../mod/group.php:87 -msgid "Save Group" -msgstr "Salva gruppo" +#: ../../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/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Crea un gruppo di amici/contatti." +#: ../../mod/install.php:139 ../../mod/install.php:206 +#: ../../mod/install.php:525 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Leggi il file \"INSTALL.txt\"." -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Nome del gruppo:" +#: ../../mod/install.php:203 +msgid "System check" +msgstr "Controllo sistema" -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Gruppo rimosso." +#: ../../mod/install.php:208 +msgid "Check again" +msgstr "Controlla ancora" -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Impossibile rimuovere il gruppo." +#: ../../mod/install.php:227 +msgid "Database connection" +msgstr "Connessione al database" -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Modifica gruppo" +#: ../../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/group.php:192 -msgid "Members" -msgstr "Membri" +#: ../../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/group.php:194 ../../mod/contacts.php:562 -msgid "All Contacts" -msgstr "Tutti i contatti" +#: ../../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/group.php:224 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." +#: ../../mod/install.php:234 +msgid "Database Server Name" +msgstr "Nome del database server" -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Nessun potenziale delegato per la pagina è stato trovato." +#: ../../mod/install.php:235 +msgid "Database Login Name" +msgstr "Nome utente database" -#: ../../mod/delegate.php:126 -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/install.php:236 +msgid "Database Login Password" +msgstr "Password utente database" -#: ../../mod/delegate.php:127 -msgid "Existing Page Managers" -msgstr "Gestori Pagina Esistenti" +#: ../../mod/install.php:237 +msgid "Database Name" +msgstr "Nome database" -#: ../../mod/delegate.php:129 -msgid "Existing Page Delegates" -msgstr "Delegati Pagina Esistenti" +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "Site administrator email address" +msgstr "Indirizzo email dell'amministratore del sito" -#: ../../mod/delegate.php:131 -msgid "Potential Delegates" -msgstr "Delegati Potenziali" +#: ../../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/delegate.php:133 ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Rimuovi" +#: ../../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/delegate.php:134 -msgid "Add" -msgstr "Aggiungi" +#: ../../mod/install.php:267 +msgid "Site settings" +msgstr "Impostazioni sito" -#: ../../mod/delegate.php:135 -msgid "No entries." -msgstr "Nessun articolo." +#: ../../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/notifications.php:26 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." +#: ../../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/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "Scarta" +#: ../../mod/install.php:326 +msgid "PHP executable path" +msgstr "Percorso eseguibile PHP" -#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:210 ../../mod/contacts.php:443 -#: ../../mod/contacts.php:497 ../../mod/contacts.php:707 -msgid "Ignore" -msgstr "Ignora" +#: ../../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/notifications.php:78 -msgid "System" -msgstr "Sistema" +#: ../../mod/install.php:331 +msgid "Command line PHP" +msgstr "PHP da riga di comando" -#: ../../mod/notifications.php:88 ../../mod/network.php:365 -msgid "Personal" -msgstr "Personale" +#: ../../mod/install.php:340 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)" -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Mostra richieste ignorate" +#: ../../mod/install.php:341 +msgid "Found PHP version: " +msgstr "Versione PHP:" -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Nascondi richieste ignorate" +#: ../../mod/install.php:343 +msgid "PHP cli binary" +msgstr "Binario PHP cli" -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "Tipo di notifica: " +#: ../../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/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Amico suggerito" +#: ../../mod/install.php:355 +msgid "This is required for message delivery to work." +msgstr "E' obbligatorio per far funzionare la consegna dei messaggi." -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "sugerito da %s" +#: ../../mod/install.php:357 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 -#: ../../mod/contacts.php:503 -msgid "Hide this contact from others" -msgstr "Nascondi questo contatto agli altri" +#: ../../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/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "Invia una attività \"è ora amico con\"" +#: ../../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/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "se applicabile" +#: ../../mod/install.php:381 +msgid "Generate encryption keys" +msgstr "Genera chiavi di criptazione" -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 -#: ../../mod/admin.php:966 -msgid "Approve" -msgstr "Approva" +#: ../../mod/install.php:388 +msgid "libCurl PHP module" +msgstr "modulo PHP libCurl" -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Dice di conoscerti: " +#: ../../mod/install.php:389 +msgid "GD graphics PHP module" +msgstr "modulo PHP GD graphics" -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "si" +#: ../../mod/install.php:390 +msgid "OpenSSL PHP module" +msgstr "modulo PHP OpenSSL" -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "no" +#: ../../mod/install.php:391 +msgid "mysqli PHP module" +msgstr "modulo PHP mysqli" -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Approva come: " +#: ../../mod/install.php:392 +msgid "mb_string PHP module" +msgstr "modulo PHP mb_string" -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "Amico" +#: ../../mod/install.php:397 ../../mod/install.php:399 +msgid "Apache mod_rewrite module" +msgstr "Modulo mod_rewrite di Apache" -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "Condivisore" +#: ../../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/notifications.php:190 -msgid "Fan/Admirer" -msgstr "Fan/Ammiratore" +#: ../../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/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "Richiesta amicizia/connessione" +#: ../../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/notifications.php:196 -msgid "New Follower" -msgstr "Qualcuno inizia a seguirti" +#: ../../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/notifications.php:217 -msgid "No introductions." -msgstr "Nessuna presentazione." +#: ../../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/notifications.php:258 ../../mod/notifications.php:387 -#: ../../mod/notifications.php:478 -#, php-format -msgid "%s liked %s's post" -msgstr "a %s è piaciuto il messaggio di %s" +#: ../../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/notifications.php:268 ../../mod/notifications.php:397 -#: ../../mod/notifications.php:488 +#: ../../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:523 +msgid "

What next

" +msgstr "

Cosa fare ora

" + +#: ../../mod/install.php:524 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller." + +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 #, php-format -msgid "%s disliked %s's post" -msgstr "a %s non è piaciuto il messaggio di %s" +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito." -#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 -#: ../../mod/notifications.php:503 +#: ../../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 "%s is now friends with %s" -msgstr "%s è ora amico di %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 "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti." -#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 +#: ../../mod/help.php:79 +msgid "Help:" +msgstr "Guida:" + +#: ../../mod/help.php:84 ../../include/nav.php:114 +msgid "Help" +msgstr "Guida" + +#: ../../mod/help.php:90 ../../index.php:256 +msgid "Not Found" +msgstr "Non trovato" + +#: ../../mod/help.php:93 ../../index.php:259 +msgid "Page not found." +msgstr "Pagina non trovata." + +#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #, php-format -msgid "%s created a new post" -msgstr "%s a creato un nuovo messaggio" +msgid "%1$s welcomes %2$s" +msgstr "%s dà il benvenuto a %s" -#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 -#: ../../mod/notifications.php:513 +#: ../../mod/home.php:35 #, php-format -msgid "%s commented on %s's post" -msgstr "%s ha commentato il messaggio di %s" +msgid "Welcome to %s" +msgstr "Benvenuto su %s" -#: ../../mod/notifications.php:306 -msgid "No more network notifications." -msgstr "Nessuna nuova." +#: ../../mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta" -#: ../../mod/notifications.php:310 -msgid "Network Notifications" -msgstr "Notifiche dalla rete" +#: ../../mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "O.. non avrai provato a caricare un file vuoto?" -#: ../../mod/notifications.php:336 ../../mod/notify.php:75 -msgid "No more system notifications." -msgstr "Nessuna nuova notifica di sistema." +#: ../../mod/wall_attach.php:81 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Il file supera la dimensione massima di %d" -#: ../../mod/notifications.php:340 ../../mod/notify.php:79 -msgid "System Notifications" -msgstr "Notifiche di sistema" +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +msgid "File upload failed." +msgstr "Caricamento del file non riuscito." -#: ../../mod/notifications.php:435 -msgid "No more personal notifications." -msgstr "Nessuna nuova." +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Profili corrispondenti" -#: ../../mod/notifications.php:439 -msgid "Personal Notifications" -msgstr "Notifiche personali" +#: ../../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/notifications.php:520 -msgid "No more home notifications." -msgstr "Nessuna nuova." +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "è interessato a:" -#: ../../mod/notifications.php:524 -msgid "Home Notifications" -msgstr "Notifiche bacheca" +#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568 +#: ../../include/contact_widgets.php:10 +msgid "Connect" +msgstr "Connetti" -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Nessun profilo" +#: ../../mod/share.php:44 +msgid "link" +msgstr "collegamento" + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Non disponibile." + +#: ../../mod/community.php:32 ../../include/nav.php:129 +#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129 +msgid "Community" +msgstr "Comunità" + +#: ../../mod/community.php:62 ../../mod/community.php:71 +#: ../../mod/search.php:168 ../../mod/search.php:192 +msgid "No results." +msgstr "Nessun risultato." #: ../../mod/settings.php:29 ../../mod/photos.php:80 msgid "everybody" msgstr "tutti" -#: ../../mod/settings.php:36 ../../mod/admin.php:977 -msgid "Account" -msgstr "Account" - #: ../../mod/settings.php:41 msgid "Additional features" msgstr "Funzionalità aggiuntive" @@ -3387,14 +3640,13 @@ msgstr "Funzionalità aggiuntive" msgid "Display" msgstr "Visualizzazione" -#: ../../mod/settings.php:52 ../../mod/settings.php:777 +#: ../../mod/settings.php:52 ../../mod/settings.php:780 msgid "Social Networks" msgstr "Social Networks" -#: ../../mod/settings.php:57 ../../mod/admin.php:106 ../../mod/admin.php:1063 -#: ../../mod/admin.php:1116 -msgid "Plugins" -msgstr "Plugin" +#: ../../mod/settings.php:62 ../../include/nav.php:170 +msgid "Delegations" +msgstr "Delegazioni" #: ../../mod/settings.php:67 msgid "Connected apps" @@ -3412,11 +3664,6 @@ msgstr "Rimuovi account" msgid "Missing some important data!" msgstr "Mancano alcuni dati importanti!" -#: ../../mod/settings.php:132 ../../mod/settings.php:637 -#: ../../mod/contacts.php:705 -msgid "Update" -msgstr "Aggiorna" - #: ../../mod/settings.php:238 msgid "Failed to connect with email account using the settings provided." msgstr "Impossibile collegarsi all'account email con i parametri forniti." @@ -3453,4252 +3700,4178 @@ msgstr "Password cambiata." msgid "Password update failed. Please try again." msgstr "Aggiornamento password fallito. Prova ancora." -#: ../../mod/settings.php:426 +#: ../../mod/settings.php:428 msgid " Please use a shorter name." msgstr " Usa un nome più corto." -#: ../../mod/settings.php:428 +#: ../../mod/settings.php:430 msgid " Name too short." msgstr " Nome troppo corto." -#: ../../mod/settings.php:437 +#: ../../mod/settings.php:439 msgid "Wrong Password" msgstr "Password Sbagliata" -#: ../../mod/settings.php:442 +#: ../../mod/settings.php:444 msgid " Not valid email." msgstr " Email non valida." -#: ../../mod/settings.php:448 +#: ../../mod/settings.php:450 msgid " Cannot change to that email." msgstr "Non puoi usare quella email." -#: ../../mod/settings.php:503 +#: ../../mod/settings.php:506 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:507 +#: ../../mod/settings.php:510 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:537 +#: ../../mod/settings.php:540 msgid "Settings updated." msgstr "Impostazioni aggiornate." -#: ../../mod/settings.php:610 ../../mod/settings.php:636 -#: ../../mod/settings.php:672 +#: ../../mod/settings.php:613 ../../mod/settings.php:639 +#: ../../mod/settings.php:675 msgid "Add application" msgstr "Aggiungi applicazione" -#: ../../mod/settings.php:611 ../../mod/settings.php:721 -#: ../../mod/settings.php:795 ../../mod/settings.php:877 -#: ../../mod/settings.php:1110 ../../mod/admin.php:588 -#: ../../mod/admin.php:1117 ../../mod/admin.php:1319 ../../mod/admin.php:1406 -msgid "Save Settings" -msgstr "Salva Impostazioni" - -#: ../../mod/settings.php:613 ../../mod/settings.php:639 -#: ../../mod/admin.php:964 ../../mod/admin.php:976 ../../mod/admin.php:977 -#: ../../mod/admin.php:990 ../../mod/crepair.php:158 -msgid "Name" -msgstr "Nome" - -#: ../../mod/settings.php:614 ../../mod/settings.php:640 +#: ../../mod/settings.php:617 ../../mod/settings.php:643 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../mod/settings.php:615 ../../mod/settings.php:641 +#: ../../mod/settings.php:618 ../../mod/settings.php:644 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../mod/settings.php:616 ../../mod/settings.php:642 +#: ../../mod/settings.php:619 ../../mod/settings.php:645 msgid "Redirect" msgstr "Redirect" -#: ../../mod/settings.php:617 ../../mod/settings.php:643 +#: ../../mod/settings.php:620 ../../mod/settings.php:646 msgid "Icon url" msgstr "Url icona" -#: ../../mod/settings.php:628 +#: ../../mod/settings.php:631 msgid "You can't edit this application." msgstr "Non puoi modificare questa applicazione." -#: ../../mod/settings.php:671 +#: ../../mod/settings.php:674 msgid "Connected Apps" msgstr "Applicazioni Collegate" -#: ../../mod/settings.php:675 +#: ../../mod/settings.php:678 msgid "Client key starts with" msgstr "Chiave del client inizia con" -#: ../../mod/settings.php:676 +#: ../../mod/settings.php:679 msgid "No name" msgstr "Nessun nome" -#: ../../mod/settings.php:677 +#: ../../mod/settings.php:680 msgid "Remove authorization" msgstr "Rimuovi l'autorizzazione" -#: ../../mod/settings.php:689 +#: ../../mod/settings.php:692 msgid "No Plugin settings configured" msgstr "Nessun plugin ha impostazioni modificabili" -#: ../../mod/settings.php:697 +#: ../../mod/settings.php:700 msgid "Plugin Settings" msgstr "Impostazioni plugin" -#: ../../mod/settings.php:711 +#: ../../mod/settings.php:714 msgid "Off" msgstr "Spento" -#: ../../mod/settings.php:711 +#: ../../mod/settings.php:714 msgid "On" msgstr "Acceso" -#: ../../mod/settings.php:719 +#: ../../mod/settings.php:722 msgid "Additional Features" msgstr "Funzionalità aggiuntive" -#: ../../mod/settings.php:733 ../../mod/settings.php:734 +#: ../../mod/settings.php:736 ../../mod/settings.php:737 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Il supporto integrato per la connettività con %s è %s" -#: ../../mod/settings.php:733 ../../mod/settings.php:734 +#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../mod/settings.php:736 ../../mod/settings.php:737 msgid "enabled" msgstr "abilitato" -#: ../../mod/settings.php:733 ../../mod/settings.php:734 +#: ../../mod/settings.php:736 ../../mod/settings.php:737 msgid "disabled" msgstr "disabilitato" -#: ../../mod/settings.php:734 +#: ../../mod/settings.php:737 msgid "StatusNet" msgstr "StatusNet" -#: ../../mod/settings.php:770 +#: ../../mod/settings.php:773 msgid "Email access is disabled on this site." msgstr "L'accesso email è disabilitato su questo sito." -#: ../../mod/settings.php:782 +#: ../../mod/settings.php:785 msgid "Email/Mailbox Setup" msgstr "Impostazioni email" -#: ../../mod/settings.php:783 +#: ../../mod/settings.php:786 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:784 +#: ../../mod/settings.php:787 msgid "Last successful email check:" msgstr "Ultimo controllo email eseguito con successo:" -#: ../../mod/settings.php:786 +#: ../../mod/settings.php:789 msgid "IMAP server name:" msgstr "Nome server IMAP:" -#: ../../mod/settings.php:787 +#: ../../mod/settings.php:790 msgid "IMAP port:" msgstr "Porta IMAP:" -#: ../../mod/settings.php:788 +#: ../../mod/settings.php:791 msgid "Security:" msgstr "Sicurezza:" -#: ../../mod/settings.php:788 ../../mod/settings.php:793 +#: ../../mod/settings.php:791 ../../mod/settings.php:796 msgid "None" msgstr "Nessuna" -#: ../../mod/settings.php:789 +#: ../../mod/settings.php:792 msgid "Email login name:" msgstr "Nome utente email:" -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:793 msgid "Email password:" msgstr "Password email:" -#: ../../mod/settings.php:791 +#: ../../mod/settings.php:794 msgid "Reply-to address:" msgstr "Indirizzo di risposta:" -#: ../../mod/settings.php:792 +#: ../../mod/settings.php:795 msgid "Send public posts to all email contacts:" msgstr "Invia i messaggi pubblici ai contatti email:" -#: ../../mod/settings.php:793 +#: ../../mod/settings.php:796 msgid "Action after import:" msgstr "Azione post importazione:" -#: ../../mod/settings.php:793 +#: ../../mod/settings.php:796 msgid "Mark as seen" msgstr "Segna come letto" -#: ../../mod/settings.php:793 +#: ../../mod/settings.php:796 msgid "Move to folder" msgstr "Sposta nella cartella" -#: ../../mod/settings.php:794 +#: ../../mod/settings.php:797 msgid "Move to folder:" msgstr "Sposta nella cartella:" -#: ../../mod/settings.php:825 ../../mod/admin.php:523 -msgid "No special theme for mobile devices" -msgstr "Nessun tema speciale per i dispositivi mobili" - -#: ../../mod/settings.php:875 +#: ../../mod/settings.php:878 msgid "Display Settings" msgstr "Impostazioni Grafiche" -#: ../../mod/settings.php:881 ../../mod/settings.php:896 +#: ../../mod/settings.php:884 ../../mod/settings.php:899 msgid "Display Theme:" msgstr "Tema:" -#: ../../mod/settings.php:882 +#: ../../mod/settings.php:885 msgid "Mobile Theme:" msgstr "Tema mobile:" -#: ../../mod/settings.php:883 +#: ../../mod/settings.php:886 msgid "Update browser every xx seconds" msgstr "Aggiorna il browser ogni x secondi" -#: ../../mod/settings.php:883 +#: ../../mod/settings.php:886 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimo 10 secondi, nessun limite massimo" -#: ../../mod/settings.php:884 +#: ../../mod/settings.php:887 msgid "Number of items to display per page:" msgstr "Numero di elementi da mostrare per pagina:" -#: ../../mod/settings.php:884 ../../mod/settings.php:885 +#: ../../mod/settings.php:887 ../../mod/settings.php:888 msgid "Maximum of 100 items" msgstr "Massimo 100 voci" -#: ../../mod/settings.php:885 +#: ../../mod/settings.php:888 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:" -#: ../../mod/settings.php:886 +#: ../../mod/settings.php:889 msgid "Don't show emoticons" msgstr "Non mostrare le emoticons" -#: ../../mod/settings.php:887 +#: ../../mod/settings.php:890 msgid "Don't show notices" msgstr "Non mostrare gli avvisi" -#: ../../mod/settings.php:888 +#: ../../mod/settings.php:891 msgid "Infinite scroll" msgstr "Scroll infinito" -#: ../../mod/settings.php:889 +#: ../../mod/settings.php:892 msgid "Automatic updates only at the top of the network page" msgstr "Aggiornamenti automatici solo in cima alla pagina \"rete\"" -#: ../../mod/settings.php:966 +#: ../../mod/settings.php:969 msgid "User Types" msgstr "Tipi di Utenti" -#: ../../mod/settings.php:967 +#: ../../mod/settings.php:970 msgid "Community Types" msgstr "Tipi di Comunità" -#: ../../mod/settings.php:968 +#: ../../mod/settings.php:971 msgid "Normal Account Page" msgstr "Pagina Account Normale" -#: ../../mod/settings.php:969 +#: ../../mod/settings.php:972 msgid "This account is a normal personal profile" msgstr "Questo account è un normale profilo personale" -#: ../../mod/settings.php:972 +#: ../../mod/settings.php:975 msgid "Soapbox Page" msgstr "Pagina Sandbox" -#: ../../mod/settings.php:973 +#: ../../mod/settings.php:976 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:976 +#: ../../mod/settings.php:979 msgid "Community Forum/Celebrity Account" msgstr "Account Celebrità/Forum comunitario" -#: ../../mod/settings.php:977 +#: ../../mod/settings.php:980 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:980 +#: ../../mod/settings.php:983 msgid "Automatic Friend Page" msgstr "Pagina con amicizia automatica" -#: ../../mod/settings.php:981 +#: ../../mod/settings.php:984 msgid "Automatically approve all connection/friend requests as friends" msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" -#: ../../mod/settings.php:984 +#: ../../mod/settings.php:987 msgid "Private Forum [Experimental]" msgstr "Forum privato [sperimentale]" -#: ../../mod/settings.php:985 +#: ../../mod/settings.php:988 msgid "Private forum - approved members only" msgstr "Forum privato - solo membri approvati" -#: ../../mod/settings.php:997 +#: ../../mod/settings.php:1000 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:997 +#: ../../mod/settings.php:1000 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" -#: ../../mod/settings.php:1007 +#: ../../mod/settings.php:1010 msgid "Publish your default profile in your local site directory?" msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" -#: ../../mod/settings.php:1007 ../../mod/settings.php:1013 -#: ../../mod/settings.php:1021 ../../mod/settings.php:1025 -#: ../../mod/settings.php:1030 ../../mod/settings.php:1036 -#: ../../mod/settings.php:1042 ../../mod/settings.php:1048 -#: ../../mod/settings.php:1078 ../../mod/settings.php:1079 -#: ../../mod/settings.php:1080 ../../mod/settings.php:1081 -#: ../../mod/settings.php:1082 ../../mod/register.php:231 -#: ../../mod/dfrn_request.php:834 ../../mod/api.php:106 -#: ../../mod/profiles.php:620 ../../mod/profiles.php:624 +#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 +#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 +#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 +#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 +#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 +#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 +#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 +#: ../../mod/register.php:234 ../../mod/profiles.php:661 +#: ../../mod/profiles.php:665 ../../mod/api.php:106 msgid "No" msgstr "No" -#: ../../mod/settings.php:1013 +#: ../../mod/settings.php:1016 msgid "Publish your default profile in the global social directory?" msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" -#: ../../mod/settings.php:1021 +#: ../../mod/settings.php:1024 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:1030 +#: ../../mod/settings.php:1028 ../../include/conversation.php:1057 +msgid "Hide your profile details from unknown viewers?" +msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" + +#: ../../mod/settings.php:1028 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: ../../mod/settings.php:1033 msgid "Allow friends to post to your profile page?" msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" -#: ../../mod/settings.php:1036 +#: ../../mod/settings.php:1039 msgid "Allow friends to tag your posts?" msgstr "Permetti agli amici di taggare i tuoi messaggi?" -#: ../../mod/settings.php:1042 +#: ../../mod/settings.php:1045 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:1048 +#: ../../mod/settings.php:1051 msgid "Permit unknown people to send you private mail?" msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" -#: ../../mod/settings.php:1056 +#: ../../mod/settings.php:1059 msgid "Profile is not published." msgstr "Il profilo non è pubblicato." -#: ../../mod/settings.php:1059 ../../mod/profile_photo.php:248 -msgid "or" -msgstr "o" - -#: ../../mod/settings.php:1064 +#: ../../mod/settings.php:1067 msgid "Your Identity Address is" msgstr "L'indirizzo della tua identità è" -#: ../../mod/settings.php:1075 +#: ../../mod/settings.php:1078 msgid "Automatically expire posts after this many days:" msgstr "Fai scadere i post automaticamente dopo x giorni:" -#: ../../mod/settings.php:1075 +#: ../../mod/settings.php:1078 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." -#: ../../mod/settings.php:1076 +#: ../../mod/settings.php:1079 msgid "Advanced expiration settings" msgstr "Impostazioni avanzate di scandenza" -#: ../../mod/settings.php:1077 +#: ../../mod/settings.php:1080 msgid "Advanced Expiration" msgstr "Scadenza avanzata" -#: ../../mod/settings.php:1078 +#: ../../mod/settings.php:1081 msgid "Expire posts:" msgstr "Fai scadere i post:" -#: ../../mod/settings.php:1079 +#: ../../mod/settings.php:1082 msgid "Expire personal notes:" msgstr "Fai scadere le Note personali:" -#: ../../mod/settings.php:1080 +#: ../../mod/settings.php:1083 msgid "Expire starred posts:" msgstr "Fai scadere i post Speciali:" -#: ../../mod/settings.php:1081 +#: ../../mod/settings.php:1084 msgid "Expire photos:" msgstr "Fai scadere le foto:" -#: ../../mod/settings.php:1082 +#: ../../mod/settings.php:1085 msgid "Only expire posts by others:" msgstr "Fai scadere solo i post degli altri:" -#: ../../mod/settings.php:1108 +#: ../../mod/settings.php:1111 msgid "Account Settings" msgstr "Impostazioni account" -#: ../../mod/settings.php:1116 +#: ../../mod/settings.php:1119 msgid "Password Settings" msgstr "Impostazioni password" -#: ../../mod/settings.php:1117 +#: ../../mod/settings.php:1120 msgid "New Password:" msgstr "Nuova password:" -#: ../../mod/settings.php:1118 +#: ../../mod/settings.php:1121 msgid "Confirm:" msgstr "Conferma:" -#: ../../mod/settings.php:1118 +#: ../../mod/settings.php:1121 msgid "Leave password fields blank unless changing" msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" -#: ../../mod/settings.php:1119 +#: ../../mod/settings.php:1122 msgid "Current Password:" msgstr "Password Attuale:" -#: ../../mod/settings.php:1119 ../../mod/settings.php:1120 +#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 msgid "Your current password to confirm the changes" msgstr "La tua password attuale per confermare le modifiche" -#: ../../mod/settings.php:1120 +#: ../../mod/settings.php:1123 msgid "Password:" msgstr "Password:" -#: ../../mod/settings.php:1124 +#: ../../mod/settings.php:1127 msgid "Basic Settings" msgstr "Impostazioni base" -#: ../../mod/settings.php:1126 +#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "Nome completo:" + +#: ../../mod/settings.php:1129 msgid "Email Address:" msgstr "Indirizzo Email:" -#: ../../mod/settings.php:1127 +#: ../../mod/settings.php:1130 msgid "Your Timezone:" msgstr "Il tuo fuso orario:" -#: ../../mod/settings.php:1128 +#: ../../mod/settings.php:1131 msgid "Default Post Location:" msgstr "Località predefinita:" -#: ../../mod/settings.php:1129 +#: ../../mod/settings.php:1132 msgid "Use Browser Location:" msgstr "Usa la località rilevata dal browser:" -#: ../../mod/settings.php:1132 +#: ../../mod/settings.php:1135 msgid "Security and Privacy Settings" msgstr "Impostazioni di sicurezza e privacy" -#: ../../mod/settings.php:1134 +#: ../../mod/settings.php:1137 msgid "Maximum Friend Requests/Day:" msgstr "Numero massimo di richieste di amicizia al giorno:" -#: ../../mod/settings.php:1134 ../../mod/settings.php:1164 +#: ../../mod/settings.php:1137 ../../mod/settings.php:1167 msgid "(to prevent spam abuse)" msgstr "(per prevenire lo spam)" -#: ../../mod/settings.php:1135 +#: ../../mod/settings.php:1138 msgid "Default Post Permissions" msgstr "Permessi predefiniti per i messaggi" -#: ../../mod/settings.php:1136 +#: ../../mod/settings.php:1139 msgid "(click to open/close)" msgstr "(clicca per aprire/chiudere)" -#: ../../mod/settings.php:1145 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1517 +#: ../../mod/settings.php:1148 ../../mod/photos.php:1146 +#: ../../mod/photos.php:1519 msgid "Show to Groups" msgstr "Mostra ai gruppi" -#: ../../mod/settings.php:1146 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1518 +#: ../../mod/settings.php:1149 ../../mod/photos.php:1147 +#: ../../mod/photos.php:1520 msgid "Show to Contacts" msgstr "Mostra ai contatti" -#: ../../mod/settings.php:1147 +#: ../../mod/settings.php:1150 msgid "Default Private Post" msgstr "Default Post Privato" -#: ../../mod/settings.php:1148 +#: ../../mod/settings.php:1151 msgid "Default Public Post" msgstr "Default Post Pubblico" -#: ../../mod/settings.php:1152 +#: ../../mod/settings.php:1155 msgid "Default Permissions for New Posts" msgstr "Permessi predefiniti per i nuovi post" -#: ../../mod/settings.php:1164 +#: ../../mod/settings.php:1167 msgid "Maximum private messages per day from unknown people:" msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" -#: ../../mod/settings.php:1167 +#: ../../mod/settings.php:1170 msgid "Notification Settings" msgstr "Impostazioni notifiche" -#: ../../mod/settings.php:1168 +#: ../../mod/settings.php:1171 msgid "By default post a status message when:" msgstr "Invia un messaggio di stato quando:" -#: ../../mod/settings.php:1169 +#: ../../mod/settings.php:1172 msgid "accepting a friend request" msgstr "accetti una richiesta di amicizia" -#: ../../mod/settings.php:1170 +#: ../../mod/settings.php:1173 msgid "joining a forum/community" msgstr "ti unisci a un forum/comunità" -#: ../../mod/settings.php:1171 +#: ../../mod/settings.php:1174 msgid "making an interesting profile change" msgstr "fai un interessante modifica al profilo" -#: ../../mod/settings.php:1172 +#: ../../mod/settings.php:1175 msgid "Send a notification email when:" msgstr "Invia una mail di notifica quando:" -#: ../../mod/settings.php:1173 +#: ../../mod/settings.php:1176 msgid "You receive an introduction" msgstr "Ricevi una presentazione" -#: ../../mod/settings.php:1174 +#: ../../mod/settings.php:1177 msgid "Your introductions are confirmed" msgstr "Le tue presentazioni sono confermate" -#: ../../mod/settings.php:1175 +#: ../../mod/settings.php:1178 msgid "Someone writes on your profile wall" msgstr "Qualcuno scrive sulla bacheca del tuo profilo" -#: ../../mod/settings.php:1176 +#: ../../mod/settings.php:1179 msgid "Someone writes a followup comment" msgstr "Qualcuno scrive un commento a un tuo messaggio" -#: ../../mod/settings.php:1177 +#: ../../mod/settings.php:1180 msgid "You receive a private message" msgstr "Ricevi un messaggio privato" -#: ../../mod/settings.php:1178 +#: ../../mod/settings.php:1181 msgid "You receive a friend suggestion" msgstr "Hai ricevuto un suggerimento di amicizia" -#: ../../mod/settings.php:1179 +#: ../../mod/settings.php:1182 msgid "You are tagged in a post" msgstr "Sei stato taggato in un post" -#: ../../mod/settings.php:1180 +#: ../../mod/settings.php:1183 msgid "You are poked/prodded/etc. in a post" msgstr "Sei 'toccato'/'spronato'/ecc. in un post" -#: ../../mod/settings.php:1183 +#: ../../mod/settings.php:1185 +msgid "Text-only notification emails" +msgstr "" + +#: ../../mod/settings.php:1187 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: ../../mod/settings.php:1189 msgid "Advanced Account/Page Type Settings" msgstr "Impostazioni avanzate Account/Tipo di pagina" -#: ../../mod/settings.php:1184 +#: ../../mod/settings.php:1190 msgid "Change the behaviour of this account for special situations" msgstr "Modifica il comportamento di questo account in situazioni speciali" -#: ../../mod/settings.php:1187 +#: ../../mod/settings.php:1193 msgid "Relocate" msgstr "Trasloca" -#: ../../mod/settings.php:1188 +#: ../../mod/settings.php:1194 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone." -#: ../../mod/settings.php:1189 +#: ../../mod/settings.php:1195 msgid "Resend relocate message to contacts" msgstr "Reinvia il messaggio di trasloco" -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Amici in comune" +#: ../../mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Questa presentazione è già stata accettata." -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Nessun contatto in comune." +#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informazioni remote sulla privacy non disponibili." +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Visibile a:" +#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Attenzione: l'indirizzo del profilo non ha una foto." -#: ../../mod/contacts.php:107 +#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 #, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "%d contatto modificato" -msgstr[1] "%d contatti modificati" - -#: ../../mod/contacts.php:138 ../../mod/contacts.php:267 -msgid "Could not access contact record." -msgstr "Non è possibile accedere al contatto." - -#: ../../mod/contacts.php:152 -msgid "Could not locate selected profile." -msgstr "Non riesco a trovare il profilo selezionato." +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/contacts.php:181 -msgid "Contact updated." -msgstr "Contatto aggiornato." +#: ../../mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Presentazione completa." -#: ../../mod/contacts.php:183 ../../mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Errore nell'aggiornamento del contatto." +#: ../../mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Errore di comunicazione." -#: ../../mod/contacts.php:282 -msgid "Contact has been blocked" -msgstr "Il contatto è stato bloccato" +#: ../../mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profilo non disponibile." -#: ../../mod/contacts.php:282 -msgid "Contact has been unblocked" -msgstr "Il contatto è stato sbloccato" +#: ../../mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s ha ricevuto troppe richieste di connessione per oggi." -#: ../../mod/contacts.php:293 -msgid "Contact has been ignored" -msgstr "Il contatto è ignorato" +#: ../../mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Sono state attivate le misure di protezione contro lo spam." -#: ../../mod/contacts.php:293 -msgid "Contact has been unignored" -msgstr "Il contatto non è più ignorato" +#: ../../mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Gli amici sono pregati di riprovare tra 24 ore." -#: ../../mod/contacts.php:305 -msgid "Contact has been archived" -msgstr "Il contatto è stato archiviato" +#: ../../mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Invalid locator" -#: ../../mod/contacts.php:305 -msgid "Contact has been unarchived" -msgstr "Il contatto è stato dearchiviato" +#: ../../mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Indirizzo email non valido." -#: ../../mod/contacts.php:330 ../../mod/contacts.php:703 -msgid "Do you really want to delete this contact?" -msgstr "Vuoi veramente cancellare questo contatto?" +#: ../../mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "Questo account non è stato configurato per l'email. Richiesta fallita." -#: ../../mod/contacts.php:347 -msgid "Contact has been removed." -msgstr "Il contatto è stato rimosso." +#: ../../mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Impossibile risolvere il tuo nome nella posizione indicata." -#: ../../mod/contacts.php:385 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Sei amico reciproco con %s" +#: ../../mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Ti sei già presentato qui." -#: ../../mod/contacts.php:389 +#: ../../mod/dfrn_request.php:480 #, php-format -msgid "You are sharing with %s" -msgstr "Stai condividendo con %s" +msgid "Apparently you are already friends with %s." +msgstr "Pare che tu e %s siate già amici." -#: ../../mod/contacts.php:394 -#, php-format -msgid "%s is sharing with you" -msgstr "%s sta condividendo con te" +#: ../../mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Indirizzo profilo non valido." -#: ../../mod/contacts.php:411 -msgid "Private communications are not available for this contact." -msgstr "Le comunicazioni private non sono disponibili per questo contatto." +#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "Indirizzo profilo non permesso." -#: ../../mod/contacts.php:414 ../../mod/admin.php:540 -msgid "Never" -msgstr "Mai" +#: ../../mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "La tua presentazione è stata inviata." -#: ../../mod/contacts.php:418 -msgid "(Update was successful)" -msgstr "(L'aggiornamento è stato completato)" +#: ../../mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Accedi per confermare la presentazione." -#: ../../mod/contacts.php:418 -msgid "(Update was not successful)" -msgstr "(L'aggiornamento non è stato completato)" +#: ../../mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." -#: ../../mod/contacts.php:420 -msgid "Suggest friends" -msgstr "Suggerisci amici" +#: ../../mod/dfrn_request.php:671 +msgid "Hide this contact" +msgstr "Nascondi questo contatto" -#: ../../mod/contacts.php:424 +#: ../../mod/dfrn_request.php:674 #, php-format -msgid "Network type: %s" -msgstr "Tipo di rete: %s" +msgid "Welcome home %s." +msgstr "Bentornato a casa %s." -#: ../../mod/contacts.php:432 -msgid "View all contacts" -msgstr "Vedi tutti i contatti" +#: ../../mod/dfrn_request.php:675 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Conferma la tua richiesta di connessione con %s." -#: ../../mod/contacts.php:437 ../../mod/contacts.php:496 -#: ../../mod/contacts.php:706 ../../mod/admin.php:970 -msgid "Unblock" -msgstr "Sblocca" +#: ../../mod/dfrn_request.php:676 +msgid "Confirm" +msgstr "Conferma" -#: ../../mod/contacts.php:437 ../../mod/contacts.php:496 -#: ../../mod/contacts.php:706 ../../mod/admin.php:969 -msgid "Block" -msgstr "Blocca" +#: ../../mod/dfrn_request.php:804 +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/contacts.php:440 -msgid "Toggle Blocked status" -msgstr "Inverti stato \"Blocca\"" +#: ../../mod/dfrn_request.php:824 +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/contacts.php:443 ../../mod/contacts.php:497 -#: ../../mod/contacts.php:707 -msgid "Unignore" -msgstr "Non ignorare" +#: ../../mod/dfrn_request.php:827 +msgid "Friend/Connection Request" +msgstr "Richieste di amicizia/connessione" -#: ../../mod/contacts.php:446 -msgid "Toggle Ignored status" -msgstr "Inverti stato \"Ignora\"" +#: ../../mod/dfrn_request.php:828 +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/contacts.php:450 ../../mod/contacts.php:708 -msgid "Unarchive" -msgstr "Dearchivia" +#: ../../mod/dfrn_request.php:829 +msgid "Please answer the following:" +msgstr "Rispondi:" -#: ../../mod/contacts.php:450 ../../mod/contacts.php:708 -msgid "Archive" -msgstr "Archivia" - -#: ../../mod/contacts.php:453 -msgid "Toggle Archive status" -msgstr "Inverti stato \"Archiviato\"" - -#: ../../mod/contacts.php:456 -msgid "Repair" -msgstr "Ripara" - -#: ../../mod/contacts.php:459 -msgid "Advanced Contact Settings" -msgstr "Impostazioni avanzate Contatto" - -#: ../../mod/contacts.php:465 -msgid "Communications lost with this contact!" -msgstr "Comunicazione con questo contatto persa!" - -#: ../../mod/contacts.php:468 -msgid "Contact Editor" -msgstr "Editor dei Contatti" - -#: ../../mod/contacts.php:471 -msgid "Profile Visibility" -msgstr "Visibilità del profilo" - -#: ../../mod/contacts.php:472 -#, 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:473 -msgid "Contact Information / Notes" -msgstr "Informazioni / Note sul contatto" - -#: ../../mod/contacts.php:474 -msgid "Edit contact notes" -msgstr "Modifica note contatto" - -#: ../../mod/contacts.php:479 ../../mod/contacts.php:671 -#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:62 +#: ../../mod/dfrn_request.php:830 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" - -#: ../../mod/contacts.php:480 -msgid "Block/Unblock contact" -msgstr "Blocca/Sblocca contatto" - -#: ../../mod/contacts.php:481 -msgid "Ignore contact" -msgstr "Ignora il contatto" - -#: ../../mod/contacts.php:482 -msgid "Repair URL settings" -msgstr "Impostazioni riparazione URL" - -#: ../../mod/contacts.php:483 -msgid "View conversations" -msgstr "Vedi conversazioni" - -#: ../../mod/contacts.php:485 -msgid "Delete contact" -msgstr "Rimuovi contatto" - -#: ../../mod/contacts.php:489 -msgid "Last update:" -msgstr "Ultimo aggiornamento:" - -#: ../../mod/contacts.php:491 -msgid "Update public posts" -msgstr "Aggiorna messaggi pubblici" - -#: ../../mod/contacts.php:493 ../../mod/admin.php:1464 -msgid "Update now" -msgstr "Aggiorna adesso" - -#: ../../mod/contacts.php:500 -msgid "Currently blocked" -msgstr "Bloccato" - -#: ../../mod/contacts.php:501 -msgid "Currently ignored" -msgstr "Ignorato" - -#: ../../mod/contacts.php:502 -msgid "Currently archived" -msgstr "Al momento archiviato" - -#: ../../mod/contacts.php:503 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Risposte ai tuoi post pubblici possono essere comunque visibili" - -#: ../../mod/contacts.php:504 -msgid "Notification for new posts" -msgstr "Notifica per i nuovi messaggi" - -#: ../../mod/contacts.php:504 -msgid "Send a notification of every new post of this contact" -msgstr "Invia una notifica per ogni nuovo messaggio di questo contatto" - -#: ../../mod/contacts.php:505 -msgid "Fetch further information for feeds" -msgstr "Recupera maggiori infomazioni per i feed" - -#: ../../mod/contacts.php:556 -msgid "Suggestions" -msgstr "Suggerimenti" - -#: ../../mod/contacts.php:559 -msgid "Suggest potential friends" -msgstr "Suggerisci potenziali amici" - -#: ../../mod/contacts.php:565 -msgid "Show all contacts" -msgstr "Mostra tutti i contatti" - -#: ../../mod/contacts.php:568 -msgid "Unblocked" -msgstr "Sbloccato" - -#: ../../mod/contacts.php:571 -msgid "Only show unblocked contacts" -msgstr "Mostra solo contatti non bloccati" - -#: ../../mod/contacts.php:575 -msgid "Blocked" -msgstr "Bloccato" - -#: ../../mod/contacts.php:578 -msgid "Only show blocked contacts" -msgstr "Mostra solo contatti bloccati" - -#: ../../mod/contacts.php:582 -msgid "Ignored" -msgstr "Ignorato" - -#: ../../mod/contacts.php:585 -msgid "Only show ignored contacts" -msgstr "Mostra solo contatti ignorati" - -#: ../../mod/contacts.php:589 -msgid "Archived" -msgstr "Achiviato" - -#: ../../mod/contacts.php:592 -msgid "Only show archived contacts" -msgstr "Mostra solo contatti archiviati" - -#: ../../mod/contacts.php:596 -msgid "Hidden" -msgstr "Nascosto" - -#: ../../mod/contacts.php:599 -msgid "Only show hidden contacts" -msgstr "Mostra solo contatti nascosti" - -#: ../../mod/contacts.php:647 -msgid "Mutual Friendship" -msgstr "Amicizia reciproca" - -#: ../../mod/contacts.php:651 -msgid "is a fan of yours" -msgstr "è un tuo fan" - -#: ../../mod/contacts.php:655 -msgid "you are a fan of" -msgstr "sei un fan di" - -#: ../../mod/contacts.php:672 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Modifca contatto" - -#: ../../mod/contacts.php:698 -msgid "Search your contacts" -msgstr "Cerca nei tuoi contatti" +msgid "Does %s know you?" +msgstr "%s ti conosce?" -#: ../../mod/contacts.php:699 ../../mod/directory.php:61 -msgid "Finding: " -msgstr "Ricerca: " +#: ../../mod/dfrn_request.php:834 +msgid "Add a personal note:" +msgstr "Aggiungi una nota personale:" -#: ../../mod/wall_attach.php:75 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta" +#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "O.. non avrai provato a caricare un file vuoto?" +#: ../../mod/dfrn_request.php:837 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" -#: ../../mod/wall_attach.php:81 +#: ../../mod/dfrn_request.php:839 #, php-format -msgid "File exceeds size limit of %d" -msgstr "Il file supera la dimensione massima di %d" - -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Caricamento del file non riuscito." - -#: ../../mod/update_community.php:18 ../../mod/update_network.php:25 -#: ../../mod/update_notes.php:37 ../../mod/update_display.php:22 -#: ../../mod/update_profile.php:41 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" - -#: ../../mod/uexport.php:77 -msgid "Export account" -msgstr "Esporta account" - -#: ../../mod/uexport.php:77 msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server." +" - 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/uexport.php:78 -msgid "Export all" -msgstr "Esporta tutto" +#: ../../mod/dfrn_request.php:840 +msgid "Your Identity Address:" +msgstr "L'indirizzo della tua identità:" -#: ../../mod/uexport.php:78 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" +#: ../../mod/dfrn_request.php:843 +msgid "Submit Request" +msgstr "Invia richiesta" -#: ../../mod/register.php:93 +#: ../../mod/register.php:90 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni." -#: ../../mod/register.php:97 -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:96 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "" -#: ../../mod/register.php:102 +#: ../../mod/register.php:105 msgid "Your registration can not be processed." msgstr "La tua registrazione non puo' essere elaborata." -#: ../../mod/register.php:145 +#: ../../mod/register.php:148 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:183 ../../mod/uimport.php:50 +#: ../../mod/register.php:186 ../../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:211 +#: ../../mod/register.php:214 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:212 +#: ../../mod/register.php:215 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:213 +#: ../../mod/register.php:216 msgid "Your OpenID (optional): " msgstr "Il tuo OpenID (opzionale): " -#: ../../mod/register.php:227 +#: ../../mod/register.php:230 msgid "Include your profile in member directory?" msgstr "Includi il tuo profilo nell'elenco pubblico?" -#: ../../mod/register.php:248 +#: ../../mod/register.php:251 msgid "Membership on this site is by invitation only." msgstr "La registrazione su questo sito è solo su invito." -#: ../../mod/register.php:249 +#: ../../mod/register.php:252 msgid "Your invitation ID: " msgstr "L'ID del tuo invito:" -#: ../../mod/register.php:252 ../../mod/admin.php:589 -msgid "Registration" -msgstr "Registrazione" - -#: ../../mod/register.php:260 +#: ../../mod/register.php:263 msgid "Your Full Name (e.g. Joe Smith): " msgstr "Il tuo nome completo (es. Mario Rossi): " -#: ../../mod/register.php:261 +#: ../../mod/register.php:264 msgid "Your Email Address: " msgstr "Il tuo indirizzo email: " -#: ../../mod/register.php:262 +#: ../../mod/register.php:265 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:263 +#: ../../mod/register.php:266 msgid "Choose a nickname: " msgstr "Scegli un nome utente: " -#: ../../mod/register.php:272 ../../mod/uimport.php:64 +#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109 +msgid "Register" +msgstr "Registrati" + +#: ../../mod/register.php:275 ../../mod/uimport.php:64 msgid "Import" msgstr "Importa" -#: ../../mod/register.php:273 +#: ../../mod/register.php:276 msgid "Import your profile to this friendica instance" msgstr "Importa il tuo profilo in questo server friendica" -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Inviato!" - #: ../../mod/maintenance.php:5 msgid "System down for maintenance" msgstr "Sistema in manutenzione" -#: ../../mod/profile.php:155 ../../mod/display.php:288 -msgid "Access to this profile has been restricted." -msgstr "L'accesso a questo profilo è stato limitato." +#: ../../mod/search.php:99 ../../include/text.php:953 +#: ../../include/text.php:954 ../../include/nav.php:119 +msgid "Search" +msgstr "Cerca" -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Consigli per i Nuovi Utenti" +#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Elenco globale" -#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:766 -#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:920 -#: ../../mod/search.php:89 ../../mod/community.php:18 -#: ../../mod/display.php:180 ../../mod/directory.php:33 -msgid "Public access denied." -msgstr "Accesso negato." +#: ../../mod/directory.php:59 +msgid "Find on this site" +msgstr "Cerca nel sito" -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Nessun video selezionato" +#: ../../mod/directory.php:62 +msgid "Site Directory" +msgstr "Elenco del sito" -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 -msgid "Access to this item is restricted." -msgstr "Questo oggetto non è visibile a tutti." +#: ../../mod/directory.php:113 ../../mod/profiles.php:750 +msgid "Age: " +msgstr "Età : " -#: ../../mod/videos.php:308 ../../mod/photos.php:1806 -msgid "View Album" -msgstr "Sfoglia l'album" +#: ../../mod/directory.php:116 +msgid "Gender: " +msgstr "Genere:" -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Video Recenti" +#: ../../mod/directory.php:138 ../../boot.php:1650 +#: ../../include/profile_advanced.php:17 +msgid "Gender:" +msgstr "Genere:" -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Carica Nuovo Video" +#: ../../mod/directory.php:140 ../../boot.php:1653 +#: ../../include/profile_advanced.php:37 +msgid "Status:" +msgstr "Stato:" -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Gestisci indentità e/o pagine" +#: ../../mod/directory.php:142 ../../boot.php:1655 +#: ../../include/profile_advanced.php:48 +msgid "Homepage:" +msgstr "Homepage:" -#: ../../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/directory.php:144 ../../boot.php:1657 +#: ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "Informazioni:" -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Oggetto non trovato" +#: ../../mod/directory.php:189 +msgid "No entries (some entries may be hidden)." +msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Modifica messaggio" +#: ../../mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Nessun potenziale delegato per la pagina è stato trovato." -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Cerca persone" +#: ../../mod/delegate.php:130 ../../include/nav.php:170 +msgid "Delegate Page Management" +msgstr "Gestione delegati per la pagina" -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Nessun risultato" +#: ../../mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." -#: ../../mod/regmod.php:54 -msgid "Account approved." -msgstr "Account approvato." +#: ../../mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Gestori Pagina Esistenti" -#: ../../mod/regmod.php:91 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" +#: ../../mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Delegati Pagina Esistenti" -#: ../../mod/regmod.php:103 -msgid "Please login." -msgstr "Accedi." +#: ../../mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Delegati Potenziali" -#: ../../mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Questa presentazione è già stata accettata." +#: ../../mod/delegate.php:140 +msgid "Add" +msgstr "Aggiungi" -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." +#: ../../mod/delegate.php:141 +msgid "No entries." +msgstr "Nessun articolo." -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Amici in comune" -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Attenzione: l'indirizzo del profilo non ha una foto." +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Nessun contatto in comune." -#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato" -msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" +#: ../../mod/uexport.php:77 +msgid "Export account" +msgstr "Esporta account" -#: ../../mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Presentazione completa." +#: ../../mod/uexport.php:77 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server." -#: ../../mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Errore di comunicazione." +#: ../../mod/uexport.php:78 +msgid "Export all" +msgstr "Esporta tutto" -#: ../../mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profilo non disponibile." +#: ../../mod/uexport.php:78 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" -#: ../../mod/dfrn_request.php:267 +#: ../../mod/mood.php:62 ../../include/conversation.php:227 #, php-format -msgid "%s has received too many connection requests today." -msgstr "%s ha ricevuto troppe richieste di connessione per oggi." - -#: ../../mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Sono state attivate le misure di protezione contro lo spam." +msgid "%1$s is currently %2$s" +msgstr "%1$s al momento è %2$s" -#: ../../mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Gli amici sono pregati di riprovare tra 24 ore." +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Umore" -#: ../../mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Invalid locator" +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Condividi il tuo umore con i tuoi amici" -#: ../../mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Indirizzo email non valido." +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Vuoi veramente cancellare questo suggerimento?" -#: ../../mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Questo account non è stato configurato per l'email. Richiesta fallita." +#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35 +#: ../../view/theme/diabook/theme.php:527 +msgid "Friend Suggestions" +msgstr "Contatti suggeriti" -#: ../../mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Impossibile risolvere il tuo nome nella posizione indicata." +#: ../../mod/suggest.php:74 +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/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Ti sei già presentato qui." +#: ../../mod/suggest.php:92 +msgid "Ignore/Hide" +msgstr "Ignora / Nascondi" -#: ../../mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Pare che tu e %s siate già amici." +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profilo elminato." -#: ../../mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Indirizzo profilo non valido." +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" +msgstr "Profilo-" -#: ../../mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "La tua presentazione è stata inviata." +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." +msgstr "Il nuovo profilo è stato creato." -#: ../../mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Accedi per confermare la presentazione." +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il profilo." -#: ../../mod/dfrn_request.php:664 -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/profiles.php:189 +msgid "Profile Name is required." +msgstr "Il nome profilo è obbligatorio ." -#: ../../mod/dfrn_request.php:675 -msgid "Hide this contact" -msgstr "Nascondi questo contatto" +#: ../../mod/profiles.php:340 +msgid "Marital Status" +msgstr "Stato civile" -#: ../../mod/dfrn_request.php:678 -#, php-format -msgid "Welcome home %s." -msgstr "Bentornato a casa %s." +#: ../../mod/profiles.php:344 +msgid "Romantic Partner" +msgstr "Partner romantico" -#: ../../mod/dfrn_request.php:679 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Conferma la tua richiesta di connessione con %s." +#: ../../mod/profiles.php:348 +msgid "Likes" +msgstr "Mi piace" -#: ../../mod/dfrn_request.php:680 -msgid "Confirm" -msgstr "Conferma" +#: ../../mod/profiles.php:352 +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../mod/dfrn_request.php:808 -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/profiles.php:356 +msgid "Work/Employment" +msgstr "Lavoro/Impiego" -#: ../../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 "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi" +#: ../../mod/profiles.php:359 +msgid "Religion" +msgstr "Religione" -#: ../../mod/dfrn_request.php:831 -msgid "Friend/Connection Request" -msgstr "Richieste di amicizia/connessione" +#: ../../mod/profiles.php:363 +msgid "Political Views" +msgstr "Orientamento Politico" -#: ../../mod/dfrn_request.php:832 -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/profiles.php:367 +msgid "Gender" +msgstr "Sesso" -#: ../../mod/dfrn_request.php:833 -msgid "Please answer the following:" -msgstr "Rispondi:" +#: ../../mod/profiles.php:371 +msgid "Sexual Preference" +msgstr "Preferenza sessuale" -#: ../../mod/dfrn_request.php:834 -#, php-format -msgid "Does %s know you?" -msgstr "%s ti conosce?" +#: ../../mod/profiles.php:375 +msgid "Homepage" +msgstr "Homepage" -#: ../../mod/dfrn_request.php:838 -msgid "Add a personal note:" -msgstr "Aggiungi una nota personale:" +#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 +msgid "Interests" +msgstr "Interessi" -#: ../../mod/dfrn_request.php:841 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" +#: ../../mod/profiles.php:383 +msgid "Address" +msgstr "Indirizzo" -#: ../../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/profiles.php:390 ../../mod/profiles.php:694 +msgid "Location" +msgstr "Posizione" -#: ../../mod/dfrn_request.php:844 -msgid "Your Identity Address:" -msgstr "L'indirizzo della tua identità:" +#: ../../mod/profiles.php:473 +msgid "Profile updated." +msgstr "Profilo aggiornato." -#: ../../mod/dfrn_request.php:847 -msgid "Submit Request" -msgstr "Invia richiesta" +#: ../../mod/profiles.php:568 +msgid " and " +msgstr "e " -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "File" +#: ../../mod/profiles.php:576 +msgid "public profile" +msgstr "profilo pubblico" -#: ../../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/profiles.php:579 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiato %2$s in “%3$s”" -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Effettua il login per continuare." +#: ../../mod/profiles.php:580 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "- Visita %2$s di %1$s" -#: ../../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/profiles.php:583 +#, 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/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Vuoi veramente cancellare questo suggerimento?" +#: ../../mod/profiles.php:658 +msgid "Hide contacts and friends:" +msgstr "Nascondi contatti:" -#: ../../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/profiles.php:663 +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/suggest.php:90 -msgid "Ignore/Hide" -msgstr "Ignora / Nascondi" +#: ../../mod/profiles.php:685 +msgid "Edit Profile Details" +msgstr "Modifica i dettagli del profilo" -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Contatti che non sono membri di un gruppo" +#: ../../mod/profiles.php:687 +msgid "Change Profile Photo" +msgstr "Cambia la foto del profilo" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -#: ../../mod/crepair.php:131 ../../mod/dfrn_confirm.php:120 -msgid "Contact not found." -msgstr "Contatto non trovato." +#: ../../mod/profiles.php:688 +msgid "View this profile" +msgstr "Visualizza questo profilo" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggerimento di amicizia inviato." +#: ../../mod/profiles.php:689 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggerisci amici" +#: ../../mod/profiles.php:690 +msgid "Clone this profile" +msgstr "Clona questo profilo" -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerisci un amico a %s" +#: ../../mod/profiles.php:691 +msgid "Delete this profile" +msgstr "Elimina questo profilo" -#: ../../mod/share.php:44 -msgid "link" -msgstr "collegamento" +#: ../../mod/profiles.php:692 +msgid "Basic information" +msgstr "Informazioni di base" -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." -msgstr "Nessun contatto." +#: ../../mod/profiles.php:693 +msgid "Profile picture" +msgstr "Immagine del profilo" -#: ../../mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Impostazioni del tema aggiornate." +#: ../../mod/profiles.php:695 +msgid "Preferences" +msgstr "Preferenze" -#: ../../mod/admin.php:104 ../../mod/admin.php:587 -msgid "Site" -msgstr "Sito" +#: ../../mod/profiles.php:696 +msgid "Status information" +msgstr "Informazioni stato" -#: ../../mod/admin.php:105 ../../mod/admin.php:959 ../../mod/admin.php:974 -msgid "Users" -msgstr "Utenti" +#: ../../mod/profiles.php:697 +msgid "Additional information" +msgstr "Informazioni aggiuntive" -#: ../../mod/admin.php:107 ../../mod/admin.php:1284 ../../mod/admin.php:1318 -msgid "Themes" -msgstr "Temi" +#: ../../mod/profiles.php:700 +msgid "Profile Name:" +msgstr "Nome del profilo:" -#: ../../mod/admin.php:108 -msgid "DB updates" -msgstr "Aggiornamenti Database" +#: ../../mod/profiles.php:701 +msgid "Your Full Name:" +msgstr "Il tuo nome completo:" -#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1405 -msgid "Logs" -msgstr "Log" +#: ../../mod/profiles.php:702 +msgid "Title/Description:" +msgstr "Breve descrizione (es. titolo, posizione, altro):" -#: ../../mod/admin.php:129 -msgid "Plugin Features" -msgstr "Impostazioni Plugins" +#: ../../mod/profiles.php:703 +msgid "Your Gender:" +msgstr "Il tuo sesso:" -#: ../../mod/admin.php:131 -msgid "User registrations waiting for confirmation" -msgstr "Utenti registrati in attesa di conferma" +#: ../../mod/profiles.php:704 +#, php-format +msgid "Birthday (%s):" +msgstr "Compleanno (%s)" -#: ../../mod/admin.php:190 ../../mod/admin.php:913 -msgid "Normal Account" -msgstr "Account normale" +#: ../../mod/profiles.php:705 +msgid "Street Address:" +msgstr "Indirizzo (via/piazza):" -#: ../../mod/admin.php:191 ../../mod/admin.php:914 -msgid "Soapbox Account" -msgstr "Account per comunicati e annunci" +#: ../../mod/profiles.php:706 +msgid "Locality/City:" +msgstr "Località:" -#: ../../mod/admin.php:192 ../../mod/admin.php:915 -msgid "Community/Celebrity Account" -msgstr "Account per celebrità o per comunità" +#: ../../mod/profiles.php:707 +msgid "Postal/Zip Code:" +msgstr "CAP:" -#: ../../mod/admin.php:193 ../../mod/admin.php:916 -msgid "Automatic Friend Account" -msgstr "Account per amicizia automatizzato" +#: ../../mod/profiles.php:708 +msgid "Country:" +msgstr "Nazione:" -#: ../../mod/admin.php:194 -msgid "Blog Account" -msgstr "Account Blog" +#: ../../mod/profiles.php:709 +msgid "Region/State:" +msgstr "Regione/Stato:" -#: ../../mod/admin.php:195 -msgid "Private Forum" -msgstr "Forum Privato" +#: ../../mod/profiles.php:710 +msgid " Marital Status:" +msgstr " Stato sentimentale:" -#: ../../mod/admin.php:214 -msgid "Message queues" -msgstr "Code messaggi" +#: ../../mod/profiles.php:711 +msgid "Who: (if applicable)" +msgstr "Con chi: (se possibile)" -#: ../../mod/admin.php:219 ../../mod/admin.php:586 ../../mod/admin.php:958 -#: ../../mod/admin.php:1062 ../../mod/admin.php:1115 ../../mod/admin.php:1283 -#: ../../mod/admin.php:1317 ../../mod/admin.php:1404 -msgid "Administration" -msgstr "Amministrazione" +#: ../../mod/profiles.php:712 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" -#: ../../mod/admin.php:220 -msgid "Summary" -msgstr "Sommario" +#: ../../mod/profiles.php:713 +msgid "Since [date]:" +msgstr "Dal [data]:" -#: ../../mod/admin.php:222 -msgid "Registered users" -msgstr "Utenti registrati" +#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" -#: ../../mod/admin.php:224 -msgid "Pending registrations" -msgstr "Registrazioni in attesa" +#: ../../mod/profiles.php:715 +msgid "Homepage URL:" +msgstr "Homepage:" -#: ../../mod/admin.php:225 -msgid "Version" -msgstr "Versione" +#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50 +msgid "Hometown:" +msgstr "Paese natale:" -#: ../../mod/admin.php:227 -msgid "Active plugins" -msgstr "Plugin attivi" +#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54 +msgid "Political Views:" +msgstr "Orientamento politico:" -#: ../../mod/admin.php:250 -msgid "Can not parse base url. Must have at least ://" -msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]" +#: ../../mod/profiles.php:718 +msgid "Religious Views:" +msgstr "Orientamento religioso:" -#: ../../mod/admin.php:494 -msgid "Site settings updated." -msgstr "Impostazioni del sito aggiornate." +#: ../../mod/profiles.php:719 +msgid "Public Keywords:" +msgstr "Parole chiave visibili a tutti:" -#: ../../mod/admin.php:541 -msgid "At post arrival" -msgstr "All'arrivo di un messaggio" +#: ../../mod/profiles.php:720 +msgid "Private Keywords:" +msgstr "Parole chiave private:" -#: ../../mod/admin.php:550 -msgid "Multi user instance" -msgstr "Istanza multi utente" +#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62 +msgid "Likes:" +msgstr "Mi piace:" -#: ../../mod/admin.php:573 -msgid "Closed" -msgstr "Chiusa" +#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64 +msgid "Dislikes:" +msgstr "Non mi piace:" -#: ../../mod/admin.php:574 -msgid "Requires approval" -msgstr "Richiede l'approvazione" +#: ../../mod/profiles.php:723 +msgid "Example: fishing photography software" +msgstr "Esempio: pesca fotografia programmazione" -#: ../../mod/admin.php:575 -msgid "Open" -msgstr "Aperta" +#: ../../mod/profiles.php:724 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)" -#: ../../mod/admin.php:579 -msgid "No SSL policy, links will track page SSL state" -msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina" +#: ../../mod/profiles.php:725 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" -#: ../../mod/admin.php:580 -msgid "Force all links to use SSL" -msgstr "Forza tutti i linki ad usare SSL" +#: ../../mod/profiles.php:726 +msgid "Tell us about yourself..." +msgstr "Raccontaci di te..." -#: ../../mod/admin.php:581 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)" +#: ../../mod/profiles.php:727 +msgid "Hobbies/Interests" +msgstr "Hobby/interessi" -#: ../../mod/admin.php:590 -msgid "File upload" -msgstr "Caricamento file" +#: ../../mod/profiles.php:728 +msgid "Contact information and Social Networks" +msgstr "Informazioni su contatti e social network" -#: ../../mod/admin.php:591 -msgid "Policies" -msgstr "Politiche" +#: ../../mod/profiles.php:729 +msgid "Musical interests" +msgstr "Interessi musicali" -#: ../../mod/admin.php:592 -msgid "Advanced" -msgstr "Avanzate" +#: ../../mod/profiles.php:730 +msgid "Books, literature" +msgstr "Libri, letteratura" -#: ../../mod/admin.php:593 -msgid "Performance" -msgstr "Performance" +#: ../../mod/profiles.php:731 +msgid "Television" +msgstr "Televisione" -#: ../../mod/admin.php:594 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile." +#: ../../mod/profiles.php:732 +msgid "Film/dance/culture/entertainment" +msgstr "Film/danza/cultura/intrattenimento" -#: ../../mod/admin.php:597 -msgid "Site name" -msgstr "Nome del sito" +#: ../../mod/profiles.php:733 +msgid "Love/romance" +msgstr "Amore" -#: ../../mod/admin.php:598 -msgid "Banner/Logo" -msgstr "Banner/Logo" +#: ../../mod/profiles.php:734 +msgid "Work/employment" +msgstr "Lavoro/impiego" -#: ../../mod/admin.php:599 -msgid "Additional Info" -msgstr "Informazioni aggiuntive" +#: ../../mod/profiles.php:735 +msgid "School/education" +msgstr "Scuola/educazione" -#: ../../mod/admin.php:599 +#: ../../mod/profiles.php:740 msgid "" -"For public servers: you can add additional information here that will be " -"listed at dir.friendica.com/siteinfo." -msgstr "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su dir.friendica.com/siteinfo." +"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/admin.php:600 -msgid "System language" -msgstr "Lingua di sistema" +#: ../../mod/profiles.php:803 +msgid "Edit/Manage Profiles" +msgstr "Modifica / Gestisci profili" -#: ../../mod/admin.php:601 -msgid "System theme" -msgstr "Tema di sistema" +#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" -#: ../../mod/admin.php:601 -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/profiles.php:805 ../../boot.php:1612 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" -#: ../../mod/admin.php:602 -msgid "Mobile system theme" -msgstr "Tema mobile di sistema" +#: ../../mod/profiles.php:816 ../../boot.php:1622 +msgid "Profile Image" +msgstr "Immagine del Profilo" -#: ../../mod/admin.php:602 -msgid "Theme for mobile devices" -msgstr "Tema per dispositivi mobili" +#: ../../mod/profiles.php:818 ../../boot.php:1625 +msgid "visible to everybody" +msgstr "visibile a tutti" -#: ../../mod/admin.php:603 -msgid "SSL link policy" -msgstr "Gestione link SSL" +#: ../../mod/profiles.php:819 ../../boot.php:1626 +msgid "Edit visibility" +msgstr "Modifica visibilità" -#: ../../mod/admin.php:603 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determina se i link generati devono essere forzati a usare SSL" +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Oggetto non trovato" -#: ../../mod/admin.php:604 -msgid "Old style 'Share'" -msgstr "Ricondivisione vecchio stile" +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Modifica messaggio" -#: ../../mod/admin.php:604 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti" +#: ../../mod/editpost.php:111 ../../include/conversation.php:1092 +msgid "upload photo" +msgstr "carica foto" -#: ../../mod/admin.php:605 -msgid "Hide help entry from navigation menu" -msgstr "Nascondi la voce 'Guida' dal menu di navigazione" +#: ../../mod/editpost.php:112 ../../include/conversation.php:1093 +msgid "Attach file" +msgstr "Allega file" -#: ../../mod/admin.php:605 -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/editpost.php:113 ../../include/conversation.php:1094 +msgid "attach file" +msgstr "allega file" -#: ../../mod/admin.php:606 -msgid "Single user instance" -msgstr "Instanza a singolo utente" +#: ../../mod/editpost.php:115 ../../include/conversation.php:1096 +msgid "web link" +msgstr "link web" -#: ../../mod/admin.php:606 -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/editpost.php:116 ../../include/conversation.php:1097 +msgid "Insert video link" +msgstr "Inserire collegamento video" -#: ../../mod/admin.php:607 -msgid "Maximum image size" -msgstr "Massima dimensione immagini" +#: ../../mod/editpost.php:117 ../../include/conversation.php:1098 +msgid "video link" +msgstr "link video" -#: ../../mod/admin.php:607 -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/editpost.php:118 ../../include/conversation.php:1099 +msgid "Insert audio link" +msgstr "Inserisci collegamento audio" -#: ../../mod/admin.php:608 -msgid "Maximum image length" -msgstr "Massima lunghezza immagine" +#: ../../mod/editpost.php:119 ../../include/conversation.php:1100 +msgid "audio link" +msgstr "link audio" -#: ../../mod/admin.php:608 -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/editpost.php:120 ../../include/conversation.php:1101 +msgid "Set your location" +msgstr "La tua posizione" -#: ../../mod/admin.php:609 -msgid "JPEG image quality" -msgstr "Qualità immagini JPEG" +#: ../../mod/editpost.php:121 ../../include/conversation.php:1102 +msgid "set location" +msgstr "posizione" -#: ../../mod/admin.php:609 -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/editpost.php:122 ../../include/conversation.php:1103 +msgid "Clear browser location" +msgstr "Rimuovi la localizzazione data dal browser" -#: ../../mod/admin.php:611 -msgid "Register policy" -msgstr "Politica di registrazione" +#: ../../mod/editpost.php:123 ../../include/conversation.php:1104 +msgid "clear location" +msgstr "canc. pos." -#: ../../mod/admin.php:612 -msgid "Maximum Daily Registrations" -msgstr "Massime registrazioni giornaliere" +#: ../../mod/editpost.php:125 ../../include/conversation.php:1110 +msgid "Permission settings" +msgstr "Impostazioni permessi" -#: ../../mod/admin.php:612 -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/editpost.php:133 ../../include/conversation.php:1119 +msgid "CC: email addresses" +msgstr "CC: indirizzi email" -#: ../../mod/admin.php:613 -msgid "Register text" -msgstr "Testo registrazione" +#: ../../mod/editpost.php:134 ../../include/conversation.php:1120 +msgid "Public post" +msgstr "Messaggio pubblico" -#: ../../mod/admin.php:613 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." +#: ../../mod/editpost.php:137 ../../include/conversation.php:1106 +msgid "Set title" +msgstr "Scegli un titolo" -#: ../../mod/admin.php:614 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo x giorni" +#: ../../mod/editpost.php:139 ../../include/conversation.php:1108 +msgid "Categories (comma-separated list)" +msgstr "Categorie (lista separata da virgola)" -#: ../../mod/admin.php:614 -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/editpost.php:140 ../../include/conversation.php:1122 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Esempio: bob@example.com, mary@example.com" -#: ../../mod/admin.php:615 -msgid "Allowed friend domains" -msgstr "Domini amici consentiti" +#: ../../mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "Questo è Friendica, versione" + +#: ../../mod/friendica.php:60 +msgid "running at web location" +msgstr "in esecuzione all'indirizzo web" -#: ../../mod/admin.php:615 +#: ../../mod/friendica.php:62 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." +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." -#: ../../mod/admin.php:616 -msgid "Allowed email domains" -msgstr "Domini email consentiti" +#: ../../mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "Segnalazioni di bug e problemi: visita" -#: ../../mod/admin.php:616 +#: ../../mod/friendica.php:65 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." +"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/admin.php:617 -msgid "Block public" -msgstr "Blocca pagine pubbliche" +#: ../../mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "Plugin/addon/applicazioni instalate" -#: ../../mod/admin.php:617 -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/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "Nessun plugin/addons/applicazione installata" -#: ../../mod/admin.php:618 -msgid "Force publish" -msgstr "Forza publicazione" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizza la connessione dell'applicazione" -#: ../../mod/admin.php:618 -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/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/admin.php:619 -msgid "Global directory update URL" -msgstr "URL aggiornamento Elenco Globale" +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Effettua il login per continuare." -#: ../../mod/admin.php:619 +#: ../../mod/api.php:104 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." +"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/admin.php:620 -msgid "Allow threaded items" -msgstr "Permetti commenti nidificati" +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informazioni remote sulla privacy non disponibili." -#: ../../mod/admin.php:620 -msgid "Allow infinite level threading for items on this site." -msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito." +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Visibile a:" -#: ../../mod/admin.php:621 -msgid "Private posts by default for new users" -msgstr "Post privati di default per i nuovi utenti" +#: ../../mod/notes.php:44 ../../boot.php:2150 +msgid "Personal Notes" +msgstr "Note personali" -#: ../../mod/admin.php:621 -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/localtime.php:12 ../../include/bb2diaspora.php:148 +#: ../../include/event.php:11 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: ../../mod/admin.php:622 -msgid "Don't include post content in email notifications" -msgstr "Non includere il contenuto dei post nelle notifiche via email" +#: ../../mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Conversione Ora" -#: ../../mod/admin.php:622 +#: ../../mod/localtime.php:26 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" +"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/admin.php:623 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps." +#: ../../mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "Ora UTC: %s" -#: ../../mod/admin.php:623 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Selezionando questo box si limiterà ai soli membri l'accesso agli addon nel menu applicazioni" +#: ../../mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Fuso orario corrente: %s" -#: ../../mod/admin.php:624 -msgid "Don't embed private images in posts" -msgstr "Non inglobare immagini private nei post" +#: ../../mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Ora locale convertita: %s" -#: ../../mod/admin.php:624 -msgid "" -"Don't replace locally-hosted private photos in posts with an embedded copy " -"of the image. This means that contacts who receive posts containing private " -"photos will have to authenticate and load each image, which may take a " -"while." -msgstr "Non sostituire le foto locali nei post con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i post contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che puo' richiedere un po' di tempo." +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Selezionare il tuo fuso orario:" -#: ../../mod/admin.php:625 -msgid "Allow Users to set remote_self" -msgstr "Permetti agli utenti di impostare 'io remoto'" - -#: ../../mod/admin.php:625 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." -msgstr "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream del'utente." +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Tocca/Pungola" -#: ../../mod/admin.php:626 -msgid "Block multiple registrations" -msgstr "Blocca registrazioni multiple" +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "tocca, pungola o fai altre cose a qualcuno" -#: ../../mod/admin.php:626 -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/poke.php:194 +msgid "Recipient" +msgstr "Destinatario" -#: ../../mod/admin.php:627 -msgid "OpenID support" -msgstr "Supporto OpenID" +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi fare al destinatario" -#: ../../mod/admin.php:627 -msgid "OpenID support for registration and logins." -msgstr "Supporta OpenID per la registrazione e il login" +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Rendi questo post privato" -#: ../../mod/admin.php:628 -msgid "Fullname check" -msgstr "Controllo nome completo" +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limite totale degli inviti superato." -#: ../../mod/admin.php:628 -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/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." -#: ../../mod/admin.php:629 -msgid "UTF-8 Regular expressions" -msgstr "Espressioni regolari UTF-8" +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Unisiciti a noi su Friendica" -#: ../../mod/admin.php:629 -msgid "Use PHP UTF8 regular expressions" -msgstr "Usa le espressioni regolari PHP in UTF8" +#: ../../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/admin.php:630 -msgid "Show Community Page" -msgstr "Mostra pagina Comunità" +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio fallita." -#: ../../mod/admin.php:630 -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/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/admin.php:631 -msgid "Enable OStatus support" -msgstr "Abilita supporto OStatus" +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" -#: ../../mod/admin.php:631 +#: ../../mod/invite.php:120 +#, php-format msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente." +"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/admin.php:632 -msgid "OStatus conversation completion interval" -msgstr "Intervallo completamento conversazioni OStatus" +#: ../../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/admin.php:632 +#: ../../mod/invite.php:123 +#, php-format msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "quanto spesso il poller deve controllare se esistono nuovi commenti in una conversazione OStatus? Questo è un lavoro che puo' richiedere molte risorse." +"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/admin.php:633 -msgid "Enable Diaspora support" -msgstr "Abilita il supporto a Diaspora" +#: ../../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/admin.php:633 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Fornisce compatibilità con il network Diaspora." +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "Invia inviti" -#: ../../mod/admin.php:634 -msgid "Only allow Friendica contacts" -msgstr "Permetti solo contatti Friendica" +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" -#: ../../mod/admin.php:634 +#: ../../mod/invite.php:135 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." +"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/admin.php:635 -msgid "Verify SSL" -msgstr "Verifica SSL" +#: ../../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/admin.php:635 +#: ../../mod/invite.php:137 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." +"Once you have registered, please connect with me via my profile page at:" +msgstr "Una volta registrato, connettiti con me dal mio profilo:" -#: ../../mod/admin.php:636 -msgid "Proxy user" -msgstr "Utente Proxy" +#: ../../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/admin.php:637 -msgid "Proxy URL" -msgstr "URL Proxy" +#: ../../mod/photos.php:52 ../../boot.php:2129 +msgid "Photo Albums" +msgstr "Album foto" -#: ../../mod/admin.php:638 -msgid "Network timeout" -msgstr "Timeout rete" +#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064 +#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 +#: ../../mod/photos.php:1760 ../../mod/photos.php:1772 +#: ../../view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Foto dei contatti" -#: ../../mod/admin.php:638 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)." +#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 +msgid "Upload New Photos" +msgstr "Carica nuove foto" -#: ../../mod/admin.php:639 -msgid "Delivery interval" -msgstr "Intervallo di invio" +#: ../../mod/photos.php:144 +msgid "Contact information unavailable" +msgstr "I dati di questo contatto non sono disponibili" -#: ../../mod/admin.php:639 -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/photos.php:165 +msgid "Album not found." +msgstr "Album non trovato." -#: ../../mod/admin.php:640 -msgid "Poll interval" -msgstr "Intervallo di poll" +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 +msgid "Delete Album" +msgstr "Rimuovi album" -#: ../../mod/admin.php:640 -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/photos.php:198 +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/admin.php:641 -msgid "Maximum Load Average" -msgstr "Massimo carico medio" +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 +msgid "Delete Photo" +msgstr "Rimuovi foto" -#: ../../mod/admin.php:641 -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/photos.php:287 +msgid "Do you really want to delete this photo?" +msgstr "Vuoi veramente cancellare questa foto?" -#: ../../mod/admin.php:643 -msgid "Use MySQL full text engine" -msgstr "Usa il motore MySQL full text" +#: ../../mod/photos.php:662 +#, 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/admin.php:643 -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/photos.php:662 +msgid "a photo" +msgstr "una foto" -#: ../../mod/admin.php:644 -msgid "Suppress Language" -msgstr "Disattiva lingua" +#: ../../mod/photos.php:767 +msgid "Image exceeds size limit of " +msgstr "L'immagine supera il limite di" -#: ../../mod/admin.php:644 -msgid "Suppress language information in meta information about a posting." -msgstr "Disattiva le informazioni sulla lingua nei meta di un post." +#: ../../mod/photos.php:775 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." -#: ../../mod/admin.php:645 -msgid "Path to item cache" -msgstr "Percorso cache elementi" +#: ../../mod/photos.php:930 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" -#: ../../mod/admin.php:646 -msgid "Cache duration in seconds" -msgstr "Durata della cache in secondi" +#: ../../mod/photos.php:1094 +#, 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/admin.php:646 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno). Per disabilitare la cache, imposta il valore a -1." +#: ../../mod/photos.php:1129 +msgid "Upload Photos" +msgstr "Carica foto" -#: ../../mod/admin.php:647 -msgid "Maximum numbers of comments per post" -msgstr "Numero massimo di commenti per post" +#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 +msgid "New album name: " +msgstr "Nome nuovo album: " -#: ../../mod/admin.php:647 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "Quanti commenti devono essere mostrati per ogni post? Default : 100." +#: ../../mod/photos.php:1134 +msgid "or existing album name: " +msgstr "o nome di un album esistente: " -#: ../../mod/admin.php:648 -msgid "Path for lock file" -msgstr "Percorso al file di lock" +#: ../../mod/photos.php:1135 +msgid "Do not show a status post for this upload" +msgstr "Non creare un post per questo upload" -#: ../../mod/admin.php:649 -msgid "Temp path" -msgstr "Percorso file temporanei" +#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 +msgid "Permissions" +msgstr "Permessi" -#: ../../mod/admin.php:650 -msgid "Base path to installation" -msgstr "Percorso base all'installazione" +#: ../../mod/photos.php:1148 +msgid "Private Photo" +msgstr "Foto privata" -#: ../../mod/admin.php:651 -msgid "Disable picture proxy" -msgstr "Disabilita il proxy immagini" +#: ../../mod/photos.php:1149 +msgid "Public Photo" +msgstr "Foto pubblica" -#: ../../mod/admin.php:651 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "Il proxy immagini aumenta le performace e la privacy. Non dovrebbe essere usato su server con poca banda disponibile." +#: ../../mod/photos.php:1212 +msgid "Edit Album" +msgstr "Modifica album" -#: ../../mod/admin.php:653 -msgid "New base url" -msgstr "Nuovo url base" +#: ../../mod/photos.php:1218 +msgid "Show Newest First" +msgstr "Mostra nuove foto per prime" -#: ../../mod/admin.php:655 -msgid "Enable noscrape" -msgstr "Abilita noscrape" +#: ../../mod/photos.php:1220 +msgid "Show Oldest First" +msgstr "Mostra vecchie foto per prime" -#: ../../mod/admin.php:655 -msgid "" -"The noscrape feature speeds up directory submissions by using JSON data " -"instead of HTML scraping." -msgstr "La funzione noscrape velocizza l'iscrizione alla directory usando dati JSON al posto di esaminare l'HTML" +#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 +msgid "View Photo" +msgstr "Vedi foto" -#: ../../mod/admin.php:672 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato segnato come di successo" +#: ../../mod/photos.php:1294 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." -#: ../../mod/admin.php:680 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Aggiornamento struttura database %s applicata con successo." +#: ../../mod/photos.php:1296 +msgid "Photo not available" +msgstr "Foto non disponibile" -#: ../../mod/admin.php:683 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "Aggiornamento struttura database %s fallita con errore: %s" +#: ../../mod/photos.php:1352 +msgid "View photo" +msgstr "Vedi foto" -#: ../../mod/admin.php:695 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Esecuzione di %s fallita con errore: %s" +#: ../../mod/photos.php:1352 +msgid "Edit photo" +msgstr "Modifica foto" -#: ../../mod/admin.php:698 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è stato applicato con successo" +#: ../../mod/photos.php:1353 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" -#: ../../mod/admin.php:702 -#, 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/photos.php:1378 +msgid "View Full Size" +msgstr "Vedi dimensione intera" -#: ../../mod/admin.php:704 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "Non ci sono altre funzioni di aggiornamento %s da richiamare." +#: ../../mod/photos.php:1457 +msgid "Tags: " +msgstr "Tag: " -#: ../../mod/admin.php:723 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." +#: ../../mod/photos.php:1460 +msgid "[Remove any tag]" +msgstr "[Rimuovi tutti i tag]" -#: ../../mod/admin.php:724 -msgid "Check database structure" -msgstr "Controlla struttura database" +#: ../../mod/photos.php:1500 +msgid "Rotate CW (right)" +msgstr "Ruota a destra" -#: ../../mod/admin.php:729 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti" +#: ../../mod/photos.php:1501 +msgid "Rotate CCW (left)" +msgstr "Ruota a sinistra" -#: ../../mod/admin.php:730 -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/photos.php:1503 +msgid "New album name" +msgstr "Nuovo nome dell'album" -#: ../../mod/admin.php:731 -msgid "Mark success (if update was manually applied)" -msgstr "Segna completato (se l'update è stato applicato manualmente)" +#: ../../mod/photos.php:1506 +msgid "Caption" +msgstr "Titolo" -#: ../../mod/admin.php:732 -msgid "Attempt to execute this update step automatically" -msgstr "Cerco di eseguire questo aggiornamento in automatico" +#: ../../mod/photos.php:1508 +msgid "Add a Tag" +msgstr "Aggiungi tag" -#: ../../mod/admin.php:764 -#, php-format +#: ../../mod/photos.php:1512 msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "\nGentile %1$s,\n l'amministratore di %2$s ha impostato un account per te." +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: ../../mod/admin.php:767 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %4$s" +#: ../../mod/photos.php:1521 +msgid "Private photo" +msgstr "Foto privata" -#: ../../mod/admin.php:811 -#, 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/photos.php:1522 +msgid "Public photo" +msgstr "Foto pubblica" -#: ../../mod/admin.php:818 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s utente cancellato" -msgstr[1] "%s utenti cancellati" +#: ../../mod/photos.php:1544 ../../include/conversation.php:1090 +msgid "Share" +msgstr "Condividi" -#: ../../mod/admin.php:857 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' cancellato" +#: ../../mod/photos.php:1817 +msgid "Recent Photos" +msgstr "Foto recenti" -#: ../../mod/admin.php:865 -#, php-format -msgid "User '%s' unblocked" -msgstr "Utente '%s' sbloccato" +#: ../../mod/regmod.php:55 +msgid "Account approved." +msgstr "Account approvato." -#: ../../mod/admin.php:865 +#: ../../mod/regmod.php:92 #, php-format -msgid "User '%s' blocked" -msgstr "Utente '%s' bloccato" +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" -#: ../../mod/admin.php:960 -msgid "Add User" -msgstr "Aggiungi utente" +#: ../../mod/regmod.php:104 +msgid "Please login." +msgstr "Accedi." -#: ../../mod/admin.php:961 -msgid "select all" -msgstr "seleziona tutti" +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Muovi account" -#: ../../mod/admin.php:962 -msgid "User registrations waiting for confirm" -msgstr "Richieste di registrazione in attesa di conferma" +#: ../../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/admin.php:963 -msgid "User waiting for permanent deletion" -msgstr "Utente in attesa di cancellazione definitiva" +#: ../../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/admin.php:964 -msgid "Request date" -msgstr "Data richiesta" +#: ../../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/admin.php:965 -msgid "No registrations." -msgstr "Nessuna registrazione." +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "File account" -#: ../../mod/admin.php:967 -msgid "Deny" -msgstr "Nega" +#: ../../mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"" -#: ../../mod/admin.php:971 -msgid "Site admin" -msgstr "Amministrazione sito" +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Oggetto non disponibile." -#: ../../mod/admin.php:972 -msgid "Account expired" -msgstr "Account scaduto" +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Oggetto non trovato." -#: ../../mod/admin.php:975 -msgid "New User" -msgstr "Nuovo Utente" +#: ../../boot.php:749 +msgid "Delete this item?" +msgstr "Cancellare questo elemento?" -#: ../../mod/admin.php:976 ../../mod/admin.php:977 -msgid "Register date" -msgstr "Data registrazione" +#: ../../boot.php:752 +msgid "show fewer" +msgstr "mostra di meno" -#: ../../mod/admin.php:976 ../../mod/admin.php:977 -msgid "Last login" -msgstr "Ultimo accesso" +#: ../../boot.php:1122 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "aggiornamento %s fallito. Guarda i log di errore." -#: ../../mod/admin.php:976 ../../mod/admin.php:977 -msgid "Last item" -msgstr "Ultimo elemento" +#: ../../boot.php:1240 +msgid "Create a New Account" +msgstr "Crea un nuovo account" -#: ../../mod/admin.php:976 -msgid "Deleted since" -msgstr "Rimosso da" +#: ../../boot.php:1265 ../../include/nav.php:73 +msgid "Logout" +msgstr "Esci" -#: ../../mod/admin.php:979 -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?" +#: ../../boot.php:1268 +msgid "Nickname or Email address: " +msgstr "Nome utente o indirizzo email: " -#: ../../mod/admin.php:980 -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?" +#: ../../boot.php:1269 +msgid "Password: " +msgstr "Password: " -#: ../../mod/admin.php:990 -msgid "Name of the new user." -msgstr "Nome del nuovo utente." +#: ../../boot.php:1270 +msgid "Remember me" +msgstr "Ricordati di me" -#: ../../mod/admin.php:991 -msgid "Nickname" -msgstr "Nome utente" +#: ../../boot.php:1273 +msgid "Or login using OpenID: " +msgstr "O entra con OpenID:" -#: ../../mod/admin.php:991 -msgid "Nickname of the new user." -msgstr "Nome utente del nuovo utente." +#: ../../boot.php:1279 +msgid "Forgot your password?" +msgstr "Hai dimenticato la password?" -#: ../../mod/admin.php:992 -msgid "Email address of the new user." -msgstr "Indirizzo Email del nuovo utente." +#: ../../boot.php:1282 +msgid "Website Terms of Service" +msgstr "Condizioni di servizio del sito web " -#: ../../mod/admin.php:1025 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s disabilitato." +#: ../../boot.php:1283 +msgid "terms of service" +msgstr "condizioni del servizio" -#: ../../mod/admin.php:1029 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s abilitato." +#: ../../boot.php:1285 +msgid "Website Privacy Policy" +msgstr "Politiche di privacy del sito" -#: ../../mod/admin.php:1039 ../../mod/admin.php:1255 -msgid "Disable" -msgstr "Disabilita" +#: ../../boot.php:1286 +msgid "privacy policy" +msgstr "politiche di privacy" -#: ../../mod/admin.php:1041 ../../mod/admin.php:1257 -msgid "Enable" -msgstr "Abilita" +#: ../../boot.php:1419 +msgid "Requested account is not available." +msgstr "L'account richiesto non è disponibile." -#: ../../mod/admin.php:1064 ../../mod/admin.php:1285 -msgid "Toggle" -msgstr "Inverti" +#: ../../boot.php:1501 ../../boot.php:1635 +#: ../../include/profile_advanced.php:84 +msgid "Edit profile" +msgstr "Modifica il profilo" -#: ../../mod/admin.php:1072 ../../mod/admin.php:1295 -msgid "Author: " -msgstr "Autore: " +#: ../../boot.php:1600 +msgid "Message" +msgstr "Messaggio" -#: ../../mod/admin.php:1073 ../../mod/admin.php:1296 -msgid "Maintainer: " -msgstr "Manutentore: " +#: ../../boot.php:1606 ../../include/nav.php:175 +msgid "Profiles" +msgstr "Profili" -#: ../../mod/admin.php:1215 -msgid "No themes found." -msgstr "Nessun tema trovato." +#: ../../boot.php:1606 +msgid "Manage/edit profiles" +msgstr "Gestisci/modifica i profili" -#: ../../mod/admin.php:1277 -msgid "Screenshot" -msgstr "Anteprima" +#: ../../boot.php:1706 +msgid "Network:" +msgstr "Rete:" -#: ../../mod/admin.php:1323 -msgid "[Experimental]" -msgstr "[Sperimentale]" +#: ../../boot.php:1736 ../../boot.php:1822 +msgid "g A l F d" +msgstr "g A l d F" -#: ../../mod/admin.php:1324 -msgid "[Unsupported]" -msgstr "[Non supportato]" +#: ../../boot.php:1737 ../../boot.php:1823 +msgid "F d" +msgstr "d F" -#: ../../mod/admin.php:1351 -msgid "Log settings updated." -msgstr "Impostazioni Log aggiornate." +#: ../../boot.php:1782 ../../boot.php:1863 +msgid "[today]" +msgstr "[oggi]" -#: ../../mod/admin.php:1407 -msgid "Clear" -msgstr "Pulisci" +#: ../../boot.php:1794 +msgid "Birthday Reminders" +msgstr "Promemoria compleanni" -#: ../../mod/admin.php:1413 -msgid "Enable Debugging" -msgstr "Abilita Debugging" +#: ../../boot.php:1795 +msgid "Birthdays this week:" +msgstr "Compleanni questa settimana:" -#: ../../mod/admin.php:1414 -msgid "Log file" -msgstr "File di Log" +#: ../../boot.php:1856 +msgid "[No description]" +msgstr "[Nessuna descrizione]" -#: ../../mod/admin.php:1414 -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." +#: ../../boot.php:1874 +msgid "Event Reminders" +msgstr "Promemoria" -#: ../../mod/admin.php:1415 -msgid "Log level" -msgstr "Livello di Log" +#: ../../boot.php:1875 +msgid "Events this week:" +msgstr "Eventi di questa settimana:" -#: ../../mod/admin.php:1465 -msgid "Close" -msgstr "Chiudi" +#: ../../boot.php:2112 ../../include/nav.php:76 +msgid "Status" +msgstr "Stato" -#: ../../mod/admin.php:1471 -msgid "FTP Host" -msgstr "Indirizzo FTP" +#: ../../boot.php:2115 +msgid "Status Messages and Posts" +msgstr "Messaggi di stato e post" -#: ../../mod/admin.php:1472 -msgid "FTP Path" -msgstr "Percorso FTP" +#: ../../boot.php:2122 +msgid "Profile Details" +msgstr "Dettagli del profilo" -#: ../../mod/admin.php:1473 -msgid "FTP User" -msgstr "Utente FTP" +#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79 +msgid "Videos" +msgstr "Video" -#: ../../mod/admin.php:1474 -msgid "FTP Password" -msgstr "Pasword FTP" +#: ../../boot.php:2146 +msgid "Events and Calendar" +msgstr "Eventi e calendario" -#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "La dimensione dell'immagine supera il limite di %d" +#: ../../boot.php:2153 +msgid "Only You Can See This" +msgstr "Solo tu puoi vedere questo" -#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807 -#: ../../mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Impossibile caricare l'immagine." +#: ../../object/Item.php:94 +msgid "This entry was edited" +msgstr "Questa voce è stata modificata" -#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Caricamento immagine fallito." +#: ../../object/Item.php:208 +msgid "ignore thread" +msgstr "ignora la discussione" -#: ../../mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Benvenuto su %s" +#: ../../object/Item.php:209 +msgid "unignore thread" +msgstr "non ignorare la discussione" -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Errore protocollo OpenID. Nessun ID ricevuto." +#: ../../object/Item.php:210 +msgid "toggle ignore status" +msgstr "inverti stato \"Ignora\"" -#: ../../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." +#: ../../object/Item.php:213 +msgid "ignored" +msgstr "ignorato" -#: ../../mod/network.php:136 -msgid "Search Results For:" -msgstr "Cerca risultati per:" +#: ../../object/Item.php:316 ../../include/conversation.php:666 +msgid "Categories:" +msgstr "Categorie:" -#: ../../mod/network.php:179 ../../mod/search.php:21 -msgid "Remove term" -msgstr "Rimuovi termine" +#: ../../object/Item.php:317 ../../include/conversation.php:667 +msgid "Filed under:" +msgstr "Archiviato in:" -#: ../../mod/network.php:350 -msgid "Commented Order" -msgstr "Ordina per commento" +#: ../../object/Item.php:329 +msgid "via" +msgstr "via" -#: ../../mod/network.php:353 -msgid "Sort by Comment Date" -msgstr "Ordina per data commento" +#: ../../include/dbstructure.php:26 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido." -#: ../../mod/network.php:356 -msgid "Posted Order" -msgstr "Ordina per invio" +#: ../../include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Il messaggio di errore è\n[pre]%s[/pre]" -#: ../../mod/network.php:359 -msgid "Sort by Post Date" -msgstr "Ordina per data messaggio" +#: ../../include/dbstructure.php:162 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." -#: ../../mod/network.php:368 -msgid "Posts that mention or involve you" -msgstr "Messaggi che ti citano o coinvolgono" +#: ../../include/dbstructure.php:220 +msgid "Errors encountered performing database changes." +msgstr "Riscontrati errori applicando le modifiche al database." -#: ../../mod/network.php:374 -msgid "New" -msgstr "Nuovo" +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Uscita effettuata." -#: ../../mod/network.php:377 -msgid "Activity Stream - by date" -msgstr "Activity Stream - per data" +#: ../../include/auth.php:128 ../../include/user.php:67 +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." -#: ../../mod/network.php:383 -msgid "Shared Links" -msgstr "Links condivisi" +#: ../../include/auth.php:128 ../../include/user.php:67 +msgid "The error message was:" +msgstr "Il messaggio riportato era:" -#: ../../mod/network.php:386 -msgid "Interesting Links" -msgstr "Link Interessanti" +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Aggiungi nuovo contatto" -#: ../../mod/network.php:392 -msgid "Starred" -msgstr "Preferiti" +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Inserisci posizione o indirizzo web" -#: ../../mod/network.php:395 -msgid "Favourite Posts" -msgstr "Messaggi preferiti" +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Esempio: bob@example.com, http://example.com/barbara" -#: ../../mod/network.php:457 +#: ../../include/contact_widgets.php:24 #, 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." +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invito disponibile" +msgstr[1] "%d inviti disponibili" -#: ../../mod/network.php:460 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente." +#: ../../include/contact_widgets.php:30 +msgid "Find People" +msgstr "Trova persone" -#: ../../mod/network.php:514 ../../mod/content.php:119 -msgid "No such group" -msgstr "Nessun gruppo" +#: ../../include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Inserisci un nome o un interesse" -#: ../../mod/network.php:531 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "Il gruppo è vuoto" - -#: ../../mod/network.php:538 ../../mod/content.php:134 -msgid "Group: " -msgstr "Gruppo: " +#: ../../include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Connetti/segui" -#: ../../mod/network.php:548 -msgid "Contact: " -msgstr "Contatto:" +#: ../../include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Esempi: Mario Rossi, Pesca" -#: ../../mod/network.php:550 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente." +#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526 +msgid "Similar Interests" +msgstr "Interessi simili" -#: ../../mod/network.php:555 -msgid "Invalid contact." -msgstr "Contatto non valido." +#: ../../include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Profilo causale" -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- seleziona -" +#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528 +msgid "Invite Friends" +msgstr "Invita amici" -#: ../../mod/friendica.php:62 -msgid "This is Friendica, version" -msgstr "Questo è Friendica, versione" +#: ../../include/contact_widgets.php:71 +msgid "Networks" +msgstr "Reti" -#: ../../mod/friendica.php:63 -msgid "running at web location" -msgstr "in esecuzione all'indirizzo web" +#: ../../include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Tutte le Reti" -#: ../../mod/friendica.php:65 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." +#: ../../include/contact_widgets.php:104 ../../include/features.php:60 +msgid "Saved Folders" +msgstr "Cartelle Salvate" -#: ../../mod/friendica.php:67 -msgid "Bug reports and issues: please visit" -msgstr "Segnalazioni di bug e problemi: visita" +#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 +msgid "Everything" +msgstr "Tutto" -#: ../../mod/friendica.php:68 -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" +#: ../../include/contact_widgets.php:136 +msgid "Categories" +msgstr "Categorie" -#: ../../mod/friendica.php:82 -msgid "Installed plugins/addons/apps:" -msgstr "Plugin/addon/applicazioni instalate" +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Funzionalità generali" -#: ../../mod/friendica.php:95 -msgid "No installed plugins/addons/apps" -msgstr "Nessun plugin/addons/applicazione installata" +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "Profili multipli" -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Applicazioni" +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Possibilità di creare profili multipli" -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Nessuna applicazione installata." +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "Funzionalità di composizione dei post" -#: ../../mod/photos.php:67 ../../mod/photos.php:1228 ../../mod/photos.php:1817 -msgid "Upload New Photos" -msgstr "Carica nuove foto" +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "Editor visuale" -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "I dati di questo contatto non sono disponibili" +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "Abilita l'editor visuale" -#: ../../mod/photos.php:165 -msgid "Album not found." -msgstr "Album non trovato." +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Anteprima dei post" -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1206 -msgid "Delete Album" -msgstr "Rimuovi album" +#: ../../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" -#: ../../mod/photos.php:198 -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?" +#: ../../include/features.php:33 +msgid "Auto-mention Forums" +msgstr "Auto-cita i Forum" -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1513 -msgid "Delete Photo" -msgstr "Rimuovi foto" +#: ../../include/features.php:33 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "Aggiunge o rimuove una citazione quando un forum è selezionato o deselezionato nella finestra dei permessi." -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "Vuoi veramente cancellare questa foto?" +#: ../../include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "Widget della barra laterale nella pagina Rete" -#: ../../mod/photos.php:662 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s è stato taggato in %2$s da %3$s" +#: ../../include/features.php:39 +msgid "Search by Date" +msgstr "Cerca per data" -#: ../../mod/photos.php:662 -msgid "a photo" -msgstr "una foto" +#: ../../include/features.php:39 +msgid "Ability to select posts by date ranges" +msgstr "Permette di filtrare i post per data" -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "L'immagine supera il limite di" +#: ../../include/features.php:40 +msgid "Group Filter" +msgstr "Filtra gruppi" -#: ../../mod/photos.php:775 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Abilita il widget per filtrare i post solo per il gruppo selezionato" -#: ../../mod/photos.php:930 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" +#: ../../include/features.php:41 +msgid "Network Filter" +msgstr "Filtro reti" -#: ../../mod/photos.php:1094 -#, 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." +#: ../../include/features.php:41 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Abilita il widget per mostare i post solo per la rete selezionata" -#: ../../mod/photos.php:1129 -msgid "Upload Photos" -msgstr "Carica foto" +#: ../../include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Salva i termini cercati per riutilizzarli" -#: ../../mod/photos.php:1133 ../../mod/photos.php:1201 -msgid "New album name: " -msgstr "Nome nuovo album: " +#: ../../include/features.php:47 +msgid "Network Tabs" +msgstr "Schede pagina Rete" -#: ../../mod/photos.php:1134 -msgid "or existing album name: " -msgstr "o nome di un album esistente: " +#: ../../include/features.php:48 +msgid "Network Personal Tab" +msgstr "Scheda Personali" -#: ../../mod/photos.php:1135 -msgid "Do not show a status post for this upload" -msgstr "Non creare un post per questo upload" +#: ../../include/features.php:48 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Abilita la scheda per mostrare solo i post a cui hai partecipato" -#: ../../mod/photos.php:1137 ../../mod/photos.php:1508 -msgid "Permissions" -msgstr "Permessi" +#: ../../include/features.php:49 +msgid "Network New Tab" +msgstr "Scheda Nuovi" -#: ../../mod/photos.php:1148 -msgid "Private Photo" -msgstr "Foto privata" +#: ../../include/features.php:49 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)" -#: ../../mod/photos.php:1149 -msgid "Public Photo" -msgstr "Foto pubblica" +#: ../../include/features.php:50 +msgid "Network Shared Links Tab" +msgstr "Scheda Link Condivisi" -#: ../../mod/photos.php:1216 -msgid "Edit Album" -msgstr "Modifica album" +#: ../../include/features.php:50 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Abilita la scheda per mostrare solo i post che contengono link" -#: ../../mod/photos.php:1222 -msgid "Show Newest First" -msgstr "Mostra nuove foto per prime" +#: ../../include/features.php:55 +msgid "Post/Comment Tools" +msgstr "Strumenti per messaggi/commenti" -#: ../../mod/photos.php:1224 -msgid "Show Oldest First" -msgstr "Mostra vecchie foto per prime" +#: ../../include/features.php:56 +msgid "Multiple Deletion" +msgstr "Eliminazione multipla" -#: ../../mod/photos.php:1257 ../../mod/photos.php:1800 -msgid "View Photo" -msgstr "Vedi foto" +#: ../../include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "Seleziona ed elimina vari messagi e commenti in una volta sola" -#: ../../mod/photos.php:1292 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." +#: ../../include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Modifica i post inviati" -#: ../../mod/photos.php:1294 -msgid "Photo not available" -msgstr "Foto non disponibile" +#: ../../include/features.php:57 +msgid "Edit and correct posts and comments after sending" +msgstr "Modifica e correggi messaggi e commenti dopo averli inviati" -#: ../../mod/photos.php:1350 -msgid "View photo" -msgstr "Vedi foto" +#: ../../include/features.php:58 +msgid "Tagging" +msgstr "Aggiunta tag" -#: ../../mod/photos.php:1350 -msgid "Edit photo" -msgstr "Modifica foto" +#: ../../include/features.php:58 +msgid "Ability to tag existing posts" +msgstr "Permette di aggiungere tag ai post già esistenti" -#: ../../mod/photos.php:1351 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" +#: ../../include/features.php:59 +msgid "Post Categories" +msgstr "Cateorie post" -#: ../../mod/photos.php:1376 -msgid "View Full Size" -msgstr "Vedi dimensione intera" +#: ../../include/features.php:59 +msgid "Add categories to your posts" +msgstr "Aggiungi categorie ai tuoi post" -#: ../../mod/photos.php:1455 -msgid "Tags: " -msgstr "Tag: " +#: ../../include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Permette di archiviare i post in cartelle" -#: ../../mod/photos.php:1458 -msgid "[Remove any tag]" -msgstr "[Rimuovi tutti i tag]" +#: ../../include/features.php:61 +msgid "Dislike Posts" +msgstr "Non mi piace" -#: ../../mod/photos.php:1498 -msgid "Rotate CW (right)" -msgstr "Ruota a destra" +#: ../../include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Permetti di inviare \"non mi piace\" ai messaggi" -#: ../../mod/photos.php:1499 -msgid "Rotate CCW (left)" -msgstr "Ruota a sinistra" +#: ../../include/features.php:62 +msgid "Star Posts" +msgstr "Post preferiti" -#: ../../mod/photos.php:1501 -msgid "New album name" -msgstr "Nuovo nome dell'album" +#: ../../include/features.php:62 +msgid "Ability to mark special posts with a star indicator" +msgstr "Permette di segnare i post preferiti con una stella" -#: ../../mod/photos.php:1504 -msgid "Caption" -msgstr "Titolo" +#: ../../include/features.php:63 +msgid "Mute Post Notifications" +msgstr "Silenzia le notifiche di nuovi post" -#: ../../mod/photos.php:1506 -msgid "Add a Tag" -msgstr "Aggiungi tag" +#: ../../include/features.php:63 +msgid "Ability to mute notifications for a thread" +msgstr "Permette di silenziare le notifiche di nuovi post in una discussione" + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "URL di connessione mancante." -#: ../../mod/photos.php:1510 +#: ../../include/follow.php:59 msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +"This site is not configured to allow communications with other networks." +msgstr "Questo sito non è configurato per permettere la comunicazione con altri network." -#: ../../mod/photos.php:1519 -msgid "Private photo" -msgstr "Foto privata" +#: ../../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." -#: ../../mod/photos.php:1520 -msgid "Public photo" -msgstr "Foto pubblica" +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." -#: ../../mod/photos.php:1815 -msgid "Recent Photos" -msgstr "Foto recenti" +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Non è stato trovato un nome o un autore" -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Contatto aggiunto" +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Nessun URL puo' essere associato a questo indirizzo." -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Muovi account" +#: ../../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." -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Puoi importare un account da un altro server Friendica." +#: ../../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." -#: ../../mod/uimport.php:68 +#: ../../include/follow.php:93 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." +"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." -#: ../../mod/uimport.php:69 +#: ../../include/follow.php:103 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" +"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." -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "File account" +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Impossibile recuperare informazioni sul contatto." -#: ../../mod/uimport.php:70 +#: ../../include/follow.php:258 +msgid "following" +msgstr "segue" + +#: ../../include/group.php:25 msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"" +"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." -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limite totale degli inviti superato." +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Gruppo predefinito per i nuovi contatti" -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "Tutti" -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Unisiciti a noi su Friendica" +#: ../../include/group.php:249 +msgid "edit" +msgstr "modifica" -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito." +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "Modifica gruppo" -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio fallita." +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Crea un nuovo gruppo" -#: ../../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." +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "Contatti in nessun gruppo." -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Varie" -#: ../../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." +#: ../../include/datetime.php:153 ../../include/datetime.php:290 +msgid "year" +msgstr "anno" -#: ../../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." +#: ../../include/datetime.php:158 ../../include/datetime.php:291 +msgid "month" +msgstr "mese" -#: ../../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." +#: ../../include/datetime.php:163 ../../include/datetime.php:293 +msgid "day" +msgstr "giorno" -#: ../../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." +#: ../../include/datetime.php:276 +msgid "never" +msgstr "mai" -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Invia inviti" +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "meno di un secondo fa" -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" +#: ../../include/datetime.php:290 +msgid "years" +msgstr "anni" -#: ../../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." +#: ../../include/datetime.php:291 +msgid "months" +msgstr "mesi" -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Sarà necessario fornire questo codice invito: $invite_code" +#: ../../include/datetime.php:292 +msgid "week" +msgstr "settimana" -#: ../../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:" +#: ../../include/datetime.php:292 +msgid "weeks" +msgstr "settimane" -#: ../../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" +#: ../../include/datetime.php:293 +msgid "days" +msgstr "giorni" -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Accesso negato." +#: ../../include/datetime.php:294 +msgid "hour" +msgstr "ora" -#: ../../mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Nessun account valido trovato." +#: ../../include/datetime.php:294 +msgid "hours" +msgstr "ore" -#: ../../mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." +#: ../../include/datetime.php:295 +msgid "minute" +msgstr "minuto" -#: ../../mod/lostpass.php:42 +#: ../../include/datetime.php:295 +msgid "minutes" +msgstr "minuti" + +#: ../../include/datetime.php:296 +msgid "second" +msgstr "secondo" + +#: ../../include/datetime.php:296 +msgid "seconds" +msgstr "secondi" + +#: ../../include/datetime.php:305 #, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "\nGentile %1$s,\n abbiamo ricevuto su \"%2$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica." +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s fa" -#: ../../mod/lostpass.php:53 +#: ../../include/datetime.php:477 ../../include/items.php:2211 #, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "\nSegui questo link per verificare la tua identità:\n\n%1$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2$s\n Nome utente: %3$s" +msgid "%s's birthday" +msgstr "Compleanno di %s" -#: ../../mod/lostpass.php:72 +#: ../../include/datetime.php:478 ../../include/items.php:2212 #, php-format -msgid "Password reset requested at %s" -msgstr "Richiesta reimpostazione password su %s" +msgid "Happy Birthday %s" +msgstr "Buon compleanno %s" -#: ../../mod/lostpass.php:92 +#: ../../include/acl_selectors.php:333 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: ../../include/acl_selectors.php:334 ../../view/theme/diabook/config.php:142 +#: ../../view/theme/diabook/theme.php:621 +msgid "show" +msgstr "mostra" + +#: ../../include/acl_selectors.php:335 ../../view/theme/diabook/config.php:142 +#: ../../view/theme/diabook/theme.php:621 +msgid "don't show" +msgstr "non mostrare" + +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[nessun oggetto]" + +#: ../../include/Contact.php:115 +msgid "stopped following" +msgstr "tolto dai seguiti" + +#: ../../include/Contact.php:228 ../../include/conversation.php:882 +msgid "Poke" +msgstr "Stuzzica" + +#: ../../include/Contact.php:229 ../../include/conversation.php:876 +msgid "View Status" +msgstr "Visualizza stato" + +#: ../../include/Contact.php:230 ../../include/conversation.php:877 +msgid "View Profile" +msgstr "Visualizza profilo" + +#: ../../include/Contact.php:231 ../../include/conversation.php:878 +msgid "View Photos" +msgstr "Visualizza foto" + +#: ../../include/Contact.php:232 ../../include/Contact.php:255 +#: ../../include/conversation.php:879 +msgid "Network Posts" +msgstr "Post della Rete" + +#: ../../include/Contact.php:233 ../../include/Contact.php:255 +#: ../../include/conversation.php:880 +msgid "Edit Contact" +msgstr "Modifica contatti" + +#: ../../include/Contact.php:234 +msgid "Drop Contact" +msgstr "Rimuovi contatto" + +#: ../../include/Contact.php:235 ../../include/Contact.php:255 +#: ../../include/conversation.php:881 +msgid "Send PM" +msgstr "Invia messaggio privato" + +#: ../../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 "" -"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." +"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/conversation.php:118 ../../include/conversation.php:246 +#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463 +msgid "event" +msgstr "l'evento" + +#: ../../include/conversation.php:207 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha stuzzicato %2$s" + +#: ../../include/conversation.php:211 ../../include/text.php:1005 +msgid "poked" +msgstr "ha stuzzicato" + +#: ../../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:772 +msgid "remove" +msgstr "rimuovi" + +#: ../../include/conversation.php:776 +msgid "Delete Selected Items" +msgstr "Cancella elementi selezionati" + +#: ../../include/conversation.php:875 +msgid "Follow Thread" +msgstr "Segui la discussione" + +#: ../../include/conversation.php:944 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:944 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:949 +#, php-format +msgid "%2$d people like this" +msgstr "Piace a %2$d persone." + +#: ../../include/conversation.php:952 +#, php-format +msgid "%2$d people don't like this" +msgstr "Non piace a %2$d persone." + +#: ../../include/conversation.php:966 +msgid "and" +msgstr "e" + +#: ../../include/conversation.php:972 +#, php-format +msgid ", and %d other people" +msgstr "e altre %d persone" + +#: ../../include/conversation.php:974 +#, php-format +msgid "%s like this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:974 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Please enter a video link/URL:" +msgstr "Inserisci un collegamento video / URL:" + +#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 +msgid "Please enter an audio link/URL:" +msgstr "Inserisci un collegamento audio / URL:" + +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 +msgid "Tag term:" +msgstr "Tag:" + +#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 +msgid "Where are you right now?" +msgstr "Dove sei ora?" + +#: ../../include/conversation.php:1008 +msgid "Delete item(s)?" +msgstr "Cancellare questo elemento/i?" + +#: ../../include/conversation.php:1051 +msgid "Post to Email" +msgstr "Invia a email" + +#: ../../include/conversation.php:1056 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." + +#: ../../include/conversation.php:1111 +msgid "permissions" +msgstr "permessi" + +#: ../../include/conversation.php:1135 +msgid "Post to Groups" +msgstr "Invia ai Gruppi" + +#: ../../include/conversation.php:1136 +msgid "Post to Contacts" +msgstr "Invia ai Contatti" + +#: ../../include/conversation.php:1137 +msgid "Private post" +msgstr "Post privato" + +#: ../../include/network.php:895 +msgid "view full size" +msgstr "vedi a schermo intero" + +#: ../../include/text.php:297 +msgid "newer" +msgstr "nuovi" + +#: ../../include/text.php:299 +msgid "older" +msgstr "vecchi" + +#: ../../include/text.php:304 +msgid "prev" +msgstr "prec" + +#: ../../include/text.php:306 +msgid "first" +msgstr "primo" + +#: ../../include/text.php:338 +msgid "last" +msgstr "ultimo" + +#: ../../include/text.php:341 +msgid "next" +msgstr "succ" + +#: ../../include/text.php:855 +msgid "No contacts" +msgstr "Nessun contatto" + +#: ../../include/text.php:864 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contatto" +msgstr[1] "%d contatti" + +#: ../../include/text.php:1005 +msgid "poke" +msgstr "stuzzica" + +#: ../../include/text.php:1006 +msgid "ping" +msgstr "invia un ping" + +#: ../../include/text.php:1006 +msgid "pinged" +msgstr "ha inviato un ping" + +#: ../../include/text.php:1007 +msgid "prod" +msgstr "pungola" + +#: ../../include/text.php:1007 +msgid "prodded" +msgstr "ha pungolato" + +#: ../../include/text.php:1008 +msgid "slap" +msgstr "schiaffeggia" + +#: ../../include/text.php:1008 +msgid "slapped" +msgstr "ha schiaffeggiato" + +#: ../../include/text.php:1009 +msgid "finger" +msgstr "tocca" + +#: ../../include/text.php:1009 +msgid "fingered" +msgstr "ha toccato" + +#: ../../include/text.php:1010 +msgid "rebuff" +msgstr "respingi" -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "La tua password è stata reimpostata come richiesto." +#: ../../include/text.php:1010 +msgid "rebuffed" +msgstr "ha respinto" -#: ../../mod/lostpass.php:111 -msgid "Your new password is" -msgstr "La tua nuova password è" +#: ../../include/text.php:1024 +msgid "happy" +msgstr "felice" -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" +#: ../../include/text.php:1025 +msgid "sad" +msgstr "triste" -#: ../../mod/lostpass.php:113 -msgid "click here to login" -msgstr "clicca qui per entrare" +#: ../../include/text.php:1026 +msgid "mellow" +msgstr "rilassato" -#: ../../mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso." +#: ../../include/text.php:1027 +msgid "tired" +msgstr "stanco" -#: ../../mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "\nGentile %1$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare." +#: ../../include/text.php:1028 +msgid "perky" +msgstr "vivace" -#: ../../mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato." +#: ../../include/text.php:1029 +msgid "angry" +msgstr "arrabbiato" -#: ../../mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "La tua password presso %s è stata cambiata" +#: ../../include/text.php:1030 +msgid "stupified" +msgstr "stupefatto" -#: ../../mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" +#: ../../include/text.php:1031 +msgid "puzzled" +msgstr "confuso" -#: ../../mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Inserisci il tuo indirizzo email per reimpostare la password." +#: ../../include/text.php:1032 +msgid "interested" +msgstr "interessato" -#: ../../mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Nome utente o email: " +#: ../../include/text.php:1033 +msgid "bitter" +msgstr "risentito" -#: ../../mod/lostpass.php:162 -msgid "Reset" -msgstr "Reimposta" +#: ../../include/text.php:1034 +msgid "cheerful" +msgstr "giocoso" -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Testo sorgente (bbcode):" +#: ../../include/text.php:1035 +msgid "alive" +msgstr "vivo" -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:" +#: ../../include/text.php:1036 +msgid "annoyed" +msgstr "annoiato" -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Sorgente:" +#: ../../include/text.php:1037 +msgid "anxious" +msgstr "ansioso" -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (HTML grezzo):" +#: ../../include/text.php:1038 +msgid "cranky" +msgstr "irritabile" -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html:" +#: ../../include/text.php:1039 +msgid "disturbed" +msgstr "disturbato" -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " +#: ../../include/text.php:1040 +msgid "frustrated" +msgstr "frustato" -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " +#: ../../include/text.php:1041 +msgid "motivated" +msgstr "motivato" -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " +#: ../../include/text.php:1042 +msgid "relaxed" +msgstr "rilassato" -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " +#: ../../include/text.php:1043 +msgid "surprised" +msgstr "sorpreso" -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " +#: ../../include/text.php:1213 +msgid "Monday" +msgstr "Lunedì" -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Sorgente (formato Diaspora):" +#: ../../include/text.php:1213 +msgid "Tuesday" +msgstr "Martedì" -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " +#: ../../include/text.php:1213 +msgid "Wednesday" +msgstr "Mercoledì" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag rimosso" +#: ../../include/text.php:1213 +msgid "Thursday" +msgstr "Giovedì" -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" +#: ../../include/text.php:1213 +msgid "Friday" +msgstr "Venerdì" -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " +#: ../../include/text.php:1213 +msgid "Saturday" +msgstr "Sabato" -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Rimuovi il mio account" +#: ../../include/text.php:1213 +msgid "Sunday" +msgstr "Domenica" -#: ../../mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." +#: ../../include/text.php:1217 +msgid "January" +msgstr "Gennaio" -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" +#: ../../include/text.php:1217 +msgid "February" +msgstr "Febbraio" -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." +#: ../../include/text.php:1217 +msgid "March" +msgstr "Marzo" -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Modifica visibilità del profilo" +#: ../../include/text.php:1217 +msgid "April" +msgstr "Aprile" -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Visibile a" +#: ../../include/text.php:1217 +msgid "May" +msgstr "Maggio" -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Tutti i contatti (con profilo ad accesso sicuro)" +#: ../../include/text.php:1217 +msgid "June" +msgstr "Giugno" -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Profili corrispondenti" +#: ../../include/text.php:1217 +msgid "July" +msgstr "Luglio" -#: ../../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." +#: ../../include/text.php:1217 +msgid "August" +msgstr "Agosto" -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "è interessato a:" +#: ../../include/text.php:1217 +msgid "September" +msgstr "Settembre" -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "Titolo e ora di inizio dell'evento sono richiesti." +#: ../../include/text.php:1217 +msgid "October" +msgstr "Ottobre" -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "l j F" +#: ../../include/text.php:1217 +msgid "November" +msgstr "Novembre" -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Modifca l'evento" +#: ../../include/text.php:1217 +msgid "December" +msgstr "Dicembre" -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Crea un nuovo evento" +#: ../../include/text.php:1437 +msgid "bytes" +msgstr "bytes" -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Precendente" +#: ../../include/text.php:1461 ../../include/text.php:1473 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" + +#: ../../include/text.php:1702 ../../include/user.php:247 +#: ../../view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "default" -#: ../../mod/events.php:373 ../../mod/install.php:207 -msgid "Next" -msgstr "Successivo" +#: ../../include/text.php:1714 +msgid "Select an alternate language" +msgstr "Seleziona una diversa lingua" -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "ora:minuti" +#: ../../include/text.php:1970 +msgid "activity" +msgstr "attività" -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Dettagli dell'evento" +#: ../../include/text.php:1973 +msgid "post" +msgstr "messaggio" -#: ../../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." +#: ../../include/text.php:2141 +msgid "Item filed" +msgstr "Messaggio salvato" -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "L'evento inizia:" +#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047 +#: ../../include/bbcode.php:1048 +msgid "Image/photo" +msgstr "Immagine/foto" -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Richiesto" +#: ../../include/bbcode.php:528 +#, php-format +msgid "%2$s %3$s" +msgstr "" -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/ora di fine non è definita" +#: ../../include/bbcode.php:562 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s ha scritto il seguente messaggio" -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "L'evento finisce:" +#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Visualizza con il fuso orario di chi legge" +#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057 +msgid "Encrypted content" +msgstr "Contenuto criptato" -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Descrizione:" +#: ../../include/notifier.php:786 ../../include/delivery.php:456 +msgid "(no subject)" +msgstr "(nessun oggetto)" -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Titolo:" +#: ../../include/notifier.php:796 ../../include/delivery.php:467 +#: ../../include/enotify.php:33 +msgid "noreply" +msgstr "nessuna risposta" -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Condividi questo evento" +#: ../../include/dba_pdo.php:72 ../../include/dba.php:56 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" -#: ../../mod/ping.php:240 -msgid "{0} wants to be your friend" -msgstr "{0} vuole essere tuo amico" +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Sconosciuto | non categorizzato" -#: ../../mod/ping.php:245 -msgid "{0} sent you a message" -msgstr "{0} ti ha inviato un messaggio" +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Blocca immediatamente" -#: ../../mod/ping.php:250 -msgid "{0} requested registration" -msgstr "{0} chiede la registrazione" +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Shady, spammer, self-marketer" -#: ../../mod/ping.php:256 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} ha commentato il post di %s" +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Lo conosco, ma non ho un'opinione particolare" -#: ../../mod/ping.php:261 -#, php-format -msgid "{0} liked %s's post" -msgstr "a {0} piace il post di %s" +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "E' ok, probabilmente innocuo" -#: ../../mod/ping.php:266 -#, php-format -msgid "{0} disliked %s's post" -msgstr "a {0} non piace il post di %s" +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Rispettabile, ha la mia fiducia" -#: ../../mod/ping.php:271 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} ora è amico di %s" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Settimanalmente" -#: ../../mod/ping.php:276 -msgid "{0} posted" -msgstr "{0} ha inviato un nuovo messaggio" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mensilmente" -#: ../../mod/ping.php:281 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} ha taggato il post di %s con #%s" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "Ostatus" -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} ti ha citato in un post" +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS / Atom" -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Umore" +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Condividi il tuo umore con i tuoi amici" +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../mod/search.php:170 ../../mod/search.php:196 -#: ../../mod/community.php:62 ../../mod/community.php:71 -msgid "No results." -msgstr "Nessun risultato." +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Impossibile trovare le informazioni del contatto." +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Vuoi veramente cancellare questo messaggio?" +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Messaggio eliminato." +#: ../../include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Conversazione rimossa." +#: ../../include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Nessun messaggio." +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Connettore Diaspora" -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "Mittente sconosciuto - %s" +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Tu e %s" +#: ../../include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s e Tu" +#: ../../include/Scrape.php:614 +msgid " on Last.fm" +msgstr "su Last.fm" -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Elimina la conversazione" +#: ../../include/bb2diaspora.php:154 ../../include/event.php:20 +msgid "Starts:" +msgstr "Inizia:" -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D d M Y - G:i" +#: ../../include/bb2diaspora.php:162 ../../include/event.php:30 +msgid "Finishes:" +msgstr "Finisce:" -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d messaggio" -msgstr[1] "%d messaggi" +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" +msgstr "j F Y" -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Messaggio non disponibile." +#: ../../include/profile_advanced.php:23 +msgid "j F" +msgstr "j F" -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Elimina il messaggio" +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" +msgstr "Compleanno:" -#: ../../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." +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Età:" -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Invia la risposta" +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Non disponibile." +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Tag:" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:133 -#: ../../mod/profiles.php:162 ../../mod/profiles.php:589 -#: ../../mod/dfrn_confirm.php:64 -msgid "Profile not found." -msgstr "Profilo non trovato." +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Religione:" -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profilo elminato." +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Hobby/Interessi:" -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Profilo-" +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Informazioni su contatti e social network:" -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Il nuovo profilo è stato creato." +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Interessi musicali:" -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il profilo." +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Libri, letteratura:" -#: ../../mod/profiles.php:172 -msgid "Profile Name is required." -msgstr "Il nome profilo è obbligatorio ." +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "Televisione:" -#: ../../mod/profiles.php:323 -msgid "Marital Status" -msgstr "Stato civile" +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/danza/cultura/intrattenimento:" -#: ../../mod/profiles.php:327 -msgid "Romantic Partner" -msgstr "Partner romantico" +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Amore:" -#: ../../mod/profiles.php:331 -msgid "Likes" -msgstr "Mi piace" +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Lavoro:" -#: ../../mod/profiles.php:335 -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "Scuola:" -#: ../../mod/profiles.php:339 -msgid "Work/Employment" -msgstr "Lavoro/Impiego" +#: ../../include/plugin.php:455 ../../include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." -#: ../../mod/profiles.php:342 -msgid "Religion" -msgstr "Religione" +#: ../../include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione." -#: ../../mod/profiles.php:346 -msgid "Political Views" -msgstr "Orientamento Politico" +#: ../../include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." -#: ../../mod/profiles.php:350 -msgid "Gender" -msgstr "Sesso" +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Finisci questa sessione" -#: ../../mod/profiles.php:354 -msgid "Sexual Preference" -msgstr "Preferenza sessuale" +#: ../../include/nav.php:76 ../../include/nav.php:148 +#: ../../view/theme/diabook/theme.php:123 +msgid "Your posts and conversations" +msgstr "I tuoi messaggi e le tue conversazioni" -#: ../../mod/profiles.php:358 -msgid "Homepage" -msgstr "Homepage" +#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 +msgid "Your profile page" +msgstr "Pagina del tuo profilo" -#: ../../mod/profiles.php:362 ../../mod/profiles.php:657 -msgid "Interests" -msgstr "Interessi" +#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126 +msgid "Your photos" +msgstr "Le tue foto" -#: ../../mod/profiles.php:366 -msgid "Address" -msgstr "Indirizzo" +#: ../../include/nav.php:79 +msgid "Your videos" +msgstr "I tuoi video" -#: ../../mod/profiles.php:373 ../../mod/profiles.php:653 -msgid "Location" -msgstr "Posizione" +#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127 +msgid "Your events" +msgstr "I tuoi eventi" -#: ../../mod/profiles.php:456 -msgid "Profile updated." -msgstr "Profilo aggiornato." +#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128 +msgid "Personal notes" +msgstr "Note personali" -#: ../../mod/profiles.php:527 -msgid " and " -msgstr "e " +#: ../../include/nav.php:81 +msgid "Your personal notes" +msgstr "Le tue note personali" -#: ../../mod/profiles.php:535 -msgid "public profile" -msgstr "profilo pubblico" +#: ../../include/nav.php:92 +msgid "Sign in" +msgstr "Entra" -#: ../../mod/profiles.php:538 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiato %2$s in “%3$s”" +#: ../../include/nav.php:105 +msgid "Home Page" +msgstr "Home Page" -#: ../../mod/profiles.php:539 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "- Visita %2$s di %1$s" +#: ../../include/nav.php:109 +msgid "Create an account" +msgstr "Crea un account" -#: ../../mod/profiles.php:542 -#, 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" +#: ../../include/nav.php:114 +msgid "Help and documentation" +msgstr "Guida e documentazione" -#: ../../mod/profiles.php:617 -msgid "Hide contacts and friends:" -msgstr "Nascondi contatti:" +#: ../../include/nav.php:117 +msgid "Apps" +msgstr "Applicazioni" -#: ../../mod/profiles.php:622 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?" +#: ../../include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Applicazioni, utilità e giochi aggiuntivi" -#: ../../mod/profiles.php:644 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" +#: ../../include/nav.php:119 +msgid "Search site content" +msgstr "Cerca nel contenuto del sito" -#: ../../mod/profiles.php:646 -msgid "Change Profile Photo" -msgstr "Cambia la foto del profilo" +#: ../../include/nav.php:129 +msgid "Conversations on this site" +msgstr "Conversazioni su questo sito" -#: ../../mod/profiles.php:647 -msgid "View this profile" -msgstr "Visualizza questo profilo" +#: ../../include/nav.php:131 +msgid "Conversations on the network" +msgstr "" -#: ../../mod/profiles.php:648 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" +#: ../../include/nav.php:133 +msgid "Directory" +msgstr "Elenco" -#: ../../mod/profiles.php:649 -msgid "Clone this profile" -msgstr "Clona questo profilo" +#: ../../include/nav.php:133 +msgid "People directory" +msgstr "Elenco delle persone" -#: ../../mod/profiles.php:650 -msgid "Delete this profile" -msgstr "Elimina questo profilo" +#: ../../include/nav.php:135 +msgid "Information" +msgstr "Informazioni" -#: ../../mod/profiles.php:651 -msgid "Basic information" -msgstr "Informazioni di base" +#: ../../include/nav.php:135 +msgid "Information about this friendica instance" +msgstr "Informazioni su questo server friendica" -#: ../../mod/profiles.php:652 -msgid "Profile picture" -msgstr "Immagine del profilo" +#: ../../include/nav.php:145 +msgid "Conversations from your friends" +msgstr "Conversazioni dai tuoi amici" -#: ../../mod/profiles.php:654 -msgid "Preferences" -msgstr "Preferenze" +#: ../../include/nav.php:146 +msgid "Network Reset" +msgstr "Reset pagina Rete" -#: ../../mod/profiles.php:655 -msgid "Status information" -msgstr "Informazioni stato" +#: ../../include/nav.php:146 +msgid "Load Network page with no filters" +msgstr "Carica la pagina Rete senza nessun filtro" -#: ../../mod/profiles.php:656 -msgid "Additional information" -msgstr "Informazioni aggiuntive" +#: ../../include/nav.php:154 +msgid "Friend Requests" +msgstr "Richieste di amicizia" -#: ../../mod/profiles.php:658 ../../mod/newmember.php:36 -#: ../../mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "Carica la foto del profilo" +#: ../../include/nav.php:156 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" -#: ../../mod/profiles.php:659 -msgid "Profile Name:" -msgstr "Nome del profilo:" +#: ../../include/nav.php:157 +msgid "Mark all system notifications seen" +msgstr "Segna tutte le notifiche come viste" -#: ../../mod/profiles.php:660 -msgid "Your Full Name:" -msgstr "Il tuo nome completo:" +#: ../../include/nav.php:161 +msgid "Private mail" +msgstr "Posta privata" -#: ../../mod/profiles.php:661 -msgid "Title/Description:" -msgstr "Breve descrizione (es. titolo, posizione, altro):" +#: ../../include/nav.php:162 +msgid "Inbox" +msgstr "In arrivo" -#: ../../mod/profiles.php:662 -msgid "Your Gender:" -msgstr "Il tuo sesso:" +#: ../../include/nav.php:163 +msgid "Outbox" +msgstr "Inviati" -#: ../../mod/profiles.php:663 -#, php-format -msgid "Birthday (%s):" -msgstr "Compleanno (%s)" +#: ../../include/nav.php:167 +msgid "Manage" +msgstr "Gestisci" -#: ../../mod/profiles.php:664 -msgid "Street Address:" -msgstr "Indirizzo (via/piazza):" +#: ../../include/nav.php:167 +msgid "Manage other pages" +msgstr "Gestisci altre pagine" -#: ../../mod/profiles.php:665 -msgid "Locality/City:" -msgstr "Località:" +#: ../../include/nav.php:172 +msgid "Account settings" +msgstr "Parametri account" -#: ../../mod/profiles.php:666 -msgid "Postal/Zip Code:" -msgstr "CAP:" +#: ../../include/nav.php:175 +msgid "Manage/Edit Profiles" +msgstr "Gestisci/Modifica i profili" -#: ../../mod/profiles.php:667 -msgid "Country:" -msgstr "Nazione:" +#: ../../include/nav.php:177 +msgid "Manage/edit friends and contacts" +msgstr "Gestisci/modifica amici e contatti" -#: ../../mod/profiles.php:668 -msgid "Region/State:" -msgstr "Regione/Stato:" +#: ../../include/nav.php:184 +msgid "Site setup and configuration" +msgstr "Configurazione del sito" -#: ../../mod/profiles.php:669 -msgid " Marital Status:" -msgstr " Stato sentimentale:" +#: ../../include/nav.php:188 +msgid "Navigation" +msgstr "Navigazione" -#: ../../mod/profiles.php:670 -msgid "Who: (if applicable)" -msgstr "Con chi: (se possibile)" +#: ../../include/nav.php:188 +msgid "Site map" +msgstr "Mappa del sito" -#: ../../mod/profiles.php:671 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" +#: ../../include/api.php:304 ../../include/api.php:315 +#: ../../include/api.php:416 ../../include/api.php:1063 +#: ../../include/api.php:1065 +msgid "User not found." +msgstr "Utente non trovato." -#: ../../mod/profiles.php:672 -msgid "Since [date]:" -msgstr "Dal [data]:" +#: ../../include/api.php:771 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "" -#: ../../mod/profiles.php:674 -msgid "Homepage URL:" -msgstr "Homepage:" +#: ../../include/api.php:790 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "" -#: ../../mod/profiles.php:677 -msgid "Religious Views:" -msgstr "Orientamento religioso:" +#: ../../include/api.php:809 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "" + +#: ../../include/api.php:1272 +msgid "There is no status with this id." +msgstr "Non c'è nessuno status con questo id." -#: ../../mod/profiles.php:678 -msgid "Public Keywords:" -msgstr "Parole chiave visibili a tutti:" +#: ../../include/api.php:1342 +msgid "There is no conversation with this id." +msgstr "Non c'è nessuna conversazione con questo id" -#: ../../mod/profiles.php:679 -msgid "Private Keywords:" -msgstr "Parole chiave private:" +#: ../../include/api.php:1614 +msgid "Invalid request." +msgstr "" -#: ../../mod/profiles.php:682 -msgid "Example: fishing photography software" -msgstr "Esempio: pesca fotografia programmazione" +#: ../../include/api.php:1625 +msgid "Invalid item." +msgstr "" -#: ../../mod/profiles.php:683 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)" +#: ../../include/api.php:1635 +msgid "Invalid action. " +msgstr "" -#: ../../mod/profiles.php:684 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" +#: ../../include/api.php:1643 +msgid "DB error" +msgstr "" -#: ../../mod/profiles.php:685 -msgid "Tell us about yourself..." -msgstr "Raccontaci di te..." +#: ../../include/user.php:40 +msgid "An invitation is required." +msgstr "E' richiesto un invito." -#: ../../mod/profiles.php:686 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" +#: ../../include/user.php:45 +msgid "Invitation could not be verified." +msgstr "L'invito non puo' essere verificato." -#: ../../mod/profiles.php:687 -msgid "Contact information and Social Networks" -msgstr "Informazioni su contatti e social network" +#: ../../include/user.php:53 +msgid "Invalid OpenID url" +msgstr "Url OpenID non valido" -#: ../../mod/profiles.php:688 -msgid "Musical interests" -msgstr "Interessi musicali" +#: ../../include/user.php:74 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." -#: ../../mod/profiles.php:689 -msgid "Books, literature" -msgstr "Libri, letteratura" +#: ../../include/user.php:88 +msgid "Please use a shorter name." +msgstr "Usa un nome più corto." -#: ../../mod/profiles.php:690 -msgid "Television" -msgstr "Televisione" +#: ../../include/user.php:90 +msgid "Name too short." +msgstr "Il nome è troppo corto." -#: ../../mod/profiles.php:691 -msgid "Film/dance/culture/entertainment" -msgstr "Film/danza/cultura/intrattenimento" +#: ../../include/user.php:105 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." -#: ../../mod/profiles.php:692 -msgid "Love/romance" -msgstr "Amore" +#: ../../include/user.php:110 +msgid "Your email domain is not among those allowed on this site." +msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito." -#: ../../mod/profiles.php:693 -msgid "Work/employment" -msgstr "Lavoro/impiego" +#: ../../include/user.php:113 +msgid "Not a valid email address." +msgstr "L'indirizzo email non è valido." -#: ../../mod/profiles.php:694 -msgid "School/education" -msgstr "Scuola/educazione" +#: ../../include/user.php:126 +msgid "Cannot use that email." +msgstr "Non puoi usare quell'email." -#: ../../mod/profiles.php:699 +#: ../../include/user.php:132 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." +"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." -#: ../../mod/profiles.php:709 ../../mod/directory.php:113 -msgid "Age: " -msgstr "Età : " +#: ../../include/user.php:138 ../../include/user.php:236 +msgid "Nickname is already registered. Please choose another." +msgstr "Nome utente già registrato. Scegline un altro." -#: ../../mod/profiles.php:762 -msgid "Edit/Manage Profiles" -msgstr "Modifica / Gestisci profili" +#: ../../include/user.php:148 +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." -#: ../../mod/install.php:117 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica Comunicazione Server - Impostazioni" +#: ../../include/user.php:164 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr " Impossibile collegarsi con il database." +#: ../../include/user.php:222 +msgid "An error occurred during registration. Please try again." +msgstr "C'è stato un errore durante la registrazione. Prova ancora." -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." +#: ../../include/user.php:257 +msgid "An error occurred creating your default profile. Please try again." +msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora." -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "Il tuo Friendica è stato installato." +#: ../../include/user.php:289 ../../include/user.php:293 +#: ../../include/profile_selectors.php:42 +msgid "Friends" +msgstr "Amici" -#: ../../mod/install.php:138 +#: ../../include/user.php:377 +#, php-format 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:525 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Leggi il file \"INSTALL.txt\"." +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\nGentile %1$s,\nGrazie per esserti registrato su %2$s. Il tuo account è stato creato." -#: ../../mod/install.php:203 -msgid "System check" -msgstr "Controllo sistema" +#: ../../include/user.php:381 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "" -#: ../../mod/install.php:208 -msgid "Check again" -msgstr "Controlla ancora" +#: ../../include/diaspora.php:703 +msgid "Sharing notification from Diaspora network" +msgstr "Notifica di condivisione dal network Diaspora*" -#: ../../mod/install.php:227 -msgid "Database connection" -msgstr "Connessione al database" +#: ../../include/diaspora.php:2520 +msgid "Attachments:" +msgstr "Allegati:" -#: ../../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." +#: ../../include/items.php:4555 +msgid "Do you really want to delete this item?" +msgstr "Vuoi veramente cancellare questo elemento?" -#: ../../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." +#: ../../include/items.php:4778 +msgid "Archives" +msgstr "Archivi" -#: ../../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." +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Maschio" -#: ../../mod/install.php:234 -msgid "Database Server Name" -msgstr "Nome del database server" +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Femmina" -#: ../../mod/install.php:235 -msgid "Database Login Name" -msgstr "Nome utente database" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Al momento maschio" -#: ../../mod/install.php:236 -msgid "Database Login Password" -msgstr "Password utente database" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Al momento femmina" -#: ../../mod/install.php:237 -msgid "Database Name" -msgstr "Nome database" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Prevalentemente maschio" -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del sito" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Prevalentemente femmina" -#: ../../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." +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" -#: ../../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" +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersex" -#: ../../mod/install.php:267 -msgid "Site settings" -msgstr "Impostazioni sito" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transessuale" -#: ../../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" +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Ermafrodito" -#: ../../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'" +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutro" -#: ../../mod/install.php:326 -msgid "PHP executable path" -msgstr "Percorso eseguibile PHP" +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Non specificato" -#: ../../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." +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Altro" -#: ../../mod/install.php:331 -msgid "Command line PHP" -msgstr "PHP da riga di comando" +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Indeciso" -#: ../../mod/install.php:340 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)" +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Maschi" -#: ../../mod/install.php:341 -msgid "Found PHP version: " -msgstr "Versione PHP:" +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Femmine" -#: ../../mod/install.php:343 -msgid "PHP cli binary" -msgstr "Binario PHP cli" +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gay" -#: ../../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\"." +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbica" -#: ../../mod/install.php:355 -msgid "This is required for message delivery to work." -msgstr "E' obbligatorio per far funzionare la consegna dei messaggi." +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Nessuna preferenza" -#: ../../mod/install.php:357 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisessuale" -#: ../../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" +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autosessuale" -#: ../../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\"." +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Astinente" -#: ../../mod/install.php:381 -msgid "Generate encryption keys" -msgstr "Genera chiavi di criptazione" +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Vergine" -#: ../../mod/install.php:388 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Deviato" -#: ../../mod/install.php:389 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetish" -#: ../../mod/install.php:390 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Un sacco" -#: ../../mod/install.php:391 -msgid "mysqli PHP module" -msgstr "modulo PHP mysqli" +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Asessuato" -#: ../../mod/install.php:392 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Single" -#: ../../mod/install.php:397 ../../mod/install.php:399 -msgid "Apache mod_rewrite module" -msgstr "Modulo mod_rewrite di Apache" +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Solitario" -#: ../../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" +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Disponibile" -#: ../../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." +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Non disponibile" -#: ../../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." +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "è cotto/a" -#: ../../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." +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "infatuato/a" -#: ../../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" +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "Disponibile a un incontro" -#: ../../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." +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Infedele" -#: ../../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." +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Sesso-dipendente" -#: ../../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." +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Amici con benefici" -#: ../../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" +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Casual" -#: ../../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." +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Impegnato" -#: ../../mod/install.php:444 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Sposato" -#: ../../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." +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "immaginariamente sposato/a" -#: ../../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." +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partners" -#: ../../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." +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Coinquilino" -#: ../../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." +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "diritto comune" -#: ../../mod/install.php:460 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 è scrivibile" +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Felice" -#: ../../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." +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Non guarda" -#: ../../mod/install.php:474 -msgid "Url rewrite is working" -msgstr "La riscrittura degli url funziona" +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Scambista" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Tradito" -#: ../../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." +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Separato" -#: ../../mod/install.php:523 -msgid "

What next

" -msgstr "

Cosa fare ora

" +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Instabile" -#: ../../mod/install.php:524 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller." +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Divorziato" -#: ../../mod/help.php:79 -msgid "Help:" -msgstr "Guida:" +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "immaginariamente divorziato/a" -#: ../../mod/crepair.php:104 -msgid "Contact settings applied." -msgstr "Contatto modificato." +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Vedovo" -#: ../../mod/crepair.php:106 -msgid "Contact update failed." -msgstr "Le modifiche al contatto non sono state salvate." +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Incerto" -#: ../../mod/crepair.php:137 -msgid "Repair Contact Settings" -msgstr "Ripara il contatto" +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "E' complicato" -#: ../../mod/crepair.php:139 -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ù" +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Non interessa" -#: ../../mod/crepair.php:140 -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." +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Chiedimelo" -#: ../../mod/crepair.php:146 -msgid "Return to contact editor" -msgstr "Ritorna alla modifica contatto" +#: ../../include/enotify.php:18 +msgid "Friendica Notification" +msgstr "Notifica Friendica" -#: ../../mod/crepair.php:159 -msgid "Account Nickname" -msgstr "Nome utente" +#: ../../include/enotify.php:21 +msgid "Thank You," +msgstr "Grazie," -#: ../../mod/crepair.php:160 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@TagName - al posto del nome utente" +#: ../../include/enotify.php:23 +#, php-format +msgid "%s Administrator" +msgstr "Amministratore %s" -#: ../../mod/crepair.php:161 -msgid "Account URL" -msgstr "URL dell'utente" +#: ../../include/enotify.php:64 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../mod/crepair.php:162 -msgid "Friend Request URL" -msgstr "URL Richiesta Amicizia" +#: ../../include/enotify.php:68 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s" -#: ../../mod/crepair.php:163 -msgid "Friend Confirm URL" -msgstr "URL Conferma Amicizia" +#: ../../include/enotify.php:70 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s ti ha inviato un nuovo messaggio privato su %2$s." -#: ../../mod/crepair.php:164 -msgid "Notification Endpoint URL" -msgstr "URL Notifiche" +#: ../../include/enotify.php:71 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s ti ha inviato %2$s" -#: ../../mod/crepair.php:165 -msgid "Poll/Feed URL" -msgstr "URL Feed" +#: ../../include/enotify.php:71 +msgid "a private message" +msgstr "un messaggio privato" -#: ../../mod/crepair.php:166 -msgid "New photo from this URL" -msgstr "Nuova foto da questo URL" +#: ../../include/enotify.php:72 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Visita %s per vedere e/o rispodere ai tuoi messaggi privati." -#: ../../mod/crepair.php:167 -msgid "Remote Self" -msgstr "Io remoto" +#: ../../include/enotify.php:124 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s ha commentato [url=%2$s]%3$s[/url]" -#: ../../mod/crepair.php:169 -msgid "Mirror postings from this contact" -msgstr "Ripeti i messaggi di questo contatto" +#: ../../include/enotify.php:131 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s ha commentato [url=%2$s]%4$s di %3$s[/url]" -#: ../../mod/crepair.php:169 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto." +#: ../../include/enotify.php:139 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s ha commentato un [url=%2$s]tuo %3$s[/url]" -#: ../../mod/crepair.php:169 -msgid "No mirroring" -msgstr "Non duplicare" +#: ../../include/enotify.php:149 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Notifica] Commento di %2$s alla conversazione #%1$d" -#: ../../mod/crepair.php:169 -msgid "Mirror as forwarded posting" -msgstr "Duplica come messaggi ricondivisi" +#: ../../include/enotify.php:150 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s ha commentato un elemento che stavi seguendo." -#: ../../mod/crepair.php:169 -msgid "Mirror as my own posting" -msgstr "Duplica come miei messaggi" +#: ../../include/enotify.php:153 ../../include/enotify.php:168 +#: ../../include/enotify.php:181 ../../include/enotify.php:194 +#: ../../include/enotify.php:212 ../../include/enotify.php:225 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Visita %s per vedere e/o commentare la conversazione" -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Benvenuto su Friendica" +#: ../../include/enotify.php:160 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notifica] %s ha scritto sulla tua bacheca" -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Cose da fare per i Nuovi Utenti" +#: ../../include/enotify.php:162 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s ha scritto sulla tua bacheca su %2$s" -#: ../../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." +#: ../../include/enotify.php:164 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s ha inviato un messaggio sulla [url=%2$s]tua bacheca[/url]" -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Come Iniziare" +#: ../../include/enotify.php:175 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notifica] %s ti ha taggato" -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Friendica Passo-Passo" +#: ../../include/enotify.php:176 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s ti ha taggato su %2$s" -#: ../../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." +#: ../../include/enotify.php:177 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]ti ha taggato[/url]." -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Vai alle tue Impostazioni" +#: ../../include/enotify.php:188 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notifica] %s ha condiviso un nuovo messaggio" -#: ../../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." +#: ../../include/enotify.php:189 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s ha condiviso un nuovo messaggio su %2$s" -#: ../../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." +#: ../../include/enotify.php:190 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s]ha condiviso un messaggio[/url]." -#: ../../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." +#: ../../include/enotify.php:202 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notifica] %1$s ti ha stuzzicato" -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Modifica il tuo Profilo" +#: ../../include/enotify.php:203 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s ti ha stuzzicato su %2$s" -#: ../../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." +#: ../../include/enotify.php:204 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s [url=%2$s]ti ha stuzzicato[/url]." -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Parole chiave del profilo" +#: ../../include/enotify.php:219 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio" -#: ../../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." +#: ../../include/enotify.php:220 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s ha taggato il tuo post su %2$s" + +#: ../../include/enotify.php:221 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s ha taggato [url=%2$s]il tuo post[/url]" -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Collegarsi" +#: ../../include/enotify.php:232 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notifica] Hai ricevuto una presentazione" -#: ../../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." +#: ../../include/enotify.php:233 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Hai ricevuto un'introduzione da '%1$s' su %2$s" -#: ../../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" +#: ../../include/enotify.php:248 ../../include/enotify.php:249 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "%1$s sta condividendo con te su %2$s" -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Vai all'Elenco del tuo sito" +#: ../../include/enotify.php:255 +msgid "[Friendica:Notify] You have a new follower" +msgstr "[Friendica:Notifica] Una nuova persona ti segue" -#: ../../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." +#: ../../include/enotify.php:256 ../../include/enotify.php:257 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "Un nuovo utente ha iniziato a seguirti su %2$s : %1$s" -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Trova nuove persone" +#: ../../include/enotify.php:270 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia" -#: ../../mod/newmember.php:62 +#: ../../include/enotify.php:271 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Hai ricevuto un suggerimento di amicizia da '%1$s' su %2$s" + +#: ../../include/enotify.php:272 +#, php-format 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." +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Hai ricevuto [url=%1$s]un suggerimento di amicizia[/url] per %2$s su %3$s" -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Raggruppa i tuoi contatti" +#: ../../include/enotify.php:277 +msgid "Name:" +msgstr "Nome:" -#: ../../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" +#: ../../include/enotify.php:278 +msgid "Photo:" +msgstr "Foto:" -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Perchè i miei post non sono pubblici?" +#: ../../include/enotify.php:281 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Visita %s per approvare o rifiutare il suggerimento." -#: ../../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." +#: ../../include/enotify.php:289 ../../include/enotify.php:302 +msgid "[Friendica:Notify] Connection accepted" +msgstr "[Friendica:Notifica] Connessione accettata" -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "Ottenere Aiuto" +#: ../../include/enotify.php:290 ../../include/enotify.php:303 +#, php-format +msgid "'%1$s' has acepted your connection request at %2$s" +msgstr "'%1$s' ha accettato la tua richiesta di connessione su %2$s" -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Vai alla sezione Guida" +#: ../../include/enotify.php:291 ../../include/enotify.php:304 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "%2$s ha accettato la tua [url=%1$s]richiesta di connessione[/url]" -#: ../../mod/newmember.php:82 +#: ../../include/enotify.php:294 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/poke.php:192 -msgid "Poke/Prod" -msgstr "Tocca/Pungola" +"You are now mutual friends and may exchange status updates, photos, and email\n" +"\twithout restriction." +msgstr "Ora siete connessi reciprocamente e potete scambiarvi aggiornamenti di stato, foto e email\nsenza restrizioni" -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "tocca, pungola o fai altre cose a qualcuno" +#: ../../include/enotify.php:297 ../../include/enotify.php:311 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "Visita %s se desideri modificare questo collegamento." -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Destinatario" +#: ../../include/enotify.php:307 +#, php-format +msgid "" +"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." +msgstr "'%1$s' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibiltà di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente." -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi fare al destinatario" +#: ../../include/enotify.php:309 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future. " +msgstr "'%1$s' può decidere in futuro di estendere la connessione in una reciproca o più permissiva." -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Rendi questo post privato" +#: ../../include/enotify.php:322 +msgid "[Friendica System:Notify] registration request" +msgstr "[Friendica System:Notifica] richiesta di registrazione" -#: ../../mod/prove.php:93 -msgid "" -"\n" -"\t\tDear $[username],\n" -"\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\tinformation for your records (or change your password immediately to\n" -"\t\tsomething that you will remember).\n" -"\t" -msgstr "" +#: ../../include/enotify.php:323 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "Hai ricevuto una richiesta di registrazione da '%1$s' su %2$s" -#: ../../mod/display.php:452 -msgid "Item has been removed." -msgstr "L'oggetto è stato rimosso." +#: ../../include/enotify.php:324 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "Hai ricevuto una [url=%1$s]richiesta di registrazione[/url] da %2$s." -#: ../../mod/subthread.php:103 +#: ../../include/enotify.php:327 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "Nome completo: %1$s\nIndirizzo del sito: %2$s\nNome utente: %3$s (%4$s)" -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#: ../../include/enotify.php:330 #, php-format -msgid "%1$s welcomes %2$s" -msgstr "%s dà il benvenuto a %s" +msgid "Please visit %s to approve or reject the request." +msgstr "Visita %s per approvare o rifiutare la richiesta." -#: ../../mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata." +#: ../../include/oembed.php:212 +msgid "Embedded content" +msgstr "Contenuto incorporato" -#: ../../mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Errore di comunicazione con l'altro sito." +#: ../../include/oembed.php:221 +msgid "Embedding disabled" +msgstr "Embed disabilitato" -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "La risposta dell'altro sito non può essere gestita: " +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Errore decodificando il file account" -#: ../../mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Conferma completata con successo." +#: ../../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?" -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Il sito remoto riporta: " +#: ../../include/uimport.php:116 ../../include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Errore! Non posso controllare il nickname" -#: ../../mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Problema temporaneo. Attendi e riprova." +#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "L'utente '%s' esiste già su questo server!" -#: ../../mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "La presentazione ha generato un errore o è stata revocata." +#: ../../include/uimport.php:153 +msgid "User creation error" +msgstr "Errore creando l'utente" -#: ../../mod/dfrn_confirm.php:429 -msgid "Unable to set contact photo." -msgstr "Impossibile impostare la foto del contatto." +#: ../../include/uimport.php:171 +msgid "User profile creation error" +msgstr "Errore creando il profile dell'utente" -#: ../../mod/dfrn_confirm.php:571 +#: ../../include/uimport.php:220 #, php-format -msgid "No user record found for '%s' " -msgstr "Nessun utente trovato '%s'" +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contatto non importato" +msgstr[1] "%d contatti non importati" -#: ../../mod/dfrn_confirm.php:581 -msgid "Our site encryption key is apparently messed up." -msgstr "La nostra chiave di criptazione del sito sembra essere corrotta." +#: ../../include/uimport.php:290 +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" -#: ../../mod/dfrn_confirm.php:592 -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." +#: ../../index.php:428 +msgid "toggle mobile" +msgstr "commuta tema mobile" + +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 +#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55 +#: ../../view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Impostazioni tema" -#: ../../mod/dfrn_confirm.php:613 -msgid "Contact record was not found for you on our site." -msgstr "Il contatto non è stato trovato sul nostro sito." +#: ../../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)" -#: ../../mod/dfrn_confirm.php:627 -#, 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" +#: ../../view/theme/cleanzero/config.php:84 +#: ../../view/theme/dispy/config.php:73 +#: ../../view/theme/diabook/config.php:151 +msgid "Set font-size for posts and comments" +msgstr "Dimensione del carattere di messaggi e commenti" -#: ../../mod/dfrn_confirm.php:647 -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." +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Imposta la larghezza del tema" -#: ../../mod/dfrn_confirm.php:658 -msgid "Unable to set your contact credentials on our system." -msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema." +#: ../../view/theme/cleanzero/config.php:86 +#: ../../view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Schema colori" -#: ../../mod/dfrn_confirm.php:725 -msgid "Unable to update your contact profile details on our system" -msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema" +#: ../../view/theme/dispy/config.php:74 +#: ../../view/theme/diabook/config.php:152 +msgid "Set line-height for posts and comments" +msgstr "Altezza della linea di testo di messaggi e commenti" -#: ../../mod/dfrn_confirm.php:797 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s si è unito a %2$s" +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Imposta schema colori" -#: ../../mod/item.php:113 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Allineamento" -#: ../../mod/item.php:324 -msgid "Empty post discarded." -msgstr "Messaggio vuoto scartato." +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Sinistra" -#: ../../mod/item.php:915 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Messaggio non salvato." +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Centrato" -#: ../../mod/item.php:941 -#, 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." +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Dimensione caratteri post" -#: ../../mod/item.php:943 -#, php-format -msgid "You may visit them online at %s" -msgstr "Puoi visitarli online su %s" +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Dimensione caratteri nelle aree di testo" -#: ../../mod/item.php:944 -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." +#: ../../view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Imposta la dimensione della colonna centrale" -#: ../../mod/item.php:948 -#, php-format -msgid "%s posted an update." -msgstr "%s ha inviato un aggiornamento." +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Imposta lo schema dei colori" -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Livello di zoom per Earth Layer" -#: ../../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." +#: ../../view/theme/diabook/config.php:156 +#: ../../view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" +msgstr "Longitudine (X) per Earth Layers" -#: ../../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." +#: ../../view/theme/diabook/config.php:157 +#: ../../view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Latitudine (Y) per Earth Layers" -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" +#: ../../view/theme/diabook/config.php:158 +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +msgid "Community Pages" +msgstr "Pagine Comunitarie" -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Carica un file:" +#: ../../view/theme/diabook/config.php:159 +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +msgid "Earth Layers" +msgstr "Earth Layers" -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Seleziona un profilo:" +#: ../../view/theme/diabook/config.php:160 +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +msgid "Community Profiles" +msgstr "Profili Comunità" -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Carica" +#: ../../view/theme/diabook/config.php:161 +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +msgid "Help or @NewHere ?" +msgstr "Serve aiuto? Sei nuovo?" -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "salta questo passaggio" +#: ../../view/theme/diabook/config.php:162 +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +msgid "Connect Services" +msgstr "Servizi di conessione" -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "seleziona una foto dai tuoi album" +#: ../../view/theme/diabook/config.php:163 +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +msgid "Find Friends" +msgstr "Trova Amici" -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Ritaglia immagine" +#: ../../view/theme/diabook/config.php:164 +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +msgid "Last users" +msgstr "Ultimi utenti" -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ritaglia l'imagine per una visualizzazione migliore." +#: ../../view/theme/diabook/config.php:165 +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "Ultime foto" -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Finito" +#: ../../view/theme/diabook/config.php:166 +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +msgid "Last likes" +msgstr "Ultimi \"mi piace\"" -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Immagine caricata con successo." +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "I tuoi contatti" -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Amici di %s" +#: ../../view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Le tue foto personali" -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Nessun amico da visualizzare." +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Elenco Locale" -#: ../../mod/directory.php:59 -msgid "Find on this site" -msgstr "Cerca nel sito" +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Livello di zoom per Earth Layers" -#: ../../mod/directory.php:62 -msgid "Site Directory" -msgstr "Elenco del sito" +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Mostra/Nascondi riquadri nella colonna destra" -#: ../../mod/directory.php:116 -msgid "Gender: " -msgstr "Genere:" +#: ../../view/theme/vier/config.php:56 +msgid "Set style" +msgstr "Imposta stile" -#: ../../mod/directory.php:189 -msgid "No entries (some entries may be hidden)." -msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." +#: ../../view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "" -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Conversione Ora" +#: ../../view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "" -#: ../../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." +#: ../../view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "" -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "Ora UTC: %s" +#: ../../view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "" -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Fuso orario corrente: %s" +#: ../../view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "" -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Ora locale convertita: %s" +#: ../../view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "" -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Selezionare il tuo fuso orario:" +#: ../../view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "" diff --git a/view/it/strings.php b/view/it/strings.php index 9880caf9b0..f602406d5b 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -5,742 +5,287 @@ function string_plural_select_it($n){ return ($n != 1);; }} ; -$a->strings["Submit"] = "Invia"; -$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 style"] = "Imposta stile"; -$a->strings["don't show"] = "non mostrare"; -$a->strings["show"] = "mostra"; -$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti"; -$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale"; -$a->strings["Set color scheme"] = "Imposta lo schema dei colori"; -$a->strings["Set zoomfactor for Earth Layer"] = "Livello di zoom per Earth Layer"; -$a->strings["Set longitude (X) for Earth Layers"] = "Longitudine (X) per Earth Layers"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Latitudine (Y) per Earth Layers"; -$a->strings["Community Pages"] = "Pagine Comunitarie"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Community Profiles"] = "Profili Comunità"; -$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; -$a->strings["Connect Services"] = "Servizi di conessione"; -$a->strings["Find Friends"] = "Trova Amici"; -$a->strings["Last users"] = "Ultimi utenti"; -$a->strings["Last photos"] = "Ultime foto"; -$a->strings["Last likes"] = "Ultimi \"mi piace\""; -$a->strings["Home"] = "Home"; -$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni"; -$a->strings["Profile"] = "Profilo"; -$a->strings["Your profile page"] = "Pagina del tuo profilo"; -$a->strings["Contacts"] = "Contatti"; -$a->strings["Your contacts"] = "I tuoi contatti"; -$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["Community"] = "Comunità"; -$a->strings["event"] = "l'evento"; -$a->strings["status"] = "stato"; -$a->strings["photo"] = "foto"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; -$a->strings["Contact Photos"] = "Foto dei contatti"; -$a->strings["Profile Photos"] = "Foto del profilo"; -$a->strings["Local Directory"] = "Elenco Locale"; -$a->strings["Global Directory"] = "Elenco globale"; -$a->strings["Similar Interests"] = "Interessi simili"; -$a->strings["Friend Suggestions"] = "Contatti suggeriti"; -$a->strings["Invite Friends"] = "Invita amici"; -$a->strings["Settings"] = "Impostazioni"; -$a->strings["Set zoomfactor for Earth Layers"] = "Livello di zoom per Earth Layers"; -$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra"; -$a->strings["Alignment"] = "Allineamento"; -$a->strings["Left"] = "Sinistra"; -$a->strings["Center"] = "Centrato"; -$a->strings["Posts font size"] = "Dimensione caratteri post"; -$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo"; -$a->strings["Set colour scheme"] = "Imposta schema colori"; -$a->strings["You must be logged in to use addons. "] = "Devi aver effettuato il login per usare gli addons."; -$a->strings["Not Found"] = "Non trovato"; -$a->strings["Page not found."] = "Pagina non trovata."; -$a->strings["Permission denied"] = "Permesso negato"; +$a->strings["%d contact edited."] = array( + 0 => "%d contatto modificato", + 1 => "%d contatti modificati", +); +$a->strings["Could not access contact record."] = "Non è possibile accedere al contatto."; +$a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; +$a->strings["Contact updated."] = "Contatto aggiornato."; +$a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto."; $a->strings["Permission denied."] = "Permesso negato."; -$a->strings["toggle mobile"] = "commuta tema mobile"; -$a->strings["Delete this item?"] = "Cancellare questo elemento?"; -$a->strings["Comment"] = "Commento"; -$a->strings["show more"] = "mostra di più"; -$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["Create a New Account"] = "Crea un nuovo account"; -$a->strings["Register"] = "Registrati"; -$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["Password Reset"] = "Reimpostazione 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["Requested profile is not available."] = "Profilo richiesto non disponibile."; -$a->strings["Edit profile"] = "Modifica il profilo"; -$a->strings["Connect"] = "Connetti"; -$a->strings["Message"] = "Messaggio"; -$a->strings["Profiles"] = "Profili"; -$a->strings["Manage/edit profiles"] = "Gestisci/modifica i 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["Location:"] = "Posizione:"; -$a->strings["Gender:"] = "Genere:"; -$a->strings["Status:"] = "Stato:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["Network:"] = "Rete:"; -$a->strings["g A l F d"] = "g A l d F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[oggi]"; -$a->strings["Birthday Reminders"] = "Promemoria compleanni"; -$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; -$a->strings["[No description]"] = "[Nessuna descrizione]"; -$a->strings["Event Reminders"] = "Promemoria"; -$a->strings["Events this week:"] = "Eventi di questa settimana:"; -$a->strings["Status"] = "Stato"; -$a->strings["Status Messages and Posts"] = "Messaggi di stato e post"; -$a->strings["Profile Details"] = "Dettagli del profilo"; -$a->strings["Photo Albums"] = "Album foto"; -$a->strings["Videos"] = "Video"; -$a->strings["Events and Calendar"] = "Eventi e calendario"; -$a->strings["Personal Notes"] = "Note personali"; -$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["Auto-mention Forums"] = "Auto-cita i Forum"; -$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Aggiunge o rimuove una citazione quando un forum è selezionato o deselezionato nella finestra dei permessi."; -$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["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["Mute Post Notifications"] = "Silenzia le notifiche di nuovi post"; -$a->strings["Ability to mute notifications for a thread"] = "Permette di silenziare le notifiche di nuovi post in una discussione"; -$a->strings["%s's birthday"] = "Compleanno di %s"; -$a->strings["Happy Birthday %s"] = "Buon compleanno %s"; -$a->strings["[Name Withheld]"] = "[Nome Nascosto]"; -$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["Contact has been blocked"] = "Il contatto è stato bloccato"; +$a->strings["Contact has been unblocked"] = "Il contatto è stato sbloccato"; +$a->strings["Contact has been ignored"] = "Il contatto è ignorato"; +$a->strings["Contact has been unignored"] = "Il contatto non è più ignorato"; +$a->strings["Contact has been archived"] = "Il contatto è stato archiviato"; +$a->strings["Contact has been unarchived"] = "Il contatto è stato dearchiviato"; +$a->strings["Do you really want to delete this contact?"] = "Vuoi veramente cancellare questo contatto?"; $a->strings["Yes"] = "Si"; $a->strings["Cancel"] = "Annulla"; -$a->strings["Archives"] = "Archivi"; -$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["Wall Photos"] = "Foto della bacheca"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -$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["Find"] = "Trova"; -$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["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["Friendica Notification"] = "Notifica Friendica"; -$a->strings["Thank You,"] = "Grazie,"; -$a->strings["%s Administrator"] = "Amministratore %s"; -$a->strings["noreply"] = "nessuna risposta"; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s ti ha inviato un nuovo messaggio privato su %2\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha inviato %2\$s"; -$a->strings["a private message"] = "un messaggio privato"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per vedere e/o rispodere ai tuoi messaggi privati."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%4\$s di %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s ha commentato un [url=%2\$s]tuo %3\$s[/url]"; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notifica] Commento di %2\$s alla conversazione #%1\$d"; -$a->strings["%s commented on an item/conversation you have been following."] = "%s ha commentato un elemento che stavi seguendo."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per vedere e/o commentare la conversazione"; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notifica] %s ha scritto sulla tua bacheca"; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha scritto sulla tua bacheca su %2\$s"; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s ha inviato un messaggio sulla [url=%2\$s]tua bacheca[/url]"; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notifica] %s ti ha taggato"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s ti ha taggato su %2\$s"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]ti ha taggato[/url]."; -$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notifica] %s ha condiviso un nuovo messaggio"; -$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s ha condiviso un nuovo messaggio su %2\$s"; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]ha condiviso un messaggio[/url]."; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notifica] %1\$s ti ha stuzzicato"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s ti ha stuzzicato su %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]ti ha stuzzicato[/url]."; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notifica] %s ha taggato un tuo messaggio"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha taggato il tuo post su %2\$s"; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s ha taggato [url=%2\$s]il tuo post[/url]"; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notifica] Hai ricevuto una presentazione"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Hai ricevuto un'introduzione da '%1\$s' su %2\$s"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Hai ricevuto [url=%1\$s]un'introduzione[/url] da %2\$s."; -$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo presso %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s per approvare o rifiutare la presentazione."; -$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notifica] Una nuova persona sta condividendo con te"; -$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s sta condividendo con te su %2\$s"; -$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notifica] Una nuova persona ti segue"; -$a->strings["You have a new follower at %2\$s : %1\$s"] = "Un nuovo utente ha iniziato a seguirti su %2\$s : %1\$s"; -$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia"; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Hai ricevuto un suggerimento di amicizia da '%1\$s' su %2\$s"; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Hai ricevuto [url=%1\$s]un suggerimento di amicizia[/url] per %2\$s su %3\$s"; -$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["[Friendica:Notify] Connection accepted"] = "[Friendica:Notifica] Connessione accettata"; -$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' ha accettato la tua richiesta di connessione su %2\$s"; -$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s ha accettato la tua [url=%1\$s]richiesta di connessione[/url]"; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Ora siete connessi reciprocamente e potete scambiarvi aggiornamenti di stato, foto e email\nsenza restrizioni"; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Visita %s se desideri modificare questo collegamento."; -$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibiltà di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente."; -$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' può decidere in futuro di estendere la connessione in una reciproca o più permissiva."; -$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Notifica] richiesta di registrazione"; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Hai ricevuto una richiesta di registrazione da '%1\$s' su %2\$s"; -$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Hai ricevuto una [url=%1\$s]richiesta di registrazione[/url] da %2\$s."; -$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nome completo: %1\$s\nIndirizzo del sito: %2\$s\nNome utente: %3\$s (%4\$s)"; -$a->strings["Please visit %s to approve or reject the request."] = "Visita %s per approvare o rifiutare la richiesta."; -$a->strings["User not found."] = "Utente non trovato."; -$a->strings["There is no status with this id."] = "Non c'è nessuno status con questo id."; -$a->strings["There is no conversation with this id."] = "Non c'è nessuna conversazione con questo id"; -$a->strings["view full size"] = "vedi a schermo intero"; -$a->strings[" on Last.fm"] = "su Last.fm"; -$a->strings["Full Name:"] = "Nome completo:"; -$a->strings["j F, Y"] = "j F Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Compleanno:"; -$a->strings["Age:"] = "Età:"; -$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Preferenze sessuali:"; -$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:"; -$a->strings["Television:"] = "Televisione:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:"; -$a->strings["Love/Romance:"] = "Amore:"; -$a->strings["Work/employment:"] = "Lavoro:"; -$a->strings["School/education:"] = "Scuola:"; -$a->strings["Nothing new here"] = "Niente di nuovo qui"; -$a->strings["Clear notifications"] = "Pulisci le notifiche"; -$a->strings["End this session"] = "Finisci questa sessione"; -$a->strings["Your videos"] = "I tuoi video"; -$a->strings["Your personal notes"] = "Le tue note personali"; -$a->strings["Sign in"] = "Entra"; -$a->strings["Home Page"] = "Home Page"; -$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"] = "Cerca"; -$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["Information"] = "Informazioni"; -$a->strings["Information about this friendica instance"] = "Informazioni su questo server friendica"; -$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["Account settings"] = "Parametri account"; -$a->strings["Manage/Edit Profiles"] = "Gestisci/Modifica i profili"; -$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["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["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["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["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -$a->strings["Starts:"] = "Inizia:"; -$a->strings["Finishes:"] = "Finisce:"; -$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["Drop Contact"] = "Rimuovi contatto"; -$a->strings["Send PM"] = "Invia messaggio privato"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Il messaggio di errore è\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; -$a->strings["Errors encountered performing database changes."] = "Riscontrati errori applicando le modifiche al database."; -$a->strings["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["[no subject]"] = "[nessun oggetto]"; -$a->strings["(no subject)"] = "(nessun oggetto)"; -$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; -$a->strings["Block immediately"] = "Blocca immediatamente"; -$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; -$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare"; -$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo"; -$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia"; -$a->strings["Frequently"] = "Frequentemente"; -$a->strings["Hourly"] = "Ogni ora"; -$a->strings["Twice daily"] = "Due volte al dì"; -$a->strings["Daily"] = "Giornalmente"; -$a->strings["Weekly"] = "Settimanalmente"; -$a->strings["Monthly"] = "Mensilmente"; -$a->strings["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["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Connettore Diaspora"; -$a->strings["Statusnet"] = "Statusnet"; -$a->strings["App.net"] = "App.net"; -$a->strings["%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["Attachments:"] = "Allegati:"; -$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["poked"] = "toccato"; -$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["View all contacts"] = "Vedi tutti i contatti"; +$a->strings["Unblock"] = "Sblocca"; +$a->strings["Block"] = "Blocca"; +$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["Submit"] = "Invia"; +$a->strings["Profile Visibility"] = "Visibilità del profilo"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."; +$a->strings["Contact Information / Notes"] = "Informazioni / Note sul contatto"; +$a->strings["Edit contact notes"] = "Modifica note contatto"; +$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; +$a->strings["Block/Unblock contact"] = "Blocca/Sblocca contatto"; +$a->strings["Ignore contact"] = "Ignora il contatto"; +$a->strings["Repair URL settings"] = "Impostazioni riparazione URL"; +$a->strings["View conversations"] = "Vedi conversazioni"; +$a->strings["Delete contact"] = "Rimuovi contatto"; +$a->strings["Last update:"] = "Ultimo aggiornamento:"; +$a->strings["Update public posts"] = "Aggiorna messaggi pubblici"; +$a->strings["Update now"] = "Aggiorna adesso"; +$a->strings["Currently blocked"] = "Bloccato"; +$a->strings["Currently ignored"] = "Ignorato"; +$a->strings["Currently archived"] = "Al momento archiviato"; +$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Risposte ai tuoi post pubblici possono essere comunque visibili"; +$a->strings["Notification for new posts"] = "Notifica per i nuovi messaggi"; +$a->strings["Send a notification of every new post of this contact"] = "Invia una notifica per ogni nuovo messaggio di questo contatto"; +$a->strings["Fetch further information for feeds"] = "Recupera maggiori infomazioni per i feed"; +$a->strings["Disabled"] = ""; +$a->strings["Fetch information"] = ""; +$a->strings["Fetch information and keywords"] = ""; +$a->strings["Blacklisted keywords"] = ""; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = ""; +$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["Edit contact"] = "Modifca contatto"; +$a->strings["Contacts"] = "Contatti"; +$a->strings["Search your contacts"] = "Cerca nei tuoi contatti"; +$a->strings["Finding: "] = "Ricerca: "; +$a->strings["Find"] = "Trova"; +$a->strings["Update"] = "Aggiorna"; $a->strings["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["No profile"] = "Nessun profilo"; +$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"; +$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:"; +$a->strings["Post successful."] = "Inviato!"; +$a->strings["Permission denied"] = "Permesso negato"; +$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; +$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo"; +$a->strings["Profile"] = "Profilo"; +$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; +$a->strings["Visible To"] = "Visibile a"; +$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)"; +$a->strings["Item not found."] = "Elemento non trovato."; +$a->strings["Public access denied."] = "Accesso negato."; +$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; +$a->strings["Item has been removed."] = "L'oggetto è stato rimosso."; +$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica"; +$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."; +$a->strings["Getting Started"] = "Come Iniziare"; +$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."; +$a->strings["Settings"] = "Impostazioni"; +$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."; +$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; +$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; +$a->strings["Profile Keywords"] = "Parole chiave del profilo"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; +$a->strings["Connecting"] = "Collegarsi"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["Importing Emails"] = "Importare le Email"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; +$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; +$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; +$a->strings["Finding New People"] = "Trova nuove persone"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; +$a->strings["Groups"] = "Gruppi"; +$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; +$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."; +$a->strings["Getting Help"] = "Ottenere Aiuto"; +$a->strings["Go to the Help Section"] = "Vai alla sezione Guida"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; +$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."; +$a->strings["Login failed."] = "Accesso fallito."; +$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; +$a->strings["Profile Photos"] = "Foto del profilo"; +$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; +$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; +$a->strings["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d"; +$a->strings["Unable to process image."] = "Impossibile caricare l'immagine."; +$a->strings["Upload File:"] = "Carica un file:"; +$a->strings["Select a profile:"] = "Seleziona un profilo:"; +$a->strings["Upload"] = "Carica"; +$a->strings["or"] = "o"; +$a->strings["skip this step"] = "salta questo passaggio"; +$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; +$a->strings["Crop Image"] = "Ritaglia immagine"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore."; +$a->strings["Done Editing"] = "Finito"; +$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; +$a->strings["Image upload failed."] = "Caricamento immagine fallito."; +$a->strings["photo"] = "foto"; +$a->strings["status"] = "stato"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; +$a->strings["Tag removed"] = "Tag rimosso"; +$a->strings["Remove Item Tag"] = "Rimuovi il tag"; +$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; +$a->strings["Remove"] = "Rimuovi"; $a->strings["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["Connectors disabled, since \"%s\" is enabled."] = "Connettore disabilitato, dato che \"%s\" è abilitato."; -$a->strings["Hide your profile details from unknown viewers?"] = "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?"; -$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["newer"] = "nuovi"; -$a->strings["older"] = "vecchi"; -$a->strings["prev"] = "prec"; -$a->strings["first"] = "primo"; -$a->strings["last"] = "ultimo"; -$a->strings["next"] = "succ"; -$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["- select -"] = "- seleziona -"; $a->strings["Save"] = "Salva"; -$a->strings["poke"] = "stuzzica"; -$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["Contact added"] = "Contatto aggiunto"; +$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; +$a->strings["Wall Photos"] = "Foto della bacheca"; +$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."; +$a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."; +$a->strings["%s posted an update."] = "%s ha inviato un aggiornamento."; +$a->strings["Group created."] = "Gruppo creato."; +$a->strings["Could not create group."] = "Impossibile creare il gruppo."; +$a->strings["Group not found."] = "Gruppo non trovato."; +$a->strings["Group name changed."] = "Il nome del gruppo è cambiato."; +$a->strings["Save Group"] = "Salva gruppo"; +$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti."; +$a->strings["Group Name: "] = "Nome del gruppo:"; +$a->strings["Group removed."] = "Gruppo rimosso."; +$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; +$a->strings["Group Editor"] = "Modifica gruppo"; +$a->strings["Members"] = "Membri"; +$a->strings["You must be logged in to use addons. "] = "Devi aver effettuato il login per usare gli addons."; +$a->strings["Applications"] = "Applicazioni"; +$a->strings["No installed applications."] = "Nessuna applicazione installata."; +$a->strings["Profile not found."] = "Profilo non trovato."; +$a->strings["Contact not found."] = "Contatto non trovato."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e già approvata."; +$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito."; +$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: "; +$a->strings["Confirmation completed successfully."] = "Conferma completata con successo."; +$a->strings["Remote site reported: "] = "Il sito remoto riporta: "; +$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova."; +$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata."; +$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici"; +$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."; +$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito."; +$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s"; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."; +$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."; +$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"; +$a->strings["[Name Withheld]"] = "[Nome Nascosto]"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s"; +$a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile."; +$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti"; +$a->strings["No videos selected"] = "Nessun video selezionato"; +$a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti."; $a->strings["View Video"] = "Guarda Video"; -$a->strings["bytes"] = "bytes"; -$a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; -$a->strings["link to source"] = "Collegamento all'originale"; -$a->strings["default"] = "default"; -$a->strings["Select an alternate language"] = "Seleziona una diversa lingua"; -$a->strings["activity"] = "attività"; -$a->strings["comment"] = array( - 0 => "", - 1 => "commento", -); -$a->strings["post"] = "messaggio"; -$a->strings["Item filed"] = "Messaggio salvato"; -$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["Image/photo"] = "Immagine/foto"; -$a->strings["%2\$s %3\$s"] = ""; -$a->strings["%s wrote the following post"] = "%s ha scritto il seguente messaggio"; -$a->strings["$1 wrote:"] = "$1 ha scritto:"; -$a->strings["Encrypted content"] = "Contenuto criptato"; -$a->strings["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["Embedded content"] = "Contenuto incorporato"; -$a->strings["Embedding disabled"] = "Embed disabilitato"; -$a->strings["Male"] = "Maschio"; -$a->strings["Female"] = "Femmina"; -$a->strings["Currently Male"] = "Al momento maschio"; -$a->strings["Currently Female"] = "Al momento femmina"; -$a->strings["Mostly Male"] = "Prevalentemente maschio"; -$a->strings["Mostly Female"] = "Prevalentemente femmina"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Intersex"; -$a->strings["Transsexual"] = "Transessuale"; -$a->strings["Hermaphrodite"] = "Ermafrodito"; -$a->strings["Neuter"] = "Neutro"; -$a->strings["Non-specific"] = "Non specificato"; -$a->strings["Other"] = "Altro"; -$a->strings["Undecided"] = "Indeciso"; -$a->strings["Males"] = "Maschi"; -$a->strings["Females"] = "Femmine"; -$a->strings["Gay"] = "Gay"; -$a->strings["Lesbian"] = "Lesbica"; -$a->strings["No Preference"] = "Nessuna preferenza"; -$a->strings["Bisexual"] = "Bisessuale"; -$a->strings["Autosexual"] = "Autosessuale"; -$a->strings["Abstinent"] = "Astinente"; -$a->strings["Virgin"] = "Vergine"; -$a->strings["Deviant"] = "Deviato"; -$a->strings["Fetish"] = "Fetish"; -$a->strings["Oodles"] = "Un sacco"; -$a->strings["Nonsexual"] = "Asessuato"; -$a->strings["Single"] = "Single"; -$a->strings["Lonely"] = "Solitario"; -$a->strings["Available"] = "Disponibile"; -$a->strings["Unavailable"] = "Non disponibile"; -$a->strings["Has crush"] = "è cotto/a"; -$a->strings["Infatuated"] = "infatuato/a"; -$a->strings["Dating"] = "Disponibile a un incontro"; -$a->strings["Unfaithful"] = "Infedele"; -$a->strings["Sex Addict"] = "Sesso-dipendente"; -$a->strings["Friends"] = "Amici"; -$a->strings["Friends/Benefits"] = "Amici con benefici"; -$a->strings["Casual"] = "Casual"; -$a->strings["Engaged"] = "Impegnato"; -$a->strings["Married"] = "Sposato"; -$a->strings["Imaginarily married"] = "immaginariamente sposato/a"; -$a->strings["Partners"] = "Partners"; -$a->strings["Cohabiting"] = "Coinquilino"; -$a->strings["Common law"] = "diritto comune"; -$a->strings["Happy"] = "Felice"; -$a->strings["Not looking"] = "Non guarda"; -$a->strings["Swinger"] = "Scambista"; -$a->strings["Betrayed"] = "Tradito"; -$a->strings["Separated"] = "Separato"; -$a->strings["Unstable"] = "Instabile"; -$a->strings["Divorced"] = "Divorziato"; -$a->strings["Imaginarily divorced"] = "immaginariamente divorziato/a"; -$a->strings["Widowed"] = "Vedovo"; -$a->strings["Uncertain"] = "Incerto"; -$a->strings["It's complicated"] = "E' complicato"; -$a->strings["Don't care"] = "Non interessa"; -$a->strings["Ask me"] = "Chiedimelo"; -$a->strings["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["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nGentile %1\$s,\nGrazie per esserti registrato su %2\$s. Il tuo account è stato creato."; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5$\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3\$s\n Nome utente: %1\$s\n Password: %5\$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2\$s"; -$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s"; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["This entry was edited"] = "Questa voce è stata modificata"; -$a->strings["Private Message"] = "Messaggio privato"; -$a->strings["Edit"] = "Modifica"; -$a->strings["save to folder"] = "salva nella cartella"; -$a->strings["add star"] = "aggiungi a speciali"; -$a->strings["remove star"] = "rimuovi da speciali"; -$a->strings["toggle star status"] = "Inverti stato preferito"; -$a->strings["starred"] = "preferito"; -$a->strings["ignore thread"] = "ignora la discussione"; -$a->strings["unignore thread"] = "non ignorare la discussione"; -$a->strings["toggle ignore status"] = "inverti stato \"Ignora\""; -$a->strings["ignored"] = "ignorato"; -$a->strings["add tag"] = "aggiungi tag"; -$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)"; -$a->strings["like"] = "mi piace"; -$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)"; -$a->strings["dislike"] = "non mi piace"; -$a->strings["Share this"] = "Condividi questo"; -$a->strings["share"] = "condividi"; -$a->strings["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["%d comment"] = array( - 0 => "%d commento", - 1 => "%d commenti", -); -$a->strings["This is you"] = "Questo sei tu"; -$a->strings["Bold"] = "Grassetto"; -$a->strings["Italic"] = "Corsivo"; -$a->strings["Underline"] = "Sottolineato"; -$a->strings["Quote"] = "Citazione"; -$a->strings["Code"] = "Codice"; -$a->strings["Image"] = "Immagine"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Item not available."] = "Oggetto non disponibile."; -$a->strings["Item was not found."] = "Oggetto non trovato."; -$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["Your message:"] = "Il tuo messaggio:"; -$a->strings["Group created."] = "Gruppo creato."; -$a->strings["Could not create group."] = "Impossibile creare il gruppo."; -$a->strings["Group not found."] = "Gruppo non trovato."; -$a->strings["Group name changed."] = "Il nome del gruppo è cambiato."; -$a->strings["Save Group"] = "Salva gruppo"; -$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti."; -$a->strings["Group Name: "] = "Nome del gruppo:"; -$a->strings["Group removed."] = "Gruppo rimosso."; -$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo."; -$a->strings["Group Editor"] = "Modifica gruppo"; -$a->strings["Members"] = "Membri"; -$a->strings["All Contacts"] = "Tutti i contatti"; -$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; -$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["View Album"] = "Sfoglia l'album"; +$a->strings["Recent Videos"] = "Video Recenti"; +$a->strings["Upload New Videos"] = "Carica Nuovo Video"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; +$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato."; +$a->strings["Suggest Friends"] = "Suggerisci amici"; +$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s"; +$a->strings["No valid account found."] = "Nessun account valido trovato."; +$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nGentile %1\$s,\n abbiamo ricevuto su \"%2\$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica."; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nSegui questo link per verificare la tua identità:\n\n%1\$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2\$s\n Nome utente: %3\$s"; +$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."; +$a->strings["Password Reset"] = "Reimpostazione password"; +$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto."; +$a->strings["Your new password is"] = "La tua nuova password è"; +$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; +$a->strings["click here to login"] = "clicca qui per entrare"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nGentile %1\$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare."; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1\$s\n Nome utente: %2\$s\n Password: %3\$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato."; +$a->strings["Your password has been changed at %s"] = "La tua password presso %s è stata cambiata"; +$a->strings["Forgot your Password?"] = "Hai dimenticato la password?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password."; +$a->strings["Nickname or Email: "] = "Nome utente o email: "; +$a->strings["Reset"] = "Reimposta"; +$a->strings["%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["{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["No contacts."] = "Nessun contatto."; +$a->strings["View Contacts"] = "Visualizza i contatti"; $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["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"; @@ -754,6 +299,7 @@ $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"; @@ -767,351 +313,94 @@ $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["No profile"] = "Nessun profilo"; -$a->strings["everybody"] = "tutti"; -$a->strings["Account"] = "Account"; -$a->strings["Additional features"] = "Funzionalità aggiuntive"; -$a->strings["Display"] = "Visualizzazione"; -$a->strings["Social Networks"] = "Social Networks"; -$a->strings["Plugins"] = "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["Relocate message has been send to your contacts"] = "Il messaggio di trasloco è stato inviato ai tuoi contatti"; -$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["Save Settings"] = "Salva Impostazioni"; -$a->strings["Name"] = "Nome"; -$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["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["No special theme for mobile devices"] = "Nessun tema speciale per i dispositivi mobili"; -$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:"] = "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["Don't show notices"] = "Non mostrare gli avvisi"; -$a->strings["Infinite scroll"] = "Scroll infinito"; -$a->strings["Automatic updates only at the top of the network page"] = "Aggiornamenti automatici solo in cima alla pagina \"rete\""; -$a->strings["User Types"] = "Tipi di Utenti"; -$a->strings["Community Types"] = "Tipi di Comunità"; -$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["No"] = "No"; -$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["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"] = "La tua password attuale per confermare le modifiche"; -$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["Relocate"] = "Trasloca"; -$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone."; -$a->strings["Resend relocate message to contacts"] = "Reinvia il messaggio di trasloco"; -$a->strings["Common Friends"] = "Amici in comune"; -$a->strings["No contacts in common."] = "Nessun contatto in comune."; -$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; -$a->strings["Visible to:"] = "Visibile a:"; -$a->strings["%d contact edited."] = array( - 0 => "%d contatto modificato", - 1 => "%d contatti modificati", +$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["Nothing new here"] = "Niente di nuovo qui"; +$a->strings["Clear notifications"] = "Pulisci le notifiche"; +$a->strings["New Message"] = "Nuovo messaggio"; +$a->strings["No recipient selected."] = "Nessun destinatario selezionato."; +$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto."; +$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato."; +$a->strings["Message collection failure."] = "Errore recuperando il messaggio."; +$a->strings["Message sent."] = "Messaggio inviato."; +$a->strings["Messages"] = "Messaggi"; +$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?"; +$a->strings["Message deleted."] = "Messaggio eliminato."; +$a->strings["Conversation removed."] = "Conversazione rimossa."; +$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; +$a->strings["Send Private Message"] = "Invia un messaggio privato"; +$a->strings["To:"] = "A:"; +$a->strings["Subject:"] = "Oggetto:"; +$a->strings["Your message:"] = "Il tuo messaggio:"; +$a->strings["Upload photo"] = "Carica foto"; +$a->strings["Insert web link"] = "Inserisci link"; +$a->strings["Please wait"] = "Attendi"; +$a->strings["No messages."] = "Nessun messaggio."; +$a->strings["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["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["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["View all contacts"] = "Vedi tutti i contatti"; -$a->strings["Unblock"] = "Sblocca"; -$a->strings["Block"] = "Blocca"; -$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["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; -$a->strings["Block/Unblock contact"] = "Blocca/Sblocca contatto"; -$a->strings["Ignore contact"] = "Ignora il contatto"; -$a->strings["Repair URL settings"] = "Impostazioni riparazione URL"; -$a->strings["View conversations"] = "Vedi conversazioni"; -$a->strings["Delete contact"] = "Rimuovi contatto"; -$a->strings["Last update:"] = "Ultimo aggiornamento:"; -$a->strings["Update public posts"] = "Aggiorna messaggi pubblici"; -$a->strings["Update now"] = "Aggiorna adesso"; -$a->strings["Currently blocked"] = "Bloccato"; -$a->strings["Currently ignored"] = "Ignorato"; -$a->strings["Currently archived"] = "Al momento archiviato"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Risposte ai tuoi post pubblici possono essere comunque visibili"; -$a->strings["Notification for new posts"] = "Notifica per i nuovi messaggi"; -$a->strings["Send a notification of every new post of this contact"] = "Invia una notifica per ogni nuovo messaggio di questo contatto"; -$a->strings["Fetch further information for feeds"] = "Recupera maggiori infomazioni per i feed"; -$a->strings["Suggestions"] = "Suggerimenti"; -$a->strings["Suggest potential friends"] = "Suggerisci potenziali amici"; -$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["Edit contact"] = "Modifca contatto"; -$a->strings["Search your contacts"] = "Cerca nei tuoi contatti"; -$a->strings["Finding: "] = "Ricerca: "; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta"; -$a->strings["Or - did you try to upload an empty file?"] = "O.. non avrai provato a caricare un file vuoto?"; -$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; -$a->strings["File upload failed."] = "Caricamento del file non riuscito."; +$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["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; -$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["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["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["Registration"] = "Registrazione"; -$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["Import"] = "Importa"; -$a->strings["Import your profile to this friendica instance"] = "Importa il tuo profilo in questo server friendica"; -$a->strings["Post successful."] = "Inviato!"; -$a->strings["System down for maintenance"] = "Sistema in manutenzione"; -$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["Public access denied."] = "Accesso negato."; -$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["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["Item not found"] = "Oggetto non trovato"; -$a->strings["Edit post"] = "Modifica messaggio"; +$a->strings["Contact settings applied."] = "Contatto modificato."; +$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; +$a->strings["Repair Contact Settings"] = "Ripara il contatto"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; +$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; +$a->strings["No mirroring"] = "Non duplicare"; +$a->strings["Mirror as forwarded posting"] = "Duplica come messaggi ricondivisi"; +$a->strings["Mirror as my own posting"] = "Duplica come miei messaggi"; +$a->strings["Name"] = "Nome"; +$a->strings["Account Nickname"] = "Nome utente"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; +$a->strings["Account URL"] = "URL dell'utente"; +$a->strings["Friend Request URL"] = "URL Richiesta Amicizia"; +$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia"; +$a->strings["Notification Endpoint URL"] = "URL Notifiche"; +$a->strings["Poll/Feed URL"] = "URL Feed"; +$a->strings["New photo from this URL"] = "Nuova foto da questo URL"; +$a->strings["Remote Self"] = "Io remoto"; +$a->strings["Mirror postings from this contact"] = "Ripeti i messaggi di questo contatto"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto."; +$a->strings["Login"] = "Accedi"; +$a->strings["The post was created"] = ""; +$a->strings["Access denied."] = "Accesso negato."; $a->strings["People Search"] = "Cerca persone"; $a->strings["No matches"] = "Nessun risultato"; -$a->strings["Account approved."] = "Account approvato."; -$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; -$a->strings["Please login."] = "Accedi."; -$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["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["Photos"] = "Foto"; $a->strings["Files"] = "File"; -$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["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["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo"; -$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["link"] = "collegamento"; -$a->strings["No contacts."] = "Nessun contatto."; $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["probe address"] = ""; +$a->strings["check webfinger"] = ""; +$a->strings["Admin"] = "Amministrazione"; $a->strings["Plugin Features"] = "Impostazioni Plugins"; +$a->strings["diagnostics"] = ""; $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"; @@ -1128,7 +417,15 @@ $a->strings["Version"] = "Versione"; $a->strings["Active plugins"] = "Plugin attivi"; $a->strings["Can not parse base url. Must have at least ://"] = "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]"; $a->strings["Site settings updated."] = "Impostazioni del sito aggiornate."; +$a->strings["No special theme for mobile devices"] = "Nessun tema speciale per i dispositivi mobili"; +$a->strings["No community page"] = ""; +$a->strings["Public postings from users of this site"] = ""; +$a->strings["Global community page"] = ""; $a->strings["At post arrival"] = "All'arrivo di un messaggio"; +$a->strings["Frequently"] = "Frequentemente"; +$a->strings["Hourly"] = "Ogni ora"; +$a->strings["Twice daily"] = "Due volte al dì"; +$a->strings["Daily"] = "Giornalmente"; $a->strings["Multi user instance"] = "Istanza multi utente"; $a->strings["Closed"] = "Chiusa"; $a->strings["Requires approval"] = "Richiede l'approvazione"; @@ -1136,13 +433,19 @@ $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["Save Settings"] = "Salva Impostazioni"; +$a->strings["Registration"] = "Registrazione"; $a->strings["File upload"] = "Caricamento file"; $a->strings["Policies"] = "Politiche"; $a->strings["Advanced"] = "Avanzate"; $a->strings["Performance"] = "Performance"; $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile."; $a->strings["Site name"] = "Nome del sito"; +$a->strings["Host name"] = ""; +$a->strings["Sender Email"] = ""; $a->strings["Banner/Logo"] = "Banner/Logo"; +$a->strings["Shortcut icon"] = ""; +$a->strings["Touch icon"] = ""; $a->strings["Additional Info"] = "Informazioni aggiuntive"; $a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Per server pubblici: puoi aggiungere informazioni extra che verrano mostrate su dir.friendica.com/siteinfo."; $a->strings["System language"] = "Lingua di sistema"; @@ -1152,6 +455,8 @@ $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["Force SSL"] = ""; +$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = ""; $a->strings["Old style 'Share'"] = "Ricondivisione vecchio stile"; $a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Disattiva l'elemento bbcode 'share' con elementi ripetuti"; $a->strings["Hide help entry from navigation menu"] = "Nascondi la voce 'Guida' dal menu di navigazione"; @@ -1201,8 +506,10 @@ $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["Community Page Style"] = ""; +$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = ""; +$a->strings["Posts per user on community page"] = ""; +$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = ""; $a->strings["Enable OStatus support"] = "Abilita supporto OStatus"; $a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fornisce la compatibilità integrata a OStatus (StatusNet, Gnu Social, etc.). Tutte le comunicazioni su OStatus sono pubbliche, quindi un avviso di privacy verrà mostrato occasionalmente."; $a->strings["OStatus conversation completion interval"] = "Intervallo completamento conversazioni OStatus"; @@ -1227,6 +534,8 @@ $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["Suppress Language"] = "Disattiva lingua"; $a->strings["Suppress language information in meta information about a posting."] = "Disattiva le informazioni sulla lingua nei meta di un post."; +$a->strings["Suppress Tags"] = ""; +$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; $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). To disable the item cache, set the value to -1."] = "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno). Per disabilitare la cache, imposta il valore a -1."; @@ -1237,9 +546,11 @@ $a->strings["Temp path"] = "Percorso file temporanei"; $a->strings["Base path to installation"] = "Percorso base all'installazione"; $a->strings["Disable picture proxy"] = "Disabilita il proxy immagini"; $a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Il proxy immagini aumenta le performace e la privacy. Non dovrebbe essere usato su server con poca banda disponibile."; +$a->strings["Enable old style pager"] = ""; +$a->strings["The old style pager has page numbers but slows down massively the page speed."] = ""; +$a->strings["Only search in tags"] = ""; +$a->strings["On large systems the text search can slow down the system extremely."] = ""; $a->strings["New base url"] = "Nuovo url base"; -$a->strings["Enable noscrape"] = "Abilita noscrape"; -$a->strings["The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping."] = "La funzione noscrape velocizza l'iscrizione alla directory usando dati JSON al posto di esaminare l'HTML"; $a->strings["Update has been marked successful"] = "L'aggiornamento è stato segnato come di successo"; $a->strings["Database structure update %s was successfully applied."] = "Aggiornamento struttura database %s applicata con successo."; $a->strings["Executing of database structure update %s failed with error: %s"] = "Aggiornamento struttura database %s fallita con errore: %s"; @@ -1255,6 +566,7 @@ $a->strings["Mark success (if update was manually applied)"] = "Segna completato $a->strings["Attempt to execute this update step automatically"] = "Cerco di eseguire questo aggiornamento in automatico"; $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\nGentile %1\$s,\n l'amministratore di %2\$s ha impostato un account per te."; $a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %1\$s\n Nome utente: %2\$s\n Password: %3\$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %4\$s"; +$a->strings["Registration details for %s"] = "Dettagli della registrazione di %s"; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s utente bloccato/sbloccato", 1 => "%s utenti bloccati/sbloccati", @@ -1271,6 +583,7 @@ $a->strings["select all"] = "seleziona tutti"; $a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma"; $a->strings["User waiting for permanent deletion"] = "Utente in attesa di cancellazione definitiva"; $a->strings["Request date"] = "Data richiesta"; +$a->strings["Email"] = "Email"; $a->strings["No registrations."] = "Nessuna registrazione."; $a->strings["Deny"] = "Nega"; $a->strings["Site admin"] = "Amministrazione sito"; @@ -1280,6 +593,7 @@ $a->strings["Register date"] = "Data registrazione"; $a->strings["Last login"] = "Ultimo accesso"; $a->strings["Last item"] = "Ultimo elemento"; $a->strings["Deleted since"] = "Rimosso da"; +$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["Name of the new user."] = "Nome del nuovo utente."; @@ -1308,14 +622,10 @@ $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["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["Welcome to %s"] = "Benvenuto su %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["Search Results For:"] = "Cerca risultati per:"; $a->strings["Remove term"] = "Rimuovi termine"; +$a->strings["Saved Searches"] = "Ricerche salvate"; +$a->strings["add"] = "aggiungi"; $a->strings["Commented Order"] = "Ordina per commento"; $a->strings["Sort by Comment Date"] = "Ordina per data commento"; $a->strings["Posted Order"] = "Ordina per invio"; @@ -1338,131 +648,13 @@ $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["- select -"] = "- seleziona -"; -$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["Applications"] = "Applicazioni"; -$a->strings["No installed applications."] = "Nessuna applicazione installata."; -$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["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["Recent Photos"] = "Foto recenti"; -$a->strings["Contact added"] = "Contatto aggiunto"; -$a->strings["Move account"] = "Muovi account"; -$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"; -$a->strings["Account file"] = "File account"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""; -$a->strings["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["Access denied."] = "Accesso negato."; -$a->strings["No valid account found."] = "Nessun account valido trovato."; -$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nGentile %1\$s,\n abbiamo ricevuto su \"%2\$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il link di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il link e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica."; -$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nSegui questo link per verificare la tua identità:\n\n%1\$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n Indirizzo del sito: %2\$s\n Nome utente: %3\$s"; -$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."; -$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto."; -$a->strings["Your new password is"] = "La tua nuova password è"; -$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; -$a->strings["click here to login"] = "clicca qui per entrare"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso."; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nGentile %1\$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare."; -$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1\$s\n Nome utente: %2\$s\n Password: %3\$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato."; -$a->strings["Your password has been changed at %s"] = "La tua password presso %s è stata cambiata"; -$a->strings["Forgot your Password?"] = "Hai dimenticato la password?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password."; -$a->strings["Nickname or Email: "] = "Nome utente o email: "; -$a->strings["Reset"] = "Reimposta"; -$a->strings["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["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 My Account"] = "Rimuovi il mio account"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."; -$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; -$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; -$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo"; -$a->strings["Visible To"] = "Visibile a"; -$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)"; -$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["Friends of %s"] = "Amici di %s"; +$a->strings["No friends to display."] = "Nessun amico da visualizzare."; $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"; @@ -1475,113 +667,53 @@ $a->strings["Finish date/time is not known or not relevant"] = "La data/ora di f $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["{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["Mood"] = "Umore"; -$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici"; -$a->strings["No results."] = "Nessun risultato."; -$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["Select"] = "Seleziona"; +$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; +$a->strings["%s from %s"] = "%s da %s"; +$a->strings["View in context"] = "Vedi nel contesto"; +$a->strings["%d comment"] = array( + 0 => "%d commento", + 1 => "%d commenti", ); -$a->strings["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["Not available."] = "Non disponibile."; -$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 contacts and friends:"] = "Nascondi contatti:"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"; -$a->strings["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["Basic information"] = "Informazioni di base"; -$a->strings["Profile picture"] = "Immagine del profilo"; -$a->strings["Preferences"] = "Preferenze"; -$a->strings["Status information"] = "Informazioni stato"; -$a->strings["Additional information"] = "Informazioni aggiuntive"; -$a->strings["Upload Profile Photo"] = "Carica la foto del 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["comment"] = array( + 0 => "", + 1 => "commento", +); +$a->strings["show more"] = "mostra di più"; +$a->strings["Private Message"] = "Messaggio privato"; +$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)"; +$a->strings["like"] = "mi piace"; +$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)"; +$a->strings["dislike"] = "non mi piace"; +$a->strings["Share this"] = "Condividi questo"; +$a->strings["share"] = "condividi"; +$a->strings["This is you"] = "Questo sei tu"; +$a->strings["Comment"] = "Commento"; +$a->strings["Bold"] = "Grassetto"; +$a->strings["Italic"] = "Corsivo"; +$a->strings["Underline"] = "Sottolineato"; +$a->strings["Quote"] = "Citazione"; +$a->strings["Code"] = "Codice"; +$a->strings["Image"] = "Immagine"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Preview"] = "Anteprima"; +$a->strings["Edit"] = "Modifica"; +$a->strings["add star"] = "aggiungi a speciali"; +$a->strings["remove star"] = "rimuovi da speciali"; +$a->strings["toggle star status"] = "Inverti stato preferito"; +$a->strings["starred"] = "preferito"; +$a->strings["add tag"] = "aggiungi tag"; +$a->strings["save to folder"] = "salva nella cartella"; +$a->strings["to"] = "a"; +$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; +$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca"; +$a->strings["Remove My Account"] = "Rimuovi il mio account"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."; +$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; $a->strings["Friendica Communications Server - Setup"] = "Friendica Comunicazione Server - Impostazioni"; $a->strings["Could not connect to database."] = " Impossibile collegarsi con il database."; $a->strings["Could not create table."] = "Impossibile creare le tabelle."; @@ -1643,114 +775,1023 @@ $a->strings["Url rewrite is working"] = "La riscrittura degli url funziona"; $a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito."; $a->strings["

What next

"] = "

Cosa fare ora

"; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."; +$a->strings["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["Help:"] = "Guida:"; -$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["Remote Self"] = "Io remoto"; -$a->strings["Mirror postings from this contact"] = "Ripeti i messaggi di questo contatto"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Imposta questo contatto come 'io remoto', questo farà si che friendica reinvii i nuovi messaggi da questo contatto."; -$a->strings["No mirroring"] = "Non duplicare"; -$a->strings["Mirror as forwarded posting"] = "Duplica come messaggi ricondivisi"; -$a->strings["Mirror as my own posting"] = "Duplica come miei messaggi"; -$a->strings["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 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["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["\n\t\tDear $[username],\n\t\t\tYour password has been changed as requested. Please retain this\n\t\tinformation for your records (or change your password immediately to\n\t\tsomething that you will remember).\n\t"] = ""; -$a->strings["Item has been removed."] = "L'oggetto è stato rimosso."; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; +$a->strings["Help"] = "Guida"; +$a->strings["Not Found"] = "Non trovato"; +$a->strings["Page not found."] = "Pagina non trovata."; $a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s"; -$a->strings["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["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s"; -$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["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["Friends of %s"] = "Amici di %s"; -$a->strings["No friends to display."] = "Nessun amico da visualizzare."; -$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["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["Welcome to %s"] = "Benvenuto su %s"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Mi spiace, forse il fie che stai caricando è più grosso di quanto la configurazione di PHP permetta"; +$a->strings["Or - did you try to upload an empty file?"] = "O.. non avrai provato a caricare un file vuoto?"; +$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; +$a->strings["File upload failed."] = "Caricamento del file non riuscito."; +$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["Connect"] = "Connetti"; +$a->strings["link"] = "collegamento"; +$a->strings["Not available."] = "Non disponibile."; +$a->strings["Community"] = "Comunità"; +$a->strings["No results."] = "Nessun risultato."; +$a->strings["everybody"] = "tutti"; +$a->strings["Additional features"] = "Funzionalità aggiuntive"; +$a->strings["Display"] = "Visualizzazione"; +$a->strings["Social Networks"] = "Social Networks"; +$a->strings["Delegations"] = "Delegazioni"; +$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["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["Relocate message has been send to your contacts"] = "Il messaggio di trasloco è stato inviato ai tuoi contatti"; +$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["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["Diaspora"] = "Diaspora"; +$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["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:"] = "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["Don't show notices"] = "Non mostrare gli avvisi"; +$a->strings["Infinite scroll"] = "Scroll infinito"; +$a->strings["Automatic updates only at the top of the network page"] = "Aggiornamenti automatici solo in cima alla pagina \"rete\""; +$a->strings["User Types"] = "Tipi di Utenti"; +$a->strings["Community Types"] = "Tipi di Comunità"; +$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["No"] = "No"; +$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["If enabled, posting public messages to Diaspora and other networks isn't possible."] = ""; +$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["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"] = "La tua password attuale per confermare le modifiche"; +$a->strings["Password:"] = "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["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["Text-only notification emails"] = ""; +$a->strings["Send text only notification emails, without the html part"] = ""; +$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["Relocate"] = "Trasloca"; +$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone."; +$a->strings["Resend relocate message to contacts"] = "Reinvia il messaggio di trasloco"; +$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; +$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; +$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", + 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", +); +$a->strings["Introduction complete."] = "Presentazione completa."; +$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; +$a->strings["Profile unavailable."] = "Profilo non disponibile."; +$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; +$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; +$a->strings["Invalid locator"] = "Invalid locator"; +$a->strings["Invalid email address."] = "Indirizzo email non valido."; +$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita."; +$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata."; +$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; +$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; +$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; +$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; +$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; +$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; +$a->strings["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["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["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."; +$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:"; +$a->strings["Submit Request"] = "Invia richiesta"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registrazione completata. Controlla la tua mail per ulteriori informazioni."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = ""; +$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere elaborata."; +$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."; +$a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): "; +$a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco pubblico?"; +$a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito."; +$a->strings["Your invitation ID: "] = "L'ID del tuo invito:"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo nome completo (es. Mario Rossi): "; +$a->strings["Your Email Address: "] = "Il tuo indirizzo email: "; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@\$sitename'."; +$a->strings["Choose a nickname: "] = "Scegli un nome utente: "; +$a->strings["Register"] = "Registrati"; +$a->strings["Import"] = "Importa"; +$a->strings["Import your profile to this friendica instance"] = "Importa il tuo profilo in questo server friendica"; +$a->strings["System down for maintenance"] = "Sistema in manutenzione"; +$a->strings["Search"] = "Cerca"; +$a->strings["Global Directory"] = "Elenco globale"; +$a->strings["Find on this site"] = "Cerca nel sito"; +$a->strings["Site Directory"] = "Elenco del sito"; +$a->strings["Age: "] = "Età : "; +$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["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["Common Friends"] = "Amici in comune"; +$a->strings["No contacts in common."] = "Nessun contatto in comune."; +$a->strings["Export account"] = "Esporta account"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."; +$a->strings["Export all"] = "Esporta tutto"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s"; +$a->strings["Mood"] = "Umore"; +$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici"; +$a->strings["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?"; +$a->strings["Friend Suggestions"] = "Contatti suggeriti"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; +$a->strings["Ignore/Hide"] = "Ignora / Nascondi"; +$a->strings["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 contacts and friends:"] = "Nascondi contatti:"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"; +$a->strings["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["Basic information"] = "Informazioni di base"; +$a->strings["Profile picture"] = "Immagine del profilo"; +$a->strings["Preferences"] = "Preferenze"; +$a->strings["Status information"] = "Informazioni stato"; +$a->strings["Additional information"] = "Informazioni aggiuntive"; +$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["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["Item not found"] = "Oggetto non trovato"; +$a->strings["Edit post"] = "Modifica messaggio"; +$a->strings["upload photo"] = "carica foto"; +$a->strings["Attach file"] = "Allega file"; +$a->strings["attach file"] = "allega file"; +$a->strings["web link"] = "link web"; +$a->strings["Insert video link"] = "Inserire collegamento video"; +$a->strings["video link"] = "link video"; +$a->strings["Insert audio link"] = "Inserisci collegamento audio"; +$a->strings["audio link"] = "link audio"; +$a->strings["Set your location"] = "La tua posizione"; +$a->strings["set location"] = "posizione"; +$a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser"; +$a->strings["clear location"] = "canc. pos."; +$a->strings["Permission settings"] = "Impostazioni permessi"; +$a->strings["CC: email addresses"] = "CC: indirizzi email"; +$a->strings["Public post"] = "Messaggio pubblico"; +$a->strings["Set title"] = "Scegli un titolo"; +$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com"; +$a->strings["This is Friendica, version"] = "Questo è Friendica, versione"; +$a->strings["running at web location"] = "in esecuzione all'indirizzo web"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Visita Friendica.com per saperne di più sul progetto Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com"; +$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate"; +$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata"; +$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione"; +$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:"; +$a->strings["Please login to continue."] = "Effettua il login per continuare."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"; +$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; +$a->strings["Visible to:"] = "Visibile a:"; +$a->strings["Personal Notes"] = "Note personali"; +$a->strings["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["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["Total invitation limit exceeded."] = "Limite totale degli inviti superato."; +$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; +$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito."; +$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita."; +$a->strings["%d message sent."] = array( + 0 => "%d messaggio inviato.", + 1 => "%d messaggi inviati.", +); +$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."; +$a->strings["Send invitations"] = "Invia inviti"; +$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"; +$a->strings["Photo Albums"] = "Album foto"; +$a->strings["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["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["Recent Photos"] = "Foto recenti"; +$a->strings["Account approved."] = "Account approvato."; +$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; +$a->strings["Please login."] = "Accedi."; +$a->strings["Move account"] = "Muovi account"; +$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"; +$a->strings["Account file"] = "File account"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""; +$a->strings["Item not available."] = "Oggetto non disponibile."; +$a->strings["Item was not found."] = "Oggetto non trovato."; +$a->strings["Delete this item?"] = "Cancellare questo elemento?"; +$a->strings["show fewer"] = "mostra di meno"; +$a->strings["Update %s failed. See error logs."] = "aggiornamento %s fallito. Guarda i log di errore."; +$a->strings["Create a New Account"] = "Crea un nuovo account"; +$a->strings["Logout"] = "Esci"; +$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["Network:"] = "Rete:"; +$a->strings["g A l F d"] = "g A l d F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[oggi]"; +$a->strings["Birthday Reminders"] = "Promemoria compleanni"; +$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; +$a->strings["[No description]"] = "[Nessuna descrizione]"; +$a->strings["Event Reminders"] = "Promemoria"; +$a->strings["Events this week:"] = "Eventi di questa settimana:"; +$a->strings["Status"] = "Stato"; +$a->strings["Status Messages and Posts"] = "Messaggi di stato e post"; +$a->strings["Profile Details"] = "Dettagli del profilo"; +$a->strings["Videos"] = "Video"; +$a->strings["Events and Calendar"] = "Eventi e calendario"; +$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo"; +$a->strings["This entry was edited"] = "Questa voce è stata modificata"; +$a->strings["ignore thread"] = "ignora la discussione"; +$a->strings["unignore thread"] = "non ignorare la discussione"; +$a->strings["toggle ignore status"] = "inverti stato \"Ignora\""; +$a->strings["ignored"] = "ignorato"; +$a->strings["Categories:"] = "Categorie:"; +$a->strings["Filed under:"] = "Archiviato in:"; +$a->strings["via"] = "via"; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Il messaggio di errore è\n[pre]%s[/pre]"; +$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; +$a->strings["Errors encountered performing database changes."] = "Riscontrati errori applicando le modifiche al database."; +$a->strings["Logged out."] = "Uscita effettuata."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."; +$a->strings["The error message was:"] = "Il messaggio riportato era:"; +$a->strings["Add New Contact"] = "Aggiungi nuovo contatto"; +$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d invito disponibile", + 1 => "%d inviti disponibili", +); +$a->strings["Find People"] = "Trova persone"; +$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse"; +$a->strings["Connect/Follow"] = "Connetti/segui"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; +$a->strings["Similar Interests"] = "Interessi simili"; +$a->strings["Random Profile"] = "Profilo causale"; +$a->strings["Invite Friends"] = "Invita amici"; +$a->strings["Networks"] = "Reti"; +$a->strings["All Networks"] = "Tutte le Reti"; +$a->strings["Saved Folders"] = "Cartelle Salvate"; +$a->strings["Everything"] = "Tutto"; +$a->strings["Categories"] = "Categorie"; +$a->strings["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["Auto-mention Forums"] = "Auto-cita i Forum"; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Aggiunge o rimuove una citazione quando un forum è selezionato o deselezionato nella finestra dei permessi."; +$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 messaggi/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["Mute Post Notifications"] = "Silenzia le notifiche di nuovi post"; +$a->strings["Ability to mute notifications for a thread"] = "Permette di silenziare le notifiche di nuovi post in una discussione"; +$a->strings["Connect URL missing."] = "URL di connessione mancante."; +$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili."; +$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni."; +$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore"; +$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."; +$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."; +$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto."; +$a->strings["following"] = "segue"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."; +$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti"; +$a->strings["Everybody"] = "Tutti"; +$a->strings["edit"] = "modifica"; +$a->strings["Edit group"] = "Modifica gruppo"; +$a->strings["Create a new group"] = "Crea un nuovo gruppo"; +$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; +$a->strings["Miscellaneous"] = "Varie"; +$a->strings["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["Visible to everybody"] = "Visibile a tutti"; +$a->strings["show"] = "mostra"; +$a->strings["don't show"] = "non mostrare"; +$a->strings["[no subject]"] = "[nessun oggetto]"; +$a->strings["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["Drop Contact"] = "Rimuovi contatto"; +$a->strings["Send PM"] = "Invia messaggio privato"; +$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["event"] = "l'evento"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$s"; +$a->strings["poked"] = "ha stuzzicato"; +$a->strings["post/item"] = "post/elemento"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito"; +$a->strings["remove"] = "rimuovi"; +$a->strings["Delete Selected Items"] = "Cancella elementi selezionati"; +$a->strings["Follow Thread"] = "Segui la discussione"; +$a->strings["%s likes this."] = "Piace a %s."; +$a->strings["%s doesn't like this."] = "Non piace a %s."; +$a->strings["%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["Connectors disabled, since \"%s\" is enabled."] = "Connettore disabilitato, dato che \"%s\" è abilitato."; +$a->strings["permissions"] = "permessi"; +$a->strings["Post to Groups"] = "Invia ai Gruppi"; +$a->strings["Post to Contacts"] = "Invia ai Contatti"; +$a->strings["Private post"] = "Post privato"; +$a->strings["view full size"] = "vedi a schermo intero"; +$a->strings["newer"] = "nuovi"; +$a->strings["older"] = "vecchi"; +$a->strings["prev"] = "prec"; +$a->strings["first"] = "primo"; +$a->strings["last"] = "ultimo"; +$a->strings["next"] = "succ"; +$a->strings["No contacts"] = "Nessun contatto"; +$a->strings["%d Contact"] = array( + 0 => "%d contatto", + 1 => "%d contatti", +); +$a->strings["poke"] = "stuzzica"; +$a->strings["ping"] = "invia un ping"; +$a->strings["pinged"] = "ha inviato un ping"; +$a->strings["prod"] = "pungola"; +$a->strings["prodded"] = "ha pungolato"; +$a->strings["slap"] = "schiaffeggia"; +$a->strings["slapped"] = "ha schiaffeggiato"; +$a->strings["finger"] = "tocca"; +$a->strings["fingered"] = "ha toccato"; +$a->strings["rebuff"] = "respingi"; +$a->strings["rebuffed"] = "ha 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["Image/photo"] = "Immagine/foto"; +$a->strings["%2\$s %3\$s"] = ""; +$a->strings["%s wrote the following post"] = "%s ha scritto il seguente messaggio"; +$a->strings["$1 wrote:"] = "$1 ha scritto:"; +$a->strings["Encrypted content"] = "Contenuto criptato"; +$a->strings["(no subject)"] = "(nessun oggetto)"; +$a->strings["noreply"] = "nessuna risposta"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; +$a->strings["Block immediately"] = "Blocca immediatamente"; +$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; +$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare"; +$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo"; +$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia"; +$a->strings["Weekly"] = "Settimanalmente"; +$a->strings["Monthly"] = "Mensilmente"; +$a->strings["OStatus"] = "Ostatus"; +$a->strings["RSS/Atom"] = "RSS / Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Connettore Diaspora"; +$a->strings["Statusnet"] = "Statusnet"; +$a->strings["App.net"] = "App.net"; +$a->strings[" on Last.fm"] = "su Last.fm"; +$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["for %1\$d %2\$s"] = "per %1\$d %2\$s"; +$a->strings["Tags:"] = "Tag:"; +$a->strings["Religion:"] = "Religione:"; +$a->strings["Hobbies/Interests:"] = "Hobby/Interessi:"; +$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:"; +$a->strings["Musical interests:"] = "Interessi musicali:"; +$a->strings["Books, literature:"] = "Libri, letteratura:"; +$a->strings["Television:"] = "Televisione:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:"; +$a->strings["Love/Romance:"] = "Amore:"; +$a->strings["Work/employment:"] = "Lavoro:"; +$a->strings["School/education:"] = "Scuola:"; +$a->strings["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["End this session"] = "Finisci questa sessione"; +$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni"; +$a->strings["Your profile page"] = "Pagina del tuo profilo"; +$a->strings["Your photos"] = "Le tue foto"; +$a->strings["Your videos"] = "I tuoi video"; +$a->strings["Your events"] = "I tuoi eventi"; +$a->strings["Personal notes"] = "Note personali"; +$a->strings["Your personal notes"] = "Le tue note personali"; +$a->strings["Sign in"] = "Entra"; +$a->strings["Home Page"] = "Home Page"; +$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["Conversations on the network"] = ""; +$a->strings["Directory"] = "Elenco"; +$a->strings["People directory"] = "Elenco delle persone"; +$a->strings["Information"] = "Informazioni"; +$a->strings["Information about this friendica instance"] = "Informazioni su questo server friendica"; +$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["Account settings"] = "Parametri account"; +$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["User not found."] = "Utente non trovato."; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = ""; +$a->strings["There is no status with this id."] = "Non c'è nessuno status con questo id."; +$a->strings["There is no conversation with this id."] = "Non c'è nessuna conversazione con questo id"; +$a->strings["Invalid request."] = ""; +$a->strings["Invalid item."] = ""; +$a->strings["Invalid action. "] = ""; +$a->strings["DB error"] = ""; +$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["Friends"] = "Amici"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nGentile %1\$s,\nGrazie per esserti registrato su %2\$s. Il tuo account è stato creato."; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = ""; +$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; +$a->strings["Attachments:"] = "Allegati:"; +$a->strings["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?"; +$a->strings["Archives"] = "Archivi"; +$a->strings["Male"] = "Maschio"; +$a->strings["Female"] = "Femmina"; +$a->strings["Currently Male"] = "Al momento maschio"; +$a->strings["Currently Female"] = "Al momento femmina"; +$a->strings["Mostly Male"] = "Prevalentemente maschio"; +$a->strings["Mostly Female"] = "Prevalentemente femmina"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Intersex"; +$a->strings["Transsexual"] = "Transessuale"; +$a->strings["Hermaphrodite"] = "Ermafrodito"; +$a->strings["Neuter"] = "Neutro"; +$a->strings["Non-specific"] = "Non specificato"; +$a->strings["Other"] = "Altro"; +$a->strings["Undecided"] = "Indeciso"; +$a->strings["Males"] = "Maschi"; +$a->strings["Females"] = "Femmine"; +$a->strings["Gay"] = "Gay"; +$a->strings["Lesbian"] = "Lesbica"; +$a->strings["No Preference"] = "Nessuna preferenza"; +$a->strings["Bisexual"] = "Bisessuale"; +$a->strings["Autosexual"] = "Autosessuale"; +$a->strings["Abstinent"] = "Astinente"; +$a->strings["Virgin"] = "Vergine"; +$a->strings["Deviant"] = "Deviato"; +$a->strings["Fetish"] = "Fetish"; +$a->strings["Oodles"] = "Un sacco"; +$a->strings["Nonsexual"] = "Asessuato"; +$a->strings["Single"] = "Single"; +$a->strings["Lonely"] = "Solitario"; +$a->strings["Available"] = "Disponibile"; +$a->strings["Unavailable"] = "Non disponibile"; +$a->strings["Has crush"] = "è cotto/a"; +$a->strings["Infatuated"] = "infatuato/a"; +$a->strings["Dating"] = "Disponibile a un incontro"; +$a->strings["Unfaithful"] = "Infedele"; +$a->strings["Sex Addict"] = "Sesso-dipendente"; +$a->strings["Friends/Benefits"] = "Amici con benefici"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Impegnato"; +$a->strings["Married"] = "Sposato"; +$a->strings["Imaginarily married"] = "immaginariamente sposato/a"; +$a->strings["Partners"] = "Partners"; +$a->strings["Cohabiting"] = "Coinquilino"; +$a->strings["Common law"] = "diritto comune"; +$a->strings["Happy"] = "Felice"; +$a->strings["Not looking"] = "Non guarda"; +$a->strings["Swinger"] = "Scambista"; +$a->strings["Betrayed"] = "Tradito"; +$a->strings["Separated"] = "Separato"; +$a->strings["Unstable"] = "Instabile"; +$a->strings["Divorced"] = "Divorziato"; +$a->strings["Imaginarily divorced"] = "immaginariamente divorziato/a"; +$a->strings["Widowed"] = "Vedovo"; +$a->strings["Uncertain"] = "Incerto"; +$a->strings["It's complicated"] = "E' complicato"; +$a->strings["Don't care"] = "Non interessa"; +$a->strings["Ask me"] = "Chiedimelo"; +$a->strings["Friendica Notification"] = "Notifica Friendica"; +$a->strings["Thank You,"] = "Grazie,"; +$a->strings["%s Administrator"] = "Amministratore %s"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s ti ha inviato un nuovo messaggio privato su %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha inviato %2\$s"; +$a->strings["a private message"] = "un messaggio privato"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per vedere e/o rispodere ai tuoi messaggi privati."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%4\$s di %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s ha commentato un [url=%2\$s]tuo %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notifica] Commento di %2\$s alla conversazione #%1\$d"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s ha commentato un elemento che stavi seguendo."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per vedere e/o commentare la conversazione"; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notifica] %s ha scritto sulla tua bacheca"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha scritto sulla tua bacheca su %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s ha inviato un messaggio sulla [url=%2\$s]tua bacheca[/url]"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notifica] %s ti ha taggato"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s ti ha taggato su %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]ti ha taggato[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notifica] %s ha condiviso un nuovo messaggio"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s ha condiviso un nuovo messaggio su %2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]ha condiviso un messaggio[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notifica] %1\$s ti ha stuzzicato"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s ti ha stuzzicato su %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]ti ha stuzzicato[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notifica] %s ha taggato un tuo messaggio"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha taggato il tuo post su %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s ha taggato [url=%2\$s]il tuo post[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notifica] Hai ricevuto una presentazione"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Hai ricevuto un'introduzione da '%1\$s' su %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Hai ricevuto [url=%1\$s]un'introduzione[/url] da %2\$s."; +$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo presso %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s per approvare o rifiutare la presentazione."; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notifica] Una nuova persona sta condividendo con te"; +$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s sta condividendo con te su %2\$s"; +$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notifica] Una nuova persona ti segue"; +$a->strings["You have a new follower at %2\$s : %1\$s"] = "Un nuovo utente ha iniziato a seguirti su %2\$s : %1\$s"; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Hai ricevuto un suggerimento di amicizia da '%1\$s' su %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Hai ricevuto [url=%1\$s]un suggerimento di amicizia[/url] per %2\$s su %3\$s"; +$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["[Friendica:Notify] Connection accepted"] = "[Friendica:Notifica] Connessione accettata"; +$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' ha accettato la tua richiesta di connessione su %2\$s"; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s ha accettato la tua [url=%1\$s]richiesta di connessione[/url]"; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Ora siete connessi reciprocamente e potete scambiarvi aggiornamenti di stato, foto e email\nsenza restrizioni"; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Visita %s se desideri modificare questo collegamento."; +$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibiltà di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente."; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' può decidere in futuro di estendere la connessione in una reciproca o più permissiva."; +$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Notifica] richiesta di registrazione"; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Hai ricevuto una richiesta di registrazione da '%1\$s' su %2\$s"; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Hai ricevuto una [url=%1\$s]richiesta di registrazione[/url] da %2\$s."; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nome completo: %1\$s\nIndirizzo del sito: %2\$s\nNome utente: %3\$s (%4\$s)"; +$a->strings["Please visit %s to approve or reject the request."] = "Visita %s per approvare o rifiutare la richiesta."; +$a->strings["Embedded content"] = "Contenuto incorporato"; +$a->strings["Embedding disabled"] = "Embed disabilitato"; +$a->strings["Error decoding account file"] = "Errore decodificando il file account"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; +$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; +$a->strings["User creation error"] = "Errore creando l'utente"; +$a->strings["User profile creation error"] = "Errore creando il profile dell'utente"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contatto non importato", + 1 => "%d contatti non importati", +); +$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; +$a->strings["toggle mobile"] = "commuta tema mobile"; +$a->strings["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 colour scheme"] = "Imposta schema colori"; +$a->strings["Alignment"] = "Allineamento"; +$a->strings["Left"] = "Sinistra"; +$a->strings["Center"] = "Centrato"; +$a->strings["Posts font size"] = "Dimensione caratteri post"; +$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo"; +$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale"; +$a->strings["Set color scheme"] = "Imposta lo schema dei colori"; +$a->strings["Set zoomfactor for Earth Layer"] = "Livello di zoom per Earth Layer"; +$a->strings["Set longitude (X) for Earth Layers"] = "Longitudine (X) per Earth Layers"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Latitudine (Y) per Earth Layers"; +$a->strings["Community Pages"] = "Pagine Comunitarie"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Community Profiles"] = "Profili Comunità"; +$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; +$a->strings["Connect Services"] = "Servizi di conessione"; +$a->strings["Find Friends"] = "Trova Amici"; +$a->strings["Last users"] = "Ultimi utenti"; +$a->strings["Last photos"] = "Ultime foto"; +$a->strings["Last likes"] = "Ultimi \"mi piace\""; +$a->strings["Your contacts"] = "I tuoi contatti"; +$a->strings["Your personal photos"] = "Le tue foto personali"; +$a->strings["Local Directory"] = "Elenco Locale"; +$a->strings["Set zoomfactor for Earth Layers"] = "Livello di zoom per Earth Layers"; +$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra"; +$a->strings["Set style"] = "Imposta stile"; +$a->strings["greenzero"] = ""; +$a->strings["purplezero"] = ""; +$a->strings["easterbunny"] = ""; +$a->strings["darkzero"] = ""; +$a->strings["comix"] = ""; +$a->strings["slackr"] = ""; +$a->strings["Variations"] = ""; diff --git a/view/ro/messages.po b/view/ro/messages.po index c0ae2a20b6..261d02d6d6 100644 --- a/view/ro/messages.po +++ b/view/ro/messages.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-07 14:32+0200\n" -"PO-Revision-Date: 2014-10-09 12:35+0000\n" +"POT-Creation-Date: 2014-10-22 10:05+0200\n" +"PO-Revision-Date: 2014-11-27 14:30+0000\n" "Last-Translator: Doru DEACONU \n" "Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/friendica/language/ro_RO/)\n" "MIME-Version: 1.0\n" @@ -20,3491 +20,3628 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/vier/config.php:52 ../../view/theme/diabook/config.php:148 -#: ../../view/theme/diabook/theme.php:633 -#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 -#: ../../object/Item.php:678 ../../mod/contacts.php:470 -#: ../../mod/manage.php:110 ../../mod/fsuggest.php:107 -#: ../../mod/photos.php:1084 ../../mod/photos.php:1205 -#: ../../mod/photos.php:1512 ../../mod/photos.php:1563 -#: ../../mod/photos.php:1607 ../../mod/photos.php:1695 -#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137 -#: ../../mod/message.php:335 ../../mod/message.php:564 -#: ../../mod/profiles.php:645 ../../mod/install.php:248 -#: ../../mod/install.php:286 ../../mod/crepair.php:179 -#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45 -msgid "Submit" -msgstr "Trimite" - -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/vier/config.php:54 ../../view/theme/diabook/config.php:150 -#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 -msgid "Theme settings" -msgstr "Configurări Temă" +#: ../../object/Item.php:94 +msgid "This entry was edited" +msgstr "Această intrare a fost editată" -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Stabiliți nivelul de redimensionare a imaginilor din postări și comentarii (lăţimea şi înălţimea)" +#: ../../object/Item.php:116 ../../mod/photos.php:1357 +#: ../../mod/content.php:620 +msgid "Private Message" +msgstr " Mesaj Privat" -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/diabook/config.php:151 -#: ../../view/theme/dispy/config.php:73 -msgid "Set font-size for posts and comments" -msgstr "Stabilire dimensiune font pentru postări şi comentarii" +#: ../../object/Item.php:120 ../../mod/settings.php:673 +#: ../../mod/content.php:728 +msgid "Edit" +msgstr "Edit" -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Stabilire lăţime temă" +#: ../../object/Item.php:129 ../../mod/photos.php:1651 +#: ../../mod/content.php:437 ../../mod/content.php:740 +#: ../../include/conversation.php:613 +msgid "Select" +msgstr "Select" -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Schemă culoare" +#: ../../object/Item.php:130 ../../mod/admin.php:970 ../../mod/photos.php:1652 +#: ../../mod/contacts.php:709 ../../mod/settings.php:674 +#: ../../mod/group.php:171 ../../mod/content.php:438 ../../mod/content.php:741 +#: ../../include/conversation.php:614 +msgid "Delete" +msgstr "Şterge" -#: ../../view/theme/vier/config.php:55 -msgid "Set style" -msgstr "Stabilire stil" +#: ../../object/Item.php:133 ../../mod/content.php:763 +msgid "save to folder" +msgstr "salvează în directorul" -#: ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:328 -msgid "don't show" -msgstr "nu afișa" +#: ../../object/Item.php:195 ../../mod/content.php:753 +msgid "add star" +msgstr "add stea" -#: ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:327 -msgid "show" -msgstr "afișare" +#: ../../object/Item.php:196 ../../mod/content.php:754 +msgid "remove star" +msgstr "înlătură stea" -#: ../../view/theme/diabook/config.php:152 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Stabilire înălțime linie pentru postări şi comentarii" +#: ../../object/Item.php:197 ../../mod/content.php:755 +msgid "toggle star status" +msgstr "comută status steluță" -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Stabilire rezoluţie pentru coloana din mijloc" +#: ../../object/Item.php:200 ../../mod/content.php:758 +msgid "starred" +msgstr "cu steluță" -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Stabilire schemă de culori" +#: ../../object/Item.php:208 +msgid "ignore thread" +msgstr "" -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Stabilire factor de magnificare pentru Straturi Pământ" +#: ../../object/Item.php:209 +msgid "unignore thread" +msgstr "" -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "Stabilire longitudine (X) pentru Straturi Pământ" +#: ../../object/Item.php:210 +msgid "toggle ignore status" +msgstr "Comutaţi status Ignorare" -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Stabilire latitudine (Y) pentru Straturi Pământ" +#: ../../object/Item.php:213 +msgid "ignored" +msgstr "ignorat" -#: ../../view/theme/diabook/config.php:158 -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "Community Pagini" +#: ../../object/Item.php:220 ../../mod/content.php:759 +msgid "add tag" +msgstr "add tag" -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Straturi Pământ" +#: ../../object/Item.php:231 ../../mod/photos.php:1540 +#: ../../mod/content.php:684 +msgid "I like this (toggle)" +msgstr "I like asta (toggle)" -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Profile de Comunitate" +#: ../../object/Item.php:231 ../../mod/content.php:684 +msgid "like" +msgstr "like" -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "Ajutor sau @NouAici ?" +#: ../../object/Item.php:232 ../../mod/photos.php:1541 +#: ../../mod/content.php:685 +msgid "I don't like this (toggle)" +msgstr "nu îmi place aceasta (comutare)" -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Conectare Servicii" +#: ../../object/Item.php:232 ../../mod/content.php:685 +msgid "dislike" +msgstr "dislike" -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Găsire Prieteni" +#: ../../object/Item.php:234 ../../mod/content.php:687 +msgid "Share this" +msgstr "Partajează" -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Ultimii utilizatori" +#: ../../object/Item.php:234 ../../mod/content.php:687 +msgid "share" +msgstr "partajează" -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Ultimele fotografii" +#: ../../object/Item.php:316 ../../include/conversation.php:666 +msgid "Categories:" +msgstr "Categorii:" -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Ultimele aprecieri" +#: ../../object/Item.php:317 ../../include/conversation.php:667 +msgid "Filed under:" +msgstr "Înscris în:" -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105 -#: ../../include/nav.php:146 ../../mod/notifications.php:93 -msgid "Home" -msgstr "Home" +#: ../../object/Item.php:326 ../../object/Item.php:327 +#: ../../mod/content.php:471 ../../mod/content.php:852 +#: ../../mod/content.php:853 ../../include/conversation.php:654 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vizualizaţi profilul %s @ %s" -#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 -#: ../../include/nav.php:146 -msgid "Your posts and conversations" -msgstr "Postările şi conversaţiile dvs." +#: ../../object/Item.php:328 ../../mod/content.php:854 +msgid "to" +msgstr "către" -#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2070 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 -#: ../../include/nav.php:77 ../../mod/profperm.php:103 -#: ../../mod/newmember.php:32 -msgid "Profile" -msgstr "Profil" +#: ../../object/Item.php:329 +msgid "via" +msgstr "via" -#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 -msgid "Your profile page" -msgstr "Pagina dvs. de profil" +#: ../../object/Item.php:330 ../../mod/content.php:855 +msgid "Wall-to-Wall" +msgstr "Perete-prin-Perete" -#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:175 -#: ../../mod/contacts.php:694 -msgid "Contacts" -msgstr "Contacte" +#: ../../object/Item.php:331 ../../mod/content.php:856 +msgid "via Wall-To-Wall:" +msgstr "via Perete-Prin-Perete" -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Contactele dvs." +#: ../../object/Item.php:340 ../../mod/content.php:481 +#: ../../mod/content.php:864 ../../include/conversation.php:674 +#, php-format +msgid "%s from %s" +msgstr "%s de la %s" -#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2077 -#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Poze" +#: ../../object/Item.php:361 ../../object/Item.php:677 +#: ../../mod/photos.php:1562 ../../mod/photos.php:1606 +#: ../../mod/photos.php:1694 ../../mod/content.php:709 ../../boot.php:724 +msgid "Comment" +msgstr "Comentariu" -#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 -msgid "Your photos" -msgstr "Fotografiile dvs." +#: ../../object/Item.php:364 ../../mod/message.php:334 +#: ../../mod/message.php:565 ../../mod/editpost.php:124 +#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1543 +#: ../../mod/content.php:499 ../../mod/content.php:883 +#: ../../include/conversation.php:692 ../../include/conversation.php:1109 +msgid "Please wait" +msgstr "Aşteptaţi vă rog" -#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2094 -#: ../../include/nav.php:80 ../../mod/events.php:370 -msgid "Events" -msgstr "Evenimente" +#: ../../object/Item.php:387 ../../mod/content.php:603 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentariu" +msgstr[1] "%d comentarii" +msgstr[2] "%d comentarii" -#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80 -msgid "Your events" -msgstr "Evenimentele dvs." +#: ../../object/Item.php:389 ../../object/Item.php:402 +#: ../../mod/content.php:605 ../../include/text.php:1969 +msgid "comment" +msgid_plural "comments" +msgstr[0] "comentariu" +msgstr[1] "comentarii" +msgstr[2] "comentarii" -#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81 -msgid "Personal notes" -msgstr "Note Personale" +#: ../../object/Item.php:390 ../../mod/content.php:606 ../../boot.php:725 +#: ../../include/contact_widgets.php:205 +msgid "show more" +msgstr "mai mult" -#: ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Fotografii dvs. personale" +#: ../../object/Item.php:675 ../../mod/photos.php:1560 +#: ../../mod/photos.php:1604 ../../mod/photos.php:1692 +#: ../../mod/content.php:707 +msgid "This is you" +msgstr "Acesta eşti tu" -#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129 -#: ../../mod/community.php:32 -msgid "Community" -msgstr "Comunitate" +#: ../../object/Item.php:678 ../../mod/fsuggest.php:107 +#: ../../mod/message.php:335 ../../mod/message.php:564 +#: ../../mod/events.php:478 ../../mod/photos.php:1084 +#: ../../mod/photos.php:1205 ../../mod/photos.php:1512 +#: ../../mod/photos.php:1563 ../../mod/photos.php:1607 +#: ../../mod/photos.php:1695 ../../mod/contacts.php:470 +#: ../../mod/invite.php:140 ../../mod/profiles.php:645 +#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45 +#: ../../mod/install.php:248 ../../mod/install.php:286 +#: ../../mod/content.php:710 ../../mod/mood.php:137 ../../mod/crepair.php:181 +#: ../../view/theme/diabook/theme.php:633 +#: ../../view/theme/diabook/config.php:148 ../../view/theme/vier/config.php:52 +#: ../../view/theme/dispy/config.php:70 +#: ../../view/theme/duepuntozero/config.php:59 +#: ../../view/theme/quattro/config.php:64 +#: ../../view/theme/cleanzero/config.php:80 +msgid "Submit" +msgstr "Trimite" -#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 -#: ../../include/conversation.php:246 ../../include/text.php:1964 -msgid "event" -msgstr "eveniment" +#: ../../object/Item.php:679 ../../mod/content.php:711 +msgid "Bold" +msgstr "Bold" -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1919 -#: ../../include/conversation.php:121 ../../include/conversation.php:130 -#: ../../include/conversation.php:249 ../../include/conversation.php:258 -#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 -#: ../../mod/tagger.php:62 -msgid "status" -msgstr "status" - -#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:1919 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1966 ../../mod/like.php:149 -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 -msgid "photo" -msgstr "photo" - -#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:1935 -#: ../../include/conversation.php:137 ../../mod/like.php:166 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s apreciază %3$s lui %2$s" - -#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 -#: ../../mod/photos.php:155 ../../mod/photos.php:1064 -#: ../../mod/photos.php:1189 ../../mod/photos.php:1212 -#: ../../mod/photos.php:1758 ../../mod/photos.php:1770 -msgid "Contact Photos" -msgstr "Photo Contact" - -#: ../../view/theme/diabook/theme.php:500 ../../include/user.php:335 -#: ../../include/user.php:342 ../../include/user.php:349 -#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1189 -#: ../../mod/photos.php:1212 ../../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 -msgid "Profile Photos" -msgstr "Poze profil" - -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Director Local" - -#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51 -msgid "Global Directory" -msgstr "Director Global" - -#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "Interese Similare" - -#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35 -#: ../../mod/suggest.php:66 -msgid "Friend Suggestions" -msgstr "Sugestii de Prietenie" - -#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "Invită Prieteni" - -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:170 -#: ../../mod/settings.php:85 ../../mod/admin.php:1065 ../../mod/admin.php:1286 -#: ../../mod/newmember.php:22 -msgid "Settings" -msgstr "Setări" - -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Stabilire factor de magnificare pentru Straturi Pământ" +#: ../../object/Item.php:680 ../../mod/content.php:712 +msgid "Italic" +msgstr "Italic" -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Afişare/ascundere casete din coloana din dreapta:" +#: ../../object/Item.php:681 ../../mod/content.php:713 +msgid "Underline" +msgstr "Subliniat" -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Aliniere" +#: ../../object/Item.php:682 ../../mod/content.php:714 +msgid "Quote" +msgstr "Citat" -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Stânga" +#: ../../object/Item.php:683 ../../mod/content.php:715 +msgid "Code" +msgstr "Code" -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Centrat" +#: ../../object/Item.php:684 ../../mod/content.php:716 +msgid "Image" +msgstr "Imagine" -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Dimensiune font postări" +#: ../../object/Item.php:685 ../../mod/content.php:717 +msgid "Link" +msgstr "Link" -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Dimensiune font zone text" +#: ../../object/Item.php:686 ../../mod/content.php:718 +msgid "Video" +msgstr "Video" -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Stabilire schemă de culori" +#: ../../object/Item.php:687 ../../mod/editpost.php:145 +#: ../../mod/photos.php:1564 ../../mod/photos.php:1608 +#: ../../mod/photos.php:1696 ../../mod/content.php:719 +#: ../../include/conversation.php:1126 +msgid "Preview" +msgstr "Previzualizare" -#: ../../index.php:203 ../../mod/apps.php:7 +#: ../../index.php:205 ../../mod/apps.php:7 msgid "You must be logged in to use addons. " msgstr "Tu trebuie să vă autentificați pentru a folosi suplimentele." -#: ../../index.php:247 ../../mod/help.php:90 +#: ../../index.php:249 ../../mod/help.php:90 msgid "Not Found" msgstr "Negăsit" -#: ../../index.php:250 ../../mod/help.php:93 +#: ../../index.php:252 ../../mod/help.php:93 msgid "Page not found." msgstr "Pagină negăsită." -#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19 +#: ../../index.php:361 ../../mod/profperm.php:19 ../../mod/group.php:72 msgid "Permission denied" msgstr "Permisiune refuzată" -#: ../../index.php:360 ../../include/items.php:4550 ../../mod/attach.php:33 +#: ../../index.php:362 ../../mod/fsuggest.php:78 ../../mod/files.php:170 +#: ../../mod/notifications.php:66 ../../mod/message.php:38 +#: ../../mod/message.php:174 ../../mod/editpost.php:10 +#: ../../mod/dfrn_confirm.php:55 ../../mod/events.php:140 #: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 #: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 -#: ../../mod/group.php:19 ../../mod/delegate.php:6 -#: ../../mod/notifications.php:66 ../../mod/settings.php:102 -#: ../../mod/settings.php:593 ../../mod/settings.php:598 -#: ../../mod/contacts.php:249 ../../mod/wall_attach.php:55 -#: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10 -#: ../../mod/regmod.php:109 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/suggest.php:56 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78 -#: ../../mod/viewcontacts.php:22 ../../mod/wall_upload.php:66 -#: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134 -#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23 -#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140 -#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174 +#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/photos.php:134 ../../mod/photos.php:1050 +#: ../../mod/register.php:42 ../../mod/attach.php:33 +#: ../../mod/contacts.php:249 ../../mod/follow.php:9 ../../mod/uimport.php:23 +#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101 +#: ../../mod/settings.php:102 ../../mod/settings.php:593 +#: ../../mod/settings.php:598 ../../mod/display.php:455 #: ../../mod/profiles.php:148 ../../mod/profiles.php:577 -#: ../../mod/install.php:151 ../../mod/crepair.php:117 ../../mod/poke.php:135 -#: ../../mod/display.php:455 ../../mod/dfrn_confirm.php:55 -#: ../../mod/item.php:148 ../../mod/item.php:164 +#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56 +#: ../../mod/manage.php:96 ../../mod/delegate.php:12 +#: ../../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/allfriends.php:9 +#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:110 +#: ../../mod/item.php:149 ../../mod/item.php:165 ../../mod/mood.php:114 +#: ../../mod/network.php:4 ../../mod/crepair.php:119 +#: ../../include/items.php:4575 msgid "Permission denied." msgstr "Permisiune refuzată." -#: ../../index.php:419 +#: ../../index.php:421 msgid "toggle mobile" msgstr "comutare mobil" -#: ../../boot.php:719 -msgid "Delete this item?" -msgstr "Ștergeți acest element?" +#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41 +#: ../../mod/update_community.php:18 ../../mod/update_network.php:25 +#: ../../mod/update_display.php:22 +msgid "[Embedded content - reload page to view]" +msgstr "[Conţinut încastrat - reîncărcaţi pagina pentru a vizualiza]" -#: ../../boot.php:720 ../../object/Item.php:361 ../../object/Item.php:677 -#: ../../mod/photos.php:1562 ../../mod/photos.php:1606 -#: ../../mod/photos.php:1694 ../../mod/content.php:709 -msgid "Comment" -msgstr "Comentariu" +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +#: ../../mod/dfrn_confirm.php:120 ../../mod/crepair.php:133 +msgid "Contact not found." +msgstr "Contact negăsit." -#: ../../boot.php:721 ../../include/contact_widgets.php:205 -#: ../../object/Item.php:390 ../../mod/content.php:606 -msgid "show more" -msgstr "mai mult" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Sugestia de prietenie a fost trimisă." -#: ../../boot.php:722 -msgid "show fewer" -msgstr "afișare mai puține" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Sugeraţi Prieteni" -#: ../../boot.php:1042 ../../boot.php:1073 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "Update %s failed. See error logs." -msgstr "Actualizarea %s a eșuat. Consultaţi jurnalele de eroare." - -#: ../../boot.php:1194 -msgid "Create a New Account" -msgstr "Creaţi un Cont Nou" +msgid "Suggest a friend for %s" +msgstr "Sugeraţi un prieten pentru %s" -#: ../../boot.php:1195 ../../include/nav.php:109 ../../mod/register.php:266 -msgid "Register" -msgstr "Înregistrare" +#: ../../mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Această introducere a fost deja acceptată" -#: ../../boot.php:1219 ../../include/nav.php:73 -msgid "Logout" -msgstr "Deconectare" +#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Locaţia profilului nu este validă sau nu conţine informaţii de profil." -#: ../../boot.php:1220 ../../include/nav.php:92 -msgid "Login" -msgstr "Login" +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Atenţie: locaţia profilului nu are un nume de deţinător identificabil." -#: ../../boot.php:1222 -msgid "Nickname or Email address: " -msgstr "Pseudonimul sau Adresa de email:" +#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Atenţie: locaţia profilului nu are fotografie de profil." -#: ../../boot.php:1223 -msgid "Password: " -msgstr "Parola:" +#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d parametru necesar nu a fost găsit în locaţia specificată" +msgstr[1] "%d parametrii necesari nu au fost găsiţi în locaţia specificată" +msgstr[2] "%d de parametrii necesari nu au fost găsiţi în locaţia specificată" -#: ../../boot.php:1224 -msgid "Remember me" -msgstr "Reține autentificarea" +#: ../../mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Prezentare completă." -#: ../../boot.php:1227 -msgid "Or login using OpenID: " -msgstr "Sau conectaţi-vă utilizând OpenID:" +#: ../../mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Eroare de protocol nerecuperabilă." -#: ../../boot.php:1233 -msgid "Forgot your password?" -msgstr "Ați uitat parola?" +#: ../../mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profil nedisponibil." -#: ../../boot.php:1234 ../../mod/lostpass.php:109 -msgid "Password Reset" -msgstr "Resetare Parolă" +#: ../../mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s a primit, pentru azi, prea multe solicitări de conectare." -#: ../../boot.php:1236 -msgid "Website Terms of Service" -msgstr "Condiții de Utilizare Site Web" +#: ../../mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Au fost invocate măsuri de protecţie anti-spam." -#: ../../boot.php:1237 -msgid "terms of service" -msgstr "condiții de utilizare" +#: ../../mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Prietenii sunt rugaţi să reîncerce peste 24 de ore." -#: ../../boot.php:1239 -msgid "Website Privacy Policy" -msgstr "Politica de Confidențialitate Site Web" +#: ../../mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Invalid locator" -#: ../../boot.php:1240 -msgid "privacy policy" -msgstr "politica de confidențialitate" +#: ../../mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Adresă mail invalidă." -#: ../../boot.php:1373 -msgid "Requested account is not available." -msgstr "Contul solicitat nu este disponibil." +#: ../../mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "Acest cont nu a fost configurat pentru email. Cererea a eşuat." -#: ../../boot.php:1412 ../../mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "Profilul solicitat nu este disponibil." +#: ../../mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Imposibil să vă soluţionăm numele pentru locaţia sugerată." -#: ../../boot.php:1455 ../../boot.php:1589 -#: ../../include/profile_advanced.php:84 -msgid "Edit profile" -msgstr "Editare profil" +#: ../../mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Aţi fost deja prezentat aici" -#: ../../boot.php:1522 ../../include/contact_widgets.php:10 -#: ../../mod/suggest.php:88 ../../mod/match.php:58 -msgid "Connect" -msgstr "Conectare" +#: ../../mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Se pare că sunteţi deja prieten cu %s." -#: ../../boot.php:1554 -msgid "Message" -msgstr "Mesaj" +#: ../../mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Profil URL invalid." -#: ../../boot.php:1560 ../../include/nav.php:173 -msgid "Profiles" -msgstr "Profile" +#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "Profil URL invalid." -#: ../../boot.php:1560 -msgid "Manage/edit profiles" -msgstr "Gestionare/editare profile" +#: ../../mod/dfrn_request.php:576 ../../mod/contacts.php:183 +msgid "Failed to update contact record." +msgstr "Actualizarea datelor de contact a eşuat." -#: ../../boot.php:1565 ../../boot.php:1591 ../../mod/profiles.php:763 -msgid "Change profile photo" -msgstr "Modificați Fotografia de Profil" +#: ../../mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "Prezentarea dumneavoastră a fost trimisă." -#: ../../boot.php:1566 ../../mod/profiles.php:764 -msgid "Create New Profile" -msgstr "Creați Profil Nou" +#: ../../mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Vă rugăm să vă autentificați pentru a confirma prezentarea." -#: ../../boot.php:1576 ../../mod/profiles.php:775 -msgid "Profile Image" -msgstr "Imagine profil" +#: ../../mod/dfrn_request.php:664 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Autentificat curent cu identitate eronată. Vă rugăm să vă autentificați pentru acest profil." -#: ../../boot.php:1579 ../../mod/profiles.php:777 -msgid "visible to everybody" -msgstr "vizibil pentru toata lumea" +#: ../../mod/dfrn_request.php:675 +msgid "Hide this contact" +msgstr "Ascunde acest contact" -#: ../../boot.php:1580 ../../mod/profiles.php:778 -msgid "Edit visibility" -msgstr "Editare vizibilitate" +#: ../../mod/dfrn_request.php:678 +#, php-format +msgid "Welcome home %s." +msgstr "Bine ai venit %s." -#: ../../boot.php:1602 ../../include/event.php:40 -#: ../../include/bb2diaspora.php:156 ../../mod/events.php:471 -#: ../../mod/directory.php:136 -msgid "Location:" -msgstr "Locaţie:" +#: ../../mod/dfrn_request.php:679 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Vă rugăm să vă confirmaţi solicitarea de introducere/conectare la %s." -#: ../../boot.php:1604 ../../include/profile_advanced.php:17 -#: ../../mod/directory.php:138 -msgid "Gender:" -msgstr "Sex:" +#: ../../mod/dfrn_request.php:680 +msgid "Confirm" +msgstr "Confirm" -#: ../../boot.php:1607 ../../include/profile_advanced.php:37 -#: ../../mod/directory.php:140 -msgid "Status:" -msgstr "Status:" +#: ../../mod/dfrn_request.php:721 ../../mod/dfrn_confirm.php:752 +#: ../../include/items.php:3881 +msgid "[Name Withheld]" +msgstr "[Nume Reţinut]" -#: ../../boot.php:1609 ../../include/profile_advanced.php:48 -#: ../../mod/directory.php:142 -msgid "Homepage:" -msgstr "Homepage:" +#: ../../mod/dfrn_request.php:766 ../../mod/photos.php:920 +#: ../../mod/videos.php:115 ../../mod/search.php:89 ../../mod/display.php:180 +#: ../../mod/community.php:18 ../../mod/viewcontacts.php:17 +#: ../../mod/directory.php:33 +msgid "Public access denied." +msgstr "Acces public refuzat." -#: ../../boot.php:1657 -msgid "Network:" -msgstr "Reţea:" +#: ../../mod/dfrn_request.php:808 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Vă rugăm să vă introduceţi \"Adresa de Identitate\" din una din următoarele reţele de socializare acceptate:" -#: ../../boot.php:1687 ../../boot.php:1773 -msgid "g A l F d" -msgstr "g A l F d" +#: ../../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 "Dacă nu sunteţi încă un membru al reţelei online de socializare gratuite, urmați acest link pentru a găsi un site public Friendica şi alăturați-vă nouă, chiar astăzi." -#: ../../boot.php:1688 ../../boot.php:1774 -msgid "F d" -msgstr "F d" +#: ../../mod/dfrn_request.php:831 +msgid "Friend/Connection Request" +msgstr "Solicitare Prietenie/Conectare" -#: ../../boot.php:1733 ../../boot.php:1814 -msgid "[today]" -msgstr "[azi]" +#: ../../mod/dfrn_request.php:832 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Exemple: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" -#: ../../boot.php:1745 -msgid "Birthday Reminders" -msgstr "Memento Zile naştere " +#: ../../mod/dfrn_request.php:833 +msgid "Please answer the following:" +msgstr "Vă rugăm să răspundeţi la următoarele:" -#: ../../boot.php:1746 -msgid "Birthdays this week:" -msgstr "Zi;e Naştere această săptămînă:" +#: ../../mod/dfrn_request.php:834 +#, php-format +msgid "Does %s know you?" +msgstr "%s vă cunoaşte?" -#: ../../boot.php:1807 -msgid "[No description]" -msgstr "[Fără descriere]" +#: ../../mod/dfrn_request.php:834 ../../mod/api.php:106 +#: ../../mod/register.php:234 ../../mod/settings.php:1007 +#: ../../mod/settings.php:1013 ../../mod/settings.php:1021 +#: ../../mod/settings.php:1025 ../../mod/settings.php:1030 +#: ../../mod/settings.php:1036 ../../mod/settings.php:1042 +#: ../../mod/settings.php:1048 ../../mod/settings.php:1078 +#: ../../mod/settings.php:1079 ../../mod/settings.php:1080 +#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 +#: ../../mod/profiles.php:620 ../../mod/profiles.php:624 +msgid "No" +msgstr "NU" -#: ../../boot.php:1825 -msgid "Event Reminders" -msgstr "Memento Eveniment" +#: ../../mod/dfrn_request.php:834 ../../mod/message.php:209 +#: ../../mod/api.php:105 ../../mod/register.php:233 ../../mod/contacts.php:332 +#: ../../mod/settings.php:1007 ../../mod/settings.php:1013 +#: ../../mod/settings.php:1021 ../../mod/settings.php:1025 +#: ../../mod/settings.php:1030 ../../mod/settings.php:1036 +#: ../../mod/settings.php:1042 ../../mod/settings.php:1048 +#: ../../mod/settings.php:1078 ../../mod/settings.php:1079 +#: ../../mod/settings.php:1080 ../../mod/settings.php:1081 +#: ../../mod/settings.php:1082 ../../mod/profiles.php:620 +#: ../../mod/profiles.php:623 ../../mod/suggest.php:29 +#: ../../include/items.php:4420 +msgid "Yes" +msgstr "Da" -#: ../../boot.php:1826 -msgid "Events this week:" -msgstr "Evenimente în această săptămână:" +#: ../../mod/dfrn_request.php:838 +msgid "Add a personal note:" +msgstr "Adaugă o notă personală:" -#: ../../boot.php:2063 ../../include/nav.php:76 -msgid "Status" -msgstr "Status" +#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../boot.php:2066 -msgid "Status Messages and Posts" -msgstr "Status Mesaje şi Postări" +#: ../../mod/dfrn_request.php:841 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Reţea Socială Web Centralizată" -#: ../../boot.php:2073 -msgid "Profile Details" -msgstr "Detalii Profil" +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:733 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../boot.php:2080 ../../mod/photos.php:52 -msgid "Photo Albums" -msgstr "Albume Photo " +#: ../../mod/dfrn_request.php:843 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "- vă rugăm să nu folosiţi acest formular. În schimb, introduceţi %s în bara dvs. de căutare Diaspora." -#: ../../boot.php:2084 ../../boot.php:2087 ../../include/nav.php:79 -msgid "Videos" -msgstr "Clipuri video" +#: ../../mod/dfrn_request.php:844 +msgid "Your Identity Address:" +msgstr "Adresa dvs. Identitate " -#: ../../boot.php:2097 -msgid "Events and Calendar" -msgstr "Evenimente şi Calendar" +#: ../../mod/dfrn_request.php:847 +msgid "Submit Request" +msgstr "Trimiteţi Solicitarea" -#: ../../boot.php:2101 ../../mod/notes.php:44 -msgid "Personal Notes" -msgstr "Note Personale" +#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212 +#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../mod/photos.php:203 +#: ../../mod/photos.php:292 ../../mod/contacts.php:335 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../mod/settings.php:612 +#: ../../mod/settings.php:638 ../../mod/suggest.php:32 +#: ../../include/items.php:4423 ../../include/conversation.php:1129 +msgid "Cancel" +msgstr "Anulează" -#: ../../boot.php:2104 -msgid "Only You Can See This" -msgstr "Numai Dvs. Puteţi Vizualiza" +#: ../../mod/files.php:156 ../../mod/videos.php:301 +#: ../../include/text.php:1402 +msgid "View Video" +msgstr "Vizualizați Clipul Video" -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Caracteristici Generale" +#: ../../mod/profile.php:21 ../../boot.php:1432 +msgid "Requested profile is not available." +msgstr "Profilul solicitat nu este disponibil." -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Profile Multiple" +#: ../../mod/profile.php:155 ../../mod/display.php:288 +msgid "Access to this profile has been restricted." +msgstr "Accesul la acest profil a fost restricţionat." -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Capacitatea de a crea profile multiple" +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Sfaturi pentru Membrii Noi" -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Caracteristici Compoziţie Postare" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Datele de identificare solicitate, sunt invalide." -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Editor Text Îmbogățit" +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "Renunțați" -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Activare editor text îmbogățit" +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:210 ../../mod/contacts.php:443 +#: ../../mod/contacts.php:497 ../../mod/contacts.php:707 +msgid "Ignore" +msgstr "Ignoră" -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Previzualizare Postare" +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "System" -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Permiteți previzualizarea postărilor şi comentariilor înaintea publicării lor" +#: ../../mod/notifications.php:83 ../../include/nav.php:143 +msgid "Network" +msgstr "Reţea" -#: ../../include/features.php:33 -msgid "Auto-mention Forums" -msgstr "Auto-menţionare Forumuri" +#: ../../mod/notifications.php:88 ../../mod/network.php:365 +msgid "Personal" +msgstr "Personal" -#: ../../include/features.php:33 -msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "Adăugaţi/eliminaţi mențiunea când o pagină de forum este selectată/deselectată în fereastra ACL." +#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:123 +#: ../../include/nav.php:105 ../../include/nav.php:146 +msgid "Home" +msgstr "Home" -#: ../../include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Aplicaţii widget de Rețea în Bara Laterală" +#: ../../mod/notifications.php:98 ../../include/nav.php:152 +msgid "Introductions" +msgstr "Introduceri" -#: ../../include/features.php:39 -msgid "Search by Date" -msgstr "Căutare după Dată" +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "Afişare Solicitări Ignorate" -#: ../../include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Abilitatea de a selecta postări după intervalele de timp" +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "Ascundere Solicitări Ignorate" -#: ../../include/features.php:40 -msgid "Group Filter" -msgstr "Filtru Grup" +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " +msgstr "Tip Notificări:" -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Permiteți aplicației widget să afișeze postări din Rețea, numai din grupul selectat" +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "Sugestie Prietenie" -#: ../../include/features.php:41 -msgid "Network Filter" -msgstr "Filtru Reţea" +#: ../../mod/notifications.php:152 +#, php-format +msgid "suggested by %s" +msgstr "sugerat de către %s" -#: ../../include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Permiteți aplicației widget să afișeze postări din Rețea, numai din rețeaua selectată" +#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 +#: ../../mod/contacts.php:503 +msgid "Hide this contact from others" +msgstr "Ascunde acest contact pentru alţii" -#: ../../include/features.php:42 ../../mod/network.php:188 -#: ../../mod/search.php:30 -msgid "Saved Searches" -msgstr "Căutări Salvate" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" +msgstr "Publicaţi prietenului o nouă activitate" -#: ../../include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Salvați termenii de căutare pentru reutilizare" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" +msgstr "dacă i posibil" -#: ../../include/features.php:47 -msgid "Network Tabs" -msgstr "File Reţea" +#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 +#: ../../mod/admin.php:968 +msgid "Approve" +msgstr "Aprobă" -#: ../../include/features.php:48 -msgid "Network Personal Tab" -msgstr "Filă Personală de Reţea" +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "Pretinde că vă cunoaște:" -#: ../../include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Permiteți filei să afişeze numai postările Reţelei cu care ați interacţionat" +#: ../../mod/notifications.php:181 +msgid "yes" +msgstr "da" -#: ../../include/features.php:49 -msgid "Network New Tab" -msgstr "Filă Nouă de Reţea" - -#: ../../include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Permiteți filei să afişeze numai postările noi din Reţea (din ultimele 12 ore)" - -#: ../../include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "Filă Legături Distribuite în Rețea" +#: ../../mod/notifications.php:181 +msgid "no" +msgstr "nu" -#: ../../include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Permiteți filei să afişeze numai postările din Reţea ce conțin legături" +#: ../../mod/notifications.php:188 +msgid "Approve as: " +msgstr "Aprobă ca:" -#: ../../include/features.php:55 -msgid "Post/Comment Tools" -msgstr "Instrumente Postare/Comentariu" +#: ../../mod/notifications.php:189 +msgid "Friend" +msgstr "Prieten" -#: ../../include/features.php:56 -msgid "Multiple Deletion" -msgstr "Ştergere Multiplă" +#: ../../mod/notifications.php:190 +msgid "Sharer" +msgstr "Distribuitor" -#: ../../include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Selectaţi şi ştergeţi postări/comentarii multiple simultan" +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "Fan/Admirator" -#: ../../include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Editare Postări Trimise" +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "Prieten/Solicitare de Conectare" -#: ../../include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "Editarea şi corectarea postărilor şi comentariilor după postarea lor" +#: ../../mod/notifications.php:196 +msgid "New Follower" +msgstr "Susţinător Nou" -#: ../../include/features.php:58 -msgid "Tagging" -msgstr "Etichetare" +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "Fără prezentări." -#: ../../include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Capacitatea de a eticheta postările existente" +#: ../../mod/notifications.php:220 ../../include/nav.php:153 +msgid "Notifications" +msgstr "Notificări" -#: ../../include/features.php:59 -msgid "Post Categories" -msgstr "Categorii Postări" +#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 +#: ../../mod/notifications.php:478 +#, php-format +msgid "%s liked %s's post" +msgstr "%s a apreciat ceea a publicat %s" -#: ../../include/features.php:59 -msgid "Add categories to your posts" -msgstr "Adăugaţi categorii la postările dvs." +#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 +#: ../../mod/notifications.php:488 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s a nu a apreciat ceea a publicat %s" -#: ../../include/features.php:60 ../../include/contact_widgets.php:104 -msgid "Saved Folders" -msgstr "Dosare Salvate" +#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 +#: ../../mod/notifications.php:503 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s este acum prieten cu %s" -#: ../../include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Capacitatea de a atribui postări în dosare" +#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 +#, php-format +msgid "%s created a new post" +msgstr "%s a creat o nouă postare" -#: ../../include/features.php:61 -msgid "Dislike Posts" -msgstr "Respingere Postări" +#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 +#: ../../mod/notifications.php:513 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s a comentat la articolul postat de %s" -#: ../../include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Capacitatea de a marca postări/comentarii ca fiind neplăcute" +#: ../../mod/notifications.php:306 +msgid "No more network notifications." +msgstr "Nu mai există notificări de reţea." -#: ../../include/features.php:62 -msgid "Star Posts" -msgstr "Postări cu Steluță" +#: ../../mod/notifications.php:310 +msgid "Network Notifications" +msgstr "Notificări de Reţea" -#: ../../include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "Capacitatea de a marca posturile speciale cu o stea ca şi indicator" +#: ../../mod/notifications.php:336 ../../mod/notify.php:75 +msgid "No more system notifications." +msgstr "Nu mai există notificări de sistem." -#: ../../include/features.php:63 -msgid "Mute Post Notifications" -msgstr "" +#: ../../mod/notifications.php:340 ../../mod/notify.php:79 +msgid "System Notifications" +msgstr "Notificări de Sistem" -#: ../../include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "" +#: ../../mod/notifications.php:435 +msgid "No more personal notifications." +msgstr "Nici o notificare personală" -#: ../../include/items.php:2090 ../../include/datetime.php:472 -#, php-format -msgid "%s's birthday" -msgstr "%s's zi de naştere" +#: ../../mod/notifications.php:439 +msgid "Personal Notifications" +msgstr "Notificări personale" -#: ../../include/items.php:2091 ../../include/datetime.php:473 -#, php-format -msgid "Happy Birthday %s" -msgstr "La mulţi ani %s" +#: ../../mod/notifications.php:520 +msgid "No more home notifications." +msgstr "Nu mai există notificări de origine." -#: ../../include/items.php:3856 ../../mod/dfrn_request.php:721 -#: ../../mod/dfrn_confirm.php:752 -msgid "[Name Withheld]" -msgstr "[Nume Reţinut]" +#: ../../mod/notifications.php:524 +msgid "Home Notifications" +msgstr "Notificări de Origine" -#: ../../include/items.php:4354 ../../mod/admin.php:166 -#: ../../mod/admin.php:1013 ../../mod/admin.php:1226 ../../mod/viewsrc.php:15 -#: ../../mod/notice.php:15 ../../mod/display.php:70 ../../mod/display.php:240 -#: ../../mod/display.php:459 -msgid "Item not found." -msgstr "Element negăsit." +#: ../../mod/like.php:149 ../../mod/tagger.php:62 ../../mod/subthread.php:87 +#: ../../view/theme/diabook/theme.php:471 ../../include/text.php:1965 +#: ../../include/diaspora.php:1919 ../../include/conversation.php:126 +#: ../../include/conversation.php:254 +msgid "photo" +msgstr "photo" -#: ../../include/items.php:4393 -msgid "Do you really want to delete this item?" -msgstr "Sigur doriți să ștergeți acest element?" +#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/tagger.php:62 +#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1919 +#: ../../include/conversation.php:121 ../../include/conversation.php:130 +#: ../../include/conversation.php:249 ../../include/conversation.php:258 +msgid "status" +msgstr "status" -#: ../../include/items.php:4395 ../../mod/settings.php:1007 -#: ../../mod/settings.php:1013 ../../mod/settings.php:1021 -#: ../../mod/settings.php:1025 ../../mod/settings.php:1030 -#: ../../mod/settings.php:1036 ../../mod/settings.php:1042 -#: ../../mod/settings.php:1048 ../../mod/settings.php:1078 -#: ../../mod/settings.php:1079 ../../mod/settings.php:1080 -#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 -#: ../../mod/contacts.php:332 ../../mod/register.php:230 -#: ../../mod/dfrn_request.php:834 ../../mod/api.php:105 -#: ../../mod/suggest.php:29 ../../mod/message.php:209 -#: ../../mod/profiles.php:620 ../../mod/profiles.php:623 -msgid "Yes" -msgstr "Da" +#: ../../mod/like.php:166 ../../view/theme/diabook/theme.php:480 +#: ../../include/diaspora.php:1935 ../../include/conversation.php:137 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s apreciază %3$s lui %2$s" -#: ../../include/items.php:4398 ../../include/conversation.php:1129 -#: ../../mod/settings.php:612 ../../mod/settings.php:638 -#: ../../mod/contacts.php:335 ../../mod/editpost.php:148 -#: ../../mod/dfrn_request.php:848 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 ../../mod/message.php:212 -msgid "Cancel" -msgstr "Anulează" +#: ../../mod/like.php:168 ../../include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s nu apreciază %3$s lui %2$s" -#: ../../include/items.php:4616 -msgid "Archives" -msgstr "Arhive" +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Eroare de protocol OpenID. Nici-un ID returnat." -#: ../../include/group.php:25 +#: ../../mod/openid.php:53 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 grup şters cu acest nume a fost restabilit. Permisiunile existente ale elementului, potfi aplicate acestui grup şi oricăror viitori membrii. Dacă aceasta nu este ceea ați intenționat să faceți, vă rugăm să creaţi un alt grup cu un un nume diferit." +"Account not found and OpenID registration is not permitted on this site." +msgstr "Contul nu a fost găsit iar înregistrările OpenID nu sunt permise pe acest site." -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Confidenţialitatea implicită a grupului pentru noi contacte" +#: ../../mod/openid.php:93 ../../include/auth.php:112 +#: ../../include/auth.php:175 +msgid "Login failed." +msgstr "Eşec la conectare" -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Toată lumea" +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Text (bbcode) sursă:" -#: ../../include/group.php:249 -msgid "edit" -msgstr "editare" +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Text (Diaspora) sursă pentru a-l converti în BBcode:" -#: ../../include/group.php:270 ../../mod/newmember.php:66 -msgid "Groups" -msgstr "Groupuri" +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Intrare Sursă:" -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Editare grup" +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (raw HTML): " -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Creați un nou grup" +#: ../../mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html: " -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Contacte ce nu se află în orice grup" +#: ../../mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " -#: ../../include/group.php:275 ../../mod/network.php:189 -msgid "add" -msgstr "add" +#: ../../mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " -#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926 -#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955 -#: ../../include/Photo.php:911 ../../include/Photo.php:926 -#: ../../include/Photo.php:933 ../../include/Photo.php:955 -#: ../../include/message.php:144 ../../mod/wall_upload.php:169 -#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 -#: ../../mod/item.php:463 -msgid "Wall Photos" -msgstr "Fotografii de Perete" +#: ../../mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " -#: ../../include/dba.php:51 ../../include/dba_pdo.php:72 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Nu se pot localiza informațiile DNS pentru serverul de bază de date '%s'" +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Add Contact Nou" +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Introduceţi adresa sau locaţia web" +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Intrare Sursă (Format Diaspora):" -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Exemplu: bob@example.com, http://example.com/barbara" - -#: ../../include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitație disponibilă" -msgstr[1] "%d invitații disponibile" -msgstr[2] "%d de invitații disponibile" +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " -#: ../../include/contact_widgets.php:30 -msgid "Find People" -msgstr "Căutați Persoane" +#: ../../mod/admin.php:57 +msgid "Theme settings updated." +msgstr "Configurările temei au fost actualizate." -#: ../../include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Introduceţi numele sau interesul" +#: ../../mod/admin.php:104 ../../mod/admin.php:589 +msgid "Site" +msgstr "Site" -#: ../../include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Conectare/Urmărire" +#: ../../mod/admin.php:105 ../../mod/admin.php:961 ../../mod/admin.php:976 +msgid "Users" +msgstr "Utilizatori" -#: ../../include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exemple: Robert Morgenstein, Pescuit" +#: ../../mod/admin.php:106 ../../mod/admin.php:1065 ../../mod/admin.php:1118 +#: ../../mod/settings.php:57 +msgid "Plugins" +msgstr "Pluginuri" -#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:700 -#: ../../mod/directory.php:63 -msgid "Find" -msgstr "Căutare" +#: ../../mod/admin.php:107 ../../mod/admin.php:1286 ../../mod/admin.php:1320 +msgid "Themes" +msgstr "Teme" -#: ../../include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Profil Aleatoriu" +#: ../../mod/admin.php:108 +msgid "DB updates" +msgstr "Actualizări Bază de Date" -#: ../../include/contact_widgets.php:71 -msgid "Networks" -msgstr "Rețele" +#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1407 +msgid "Logs" +msgstr "Jurnale" -#: ../../include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Toate Reţelele" +#: ../../mod/admin.php:128 ../../include/nav.php:182 +msgid "Admin" +msgstr "Admin" -#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 -msgid "Everything" -msgstr "Totul" +#: ../../mod/admin.php:129 +msgid "Plugin Features" +msgstr "Caracteristici Modul" -#: ../../include/contact_widgets.php:136 -msgid "Categories" -msgstr "Categorii" +#: ../../mod/admin.php:131 +msgid "User registrations waiting for confirmation" +msgstr "Înregistrări de utilizatori, aşteaptă confirmarea" -#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:427 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contact în comun" -msgstr[1] "%d contacte în comun" -msgstr[2] "%d de contacte în comun" +#: ../../mod/admin.php:166 ../../mod/admin.php:1015 ../../mod/admin.php:1228 +#: ../../mod/notice.php:15 ../../mod/display.php:70 ../../mod/display.php:240 +#: ../../mod/display.php:459 ../../mod/viewsrc.php:15 +#: ../../include/items.php:4379 +msgid "Item not found." +msgstr "Element negăsit." -#: ../../include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Notificare Friendica" +#: ../../mod/admin.php:190 ../../mod/admin.php:915 +msgid "Normal Account" +msgstr "Cont normal" -#: ../../include/enotify.php:21 -msgid "Thank You," -msgstr "Vă mulțumim," +#: ../../mod/admin.php:191 ../../mod/admin.php:916 +msgid "Soapbox Account" +msgstr "Cont Soapbox" -#: ../../include/enotify.php:23 -#, php-format -msgid "%s Administrator" -msgstr "%s Administrator" +#: ../../mod/admin.php:192 ../../mod/admin.php:917 +msgid "Community/Celebrity Account" +msgstr "Cont Comunitate/Celebritate" -#: ../../include/enotify.php:30 ../../include/delivery.php:467 -#: ../../include/notifier.php:784 -msgid "noreply" -msgstr "nu-răspundeţi" +#: ../../mod/admin.php:193 ../../mod/admin.php:918 +msgid "Automatic Friend Account" +msgstr "Cont Prieten Automat" -#: ../../include/enotify.php:55 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../mod/admin.php:194 +msgid "Blog Account" +msgstr "Cont Blog" -#: ../../include/enotify.php:59 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notificare] Mail nou primit la %s" +#: ../../mod/admin.php:195 +msgid "Private Forum" +msgstr "Forum Privat" -#: ../../include/enotify.php:61 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s v-a trimis un nou mesaj privat la %2$s." +#: ../../mod/admin.php:214 +msgid "Message queues" +msgstr "Șiruri de mesaje" -#: ../../include/enotify.php:62 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s v-a trimis %2$s" +#: ../../mod/admin.php:219 ../../mod/admin.php:588 ../../mod/admin.php:960 +#: ../../mod/admin.php:1064 ../../mod/admin.php:1117 ../../mod/admin.php:1285 +#: ../../mod/admin.php:1319 ../../mod/admin.php:1406 +msgid "Administration" +msgstr "Administrare" -#: ../../include/enotify.php:62 -msgid "a private message" -msgstr "un mesaj privat" +#: ../../mod/admin.php:220 +msgid "Summary" +msgstr "Sumar" -#: ../../include/enotify.php:63 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la mesaje private." +#: ../../mod/admin.php:222 +msgid "Registered users" +msgstr "Utilizatori înregistraţi" -#: ../../include/enotify.php:115 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "%1$s a comentat la [url=%2$s]a %3$s[/url]" +#: ../../mod/admin.php:224 +msgid "Pending registrations" +msgstr "Administrare" -#: ../../include/enotify.php:122 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "%1$s a comentat la [url=%2$s]%4$s postat de %3$s[/url]" +#: ../../mod/admin.php:225 +msgid "Version" +msgstr "Versiune" -#: ../../include/enotify.php:130 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "%1$s a comentat la [url=%2$s]%3$s dvs.[/url]" +#: ../../mod/admin.php:229 +msgid "Active plugins" +msgstr "Module active" -#: ../../include/enotify.php:140 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Notificare] Comentariu la conversaţia #%1$d postată de %2$s" +#: ../../mod/admin.php:252 +msgid "Can not parse base url. Must have at least ://" +msgstr "Nu se poate analiza URL-ul de bază. Trebuie să aibă minim ://" -#: ../../include/enotify.php:141 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s a comentat la un element/conversaţie pe care o urmăriți." +#: ../../mod/admin.php:496 +msgid "Site settings updated." +msgstr "Configurările site-ului au fost actualizate." -#: ../../include/enotify.php:144 ../../include/enotify.php:159 -#: ../../include/enotify.php:172 ../../include/enotify.php:185 -#: ../../include/enotify.php:203 ../../include/enotify.php:216 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la conversație." +#: ../../mod/admin.php:525 ../../mod/settings.php:825 +msgid "No special theme for mobile devices" +msgstr "Nici-o temă specială pentru dispozitive mobile" -#: ../../include/enotify.php:151 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notificare] %s a postat pe peretele dvs. de profil" +#: ../../mod/admin.php:542 ../../mod/contacts.php:414 +msgid "Never" +msgstr "Niciodată" -#: ../../include/enotify.php:153 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s a postat pe peretele dvs. de profil la %2$s" +#: ../../mod/admin.php:543 +msgid "At post arrival" +msgstr "La sosirea publicaţiei" -#: ../../include/enotify.php:155 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s a postat pe [url=%2$s]peretele dvs.[/url]" +#: ../../mod/admin.php:544 ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Frecvent" -#: ../../include/enotify.php:166 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notificare] %s v-a etichetat" +#: ../../mod/admin.php:545 ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Din oră în oră" -#: ../../include/enotify.php:167 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s v-a etichetat la %2$s" +#: ../../mod/admin.php:546 ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "De două ori pe zi" -#: ../../include/enotify.php:168 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]v-a etichetat[/url]." +#: ../../mod/admin.php:547 ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Zilnic" -#: ../../include/enotify.php:179 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica:Notificare] %s a distribuit o nouă postare" +#: ../../mod/admin.php:552 +msgid "Multi user instance" +msgstr "Instanţă utilizatori multipli" -#: ../../include/enotify.php:180 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s a distribuit o nouă postare la %2$s" +#: ../../mod/admin.php:575 +msgid "Closed" +msgstr "Inchis" -#: ../../include/enotify.php:181 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s] a distribuit o postare[/url]." +#: ../../mod/admin.php:576 +msgid "Requires approval" +msgstr "Necesită aprobarea" -#: ../../include/enotify.php:193 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notificare] %1$s v-a abordat" +#: ../../mod/admin.php:577 +msgid "Open" +msgstr "Deschide" -#: ../../include/enotify.php:194 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s v-a abordat la %2$s" +#: ../../mod/admin.php:581 +msgid "No SSL policy, links will track page SSL state" +msgstr "Nici-o politică SSL, legăturile vor urmări starea paginii SSL" -#: ../../include/enotify.php:195 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]v-a abordat[/url]." +#: ../../mod/admin.php:582 +msgid "Force all links to use SSL" +msgstr "Forţează toate legăturile să utilizeze SSL" -#: ../../include/enotify.php:210 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notificare] %s v-a etichetat postarea" +#: ../../mod/admin.php:583 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Certificat auto/semnat, folosește SSL numai pentru legăturile locate (nerecomandat)" -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$sv-a etichetat postarea la %2$s" +#: ../../mod/admin.php:590 ../../mod/admin.php:1119 ../../mod/admin.php:1321 +#: ../../mod/admin.php:1408 ../../mod/settings.php:611 +#: ../../mod/settings.php:721 ../../mod/settings.php:795 +#: ../../mod/settings.php:877 ../../mod/settings.php:1110 +msgid "Save Settings" +msgstr "Salvare Configurări" -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s a etichetat [url=%2$s]postarea dvs.[/url]" +#: ../../mod/admin.php:591 ../../mod/register.php:255 +msgid "Registration" +msgstr "Registratură" -#: ../../include/enotify.php:223 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notificare] Prezentare primită" +#: ../../mod/admin.php:592 +msgid "File upload" +msgstr "Fişier incărcat" -#: ../../include/enotify.php:224 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Aţi primit o prezentare de la '%1$s' at %2$s" +#: ../../mod/admin.php:593 +msgid "Policies" +msgstr "Politici" -#: ../../include/enotify.php:225 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Aţi primit [url=%1$s]o prezentare[/url] de la %2$s." +#: ../../mod/admin.php:594 +msgid "Advanced" +msgstr "Avansat" -#: ../../include/enotify.php:228 ../../include/enotify.php:270 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Le puteți vizita profilurile, online pe %s" +#: ../../mod/admin.php:595 +msgid "Performance" +msgstr "Performanţă" -#: ../../include/enotify.php:230 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge prezentarea." +#: ../../mod/admin.php:596 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Reaşezaţi - AVERTIZARE: funcţie avansată. Ar putea face acest server inaccesibil." -#: ../../include/enotify.php:238 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "" +#: ../../mod/admin.php:599 +msgid "Site name" +msgstr "Nume site" -#: ../../include/enotify.php:239 ../../include/enotify.php:240 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "" +#: ../../mod/admin.php:600 +msgid "Banner/Logo" +msgstr "Baner/Logo" -#: ../../include/enotify.php:246 -msgid "[Friendica:Notify] You have a new follower" -msgstr "" +#: ../../mod/admin.php:601 +msgid "Additional Info" +msgstr "Informaţii suplimentare" -#: ../../include/enotify.php:247 ../../include/enotify.php:248 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "" +#: ../../mod/admin.php:601 +msgid "" +"For public servers: you can add additional information here that will be " +"listed at dir.friendica.com/siteinfo." +msgstr "Pentru serverele publice: puteţi să adăugaţi aici informaţiile suplimentare ce vor fi afişate pe dir.friendica.com/siteinfo." -#: ../../include/enotify.php:261 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notificare] Ați primit o sugestie de prietenie" +#: ../../mod/admin.php:602 +msgid "System language" +msgstr "Limbă System l" -#: ../../include/enotify.php:262 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Ați primit o sugestie de prietenie de la '%1$s' la %2$s" +#: ../../mod/admin.php:603 +msgid "System theme" +msgstr "Temă System " -#: ../../include/enotify.php:263 -#, php-format +#: ../../mod/admin.php:603 msgid "" -"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "Aţi primit [url=%1$s]o sugestie de prietenie[/url] pentru %2$s de la %3$s." +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema implicită a sistemului - se poate supraregla prin profilele de utilizator - modificați configurările temei" -#: ../../include/enotify.php:268 -msgid "Name:" -msgstr "Nume:" +#: ../../mod/admin.php:604 +msgid "Mobile system theme" +msgstr "Temă sisteme mobile" -#: ../../include/enotify.php:269 -msgid "Photo:" -msgstr "Foto:" +#: ../../mod/admin.php:604 +msgid "Theme for mobile devices" +msgstr "Temă pentru dispozitivele mobile" -#: ../../include/enotify.php:272 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge sugestia." +#: ../../mod/admin.php:605 +msgid "SSL link policy" +msgstr "Politivi link SSL " -#: ../../include/enotify.php:280 ../../include/enotify.php:293 -msgid "[Friendica:Notify] Connection accepted" -msgstr "" +#: ../../mod/admin.php:605 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Determină dacă legăturile generate ar trebui forţate să utilizeze SSL" -#: ../../include/enotify.php:281 ../../include/enotify.php:294 -#, php-format -msgid "'%1$s' has acepted your connection request at %2$s" -msgstr "" +#: ../../mod/admin.php:606 +msgid "Old style 'Share'" +msgstr "Stilul vechi de 'Distribuiţi'" -#: ../../include/enotify.php:282 ../../include/enotify.php:295 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "" +#: ../../mod/admin.php:606 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Dezactivează elementul bbcode 'distribuiţi' pentru elementele repetitive." -#: ../../include/enotify.php:285 +#: ../../mod/admin.php:607 +msgid "Hide help entry from navigation menu" +msgstr "Ascunde elementele de ajutor, din meniul de navigare" + +#: ../../mod/admin.php:607 msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." -msgstr "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Ascunde intrările de meniu pentru paginile de Ajutor, din meniul de navigare. Îl puteţi accesa în continuare direct, apelând /ajutor." -#: ../../include/enotify.php:288 ../../include/enotify.php:302 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "" +#: ../../mod/admin.php:608 +msgid "Single user instance" +msgstr "Instanţă cu un singur utilizator" -#: ../../include/enotify.php:298 -#, php-format -msgid "" -"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " -"communication - such as private messaging and some profile interactions. If " -"this is a celebrity or community page, these settings were applied " -"automatically." -msgstr "" +#: ../../mod/admin.php:608 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Stabiliți această instanţă ca utilizator-multipli sau utilizator/unic, pentru utilizatorul respectiv" -#: ../../include/enotify.php:300 -#, php-format +#: ../../mod/admin.php:609 +msgid "Maximum image size" +msgstr "Maxim mărime imagine" + +#: ../../mod/admin.php:609 msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " -msgstr "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Dimensiunea maximă în octeţi, a imaginii încărcate. Implicit este 0, ceea ce înseamnă fără limite." -#: ../../include/enotify.php:313 -msgid "[Friendica System:Notify] registration request" -msgstr "" +#: ../../mod/admin.php:610 +msgid "Maximum image length" +msgstr "Dimensiunea maximă a imaginii" -#: ../../include/enotify.php:314 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "" +#: ../../mod/admin.php:610 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Dimensiunea maximă în pixeli a celei mai lungi laturi a imaginii încărcate. Implicit este -1, ceea ce înseamnă fără limite." -#: ../../include/enotify.php:315 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "" +#: ../../mod/admin.php:611 +msgid "JPEG image quality" +msgstr "Calitate imagine JPEG " -#: ../../include/enotify.php:318 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "" +#: ../../mod/admin.php:611 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Imaginile JPEG încărcate vor fi salvate cu această calitate stabilită [0-100]. Implicit este 100, ceea ce înseamnă calitate completă." -#: ../../include/enotify.php:321 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "" +#: ../../mod/admin.php:613 +msgid "Register policy" +msgstr "Politici inregistrare " -#: ../../include/api.php:262 ../../include/api.php:273 -#: ../../include/api.php:374 ../../include/api.php:958 -#: ../../include/api.php:960 -msgid "User not found." -msgstr "Utilizatorul nu a fost găsit." +#: ../../mod/admin.php:614 +msgid "Maximum Daily Registrations" +msgstr "Înregistrări Zilnice Maxime" -#: ../../include/api.php:1167 -msgid "There is no status with this id." -msgstr "Nu există nici-un status cu acest id." +#: ../../mod/admin.php:614 +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 "Dacă înregistrarea este permisă de mai sus, aceasta stabileşte numărul maxim de utilizatori noi înregistraţi, acceptaţi pe zi. Dacă înregistrarea este stabilită ca închisă, această setare nu are efect." -#: ../../include/api.php:1237 -msgid "There is no conversation with this id." -msgstr "Nu există nici-o conversație cu acest id." +#: ../../mod/admin.php:615 +msgid "Register text" +msgstr "Text înregistrare" -#: ../../include/network.php:892 -msgid "view full size" -msgstr "vezi intreaga mărime" +#: ../../mod/admin.php:615 +msgid "Will be displayed prominently on the registration page." +msgstr "Va fi afişat vizibil pe pagina de înregistrare." -#: ../../include/Scrape.php:584 -msgid " on Last.fm" -msgstr "pe Last.fm" +#: ../../mod/admin.php:616 +msgid "Accounts abandoned after x days" +msgstr "Conturi abandonate după x zile" -#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1125 -msgid "Full Name:" -msgstr "Nume complet:" +#: ../../mod/admin.php:616 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Nu va risipi resurse de sistem interogând site-uri externe pentru conturi abandonate. Introduceţi 0 pentru nici-o limită de timp." -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "j F, Y" +#: ../../mod/admin.php:617 +msgid "Allowed friend domains" +msgstr "Domenii prietene permise" -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "j F" +#: ../../mod/admin.php:617 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Lista cu separator prin virgulă a domeniilor ce sunt permise pentru a stabili relaţii de prietenie cu acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu" -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Zile Naştere :" +#: ../../mod/admin.php:618 +msgid "Allowed email domains" +msgstr "Domenii de email, permise" -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Vârsta:" +#: ../../mod/admin.php:618 +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 "Lista cu separator prin virgulă a domeniilor ce sunt permise în adresele de email pentru înregistrările pe acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu" -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "pentru %1$d %2$s" +#: ../../mod/admin.php:619 +msgid "Block public" +msgstr "Blocare acces public" -#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:673 -msgid "Sexual Preference:" -msgstr "Orientare Sexuală:" +#: ../../mod/admin.php:619 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Bifați pentru a bloca accesul public, pe acest site, către toate paginile publice cu caracter personal, doar dacă nu sunteţi deja autentificat." -#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:675 -msgid "Hometown:" -msgstr "Domiciliu:" +#: ../../mod/admin.php:620 +msgid "Force publish" +msgstr "Forțează publicarea" -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Etichete:" +#: ../../mod/admin.php:620 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Bifați pentru a forţa, ca toate profilurile de pe acest site să fie enumerate în directorul site-ului." -#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:676 -msgid "Political Views:" -msgstr "Viziuni Politice:" +#: ../../mod/admin.php:621 +msgid "Global directory update URL" +msgstr "URL actualizare director global" -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religie:" +#: ../../mod/admin.php:621 +msgid "" +"URL to update the global directory. If this is not set, the global directory" +" is completely unavailable to the application." +msgstr "URL pentru a actualiza directorul global. Dacă aceasta nu se stabilește, director global este complet indisponibil pentru aplicație." -#: ../../include/profile_advanced.php:58 ../../mod/directory.php:144 -msgid "About:" -msgstr "Despre:" +#: ../../mod/admin.php:622 +msgid "Allow threaded items" +msgstr "Permite elemente înșiruite" -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Hobby/Interese:" +#: ../../mod/admin.php:622 +msgid "Allow infinite level threading for items on this site." +msgstr "Permite pe acest site, un număr infinit de nivele de înșiruire." -#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:680 -msgid "Likes:" -msgstr "Îmi place:" +#: ../../mod/admin.php:623 +msgid "Private posts by default for new users" +msgstr "Postările private, ca implicit pentru utilizatori noi" -#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:681 -msgid "Dislikes:" -msgstr "Nu-mi place:" +#: ../../mod/admin.php:623 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Stabilește permisiunile de postare implicite, pentru toți membrii noi, la grupul de confidențialitate implicit, mai degrabă decât cel public." -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Informaţii de Contact şi Reţele Sociale:" +#: ../../mod/admin.php:624 +msgid "Don't include post content in email notifications" +msgstr "Nu include conţinutul postării în notificările prin email" -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Preferințe muzicale:" +#: ../../mod/admin.php:624 +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 "Nu include conținutul unui post/comentariu/mesaj privat/etc. în notificările prin email, ce sunt trimise de pe acest site, ca și masură de confidenţialitate." -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Cărti, literatură:" +#: ../../mod/admin.php:625 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Nu permiteţi accesul public la suplimentele enumerate în meniul de aplicaţii." -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Programe TV:" +#: ../../mod/admin.php:625 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Bifând această casetă va restricționa, suplimentele enumerate în meniul de aplicaţii, exclusiv la accesul membrilor." -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/dans/cultură/divertisment:" +#: ../../mod/admin.php:626 +msgid "Don't embed private images in posts" +msgstr "Nu încorpora imagini private în postări" -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Dragoste/Romantism:" +#: ../../mod/admin.php:626 +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 "Nu înlocui fotografiile private, locale, din postări cu o copie încorporată imaginii. Aceasta înseamnă că, contactele care primesc postări ce conțin fotografii private vor trebui să se autentifice şi să încarce fiecare imagine, ceea ce poate dura ceva timp." -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Loc de Muncă/Slujbă:" +#: ../../mod/admin.php:627 +msgid "Allow Users to set remote_self" +msgstr "Permite utilizatorilor să-și stabilească remote_self" -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Școală/educatie:" +#: ../../mod/admin.php:627 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "Bifând aceasta, fiecărui utilizator îi este permis să marcheze fiecare contact, ca și propriu_la-distanță în dialogul de remediere contact. Stabilind acest marcaj unui un contact, va determina oglindirea fiecărei postări a respectivului contact, în fluxul utilizatorilor." -#: ../../include/nav.php:34 ../../mod/navigation.php:20 -msgid "Nothing new here" -msgstr "Nimic nou aici" +#: ../../mod/admin.php:628 +msgid "Block multiple registrations" +msgstr "Blocare înregistrări multiple" -#: ../../include/nav.php:38 ../../mod/navigation.php:24 -msgid "Clear notifications" -msgstr "Ştergeţi notificările" +#: ../../mod/admin.php:628 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Interzice utilizatorilor să-și înregistreze conturi adiționale pentru a le folosi ca pagini." -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Finalizați această sesiune" +#: ../../mod/admin.php:629 +msgid "OpenID support" +msgstr "OpenID support" -#: ../../include/nav.php:79 -msgid "Your videos" -msgstr "Fișierele tale video" +#: ../../mod/admin.php:629 +msgid "OpenID support for registration and logins." +msgstr "Suport OpenID pentru înregistrare şi autentificări." -#: ../../include/nav.php:81 -msgid "Your personal notes" -msgstr "Notele tale personale" +#: ../../mod/admin.php:630 +msgid "Fullname check" +msgstr "Verificare Nume complet" -#: ../../include/nav.php:92 -msgid "Sign in" -msgstr "Autentificare" +#: ../../mod/admin.php:630 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Forțează utilizatorii să se înregistreze cu un spaţiu între prenume şi nume, în câmpul pentru Nume complet, ca și măsură antispam" -#: ../../include/nav.php:105 -msgid "Home Page" -msgstr "Home Pagina" +#: ../../mod/admin.php:631 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 Regular expresii" -#: ../../include/nav.php:109 -msgid "Create an account" -msgstr "Creați un cont" +#: ../../mod/admin.php:631 +msgid "Use PHP UTF8 regular expressions" +msgstr "Utilizaţi PHP UTF-8 Regular expresii" -#: ../../include/nav.php:114 ../../mod/help.php:84 -msgid "Help" -msgstr "Ajutor" +#: ../../mod/admin.php:632 +msgid "Show Community Page" +msgstr "Arată Pagina Communitz" -#: ../../include/nav.php:114 -msgid "Help and documentation" -msgstr "Ajutor şi documentaţie" +#: ../../mod/admin.php:632 +msgid "" +"Display a Community page showing all recent public postings on this site." +msgstr "Afişează o Pagina de Comunitate, arătând toate postările publice recente pe acest site." -#: ../../include/nav.php:117 -msgid "Apps" -msgstr "Aplicații" +#: ../../mod/admin.php:633 +msgid "Enable OStatus support" +msgstr "Activează Suport OStatus" -#: ../../include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Suplimente la aplicații, utilitare, jocuri" +#: ../../mod/admin.php:633 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Oferă compatibilitate de integrare OStatus (StatusNet, GNU Sociale etc.). Toate comunicațiile din OStatus sunt publice, astfel încât avertismentele de confidenţialitate vor fi ocazional afişate." -#: ../../include/nav.php:119 ../../include/text.php:952 -#: ../../include/text.php:953 ../../mod/search.php:99 -msgid "Search" -msgstr "Căutare" +#: ../../mod/admin.php:634 +msgid "OStatus conversation completion interval" +msgstr "Intervalul OStatus de finalizare a conversaţiei" -#: ../../include/nav.php:119 -msgid "Search site content" -msgstr "Căutare în conținut site" +#: ../../mod/admin.php:634 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "Cât de des ar trebui, operatorul de sondaje, să verifice existența intrărilor noi din conversațiile OStatus? Aceasta poate fi o resursă de sarcini utile." -#: ../../include/nav.php:129 -msgid "Conversations on this site" -msgstr "Conversaţii pe acest site" +#: ../../mod/admin.php:635 +msgid "Enable Diaspora support" +msgstr "Activează Suport Diaspora" -#: ../../include/nav.php:131 -msgid "Directory" -msgstr "Director" +#: ../../mod/admin.php:635 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Oferă o compatibilitate de reţea Diaspora, întegrată." -#: ../../include/nav.php:131 -msgid "People directory" -msgstr "Director persoane" +#: ../../mod/admin.php:636 +msgid "Only allow Friendica contacts" +msgstr "Se permit doar contactele Friendica" -#: ../../include/nav.php:133 -msgid "Information" -msgstr "Informaţii" +#: ../../mod/admin.php:636 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Toate contactele trebuie să utilizeze protocoalele Friendica. Toate celelalte protocoale, integrate, de comunicaţii sunt dezactivate." -#: ../../include/nav.php:133 -msgid "Information about this friendica instance" -msgstr "Informaţii despre această instanță friendica" +#: ../../mod/admin.php:637 +msgid "Verify SSL" +msgstr "Verifică SSL" -#: ../../include/nav.php:143 ../../mod/notifications.php:83 -msgid "Network" -msgstr "Reţea" +#: ../../mod/admin.php:637 +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 "Dacă doriţi, puteţi porni verificarea cu strictețe a certificatului. Aceasta va însemna că nu vă puteţi conecta (deloc) la site-uri SSL auto-semnate." -#: ../../include/nav.php:143 -msgid "Conversations from your friends" -msgstr "Conversaţiile prieteniilor dvs." +#: ../../mod/admin.php:638 +msgid "Proxy user" +msgstr "Proxy user" -#: ../../include/nav.php:144 -msgid "Network Reset" -msgstr "Resetare Reţea" +#: ../../mod/admin.php:639 +msgid "Proxy URL" +msgstr "Proxy URL" -#: ../../include/nav.php:144 -msgid "Load Network page with no filters" -msgstr "Încărcare pagina de Reţea fără filtre" +#: ../../mod/admin.php:640 +msgid "Network timeout" +msgstr "Timp de expirare rețea" -#: ../../include/nav.php:152 ../../mod/notifications.php:98 -msgid "Introductions" -msgstr "Introduceri" +#: ../../mod/admin.php:640 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valoare exprimată în secunde. Stabiliți la 0 pentru nelimitat (nu este recomandat)." -#: ../../include/nav.php:152 -msgid "Friend Requests" -msgstr "Solicitări Prietenie" +#: ../../mod/admin.php:641 +msgid "Delivery interval" +msgstr "Interval de livrare" -#: ../../include/nav.php:153 ../../mod/notifications.php:220 -msgid "Notifications" -msgstr "Notificări" +#: ../../mod/admin.php:641 +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 "Întârzierea proceselor de livrare în fundal, exprimată prin atâtea secunde, pentru a reduce încărcarea sistemului. Recomandat: 4-5 pentru gazde comune, 2-3 pentru servere virtuale private, 0-1 pentru servere dedicate mari." -#: ../../include/nav.php:154 -msgid "See all notifications" -msgstr "Consultaţi toate notificările" +#: ../../mod/admin.php:642 +msgid "Poll interval" +msgstr "Interval de Sondare" -#: ../../include/nav.php:155 -msgid "Mark all system notifications seen" -msgstr "Marcaţi toate notificările de sistem, ca și vizualizate" +#: ../../mod/admin.php:642 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Întârzierea proceselor de sondare în fundal, exprimată prin atâtea secunde, pentru a reduce încărcarea sistemului. dacă este 0, utilizează intervalul de livrare." -#: ../../include/nav.php:159 ../../mod/notifications.php:103 -#: ../../mod/message.php:182 -msgid "Messages" -msgstr "Mesage" +#: ../../mod/admin.php:643 +msgid "Maximum Load Average" +msgstr "Media Maximă de Încărcare" -#: ../../include/nav.php:159 -msgid "Private mail" -msgstr "Mail privat" +#: ../../mod/admin.php:643 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Încărcarea maximă a sistemului înainte ca livrarea şi procesele de sondare să fie amânate - implicit 50." -#: ../../include/nav.php:160 -msgid "Inbox" -msgstr "Mesaje primite" +#: ../../mod/admin.php:645 +msgid "Use MySQL full text engine" +msgstr "Utilizare motor text-complet MySQL" -#: ../../include/nav.php:161 -msgid "Outbox" -msgstr "Căsuță de Ieșire" +#: ../../mod/admin.php:645 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Activează motorul pentru text complet. Grăbeşte căutare - dar poate căuta, numai pentru minim 4 caractere." -#: ../../include/nav.php:162 ../../mod/message.php:9 -msgid "New Message" -msgstr "Mesaj nou" +#: ../../mod/admin.php:646 +msgid "Suppress Language" +msgstr "Suprimă Limba" -#: ../../include/nav.php:165 -msgid "Manage" -msgstr "Gestionare" +#: ../../mod/admin.php:646 +msgid "Suppress language information in meta information about a posting." +msgstr "Suprimă informaţiile despre limba din informaţiile meta ale unei postări." -#: ../../include/nav.php:165 -msgid "Manage other pages" -msgstr "Gestionează alte pagini" +#: ../../mod/admin.php:647 +msgid "Path to item cache" +msgstr "Calea pentru elementul cache" -#: ../../include/nav.php:168 ../../mod/settings.php:62 -msgid "Delegations" -msgstr "Delegații" +#: ../../mod/admin.php:648 +msgid "Cache duration in seconds" +msgstr "Durata Cache în secunde" -#: ../../include/nav.php:168 ../../mod/delegate.php:124 -msgid "Delegate Page Management" -msgstr "Delegare Gestionare Pagină" +#: ../../mod/admin.php:648 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "Cât de mult ar trebui păstrate fișierele cache? Valoarea implicită este de 86400 de secunde (O zi). Pentru a dezactiva elementul cache, stabilește valoarea la -1." -#: ../../include/nav.php:170 -msgid "Account settings" -msgstr "Configurări Cont" +#: ../../mod/admin.php:649 +msgid "Maximum numbers of comments per post" +msgstr "Numărul maxim de comentarii per post" -#: ../../include/nav.php:173 -msgid "Manage/Edit Profiles" -msgstr "Gestionare/Editare Profile" +#: ../../mod/admin.php:649 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "Câte comentarii ar trebui afișate pentru fiecare postare? Valoarea implicită este 100." -#: ../../include/nav.php:175 -msgid "Manage/edit friends and contacts" -msgstr "Gestionare/Editare prieteni şi contacte" +#: ../../mod/admin.php:650 +msgid "Path for lock file" +msgstr "Cale pentru blocare fișiere" -#: ../../include/nav.php:182 ../../mod/admin.php:128 -msgid "Admin" -msgstr "Admin" +#: ../../mod/admin.php:651 +msgid "Temp path" +msgstr "Calea Temp" -#: ../../include/nav.php:182 -msgid "Site setup and configuration" -msgstr "Instalare şi configurare site" +#: ../../mod/admin.php:652 +msgid "Base path to installation" +msgstr "Calea de bază pentru instalare" -#: ../../include/nav.php:186 -msgid "Navigation" -msgstr "Navigare" +#: ../../mod/admin.php:653 +msgid "Disable picture proxy" +msgstr "" -#: ../../include/nav.php:186 -msgid "Site map" -msgstr "Hartă Site" +#: ../../mod/admin.php:653 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "" -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "Apăsați aici pentru a actualiza." +#: ../../mod/admin.php:655 +msgid "New base url" +msgstr "URL de bază nou" -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Această acţiune depăşeşte limitele stabilite de planul abonamentului dvs." +#: ../../mod/admin.php:657 +msgid "Disable noscrape" +msgstr "Dezactivare fără-colectare" -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "Această acţiune nu este disponibilă în planul abonamentului dvs." +#: ../../mod/admin.php:657 +msgid "" +"The noscrape feature speeds up directory submissions by using JSON data " +"instead of HTML scraping. Disabling it will cause higher load on your server" +" and the directory server." +msgstr "" -#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507 -msgid "Disallowed profile URL." -msgstr "Profil URL invalid." +#: ../../mod/admin.php:674 +msgid "Update has been marked successful" +msgstr "Actualizarea a fost marcată cu succes" -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "Lipseşte URL-ul de conectare." +#: ../../mod/admin.php:682 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Actualizarea structurii bazei de date %s a fost aplicată cu succes." -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Acest site nu este configurat pentru a permite comunicarea cu alte reţele." +#: ../../mod/admin.php:685 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "" -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Nu au fost descoperite protocoale de comunicaţii sau fluxuri compatibile." +#: ../../mod/admin.php:697 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Executarea %s a eșuat cu eroarea : %s" -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "Adresa de profil specificată nu furnizează informații adecvate." +#: ../../mod/admin.php:700 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Actualizarea %s a fost aplicată cu succes." -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Un autor sau nume nu a fost găsit." +#: ../../mod/admin.php:704 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Actualizare %s nu a returnat nici-un status. Nu se știe dacă a reuşit." -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Nici un URL de browser nu a putut fi corelat cu această adresă." +#: ../../mod/admin.php:706 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "" -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Nu se poate corela @-stilul pentru Adresa de Identitatea cu un protocol cunoscut sau contact de email." +#: ../../mod/admin.php:725 +msgid "No failed updates." +msgstr "Nici-o actualizare eșuată." -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "Utilizaţi mailto: în faţa adresei pentru a forţa verificarea de email." +#: ../../mod/admin.php:726 +msgid "Check database structure" +msgstr "Verifică structura bazei de date" -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Adresa de profil specificată aparţine unei reţele care a fost dezactivată pe acest site." +#: ../../mod/admin.php:731 +msgid "Failed Updates" +msgstr "Actualizări Eșuate" -#: ../../include/follow.php:103 +#: ../../mod/admin.php:732 msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Profil limitat. Această persoană nu va putea primi notificări directe/personale, de la dvs." - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Nu se pot localiza informaţiile de contact." +"This does not include updates prior to 1139, which did not return a status." +msgstr "Aceasta nu include actualizările dinainte de 1139, care nu a returnat nici-un status." -#: ../../include/follow.php:259 -msgid "following" -msgstr "urmărire" +#: ../../mod/admin.php:733 +msgid "Mark success (if update was manually applied)" +msgstr "Marcaţi ca și realizat (dacă actualizarea a fost aplicată manual)" -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Eroare la decodarea fişierului de cont" +#: ../../mod/admin.php:734 +msgid "Attempt to execute this update step automatically" +msgstr "Se încearcă executarea automată a acestei etape de actualizare" -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Eroare! Nu există data versiunii în fişier! Acesta nu este un fișier de cont Friendica?" +#: ../../mod/admin.php:766 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "" -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Eroare! Nu pot verifica pseudonimul" +#: ../../mod/admin.php:769 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t\t%2$s\n" +"\t\t\tPassword:\t\t%3$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tThank you and welcome to %4$s." +msgstr "" -#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#: ../../mod/admin.php:801 ../../include/user.php:413 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "Utilizatorul '%s' există deja pe acest server!" +msgid "Registration details for %s" +msgstr "Detaliile de înregistrare pentru %s" -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "Eroare la crearea utilizatorului" +#: ../../mod/admin.php:813 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s utilizator blocat/deblocat" +msgstr[1] "%s utilizatori blocați/deblocați" +msgstr[2] "%s de utilizatori blocați/deblocați" -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "Eroare la crearea profilului utilizatorului" +#: ../../mod/admin.php:820 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utilizator şters" +msgstr[1] "%s utilizatori şterşi" +msgstr[2] "%s utilizatori şterşi" -#: ../../include/uimport.php:220 +#: ../../mod/admin.php:859 #, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contact neimportat" -msgstr[1] "%d contacte neimportate" -msgstr[2] "%d de contacte neimportate" +msgid "User '%s' deleted" +msgstr "Utilizator %s şters" -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" -msgstr "Realizat. Vă puteţi conecta acum cu parola şi numele dumneavoastră de utilizator" +#: ../../mod/admin.php:867 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utilizator %s deblocat" -#: ../../include/event.php:11 ../../include/bb2diaspora.php:134 -#: ../../mod/localtime.php:12 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" +#: ../../mod/admin.php:867 +#, php-format +msgid "User '%s' blocked" +msgstr "Utilizator %s blocat" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:140 -msgid "Starts:" -msgstr "Începe:" +#: ../../mod/admin.php:962 +msgid "Add User" +msgstr "Adăugaţi Utilizator" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:148 -msgid "Finishes:" -msgstr "Se finalizează:" +#: ../../mod/admin.php:963 +msgid "select all" +msgstr "selectează tot" -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "urmărire întreruptă" +#: ../../mod/admin.php:964 +msgid "User registrations waiting for confirm" +msgstr "Înregistrarea utilizatorului, aşteaptă confirmarea" -#: ../../include/Contact.php:228 ../../include/conversation.php:882 -msgid "Poke" -msgstr "Abordare" +#: ../../mod/admin.php:965 +msgid "User waiting for permanent deletion" +msgstr "Utilizatorul așteaptă să fie șters definitiv" -#: ../../include/Contact.php:229 ../../include/conversation.php:876 -msgid "View Status" -msgstr "Vizualizare Status" +#: ../../mod/admin.php:966 +msgid "Request date" +msgstr "Data cererii" -#: ../../include/Contact.php:230 ../../include/conversation.php:877 -msgid "View Profile" -msgstr "Vizualizare Profil" +#: ../../mod/admin.php:966 ../../mod/admin.php:978 ../../mod/admin.php:979 +#: ../../mod/admin.php:992 ../../mod/settings.php:613 +#: ../../mod/settings.php:639 ../../mod/crepair.php:160 +msgid "Name" +msgstr "Nume" -#: ../../include/Contact.php:231 ../../include/conversation.php:878 -msgid "View Photos" -msgstr "Vizualizare Fotografii" +#: ../../mod/admin.php:966 ../../mod/admin.php:978 ../../mod/admin.php:979 +#: ../../mod/admin.php:994 ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 +msgid "Email" +msgstr "Email" -#: ../../include/Contact.php:232 ../../include/Contact.php:255 -#: ../../include/conversation.php:879 -msgid "Network Posts" -msgstr "Postări din Rețea" +#: ../../mod/admin.php:967 +msgid "No registrations." +msgstr "Nici-o înregistrare." -#: ../../include/Contact.php:233 ../../include/Contact.php:255 -#: ../../include/conversation.php:880 -msgid "Edit Contact" -msgstr "Edit Contact" +#: ../../mod/admin.php:969 +msgid "Deny" +msgstr "Respinge" -#: ../../include/Contact.php:234 -msgid "Drop Contact" -msgstr "Eliminare Contact" +#: ../../mod/admin.php:971 ../../mod/contacts.php:437 +#: ../../mod/contacts.php:496 ../../mod/contacts.php:706 +msgid "Block" +msgstr "Blochează" -#: ../../include/Contact.php:235 ../../include/Contact.php:255 -#: ../../include/conversation.php:881 -msgid "Send PM" -msgstr "Trimiteți mesaj personal" +#: ../../mod/admin.php:972 ../../mod/contacts.php:437 +#: ../../mod/contacts.php:496 ../../mod/contacts.php:706 +msgid "Unblock" +msgstr "Deblochează" -#: ../../include/dbstructure.php:23 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "" +#: ../../mod/admin.php:973 +msgid "Site admin" +msgstr "Site admin" -#: ../../include/dbstructure.php:28 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "" +#: ../../mod/admin.php:974 +msgid "Account expired" +msgstr "Cont expirat" -#: ../../include/dbstructure.php:181 -msgid "Errors encountered creating database tables." -msgstr "Erori întâlnite la crearea tabelelor bazei de date." +#: ../../mod/admin.php:977 +msgid "New User" +msgstr "Utilizator Nou" -#: ../../include/dbstructure.php:239 -msgid "Errors encountered performing database changes." -msgstr "Erori întâlnite la operarea de modificări în baza de date." +#: ../../mod/admin.php:978 ../../mod/admin.php:979 +msgid "Register date" +msgstr "Data înregistrare" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Diverse" +#: ../../mod/admin.php:978 ../../mod/admin.php:979 +msgid "Last login" +msgstr "Ultimul login" -#: ../../include/datetime.php:153 ../../include/datetime.php:285 -msgid "year" -msgstr "an" +#: ../../mod/admin.php:978 ../../mod/admin.php:979 +msgid "Last item" +msgstr "Ultimul element" -#: ../../include/datetime.php:158 ../../include/datetime.php:286 -msgid "month" -msgstr "lună" +#: ../../mod/admin.php:978 +msgid "Deleted since" +msgstr "Șters din" -#: ../../include/datetime.php:163 ../../include/datetime.php:288 -msgid "day" -msgstr "zi" +#: ../../mod/admin.php:979 ../../mod/settings.php:36 +msgid "Account" +msgstr "Cont" -#: ../../include/datetime.php:276 -msgid "never" -msgstr "niciodată" +#: ../../mod/admin.php:981 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Utilizatorii selectați vor fi ştersi!\\n\\nTot ce au postat acești utilizatori pe acest site, va fi şters permanent!\\n\\nConfirmați?" -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "acum mai puțin de o secundă" +#: ../../mod/admin.php:982 +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 "Utilizatorul {0} va fi şters!\\n\\nTot ce a postat acest utilizator pe acest site, va fi şters permanent!\\n\\nConfirmați?" -#: ../../include/datetime.php:285 -msgid "years" -msgstr "ani" +#: ../../mod/admin.php:992 +msgid "Name of the new user." +msgstr "Numele noului utilizator." -#: ../../include/datetime.php:286 -msgid "months" -msgstr "luni" +#: ../../mod/admin.php:993 +msgid "Nickname" +msgstr "Pseudonim" -#: ../../include/datetime.php:287 -msgid "week" -msgstr "săptămână" +#: ../../mod/admin.php:993 +msgid "Nickname of the new user." +msgstr "Pseudonimul noului utilizator." -#: ../../include/datetime.php:287 -msgid "weeks" -msgstr "săptămâni" +#: ../../mod/admin.php:994 +msgid "Email address of the new user." +msgstr "Adresa de e-mail a utilizatorului nou." -#: ../../include/datetime.php:288 -msgid "days" -msgstr "zile" +#: ../../mod/admin.php:1027 +#, php-format +msgid "Plugin %s disabled." +msgstr "Modulul %s a fost dezactivat." -#: ../../include/datetime.php:289 -msgid "hour" -msgstr "oră" +#: ../../mod/admin.php:1031 +#, php-format +msgid "Plugin %s enabled." +msgstr "Modulul %s a fost activat." -#: ../../include/datetime.php:289 -msgid "hours" -msgstr "ore" +#: ../../mod/admin.php:1041 ../../mod/admin.php:1257 +msgid "Disable" +msgstr "Dezactivează" -#: ../../include/datetime.php:290 -msgid "minute" -msgstr "minut" +#: ../../mod/admin.php:1043 ../../mod/admin.php:1259 +msgid "Enable" +msgstr "Activează" -#: ../../include/datetime.php:290 -msgid "minutes" -msgstr "minute" +#: ../../mod/admin.php:1066 ../../mod/admin.php:1287 +msgid "Toggle" +msgstr "Comutare" -#: ../../include/datetime.php:291 -msgid "second" -msgstr "secundă" +#: ../../mod/admin.php:1067 ../../mod/admin.php:1288 +#: ../../mod/newmember.php:22 ../../mod/settings.php:85 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:170 +msgid "Settings" +msgstr "Setări" -#: ../../include/datetime.php:291 -msgid "seconds" -msgstr "secunde" +#: ../../mod/admin.php:1074 ../../mod/admin.php:1297 +msgid "Author: " +msgstr "Autor: " -#: ../../include/datetime.php:300 -#, php-format -msgid "%1$d %2$s ago" -msgstr "acum %1$d %2$s" +#: ../../mod/admin.php:1075 ../../mod/admin.php:1298 +msgid "Maintainer: " +msgstr "Responsabil:" -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[fără subiect]" +#: ../../mod/admin.php:1217 +msgid "No themes found." +msgstr "Nici-o temă găsită." -#: ../../include/delivery.php:456 ../../include/notifier.php:774 -msgid "(no subject)" -msgstr "(fără subiect)" +#: ../../mod/admin.php:1279 +msgid "Screenshot" +msgstr "Screenshot" -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Necunoscut | Fără categorie" +#: ../../mod/admin.php:1325 +msgid "[Experimental]" +msgstr "[Experimental]" -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Blocare Imediată" +#: ../../mod/admin.php:1326 +msgid "[Unsupported]" +msgstr "[Unsupported]" -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Dubioșii, spammerii, auto-promoterii" +#: ../../mod/admin.php:1353 +msgid "Log settings updated." +msgstr "Jurnalul de configurări fost actualizat." -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Cunoscut mie, dar fără o opinie" +#: ../../mod/admin.php:1409 +msgid "Clear" +msgstr "Curăţă" -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, probabil inofensiv" +#: ../../mod/admin.php:1415 +msgid "Enable Debugging" +msgstr "Activează Depanarea" -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Cu reputație, are încrederea mea" +#: ../../mod/admin.php:1416 +msgid "Log file" +msgstr "Fişier Log " -#: ../../include/contact_selectors.php:56 ../../mod/admin.php:542 -msgid "Frequently" -msgstr "Frecvent" +#: ../../mod/admin.php:1416 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Trebuie să fie inscriptibil pentru serverul web. Relativ la directoul dvs. superior Friendica." -#: ../../include/contact_selectors.php:57 ../../mod/admin.php:543 -msgid "Hourly" -msgstr "Din oră în oră" +#: ../../mod/admin.php:1417 +msgid "Log level" +msgstr "Nivel log" -#: ../../include/contact_selectors.php:58 ../../mod/admin.php:544 -msgid "Twice daily" -msgstr "De două ori pe zi" +#: ../../mod/admin.php:1466 ../../mod/contacts.php:493 +msgid "Update now" +msgstr "Actualizează acum" -#: ../../include/contact_selectors.php:59 ../../mod/admin.php:545 -msgid "Daily" -msgstr "Zilnic" +#: ../../mod/admin.php:1467 +msgid "Close" +msgstr "Închide" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Săptămânal" +#: ../../mod/admin.php:1473 +msgid "FTP Host" +msgstr "FTP Host" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Lunar" +#: ../../mod/admin.php:1474 +msgid "FTP Path" +msgstr "FTP Path" -#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840 -msgid "Friendica" -msgstr "Friendica" +#: ../../mod/admin.php:1475 +msgid "FTP User" +msgstr "FTP User" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" +#: ../../mod/admin.php:1476 +msgid "FTP Password" +msgstr "FTP Parolă" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../mod/message.php:9 ../../include/nav.php:162 +msgid "New Message" +msgstr "Mesaj nou" -#: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 ../../mod/admin.php:964 -#: ../../mod/admin.php:976 ../../mod/admin.php:977 ../../mod/admin.php:992 -msgid "Email" -msgstr "Email" +#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Nici-o adresă selectată." -#: ../../include/contact_selectors.php:80 ../../mod/settings.php:733 -#: ../../mod/dfrn_request.php:842 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Nu se pot localiza informaţiile de contact." -#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49 -#: ../../mod/newmember.php:51 -msgid "Facebook" -msgstr "Facebook" +#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Mesajul nu a putut fi trimis." -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" +#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Eșec de colectare mesaj." -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Mesaj trimis." -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../mod/message.php:182 ../../include/nav.php:159 +msgid "Messages" +msgstr "Mesage" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Chiar doriţi să ştergeţi acest mesaj ?" -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Mesaj şters" -#: ../../include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Conversaşie inlăturată." -#: ../../include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" +#: ../../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:1002 ../../include/conversation.php:1020 +msgid "Please enter a link URL:" +msgstr "Introduceţi un link URL:" -#: ../../include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Conector Diaspora" +#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Trimite mesaj privat" -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" +#: ../../mod/message.php:320 ../../mod/message.php:553 +#: ../../mod/wallmessage.php:144 +msgid "To:" +msgstr "Către: " -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" +#: ../../mod/message.php:325 ../../mod/message.php:555 +#: ../../mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Subiect:" -#: ../../include/diaspora.php:620 ../../include/conversation.php:172 -#: ../../mod/dfrn_confirm.php:486 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s este acum prieten cu %2$s" +#: ../../mod/message.php:329 ../../mod/message.php:558 +#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +msgid "Your message:" +msgstr "Mesajul dvs :" -#: ../../include/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "Partajarea notificării din reţeaua Diaspora" +#: ../../mod/message.php:332 ../../mod/message.php:562 +#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154 +#: ../../include/conversation.php:1091 +msgid "Upload photo" +msgstr "Încarcă foto" -#: ../../include/diaspora.php:2312 -msgid "Attachments:" -msgstr "Atașări:" +#: ../../mod/message.php:333 ../../mod/message.php:563 +#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155 +#: ../../include/conversation.php:1095 +msgid "Insert web link" +msgstr "Inserează link web" -#: ../../include/conversation.php:140 ../../mod/like.php:168 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s nu apreciază %3$s lui %2$s" +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Nici-un mesaj." -#: ../../include/conversation.php:207 +#: ../../mod/message.php:378 #, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s a abordat pe %2$s" - -#: ../../include/conversation.php:211 ../../include/text.php:1004 -msgid "poked" -msgstr "a fost abordat(ă)" +msgid "Unknown sender - %s" +msgstr "Expeditor necunoscut - %s" -#: ../../include/conversation.php:227 ../../mod/mood.php:62 +#: ../../mod/message.php:381 #, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s este momentan %2$s" +msgid "You and %s" +msgstr "Tu şi %s" -#: ../../include/conversation.php:266 ../../mod/tagger.php:95 +#: ../../mod/message.php:384 #, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s a etichetat %3$s de la %2$s cu %4$s" +msgid "%s and You" +msgstr "%s şi dvs" -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "post/element" +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Ștergeți conversaţia" -#: ../../include/conversation.php:292 +#: ../../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 "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s a marcat %3$s de la %2$s ca favorit" +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d mesaj" +msgstr[1] "%d mesaje" +msgstr[2] "%d mesaje" -#: ../../include/conversation.php:613 ../../object/Item.php:129 -#: ../../mod/photos.php:1651 ../../mod/content.php:437 -#: ../../mod/content.php:740 -msgid "Select" -msgstr "Select" +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Mesaj nedisponibil" -#: ../../include/conversation.php:614 ../../object/Item.php:130 -#: ../../mod/group.php:171 ../../mod/settings.php:674 -#: ../../mod/contacts.php:709 ../../mod/admin.php:968 -#: ../../mod/photos.php:1652 ../../mod/content.php:438 -#: ../../mod/content.php:741 -msgid "Delete" -msgstr "Şterge" +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Şterge mesaj" -#: ../../include/conversation.php:654 ../../object/Item.php:326 -#: ../../object/Item.php:327 ../../mod/content.php:471 -#: ../../mod/content.php:852 ../../mod/content.php:853 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vizualizaţi profilul %s @ %s" +#: ../../mod/message.php:548 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Nici-o comunicaţie securizată disponibilă. Veți putea răspunde din pagina de profil a expeditorului." -#: ../../include/conversation.php:666 ../../object/Item.php:316 -msgid "Categories:" -msgstr "Categorii:" +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Răspunde" -#: ../../include/conversation.php:667 ../../object/Item.php:317 -msgid "Filed under:" -msgstr "Înscris în:" +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Element negăsit" -#: ../../include/conversation.php:674 ../../object/Item.php:340 -#: ../../mod/content.php:481 ../../mod/content.php:864 -#, php-format -msgid "%s from %s" -msgstr "%s de la %s" +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Editează post" -#: ../../include/conversation.php:690 ../../mod/content.php:497 -msgid "View in context" -msgstr "Vizualizare în context" - -#: ../../include/conversation.php:692 ../../include/conversation.php:1109 -#: ../../object/Item.php:364 ../../mod/wallmessage.php:156 -#: ../../mod/editpost.php:124 ../../mod/photos.php:1543 -#: ../../mod/message.php:334 ../../mod/message.php:565 -#: ../../mod/content.php:499 ../../mod/content.php:883 -msgid "Please wait" -msgstr "Aşteptaţi vă rog" - -#: ../../include/conversation.php:772 -msgid "remove" -msgstr "eliminare" - -#: ../../include/conversation.php:776 -msgid "Delete Selected Items" -msgstr "Ștergeți Elementele Selectate" - -#: ../../include/conversation.php:875 -msgid "Follow Thread" -msgstr "Urmăriți Firul Conversației" - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s likes this." -msgstr "%s apreciază aceasta." - -#: ../../include/conversation.php:944 -#, php-format -msgid "%s doesn't like this." -msgstr "%s nu apreciază aceasta." - -#: ../../include/conversation.php:949 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d persoane apreciază aceasta" - -#: ../../include/conversation.php:952 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d persoanenu apreciază aceasta" - -#: ../../include/conversation.php:966 -msgid "and" -msgstr "şi" - -#: ../../include/conversation.php:972 -#, php-format -msgid ", and %d other people" -msgstr ", şi %d alte persoane" - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s like this." -msgstr "%s apreciază aceasta." - -#: ../../include/conversation.php:974 -#, php-format -msgid "%s don't like this." -msgstr "%s nu apreciază aceasta." - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Visible to everybody" -msgstr "Vizibil pentru toți" - -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -#: ../../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 "Introduceţi un link URL:" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Please enter a video link/URL:" -msgstr "Vă rugăm să introduceți un URL/legătură pentru clip video" - -#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 -msgid "Please enter an audio link/URL:" -msgstr "Vă rugăm să introduceți un URL/legătură pentru clip audio" - -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -msgid "Tag term:" -msgstr "Termen etichetare:" - -#: ../../include/conversation.php:1006 ../../include/conversation.php:1024 -#: ../../mod/filer.php:30 -msgid "Save to Folder:" -msgstr "Salvare în Dosar:" - -#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 -msgid "Where are you right now?" -msgstr "Unde vă aflați acum?" - -#: ../../include/conversation.php:1008 -msgid "Delete item(s)?" -msgstr "Ștergeți element(e)?" - -#: ../../include/conversation.php:1051 -msgid "Post to Email" -msgstr "Postați prin Email" - -#: ../../include/conversation.php:1056 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Conectorii au fost dezactivați, din moment ce \"%s\" este activat." - -#: ../../include/conversation.php:1057 ../../mod/settings.php:1025 -msgid "Hide your profile details from unknown viewers?" -msgstr "Ascundeţi detaliile profilului dvs. de vizitatorii necunoscuți?" - -#: ../../include/conversation.php:1090 ../../mod/photos.php:1542 -msgid "Share" -msgstr "Partajează" - -#: ../../include/conversation.php:1091 ../../mod/wallmessage.php:154 -#: ../../mod/editpost.php:110 ../../mod/message.php:332 -#: ../../mod/message.php:562 -msgid "Upload photo" -msgstr "Încarcă foto" +#: ../../mod/editpost.php:109 ../../mod/filer.php:31 ../../mod/notes.php:63 +#: ../../include/text.php:955 +msgid "Save" +msgstr "Salvare" -#: ../../include/conversation.php:1092 ../../mod/editpost.php:111 +#: ../../mod/editpost.php:111 ../../include/conversation.php:1092 msgid "upload photo" msgstr "încărcare fotografie" -#: ../../include/conversation.php:1093 ../../mod/editpost.php:112 +#: ../../mod/editpost.php:112 ../../include/conversation.php:1093 msgid "Attach file" msgstr "Ataşează fişier" -#: ../../include/conversation.php:1094 ../../mod/editpost.php:113 +#: ../../mod/editpost.php:113 ../../include/conversation.php:1094 msgid "attach file" msgstr "ataşează fişier" -#: ../../include/conversation.php:1095 ../../mod/wallmessage.php:155 -#: ../../mod/editpost.php:114 ../../mod/message.php:333 -#: ../../mod/message.php:563 -msgid "Insert web link" -msgstr "Inserează link web" - -#: ../../include/conversation.php:1096 ../../mod/editpost.php:115 +#: ../../mod/editpost.php:115 ../../include/conversation.php:1096 msgid "web link" msgstr "web link" -#: ../../include/conversation.php:1097 ../../mod/editpost.php:116 +#: ../../mod/editpost.php:116 ../../include/conversation.php:1097 msgid "Insert video link" msgstr "Inserează video link" -#: ../../include/conversation.php:1098 ../../mod/editpost.php:117 +#: ../../mod/editpost.php:117 ../../include/conversation.php:1098 msgid "video link" msgstr "video link" -#: ../../include/conversation.php:1099 ../../mod/editpost.php:118 +#: ../../mod/editpost.php:118 ../../include/conversation.php:1099 msgid "Insert audio link" msgstr "Inserare link audio" -#: ../../include/conversation.php:1100 ../../mod/editpost.php:119 +#: ../../mod/editpost.php:119 ../../include/conversation.php:1100 msgid "audio link" msgstr "audio link" -#: ../../include/conversation.php:1101 ../../mod/editpost.php:120 +#: ../../mod/editpost.php:120 ../../include/conversation.php:1101 msgid "Set your location" msgstr "Setează locaţia dvs" -#: ../../include/conversation.php:1102 ../../mod/editpost.php:121 +#: ../../mod/editpost.php:121 ../../include/conversation.php:1102 msgid "set location" msgstr "set locaţie" -#: ../../include/conversation.php:1103 ../../mod/editpost.php:122 +#: ../../mod/editpost.php:122 ../../include/conversation.php:1103 msgid "Clear browser location" msgstr "Curățare locație browser" -#: ../../include/conversation.php:1104 ../../mod/editpost.php:123 +#: ../../mod/editpost.php:123 ../../include/conversation.php:1104 msgid "clear location" msgstr "şterge locaţia" -#: ../../include/conversation.php:1106 ../../mod/editpost.php:137 -msgid "Set title" -msgstr "Setează titlu" - -#: ../../include/conversation.php:1108 ../../mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Categorii (listă cu separator prin virgulă)" - -#: ../../include/conversation.php:1110 ../../mod/editpost.php:125 +#: ../../mod/editpost.php:125 ../../include/conversation.php:1110 msgid "Permission settings" msgstr "Setări permisiuni" -#: ../../include/conversation.php:1111 -msgid "permissions" -msgstr "permisiuni" - -#: ../../include/conversation.php:1119 ../../mod/editpost.php:133 +#: ../../mod/editpost.php:133 ../../include/conversation.php:1119 msgid "CC: email addresses" msgstr "CC: adresă email" -#: ../../include/conversation.php:1120 ../../mod/editpost.php:134 +#: ../../mod/editpost.php:134 ../../include/conversation.php:1120 msgid "Public post" msgstr "Public post" -#: ../../include/conversation.php:1122 ../../mod/editpost.php:140 +#: ../../mod/editpost.php:137 ../../include/conversation.php:1106 +msgid "Set title" +msgstr "Setează titlu" + +#: ../../mod/editpost.php:139 ../../include/conversation.php:1108 +msgid "Categories (comma-separated list)" +msgstr "Categorii (listă cu separator prin virgulă)" + +#: ../../mod/editpost.php:140 ../../include/conversation.php:1122 msgid "Example: bob@example.com, mary@example.com" msgstr "Exemplu: bob@exemplu.com, mary@exemplu.com" -#: ../../include/conversation.php:1126 ../../object/Item.php:687 -#: ../../mod/editpost.php:145 ../../mod/photos.php:1564 -#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 -#: ../../mod/content.php:719 -msgid "Preview" -msgstr "Previzualizare" - -#: ../../include/conversation.php:1135 -msgid "Post to Groups" -msgstr "Postați în Grupuri" +#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18 +#: ../../mod/profiles.php:133 ../../mod/profiles.php:162 +#: ../../mod/profiles.php:589 +msgid "Profile not found." +msgstr "Profil negăsit." -#: ../../include/conversation.php:1136 -msgid "Post to Contacts" -msgstr "Post către Contacte" +#: ../../mod/dfrn_confirm.php:121 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Aceasta se poate întâmpla ocazional dacă contactul a fost solicitat de către ambele persoane şi acesta a fost deja aprobat." -#: ../../include/conversation.php:1137 -msgid "Private post" -msgstr "Articol privat" +#: ../../mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Răspunsul de la adresa de la distanţă, nu a fost înțeles." -#: ../../include/text.php:296 -msgid "newer" -msgstr "mai noi" +#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "Răspuns neaşteptat de la site-ul de la distanţă:" -#: ../../include/text.php:298 -msgid "older" -msgstr "mai vechi" +#: ../../mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Confirmare încheiată cu succes." -#: ../../include/text.php:303 -msgid "prev" -msgstr "preced" +#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 +#: ../../mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Site-ul de la distanţă a raportat:" -#: ../../include/text.php:305 -msgid "first" -msgstr "prima" +#: ../../mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Eroare Temporară. Vă rugăm să aşteptaţi şi încercaţi din nou." -#: ../../include/text.php:337 -msgid "last" -msgstr "ultima" +#: ../../mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "Introducerea a eşuat sau a fost revocată." -#: ../../include/text.php:340 -msgid "next" -msgstr "următor" +#: ../../mod/dfrn_confirm.php:429 +msgid "Unable to set contact photo." +msgstr "Imposibil de stabilit fotografia de contact." -#: ../../include/text.php:854 -msgid "No contacts" -msgstr "Nici-un contact" +#: ../../mod/dfrn_confirm.php:486 ../../include/diaspora.php:620 +#: ../../include/conversation.php:172 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s este acum prieten cu %2$s" -#: ../../include/text.php:863 +#: ../../mod/dfrn_confirm.php:571 #, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d Contact" -msgstr[1] "%d Contacte" -msgstr[2] "%d de Contacte" +msgid "No user record found for '%s' " +msgstr "Nici-o înregistrare de utilizator găsită pentru '%s'" -#: ../../include/text.php:875 ../../mod/viewcontacts.php:76 -msgid "View Contacts" -msgstr "Vezi Contacte" +#: ../../mod/dfrn_confirm.php:581 +msgid "Our site encryption key is apparently messed up." +msgstr "Se pare că, cheia de criptare a site-ului nostru s-a încurcat." -#: ../../include/text.php:955 ../../mod/editpost.php:109 -#: ../../mod/notes.php:63 ../../mod/filer.php:31 -msgid "Save" -msgstr "Salvare" +#: ../../mod/dfrn_confirm.php:592 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "A fost furnizată o adresă URL goală, sau adresa URL nu poate fi decriptată de noi." -#: ../../include/text.php:1004 -msgid "poke" -msgstr "abordare" +#: ../../mod/dfrn_confirm.php:613 +msgid "Contact record was not found for you on our site." +msgstr "Registrul contactului nu a fost găsit pe site-ul nostru." -#: ../../include/text.php:1005 -msgid "ping" -msgstr "ping" +#: ../../mod/dfrn_confirm.php:627 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Cheia publică a site-ului nu este disponibilă în registrul contactului pentru URL-ul %s." -#: ../../include/text.php:1005 -msgid "pinged" -msgstr "i s-a trimis ping" +#: ../../mod/dfrn_confirm.php:647 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "ID-ul furnizat de către sistemul dumneavoastră este un duplicat pe sistemul nostru. Ar trebui să funcţioneze dacă încercaţi din nou." -#: ../../include/text.php:1006 -msgid "prod" -msgstr "prod" +#: ../../mod/dfrn_confirm.php:658 +msgid "Unable to set your contact credentials on our system." +msgstr "Imposibil de configurat datele dvs. de autentificare, pe sistemul nostru." -#: ../../include/text.php:1006 -msgid "prodded" -msgstr "i s-a atras atenția" +#: ../../mod/dfrn_confirm.php:725 +msgid "Unable to update your contact profile details on our system" +msgstr "Imposibil de actualizat detaliile de profil ale contactului dvs., pe sistemul nostru." -#: ../../include/text.php:1007 -msgid "slap" -msgstr "plesnire" +#: ../../mod/dfrn_confirm.php:797 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s s-a alăturat lui %2$s" -#: ../../include/text.php:1007 -msgid "slapped" -msgstr "a fost plesnit(ă)" +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "Titlul evenimentului şi timpul de pornire sunt necesare." -#: ../../include/text.php:1008 -msgid "finger" -msgstr "indicare" +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "l, F j" -#: ../../include/text.php:1008 -msgid "fingered" -msgstr "a fost indicat(ă)" +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "Editează eveniment" -#: ../../include/text.php:1009 -msgid "rebuff" -msgstr "respingere" +#: ../../mod/events.php:335 ../../include/text.php:1644 +#: ../../include/text.php:1654 +msgid "link to source" +msgstr "link către sursă" -#: ../../include/text.php:1009 -msgid "rebuffed" -msgstr "a fost respins(ă)" +#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:127 +#: ../../boot.php:2114 ../../include/nav.php:80 +msgid "Events" +msgstr "Evenimente" -#: ../../include/text.php:1023 -msgid "happy" -msgstr "fericit(ă)" +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "Crează eveniment nou" -#: ../../include/text.php:1024 -msgid "sad" -msgstr "trist(ă)" +#: ../../mod/events.php:372 +msgid "Previous" +msgstr "Precedent" -#: ../../include/text.php:1025 -msgid "mellow" -msgstr "trist(ă)" +#: ../../mod/events.php:373 ../../mod/install.php:207 +msgid "Next" +msgstr "Next" -#: ../../include/text.php:1026 -msgid "tired" -msgstr "obosit(ă)" +#: ../../mod/events.php:446 +msgid "hour:minute" +msgstr "ore:minute" -#: ../../include/text.php:1027 -msgid "perky" -msgstr "arogant(ă)" +#: ../../mod/events.php:456 +msgid "Event details" +msgstr "Detalii eveniment" -#: ../../include/text.php:1028 -msgid "angry" -msgstr "supărat(ă)" +#: ../../mod/events.php:457 +#, php-format +msgid "Format is %s %s. Starting date and Title are required." +msgstr "Formatul este %s %s.Data de începere și Titlul sunt necesare." -#: ../../include/text.php:1029 -msgid "stupified" -msgstr "stupefiat(ă)" +#: ../../mod/events.php:459 +msgid "Event Starts:" +msgstr "Evenimentul Începe:" -#: ../../include/text.php:1030 -msgid "puzzled" -msgstr "nedumerit(ă)" +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" +msgstr "Cerut" -#: ../../include/text.php:1031 -msgid "interested" -msgstr "interesat(ă)" +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" +msgstr "Data/ora de finalizare nu este cunoscută sau nu este relevantă" -#: ../../include/text.php:1032 -msgid "bitter" -msgstr "amarnic" +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "Evenimentul se Finalizează:" -#: ../../include/text.php:1033 -msgid "cheerful" -msgstr "vesel(ă)" +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "Reglați pentru fusul orar al vizitatorului" -#: ../../include/text.php:1034 -msgid "alive" -msgstr "plin(ă) de viață" +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "Descriere:" -#: ../../include/text.php:1035 -msgid "annoyed" -msgstr "enervat(ă)" +#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1622 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:156 +msgid "Location:" +msgstr "Locaţie:" -#: ../../include/text.php:1036 -msgid "anxious" -msgstr "neliniştit(ă)" +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "Titlu:" -#: ../../include/text.php:1037 -msgid "cranky" -msgstr "irascibil(ă)" +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "Partajează acest eveniment" -#: ../../include/text.php:1038 -msgid "disturbed" -msgstr "perturbat(ă)" +#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:126 +#: ../../boot.php:2097 ../../include/nav.php:78 +msgid "Photos" +msgstr "Poze" -#: ../../include/text.php:1039 -msgid "frustrated" -msgstr "frustrat(ă)" +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "Fişiere" -#: ../../include/text.php:1040 -msgid "motivated" -msgstr "motivat(ă)" +#: ../../mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Bine aţi venit la %s" -#: ../../include/text.php:1041 -msgid "relaxed" -msgstr "relaxat(ă)" +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informaţiile la distanţă despre confidenţialitate, nu sunt disponibile." -#: ../../include/text.php:1042 -msgid "surprised" -msgstr "surprins(ă)" +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Visibil către:" -#: ../../include/text.php:1210 -msgid "Monday" -msgstr "Luni" +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Numărul de mesaje, zilnice de perete, pentru %s a fost depăşit. Mesajul a eşuat." -#: ../../include/text.php:1210 -msgid "Tuesday" -msgstr "Marţi" +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Imposibil de verificat locaţia dvs. de reşedinţă." -#: ../../include/text.php:1210 -msgid "Wednesday" -msgstr "Miercuri" +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Nici-un destinatar." -#: ../../include/text.php:1210 -msgid "Thursday" -msgstr "Joi" +#: ../../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 "Dacă doriţi ca %s să vă răspundă, vă rugăm să verificaţi dacă configurările de confidenţialitate de pe site-ul dumneavoastră, permite mail-uri private de la expeditori necunoscuți." -#: ../../include/text.php:1210 -msgid "Friday" -msgstr "Vineri" +#: ../../mod/nogroup.php:40 ../../mod/contacts.php:479 +#: ../../mod/contacts.php:671 ../../mod/viewcontacts.php:62 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Vizitați profilul %s [%s]" -#: ../../include/text.php:1210 -msgid "Saturday" -msgstr "Sâmbătă" +#: ../../mod/nogroup.php:41 ../../mod/contacts.php:672 +msgid "Edit contact" +msgstr "Editează contact" -#: ../../include/text.php:1210 -msgid "Sunday" -msgstr "Duminică" +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Contactele care nu sunt membre ale unui grup" -#: ../../include/text.php:1214 -msgid "January" -msgstr "Ianuarie" +#: ../../mod/friendica.php:62 +msgid "This is Friendica, version" +msgstr "Friendica, versiunea" -#: ../../include/text.php:1214 -msgid "February" -msgstr "Februarie" +#: ../../mod/friendica.php:63 +msgid "running at web location" +msgstr "rulează la locaţia web" -#: ../../include/text.php:1214 -msgid "March" -msgstr "Martie" +#: ../../mod/friendica.php:65 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Vă rugăm să vizitaţi Friendica.com pentru a afla mai multe despre proiectul Friendica." -#: ../../include/text.php:1214 -msgid "April" -msgstr "Aprilie" +#: ../../mod/friendica.php:67 +msgid "Bug reports and issues: please visit" +msgstr "Rapoarte de erori şi probleme: vă rugăm să vizitaţi" -#: ../../include/text.php:1214 -msgid "May" -msgstr "Mai" +#: ../../mod/friendica.php:68 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Sugestii, laude, donatii, etc. - vă rugăm să trimiteți un email pe \"Info\" at Friendica - dot com" -#: ../../include/text.php:1214 -msgid "June" -msgstr "Iunie" +#: ../../mod/friendica.php:82 +msgid "Installed plugins/addons/apps:" +msgstr "Module/suplimente/aplicații instalate:" -#: ../../include/text.php:1214 -msgid "July" -msgstr "Iulie" +#: ../../mod/friendica.php:95 +msgid "No installed plugins/addons/apps" +msgstr "Module/suplimente/aplicații neinstalate" -#: ../../include/text.php:1214 -msgid "August" -msgstr "August" +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Șterge Contul Meu" -#: ../../include/text.php:1214 -msgid "September" -msgstr "Septembrie" +#: ../../mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Aceasta va elimina complet contul dvs. Odată ce a fostă, această acțiune este nerecuperabilă." -#: ../../include/text.php:1214 -msgid "October" -msgstr "Octombrie" +#: ../../mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Vă rugăm să introduceţi parola dvs. pentru verificare:" -#: ../../include/text.php:1214 -msgid "November" -msgstr "Noiembrie" +#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Dimensiunea imaginii depăşeşte limita de %d" -#: ../../include/text.php:1214 -msgid "December" -msgstr "Decembrie" +#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807 +#: ../../mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Nu s-a putut procesa imaginea." -#: ../../include/text.php:1403 ../../mod/videos.php:301 -msgid "View Video" -msgstr "Vizualizați Clipul Video" +#: ../../mod/wall_upload.php:169 ../../mod/wall_upload.php:178 +#: ../../mod/wall_upload.php:185 ../../mod/item.php:465 +#: ../../include/message.php:144 ../../include/Photo.php:911 +#: ../../include/Photo.php:926 ../../include/Photo.php:933 +#: ../../include/Photo.php:955 +msgid "Wall Photos" +msgstr "Fotografii de Perete" -#: ../../include/text.php:1435 -msgid "bytes" -msgstr "octeţi" +#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834 +#: ../../mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Încărcarea imaginii a eşuat." -#: ../../include/text.php:1459 ../../include/text.php:1471 -msgid "Click to open/close" -msgstr "Apăsați pentru a deschide/închide" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizare conectare aplicaţie" -#: ../../include/text.php:1645 ../../include/text.php:1655 -#: ../../mod/events.php:335 -msgid "link to source" -msgstr "link către sursă" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Reveniți la aplicația dvs. şi introduceţi acest Cod de Securitate:" -#: ../../include/text.php:1700 ../../include/user.php:247 -msgid "default" -msgstr "implicit" +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Vă rugăm să vă autentificați pentru a continua." -#: ../../include/text.php:1712 -msgid "Select an alternate language" -msgstr "Selectați o limbă alternativă" +#: ../../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 "Doriţi să autorizați această aplicaţie pentru a vă accesa postările şi contactele, şi/sau crea noi postări pentru dvs.?" -#: ../../include/text.php:1968 -msgid "activity" -msgstr "activitate" +#: ../../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 a etichetat %3$s de la %2$s cu %4$s" -#: ../../include/text.php:1970 ../../object/Item.php:389 -#: ../../object/Item.php:402 ../../mod/content.php:605 -msgid "comment" -msgid_plural "comments" -msgstr[0] "comentariu" -msgstr[1] "comentarii" -msgstr[2] "comentarii" +#: ../../mod/photos.php:52 ../../boot.php:2100 +msgid "Photo Albums" +msgstr "Albume Photo " -#: ../../include/text.php:1971 -msgid "post" -msgstr "postare" +#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064 +#: ../../mod/photos.php:1189 ../../mod/photos.php:1212 +#: ../../mod/photos.php:1758 ../../mod/photos.php:1770 +#: ../../view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Photo Contact" -#: ../../include/text.php:2139 -msgid "Item filed" -msgstr "Element îndosariat" +#: ../../mod/photos.php:67 ../../mod/photos.php:1228 ../../mod/photos.php:1817 +msgid "Upload New Photos" +msgstr "Încărcaţi Fotografii Noi" -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Deconectat." +#: ../../mod/photos.php:80 ../../mod/settings.php:29 +msgid "everybody" +msgstr "oricine" -#: ../../include/auth.php:112 ../../include/auth.php:175 -#: ../../mod/openid.php:93 -msgid "Login failed." -msgstr "Eşec la conectare" +#: ../../mod/photos.php:144 +msgid "Contact information unavailable" +msgstr "Informaţii contact nedisponibile" -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Am întâmpinat o problemă în timpul autentificării cu datele OpenID pe care le-ați furnizat." +#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1189 +#: ../../mod/photos.php:1212 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:500 +#: ../../include/user.php:335 ../../include/user.php:342 +#: ../../include/user.php:349 +msgid "Profile Photos" +msgstr "Poze profil" -#: ../../include/auth.php:128 ../../include/user.php:67 -msgid "The error message was:" -msgstr "Mesajul de eroare a fost:" +#: ../../mod/photos.php:165 +msgid "Album not found." +msgstr "Album negăsit" -#: ../../include/bbcode.php:449 ../../include/bbcode.php:1050 -#: ../../include/bbcode.php:1051 -msgid "Image/photo" -msgstr "Imagine/fotografie" +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1206 +msgid "Delete Album" +msgstr "Şterge Album" -#: ../../include/bbcode.php:545 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" +#: ../../mod/photos.php:198 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Doriţi într-adevăr să ştergeţi acest album foto și toate fotografiile sale?" -#: ../../include/bbcode.php:579 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s a scris următoarea postare" +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1513 +msgid "Delete Photo" +msgstr "Şterge Poza" -#: ../../include/bbcode.php:1014 ../../include/bbcode.php:1034 -msgid "$1 wrote:" -msgstr "$1 a scris:" +#: ../../mod/photos.php:287 +msgid "Do you really want to delete this photo?" +msgstr "Sigur doriți să ștergeți această fotografie?" -#: ../../include/bbcode.php:1059 ../../include/bbcode.php:1060 -msgid "Encrypted content" -msgstr "Conţinut criptat" +#: ../../mod/photos.php:662 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s a fost etichetat în %2$s de către %3$s" -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Bine ați venit" +#: ../../mod/photos.php:662 +msgid "a photo" +msgstr "o poză" -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Vă rugăm să încărcaţi o fotografie de profil." +#: ../../mod/photos.php:767 +msgid "Image exceeds size limit of " +msgstr "Dimensiunea imaginii depăşeşte limita de" -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Bine ați revenit" +#: ../../mod/photos.php:775 +msgid "Image file is empty." +msgstr "Fișierul imagine este gol." -#: ../../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 "Formarea codului de securitate, nu a fost corectă. Aceasta probabil s-a întâmplat pentru că formularul a fost deschis pentru prea mult timp ( >3 ore) înainte de a-l transmite." +#: ../../mod/photos.php:930 +msgid "No photos selected" +msgstr "Nici-o fotografie selectată" -#: ../../include/oembed.php:205 -msgid "Embedded content" -msgstr "Conţinut încorporat" +#: ../../mod/photos.php:1031 ../../mod/videos.php:226 +msgid "Access to this item is restricted." +msgstr "Accesul la acest element este restricționat." -#: ../../include/oembed.php:214 -msgid "Embedding disabled" -msgstr "Încorporarea conținuturilor este dezactivată" +#: ../../mod/photos.php:1094 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Aţi folosit %1$.2f Mb din %2$.2f Mb de stocare foto." -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Bărbat" +#: ../../mod/photos.php:1129 +msgid "Upload Photos" +msgstr "Încărcare Fotografii" -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Femeie" +#: ../../mod/photos.php:1133 ../../mod/photos.php:1201 +msgid "New album name: " +msgstr "Nume album nou:" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "În prezent Bărbat" +#: ../../mod/photos.php:1134 +msgid "or existing album name: " +msgstr "sau numele unui album existent:" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "În prezent Femeie" +#: ../../mod/photos.php:1135 +msgid "Do not show a status post for this upload" +msgstr "Nu afișa un status pentru această încărcare" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Mai mult Bărbat" +#: ../../mod/photos.php:1137 ../../mod/photos.php:1508 +msgid "Permissions" +msgstr "Permisiuni" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Mai mult Femeie" +#: ../../mod/photos.php:1146 ../../mod/photos.php:1517 +#: ../../mod/settings.php:1145 +msgid "Show to Groups" +msgstr "Afișare pentru Grupuri" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transsexual" +#: ../../mod/photos.php:1147 ../../mod/photos.php:1518 +#: ../../mod/settings.php:1146 +msgid "Show to Contacts" +msgstr "Afişează la Contacte" -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersexual" +#: ../../mod/photos.php:1148 +msgid "Private Photo" +msgstr "Poze private" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transsexual" +#: ../../mod/photos.php:1149 +msgid "Public Photo" +msgstr "Poze Publice" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodit" +#: ../../mod/photos.php:1216 +msgid "Edit Album" +msgstr "Editează Album" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutru" +#: ../../mod/photos.php:1222 +msgid "Show Newest First" +msgstr "Afișează Întâi cele Noi" -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Non-specific" +#: ../../mod/photos.php:1224 +msgid "Show Oldest First" +msgstr "Afișează Întâi cele Vechi" -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Alta" +#: ../../mod/photos.php:1257 ../../mod/photos.php:1800 +msgid "View Photo" +msgstr "Vizualizare Fotografie" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indecisă" +#: ../../mod/photos.php:1292 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permisiune refuzată. Accesul la acest element poate fi restricționat." -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Bărbați" +#: ../../mod/photos.php:1294 +msgid "Photo not available" +msgstr "Fotografia nu este disponibilă" -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Femei" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gay" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbiană" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Fără Preferințe" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisexual" +#: ../../mod/photos.php:1350 +msgid "View photo" +msgstr "Vezi foto" -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosexual" +#: ../../mod/photos.php:1350 +msgid "Edit photo" +msgstr "Editează poza" -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Abstinent(ă)" +#: ../../mod/photos.php:1351 +msgid "Use as profile photo" +msgstr "Utilizați ca și fotografie de profil" -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Virgin(ă)" +#: ../../mod/photos.php:1376 +msgid "View Full Size" +msgstr "Vizualizați la Dimensiunea Completă" -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Deviant" +#: ../../mod/photos.php:1455 +msgid "Tags: " +msgstr "Etichete:" -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetish" +#: ../../mod/photos.php:1458 +msgid "[Remove any tag]" +msgstr "[Elimină orice etichetă]" -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "La grămadă" +#: ../../mod/photos.php:1498 +msgid "Rotate CW (right)" +msgstr "Rotire spre dreapta" -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Nonsexual" +#: ../../mod/photos.php:1499 +msgid "Rotate CCW (left)" +msgstr "Rotire spre stânga" -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Necăsătorit(ă)" +#: ../../mod/photos.php:1501 +msgid "New album name" +msgstr "Nume Nou Album" -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Singur(ă)" +#: ../../mod/photos.php:1504 +msgid "Caption" +msgstr "Titlu" -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Disponibil(ă)" +#: ../../mod/photos.php:1506 +msgid "Add a Tag" +msgstr "Adaugă un Tag" -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Indisponibil(ă)" +#: ../../mod/photos.php:1510 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Exemplu: @Bob, @Barbara_Jensen, @jim@exemplu.com , #California, #camping" -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Îndrăgostit(ă)" +#: ../../mod/photos.php:1519 +msgid "Private photo" +msgstr "Poze private" -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Îndrăgostit(ă) nebunește" +#: ../../mod/photos.php:1520 +msgid "Public photo" +msgstr "Poze Publice" -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Am întâlniri" +#: ../../mod/photos.php:1542 ../../include/conversation.php:1090 +msgid "Share" +msgstr "Partajează" -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Infidel(ă)" +#: ../../mod/photos.php:1806 ../../mod/videos.php:308 +msgid "View Album" +msgstr "Vezi Album" -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Dependent(ă) de Sex" +#: ../../mod/photos.php:1815 +msgid "Recent Photos" +msgstr "Poze Recente" -#: ../../include/profile_selectors.php:42 ../../include/user.php:289 -#: ../../include/user.php:293 -msgid "Friends" -msgstr "Prieteni" +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Niciun profil" -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Prietenii/Prestaţii" +#: ../../mod/register.php:90 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Înregistrarea s-a efectuat cu succes. Vă rugăm să vă verificaţi e-mailul pentru instrucţiuni suplimentare." -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Ocazional" +#: ../../mod/register.php:96 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "" -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Cuplat" +#: ../../mod/register.php:105 +msgid "Your registration can not be processed." +msgstr "Înregistrarea dvs. nu poate fi procesată." -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Căsătorit(ă)" +#: ../../mod/register.php:148 +msgid "Your registration is pending approval by the site owner." +msgstr "Înregistrarea dvs. este în aşteptarea aprobării de către deținătorul site-ului." -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Căsătorit(ă) imaginar" +#: ../../mod/register.php:186 ../../mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Acest site a depăşit numărul zilnic permis al înregistrărilor de conturi. Vă rugăm să reîncercați mâine." -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Parteneri" +#: ../../mod/register.php:214 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Puteți (opțional) să completaÅ£i acest formular prin intermediul OpenID, introducând contul dvs. OpenID și apăsând pe 'Înregistrare'." -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "În conviețuire" +#: ../../mod/register.php:215 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Dacă nu sunteÅ£i familiarizați cu OpenID, vă rugăm să lăsaÅ£i acest câmp gol iar apoi să completaÅ£i restul elementelor." -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "Drept Comun" +#: ../../mod/register.php:216 +msgid "Your OpenID (optional): " +msgstr "Contul dvs. OpenID (opÅ£ional):" -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Fericit(ă)" +#: ../../mod/register.php:230 +msgid "Include your profile in member directory?" +msgstr "Includeți profilul dvs în directorul de membru?" -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Nu caut" +#: ../../mod/register.php:251 +msgid "Membership on this site is by invitation only." +msgstr "Aderare pe acest site, este posibilă doar pe bază de invitație." -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Swinger" +#: ../../mod/register.php:252 +msgid "Your invitation ID: " +msgstr "ID invitaÅ£iei dvs:" -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Înșelat(ă)" +#: ../../mod/register.php:263 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Numele Complet (de ex. Joe Smith):" -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Separat(ă)" +#: ../../mod/register.php:264 +msgid "Your Email Address: " +msgstr "Adresa dvs de mail:" -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Instabil(ă)" +#: ../../mod/register.php:265 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "AlegeÅ£i un pseudonim de profil. Aceasta trebuie să înceapă cu un caracter text. Adresa profilului dvs. de pe acest site va fi de forma 'pseudonim@$sitename'." -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "DivorÅ£at(ă)" +#: ../../mod/register.php:266 +msgid "Choose a nickname: " +msgstr "AlegeÅ£i un pseudonim:" -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "DivorÅ£at(ă) imaginar" +#: ../../mod/register.php:269 ../../boot.php:1215 ../../include/nav.php:109 +msgid "Register" +msgstr "Înregistrare" -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Văduv(ă)" +#: ../../mod/register.php:275 ../../mod/uimport.php:64 +msgid "Import" +msgstr "Import" -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Incert" +#: ../../mod/register.php:276 +msgid "Import your profile to this friendica instance" +msgstr "Importați profilul dvs. în această instanță friendica" -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "E complicat" +#: ../../mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Nici-un cont valid găsit." -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Nu-mi pasă" +#: ../../mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Solicitarea de Resetare Parolă a fost emisă. Verificați-vă emailul." -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Întreabă-mă" +#: ../../mod/lostpass.php:42 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "" -#: ../../include/user.php:40 -msgid "An invitation is required." -msgstr "O invitaÅ£ie este necesară." - -#: ../../include/user.php:45 -msgid "Invitation could not be verified." -msgstr "Invitația nu s-a putut verifica." - -#: ../../include/user.php:53 -msgid "Invalid OpenID url" -msgstr "URL OpenID invalid" - -#: ../../include/user.php:74 -msgid "Please enter the required information." -msgstr "Vă rugăm să introduceți informațiile solicitate." - -#: ../../include/user.php:88 -msgid "Please use a shorter name." -msgstr "Vă rugăm să utilizaÅ£i un nume mai scurt." +#: ../../mod/lostpass.php:53 +#, php-format +msgid "" +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "" -#: ../../include/user.php:90 -msgid "Name too short." -msgstr "Numele este prea scurt." +#: ../../mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Solicitarea de resetare a parolei a fost făcută la %s" -#: ../../include/user.php:105 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Acesta nu pare a fi Numele (Prenumele) dvs. complet" +#: ../../mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Solicitarea nu se poate verifica. (Este posibil să fi solicitat-o anterior.) Resetarea parolei a eșuat." -#: ../../include/user.php:110 -msgid "Your email domain is not among those allowed on this site." -msgstr "Domeniul dvs. de email nu este printre cele permise pe acest site." +#: ../../mod/lostpass.php:109 ../../boot.php:1254 +msgid "Password Reset" +msgstr "Resetare Parolă" -#: ../../include/user.php:113 -msgid "Not a valid email address." -msgstr "Nu este o adresă vaildă de email." +#: ../../mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Parola a fost resetată conform solicitării." -#: ../../include/user.php:126 -msgid "Cannot use that email." -msgstr "Nu se poate utiliza acest email." +#: ../../mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Noua dvs. parolă este" -#: ../../include/user.php:132 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr " \"Pseudonimul\" dvs. poate conÅ£ine numai \"a-z\", \"0-9\", \"-\",, şi \"_\", şi trebuie de asemenea să înceapă cu o literă." +#: ../../mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Salvați sau copiați noua dvs. parolă - şi apoi" -#: ../../include/user.php:138 ../../include/user.php:236 -msgid "Nickname is already registered. Please choose another." -msgstr "Pseudonimul este deja înregistrat. Vă rugăm, alegeți un altul." +#: ../../mod/lostpass.php:113 +msgid "click here to login" +msgstr "click aici pentru logare" -#: ../../include/user.php:148 +#: ../../mod/lostpass.php:114 msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Pseudonimul a fost înregistrat aici, şi e posibil să nu mai poată fi reutilizat. Vă rugăm, alegeți altul." - -#: ../../include/user.php:164 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "EROARE GRAVĂ: Generarea de chei de securitate a eşuat." - -#: ../../include/user.php:222 -msgid "An error occurred during registration. Please try again." -msgstr "A intervenit o eroare în timpul înregistrării. Vă rugăm să reîncercați." - -#: ../../include/user.php:257 -msgid "An error occurred creating your default profile. Please try again." -msgstr "A intervenit o eroare la crearea profilului dvs. implicit. Vă rugăm să reîncercați." +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Parola poate fi schimbată din pagina de Configurări după autentificarea cu succes." -#: ../../include/user.php:377 +#: ../../mod/lostpass.php:125 #, php-format msgid "" "\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" msgstr "" -#: ../../include/user.php:381 +#: ../../mod/lostpass.php:131 +#, php-format msgid "" "\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" +"\t\t\t\tYour login details are as follows:\n" "\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" "\n" -"\t\tThank you and welcome to %2$s." +"\t\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t\t" msgstr "" -#: ../../include/user.php:413 ../../mod/admin.php:799 +#: ../../mod/lostpass.php:147 #, php-format -msgid "Registration details for %s" -msgstr "Detaliile de înregistrare pentru %s" +msgid "Your password has been changed at %s" +msgstr "Parola dumneavoastră a fost schimbată la %s" -#: ../../include/acl_selectors.php:326 -msgid "Visible to everybody" -msgstr "Vizibil pentru toata lumea" +#: ../../mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Ați uitat Parola?" -#: ../../object/Item.php:94 -msgid "This entry was edited" -msgstr "Această intrare a fost editată" +#: ../../mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "IntroduceÅ£i adresa dumneavoastră de email şi trimiteți-o pentru a vă reseta parola. Apoi verificaÅ£i-vă emailul pentru instrucÅ£iuni suplimentare." -#: ../../object/Item.php:116 ../../mod/photos.php:1357 -#: ../../mod/content.php:620 -msgid "Private Message" -msgstr " Mesaj Privat" +#: ../../mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Pseudonim sau Email:" -#: ../../object/Item.php:120 ../../mod/settings.php:673 -#: ../../mod/content.php:728 -msgid "Edit" -msgstr "Edit" +#: ../../mod/lostpass.php:162 +msgid "Reset" +msgstr "Reset" -#: ../../object/Item.php:133 ../../mod/content.php:763 -msgid "save to folder" -msgstr "salvează în directorul" +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Sistemul este suspendat pentru întreținere" -#: ../../object/Item.php:195 ../../mod/content.php:753 -msgid "add star" -msgstr "add stea" +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Elementul nu este disponibil." -#: ../../object/Item.php:196 ../../mod/content.php:754 -msgid "remove star" -msgstr "înlătură stea" +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Element negăsit." -#: ../../object/Item.php:197 ../../mod/content.php:755 -msgid "toggle star status" -msgstr "comută status steluță" +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "Aplicații" -#: ../../object/Item.php:200 ../../mod/content.php:758 -msgid "starred" -msgstr "cu steluță" +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "Nu există aplicații instalate." -#: ../../object/Item.php:208 -msgid "ignore thread" -msgstr "" +#: ../../mod/help.php:79 +msgid "Help:" +msgstr "Ajutor:" -#: ../../object/Item.php:209 -msgid "unignore thread" -msgstr "" +#: ../../mod/help.php:84 ../../include/nav.php:114 +msgid "Help" +msgstr "Ajutor" -#: ../../object/Item.php:210 -msgid "toggle ignore status" -msgstr "" +#: ../../mod/contacts.php:107 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "%d contact editat." +msgstr[1] "%d contacte editate." +msgstr[2] "%d de contacte editate." -#: ../../object/Item.php:213 -msgid "ignored" -msgstr "ignorat" +#: ../../mod/contacts.php:138 ../../mod/contacts.php:267 +msgid "Could not access contact record." +msgstr "Nu se poate accesa registrul contactului." -#: ../../object/Item.php:220 ../../mod/content.php:759 -msgid "add tag" -msgstr "add tag" +#: ../../mod/contacts.php:152 +msgid "Could not locate selected profile." +msgstr "Nu se poate localiza profilul selectat." -#: ../../object/Item.php:231 ../../mod/photos.php:1540 -#: ../../mod/content.php:684 -msgid "I like this (toggle)" -msgstr "I like asta (toggle)" +#: ../../mod/contacts.php:181 +msgid "Contact updated." +msgstr "Contact actualizat." -#: ../../object/Item.php:231 ../../mod/content.php:684 -msgid "like" -msgstr "like" +#: ../../mod/contacts.php:282 +msgid "Contact has been blocked" +msgstr "Contactul a fost blocat" -#: ../../object/Item.php:232 ../../mod/photos.php:1541 -#: ../../mod/content.php:685 -msgid "I don't like this (toggle)" -msgstr "nu îmi place aceasta (comutare)" +#: ../../mod/contacts.php:282 +msgid "Contact has been unblocked" +msgstr "Contactul a fost deblocat" -#: ../../object/Item.php:232 ../../mod/content.php:685 -msgid "dislike" -msgstr "dislike" +#: ../../mod/contacts.php:293 +msgid "Contact has been ignored" +msgstr "Contactul a fost ignorat" -#: ../../object/Item.php:234 ../../mod/content.php:687 -msgid "Share this" -msgstr "Partajează" +#: ../../mod/contacts.php:293 +msgid "Contact has been unignored" +msgstr "Contactul a fost neignorat" -#: ../../object/Item.php:234 ../../mod/content.php:687 -msgid "share" -msgstr "partajează" +#: ../../mod/contacts.php:305 +msgid "Contact has been archived" +msgstr "Contactul a fost arhivat" -#: ../../object/Item.php:328 ../../mod/content.php:854 -msgid "to" -msgstr "către" +#: ../../mod/contacts.php:305 +msgid "Contact has been unarchived" +msgstr "Contactul a fost dezarhivat" -#: ../../object/Item.php:329 -msgid "via" -msgstr "via" +#: ../../mod/contacts.php:330 ../../mod/contacts.php:703 +msgid "Do you really want to delete this contact?" +msgstr "Sigur doriți să ștergeți acest contact?" -#: ../../object/Item.php:330 ../../mod/content.php:855 -msgid "Wall-to-Wall" -msgstr "Perete-prin-Perete" +#: ../../mod/contacts.php:347 +msgid "Contact has been removed." +msgstr "Contactul a fost înlăturat." -#: ../../object/Item.php:331 ../../mod/content.php:856 -msgid "via Wall-To-Wall:" -msgstr "via Perete-Prin-Perete" +#: ../../mod/contacts.php:385 +#, php-format +msgid "You are mutual friends with %s" +msgstr "SunteÅ£i prieten comun cu %s" -#: ../../object/Item.php:387 ../../mod/content.php:603 +#: ../../mod/contacts.php:389 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentariu" -msgstr[1] "%d comentarii" -msgstr[2] "%d comentarii" +msgid "You are sharing with %s" +msgstr "Împărtășiți cu %s" -#: ../../object/Item.php:675 ../../mod/photos.php:1560 -#: ../../mod/photos.php:1604 ../../mod/photos.php:1692 -#: ../../mod/content.php:707 -msgid "This is you" -msgstr "Acesta eşti tu" +#: ../../mod/contacts.php:394 +#, php-format +msgid "%s is sharing with you" +msgstr "%s împărtăşeşte cu dvs." -#: ../../object/Item.php:679 ../../mod/content.php:711 -msgid "Bold" -msgstr "Bold" +#: ../../mod/contacts.php:411 +msgid "Private communications are not available for this contact." +msgstr "ComunicaÅ£iile private nu sunt disponibile pentru acest contact." -#: ../../object/Item.php:680 ../../mod/content.php:712 -msgid "Italic" -msgstr "Italic" +#: ../../mod/contacts.php:418 +msgid "(Update was successful)" +msgstr "(Actualizare a reuşit)" -#: ../../object/Item.php:681 ../../mod/content.php:713 -msgid "Underline" -msgstr "Subliniat" +#: ../../mod/contacts.php:418 +msgid "(Update was not successful)" +msgstr "(Actualizare nu a reuşit)" -#: ../../object/Item.php:682 ../../mod/content.php:714 -msgid "Quote" -msgstr "Citat" +#: ../../mod/contacts.php:420 +msgid "Suggest friends" +msgstr "SugeraÅ£i prieteni" -#: ../../object/Item.php:683 ../../mod/content.php:715 -msgid "Code" -msgstr "Code" +#: ../../mod/contacts.php:424 +#, php-format +msgid "Network type: %s" +msgstr "Tipul rețelei: %s" -#: ../../object/Item.php:684 ../../mod/content.php:716 -msgid "Image" -msgstr "Imagine" +#: ../../mod/contacts.php:427 ../../include/contact_widgets.php:200 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contact în comun" +msgstr[1] "%d contacte în comun" +msgstr[2] "%d de contacte în comun" -#: ../../object/Item.php:685 ../../mod/content.php:717 -msgid "Link" -msgstr "Link" +#: ../../mod/contacts.php:432 +msgid "View all contacts" +msgstr "Vezi toate contactele" -#: ../../object/Item.php:686 ../../mod/content.php:718 -msgid "Video" -msgstr "Video" +#: ../../mod/contacts.php:440 +msgid "Toggle Blocked status" +msgstr "Comutare status Blocat" -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Elementul nu este disponibil." +#: ../../mod/contacts.php:443 ../../mod/contacts.php:497 +#: ../../mod/contacts.php:707 +msgid "Unignore" +msgstr "Anulare ignorare" -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Element negăsit." +#: ../../mod/contacts.php:446 +msgid "Toggle Ignored status" +msgstr "ComutaÅ£i status Ignorat" -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Numărul de mesaje, zilnice de perete, pentru %s a fost depăşit. Mesajul a eşuat." +#: ../../mod/contacts.php:450 ../../mod/contacts.php:708 +msgid "Unarchive" +msgstr "Dezarhivează" -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 -msgid "No recipient selected." -msgstr "Nici-o adresă selectată." +#: ../../mod/contacts.php:450 ../../mod/contacts.php:708 +msgid "Archive" +msgstr "Arhivează" -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Imposibil de verificat locaÅ£ia dvs. de reşedinţă." +#: ../../mod/contacts.php:453 +msgid "Toggle Archive status" +msgstr "ComutaÅ£i status Arhivat" -#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 -msgid "Message could not be sent." -msgstr "Mesajul nu a putut fi trimis." +#: ../../mod/contacts.php:456 +msgid "Repair" +msgstr "Repară" -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "Eșec de colectare mesaj." +#: ../../mod/contacts.php:459 +msgid "Advanced Contact Settings" +msgstr "Configurări Avansate Contacte" -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -msgid "Message sent." -msgstr "Mesaj trimis." +#: ../../mod/contacts.php:465 +msgid "Communications lost with this contact!" +msgstr "S-a pierdut conexiunea cu acest contact!" -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Nici-un destinatar." +#: ../../mod/contacts.php:468 +msgid "Contact Editor" +msgstr "Editor Contact" -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 -msgid "Send Private Message" -msgstr "Trimite mesaj privat" +#: ../../mod/contacts.php:471 +msgid "Profile Visibility" +msgstr "Vizibilitate Profil" -#: ../../mod/wallmessage.php:143 +#: ../../mod/contacts.php:472 #, 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 "Dacă doriÅ£i ca %s să vă răspundă, vă rugăm să verificaÅ£i dacă configurările de confidenÅ£ialitate de pe site-ul dumneavoastră, permite mail-uri private de la expeditori necunoscuți." +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Vă rugăm să alegeÅ£i profilul pe care doriÅ£i să îl afişaÅ£i pentru %s când acesta vă vizitează profuilul în mod securizat." -#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 -#: ../../mod/message.php:553 -msgid "To:" -msgstr "Către: " +#: ../../mod/contacts.php:473 +msgid "Contact Information / Notes" +msgstr "InformaÅ£ii de Contact / Note" -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 -msgid "Subject:" -msgstr "Subiect:" +#: ../../mod/contacts.php:474 +msgid "Edit contact notes" +msgstr "Editare note de contact" -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -#: ../../mod/message.php:329 ../../mod/message.php:558 -msgid "Your message:" -msgstr "Mesajul dvs :" +#: ../../mod/contacts.php:480 +msgid "Block/Unblock contact" +msgstr "Blocare/Deblocare contact" -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Grupul a fost creat." +#: ../../mod/contacts.php:481 +msgid "Ignore contact" +msgstr "Ignorare contact" -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Grupul nu se poate crea." +#: ../../mod/contacts.php:482 +msgid "Repair URL settings" +msgstr "Remediere configurări URL" -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Grupul nu a fost găsit." +#: ../../mod/contacts.php:483 +msgid "View conversations" +msgstr "VizualizaÅ£i conversaÅ£ii" -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Numele grupului a fost schimbat." +#: ../../mod/contacts.php:485 +msgid "Delete contact" +msgstr "Şterge contact" -#: ../../mod/group.php:87 -msgid "Save Group" -msgstr "Salvare Grup" +#: ../../mod/contacts.php:489 +msgid "Last update:" +msgstr "Ultima actualizare:" -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "CreaÅ£i un grup de contacte/prieteni." +#: ../../mod/contacts.php:491 +msgid "Update public posts" +msgstr "Actualizare postări publice" -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Nume Grup:" +#: ../../mod/contacts.php:500 +msgid "Currently blocked" +msgstr "Blocat în prezent" -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Grupul a fost eliminat." +#: ../../mod/contacts.php:501 +msgid "Currently ignored" +msgstr "Ignorat în prezent" -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Nu se poate elimina grupul." +#: ../../mod/contacts.php:502 +msgid "Currently archived" +msgstr "Arhivat în prezent" -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Editor Grup" +#: ../../mod/contacts.php:503 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Răspunsurile/aprecierile pentru postările dvs. publice ar putea fi încă vizibile" -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Membri" - -#: ../../mod/group.php:194 ../../mod/contacts.php:562 -msgid "All Contacts" -msgstr "Toate Contactele" +#: ../../mod/contacts.php:504 +msgid "Notification for new posts" +msgstr "Notificare de postări noi" -#: ../../mod/group.php:224 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." -msgstr "Apăsați pe un contact pentru a-l adăuga sau elimina." +#: ../../mod/contacts.php:504 +msgid "Send a notification of every new post of this contact" +msgstr "Trimiteți o notificare despre fiecare postare nouă a acestui contact" -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Nici-un delegat potenÅ£ial de pagină, nu a putut fi localizat." +#: ../../mod/contacts.php:505 +msgid "Fetch further information for feeds" +msgstr "Preluare informaÅ£ii suplimentare pentru fluxuri" -#: ../../mod/delegate.php:126 -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 "Delegații sunt capabili să gestioneze toate aspectele acestui cont/pagină, cu excepÅ£ia configurărilor de bază ale contului. Vă rugăm să nu vă delegați, contul dvs. personal, cuiva în care nu aveÅ£i încredere deplină." +#: ../../mod/contacts.php:556 +msgid "Suggestions" +msgstr "Sugestii" -#: ../../mod/delegate.php:127 -msgid "Existing Page Managers" -msgstr "Gestionari Existenți Pagină" +#: ../../mod/contacts.php:559 +msgid "Suggest potential friends" +msgstr "SugeraÅ£i prieteni potențiali" -#: ../../mod/delegate.php:129 -msgid "Existing Page Delegates" -msgstr "Delegați Existenți Pagină" +#: ../../mod/contacts.php:562 ../../mod/group.php:194 +msgid "All Contacts" +msgstr "Toate Contactele" -#: ../../mod/delegate.php:131 -msgid "Potential Delegates" -msgstr "PotenÅ£iali DelegaÅ£i" +#: ../../mod/contacts.php:565 +msgid "Show all contacts" +msgstr "Afişează toate contactele" -#: ../../mod/delegate.php:133 ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Eliminare" +#: ../../mod/contacts.php:568 +msgid "Unblocked" +msgstr "Deblocat" -#: ../../mod/delegate.php:134 -msgid "Add" -msgstr "Adăugare" +#: ../../mod/contacts.php:571 +msgid "Only show unblocked contacts" +msgstr "Se afişează numai contactele deblocate" -#: ../../mod/delegate.php:135 -msgid "No entries." -msgstr "Nu există intrări." +#: ../../mod/contacts.php:575 +msgid "Blocked" +msgstr "Blocat" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Datele de identificare solicitate, sunt invalide." +#: ../../mod/contacts.php:578 +msgid "Only show blocked contacts" +msgstr "Se afişează numai contactele blocate" -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "Renunțați" +#: ../../mod/contacts.php:582 +msgid "Ignored" +msgstr "Ignorat" -#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:210 ../../mod/contacts.php:443 -#: ../../mod/contacts.php:497 ../../mod/contacts.php:707 -msgid "Ignore" -msgstr "Ignoră" +#: ../../mod/contacts.php:585 +msgid "Only show ignored contacts" +msgstr "Se afişează numai contactele ignorate" -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "System" +#: ../../mod/contacts.php:589 +msgid "Archived" +msgstr "Arhivat" -#: ../../mod/notifications.php:88 ../../mod/network.php:365 -msgid "Personal" -msgstr "Personal" +#: ../../mod/contacts.php:592 +msgid "Only show archived contacts" +msgstr "Se afişează numai contactele arhivate" -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Afişare Solicitări Ignorate" +#: ../../mod/contacts.php:596 +msgid "Hidden" +msgstr "Ascuns" -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Ascundere Solicitări Ignorate" +#: ../../mod/contacts.php:599 +msgid "Only show hidden contacts" +msgstr "Se afişează numai contactele ascunse" -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "Tip Notificări:" +#: ../../mod/contacts.php:647 +msgid "Mutual Friendship" +msgstr "Prietenie Reciprocă" -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Sugestie Prietenie" +#: ../../mod/contacts.php:651 +msgid "is a fan of yours" +msgstr "este fanul dvs." -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "sugerat de către %s" +#: ../../mod/contacts.php:655 +msgid "you are a fan of" +msgstr "sunteÅ£i un fan al" -#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 -#: ../../mod/contacts.php:503 -msgid "Hide this contact from others" -msgstr "Ascunde acest contact pentru alÅ£ii" +#: ../../mod/contacts.php:694 ../../view/theme/diabook/theme.php:125 +#: ../../include/nav.php:175 +msgid "Contacts" +msgstr "Contacte" -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "PublicaÅ£i prietenului o nouă activitate" +#: ../../mod/contacts.php:698 +msgid "Search your contacts" +msgstr "Căutare contacte" -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "dacă i posibil" +#: ../../mod/contacts.php:699 ../../mod/directory.php:61 +msgid "Finding: " +msgstr "Găsire:" -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 -#: ../../mod/admin.php:966 -msgid "Approve" -msgstr "Aprobă" +#: ../../mod/contacts.php:700 ../../mod/directory.php:63 +#: ../../include/contact_widgets.php:34 +msgid "Find" +msgstr "Căutare" -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Pretinde că vă cunoaște:" +#: ../../mod/contacts.php:705 ../../mod/settings.php:132 +#: ../../mod/settings.php:637 +msgid "Update" +msgstr "Actualizare" -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "da" +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "Nici-un clip video selectat" -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "nu" +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "Clipuri video recente" -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Aprobă ca:" +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "ÎncărcaÅ£i Clipuri Video Noi" -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "Prieten" +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Prieteni Comuni" -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "Distribuitor" +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Nici-un contact în comun" -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "Fan/Admirator" +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Contact addăugat" -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "Prieten/Solicitare de Conectare" +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "MutaÅ£i contul" -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "SusÅ£inător Nou" +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "PuteÅ£i importa un cont dintr-un alt server Friendica." -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "Fără prezentări." +#: ../../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 "Trebuie să vă exportați contul din vechiul server şi să-l încărcaÅ£i aici. Vă vom recrea vechiul cont, aici cu toate contactele sale. Vom încerca de altfel să vă informăm prietenii că v-ați mutat aici." -#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 -#: ../../mod/notifications.php:478 -#, php-format -msgid "%s liked %s's post" -msgstr "%s a apreciat ceea a publicat %s" +#: ../../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 "Această caracteristică este experimentală. Nu putem importa contactele din reÅ£eaua OStatus (statusnet/identi.ca) sau din Diaspora" -#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 -#: ../../mod/notifications.php:488 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s a nu a apreciat ceea a publicat %s" +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "Fişier Cont" -#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 -#: ../../mod/notifications.php:503 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s este acum prieten cu %s" +#: ../../mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Pentru a vă exporta contul, deplasaÅ£i-vă la \"Configurări- >Export date personale \" şi selectaÅ£i \"Exportare cont \"" -#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 +#: ../../mod/subthread.php:103 #, php-format -msgid "%s created a new post" -msgstr "%s a creat o nouă postare" +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s urmărește %3$s postată %2$s" -#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 -#: ../../mod/notifications.php:513 +#: ../../mod/allfriends.php:34 #, php-format -msgid "%s commented on %s's post" -msgstr "%s a comentat la articolul postat de %s" +msgid "Friends of %s" +msgstr "Prieteni cu %s" -#: ../../mod/notifications.php:306 -msgid "No more network notifications." -msgstr "Nu mai există notificări de reÅ£ea." +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Nici-un prieten de afișat." -#: ../../mod/notifications.php:310 -msgid "Network Notifications" -msgstr "Notificări de ReÅ£ea" +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Etichetă eliminată" -#: ../../mod/notifications.php:336 ../../mod/notify.php:75 -msgid "No more system notifications." -msgstr "Nu mai există notificări de sistem." +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Eliminați Eticheta Elementului" -#: ../../mod/notifications.php:340 ../../mod/notify.php:79 -msgid "System Notifications" -msgstr "Notificări de Sistem" +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Selectați o etichetă de eliminat:" -#: ../../mod/notifications.php:435 -msgid "No more personal notifications." -msgstr "Nici o notificare personală" +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139 +msgid "Remove" +msgstr "Eliminare" -#: ../../mod/notifications.php:439 -msgid "Personal Notifications" -msgstr "Notificări personale" +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Bun Venit la Friendica" -#: ../../mod/notifications.php:520 -msgid "No more home notifications." -msgstr "Nu mai există notificări de origine." +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Lista de Verificare Membrii Noi" -#: ../../mod/notifications.php:524 -msgid "Home Notifications" -msgstr "Notificări de Origine" +#: ../../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 "Dorim să vă oferim câteva sfaturi şi legături pentru a vă ajuta să aveți o experienţă cât mai plăcută. Apăsați pe orice element pentru a vizita pagina relevantă. O legătură către această pagină va fi vizibilă de pe pagina principală, pentru două săptămâni după înregistrarea dvs. iniÅ£ială, iar apoi va dispare în tăcere." -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Niciun profil" +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "Noțiuni de Bază" -#: ../../mod/settings.php:29 ../../mod/photos.php:80 -msgid "everybody" -msgstr "oricine" +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Ghidul de Prezentare Friendica" -#: ../../mod/settings.php:36 ../../mod/admin.php:977 -msgid "Account" -msgstr "Cont" +#: ../../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 "Pe pagina dvs. de Pornire Rapidă - veți găsi o scurtă introducere pentru profilul dvs. şi pentru filele de reÅ£ea, veți face câteva conexiuni noi, şi veți găsi câteva grupuri la care să vă alăturați." -#: ../../mod/settings.php:41 -msgid "Additional features" -msgstr "Caracteristici suplimentare" +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Mergeți la Configurări" -#: ../../mod/settings.php:46 -msgid "Display" -msgstr "Afișare" +#: ../../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 "Din pagina dvs. de Configurări - schimbaÅ£i-vă parola iniÅ£ială. De asemenea creați o notă pentru Adresa dvs. de Identificare. Aceasta arată exact ca o adresă de email - şi va fi utilă la stabilirea de prietenii pe rețeaua socială web gratuită." -#: ../../mod/settings.php:52 ../../mod/settings.php:777 -msgid "Social Networks" -msgstr "Rețele Sociale" +#: ../../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 "Revizuiți celelalte configurări, în special configurările de confidenÅ£ialitate. O listă de directoare nepublicate este ca și cum ați avea un număr de telefon necatalogat. În general, ar trebui probabil să vă publicați lista - cu excepÅ£ia cazului în care toți prietenii şi potenÅ£ialii prieteni, știu exact cum să vă găsească." -#: ../../mod/settings.php:57 ../../mod/admin.php:106 ../../mod/admin.php:1063 -#: ../../mod/admin.php:1116 -msgid "Plugins" -msgstr "Pluginuri" +#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2090 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87 +#: ../../include/nav.php:77 +msgid "Profile" +msgstr "Profil" -#: ../../mod/settings.php:67 -msgid "Connected apps" -msgstr "Aplicații Conectate" +#: ../../mod/newmember.php:36 ../../mod/profiles.php:658 +#: ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "Încărcare Fotografie Profil" -#: ../../mod/settings.php:72 ../../mod/uexport.php:85 -msgid "Export personal data" -msgstr "Exportare date personale" +#: ../../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 "ÎncărcaÅ£i o fotografie de profil, dacă nu aÅ£i făcut-o deja.Studiile au arătat că, pentru persoanele cu fotografiile lor reale, există de zece ori mai multe şanse să-și facă prieteni, decât cei care nu folosesc fotografii reale." -#: ../../mod/settings.php:77 -msgid "Remove account" -msgstr "Ștergere cont" +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Editare Profil" -#: ../../mod/settings.php:129 -msgid "Missing some important data!" -msgstr "Lipsesc unele date importante!" +#: ../../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 "EditaÅ£i-vă profilul Implicit după bunul plac. Revizuiți configurările pentru a ascunde lista dvs. de prieteni și pentru ascunderea profilului dvs., de vizitatorii necunoscuți." -#: ../../mod/settings.php:132 ../../mod/settings.php:637 -#: ../../mod/contacts.php:705 -msgid "Update" -msgstr "Actualizare" +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Cuvinte-Cheie Profil" -#: ../../mod/settings.php:238 -msgid "Failed to connect with email account using the settings provided." -msgstr "A eşuat conectarea cu, contul de email, folosind configurările furnizate." +#: ../../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 "Stabiliți câteva cuvinte-cheie publice pentru profilul dvs. implicit, cuvinte ce descriu cel mai bine interesele dvs. Vom putea astfel găsi alte persoane cu interese similare și vă vom sugera prietenia lor." -#: ../../mod/settings.php:243 -msgid "Email settings updated." -msgstr "Configurările de email au fost actualizate." +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "Conectare" -#: ../../mod/settings.php:258 -msgid "Features updated" -msgstr "Caracteristici actualizate" +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" -#: ../../mod/settings.php:321 -msgid "Relocate message has been send to your contacts" -msgstr "Mesajul despre mutare, a fost trimis către contactele dvs." +#: ../../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 "Autorizați Conectorul Facebook dacă dețineți în prezent un cont pe Facebook, şi vom importa (opțional) toți prietenii și toate conversațiile de pe Facebook." -#: ../../mod/settings.php:335 -msgid "Passwords do not match. Password unchanged." -msgstr "Parolele nu coincid. Parolă neschimbată." +#: ../../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 "Dacă aceasta este propriul dvs. server, instalarea suplimentului Facebook, vă poate uşura tranziÅ£ia la reÅ£eaua socială web gratuită." -#: ../../mod/settings.php:340 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Parolele necompletate nu sunt permise. Parolă neschimbată." +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "Importare Email-uri" -#: ../../mod/settings.php:348 -msgid "Wrong password." -msgstr "Parolă greșită." +#: ../../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 "IntroduceÅ£i informațiile dvs. de acces la email adresa de email, în pagina dvs. de Configurări Conector, dacă doriți să importați și să interacționați cu prietenii sau cu listele de email din Căsuța dvs. de Mesaje Primite." -#: ../../mod/settings.php:359 -msgid "Password changed." -msgstr "Parola a fost schimbată." +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Dute la pagina ta Contacte " -#: ../../mod/settings.php:361 -msgid "Password update failed. Please try again." -msgstr "Actualizarea parolei a eșuat. Vă rugăm să reîncercați." +#: ../../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 "Pagina dvs. de Contact este poarta dvs. de acces către administrarea prieteniilor şi pentru conectarea cu prietenii din alte rețele. În general, introduceți adresa lor sau URL-ul către site, folosind dialogul Adăugare Contact Nou." -#: ../../mod/settings.php:426 -msgid " Please use a shorter name." -msgstr "Vă rugăm să utilizaÅ£i un nume mai scurt." +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "MergeÅ£i la Directorul Site-ului" -#: ../../mod/settings.php:428 -msgid " Name too short." -msgstr "Numele este prea scurt." +#: ../../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 "Pagina Directorului vă permite să găsiÅ£i alte persoane în această reÅ£ea sau în alte site-uri asociate. CăutaÅ£i o legătură de Conectare sau Urmărire pe pagina lor de profil. Oferiți propria dvs. Adresă de Identitate dacă se solicită." -#: ../../mod/settings.php:437 -msgid "Wrong Password" -msgstr "Parolă Greșită" +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "Găsire Persoane Noi" -#: ../../mod/settings.php:442 -msgid " Not valid email." -msgstr "Nu este un email valid." +#: ../../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 "Pe panoul lateral al paginii Contacte sunt câteva unelte utile pentru a găsi noi prieteni. Putem asocia persoanele după interese, căuta persoane după nume sau interes, şi vă putem oferi sugestii bazate pe relaÅ£iile din reÅ£ea. Pe un site nou-nouț, sugestiile de prietenie vor începe în mod normal să fie populate în termen de 24 de ore." -#: ../../mod/settings.php:448 -msgid " Cannot change to that email." -msgstr "Nu poate schimba cu acest email." +#: ../../mod/newmember.php:66 ../../include/group.php:270 +msgid "Groups" +msgstr "Groupuri" -#: ../../mod/settings.php:503 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Forumul privat nu are permisiuni de confidenÅ£ialitate. Se folosește confidențialitatea implicită de grup." +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Grupați-vă Contactele" -#: ../../mod/settings.php:507 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Forumul Privat nu are permisiuni de confidenÅ£ialitate şi nici o confidențialitate implicită de grup." +#: ../../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 "Odată ce v-aÅ£i făcut unele prietenii, organizaÅ£i-le în grupuri de conversaÅ£ii private din bara laterală a paginii dvs. de Contact şi apoi puteÅ£i interacționa, privat cu fiecare grup pe pagina dumneavoastră de ReÅ£ea." -#: ../../mod/settings.php:537 -msgid "Settings updated." -msgstr "Configurări actualizate." +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "De ce nu sunt Postările Mele Publice?" -#: ../../mod/settings.php:610 ../../mod/settings.php:636 -#: ../../mod/settings.php:672 -msgid "Add application" -msgstr "Adăugare aplicaÅ£ie" +#: ../../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 vă respectă confidenÅ£ialitatea. Implicit, postările dvs. vor fi afişate numai persoanelor pe care le-ați adăugat ca și prieteni. Pentru mai multe informaÅ£ii, consultaÅ£i secÅ£iunea de asistenţă din legătura de mai sus." -#: ../../mod/settings.php:611 ../../mod/settings.php:721 -#: ../../mod/settings.php:795 ../../mod/settings.php:877 -#: ../../mod/settings.php:1110 ../../mod/admin.php:588 -#: ../../mod/admin.php:1117 ../../mod/admin.php:1319 ../../mod/admin.php:1406 -msgid "Save Settings" -msgstr "Salvare Configurări" +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "ObÅ£inerea de Ajutor" -#: ../../mod/settings.php:613 ../../mod/settings.php:639 -#: ../../mod/admin.php:964 ../../mod/admin.php:976 ../../mod/admin.php:977 -#: ../../mod/admin.php:990 ../../mod/crepair.php:158 -msgid "Name" -msgstr "Nume" +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Navigați la Secțiunea Ajutor" + +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Paginile noastre de ajutor pot fi consultate pentru detalii, prin alte funcții şi resurse de program." + +#: ../../mod/search.php:21 ../../mod/network.php:179 +msgid "Remove term" +msgstr "Eliminare termen" + +#: ../../mod/search.php:30 ../../mod/network.php:188 +#: ../../include/features.php:42 +msgid "Saved Searches" +msgstr "Căutări Salvate" + +#: ../../mod/search.php:99 ../../include/text.php:952 +#: ../../include/text.php:953 ../../include/nav.php:119 +msgid "Search" +msgstr "Căutare" + +#: ../../mod/search.php:170 ../../mod/search.php:196 +#: ../../mod/community.php:62 ../../mod/community.php:71 +msgid "No results." +msgstr "Nici-un rezultat." + +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limita totală a invitațiilor a fost depăşită." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Nu este o adresă vaildă de email." + +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Vă rugăm să veniți alături de noi pe Friendica" + +#: ../../mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limita invitațiilor a fost depăşită. Vă rugăm să vă contactați administratorul de sistem." + +#: ../../mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Livrarea mesajului a eşuat." + +#: ../../mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d mesaj trimis." +msgstr[1] "%d mesaje trimise." +msgstr[2] "%d de mesaje trimise." + +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Nu mai aveți invitaÅ£ii disponibile" + +#: ../../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 "VizitaÅ£i %s pentru o lista de site-uri publice la care puteÅ£i alătura. Membrii Friendica de pe alte site-uri se pot conecta cu toții între ei, precum şi cu membri ai multor alte reÅ£ele sociale." + +#: ../../mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Pentru a accepta această invitaÅ£ie, vă rugăm să vizitaÅ£i şi să vă înregistraÅ£i pe %s sau orice alt site public Friendica." + +#: ../../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 "Toate site-urile Friendica sunt interconectate pentru a crea o imensă rețea socială cu o confidențialitate sporită, ce este deținută și controlată de către membrii săi. Aceștia se pot conecta, de asemenea, cu multe rețele sociale tradiționale. VizitaÅ£i %s pentru o lista de site-uri alternative Friendica în care vă puteÅ£i alătura." + +#: ../../mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Ne cerem scuze. Acest sistem nu este configurat în prezent pentru conectarea cu alte site-uri publice sau pentru a invita membrii." + +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "Trimiteți invitaÅ£ii" + +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "IntroduceÅ£i adresele de email, una pe linie:" + +#: ../../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 "Vă invit cordial să vă alăturați mie, si altor prieteni apropiați, pe Friendica - şi să ne ajutați să creăm o rețea socială mai bună." + +#: ../../mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Va fi nevoie să furnizați acest cod de invitaÅ£ie: $invite_code" + +#: ../../mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Odată ce v-aÅ£i înregistrat, vă rog să vă conectaÅ£i cu mine prin pagina mea de profil de la:" + +#: ../../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 "Pentru mai multe informaÅ£ii despre proiectul Friendica, şi de ce credem că este important, vă rugăm să vizitaÅ£i http://friendica.com" + +#: ../../mod/settings.php:41 +msgid "Additional features" +msgstr "Caracteristici suplimentare" + +#: ../../mod/settings.php:46 +msgid "Display" +msgstr "Afișare" + +#: ../../mod/settings.php:52 ../../mod/settings.php:777 +msgid "Social Networks" +msgstr "Rețele Sociale" + +#: ../../mod/settings.php:62 ../../include/nav.php:168 +msgid "Delegations" +msgstr "Delegații" + +#: ../../mod/settings.php:67 +msgid "Connected apps" +msgstr "Aplicații Conectate" + +#: ../../mod/settings.php:72 ../../mod/uexport.php:85 +msgid "Export personal data" +msgstr "Exportare date personale" + +#: ../../mod/settings.php:77 +msgid "Remove account" +msgstr "Ștergere cont" + +#: ../../mod/settings.php:129 +msgid "Missing some important data!" +msgstr "Lipsesc unele date importante!" + +#: ../../mod/settings.php:238 +msgid "Failed to connect with email account using the settings provided." +msgstr "A eşuat conectarea cu, contul de email, folosind configurările furnizate." + +#: ../../mod/settings.php:243 +msgid "Email settings updated." +msgstr "Configurările de email au fost actualizate." + +#: ../../mod/settings.php:258 +msgid "Features updated" +msgstr "Caracteristici actualizate" + +#: ../../mod/settings.php:321 +msgid "Relocate message has been send to your contacts" +msgstr "Mesajul despre mutare, a fost trimis către contactele dvs." + +#: ../../mod/settings.php:335 +msgid "Passwords do not match. Password unchanged." +msgstr "Parolele nu coincid. Parolă neschimbată." + +#: ../../mod/settings.php:340 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Parolele necompletate nu sunt permise. Parolă neschimbată." + +#: ../../mod/settings.php:348 +msgid "Wrong password." +msgstr "Parolă greșită." + +#: ../../mod/settings.php:359 +msgid "Password changed." +msgstr "Parola a fost schimbată." + +#: ../../mod/settings.php:361 +msgid "Password update failed. Please try again." +msgstr "Actualizarea parolei a eșuat. Vă rugăm să reîncercați." + +#: ../../mod/settings.php:426 +msgid " Please use a shorter name." +msgstr "Vă rugăm să utilizaÅ£i un nume mai scurt." + +#: ../../mod/settings.php:428 +msgid " Name too short." +msgstr "Numele este prea scurt." + +#: ../../mod/settings.php:437 +msgid "Wrong Password" +msgstr "Parolă Greșită" + +#: ../../mod/settings.php:442 +msgid " Not valid email." +msgstr "Nu este un email valid." + +#: ../../mod/settings.php:448 +msgid " Cannot change to that email." +msgstr "Nu poate schimba cu acest email." + +#: ../../mod/settings.php:503 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Forumul privat nu are permisiuni de confidenÅ£ialitate. Se folosește confidențialitatea implicită de grup." + +#: ../../mod/settings.php:507 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Forumul Privat nu are permisiuni de confidenÅ£ialitate şi nici o confidențialitate implicită de grup." + +#: ../../mod/settings.php:537 +msgid "Settings updated." +msgstr "Configurări actualizate." + +#: ../../mod/settings.php:610 ../../mod/settings.php:636 +#: ../../mod/settings.php:672 +msgid "Add application" +msgstr "Adăugare aplicaÅ£ie" #: ../../mod/settings.php:614 ../../mod/settings.php:640 msgid "Consumer Key" @@ -3645,10 +3782,6 @@ msgstr "Mutare în dosar" msgid "Move to folder:" msgstr "Mutare în dosarul:" -#: ../../mod/settings.php:825 ../../mod/admin.php:523 -msgid "No special theme for mobile devices" -msgstr "Nici-o temă specială pentru dispozitive mobile" - #: ../../mod/settings.php:875 msgid "Display Settings" msgstr "Preferințe Ecran" @@ -3758,18 +3891,6 @@ msgstr "(OpÅ£ional) Permite acest OpenID să se conecteze la acest cont." msgid "Publish your default profile in your local site directory?" msgstr "Publicați profilul dvs. implicit în directorul site-ului dvs. local?" -#: ../../mod/settings.php:1007 ../../mod/settings.php:1013 -#: ../../mod/settings.php:1021 ../../mod/settings.php:1025 -#: ../../mod/settings.php:1030 ../../mod/settings.php:1036 -#: ../../mod/settings.php:1042 ../../mod/settings.php:1048 -#: ../../mod/settings.php:1078 ../../mod/settings.php:1079 -#: ../../mod/settings.php:1080 ../../mod/settings.php:1081 -#: ../../mod/settings.php:1082 ../../mod/register.php:231 -#: ../../mod/dfrn_request.php:834 ../../mod/api.php:106 -#: ../../mod/profiles.php:620 ../../mod/profiles.php:624 -msgid "No" -msgstr "NU" - #: ../../mod/settings.php:1013 msgid "Publish your default profile in the global social directory?" msgstr "Publicați profilul dvs. implicit în directorul social global?" @@ -3778,6 +3899,10 @@ msgstr "Publicați profilul dvs. implicit în directorul social global?" msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "AscundeÅ£i lista dvs. de contacte/prieteni de vizitatorii profilului dvs. implicit?" +#: ../../mod/settings.php:1025 ../../include/conversation.php:1057 +msgid "Hide your profile details from unknown viewers?" +msgstr "AscundeÅ£i detaliile profilului dvs. de vizitatorii necunoscuți?" + #: ../../mod/settings.php:1030 msgid "Allow friends to post to your profile page?" msgstr "Permiteți prietenilor să posteze pe pagina dvs. de profil ?" @@ -3878,6 +4003,10 @@ msgstr "Parola:" msgid "Basic Settings" msgstr "Configurări de Bază" +#: ../../mod/settings.php:1125 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "Nume complet:" + #: ../../mod/settings.php:1126 msgid "Email Address:" msgstr "Adresa de email:" @@ -3914,16 +4043,6 @@ msgstr "Permisiuni Implicite Postări" msgid "(click to open/close)" msgstr "(apăsați pentru a deschide/închide)" -#: ../../mod/settings.php:1145 ../../mod/photos.php:1146 -#: ../../mod/photos.php:1517 -msgid "Show to Groups" -msgstr "Afișare pentru Grupuri" - -#: ../../mod/settings.php:1146 ../../mod/photos.php:1147 -#: ../../mod/photos.php:1518 -msgid "Show to Contacts" -msgstr "Afişează la Contacte" - #: ../../mod/settings.php:1147 msgid "Default Private Post" msgstr "Postare Privată Implicită" @@ -4018,357 +4137,351 @@ msgstr "Dacă aÅ£i mutat acest profil dintr-un alt server, şi unele dintre cont msgid "Resend relocate message to contacts" msgstr "Retrimiteți contactelor, mesajul despre mutare" -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Prieteni Comuni" +#: ../../mod/display.php:452 +msgid "Item has been removed." +msgstr "Elementul a fost eliminat." -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Nici-un contact în comun" +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Căutare Persoane" -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "InformaÅ£iile la distanţă despre confidenÅ£ialitate, nu sunt disponibile." +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "Nici-o potrivire" -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Visibil către:" +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profilul a fost şters." -#: ../../mod/contacts.php:107 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "%d contact editat." -msgstr[1] "%d contacte editate." -msgstr[2] "%d de contacte editate." +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" +msgstr "Profil-" -#: ../../mod/contacts.php:138 ../../mod/contacts.php:267 -msgid "Could not access contact record." -msgstr "Nu se poate accesa registrul contactului." +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." +msgstr "Profilul nou a fost creat." -#: ../../mod/contacts.php:152 -msgid "Could not locate selected profile." -msgstr "Nu se poate localiza profilul selectat." +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Profil indisponibil pentru clonare." -#: ../../mod/contacts.php:181 -msgid "Contact updated." -msgstr "Contact actualizat." +#: ../../mod/profiles.php:172 +msgid "Profile Name is required." +msgstr "Numele de Profil este necesar." -#: ../../mod/contacts.php:183 ../../mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Actualizarea datelor de contact a eşuat." +#: ../../mod/profiles.php:323 +msgid "Marital Status" +msgstr "Starea Civilă" -#: ../../mod/contacts.php:282 -msgid "Contact has been blocked" -msgstr "Contactul a fost blocat" +#: ../../mod/profiles.php:327 +msgid "Romantic Partner" +msgstr "Partener Romantic" -#: ../../mod/contacts.php:282 -msgid "Contact has been unblocked" -msgstr "Contactul a fost deblocat" +#: ../../mod/profiles.php:331 +msgid "Likes" +msgstr "Likes" -#: ../../mod/contacts.php:293 -msgid "Contact has been ignored" -msgstr "Contactul a fost ignorat" +#: ../../mod/profiles.php:335 +msgid "Dislikes" +msgstr "Antipatii" -#: ../../mod/contacts.php:293 -msgid "Contact has been unignored" -msgstr "Contactul a fost neignorat" +#: ../../mod/profiles.php:339 +msgid "Work/Employment" +msgstr "Loc de Muncă/Slujbă" -#: ../../mod/contacts.php:305 -msgid "Contact has been archived" -msgstr "Contactul a fost arhivat" +#: ../../mod/profiles.php:342 +msgid "Religion" +msgstr "Religie" -#: ../../mod/contacts.php:305 -msgid "Contact has been unarchived" -msgstr "Contactul a fost dezarhivat" +#: ../../mod/profiles.php:346 +msgid "Political Views" +msgstr "Viziuni Politice" -#: ../../mod/contacts.php:330 ../../mod/contacts.php:703 -msgid "Do you really want to delete this contact?" -msgstr "Sigur doriți să ștergeți acest contact?" +#: ../../mod/profiles.php:350 +msgid "Gender" +msgstr "Sex" -#: ../../mod/contacts.php:347 -msgid "Contact has been removed." -msgstr "Contactul a fost înlăturat." +#: ../../mod/profiles.php:354 +msgid "Sexual Preference" +msgstr "PreferinÅ£e Sexuale" -#: ../../mod/contacts.php:385 -#, php-format -msgid "You are mutual friends with %s" -msgstr "SunteÅ£i prieten comun cu %s" +#: ../../mod/profiles.php:358 +msgid "Homepage" +msgstr "Homepage" -#: ../../mod/contacts.php:389 -#, php-format -msgid "You are sharing with %s" -msgstr "Împărtășiți cu %s" +#: ../../mod/profiles.php:362 ../../mod/profiles.php:657 +msgid "Interests" +msgstr "Interese" -#: ../../mod/contacts.php:394 -#, php-format -msgid "%s is sharing with you" -msgstr "%s împărtăşeşte cu dvs." +#: ../../mod/profiles.php:366 +msgid "Address" +msgstr "Addresă" -#: ../../mod/contacts.php:411 -msgid "Private communications are not available for this contact." -msgstr "ComunicaÅ£iile private nu sunt disponibile pentru acest contact." +#: ../../mod/profiles.php:373 ../../mod/profiles.php:653 +msgid "Location" +msgstr "LocaÅ£ie" -#: ../../mod/contacts.php:414 ../../mod/admin.php:540 -msgid "Never" -msgstr "Niciodată" +#: ../../mod/profiles.php:456 +msgid "Profile updated." +msgstr "Profil actualizat." -#: ../../mod/contacts.php:418 -msgid "(Update was successful)" -msgstr "(Actualizare a reuşit)" +#: ../../mod/profiles.php:527 +msgid " and " +msgstr "şi" -#: ../../mod/contacts.php:418 -msgid "(Update was not successful)" -msgstr "(Actualizare nu a reuşit)" +#: ../../mod/profiles.php:535 +msgid "public profile" +msgstr "profil public" -#: ../../mod/contacts.php:420 -msgid "Suggest friends" -msgstr "SugeraÅ£i prieteni" +#: ../../mod/profiles.php:538 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s a modificat %2$s în “%3$s”" -#: ../../mod/contacts.php:424 +#: ../../mod/profiles.php:539 #, php-format -msgid "Network type: %s" -msgstr "Tipul rețelei: %s" +msgid " - Visit %1$s's %2$s" +msgstr "- Vizitați %2$s lui %1$s'" -#: ../../mod/contacts.php:432 -msgid "View all contacts" -msgstr "Vezi toate contactele" +#: ../../mod/profiles.php:542 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s și-a actualizat %2$s, modificând %3$s." -#: ../../mod/contacts.php:437 ../../mod/contacts.php:496 -#: ../../mod/contacts.php:706 ../../mod/admin.php:970 -msgid "Unblock" -msgstr "Deblochează" +#: ../../mod/profiles.php:617 +msgid "Hide contacts and friends:" +msgstr "Ascunde contacte și prieteni:" -#: ../../mod/contacts.php:437 ../../mod/contacts.php:496 -#: ../../mod/contacts.php:706 ../../mod/admin.php:969 -msgid "Block" -msgstr "Blochează" +#: ../../mod/profiles.php:622 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "AscundeÅ£i lista dvs. de contacte/prieteni de vizitatorii acestui profil?" -#: ../../mod/contacts.php:440 -msgid "Toggle Blocked status" -msgstr "Comutare status Blocat" +#: ../../mod/profiles.php:644 +msgid "Edit Profile Details" +msgstr "Editare Detalii Profil" -#: ../../mod/contacts.php:443 ../../mod/contacts.php:497 -#: ../../mod/contacts.php:707 -msgid "Unignore" -msgstr "Anulare ignorare" +#: ../../mod/profiles.php:646 +msgid "Change Profile Photo" +msgstr "Modificați Fotografia de Profil" -#: ../../mod/contacts.php:446 -msgid "Toggle Ignored status" -msgstr "ComutaÅ£i status Ignorat" +#: ../../mod/profiles.php:647 +msgid "View this profile" +msgstr "Vizualizați acest profil" -#: ../../mod/contacts.php:450 ../../mod/contacts.php:708 -msgid "Unarchive" -msgstr "Dezarhivează" +#: ../../mod/profiles.php:648 +msgid "Create a new profile using these settings" +msgstr "CreaÅ£i un profil nou folosind aceste configurări" -#: ../../mod/contacts.php:450 ../../mod/contacts.php:708 -msgid "Archive" -msgstr "Arhivează" +#: ../../mod/profiles.php:649 +msgid "Clone this profile" +msgstr "Clonați acest profil" -#: ../../mod/contacts.php:453 -msgid "Toggle Archive status" -msgstr "ComutaÅ£i status Arhivat" +#: ../../mod/profiles.php:650 +msgid "Delete this profile" +msgstr "ŞtergeÅ£i acest profil" -#: ../../mod/contacts.php:456 -msgid "Repair" -msgstr "Repară" +#: ../../mod/profiles.php:651 +msgid "Basic information" +msgstr "InformaÅ£ii de bază" -#: ../../mod/contacts.php:459 -msgid "Advanced Contact Settings" -msgstr "Configurări Avansate Contacte" +#: ../../mod/profiles.php:652 +msgid "Profile picture" +msgstr "Imagine profil" -#: ../../mod/contacts.php:465 -msgid "Communications lost with this contact!" -msgstr "S-a pierdut conexiunea cu acest contact!" +#: ../../mod/profiles.php:654 +msgid "Preferences" +msgstr "PreferinÅ£e " -#: ../../mod/contacts.php:468 -msgid "Contact Editor" -msgstr "Editor Contact" +#: ../../mod/profiles.php:655 +msgid "Status information" +msgstr "InformaÅ£ii Status" -#: ../../mod/contacts.php:471 -msgid "Profile Visibility" -msgstr "Vizibilitate Profil" +#: ../../mod/profiles.php:656 +msgid "Additional information" +msgstr "InformaÅ£ii suplimentare" -#: ../../mod/contacts.php:472 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Vă rugăm să alegeÅ£i profilul pe care doriÅ£i să îl afişaÅ£i pentru %s când acesta vă vizitează profuilul în mod securizat." +#: ../../mod/profiles.php:659 +msgid "Profile Name:" +msgstr "Nume profil:" -#: ../../mod/contacts.php:473 -msgid "Contact Information / Notes" -msgstr "InformaÅ£ii de Contact / Note" +#: ../../mod/profiles.php:660 +msgid "Your Full Name:" +msgstr "Numele Complet:" -#: ../../mod/contacts.php:474 -msgid "Edit contact notes" -msgstr "Editare note de contact" +#: ../../mod/profiles.php:661 +msgid "Title/Description:" +msgstr "Titlu/Descriere" + +#: ../../mod/profiles.php:662 +msgid "Your Gender:" +msgstr "Sexul:" -#: ../../mod/contacts.php:479 ../../mod/contacts.php:671 -#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:62 +#: ../../mod/profiles.php:663 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Vizitați profilul %s [%s]" +msgid "Birthday (%s):" +msgstr "Zi Naştere (%s):" -#: ../../mod/contacts.php:480 -msgid "Block/Unblock contact" -msgstr "Blocare/Deblocare contact" +#: ../../mod/profiles.php:664 +msgid "Street Address:" +msgstr "Strada:" -#: ../../mod/contacts.php:481 -msgid "Ignore contact" -msgstr "Ignorare contact" +#: ../../mod/profiles.php:665 +msgid "Locality/City:" +msgstr "Localitate/Oraș:" -#: ../../mod/contacts.php:482 -msgid "Repair URL settings" -msgstr "Remediere configurări URL" +#: ../../mod/profiles.php:666 +msgid "Postal/Zip Code:" +msgstr "Cod poștal:" -#: ../../mod/contacts.php:483 -msgid "View conversations" -msgstr "VizualizaÅ£i conversaÅ£ii" +#: ../../mod/profiles.php:667 +msgid "Country:" +msgstr "Å¢ară:" -#: ../../mod/contacts.php:485 -msgid "Delete contact" -msgstr "Şterge contact" +#: ../../mod/profiles.php:668 +msgid "Region/State:" +msgstr "Regiunea/Județul:" -#: ../../mod/contacts.php:489 -msgid "Last update:" -msgstr "Ultima actualizare:" +#: ../../mod/profiles.php:669 +msgid " Marital Status:" +msgstr " Stare Civilă:" -#: ../../mod/contacts.php:491 -msgid "Update public posts" -msgstr "Actualizare postări publice" +#: ../../mod/profiles.php:670 +msgid "Who: (if applicable)" +msgstr "Cine: (dacă este cazul)" -#: ../../mod/contacts.php:493 ../../mod/admin.php:1464 -msgid "Update now" -msgstr "Actualizează acum" +#: ../../mod/profiles.php:671 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Exemple: cathy123, Cathy Williams, cathy@example.com" -#: ../../mod/contacts.php:500 -msgid "Currently blocked" -msgstr "Blocat în prezent" +#: ../../mod/profiles.php:672 +msgid "Since [date]:" +msgstr "Din [data]:" -#: ../../mod/contacts.php:501 -msgid "Currently ignored" -msgstr "Ignorat în prezent" +#: ../../mod/profiles.php:673 ../../include/profile_advanced.php:46 +msgid "Sexual Preference:" +msgstr "Orientare Sexuală:" -#: ../../mod/contacts.php:502 -msgid "Currently archived" -msgstr "Arhivat în prezent" +#: ../../mod/profiles.php:674 +msgid "Homepage URL:" +msgstr "Homepage URL:" -#: ../../mod/contacts.php:503 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Răspunsurile/aprecierile pentru postările dvs. publice ar putea fi încă vizibile" +#: ../../mod/profiles.php:675 ../../include/profile_advanced.php:50 +msgid "Hometown:" +msgstr "Domiciliu:" -#: ../../mod/contacts.php:504 -msgid "Notification for new posts" -msgstr "Notificare de postări noi" +#: ../../mod/profiles.php:676 ../../include/profile_advanced.php:54 +msgid "Political Views:" +msgstr "Viziuni Politice:" -#: ../../mod/contacts.php:504 -msgid "Send a notification of every new post of this contact" -msgstr "Trimiteți o notificare despre fiecare postare nouă a acestui contact" +#: ../../mod/profiles.php:677 +msgid "Religious Views:" +msgstr "Viziuni Religioase:" -#: ../../mod/contacts.php:505 -msgid "Fetch further information for feeds" -msgstr "Preluare informaÅ£ii suplimentare pentru fluxuri" +#: ../../mod/profiles.php:678 +msgid "Public Keywords:" +msgstr "Cuvinte cheie Publice:" -#: ../../mod/contacts.php:556 -msgid "Suggestions" -msgstr "Sugestii" +#: ../../mod/profiles.php:679 +msgid "Private Keywords:" +msgstr "Cuvinte cheie Private:" -#: ../../mod/contacts.php:559 -msgid "Suggest potential friends" -msgstr "SugeraÅ£i prieteni potențiali" +#: ../../mod/profiles.php:680 ../../include/profile_advanced.php:62 +msgid "Likes:" +msgstr "Îmi place:" -#: ../../mod/contacts.php:565 -msgid "Show all contacts" -msgstr "Afişează toate contactele" +#: ../../mod/profiles.php:681 ../../include/profile_advanced.php:64 +msgid "Dislikes:" +msgstr "Nu-mi place:" -#: ../../mod/contacts.php:568 -msgid "Unblocked" -msgstr "Deblocat" +#: ../../mod/profiles.php:682 +msgid "Example: fishing photography software" +msgstr "Exemplu: pescuit fotografii software" -#: ../../mod/contacts.php:571 -msgid "Only show unblocked contacts" -msgstr "Se afişează numai contactele deblocate" +#: ../../mod/profiles.php:683 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Utilizat pentru a sugera potențiali prieteni, ce pot fi văzuți de către ceilalți)" -#: ../../mod/contacts.php:575 -msgid "Blocked" -msgstr "Blocat" +#: ../../mod/profiles.php:684 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Utilizat pentru a căuta profile, niciodată afișat altora)" -#: ../../mod/contacts.php:578 -msgid "Only show blocked contacts" -msgstr "Se afişează numai contactele blocate" +#: ../../mod/profiles.php:685 +msgid "Tell us about yourself..." +msgstr "Spune-ne despre tine ..." -#: ../../mod/contacts.php:582 -msgid "Ignored" -msgstr "Ignorat" +#: ../../mod/profiles.php:686 +msgid "Hobbies/Interests" +msgstr "Hobby/Interese" -#: ../../mod/contacts.php:585 -msgid "Only show ignored contacts" -msgstr "Se afişează numai contactele ignorate" +#: ../../mod/profiles.php:687 +msgid "Contact information and Social Networks" +msgstr "InformaÅ£ii de Contact şi ReÅ£ele Sociale" -#: ../../mod/contacts.php:589 -msgid "Archived" -msgstr "Arhivat" +#: ../../mod/profiles.php:688 +msgid "Musical interests" +msgstr "Preferințe muzicale" -#: ../../mod/contacts.php:592 -msgid "Only show archived contacts" -msgstr "Se afişează numai contactele arhivate" +#: ../../mod/profiles.php:689 +msgid "Books, literature" +msgstr "Cărti, literatură" -#: ../../mod/contacts.php:596 -msgid "Hidden" -msgstr "Ascuns" +#: ../../mod/profiles.php:690 +msgid "Television" +msgstr "Programe TV" -#: ../../mod/contacts.php:599 -msgid "Only show hidden contacts" -msgstr "Se afişează numai contactele ascunse" +#: ../../mod/profiles.php:691 +msgid "Film/dance/culture/entertainment" +msgstr "Film/dans/cultură/divertisment" -#: ../../mod/contacts.php:647 -msgid "Mutual Friendship" -msgstr "Prietenie Reciprocă" +#: ../../mod/profiles.php:692 +msgid "Love/romance" +msgstr "Dragoste/romantism" -#: ../../mod/contacts.php:651 -msgid "is a fan of yours" -msgstr "este fanul dvs." +#: ../../mod/profiles.php:693 +msgid "Work/employment" +msgstr "Loc de Muncă/Slujbă" -#: ../../mod/contacts.php:655 -msgid "you are a fan of" -msgstr "sunteÅ£i un fan al" +#: ../../mod/profiles.php:694 +msgid "School/education" +msgstr "Școală/educație" -#: ../../mod/contacts.php:672 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Editează contact" +#: ../../mod/profiles.php:699 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Acesta este profilul dvs. public.
El poate fi vizibil pentru oricine folosește internetul." -#: ../../mod/contacts.php:698 -msgid "Search your contacts" -msgstr "Căutare contacte" +#: ../../mod/profiles.php:709 ../../mod/directory.php:113 +msgid "Age: " +msgstr "Vârsta:" -#: ../../mod/contacts.php:699 ../../mod/directory.php:61 -msgid "Finding: " -msgstr "Găsire:" +#: ../../mod/profiles.php:762 +msgid "Edit/Manage Profiles" +msgstr "Editare/Gestionare Profile" -#: ../../mod/wall_attach.php:75 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Ne pare rău, este posibil ca fișierul pe care doriți să-l încărcați, este mai mare decât permite configuraţia PHP" +#: ../../mod/profiles.php:763 ../../boot.php:1585 ../../boot.php:1611 +msgid "Change profile photo" +msgstr "Modificați Fotografia de Profil" -#: ../../mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "Sau - ați încercat să încărcaţi un fişier gol?" +#: ../../mod/profiles.php:764 ../../boot.php:1586 +msgid "Create New Profile" +msgstr "Creați Profil Nou" -#: ../../mod/wall_attach.php:81 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Fişierul depăşeşte dimensiunea limită de %d" +#: ../../mod/profiles.php:775 ../../boot.php:1596 +msgid "Profile Image" +msgstr "Imagine profil" -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." -msgstr "Încărcarea fișierului a eşuat." +#: ../../mod/profiles.php:777 ../../boot.php:1599 +msgid "visible to everybody" +msgstr "vizibil pentru toata lumea" -#: ../../mod/update_community.php:18 ../../mod/update_network.php:25 -#: ../../mod/update_notes.php:37 ../../mod/update_display.php:22 -#: ../../mod/update_profile.php:41 -msgid "[Embedded content - reload page to view]" -msgstr "[Conţinut încastrat - reîncărcaţi pagina pentru a vizualiza]" +#: ../../mod/profiles.php:778 ../../boot.php:1600 +msgid "Edit visibility" +msgstr "Editare vizibilitate" + +#: ../../mod/share.php:44 +msgid "link" +msgstr "link" #: ../../mod/uexport.php:77 msgid "Export account" @@ -4391,130 +4504,146 @@ msgid "" "of your account (photos are not exported)" msgstr "Exportați informațiile dvs. de cont, contactele şi toate elementele dvs., ca json. Ar putea fi un fișier foarte mare, şi ar putea lua mult timp. Utilizaţi aceasta pentru a face un backup complet al contului (fotografiile nu sunt exportate)" -#: ../../mod/register.php:93 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Înregistrarea s-a efectuat cu succes. Vă rugăm să vă verificaţi e-mailul pentru instrucţiuni suplimentare." - -#: ../../mod/register.php:97 -msgid "Failed to send email message. Here is the message that failed." -msgstr "Eșec la trimiterea mesajului de email. Acesta este mesajul care a eşuat." - -#: ../../mod/register.php:102 -msgid "Your registration can not be processed." -msgstr "Înregistrarea dvs. nu poate fi procesată." +#: ../../mod/ping.php:240 +msgid "{0} wants to be your friend" +msgstr "{0} doreşte să vă fie prieten" -#: ../../mod/register.php:145 -msgid "Your registration is pending approval by the site owner." -msgstr "Înregistrarea dvs. este în aşteptarea aprobării de către deținătorul site-ului." +#: ../../mod/ping.php:245 +msgid "{0} sent you a message" +msgstr "{0} v-a trimis un mesaj" -#: ../../mod/register.php:183 ../../mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Acest site a depăşit numărul zilnic permis al înregistrărilor de conturi. Vă rugăm să reîncercați mâine." +#: ../../mod/ping.php:250 +msgid "{0} requested registration" +msgstr "{0} a solicitat înregistrarea" -#: ../../mod/register.php:211 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Puteți (opțional) să completaţi acest formular prin intermediul OpenID, introducând contul dvs. OpenID și apăsând pe 'Înregistrare'." +#: ../../mod/ping.php:256 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} a comentat la articolul postat de %s" -#: ../../mod/register.php:212 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Dacă nu sunteţi familiarizați cu OpenID, vă rugăm să lăsaţi acest câmp gol iar apoi să completaţi restul elementelor." +#: ../../mod/ping.php:261 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0} a apreciat articolul postat de %s" -#: ../../mod/register.php:213 -msgid "Your OpenID (optional): " -msgstr "Contul dvs. OpenID (opţional):" +#: ../../mod/ping.php:266 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0} nu a apreciat articolul postat de %s" -#: ../../mod/register.php:227 -msgid "Include your profile in member directory?" -msgstr "Includeți profilul dvs în directorul de membru?" +#: ../../mod/ping.php:271 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} este acum prieten cu %s" -#: ../../mod/register.php:248 -msgid "Membership on this site is by invitation only." -msgstr "Aderare pe acest site, este posibilă doar pe bază de invitație." +#: ../../mod/ping.php:276 +msgid "{0} posted" +msgstr "{0} a postat" -#: ../../mod/register.php:249 -msgid "Your invitation ID: " -msgstr "ID invitaţiei dvs:" +#: ../../mod/ping.php:281 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} a etichetat articolul postat de %s cu #%s" -#: ../../mod/register.php:252 ../../mod/admin.php:589 -msgid "Registration" -msgstr "Registratură" +#: ../../mod/ping.php:287 +msgid "{0} mentioned you in a post" +msgstr "{0} v-a menţionat într-o postare" -#: ../../mod/register.php:260 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Numele Complet (de ex. Joe Smith):" +#: ../../mod/navigation.php:20 ../../include/nav.php:34 +msgid "Nothing new here" +msgstr "Nimic nou aici" -#: ../../mod/register.php:261 -msgid "Your Email Address: " -msgstr "Adresa dvs de mail:" +#: ../../mod/navigation.php:24 ../../include/nav.php:38 +msgid "Clear notifications" +msgstr "Ştergeţi notificările" -#: ../../mod/register.php:262 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Alegeţi un pseudonim de profil. Aceasta trebuie să înceapă cu un caracter text. Adresa profilului dvs. de pe acest site va fi de forma 'pseudonim@$sitename'." +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Indisponibil." -#: ../../mod/register.php:263 -msgid "Choose a nickname: " -msgstr "Alegeţi un pseudonim:" +#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:129 +#: ../../include/nav.php:129 +msgid "Community" +msgstr "Comunitate" -#: ../../mod/register.php:272 ../../mod/uimport.php:64 -msgid "Import" -msgstr "Import" +#: ../../mod/filer.php:30 ../../include/conversation.php:1006 +#: ../../include/conversation.php:1024 +msgid "Save to Folder:" +msgstr "Salvare în Dosar:" -#: ../../mod/register.php:273 -msgid "Import your profile to this friendica instance" -msgstr "Importați profilul dvs. în această instanță friendica" +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- selectare -" -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Postat cu succes." +#: ../../mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Ne pare rău, este posibil ca fișierul pe care doriți să-l încărcați, este mai mare decât permite configuraţia PHP" -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Sistemul este suspendat pentru întreținere" +#: ../../mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "Sau - ați încercat să încărcaţi un fişier gol?" -#: ../../mod/profile.php:155 ../../mod/display.php:288 -msgid "Access to this profile has been restricted." -msgstr "Accesul la acest profil a fost restricţionat." +#: ../../mod/wall_attach.php:81 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Fişierul depăşeşte dimensiunea limită de %d" -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Sfaturi pentru Membrii Noi" +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +msgid "File upload failed." +msgstr "Încărcarea fișierului a eşuat." -#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:766 -#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:920 -#: ../../mod/search.php:89 ../../mod/community.php:18 -#: ../../mod/display.php:180 ../../mod/directory.php:33 -msgid "Public access denied." -msgstr "Acces public refuzat." +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Identificator profil, invalid." -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "Nici-un clip video selectat" +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Editor Vizibilitate Profil" -#: ../../mod/videos.php:226 ../../mod/photos.php:1031 -msgid "Access to this item is restricted." -msgstr "Accesul la acest element este restricționat." +#: ../../mod/profperm.php:105 ../../mod/group.php:224 +msgid "Click on a contact to add or remove." +msgstr "Apăsați pe un contact pentru a-l adăuga sau elimina." -#: ../../mod/videos.php:308 ../../mod/photos.php:1806 -msgid "View Album" -msgstr "Vezi Album" +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Vizibil Pentru" -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "Clipuri video recente" +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Toate Contactele (cu acces profil securizat)" -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "Încărcaţi Clipuri Video Noi" +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Sigur doriți să ștergeți acesta sugestie?" + +#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:527 +#: ../../include/contact_widgets.php:35 +msgid "Friend Suggestions" +msgstr "Sugestii de Prietenie" + +#: ../../mod/suggest.php:72 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nici-o sugestie disponibilă. Dacă aceasta este un site nou, vă rugăm să încercaţi din nou în 24 de ore." + +#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1542 +#: ../../include/contact_widgets.php:10 +msgid "Connect" +msgstr "Conectare" + +#: ../../mod/suggest.php:90 +msgid "Ignore/Hide" +msgstr "Ignorare/Ascundere" + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accesul interzis." + +#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s îi urează bun venit lui %2$s" #: ../../mod/manage.php:106 msgid "Manage Identities and/or Pages" @@ -4530,3185 +4659,3080 @@ msgstr "Comutați între diferitele identităţi sau pagini de comunitate/grup, msgid "Select an identity to manage: " msgstr "Selectaţi o identitate de gestionat:" -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Element negăsit" +#: ../../mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Nici-un delegat potenţial de pagină, nu a putut fi localizat." -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Editează post" +#: ../../mod/delegate.php:130 ../../include/nav.php:168 +msgid "Delegate Page Management" +msgstr "Delegare Gestionare Pagină" -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Căutare Persoane" +#: ../../mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Delegații sunt capabili să gestioneze toate aspectele acestui cont/pagină, cu excepţia configurărilor de bază ale contului. Vă rugăm să nu vă delegați, contul dvs. personal, cuiva în care nu aveţi încredere deplină." -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Nici-o potrivire" +#: ../../mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Gestionari Existenți Pagină" -#: ../../mod/regmod.php:54 -msgid "Account approved." -msgstr "Cont aprobat." +#: ../../mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Delegați Existenți Pagină" -#: ../../mod/regmod.php:91 -#, php-format -msgid "Registration revoked for %s" -msgstr "Înregistrare revocată pentru %s" +#: ../../mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Potenţiali Delegaţi" -#: ../../mod/regmod.php:103 -msgid "Please login." -msgstr "Vă rugăm să vă autentificați." +#: ../../mod/delegate.php:140 +msgid "Add" +msgstr "Adăugare" -#: ../../mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Această introducere a fost deja acceptată" +#: ../../mod/delegate.php:141 +msgid "No entries." +msgstr "Nu există intrări." -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Locaţia profilului nu este validă sau nu conţine informaţii de profil." +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "Nici-un contact." -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Atenţie: locaţia profilului nu are un nume de deţinător identificabil." +#: ../../mod/viewcontacts.php:76 ../../include/text.php:875 +msgid "View Contacts" +msgstr "Vezi Contacte" -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Atenţie: locaţia profilului nu are fotografie de profil." +#: ../../mod/notes.php:44 ../../boot.php:2121 +msgid "Personal Notes" +msgstr "Note Personale" -#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d parametru necesar nu a fost găsit în locaţia specificată" -msgstr[1] "%d parametrii necesari nu au fost găsiţi în locaţia specificată" -msgstr[2] "%d de parametrii necesari nu au fost găsiţi în locaţia specificată" +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Abordare/Atragerea atenției" -#: ../../mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Prezentare completă." +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "abordați, atrageți atenția sau faceți alte lucruri cuiva" -#: ../../mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Eroare de protocol nerecuperabilă." +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Destinatar" -#: ../../mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profil nedisponibil." +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Alegeți ce doriți să faceți cu destinatarul" -#: ../../mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s a primit, pentru azi, prea multe solicitări de conectare." +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Faceți acest articol privat" -#: ../../mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Au fost invocate măsuri de protecţie anti-spam." +#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Director Global" -#: ../../mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Prietenii sunt rugaţi să reîncerce peste 24 de ore." +#: ../../mod/directory.php:59 +msgid "Find on this site" +msgstr "Căutați pe acest site" -#: ../../mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Invalid locator" +#: ../../mod/directory.php:62 +msgid "Site Directory" +msgstr "Director Site" -#: ../../mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Adresă mail invalidă." +#: ../../mod/directory.php:116 +msgid "Gender: " +msgstr "Sex:" -#: ../../mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Acest cont nu a fost configurat pentru email. Cererea a eşuat." +#: ../../mod/directory.php:138 ../../boot.php:1624 +#: ../../include/profile_advanced.php:17 +msgid "Gender:" +msgstr "Sex:" -#: ../../mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Imposibil să vă soluţionăm numele pentru locaţia sugerată." +#: ../../mod/directory.php:140 ../../boot.php:1627 +#: ../../include/profile_advanced.php:37 +msgid "Status:" +msgstr "Status:" -#: ../../mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Aţi fost deja prezentat aici" +#: ../../mod/directory.php:142 ../../boot.php:1629 +#: ../../include/profile_advanced.php:48 +msgid "Homepage:" +msgstr "Homepage:" -#: ../../mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Se pare că sunteţi deja prieten cu %s." +#: ../../mod/directory.php:144 ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "Despre:" -#: ../../mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Profil URL invalid." +#: ../../mod/directory.php:189 +msgid "No entries (some entries may be hidden)." +msgstr "Fără înregistrări (unele înregistrări pot fi ascunse)." -#: ../../mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Prezentarea dumneavoastră a fost trimisă." +#: ../../mod/localtime.php:12 ../../include/event.php:11 +#: ../../include/bb2diaspora.php:134 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" -#: ../../mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Vă rugăm să vă autentificați pentru a confirma prezentarea." +#: ../../mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Conversie Oră" -#: ../../mod/dfrn_request.php:664 +#: ../../mod/localtime.php:26 msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Autentificat curent cu identitate eronată. Vă rugăm să vă autentificați pentru acest profil." +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica oferă acest serviciu pentru partajarea evenimentelor cu alte rețele și prieteni, în zonele cu fusuri orare necunoscute.\\v" -#: ../../mod/dfrn_request.php:675 -msgid "Hide this contact" -msgstr "Ascunde acest contact" +#: ../../mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "Fus orar UTC: %s" -#: ../../mod/dfrn_request.php:678 +#: ../../mod/localtime.php:33 #, php-format -msgid "Welcome home %s." -msgstr "Bine ai venit %s." +msgid "Current timezone: %s" +msgstr "Fusul orar curent: %s" -#: ../../mod/dfrn_request.php:679 +#: ../../mod/localtime.php:36 #, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Vă rugăm să vă confirmaţi solicitarea de introducere/conectare la %s." +msgid "Converted localtime: %s" +msgstr "Ora locală convertită: %s" -#: ../../mod/dfrn_request.php:680 -msgid "Confirm" -msgstr "Confirm" +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Vă rugăm să vă selectaţi fusul orar:" -#: ../../mod/dfrn_request.php:808 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Vă rugăm să vă introduceţi \"Adresa de Identitate\" din una din următoarele reţele de socializare acceptate:" +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Postat cu succes." -#: ../../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 "Dacă nu sunteţi încă un membru al reţelei online de socializare gratuite, urmați acest link pentru a găsi un site public Friendica şi alăturați-vă nouă, chiar astăzi." +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Imaginea a fost încărcată, dar decuparea imaginii a eşuat." -#: ../../mod/dfrn_request.php:831 -msgid "Friend/Connection Request" -msgstr "Solicitare Prietenie/Conectare" +#: ../../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 "Reducerea dimensiunea imaginii [%s] a eşuat." -#: ../../mod/dfrn_request.php:832 +#: ../../mod/profile_photo.php:118 msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Exemple: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Apăsați pe Shift și pe Reîncărcare Pagină sau ştergeţi memoria cache a browser-ului, dacă noua fotografie nu se afişează imediat." -#: ../../mod/dfrn_request.php:833 -msgid "Please answer the following:" -msgstr "Vă rugăm să răspundeţi la următoarele:" +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Nu s-a putut procesa imaginea." -#: ../../mod/dfrn_request.php:834 -#, php-format -msgid "Does %s know you?" -msgstr "%s vă cunoaşte?" +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Încărcare Fișier:" -#: ../../mod/dfrn_request.php:838 -msgid "Add a personal note:" -msgstr "Adaugă o notă personală:" +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Selectați un profil:" -#: ../../mod/dfrn_request.php:841 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Reţea Socială Web Centralizată" +#: ../../mod/profile_photo.php:245 +msgid "Upload" +msgstr "Încărcare" -#: ../../mod/dfrn_request.php:843 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "- vă rugăm să nu folosiţi acest formular. În schimb, introduceţi %s în bara dvs. de căutare Diaspora." +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "omiteți acest pas" -#: ../../mod/dfrn_request.php:844 -msgid "Your Identity Address:" -msgstr "Adresa dvs. Identitate " +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "selectaţi o fotografie din albumele dvs. foto" -#: ../../mod/dfrn_request.php:847 -msgid "Submit Request" -msgstr "Trimiteţi Solicitarea" +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Decupare Imagine" -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Fişiere" +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Vă rugăm să ajustaţi decuparea imaginii pentru o vizualizare optimă." -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizare conectare aplicaţie" +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Editare Realizată" -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Reveniți la aplicația dvs. şi introduceţi acest Cod de Securitate:" +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Imaginea a fost încărcată cu succes" -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Vă rugăm să vă autentificați pentru a continua." +#: ../../mod/install.php:117 +msgid "Friendica Communications Server - Setup" +msgstr "Serverul de Comunicații Friendica - Instalare" -#: ../../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 "Doriţi să autorizați această aplicaţie pentru a vă accesa postările şi contactele, şi/sau crea noi postări pentru dvs.?" +#: ../../mod/install.php:123 +msgid "Could not connect to database." +msgstr "Nu se poate face conectarea cu baza de date." -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Sigur doriți să ștergeți acesta sugestie?" +#: ../../mod/install.php:127 +msgid "Could not create table." +msgstr "Nu se poate crea tabelul." -#: ../../mod/suggest.php:72 +#: ../../mod/install.php:133 +msgid "Your Friendica site database has been installed." +msgstr "Baza dvs. de date Friendica, a fost instalată." + +#: ../../mod/install.php:138 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nici-o sugestie disponibilă. Dacă aceasta este un site nou, vă rugăm să încercaţi din nou în 24 de ore." +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Este posibil să fie nevoie să importați manual fişierul \"database.sql\" folosind phpmyadmin sau mysql." -#: ../../mod/suggest.php:90 -msgid "Ignore/Hide" -msgstr "Ignorare/Ascundere" +#: ../../mod/install.php:139 ../../mod/install.php:206 +#: ../../mod/install.php:525 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Vă rugăm să consultaţi fişierul \"INSTALL.txt\"." -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Contactele care nu sunt membre ale unui grup" +#: ../../mod/install.php:203 +msgid "System check" +msgstr "Verificare sistem" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -#: ../../mod/crepair.php:131 ../../mod/dfrn_confirm.php:120 -msgid "Contact not found." -msgstr "Contact negăsit." +#: ../../mod/install.php:208 +msgid "Check again" +msgstr "Reverificare" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Sugestia de prietenie a fost trimisă." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Sugeraţi Prieteni" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Sugeraţi un prieten pentru %s" +#: ../../mod/install.php:227 +msgid "Database connection" +msgstr "Conexiunea cu baza de date" -#: ../../mod/share.php:44 -msgid "link" -msgstr "link" +#: ../../mod/install.php:228 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Pentru a instala Friendica trebuie să știm cum să vă conectaţi la baza dumneavoastră de date." -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." -msgstr "Nici-un contact." +#: ../../mod/install.php:229 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Vă rugăm să vă contactaţi furnizorul găzduirii sau administratorul de site dacă aveţi întrebări despre aceste configurări." -#: ../../mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Configurările temei au fost actualizate." +#: ../../mod/install.php:230 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Baza de date specificată mai jos ar trebui să existe deja. Dacă nu, vă rugăm s-o creați înainte de a continua." -#: ../../mod/admin.php:104 ../../mod/admin.php:587 -msgid "Site" -msgstr "Site" +#: ../../mod/install.php:234 +msgid "Database Server Name" +msgstr "Nume Server Bază de date" -#: ../../mod/admin.php:105 ../../mod/admin.php:959 ../../mod/admin.php:974 -msgid "Users" -msgstr "Utilizatori" +#: ../../mod/install.php:235 +msgid "Database Login Name" +msgstr "Nume Autentificare Bază de date" -#: ../../mod/admin.php:107 ../../mod/admin.php:1284 ../../mod/admin.php:1318 -msgid "Themes" -msgstr "Teme" +#: ../../mod/install.php:236 +msgid "Database Login Password" +msgstr "Parola de Autentificare Bază de date" -#: ../../mod/admin.php:108 -msgid "DB updates" -msgstr "Actualizări Bază de Date" +#: ../../mod/install.php:237 +msgid "Database Name" +msgstr "Nume Bază de date" -#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1405 -msgid "Logs" -msgstr "Jurnale" +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "Site administrator email address" +msgstr "Adresa de email a administratorului de site" -#: ../../mod/admin.php:129 -msgid "Plugin Features" -msgstr "Caracteristici Modul" +#: ../../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 "Adresa de email a contului dvs. trebuie să corespundă cu aceasta pentru a utiliza panoul de administrare web." -#: ../../mod/admin.php:131 -msgid "User registrations waiting for confirmation" -msgstr "Înregistrări de utilizatori, aşteaptă confirmarea" +#: ../../mod/install.php:242 ../../mod/install.php:280 +msgid "Please select a default timezone for your website" +msgstr "Vă rugăm să selectaţi un fus orar prestabilit pentru site-ul dvs." -#: ../../mod/admin.php:190 ../../mod/admin.php:913 -msgid "Normal Account" -msgstr "Cont normal" +#: ../../mod/install.php:267 +msgid "Site settings" +msgstr "Configurări Site" -#: ../../mod/admin.php:191 ../../mod/admin.php:914 -msgid "Soapbox Account" -msgstr "Cont Soapbox" +#: ../../mod/install.php:321 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Nu s-a putut găsi o versiune a liniei de comandă PHP în CALEA serverului web." -#: ../../mod/admin.php:192 ../../mod/admin.php:915 -msgid "Community/Celebrity Account" -msgstr "Cont Comunitate/Celebritate" +#: ../../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 "Dacă nu aveţi o versiune a liniei de comandă PHP instalată pe server, nu veţi putea să efectuaţi interogări ciclice în fundal prin funcția cron. Consultaţi 'Activarea sarcinilor programate' " -#: ../../mod/admin.php:193 ../../mod/admin.php:916 -msgid "Automatic Friend Account" -msgstr "Cont Prieten Automat" +#: ../../mod/install.php:326 +msgid "PHP executable path" +msgstr "Calea de executare PHP" -#: ../../mod/admin.php:194 -msgid "Blog Account" -msgstr "Cont Blog" +#: ../../mod/install.php:326 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Introduceţi calea completă către executabilul php. Puteţi lăsa acesta necompletată pentru a continua instalarea." -#: ../../mod/admin.php:195 -msgid "Private Forum" -msgstr "Forum Privat" +#: ../../mod/install.php:331 +msgid "Command line PHP" +msgstr "linie comandă PHP" -#: ../../mod/admin.php:214 -msgid "Message queues" -msgstr "Șiruri de mesaje" +#: ../../mod/install.php:340 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "Executabilul PHP nu este de formă binară php-cli (ar putea fi versiunea cgi-fgci)" -#: ../../mod/admin.php:219 ../../mod/admin.php:586 ../../mod/admin.php:958 -#: ../../mod/admin.php:1062 ../../mod/admin.php:1115 ../../mod/admin.php:1283 -#: ../../mod/admin.php:1317 ../../mod/admin.php:1404 -msgid "Administration" -msgstr "Administrare" +#: ../../mod/install.php:341 +msgid "Found PHP version: " +msgstr "Versiune PHP identificată:" -#: ../../mod/admin.php:220 -msgid "Summary" -msgstr "Sumar" +#: ../../mod/install.php:343 +msgid "PHP cli binary" +msgstr "Versiune binară PHP-cli" -#: ../../mod/admin.php:222 -msgid "Registered users" -msgstr "Utilizatori înregistraţi" +#: ../../mod/install.php:354 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Versiunea liniei de comandă PHP de pe sistemul dumneavoastră nu are comanda \"register_argc_argv\" activată." -#: ../../mod/admin.php:224 -msgid "Pending registrations" -msgstr "Administrare" +#: ../../mod/install.php:355 +msgid "This is required for message delivery to work." +msgstr "Aceasta este necesară pentru a funcționa livrarea de mesaje." -#: ../../mod/admin.php:225 -msgid "Version" -msgstr "Versiune" +#: ../../mod/install.php:357 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../mod/admin.php:227 -msgid "Active plugins" -msgstr "Module active" +#: ../../mod/install.php:378 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Eroare: funcția \"openssl_pkey_new\" de pe acest sistem nu este capabilă să genereze chei de criptare" -#: ../../mod/admin.php:250 -msgid "Can not parse base url. Must have at least ://" -msgstr "Nu se poate analiza URL-ul de bază. Trebuie să aibă minim ://" +#: ../../mod/install.php:379 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Dacă rulează pe Windows, vă rugăm să consultaţi \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../mod/admin.php:494 -msgid "Site settings updated." -msgstr "Configurările site-ului au fost actualizate." +#: ../../mod/install.php:381 +msgid "Generate encryption keys" +msgstr "Generare chei de criptare" -#: ../../mod/admin.php:541 -msgid "At post arrival" -msgstr "La sosirea publicaţiei" +#: ../../mod/install.php:388 +msgid "libCurl PHP module" +msgstr "Modulul PHP libCurl" -#: ../../mod/admin.php:550 -msgid "Multi user instance" -msgstr "Instanţă utilizatori multipli" +#: ../../mod/install.php:389 +msgid "GD graphics PHP module" +msgstr "Modulul PHP grafică GD" -#: ../../mod/admin.php:573 -msgid "Closed" -msgstr "Inchis" +#: ../../mod/install.php:390 +msgid "OpenSSL PHP module" +msgstr "Modulul PHP OpenSSL" -#: ../../mod/admin.php:574 -msgid "Requires approval" -msgstr "Necesită aprobarea" +#: ../../mod/install.php:391 +msgid "mysqli PHP module" +msgstr "Modulul PHP mysqli" -#: ../../mod/admin.php:575 -msgid "Open" -msgstr "Deschide" +#: ../../mod/install.php:392 +msgid "mb_string PHP module" +msgstr "Modulul PHP mb_string" -#: ../../mod/admin.php:579 -msgid "No SSL policy, links will track page SSL state" -msgstr "Nici-o politică SSL, legăturile vor urmări starea paginii SSL" +#: ../../mod/install.php:397 ../../mod/install.php:399 +msgid "Apache mod_rewrite module" +msgstr "Modulul Apache mod_rewrite" -#: ../../mod/admin.php:580 -msgid "Force all links to use SSL" -msgstr "Forţează toate legăturile să utilizeze SSL" +#: ../../mod/install.php:397 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Eroare: Modulul mod-rewrite al serverulului Apache este necesar, dar nu este instalat." -#: ../../mod/admin.php:581 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Certificat auto/semnat, folosește SSL numai pentru legăturile locate (nerecomandat)" +#: ../../mod/install.php:405 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Eroare: modulul PHP libCURL este necesar dar nu este instalat." -#: ../../mod/admin.php:590 -msgid "File upload" -msgstr "Fişier incărcat" +#: ../../mod/install.php:409 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Eroare: Modulul PHP grafică GD cu suport JPEG, este necesar dar nu este instalat." -#: ../../mod/admin.php:591 -msgid "Policies" -msgstr "Politici" +#: ../../mod/install.php:413 +msgid "Error: openssl PHP module required but not installed." +msgstr "Eroare: modulul PHP libCURL este necesar dar nu este instalat." -#: ../../mod/admin.php:592 -msgid "Advanced" -msgstr "Avansat" +#: ../../mod/install.php:417 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Eroare: modulul PHP mysqli este necesar dar nu este instalat." -#: ../../mod/admin.php:593 -msgid "Performance" -msgstr "Performanţă" +#: ../../mod/install.php:421 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Eroare: modulul PHP mb_string este necesar dar nu este instalat." -#: ../../mod/admin.php:594 +#: ../../mod/install.php:438 msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Reaşezaţi - AVERTIZARE: funcţie avansată. Ar putea face acest server inaccesibil." +"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 "Expertul de instalare web trebuie să poată crea un fișier numit \".htconfig.php\" în dosarul superior al serverului dvs. web, şi nu poate face acest lucru." -#: ../../mod/admin.php:597 -msgid "Site name" -msgstr "Nume site" +#: ../../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 "Aceasta este cel mai adesea o configurare de permisiune, deoarece serverul web nu ar putea fi capabil să scrie fişiere în dosarul dumneavoastră - chiar dacă dvs. puteţi." -#: ../../mod/admin.php:598 -msgid "Banner/Logo" -msgstr "Baner/Logo" +#: ../../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 "La finalul acestei proceduri, vă vom oferi un text pentru a-l salva într-un fişier numit .htconfig.php din dosarul dvs. superior Friendica." -#: ../../mod/admin.php:599 -msgid "Additional Info" -msgstr "Informaţii suplimentare" - -#: ../../mod/admin.php:599 +#: ../../mod/install.php:441 msgid "" -"For public servers: you can add additional information here that will be " -"listed at dir.friendica.com/siteinfo." -msgstr "Pentru serverele publice: puteţi să adăugaţi aici informaţiile suplimentare ce vor fi afişate pe dir.friendica.com/siteinfo." +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Alternativ, puteţi omite această procedură şi să efectuaţi o instalare manuală. Vă rugăm să consultaţi fişierul \"INSTALL.txt\" pentru instrucțiuni." -#: ../../mod/admin.php:600 -msgid "System language" -msgstr "Limbă System l" +#: ../../mod/install.php:444 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php este inscriptibil" -#: ../../mod/admin.php:601 -msgid "System theme" -msgstr "Temă System " +#: ../../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 utilizează motorul de șablon Smarty3 pentru a prelucra vizualizările sale web. Smarty3 compilează şabloane în PHP pentru a grăbi prelucrarea." -#: ../../mod/admin.php:601 +#: ../../mod/install.php:455 msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema implicită a sistemului - se poate supraregla prin profilele de utilizator - modificați configurările temei" +"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 "Pentru a stoca aceste şabloane compilate, serverul de web trebuie să aibă acces la scriere pentru directorul view/smarty3/ din dosarul de nivel superior Friendica." -#: ../../mod/admin.php:602 -msgid "Mobile system theme" -msgstr "Temă sisteme mobile" +#: ../../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 "Vă rugăm să vă asiguraţi că utilizatorul pe care rulează serverul dvs. web (de ex. www-date) are acces la scriere pentru acest dosar." -#: ../../mod/admin.php:602 -msgid "Theme for mobile devices" -msgstr "Temă pentru dispozitivele mobile" +#: ../../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 "Notă: ca o măsură de securitate, ar trebui să dați serverului web, acces de scriere numai pentru view/smarty3/--dar nu și fișierelor de șablon (.tpl) pe care le conţine." -#: ../../mod/admin.php:603 -msgid "SSL link policy" -msgstr "Politivi link SSL " +#: ../../mod/install.php:460 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 este inscriptibil" -#: ../../mod/admin.php:603 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Determină dacă legăturile generate ar trebui forţate să utilizeze SSL" +#: ../../mod/install.php:472 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "Funcția de rescriere Url rewrite din .htaccess nu funcţionează. Verificaţi-vă configuraţia serverului." -#: ../../mod/admin.php:604 -msgid "Old style 'Share'" -msgstr "Stilul vechi de 'Distribuiţi'" +#: ../../mod/install.php:474 +msgid "Url rewrite is working" +msgstr "Funcția de rescriere Url rewrite, funcţionează." -#: ../../mod/admin.php:604 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Dezactivează elementul bbcode 'distribuiţi' pentru elementele repetitive." +#: ../../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 "Fișierul de configurare baza de date \".htconfig.php\", nu a putut fi scris. Vă rugăm să utilizaţi textul închis pentru a crea un fişier de configurare în rădăcina serverului dvs. web." -#: ../../mod/admin.php:605 -msgid "Hide help entry from navigation menu" -msgstr "Ascunde elementele de ajutor, din meniul de navigare" +#: ../../mod/install.php:523 +msgid "

What next

" +msgstr "

Ce urmează

" -#: ../../mod/admin.php:605 +#: ../../mod/install.php:524 msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Ascunde intrările de meniu pentru paginile de Ajutor, din meniul de navigare. Îl puteÅ£i accesa în continuare direct, apelând /ajutor." +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT: Va trebui să configurați [manual] o sarcină programată pentru operatorul de sondaje." -#: ../../mod/admin.php:606 -msgid "Single user instance" -msgstr "Instanţă cu un singur utilizator" +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Grupul a fost creat." -#: ../../mod/admin.php:606 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Stabiliți această instanţă ca utilizator-multipli sau utilizator/unic, pentru utilizatorul respectiv" +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Grupul nu se poate crea." -#: ../../mod/admin.php:607 -msgid "Maximum image size" -msgstr "Maxim mărime imagine" +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." +msgstr "Grupul nu a fost găsit." -#: ../../mod/admin.php:607 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Dimensiunea maximă în octeÅ£i, a imaginii încărcate. Implicit este 0, ceea ce înseamnă fără limite." +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "Numele grupului a fost schimbat." -#: ../../mod/admin.php:608 -msgid "Maximum image length" -msgstr "Dimensiunea maximă a imaginii" +#: ../../mod/group.php:87 +msgid "Save Group" +msgstr "Salvare Grup" -#: ../../mod/admin.php:608 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Dimensiunea maximă în pixeli a celei mai lungi laturi a imaginii încărcate. Implicit este -1, ceea ce înseamnă fără limite." +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "CreaÅ£i un grup de contacte/prieteni." -#: ../../mod/admin.php:609 -msgid "JPEG image quality" -msgstr "Calitate imagine JPEG " +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "Nume Grup:" -#: ../../mod/admin.php:609 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Imaginile JPEG încărcate vor fi salvate cu această calitate stabilită [0-100]. Implicit este 100, ceea ce înseamnă calitate completă." +#: ../../mod/group.php:113 +msgid "Group removed." +msgstr "Grupul a fost eliminat." -#: ../../mod/admin.php:611 -msgid "Register policy" -msgstr "Politici inregistrare " +#: ../../mod/group.php:115 +msgid "Unable to remove group." +msgstr "Nu se poate elimina grupul." -#: ../../mod/admin.php:612 -msgid "Maximum Daily Registrations" -msgstr "Înregistrări Zilnice Maxime" +#: ../../mod/group.php:179 +msgid "Group Editor" +msgstr "Editor Grup" -#: ../../mod/admin.php:612 -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 "Dacă înregistrarea este permisă de mai sus, aceasta stabileşte numărul maxim de utilizatori noi înregistraÅ£i, acceptaÅ£i pe zi. Dacă înregistrarea este stabilită ca închisă, această setare nu are efect." +#: ../../mod/group.php:192 +msgid "Members" +msgstr "Membri" -#: ../../mod/admin.php:613 -msgid "Register text" -msgstr "Text înregistrare" +#: ../../mod/content.php:119 ../../mod/network.php:514 +msgid "No such group" +msgstr "Membrii" -#: ../../mod/admin.php:613 -msgid "Will be displayed prominently on the registration page." -msgstr "Va fi afişat vizibil pe pagina de înregistrare." +#: ../../mod/content.php:130 ../../mod/network.php:531 +msgid "Group is empty" +msgstr "Grupul este gol" -#: ../../mod/admin.php:614 -msgid "Accounts abandoned after x days" -msgstr "Conturi abandonate după x zile" +#: ../../mod/content.php:134 ../../mod/network.php:538 +msgid "Group: " +msgstr "Grup:" -#: ../../mod/admin.php:614 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Nu va risipi resurse de sistem interogând site-uri externe pentru conturi abandonate. IntroduceÅ£i 0 pentru nici-o limită de timp." +#: ../../mod/content.php:497 ../../include/conversation.php:690 +msgid "View in context" +msgstr "Vizualizare în context" -#: ../../mod/admin.php:615 -msgid "Allowed friend domains" -msgstr "Domenii prietene permise" +#: ../../mod/regmod.php:55 +msgid "Account approved." +msgstr "Cont aprobat." -#: ../../mod/admin.php:615 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Lista cu separator prin virgulă a domeniilor ce sunt permise pentru a stabili relaÅ£ii de prietenie cu acest site. Metacaracterele sunt acceptate. LăsaÅ£i necompletat pentru a permite orice domeniu" +#: ../../mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Înregistrare revocată pentru %s" -#: ../../mod/admin.php:616 -msgid "Allowed email domains" -msgstr "Domenii de email, permise" +#: ../../mod/regmod.php:104 +msgid "Please login." +msgstr "Vă rugăm să vă autentificați." -#: ../../mod/admin.php:616 -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 "Lista cu separator prin virgulă a domeniilor ce sunt permise în adresele de email pentru înregistrările pe acest site. Metacaracterele sunt acceptate. LăsaÅ£i necompletat pentru a permite orice domeniu" +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Potrivire Profil" -#: ../../mod/admin.php:617 -msgid "Block public" -msgstr "Blocare acces public" +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Nu există cuvinte cheie pentru a le potrivi. Vă rugăm să adăugaÅ£i cuvinte cheie la profilul dvs implicit." -#: ../../mod/admin.php:617 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Bifați pentru a bloca accesul public, pe acest site, către toate paginile publice cu caracter personal, doar dacă nu sunteÅ£i deja autentificat." +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "are interese pentru:" -#: ../../mod/admin.php:618 -msgid "Force publish" -msgstr "Forțează publicarea" +#: ../../mod/item.php:113 +msgid "Unable to locate original post." +msgstr "Nu se poate localiza postarea originală." -#: ../../mod/admin.php:618 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Bifați pentru a forÅ£a, ca toate profilurile de pe acest site să fie enumerate în directorul site-ului." +#: ../../mod/item.php:326 +msgid "Empty post discarded." +msgstr "Postarea goală a fost eliminată." -#: ../../mod/admin.php:619 -msgid "Global directory update URL" -msgstr "URL actualizare director global" +#: ../../mod/item.php:919 +msgid "System error. Post not saved." +msgstr "Eroare de sistem. Articolul nu a fost salvat." -#: ../../mod/admin.php:619 +#: ../../mod/item.php:945 +#, php-format msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL pentru a actualiza directorul global. Dacă aceasta nu se stabilește, director global este complet indisponibil pentru aplicație." +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Acest mesaj v-a fost trimis de către %s, un membru al rețelei sociale Friendica." -#: ../../mod/admin.php:620 -msgid "Allow threaded items" -msgstr "Permite elemente înșiruite" - -#: ../../mod/admin.php:620 -msgid "Allow infinite level threading for items on this site." -msgstr "Permite pe acest site, un număr infinit de nivele de înșiruire." - -#: ../../mod/admin.php:621 -msgid "Private posts by default for new users" -msgstr "Postările private, ca implicit pentru utilizatori noi" +#: ../../mod/item.php:947 +#, php-format +msgid "You may visit them online at %s" +msgstr "Îi puteți vizita profilul online la %s" -#: ../../mod/admin.php:621 +#: ../../mod/item.php:948 msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Stabilește permisiunile de postare implicite, pentru toți membrii noi, la grupul de confidențialitate implicit, mai degrabă decât cel public." +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Vă rugăm să contactați expeditorul răspunzând la această postare, dacă nu doriÅ£i să primiÅ£i aceste mesaje." -#: ../../mod/admin.php:622 -msgid "Don't include post content in email notifications" -msgstr "Nu include conÅ£inutul postării în notificările prin email" +#: ../../mod/item.php:952 +#, php-format +msgid "%s posted an update." +msgstr "%s a postat o actualizare." -#: ../../mod/admin.php:622 -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 "Nu include conținutul unui post/comentariu/mesaj privat/etc. în notificările prin email, ce sunt trimise de pe acest site, ca și masură de confidenÅ£ialitate." +#: ../../mod/mood.php:62 ../../include/conversation.php:227 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s este momentan %2$s" -#: ../../mod/admin.php:623 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Nu permiteÅ£i accesul public la suplimentele enumerate în meniul de aplicaÅ£ii." +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Stare de spirit" -#: ../../mod/admin.php:623 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Bifând această casetă va restricționa, suplimentele enumerate în meniul de aplicaÅ£ii, exclusiv la accesul membrilor." +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Stabiliți-vă starea de spirit curentă, şi comunicați-o prietenilor" -#: ../../mod/admin.php:624 -msgid "Don't embed private images in posts" -msgstr "Nu încorpora imagini private în postări" +#: ../../mod/network.php:136 +msgid "Search Results For:" +msgstr "Rezultatele Căutării Pentru:" -#: ../../mod/admin.php:624 -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 "Nu înlocui fotografiile private, locale, din postări cu o copie încorporată imaginii. Aceasta înseamnă că, contactele care primesc postări ce conțin fotografii private vor trebui să se autentifice şi să încarce fiecare imagine, ceea ce poate dura ceva timp." +#: ../../mod/network.php:189 ../../include/group.php:275 +msgid "add" +msgstr "add" -#: ../../mod/admin.php:625 -msgid "Allow Users to set remote_self" -msgstr "Permite utilizatorilor să-și stabilească remote_self" +#: ../../mod/network.php:350 +msgid "Commented Order" +msgstr "Ordonare Comentarii" -#: ../../mod/admin.php:625 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." -msgstr "Bifând aceasta, fiecărui utilizator îi este permis să marcheze fiecare contact, ca și propriu_la-distanță în dialogul de remediere contact. Stabilind acest marcaj unui un contact, va determina oglindirea fiecărei postări a respectivului contact, în fluxul utilizatorilor." +#: ../../mod/network.php:353 +msgid "Sort by Comment Date" +msgstr "Sortare după Data Comentariului" -#: ../../mod/admin.php:626 -msgid "Block multiple registrations" -msgstr "Blocare înregistrări multiple" +#: ../../mod/network.php:356 +msgid "Posted Order" +msgstr "Ordonare Postări" -#: ../../mod/admin.php:626 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Interzice utilizatorilor să-și înregistreze conturi adiționale pentru a le folosi ca pagini." +#: ../../mod/network.php:359 +msgid "Sort by Post Date" +msgstr "Sortare după Data Postării" -#: ../../mod/admin.php:627 -msgid "OpenID support" -msgstr "OpenID support" +#: ../../mod/network.php:368 +msgid "Posts that mention or involve you" +msgstr "Postări ce vă menționează sau vă implică" -#: ../../mod/admin.php:627 -msgid "OpenID support for registration and logins." -msgstr "Suport OpenID pentru înregistrare şi autentificări." +#: ../../mod/network.php:374 +msgid "New" +msgstr "Nou" -#: ../../mod/admin.php:628 -msgid "Fullname check" -msgstr "Verificare Nume complet" +#: ../../mod/network.php:377 +msgid "Activity Stream - by date" +msgstr "Flux Activități - după dată" -#: ../../mod/admin.php:628 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Forțează utilizatorii să se înregistreze cu un spaÅ£iu între prenume şi nume, în câmpul pentru Nume complet, ca și măsură antispam" +#: ../../mod/network.php:383 +msgid "Shared Links" +msgstr "Linkuri partajate" -#: ../../mod/admin.php:629 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 Regular expresii" +#: ../../mod/network.php:386 +msgid "Interesting Links" +msgstr "Legături Interesante" -#: ../../mod/admin.php:629 -msgid "Use PHP UTF8 regular expressions" -msgstr "UtilizaÅ£i PHP UTF-8 Regular expresii" +#: ../../mod/network.php:392 +msgid "Starred" +msgstr "Cu steluță" -#: ../../mod/admin.php:630 -msgid "Show Community Page" -msgstr "Arată Pagina Communitz" +#: ../../mod/network.php:395 +msgid "Favourite Posts" +msgstr "Postări Favorite" -#: ../../mod/admin.php:630 -msgid "" -"Display a Community page showing all recent public postings on this site." -msgstr "Afişează o Pagina de Comunitate, arătând toate postările publice recente pe acest site." +#: ../../mod/network.php:457 +#, 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] "Atenție: Acest grup conÅ£ine %s membru dintr-o reÅ£ea nesigură." +msgstr[1] "Atenție: Acest grup conÅ£ine %s membrii dintr-o reÅ£ea nesigură." +msgstr[2] "Atenție: Acest grup conÅ£ine %s de membrii dintr-o reÅ£ea nesigură." -#: ../../mod/admin.php:631 -msgid "Enable OStatus support" -msgstr "Activează Suport OStatus" +#: ../../mod/network.php:460 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Mesajele private către acest grup sunt supuse riscului de divulgare publică." -#: ../../mod/admin.php:631 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "Oferă compatibilitate de integrare OStatus (StatusNet, GNU Sociale etc.). Toate comunicațiile din OStatus sunt publice, astfel încât avertismentele de confidenÅ£ialitate vor fi ocazional afişate." +#: ../../mod/network.php:548 +msgid "Contact: " +msgstr "Contact: " -#: ../../mod/admin.php:632 -msgid "OStatus conversation completion interval" -msgstr "Intervalul OStatus de finalizare a conversaÅ£iei" +#: ../../mod/network.php:550 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Mesajele private către această persoană sunt supuse riscului de divulgare publică." -#: ../../mod/admin.php:632 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "Cât de des ar trebui, operatorul de sondaje, să verifice existența intrărilor noi din conversațiile OStatus? Aceasta poate fi o resursă de sarcini utile." +#: ../../mod/network.php:555 +msgid "Invalid contact." +msgstr "Invalid contact." -#: ../../mod/admin.php:633 -msgid "Enable Diaspora support" -msgstr "Activează Suport Diaspora" +#: ../../mod/crepair.php:106 +msgid "Contact settings applied." +msgstr "Configurările Contactului au fost aplicate." -#: ../../mod/admin.php:633 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Oferă o compatibilitate de reÅ£ea Diaspora, întegrată." +#: ../../mod/crepair.php:108 +msgid "Contact update failed." +msgstr "Actualizarea Contactului a eșuat." -#: ../../mod/admin.php:634 -msgid "Only allow Friendica contacts" -msgstr "Se permit doar contactele Friendica" +#: ../../mod/crepair.php:139 +msgid "Repair Contact Settings" +msgstr "Remediere Configurări Contact" -#: ../../mod/admin.php:634 +#: ../../mod/crepair.php:141 msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Toate contactele trebuie să utilizeze protocoalele Friendica. Toate celelalte protocoale, integrate, de comunicaÅ£ii sunt dezactivate." - -#: ../../mod/admin.php:635 -msgid "Verify SSL" -msgstr "Verifică SSL" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "AVERTISMENT: Această acțiune este foarte avansată şi dacă introduceÅ£i informaÅ£ii incorecte, comunicaÅ£iile cu acest contact se poate opri." -#: ../../mod/admin.php:635 +#: ../../mod/crepair.php:142 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 "Dacă doriÅ£i, puteÅ£i porni verificarea cu strictețe a certificatului. Aceasta va însemna că nu vă puteÅ£i conecta (deloc) la site-uri SSL auto-semnate." +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Vă rugăm să utilizaÅ£i acum butonul 'Înapoi' din browser, dacă nu sunteÅ£i sigur ce sa faceți pe această pagină." -#: ../../mod/admin.php:636 -msgid "Proxy user" -msgstr "Proxy user" +#: ../../mod/crepair.php:148 +msgid "Return to contact editor" +msgstr "ReveniÅ£i la editorul de contact" -#: ../../mod/admin.php:637 -msgid "Proxy URL" -msgstr "Proxy URL" +#: ../../mod/crepair.php:161 +msgid "Account Nickname" +msgstr "Pseudonim Cont" -#: ../../mod/admin.php:638 -msgid "Network timeout" -msgstr "Timp de expirare rețea" +#: ../../mod/crepair.php:162 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Nume_etichetă - suprascrie Numele/Pseudonimul" -#: ../../mod/admin.php:638 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valoare exprimată în secunde. Stabiliți la 0 pentru nelimitat (nu este recomandat)." +#: ../../mod/crepair.php:163 +msgid "Account URL" +msgstr "URL Cont" -#: ../../mod/admin.php:639 -msgid "Delivery interval" -msgstr "Interval de livrare" +#: ../../mod/crepair.php:164 +msgid "Friend Request URL" +msgstr "URL Solicitare Prietenie" -#: ../../mod/admin.php:639 -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 "Întârzierea proceselor de livrare în fundal, exprimată prin atâtea secunde, pentru a reduce încărcarea sistemului. Recomandat: 4-5 pentru gazde comune, 2-3 pentru servere virtuale private, 0-1 pentru servere dedicate mari." +#: ../../mod/crepair.php:165 +msgid "Friend Confirm URL" +msgstr "URL Confirmare Prietenie" -#: ../../mod/admin.php:640 -msgid "Poll interval" -msgstr "Interval de Sondare" +#: ../../mod/crepair.php:166 +msgid "Notification Endpoint URL" +msgstr "Punct final URL Notificare" -#: ../../mod/admin.php:640 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Întârzierea proceselor de sondare în fundal, exprimată prin atâtea secunde, pentru a reduce încărcarea sistemului. dacă este 0, utilizează intervalul de livrare." +#: ../../mod/crepair.php:167 +msgid "Poll/Feed URL" +msgstr "URL Sondaj/Flux" -#: ../../mod/admin.php:641 -msgid "Maximum Load Average" -msgstr "Media Maximă de Încărcare" +#: ../../mod/crepair.php:168 +msgid "New photo from this URL" +msgstr "Fotografie Nouă de la acest URL" -#: ../../mod/admin.php:641 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Încărcarea maximă a sistemului înainte ca livrarea şi procesele de sondare să fie amânate - implicit 50." +#: ../../mod/crepair.php:169 +msgid "Remote Self" +msgstr "Auto la Distanţă" -#: ../../mod/admin.php:643 -msgid "Use MySQL full text engine" -msgstr "Utilizare motor text-complet MySQL" +#: ../../mod/crepair.php:171 +msgid "Mirror postings from this contact" +msgstr "Postări în oglindă de la acest contact" -#: ../../mod/admin.php:643 +#: ../../mod/crepair.php:171 msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Activează motorul pentru text complet. Grăbeşte căutare - dar poate căuta, numai pentru minim 4 caractere." +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "MarcaÅ£i acest contact ca remote_self, aceasta va determina friendica să reposteze noile articole ale acestui contact." -#: ../../mod/admin.php:644 -msgid "Suppress Language" -msgstr "Suprimă Limba" +#: ../../mod/crepair.php:171 +msgid "No mirroring" +msgstr "" -#: ../../mod/admin.php:644 -msgid "Suppress language information in meta information about a posting." -msgstr "Suprimă informaÅ£iile despre limba din informaÅ£iile meta ale unei postări." +#: ../../mod/crepair.php:171 +msgid "Mirror as forwarded posting" +msgstr "" -#: ../../mod/admin.php:645 -msgid "Path to item cache" -msgstr "Calea pentru elementul cache" +#: ../../mod/crepair.php:171 +msgid "Mirror as my own posting" +msgstr "" -#: ../../mod/admin.php:646 -msgid "Cache duration in seconds" -msgstr "Durata Cache în secunde" +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 +#: ../../include/nav.php:146 +msgid "Your posts and conversations" +msgstr "Postările şi conversaÅ£iile dvs." -#: ../../mod/admin.php:646 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "Cât de mult ar trebui păstrate fișierele cache? Valoarea implicită este de 86400 de secunde (O zi). Pentru a dezactiva elementul cache, stabilește valoarea la -1." +#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 +msgid "Your profile page" +msgstr "Pagina dvs. de profil" -#: ../../mod/admin.php:647 -msgid "Maximum numbers of comments per post" -msgstr "Numărul maxim de comentarii per post" +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Contactele dvs." -#: ../../mod/admin.php:647 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "Câte comentarii ar trebui afișate pentru fiecare postare? Valoarea implicită este 100." +#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 +msgid "Your photos" +msgstr "Fotografiile dvs." -#: ../../mod/admin.php:648 -msgid "Path for lock file" -msgstr "Cale pentru blocare fișiere" +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80 +msgid "Your events" +msgstr "Evenimentele dvs." -#: ../../mod/admin.php:649 -msgid "Temp path" -msgstr "Calea Temp" +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81 +msgid "Personal notes" +msgstr "Note Personale" -#: ../../mod/admin.php:650 -msgid "Base path to installation" -msgstr "Calea de bază pentru instalare" +#: ../../view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Fotografii dvs. personale" -#: ../../mod/admin.php:651 -msgid "Disable picture proxy" -msgstr "" +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +#: ../../view/theme/diabook/config.php:158 +msgid "Community Pages" +msgstr "Community Pagini" -#: ../../mod/admin.php:651 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "" +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +#: ../../view/theme/diabook/config.php:160 +msgid "Community Profiles" +msgstr "Profile de Comunitate" -#: ../../mod/admin.php:653 -msgid "New base url" -msgstr "URL de bază nou" +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +#: ../../view/theme/diabook/config.php:164 +msgid "Last users" +msgstr "Ultimii utilizatori" -#: ../../mod/admin.php:655 -msgid "Enable noscrape" -msgstr "Activare fără-colectare" +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +#: ../../view/theme/diabook/config.php:166 +msgid "Last likes" +msgstr "Ultimele aprecieri" -#: ../../mod/admin.php:655 -msgid "" -"The noscrape feature speeds up directory submissions by using JSON data " -"instead of HTML scraping." -msgstr "Caracteristica fără-colectare accelerează trimiterea directoarelor folosind datele JSON în locul colectării HTML." +#: ../../view/theme/diabook/theme.php:463 ../../include/text.php:1963 +#: ../../include/conversation.php:118 ../../include/conversation.php:246 +msgid "event" +msgstr "eveniment" -#: ../../mod/admin.php:672 -msgid "Update has been marked successful" -msgstr "Actualizarea a fost marcată cu succes" +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +#: ../../view/theme/diabook/config.php:165 +msgid "Last photos" +msgstr "Ultimele fotografii" -#: ../../mod/admin.php:680 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "" +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +#: ../../view/theme/diabook/config.php:163 +msgid "Find Friends" +msgstr "Găsire Prieteni" -#: ../../mod/admin.php:683 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "" +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Director Local" -#: ../../mod/admin.php:695 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "" +#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36 +msgid "Similar Interests" +msgstr "Interese Similare" -#: ../../mod/admin.php:698 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Actualizarea %s a fost aplicată cu succes." +#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38 +msgid "Invite Friends" +msgstr "Invită Prieteni" -#: ../../mod/admin.php:702 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Actualizare %s nu a returnat nici-un status. Nu se știe dacă a reuşit." +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +#: ../../view/theme/diabook/config.php:159 +msgid "Earth Layers" +msgstr "Straturi Pământ" -#: ../../mod/admin.php:704 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "" +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Stabilire factor de magnificare pentru Straturi Pământ" -#: ../../mod/admin.php:723 -msgid "No failed updates." -msgstr "Nici-o actualizare eșuată." +#: ../../view/theme/diabook/theme.php:585 +#: ../../view/theme/diabook/config.php:156 +msgid "Set longitude (X) for Earth Layers" +msgstr "Stabilire longitudine (X) pentru Straturi Pământ" -#: ../../mod/admin.php:724 -msgid "Check database structure" -msgstr "" +#: ../../view/theme/diabook/theme.php:586 +#: ../../view/theme/diabook/config.php:157 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Stabilire latitudine (Y) pentru Straturi Pământ" -#: ../../mod/admin.php:729 -msgid "Failed Updates" -msgstr "Actualizări Eșuate" +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +#: ../../view/theme/diabook/config.php:161 +msgid "Help or @NewHere ?" +msgstr "Ajutor sau @NouAici ?" -#: ../../mod/admin.php:730 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Aceasta nu include actualizările dinainte de 1139, care nu a returnat nici-un status." +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +#: ../../view/theme/diabook/config.php:162 +msgid "Connect Services" +msgstr "Conectare Servicii" -#: ../../mod/admin.php:731 -msgid "Mark success (if update was manually applied)" -msgstr "MarcaÅ£i ca și realizat (dacă actualizarea a fost aplicată manual)" +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 +msgid "don't show" +msgstr "nu afișa" -#: ../../mod/admin.php:732 -msgid "Attempt to execute this update step automatically" -msgstr "Se încearcă executarea automată a acestei etape de actualizare" +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 +msgid "show" +msgstr "afișare" -#: ../../mod/admin.php:764 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "" +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Afişare/ascundere casete din coloana din dreapta:" -#: ../../mod/admin.php:767 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t\t%2$s\n" -"\t\t\tPassword:\t\t%3$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tThank you and welcome to %4$s." -msgstr "" +#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:54 +#: ../../view/theme/dispy/config.php:72 +#: ../../view/theme/duepuntozero/config.php:61 +#: ../../view/theme/quattro/config.php:66 +#: ../../view/theme/cleanzero/config.php:82 +msgid "Theme settings" +msgstr "Configurări Temă" -#: ../../mod/admin.php:811 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s utilizator blocat/deblocat" -msgstr[1] "%s utilizatori blocați/deblocați" -msgstr[2] "%s de utilizatori blocați/deblocați" - -#: ../../mod/admin.php:818 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s utilizator şters" -msgstr[1] "%s utilizatori şterşi" -msgstr[2] "%s utilizatori şterşi" +#: ../../view/theme/diabook/config.php:151 +#: ../../view/theme/dispy/config.php:73 +#: ../../view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "Stabilire dimensiune font pentru postări şi comentarii" -#: ../../mod/admin.php:857 -#, php-format -msgid "User '%s' deleted" -msgstr "Utilizator %s şters" +#: ../../view/theme/diabook/config.php:152 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Stabilire înălțime linie pentru postări şi comentarii" -#: ../../mod/admin.php:865 -#, php-format -msgid "User '%s' unblocked" -msgstr "Utilizator %s deblocat" +#: ../../view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Stabilire rezoluÅ£ie pentru coloana din mijloc" -#: ../../mod/admin.php:865 -#, php-format -msgid "User '%s' blocked" -msgstr "Utilizator %s blocat" +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Stabilire schemă de culori" -#: ../../mod/admin.php:960 -msgid "Add User" -msgstr "AdăugaÅ£i Utilizator" +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Stabilire factor de magnificare pentru Straturi Pământ" -#: ../../mod/admin.php:961 -msgid "select all" -msgstr "selectează tot" +#: ../../view/theme/vier/config.php:55 +msgid "Set style" +msgstr "Stabilire stil" -#: ../../mod/admin.php:962 -msgid "User registrations waiting for confirm" -msgstr "Înregistrarea utilizatorului, aşteaptă confirmarea" +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Stabilire schemă de culori" -#: ../../mod/admin.php:963 -msgid "User waiting for permanent deletion" -msgstr "Utilizatorul așteaptă să fie șters definitiv" +#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1699 +#: ../../include/user.php:247 +msgid "default" +msgstr "implicit" -#: ../../mod/admin.php:964 -msgid "Request date" -msgstr "Data cererii" +#: ../../view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "zeroverde" -#: ../../mod/admin.php:965 -msgid "No registrations." -msgstr "Nici-o înregistrare." +#: ../../view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "zeroviolet" -#: ../../mod/admin.php:967 -msgid "Deny" -msgstr "Respinge" +#: ../../view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "" -#: ../../mod/admin.php:971 -msgid "Site admin" -msgstr "Site admin" +#: ../../view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "zeronegru" -#: ../../mod/admin.php:972 -msgid "Account expired" -msgstr "Cont expirat" +#: ../../view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "" -#: ../../mod/admin.php:975 -msgid "New User" -msgstr "Utilizator Nou" +#: ../../view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "" -#: ../../mod/admin.php:976 ../../mod/admin.php:977 -msgid "Register date" -msgstr "Data înregistrare" +#: ../../view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "" -#: ../../mod/admin.php:976 ../../mod/admin.php:977 -msgid "Last login" -msgstr "Ultimul login" +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Aliniere" -#: ../../mod/admin.php:976 ../../mod/admin.php:977 -msgid "Last item" -msgstr "Ultimul element" +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Stânga" -#: ../../mod/admin.php:976 -msgid "Deleted since" -msgstr "Șters din" +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Centrat" -#: ../../mod/admin.php:979 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Utilizatorii selectați vor fi ştersi!\\n\\nTot ce au postat acești utilizatori pe acest site, va fi şters permanent!\\n\\nConfirmați?" +#: ../../view/theme/quattro/config.php:68 +#: ../../view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "Schemă culoare" -#: ../../mod/admin.php:980 -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 "Utilizatorul {0} va fi şters!\\n\\nTot ce a postat acest utilizator pe acest site, va fi şters permanent!\\n\\nConfirmați?" +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Dimensiune font postări" -#: ../../mod/admin.php:990 -msgid "Name of the new user." -msgstr "Numele noului utilizator." +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Dimensiune font zone text" -#: ../../mod/admin.php:991 -msgid "Nickname" -msgstr "Pseudonim" +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Stabiliți nivelul de redimensionare a imaginilor din postări și comentarii (lăţimea şi înălÅ£imea)" -#: ../../mod/admin.php:991 -msgid "Nickname of the new user." -msgstr "Pseudonimul noului utilizator." +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Stabilire lăţime temă" -#: ../../mod/admin.php:992 -msgid "Email address of the new user." -msgstr "Adresa de e-mail a utilizatorului nou." +#: ../../boot.php:723 +msgid "Delete this item?" +msgstr "Ștergeți acest element?" -#: ../../mod/admin.php:1025 -#, php-format -msgid "Plugin %s disabled." -msgstr "Modulul %s a fost dezactivat." +#: ../../boot.php:726 +msgid "show fewer" +msgstr "afișare mai puține" -#: ../../mod/admin.php:1029 +#: ../../boot.php:1096 #, php-format -msgid "Plugin %s enabled." -msgstr "Modulul %s a fost activat." +msgid "Update %s failed. See error logs." +msgstr "Actualizarea %s a eșuat. ConsultaÅ£i jurnalele de eroare." -#: ../../mod/admin.php:1039 ../../mod/admin.php:1255 -msgid "Disable" -msgstr "Dezactivează" +#: ../../boot.php:1214 +msgid "Create a New Account" +msgstr "CreaÅ£i un Cont Nou" -#: ../../mod/admin.php:1041 ../../mod/admin.php:1257 -msgid "Enable" -msgstr "Activează" +#: ../../boot.php:1239 ../../include/nav.php:73 +msgid "Logout" +msgstr "Deconectare" -#: ../../mod/admin.php:1064 ../../mod/admin.php:1285 -msgid "Toggle" -msgstr "Comutare" +#: ../../boot.php:1240 ../../include/nav.php:92 +msgid "Login" +msgstr "Login" -#: ../../mod/admin.php:1072 ../../mod/admin.php:1295 -msgid "Author: " -msgstr "Autor: " +#: ../../boot.php:1242 +msgid "Nickname or Email address: " +msgstr "Pseudonimul sau Adresa de email:" -#: ../../mod/admin.php:1073 ../../mod/admin.php:1296 -msgid "Maintainer: " -msgstr "Responsabil:" +#: ../../boot.php:1243 +msgid "Password: " +msgstr "Parola:" -#: ../../mod/admin.php:1215 -msgid "No themes found." -msgstr "Nici-o temă găsită." +#: ../../boot.php:1244 +msgid "Remember me" +msgstr "Reține autentificarea" -#: ../../mod/admin.php:1277 -msgid "Screenshot" -msgstr "Screenshot" +#: ../../boot.php:1247 +msgid "Or login using OpenID: " +msgstr "Sau conectaÅ£i-vă utilizând OpenID:" -#: ../../mod/admin.php:1323 -msgid "[Experimental]" -msgstr "[Experimental]" +#: ../../boot.php:1253 +msgid "Forgot your password?" +msgstr "Ați uitat parola?" -#: ../../mod/admin.php:1324 -msgid "[Unsupported]" -msgstr "[Unsupported]" +#: ../../boot.php:1256 +msgid "Website Terms of Service" +msgstr "Condiții de Utilizare Site Web" -#: ../../mod/admin.php:1351 -msgid "Log settings updated." -msgstr "Jurnalul de configurări fost actualizat." +#: ../../boot.php:1257 +msgid "terms of service" +msgstr "condiții de utilizare" -#: ../../mod/admin.php:1407 -msgid "Clear" -msgstr "Curăţă" +#: ../../boot.php:1259 +msgid "Website Privacy Policy" +msgstr "Politica de Confidențialitate Site Web" -#: ../../mod/admin.php:1413 -msgid "Enable Debugging" -msgstr "Activează Depanarea" +#: ../../boot.php:1260 +msgid "privacy policy" +msgstr "politica de confidențialitate" -#: ../../mod/admin.php:1414 -msgid "Log file" -msgstr "Fişier Log " +#: ../../boot.php:1393 +msgid "Requested account is not available." +msgstr "Contul solicitat nu este disponibil." -#: ../../mod/admin.php:1414 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Trebuie să fie inscriptibil pentru serverul web. Relativ la directoul dvs. superior Friendica." +#: ../../boot.php:1475 ../../boot.php:1609 +#: ../../include/profile_advanced.php:84 +msgid "Edit profile" +msgstr "Editare profil" -#: ../../mod/admin.php:1415 -msgid "Log level" -msgstr "Nivel log" +#: ../../boot.php:1574 +msgid "Message" +msgstr "Mesaj" -#: ../../mod/admin.php:1465 -msgid "Close" -msgstr "Închide" +#: ../../boot.php:1580 ../../include/nav.php:173 +msgid "Profiles" +msgstr "Profile" -#: ../../mod/admin.php:1471 -msgid "FTP Host" -msgstr "FTP Host" +#: ../../boot.php:1580 +msgid "Manage/edit profiles" +msgstr "Gestionare/editare profile" -#: ../../mod/admin.php:1472 -msgid "FTP Path" -msgstr "FTP Path" +#: ../../boot.php:1677 +msgid "Network:" +msgstr "ReÅ£ea:" -#: ../../mod/admin.php:1473 -msgid "FTP User" -msgstr "FTP User" +#: ../../boot.php:1707 ../../boot.php:1793 +msgid "g A l F d" +msgstr "g A l F d" -#: ../../mod/admin.php:1474 -msgid "FTP Password" -msgstr "FTP Parolă" +#: ../../boot.php:1708 ../../boot.php:1794 +msgid "F d" +msgstr "F d" -#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Dimensiunea imaginii depăşeşte limita de %d" +#: ../../boot.php:1753 ../../boot.php:1834 +msgid "[today]" +msgstr "[azi]" -#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807 -#: ../../mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Nu s-a putut procesa imaginea." +#: ../../boot.php:1765 +msgid "Birthday Reminders" +msgstr "Memento Zile naştere " -#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Încărcarea imaginii a eşuat." +#: ../../boot.php:1766 +msgid "Birthdays this week:" +msgstr "Zi;e Naştere această săptămînă:" -#: ../../mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Bine aÅ£i venit la %s" +#: ../../boot.php:1827 +msgid "[No description]" +msgstr "[Fără descriere]" -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Eroare de protocol OpenID. Nici-un ID returnat." +#: ../../boot.php:1845 +msgid "Event Reminders" +msgstr "Memento Eveniment" -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Contul nu a fost găsit iar înregistrările OpenID nu sunt permise pe acest site." +#: ../../boot.php:1846 +msgid "Events this week:" +msgstr "Evenimente în această săptămână:" -#: ../../mod/network.php:136 -msgid "Search Results For:" -msgstr "Rezultatele Căutării Pentru:" +#: ../../boot.php:2083 ../../include/nav.php:76 +msgid "Status" +msgstr "Status" -#: ../../mod/network.php:179 ../../mod/search.php:21 -msgid "Remove term" -msgstr "Eliminare termen" +#: ../../boot.php:2086 +msgid "Status Messages and Posts" +msgstr "Status Mesaje şi Postări" -#: ../../mod/network.php:350 -msgid "Commented Order" -msgstr "Ordonare Comentarii" +#: ../../boot.php:2093 +msgid "Profile Details" +msgstr "Detalii Profil" -#: ../../mod/network.php:353 -msgid "Sort by Comment Date" -msgstr "Sortare după Data Comentariului" +#: ../../boot.php:2104 ../../boot.php:2107 ../../include/nav.php:79 +msgid "Videos" +msgstr "Clipuri video" -#: ../../mod/network.php:356 -msgid "Posted Order" -msgstr "Ordonare Postări" +#: ../../boot.php:2117 +msgid "Events and Calendar" +msgstr "Evenimente şi Calendar" -#: ../../mod/network.php:359 -msgid "Sort by Post Date" -msgstr "Sortare după Data Postării" +#: ../../boot.php:2124 +msgid "Only You Can See This" +msgstr "Numai Dvs. PuteÅ£i Vizualiza" -#: ../../mod/network.php:368 -msgid "Posts that mention or involve you" -msgstr "Postări ce vă menționează sau vă implică" +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Caracteristici Generale" -#: ../../mod/network.php:374 -msgid "New" -msgstr "Nou" +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "Profile Multiple" -#: ../../mod/network.php:377 -msgid "Activity Stream - by date" -msgstr "Flux Activități - după dată" +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Capacitatea de a crea profile multiple" -#: ../../mod/network.php:383 -msgid "Shared Links" -msgstr "Linkuri partajate" +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "Caracteristici CompoziÅ£ie Postare" -#: ../../mod/network.php:386 -msgid "Interesting Links" -msgstr "Legături Interesante" +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "Editor Text Îmbogățit" -#: ../../mod/network.php:392 -msgid "Starred" -msgstr "Cu steluță" +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "Activare editor text îmbogățit" -#: ../../mod/network.php:395 -msgid "Favourite Posts" -msgstr "Postări Favorite" +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Previzualizare Postare" -#: ../../mod/network.php:457 -#, 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] "Atenție: Acest grup conÅ£ine %s membru dintr-o reÅ£ea nesigură." -msgstr[1] "Atenție: Acest grup conÅ£ine %s membrii dintr-o reÅ£ea nesigură." -msgstr[2] "Atenție: Acest grup conÅ£ine %s de membrii dintr-o reÅ£ea nesigură." +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Permiteți previzualizarea postărilor şi comentariilor înaintea publicării lor" -#: ../../mod/network.php:460 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Mesajele private către acest grup sunt supuse riscului de divulgare publică." +#: ../../include/features.php:33 +msgid "Auto-mention Forums" +msgstr "Auto-menÅ£ionare Forumuri" -#: ../../mod/network.php:514 ../../mod/content.php:119 -msgid "No such group" -msgstr "Membrii" +#: ../../include/features.php:33 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "AdăugaÅ£i/eliminaÅ£i mențiunea când o pagină de forum este selectată/deselectată în fereastra ACL." -#: ../../mod/network.php:531 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "Grupul este gol" +#: ../../include/features.php:38 +msgid "Network Sidebar Widgets" +msgstr "AplicaÅ£ii widget de Rețea în Bara Laterală" -#: ../../mod/network.php:538 ../../mod/content.php:134 -msgid "Group: " -msgstr "Grup:" +#: ../../include/features.php:39 +msgid "Search by Date" +msgstr "Căutare după Dată" -#: ../../mod/network.php:548 -msgid "Contact: " -msgstr "Contact: " +#: ../../include/features.php:39 +msgid "Ability to select posts by date ranges" +msgstr "Abilitatea de a selecta postări după intervalele de timp" -#: ../../mod/network.php:550 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "Mesajele private către această persoană sunt supuse riscului de divulgare publică." +#: ../../include/features.php:40 +msgid "Group Filter" +msgstr "Filtru Grup" -#: ../../mod/network.php:555 -msgid "Invalid contact." -msgstr "Invalid contact." +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Permiteți aplicației widget să afișeze postări din Rețea, numai din grupul selectat" -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- selectare -" +#: ../../include/features.php:41 +msgid "Network Filter" +msgstr "Filtru ReÅ£ea" -#: ../../mod/friendica.php:62 -msgid "This is Friendica, version" -msgstr "Friendica, versiunea" +#: ../../include/features.php:41 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Permiteți aplicației widget să afișeze postări din Rețea, numai din rețeaua selectată" -#: ../../mod/friendica.php:63 -msgid "running at web location" -msgstr "rulează la locaÅ£ia web" +#: ../../include/features.php:42 +msgid "Save search terms for re-use" +msgstr "Salvați termenii de căutare pentru reutilizare" -#: ../../mod/friendica.php:65 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Vă rugăm să vizitaÅ£i Friendica.com pentru a afla mai multe despre proiectul Friendica." +#: ../../include/features.php:47 +msgid "Network Tabs" +msgstr "File ReÅ£ea" -#: ../../mod/friendica.php:67 -msgid "Bug reports and issues: please visit" -msgstr "Rapoarte de erori şi probleme: vă rugăm să vizitaÅ£i" +#: ../../include/features.php:48 +msgid "Network Personal Tab" +msgstr "Filă Personală de ReÅ£ea" -#: ../../mod/friendica.php:68 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Sugestii, laude, donatii, etc. - vă rugăm să trimiteți un email pe \"Info\" at Friendica - dot com" +#: ../../include/features.php:48 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Permiteți filei să afişeze numai postările ReÅ£elei cu care ați interacÅ£ionat" -#: ../../mod/friendica.php:82 -msgid "Installed plugins/addons/apps:" -msgstr "Module/suplimente/aplicații instalate:" +#: ../../include/features.php:49 +msgid "Network New Tab" +msgstr "Filă Nouă de ReÅ£ea" -#: ../../mod/friendica.php:95 -msgid "No installed plugins/addons/apps" -msgstr "Module/suplimente/aplicații neinstalate" +#: ../../include/features.php:49 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Permiteți filei să afişeze numai postările noi din ReÅ£ea (din ultimele 12 ore)" -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "Aplicații" +#: ../../include/features.php:50 +msgid "Network Shared Links Tab" +msgstr "Filă Legături Distribuite în Rețea" -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "Nu există aplicații instalate." +#: ../../include/features.php:50 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Permiteți filei să afişeze numai postările din ReÅ£ea ce conțin legături" -#: ../../mod/photos.php:67 ../../mod/photos.php:1228 ../../mod/photos.php:1817 -msgid "Upload New Photos" -msgstr "ÎncărcaÅ£i Fotografii Noi" +#: ../../include/features.php:55 +msgid "Post/Comment Tools" +msgstr "Instrumente Postare/Comentariu" -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "InformaÅ£ii contact nedisponibile" +#: ../../include/features.php:56 +msgid "Multiple Deletion" +msgstr "Ştergere Multiplă" -#: ../../mod/photos.php:165 -msgid "Album not found." -msgstr "Album negăsit" +#: ../../include/features.php:56 +msgid "Select and delete multiple posts/comments at once" +msgstr "SelectaÅ£i şi ştergeÅ£i postări/comentarii multiple simultan" -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1206 -msgid "Delete Album" -msgstr "Şterge Album" +#: ../../include/features.php:57 +msgid "Edit Sent Posts" +msgstr "Editare Postări Trimise" -#: ../../mod/photos.php:198 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "DoriÅ£i într-adevăr să ştergeÅ£i acest album foto și toate fotografiile sale?" +#: ../../include/features.php:57 +msgid "Edit and correct posts and comments after sending" +msgstr "Editarea şi corectarea postărilor şi comentariilor după postarea lor" -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1513 -msgid "Delete Photo" -msgstr "Şterge Poza" +#: ../../include/features.php:58 +msgid "Tagging" +msgstr "Etichetare" -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "Sigur doriți să ștergeți această fotografie?" +#: ../../include/features.php:58 +msgid "Ability to tag existing posts" +msgstr "Capacitatea de a eticheta postările existente" -#: ../../mod/photos.php:662 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s a fost etichetat în %2$s de către %3$s" +#: ../../include/features.php:59 +msgid "Post Categories" +msgstr "Categorii Postări" -#: ../../mod/photos.php:662 -msgid "a photo" -msgstr "o poză" +#: ../../include/features.php:59 +msgid "Add categories to your posts" +msgstr "AdăugaÅ£i categorii la postările dvs." -#: ../../mod/photos.php:767 -msgid "Image exceeds size limit of " -msgstr "Dimensiunea imaginii depăşeşte limita de" +#: ../../include/features.php:60 ../../include/contact_widgets.php:104 +msgid "Saved Folders" +msgstr "Dosare Salvate" -#: ../../mod/photos.php:775 -msgid "Image file is empty." -msgstr "Fișierul imagine este gol." +#: ../../include/features.php:60 +msgid "Ability to file posts under folders" +msgstr "Capacitatea de a atribui postări în dosare" -#: ../../mod/photos.php:930 -msgid "No photos selected" -msgstr "Nici-o fotografie selectată" - -#: ../../mod/photos.php:1094 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "AÅ£i folosit %1$.2f Mb din %2$.2f Mb de stocare foto." - -#: ../../mod/photos.php:1129 -msgid "Upload Photos" -msgstr "Încărcare Fotografii" - -#: ../../mod/photos.php:1133 ../../mod/photos.php:1201 -msgid "New album name: " -msgstr "Nume album nou:" +#: ../../include/features.php:61 +msgid "Dislike Posts" +msgstr "Respingere Postări" -#: ../../mod/photos.php:1134 -msgid "or existing album name: " -msgstr "sau numele unui album existent:" +#: ../../include/features.php:61 +msgid "Ability to dislike posts/comments" +msgstr "Capacitatea de a marca postări/comentarii ca fiind neplăcute" -#: ../../mod/photos.php:1135 -msgid "Do not show a status post for this upload" -msgstr "Nu afișa un status pentru această încărcare" +#: ../../include/features.php:62 +msgid "Star Posts" +msgstr "Postări cu Steluță" -#: ../../mod/photos.php:1137 ../../mod/photos.php:1508 -msgid "Permissions" -msgstr "Permisiuni" +#: ../../include/features.php:62 +msgid "Ability to mark special posts with a star indicator" +msgstr "Capacitatea de a marca posturile speciale cu o stea ca şi indicator" -#: ../../mod/photos.php:1148 -msgid "Private Photo" -msgstr "Poze private" +#: ../../include/features.php:63 +msgid "Mute Post Notifications" +msgstr "" -#: ../../mod/photos.php:1149 -msgid "Public Photo" -msgstr "Poze Publice" +#: ../../include/features.php:63 +msgid "Ability to mute notifications for a thread" +msgstr "" -#: ../../mod/photos.php:1216 -msgid "Edit Album" -msgstr "Editează Album" +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Deconectat." -#: ../../mod/photos.php:1222 -msgid "Show Newest First" -msgstr "Afișează Întâi cele Noi" +#: ../../include/auth.php:128 ../../include/user.php:67 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Am întâmpinat o problemă în timpul autentificării cu datele OpenID pe care le-ați furnizat." -#: ../../mod/photos.php:1224 -msgid "Show Oldest First" -msgstr "Afișează Întâi cele Vechi" +#: ../../include/auth.php:128 ../../include/user.php:67 +msgid "The error message was:" +msgstr "Mesajul de eroare a fost:" -#: ../../mod/photos.php:1257 ../../mod/photos.php:1800 -msgid "View Photo" -msgstr "Vizualizare Fotografie" +#: ../../include/event.php:20 ../../include/bb2diaspora.php:140 +msgid "Starts:" +msgstr "Începe:" -#: ../../mod/photos.php:1292 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permisiune refuzată. Accesul la acest element poate fi restricționat." +#: ../../include/event.php:30 ../../include/bb2diaspora.php:148 +msgid "Finishes:" +msgstr "Se finalizează:" -#: ../../mod/photos.php:1294 -msgid "Photo not available" -msgstr "Fotografia nu este disponibilă" +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" +msgstr "j F, Y" -#: ../../mod/photos.php:1350 -msgid "View photo" -msgstr "Vezi foto" +#: ../../include/profile_advanced.php:23 +msgid "j F" +msgstr "j F" -#: ../../mod/photos.php:1350 -msgid "Edit photo" -msgstr "Editează poza" +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" +msgstr "Zile Naştere :" -#: ../../mod/photos.php:1351 -msgid "Use as profile photo" -msgstr "Utilizați ca și fotografie de profil" +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Vârsta:" -#: ../../mod/photos.php:1376 -msgid "View Full Size" -msgstr "Vizualizați la Dimensiunea Completă" +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "pentru %1$d %2$s" -#: ../../mod/photos.php:1455 -msgid "Tags: " +#: ../../include/profile_advanced.php:52 +msgid "Tags:" msgstr "Etichete:" -#: ../../mod/photos.php:1458 -msgid "[Remove any tag]" -msgstr "[Elimină orice etichetă]" +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Religie:" -#: ../../mod/photos.php:1498 -msgid "Rotate CW (right)" -msgstr "Rotire spre dreapta" +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Hobby/Interese:" -#: ../../mod/photos.php:1499 -msgid "Rotate CCW (left)" -msgstr "Rotire spre stânga" +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "InformaÅ£ii de Contact şi ReÅ£ele Sociale:" -#: ../../mod/photos.php:1501 -msgid "New album name" -msgstr "Nume Nou Album" +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Preferințe muzicale:" -#: ../../mod/photos.php:1504 -msgid "Caption" -msgstr "Titlu" +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Cărti, literatură:" -#: ../../mod/photos.php:1506 -msgid "Add a Tag" -msgstr "Adaugă un Tag" +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "Programe TV:" -#: ../../mod/photos.php:1510 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Exemplu: @Bob, @Barbara_Jensen, @jim@exemplu.com , #California, #camping" +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/dans/cultură/divertisment:" -#: ../../mod/photos.php:1519 -msgid "Private photo" -msgstr "Poze private" +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Dragoste/Romantism:" -#: ../../mod/photos.php:1520 -msgid "Public photo" -msgstr "Poze Publice" +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Loc de Muncă/Slujbă:" -#: ../../mod/photos.php:1815 -msgid "Recent Photos" -msgstr "Poze Recente" +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "Școală/educatie:" -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Contact addăugat" +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[fără subiect]" -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "MutaÅ£i contul" +#: ../../include/Scrape.php:584 +msgid " on Last.fm" +msgstr "pe Last.fm" -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "PuteÅ£i importa un cont dintr-un alt server Friendica." +#: ../../include/text.php:296 +msgid "newer" +msgstr "mai noi" -#: ../../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 "Trebuie să vă exportați contul din vechiul server şi să-l încărcaÅ£i aici. Vă vom recrea vechiul cont, aici cu toate contactele sale. Vom încerca de altfel să vă informăm prietenii că v-ați mutat aici." +#: ../../include/text.php:298 +msgid "older" +msgstr "mai vechi" -#: ../../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 "Această caracteristică este experimentală. Nu putem importa contactele din reÅ£eaua OStatus (statusnet/identi.ca) sau din Diaspora" +#: ../../include/text.php:303 +msgid "prev" +msgstr "preced" -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "Fişier Cont" +#: ../../include/text.php:305 +msgid "first" +msgstr "prima" -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Pentru a vă exporta contul, deplasaÅ£i-vă la \"Configurări- >Export date personale \" şi selectaÅ£i \"Exportare cont \"" +#: ../../include/text.php:337 +msgid "last" +msgstr "ultima" -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limita totală a invitațiilor a fost depăşită." +#: ../../include/text.php:340 +msgid "next" +msgstr "următor" -#: ../../mod/invite.php:49 +#: ../../include/text.php:854 +msgid "No contacts" +msgstr "Nici-un contact" + +#: ../../include/text.php:863 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Nu este o adresă vaildă de email." +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d Contact" +msgstr[1] "%d Contacte" +msgstr[2] "%d de Contacte" -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Vă rugăm să veniți alături de noi pe Friendica" +#: ../../include/text.php:1004 +msgid "poke" +msgstr "abordare" -#: ../../mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limita invitațiilor a fost depăşită. Vă rugăm să vă contactați administratorul de sistem." +#: ../../include/text.php:1004 ../../include/conversation.php:211 +msgid "poked" +msgstr "a fost abordat(ă)" -#: ../../mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Livrarea mesajului a eşuat." +#: ../../include/text.php:1005 +msgid "ping" +msgstr "ping" -#: ../../mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d mesaj trimis." -msgstr[1] "%d mesaje trimise." -msgstr[2] "%d de mesaje trimise." +#: ../../include/text.php:1005 +msgid "pinged" +msgstr "i s-a trimis ping" -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Nu mai aveți invitaÅ£ii disponibile" +#: ../../include/text.php:1006 +msgid "prod" +msgstr "prod" -#: ../../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 "VizitaÅ£i %s pentru o lista de site-uri publice la care puteÅ£i alătura. Membrii Friendica de pe alte site-uri se pot conecta cu toții între ei, precum şi cu membri ai multor alte reÅ£ele sociale." +#: ../../include/text.php:1006 +msgid "prodded" +msgstr "i s-a atras atenția" -#: ../../mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Pentru a accepta această invitaÅ£ie, vă rugăm să vizitaÅ£i şi să vă înregistraÅ£i pe %s sau orice alt site public Friendica." +#: ../../include/text.php:1007 +msgid "slap" +msgstr "plesnire" -#: ../../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 "Toate site-urile Friendica sunt interconectate pentru a crea o imensă rețea socială cu o confidențialitate sporită, ce este deținută și controlată de către membrii săi. Aceștia se pot conecta, de asemenea, cu multe rețele sociale tradiționale. VizitaÅ£i %s pentru o lista de site-uri alternative Friendica în care vă puteÅ£i alătura." +#: ../../include/text.php:1007 +msgid "slapped" +msgstr "a fost plesnit(ă)" -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Ne cerem scuze. Acest sistem nu este configurat în prezent pentru conectarea cu alte site-uri publice sau pentru a invita membrii." +#: ../../include/text.php:1008 +msgid "finger" +msgstr "indicare" -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Trimiteți invitaÅ£ii" +#: ../../include/text.php:1008 +msgid "fingered" +msgstr "a fost indicat(ă)" -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "IntroduceÅ£i adresele de email, una pe linie:" +#: ../../include/text.php:1009 +msgid "rebuff" +msgstr "respingere" -#: ../../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 "Vă invit cordial să vă alăturați mie, si altor prieteni apropiați, pe Friendica - şi să ne ajutați să creăm o rețea socială mai bună." +#: ../../include/text.php:1009 +msgid "rebuffed" +msgstr "a fost respins(ă)" -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Va fi nevoie să furnizați acest cod de invitaÅ£ie: $invite_code" +#: ../../include/text.php:1023 +msgid "happy" +msgstr "fericit(ă)" -#: ../../mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Odată ce v-aÅ£i înregistrat, vă rog să vă conectaÅ£i cu mine prin pagina mea de profil de la:" +#: ../../include/text.php:1024 +msgid "sad" +msgstr "trist(ă)" -#: ../../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 "Pentru mai multe informaÅ£ii despre proiectul Friendica, şi de ce credem că este important, vă rugăm să vizitaÅ£i http://friendica.com" +#: ../../include/text.php:1025 +msgid "mellow" +msgstr "trist(ă)" -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Accesul interzis." +#: ../../include/text.php:1026 +msgid "tired" +msgstr "obosit(ă)" -#: ../../mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Nici-un cont valid găsit." +#: ../../include/text.php:1027 +msgid "perky" +msgstr "arogant(ă)" -#: ../../mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Solicitarea de Resetare Parolă a fost emisă. Verificați-vă emailul." +#: ../../include/text.php:1028 +msgid "angry" +msgstr "supărat(ă)" -#: ../../mod/lostpass.php:42 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "" +#: ../../include/text.php:1029 +msgid "stupified" +msgstr "stupefiat(ă)" -#: ../../mod/lostpass.php:53 -#, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "" +#: ../../include/text.php:1030 +msgid "puzzled" +msgstr "nedumerit(ă)" -#: ../../mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Solicitarea de resetare a parolei a fost făcută la %s" +#: ../../include/text.php:1031 +msgid "interested" +msgstr "interesat(ă)" -#: ../../mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Solicitarea nu se poate verifica. (Este posibil să fi solicitat-o anterior.) Resetarea parolei a eșuat." +#: ../../include/text.php:1032 +msgid "bitter" +msgstr "amarnic" -#: ../../mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Parola a fost resetată conform solicitării." +#: ../../include/text.php:1033 +msgid "cheerful" +msgstr "vesel(ă)" -#: ../../mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Noua dvs. parolă este" +#: ../../include/text.php:1034 +msgid "alive" +msgstr "plin(ă) de viață" -#: ../../mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Salvați sau copiați noua dvs. parolă - şi apoi" +#: ../../include/text.php:1035 +msgid "annoyed" +msgstr "enervat(ă)" -#: ../../mod/lostpass.php:113 -msgid "click here to login" -msgstr "click aici pentru logare" +#: ../../include/text.php:1036 +msgid "anxious" +msgstr "neliniştit(ă)" -#: ../../mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Parola poate fi schimbată din pagina de Configurări după autentificarea cu succes." +#: ../../include/text.php:1037 +msgid "cranky" +msgstr "irascibil(ă)" -#: ../../mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "" +#: ../../include/text.php:1038 +msgid "disturbed" +msgstr "perturbat(ă)" -#: ../../mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "" +#: ../../include/text.php:1039 +msgid "frustrated" +msgstr "frustrat(ă)" -#: ../../mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Parola dumneavoastră a fost schimbată la %s" +#: ../../include/text.php:1040 +msgid "motivated" +msgstr "motivat(ă)" -#: ../../mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Ați uitat Parola?" +#: ../../include/text.php:1041 +msgid "relaxed" +msgstr "relaxat(ă)" -#: ../../mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "IntroduceÅ£i adresa dumneavoastră de email şi trimiteți-o pentru a vă reseta parola. Apoi verificaÅ£i-vă emailul pentru instrucÅ£iuni suplimentare." +#: ../../include/text.php:1042 +msgid "surprised" +msgstr "surprins(ă)" -#: ../../mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Pseudonim sau Email:" +#: ../../include/text.php:1210 +msgid "Monday" +msgstr "Luni" -#: ../../mod/lostpass.php:162 -msgid "Reset" -msgstr "Reset" +#: ../../include/text.php:1210 +msgid "Tuesday" +msgstr "MarÅ£i" -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Text (bbcode) sursă:" +#: ../../include/text.php:1210 +msgid "Wednesday" +msgstr "Miercuri" -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Text (Diaspora) sursă pentru a-l converti în BBcode:" +#: ../../include/text.php:1210 +msgid "Thursday" +msgstr "Joi" -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Intrare Sursă:" +#: ../../include/text.php:1210 +msgid "Friday" +msgstr "Vineri" -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (raw HTML): " +#: ../../include/text.php:1210 +msgid "Saturday" +msgstr "Sâmbătă" -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " +#: ../../include/text.php:1210 +msgid "Sunday" +msgstr "Duminică" -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " +#: ../../include/text.php:1214 +msgid "January" +msgstr "Ianuarie" -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " +#: ../../include/text.php:1214 +msgid "February" +msgstr "Februarie" -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " +#: ../../include/text.php:1214 +msgid "March" +msgstr "Martie" -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " +#: ../../include/text.php:1214 +msgid "April" +msgstr "Aprilie" -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " +#: ../../include/text.php:1214 +msgid "May" +msgstr "Mai" -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Intrare Sursă (Format Diaspora):" +#: ../../include/text.php:1214 +msgid "June" +msgstr "Iunie" -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " +#: ../../include/text.php:1214 +msgid "July" +msgstr "Iulie" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Etichetă eliminată" +#: ../../include/text.php:1214 +msgid "August" +msgstr "August" -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Eliminați Eticheta Elementului" +#: ../../include/text.php:1214 +msgid "September" +msgstr "Septembrie" -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Selectați o etichetă de eliminat:" +#: ../../include/text.php:1214 +msgid "October" +msgstr "Octombrie" -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Șterge Contul Meu" +#: ../../include/text.php:1214 +msgid "November" +msgstr "Noiembrie" -#: ../../mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Aceasta va elimina complet contul dvs. Odată ce a fostă, această acțiune este nerecuperabilă." +#: ../../include/text.php:1214 +msgid "December" +msgstr "Decembrie" + +#: ../../include/text.php:1434 +msgid "bytes" +msgstr "octeÅ£i" + +#: ../../include/text.php:1458 ../../include/text.php:1470 +msgid "Click to open/close" +msgstr "Apăsați pentru a deschide/închide" + +#: ../../include/text.php:1711 +msgid "Select an alternate language" +msgstr "Selectați o limbă alternativă" + +#: ../../include/text.php:1967 +msgid "activity" +msgstr "activitate" + +#: ../../include/text.php:1970 +msgid "post" +msgstr "postare" + +#: ../../include/text.php:2138 +msgid "Item filed" +msgstr "Element îndosariat" + +#: ../../include/api.php:278 ../../include/api.php:289 +#: ../../include/api.php:390 ../../include/api.php:975 +#: ../../include/api.php:977 +msgid "User not found." +msgstr "Utilizatorul nu a fost găsit." + +#: ../../include/api.php:1184 +msgid "There is no status with this id." +msgstr "Nu există nici-un status cu acest id." + +#: ../../include/api.php:1254 +msgid "There is no conversation with this id." +msgstr "Nu există nici-o conversație cu acest id." + +#: ../../include/dba.php:56 ../../include/dba_pdo.php:72 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Nu se pot localiza informațiile DNS pentru serverul de bază de date '%s'" + +#: ../../include/items.php:2112 ../../include/datetime.php:472 +#, php-format +msgid "%s's birthday" +msgstr "%s's zi de naştere" + +#: ../../include/items.php:2113 ../../include/datetime.php:473 +#, php-format +msgid "Happy Birthday %s" +msgstr "La mulÅ£i ani %s" -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Vă rugăm să introduceÅ£i parola dvs. pentru verificare:" +#: ../../include/items.php:4418 +msgid "Do you really want to delete this item?" +msgstr "Sigur doriți să ștergeți acest element?" -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Identificator profil, invalid." +#: ../../include/items.php:4641 +msgid "Archives" +msgstr "Arhive" -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Editor Vizibilitate Profil" +#: ../../include/delivery.php:456 ../../include/notifier.php:774 +msgid "(no subject)" +msgstr "(fără subiect)" -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Vizibil Pentru" +#: ../../include/delivery.php:467 ../../include/notifier.php:784 +#: ../../include/enotify.php:30 +msgid "noreply" +msgstr "nu-răspundeÅ£i" -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Toate Contactele (cu acces profil securizat)" +#: ../../include/diaspora.php:703 +msgid "Sharing notification from Diaspora network" +msgstr "Partajarea notificării din reÅ£eaua Diaspora" -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Potrivire Profil" +#: ../../include/diaspora.php:2312 +msgid "Attachments:" +msgstr "Atașări:" -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Nu există cuvinte cheie pentru a le potrivi. Vă rugăm să adăugaÅ£i cuvinte cheie la profilul dvs implicit." +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "Lipseşte URL-ul de conectare." -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "are interese pentru:" +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Acest site nu este configurat pentru a permite comunicarea cu alte reÅ£ele." -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "Titlul evenimentului şi timpul de pornire sunt necesare." +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Nu au fost descoperite protocoale de comunicaÅ£ii sau fluxuri compatibile." -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "l, F j" +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "Adresa de profil specificată nu furnizează informații adecvate." -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Editează eveniment" +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Un autor sau nume nu a fost găsit." -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Crează eveniment nou" +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Nici un URL de browser nu a putut fi corelat cu această adresă." -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "Precedent" +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Nu se poate corela @-stilul pentru Adresa de Identitatea cu un protocol cunoscut sau contact de email." -#: ../../mod/events.php:373 ../../mod/install.php:207 -msgid "Next" -msgstr "Next" +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "UtilizaÅ£i mailto: în faÅ£a adresei pentru a forÅ£a verificarea de email." -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "ore:minute" +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Adresa de profil specificată aparÅ£ine unei reÅ£ele care a fost dezactivată pe acest site." -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Detalii eveniment" +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Profil limitat. Această persoană nu va putea primi notificări directe/personale, de la dvs." -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "Formatul este %s %s.Data de începere și Titlul sunt necesare." +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Nu se pot localiza informaÅ£iile de contact." -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "Evenimentul Începe:" +#: ../../include/follow.php:259 +msgid "following" +msgstr "urmărire" -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Cerut" +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "Bine ați venit" -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "Data/ora de finalizare nu este cunoscută sau nu este relevantă" +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Vă rugăm să încărcaÅ£i o fotografie de profil." -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "Evenimentul se Finalizează:" +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "Bine ați revenit" -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Reglați pentru fusul orar al vizitatorului" +#: ../../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 "Formarea codului de securitate, nu a fost corectă. Aceasta probabil s-a întâmplat pentru că formularul a fost deschis pentru prea mult timp ( >3 ore) înainte de a-l transmite." -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Descriere:" +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Bărbat" -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Titlu:" +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Femeie" -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Partajează acest eveniment" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "În prezent Bărbat" -#: ../../mod/ping.php:240 -msgid "{0} wants to be your friend" -msgstr "{0} doreşte să vă fie prieten" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "În prezent Femeie" -#: ../../mod/ping.php:245 -msgid "{0} sent you a message" -msgstr "{0} v-a trimis un mesaj" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Mai mult Bărbat" -#: ../../mod/ping.php:250 -msgid "{0} requested registration" -msgstr "{0} a solicitat înregistrarea" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Mai mult Femeie" -#: ../../mod/ping.php:256 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} a comentat la articolul postat de %s" +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transsexual" -#: ../../mod/ping.php:261 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0} a apreciat articolul postat de %s" +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersexual" -#: ../../mod/ping.php:266 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} nu a apreciat articolul postat de %s" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transsexual" -#: ../../mod/ping.php:271 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} este acum prieten cu %s" +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodit" -#: ../../mod/ping.php:276 -msgid "{0} posted" -msgstr "{0} a postat" +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutru" -#: ../../mod/ping.php:281 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} a etichetat articolul postat de %s cu #%s" +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Non-specific" -#: ../../mod/ping.php:287 -msgid "{0} mentioned you in a post" -msgstr "{0} v-a menÅ£ionat într-o postare" +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Alta" -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "Stare de spirit" +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Indecisă" -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Stabiliți-vă starea de spirit curentă, şi comunicați-o prietenilor" +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Bărbați" -#: ../../mod/search.php:170 ../../mod/search.php:196 -#: ../../mod/community.php:62 ../../mod/community.php:71 -msgid "No results." -msgstr "Nici-un rezultat." +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Femei" -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Nu se pot localiza informaÅ£iile de contact." +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gay" -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Chiar doriÅ£i să ştergeÅ£i acest mesaj ?" +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbiană" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Fără Preferințe" -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Mesaj şters" +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisexual" -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Conversaşie inlăturată." +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autosexual" -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Nici-un mesaj." +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Abstinent(ă)" -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "Expeditor necunoscut - %s" +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Virgin(ă)" -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Tu şi %s" +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Deviant" -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s şi dvs" +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetish" -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Ștergeți conversaÅ£ia" +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "La grămadă" -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Nonsexual" -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d mesaj" -msgstr[1] "%d mesaje" -msgstr[2] "%d mesaje" +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Necăsătorit(ă)" -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Mesaj nedisponibil" +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Singur(ă)" -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Şterge mesaj" +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Disponibil(ă)" -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Nici-o comunicaÅ£ie securizată disponibilă. Veți putea răspunde din pagina de profil a expeditorului." +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Indisponibil(ă)" -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Răspunde" +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Îndrăgostit(ă)" -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Indisponibil." +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Îndrăgostit(ă) nebunește" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:133 -#: ../../mod/profiles.php:162 ../../mod/profiles.php:589 -#: ../../mod/dfrn_confirm.php:64 -msgid "Profile not found." -msgstr "Profil negăsit." +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "Am întâlniri" -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profilul a fost şters." +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Infidel(ă)" -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Profil-" +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Dependent(ă) de Sex" -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Profilul nou a fost creat." +#: ../../include/profile_selectors.php:42 ../../include/user.php:289 +#: ../../include/user.php:293 +msgid "Friends" +msgstr "Prieteni" -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Profil indisponibil pentru clonare." +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Prietenii/PrestaÅ£ii" -#: ../../mod/profiles.php:172 -msgid "Profile Name is required." -msgstr "Numele de Profil este necesar." +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Ocazional" -#: ../../mod/profiles.php:323 -msgid "Marital Status" -msgstr "Starea Civilă" +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Cuplat" -#: ../../mod/profiles.php:327 -msgid "Romantic Partner" -msgstr "Partener Romantic" +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Căsătorit(ă)" -#: ../../mod/profiles.php:331 -msgid "Likes" -msgstr "Likes" +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Căsătorit(ă) imaginar" -#: ../../mod/profiles.php:335 -msgid "Dislikes" -msgstr "Antipatii" +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Parteneri" -#: ../../mod/profiles.php:339 -msgid "Work/Employment" -msgstr "Loc de Muncă/Slujbă" +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "În conviețuire" -#: ../../mod/profiles.php:342 -msgid "Religion" -msgstr "Religie" +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "Drept Comun" -#: ../../mod/profiles.php:346 -msgid "Political Views" -msgstr "Viziuni Politice" +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Fericit(ă)" -#: ../../mod/profiles.php:350 -msgid "Gender" -msgstr "Sex" +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Nu caut" -#: ../../mod/profiles.php:354 -msgid "Sexual Preference" -msgstr "PreferinÅ£e Sexuale" +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Swinger" -#: ../../mod/profiles.php:358 -msgid "Homepage" -msgstr "Homepage" +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Înșelat(ă)" -#: ../../mod/profiles.php:362 ../../mod/profiles.php:657 -msgid "Interests" -msgstr "Interese" +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Separat(ă)" -#: ../../mod/profiles.php:366 -msgid "Address" -msgstr "Addresă" +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Instabil(ă)" -#: ../../mod/profiles.php:373 ../../mod/profiles.php:653 -msgid "Location" -msgstr "LocaÅ£ie" +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "DivorÅ£at(ă)" -#: ../../mod/profiles.php:456 -msgid "Profile updated." -msgstr "Profil actualizat." +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "DivorÅ£at(ă) imaginar" -#: ../../mod/profiles.php:527 -msgid " and " -msgstr "şi" +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Văduv(ă)" -#: ../../mod/profiles.php:535 -msgid "public profile" -msgstr "profil public" +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Incert" -#: ../../mod/profiles.php:538 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s a modificat %2$s în “%3$s”" +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "E complicat" -#: ../../mod/profiles.php:539 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "- Vizitați %2$s lui %1$s'" +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Nu-mi pasă" -#: ../../mod/profiles.php:542 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s și-a actualizat %2$s, modificând %3$s." +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Întreabă-mă" -#: ../../mod/profiles.php:617 -msgid "Hide contacts and friends:" -msgstr "Ascunde contacte și prieteni:" +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Eroare la decodarea fişierului de cont" + +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Eroare! Nu există data versiunii în fişier! Acesta nu este un fișier de cont Friendica?" -#: ../../mod/profiles.php:622 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "AscundeÅ£i lista dvs. de contacte/prieteni de vizitatorii acestui profil?" +#: ../../include/uimport.php:116 ../../include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Eroare! Nu pot verifica pseudonimul" -#: ../../mod/profiles.php:644 -msgid "Edit Profile Details" -msgstr "Editare Detalii Profil" +#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Utilizatorul '%s' există deja pe acest server!" -#: ../../mod/profiles.php:646 -msgid "Change Profile Photo" -msgstr "Modificați Fotografia de Profil" +#: ../../include/uimport.php:153 +msgid "User creation error" +msgstr "Eroare la crearea utilizatorului" -#: ../../mod/profiles.php:647 -msgid "View this profile" -msgstr "Vizualizați acest profil" +#: ../../include/uimport.php:171 +msgid "User profile creation error" +msgstr "Eroare la crearea profilului utilizatorului" -#: ../../mod/profiles.php:648 -msgid "Create a new profile using these settings" -msgstr "CreaÅ£i un profil nou folosind aceste configurări" +#: ../../include/uimport.php:220 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contact neimportat" +msgstr[1] "%d contacte neimportate" +msgstr[2] "%d de contacte neimportate" -#: ../../mod/profiles.php:649 -msgid "Clone this profile" -msgstr "Clonați acest profil" +#: ../../include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "Realizat. Vă puteÅ£i conecta acum cu parola şi numele dumneavoastră de utilizator" -#: ../../mod/profiles.php:650 -msgid "Delete this profile" -msgstr "ŞtergeÅ£i acest profil" +#: ../../include/plugin.php:455 ../../include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "Apăsați aici pentru a actualiza." -#: ../../mod/profiles.php:651 -msgid "Basic information" -msgstr "" +#: ../../include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Această acÅ£iune depăşeşte limitele stabilite de planul abonamentului dvs." -#: ../../mod/profiles.php:652 -msgid "Profile picture" -msgstr "" +#: ../../include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "Această acÅ£iune nu este disponibilă în planul abonamentului dvs." -#: ../../mod/profiles.php:654 -msgid "Preferences" -msgstr "" +#: ../../include/conversation.php:207 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s a abordat pe %2$s" -#: ../../mod/profiles.php:655 -msgid "Status information" -msgstr "" +#: ../../include/conversation.php:291 +msgid "post/item" +msgstr "post/element" -#: ../../mod/profiles.php:656 -msgid "Additional information" -msgstr "" +#: ../../include/conversation.php:292 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s a marcat %3$s de la %2$s ca favorit" -#: ../../mod/profiles.php:658 ../../mod/newmember.php:36 -#: ../../mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "Încărcare Fotografie Profil" +#: ../../include/conversation.php:772 +msgid "remove" +msgstr "eliminare" -#: ../../mod/profiles.php:659 -msgid "Profile Name:" -msgstr "Nume profil:" +#: ../../include/conversation.php:776 +msgid "Delete Selected Items" +msgstr "Ștergeți Elementele Selectate" -#: ../../mod/profiles.php:660 -msgid "Your Full Name:" -msgstr "Numele Complet:" +#: ../../include/conversation.php:875 +msgid "Follow Thread" +msgstr "Urmăriți Firul Conversației" -#: ../../mod/profiles.php:661 -msgid "Title/Description:" -msgstr "Titlu/Descriere" +#: ../../include/conversation.php:876 ../../include/Contact.php:229 +msgid "View Status" +msgstr "Vizualizare Status" -#: ../../mod/profiles.php:662 -msgid "Your Gender:" -msgstr "Sexul:" +#: ../../include/conversation.php:877 ../../include/Contact.php:230 +msgid "View Profile" +msgstr "Vizualizare Profil" -#: ../../mod/profiles.php:663 -#, php-format -msgid "Birthday (%s):" -msgstr "Zi Naştere (%s):" +#: ../../include/conversation.php:878 ../../include/Contact.php:231 +msgid "View Photos" +msgstr "Vizualizare Fotografii" -#: ../../mod/profiles.php:664 -msgid "Street Address:" -msgstr "Strada:" +#: ../../include/conversation.php:879 ../../include/Contact.php:232 +#: ../../include/Contact.php:255 +msgid "Network Posts" +msgstr "Postări din Rețea" -#: ../../mod/profiles.php:665 -msgid "Locality/City:" -msgstr "Localitate/Oraș:" +#: ../../include/conversation.php:880 ../../include/Contact.php:233 +#: ../../include/Contact.php:255 +msgid "Edit Contact" +msgstr "Edit Contact" -#: ../../mod/profiles.php:666 -msgid "Postal/Zip Code:" -msgstr "Cod poștal:" +#: ../../include/conversation.php:881 ../../include/Contact.php:235 +#: ../../include/Contact.php:255 +msgid "Send PM" +msgstr "Trimiteți mesaj personal" -#: ../../mod/profiles.php:667 -msgid "Country:" -msgstr "Å¢ară:" +#: ../../include/conversation.php:882 ../../include/Contact.php:228 +msgid "Poke" +msgstr "Abordare" -#: ../../mod/profiles.php:668 -msgid "Region/State:" -msgstr "Regiunea/Județul:" +#: ../../include/conversation.php:944 +#, php-format +msgid "%s likes this." +msgstr "%s apreciază aceasta." -#: ../../mod/profiles.php:669 -msgid " Marital Status:" -msgstr " Stare Civilă:" +#: ../../include/conversation.php:944 +#, php-format +msgid "%s doesn't like this." +msgstr "%s nu apreciază aceasta." -#: ../../mod/profiles.php:670 -msgid "Who: (if applicable)" -msgstr "Cine: (dacă este cazul)" +#: ../../include/conversation.php:949 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d persoane apreciază aceasta" -#: ../../mod/profiles.php:671 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Exemple: cathy123, Cathy Williams, cathy@example.com" +#: ../../include/conversation.php:952 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d persoanenu apreciază aceasta" -#: ../../mod/profiles.php:672 -msgid "Since [date]:" -msgstr "Din [data]:" +#: ../../include/conversation.php:966 +msgid "and" +msgstr "şi" -#: ../../mod/profiles.php:674 -msgid "Homepage URL:" -msgstr "Homepage URL:" +#: ../../include/conversation.php:972 +#, php-format +msgid ", and %d other people" +msgstr ", şi %d alte persoane" -#: ../../mod/profiles.php:677 -msgid "Religious Views:" -msgstr "Viziuni Religioase:" +#: ../../include/conversation.php:974 +#, php-format +msgid "%s like this." +msgstr "%s apreciază aceasta." -#: ../../mod/profiles.php:678 -msgid "Public Keywords:" -msgstr "Cuvinte cheie Publice:" +#: ../../include/conversation.php:974 +#, php-format +msgid "%s don't like this." +msgstr "%s nu apreciază aceasta." -#: ../../mod/profiles.php:679 -msgid "Private Keywords:" -msgstr "Cuvinte cheie Private:" +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +msgid "Visible to everybody" +msgstr "Vizibil pentru toți" -#: ../../mod/profiles.php:682 -msgid "Example: fishing photography software" -msgstr "Exemplu: pescuit fotografii software" +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Please enter a video link/URL:" +msgstr "Vă rugăm să introduceți un URL/legătură pentru clip video" -#: ../../mod/profiles.php:683 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Utilizat pentru a sugera potențiali prieteni, ce pot fi văzuți de către ceilalți)" +#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 +msgid "Please enter an audio link/URL:" +msgstr "Vă rugăm să introduceți un URL/legătură pentru clip audio" -#: ../../mod/profiles.php:684 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Utilizat pentru a căuta profile, niciodată afișat altora)" +#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 +msgid "Tag term:" +msgstr "Termen etichetare:" -#: ../../mod/profiles.php:685 -msgid "Tell us about yourself..." -msgstr "Spune-ne despre tine ..." +#: ../../include/conversation.php:1007 ../../include/conversation.php:1025 +msgid "Where are you right now?" +msgstr "Unde vă aflați acum?" -#: ../../mod/profiles.php:686 -msgid "Hobbies/Interests" -msgstr "Hobby/Interese" +#: ../../include/conversation.php:1008 +msgid "Delete item(s)?" +msgstr "Ștergeți element(e)?" -#: ../../mod/profiles.php:687 -msgid "Contact information and Social Networks" -msgstr "InformaÅ£ii de Contact şi ReÅ£ele Sociale" +#: ../../include/conversation.php:1051 +msgid "Post to Email" +msgstr "Postați prin Email" -#: ../../mod/profiles.php:688 -msgid "Musical interests" -msgstr "Preferințe muzicale" +#: ../../include/conversation.php:1056 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Conectorii au fost dezactivați, din moment ce \"%s\" este activat." -#: ../../mod/profiles.php:689 -msgid "Books, literature" -msgstr "Cărti, literatură" +#: ../../include/conversation.php:1111 +msgid "permissions" +msgstr "permisiuni" -#: ../../mod/profiles.php:690 -msgid "Television" -msgstr "Programe TV" +#: ../../include/conversation.php:1135 +msgid "Post to Groups" +msgstr "Postați în Grupuri" -#: ../../mod/profiles.php:691 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/cultură/divertisment" +#: ../../include/conversation.php:1136 +msgid "Post to Contacts" +msgstr "Post către Contacte" -#: ../../mod/profiles.php:692 -msgid "Love/romance" -msgstr "Dragoste/romantism" +#: ../../include/conversation.php:1137 +msgid "Private post" +msgstr "Articol privat" -#: ../../mod/profiles.php:693 -msgid "Work/employment" -msgstr "Loc de Muncă/Slujbă" +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Add Contact Nou" -#: ../../mod/profiles.php:694 -msgid "School/education" -msgstr "Școală/educație" +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "IntroduceÅ£i adresa sau locaÅ£ia web" -#: ../../mod/profiles.php:699 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Acesta este profilul dvs. public.
El poate fi vizibil pentru oricine folosește internetul." +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Exemplu: bob@example.com, http://example.com/barbara" -#: ../../mod/profiles.php:709 ../../mod/directory.php:113 -msgid "Age: " -msgstr "Vârsta:" +#: ../../include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitație disponibilă" +msgstr[1] "%d invitații disponibile" +msgstr[2] "%d de invitații disponibile" -#: ../../mod/profiles.php:762 -msgid "Edit/Manage Profiles" -msgstr "Editare/Gestionare Profile" +#: ../../include/contact_widgets.php:30 +msgid "Find People" +msgstr "Căutați Persoane" -#: ../../mod/install.php:117 -msgid "Friendica Communications Server - Setup" -msgstr "Serverul de Comunicații Friendica - Instalare" +#: ../../include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Introduceţi numele sau interesul" -#: ../../mod/install.php:123 -msgid "Could not connect to database." -msgstr "Nu se poate face conectarea cu baza de date." +#: ../../include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Conectare/Urmărire" -#: ../../mod/install.php:127 -msgid "Could not create table." -msgstr "Nu se poate crea tabelul." +#: ../../include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Exemple: Robert Morgenstein, Pescuit" -#: ../../mod/install.php:133 -msgid "Your Friendica site database has been installed." -msgstr "Baza dvs. de date Friendica, a fost instalată." +#: ../../include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Profil Aleatoriu" -#: ../../mod/install.php:138 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Este posibil să fie nevoie să importați manual fişierul \"database.sql\" folosind phpmyadmin sau mysql." +#: ../../include/contact_widgets.php:71 +msgid "Networks" +msgstr "Rețele" -#: ../../mod/install.php:139 ../../mod/install.php:206 -#: ../../mod/install.php:525 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Vă rugăm să consultaţi fişierul \"INSTALL.txt\"." +#: ../../include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Toate Reţelele" -#: ../../mod/install.php:203 -msgid "System check" -msgstr "Verificare sistem" +#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 +msgid "Everything" +msgstr "Totul" -#: ../../mod/install.php:208 -msgid "Check again" -msgstr "Reverificare" +#: ../../include/contact_widgets.php:136 +msgid "Categories" +msgstr "Categorii" -#: ../../mod/install.php:227 -msgid "Database connection" -msgstr "Conexiunea cu baza de date" +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Finalizați această sesiune" -#: ../../mod/install.php:228 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Pentru a instala Friendica trebuie să știm cum să vă conectaţi la baza dumneavoastră de date." +#: ../../include/nav.php:79 +msgid "Your videos" +msgstr "Fișierele tale video" -#: ../../mod/install.php:229 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Vă rugăm să vă contactaţi furnizorul găzduirii sau administratorul de site dacă aveţi întrebări despre aceste configurări." +#: ../../include/nav.php:81 +msgid "Your personal notes" +msgstr "Notele tale personale" -#: ../../mod/install.php:230 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Baza de date specificată mai jos ar trebui să existe deja. Dacă nu, vă rugăm s-o creați înainte de a continua." +#: ../../include/nav.php:92 +msgid "Sign in" +msgstr "Autentificare" -#: ../../mod/install.php:234 -msgid "Database Server Name" -msgstr "Nume Server Bază de date" +#: ../../include/nav.php:105 +msgid "Home Page" +msgstr "Home Pagina" -#: ../../mod/install.php:235 -msgid "Database Login Name" -msgstr "Nume Autentificare Bază de date" +#: ../../include/nav.php:109 +msgid "Create an account" +msgstr "Creați un cont" -#: ../../mod/install.php:236 -msgid "Database Login Password" -msgstr "Parola de Autentificare Bază de date" +#: ../../include/nav.php:114 +msgid "Help and documentation" +msgstr "Ajutor şi documentaţie" -#: ../../mod/install.php:237 -msgid "Database Name" -msgstr "Nume Bază de date" +#: ../../include/nav.php:117 +msgid "Apps" +msgstr "Aplicații" -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "Adresa de email a administratorului de site" +#: ../../include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Suplimente la aplicații, utilitare, jocuri" -#: ../../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 "Adresa de email a contului dvs. trebuie să corespundă cu aceasta pentru a utiliza panoul de administrare web." +#: ../../include/nav.php:119 +msgid "Search site content" +msgstr "Căutare în conținut site" -#: ../../mod/install.php:242 ../../mod/install.php:280 -msgid "Please select a default timezone for your website" -msgstr "Vă rugăm să selectaţi un fus orar prestabilit pentru site-ul dvs." +#: ../../include/nav.php:129 +msgid "Conversations on this site" +msgstr "Conversaţii pe acest site" -#: ../../mod/install.php:267 -msgid "Site settings" -msgstr "Configurări Site" +#: ../../include/nav.php:131 +msgid "Directory" +msgstr "Director" -#: ../../mod/install.php:321 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Nu s-a putut găsi o versiune a liniei de comandă PHP în CALEA serverului web." +#: ../../include/nav.php:131 +msgid "People directory" +msgstr "Director persoane" -#: ../../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 "Dacă nu aveţi o versiune a liniei de comandă PHP instalată pe server, nu veţi putea să efectuaţi interogări ciclice în fundal prin funcția cron. Consultaţi 'Activarea sarcinilor programate' " +#: ../../include/nav.php:133 +msgid "Information" +msgstr "Informaţii" -#: ../../mod/install.php:326 -msgid "PHP executable path" -msgstr "Calea de executare PHP" +#: ../../include/nav.php:133 +msgid "Information about this friendica instance" +msgstr "Informaţii despre această instanță friendica" -#: ../../mod/install.php:326 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Introduceţi calea completă către executabilul php. Puteţi lăsa acesta necompletată pentru a continua instalarea." +#: ../../include/nav.php:143 +msgid "Conversations from your friends" +msgstr "Conversaţiile prieteniilor dvs." -#: ../../mod/install.php:331 -msgid "Command line PHP" -msgstr "linie comandă PHP" +#: ../../include/nav.php:144 +msgid "Network Reset" +msgstr "Resetare Reţea" -#: ../../mod/install.php:340 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "Executabilul PHP nu este de formă binară php-cli (ar putea fi versiunea cgi-fgci)" +#: ../../include/nav.php:144 +msgid "Load Network page with no filters" +msgstr "Încărcare pagina de Reţea fără filtre" -#: ../../mod/install.php:341 -msgid "Found PHP version: " -msgstr "Versiune PHP identificată:" +#: ../../include/nav.php:152 +msgid "Friend Requests" +msgstr "Solicitări Prietenie" -#: ../../mod/install.php:343 -msgid "PHP cli binary" -msgstr "Versiune binară PHP-cli" +#: ../../include/nav.php:154 +msgid "See all notifications" +msgstr "Consultaţi toate notificările" -#: ../../mod/install.php:354 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Versiunea liniei de comandă PHP de pe sistemul dumneavoastră nu are comanda \"register_argc_argv\" activată." +#: ../../include/nav.php:155 +msgid "Mark all system notifications seen" +msgstr "Marcaţi toate notificările de sistem, ca și vizualizate" -#: ../../mod/install.php:355 -msgid "This is required for message delivery to work." -msgstr "Aceasta este necesară pentru a funcționa livrarea de mesaje." +#: ../../include/nav.php:159 +msgid "Private mail" +msgstr "Mail privat" -#: ../../mod/install.php:357 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../include/nav.php:160 +msgid "Inbox" +msgstr "Mesaje primite" -#: ../../mod/install.php:378 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Eroare: funcția \"openssl_pkey_new\" de pe acest sistem nu este capabilă să genereze chei de criptare" +#: ../../include/nav.php:161 +msgid "Outbox" +msgstr "Căsuță de Ieșire" + +#: ../../include/nav.php:165 +msgid "Manage" +msgstr "Gestionare" -#: ../../mod/install.php:379 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Dacă rulează pe Windows, vă rugăm să consultaţi \"http://www.php.net/manual/en/openssl.installation.php\"." +#: ../../include/nav.php:165 +msgid "Manage other pages" +msgstr "Gestionează alte pagini" -#: ../../mod/install.php:381 -msgid "Generate encryption keys" -msgstr "Generare chei de criptare" +#: ../../include/nav.php:170 +msgid "Account settings" +msgstr "Configurări Cont" -#: ../../mod/install.php:388 -msgid "libCurl PHP module" -msgstr "Modulul PHP libCurl" +#: ../../include/nav.php:173 +msgid "Manage/Edit Profiles" +msgstr "Gestionare/Editare Profile" -#: ../../mod/install.php:389 -msgid "GD graphics PHP module" -msgstr "Modulul PHP grafică GD" +#: ../../include/nav.php:175 +msgid "Manage/edit friends and contacts" +msgstr "Gestionare/Editare prieteni şi contacte" -#: ../../mod/install.php:390 -msgid "OpenSSL PHP module" -msgstr "Modulul PHP OpenSSL" +#: ../../include/nav.php:182 +msgid "Site setup and configuration" +msgstr "Instalare şi configurare site" -#: ../../mod/install.php:391 -msgid "mysqli PHP module" -msgstr "Modulul PHP mysqli" +#: ../../include/nav.php:186 +msgid "Navigation" +msgstr "Navigare" -#: ../../mod/install.php:392 -msgid "mb_string PHP module" -msgstr "Modulul PHP mb_string" +#: ../../include/nav.php:186 +msgid "Site map" +msgstr "Hartă Site" -#: ../../mod/install.php:397 ../../mod/install.php:399 -msgid "Apache mod_rewrite module" -msgstr "Modulul Apache mod_rewrite" +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Necunoscut | Fără categorie" -#: ../../mod/install.php:397 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Eroare: Modulul mod-rewrite al serverulului Apache este necesar, dar nu este instalat." +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Blocare Imediată" -#: ../../mod/install.php:405 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Eroare: modulul PHP libCURL este necesar dar nu este instalat." +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Dubioșii, spammerii, auto-promoterii" -#: ../../mod/install.php:409 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Eroare: Modulul PHP grafică GD cu suport JPEG, este necesar dar nu este instalat." +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Cunoscut mie, dar fără o opinie" -#: ../../mod/install.php:413 -msgid "Error: openssl PHP module required but not installed." -msgstr "Eroare: modulul PHP libCURL este necesar dar nu este instalat." +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, probabil inofensiv" -#: ../../mod/install.php:417 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Eroare: modulul PHP mysqli este necesar dar nu este instalat." +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Cu reputație, are încrederea mea" -#: ../../mod/install.php:421 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Eroare: modulul PHP mb_string este necesar dar nu este instalat." +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Săptămânal" -#: ../../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 "Expertul de instalare web trebuie să poată crea un fișier numit \".htconfig.php\" în dosarul superior al serverului dvs. web, şi nu poate face acest lucru." +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Lunar" -#: ../../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 "Aceasta este cel mai adesea o configurare de permisiune, deoarece serverul web nu ar putea fi capabil să scrie fişiere în dosarul dumneavoastră - chiar dacă dvs. puteţi." +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" -#: ../../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 "La finalul acestei proceduri, vă vom oferi un text pentru a-l salva într-un fişier numit .htconfig.php din dosarul dvs. superior Friendica." +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../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 "Alternativ, puteţi omite această procedură şi să efectuaţi o instalare manuală. Vă rugăm să consultaţi fişierul \"INSTALL.txt\" pentru instrucțiuni." +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" -#: ../../mod/install.php:444 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php este inscriptibil" +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../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 utilizează motorul de șablon Smarty3 pentru a prelucra vizualizările sale web. Smarty3 compilează şabloane în PHP pentru a grăbi prelucrarea." +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../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 "Pentru a stoca aceste şabloane compilate, serverul de web trebuie să aibă acces la scriere pentru directorul view/smarty3/ din dosarul de nivel superior Friendica." +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" -#: ../../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 "Vă rugăm să vă asiguraţi că utilizatorul pe care rulează serverul dvs. web (de ex. www-date) are acces la scriere pentru acest dosar." +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" -#: ../../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 "Notă: ca o măsură de securitate, ar trebui să dați serverului web, acces de scriere numai pentru view/smarty3/--dar nu și fișierelor de șablon (.tpl) pe care le conţine." +#: ../../include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" -#: ../../mod/install.php:460 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 este inscriptibil" +#: ../../include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" -#: ../../mod/install.php:472 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "Funcția de rescriere Url rewrite din .htaccess nu funcţionează. Verificaţi-vă configuraţia serverului." +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Conector Diaspora" -#: ../../mod/install.php:474 -msgid "Url rewrite is working" -msgstr "Funcția de rescriere Url rewrite, funcţionează." +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" -#: ../../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 "Fișierul de configurare baza de date \".htconfig.php\", nu a putut fi scris. Vă rugăm să utilizaţi textul închis pentru a crea un fişier de configurare în rădăcina serverului dvs. web." +#: ../../include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" -#: ../../mod/install.php:523 -msgid "

What next

" -msgstr "

Ce urmează

" +#: ../../include/enotify.php:18 +msgid "Friendica Notification" +msgstr "Notificare Friendica" -#: ../../mod/install.php:524 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT: Va trebui să configurați [manual] o sarcină programată pentru operatorul de sondaje." +#: ../../include/enotify.php:21 +msgid "Thank You," +msgstr "Vă mulțumim," -#: ../../mod/help.php:79 -msgid "Help:" -msgstr "Ajutor:" +#: ../../include/enotify.php:23 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrator" -#: ../../mod/crepair.php:104 -msgid "Contact settings applied." -msgstr "Configurările Contactului au fost aplicate." +#: ../../include/enotify.php:55 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../mod/crepair.php:106 -msgid "Contact update failed." -msgstr "Actualizarea Contactului a eșuat." +#: ../../include/enotify.php:59 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notificare] Mail nou primit la %s" -#: ../../mod/crepair.php:137 -msgid "Repair Contact Settings" -msgstr "Remediere Configurări Contact" +#: ../../include/enotify.php:61 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s v-a trimis un nou mesaj privat la %2$s." -#: ../../mod/crepair.php:139 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "AVERTISMENT: Această acțiune este foarte avansată şi dacă introduceţi informaţii incorecte, comunicaţiile cu acest contact se poate opri." +#: ../../include/enotify.php:62 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s v-a trimis %2$s" -#: ../../mod/crepair.php:140 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Vă rugăm să utilizaţi acum butonul 'Înapoi' din browser, dacă nu sunteţi sigur ce sa faceți pe această pagină." +#: ../../include/enotify.php:62 +msgid "a private message" +msgstr "un mesaj privat" -#: ../../mod/crepair.php:146 -msgid "Return to contact editor" -msgstr "Reveniţi la editorul de contact" +#: ../../include/enotify.php:63 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la mesaje private." -#: ../../mod/crepair.php:159 -msgid "Account Nickname" -msgstr "Pseudonim Cont" +#: ../../include/enotify.php:115 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s a comentat la [url=%2$s]a %3$s[/url]" -#: ../../mod/crepair.php:160 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Nume_etichetă - suprascrie Numele/Pseudonimul" +#: ../../include/enotify.php:122 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s a comentat la [url=%2$s]%4$s postat de %3$s[/url]" -#: ../../mod/crepair.php:161 -msgid "Account URL" -msgstr "URL Cont" +#: ../../include/enotify.php:130 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s a comentat la [url=%2$s]%3$s dvs.[/url]" -#: ../../mod/crepair.php:162 -msgid "Friend Request URL" -msgstr "URL Solicitare Prietenie" +#: ../../include/enotify.php:140 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Notificare] Comentariu la conversaţia #%1$d postată de %2$s" -#: ../../mod/crepair.php:163 -msgid "Friend Confirm URL" -msgstr "URL Confirmare Prietenie" +#: ../../include/enotify.php:141 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s a comentat la un element/conversaţie pe care o urmăriți." -#: ../../mod/crepair.php:164 -msgid "Notification Endpoint URL" -msgstr "Punct final URL Notificare" +#: ../../include/enotify.php:144 ../../include/enotify.php:159 +#: ../../include/enotify.php:172 ../../include/enotify.php:185 +#: ../../include/enotify.php:203 ../../include/enotify.php:216 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la conversație." -#: ../../mod/crepair.php:165 -msgid "Poll/Feed URL" -msgstr "URL Sondaj/Flux" +#: ../../include/enotify.php:151 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notificare] %s a postat pe peretele dvs. de profil" -#: ../../mod/crepair.php:166 -msgid "New photo from this URL" -msgstr "Fotografie Nouă de la acest URL" +#: ../../include/enotify.php:153 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s a postat pe peretele dvs. de profil la %2$s" -#: ../../mod/crepair.php:167 -msgid "Remote Self" -msgstr "Auto la Distanţă" +#: ../../include/enotify.php:155 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s a postat pe [url=%2$s]peretele dvs.[/url]" -#: ../../mod/crepair.php:169 -msgid "Mirror postings from this contact" -msgstr "Postări în oglindă de la acest contact" +#: ../../include/enotify.php:166 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notificare] %s v-a etichetat" -#: ../../mod/crepair.php:169 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Marcaţi acest contact ca remote_self, aceasta va determina friendica să reposteze noile articole ale acestui contact." +#: ../../include/enotify.php:167 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s v-a etichetat la %2$s" -#: ../../mod/crepair.php:169 -msgid "No mirroring" -msgstr "" +#: ../../include/enotify.php:168 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]v-a etichetat[/url]." -#: ../../mod/crepair.php:169 -msgid "Mirror as forwarded posting" -msgstr "" +#: ../../include/enotify.php:179 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "[Friendica:Notificare] %s a distribuit o nouă postare" -#: ../../mod/crepair.php:169 -msgid "Mirror as my own posting" -msgstr "" +#: ../../include/enotify.php:180 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "%1$s a distribuit o nouă postare la %2$s" -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Bun Venit la Friendica" +#: ../../include/enotify.php:181 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "%1$s [url=%2$s] a distribuit o postare[/url]." -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Lista de Verificare Membrii Noi" +#: ../../include/enotify.php:193 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notificare] %1$s v-a abordat" -#: ../../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 "Dorim să vă oferim câteva sfaturi şi legături pentru a vă ajuta să aveți o experienţă cât mai plăcută. Apăsați pe orice element pentru a vizita pagina relevantă. O legătură către această pagină va fi vizibilă de pe pagina principală, pentru două săptămâni după înregistrarea dvs. iniţială, iar apoi va dispare în tăcere." +#: ../../include/enotify.php:194 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s v-a abordat la %2$s" -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Noțiuni de Bază" +#: ../../include/enotify.php:195 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s [url=%2$s]v-a abordat[/url]." -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Ghidul de Prezentare Friendica" +#: ../../include/enotify.php:210 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notificare] %s v-a etichetat postarea" -#: ../../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 "Pe pagina dvs. de Pornire Rapidă - veți găsi o scurtă introducere pentru profilul dvs. şi pentru filele de reţea, veți face câteva conexiuni noi, şi veți găsi câteva grupuri la care să vă alăturați." +#: ../../include/enotify.php:211 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$sv-a etichetat postarea la %2$s" -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Mergeți la Configurări" +#: ../../include/enotify.php:212 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s a etichetat [url=%2$s]postarea dvs.[/url]" -#: ../../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 "Din pagina dvs. de Configurări - schimbaţi-vă parola iniţială. De asemenea creați o notă pentru Adresa dvs. de Identificare. Aceasta arată exact ca o adresă de email - şi va fi utilă la stabilirea de prietenii pe rețeaua socială web gratuită." +#: ../../include/enotify.php:223 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notificare] Prezentare primită" -#: ../../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 "Revizuiți celelalte configurări, în special configurările de confidenţialitate. O listă de directoare nepublicate este ca și cum ați avea un număr de telefon necatalogat. În general, ar trebui probabil să vă publicați lista - cu excepţia cazului în care toți prietenii şi potenţialii prieteni, știu exact cum să vă găsească." +#: ../../include/enotify.php:224 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Aţi primit o prezentare de la '%1$s' at %2$s" -#: ../../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 "Încărcaţi o fotografie de profil, dacă nu aţi făcut-o deja.Studiile au arătat că, pentru persoanele cu fotografiile lor reale, există de zece ori mai multe şanse să-și facă prieteni, decât cei care nu folosesc fotografii reale." +#: ../../include/enotify.php:225 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Aţi primit [url=%1$s]o prezentare[/url] de la %2$s." -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Editare Profil" +#: ../../include/enotify.php:228 ../../include/enotify.php:270 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Le puteți vizita profilurile, online pe %s" -#: ../../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 "Editaţi-vă profilul Implicit după bunul plac. Revizuiți configurările pentru a ascunde lista dvs. de prieteni și pentru ascunderea profilului dvs., de vizitatorii necunoscuți." +#: ../../include/enotify.php:230 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge prezentarea." -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Cuvinte-Cheie Profil" +#: ../../include/enotify.php:238 +msgid "[Friendica:Notify] A new person is sharing with you" +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 "Stabiliți câteva cuvinte-cheie publice pentru profilul dvs. implicit, cuvinte ce descriu cel mai bine interesele dvs. Vom putea astfel găsi alte persoane cu interese similare și vă vom sugera prietenia lor." +#: ../../include/enotify.php:239 ../../include/enotify.php:240 +#, php-format +msgid "%1$s is sharing with you at %2$s" +msgstr "%1$s împărtăşeşte cu dvs. la %2$s" -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Conectare" +#: ../../include/enotify.php:246 +msgid "[Friendica:Notify] You have a new follower" +msgstr "[Friendica:Notify] Aveţi un nou susținător la" -#: ../../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 "Autorizați Conectorul Facebook dacă dețineți în prezent un cont pe Facebook, şi vom importa (opțional) toți prietenii și toate conversațiile de pe Facebook." +#: ../../include/enotify.php:247 ../../include/enotify.php:248 +#, php-format +msgid "You have a new follower at %2$s : %1$s" +msgstr "Aveţi un nou susținător la %2$s : %1$s" -#: ../../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 "Dacă aceasta este propriul dvs. server, instalarea suplimentului Facebook, vă poate uşura tranziţia la reţeaua socială web gratuită." +#: ../../include/enotify.php:261 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Notificare] Ați primit o sugestie de prietenie" -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "Importare Email-uri" +#: ../../include/enotify.php:262 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Ați primit o sugestie de prietenie de la '%1$s' la %2$s" -#: ../../mod/newmember.php:56 +#: ../../include/enotify.php:263 +#, php-format 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 "Introduceţi informațiile dvs. de acces la email adresa de email, în pagina dvs. de Configurări Conector, dacă doriți să importați și să interacționați cu prietenii sau cu listele de email din Căsuța dvs. de Mesaje Primite." +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Aţi primit [url=%1$s]o sugestie de prietenie[/url] pentru %2$s de la %3$s." -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Dute la pagina ta Contacte " +#: ../../include/enotify.php:268 +msgid "Name:" +msgstr "Nume:" -#: ../../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 "Pagina dvs. de Contact este poarta dvs. de acces către administrarea prieteniilor şi pentru conectarea cu prietenii din alte rețele. În general, introduceți adresa lor sau URL-ul către site, folosind dialogul Adăugare Contact Nou." +#: ../../include/enotify.php:269 +msgid "Photo:" +msgstr "Foto:" -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Mergeţi la Directorul Site-ului" +#: ../../include/enotify.php:272 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge sugestia." -#: ../../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 "Pagina Directorului vă permite să găsiţi alte persoane în această reţea sau în alte site-uri asociate. Căutaţi o legătură de Conectare sau Urmărire pe pagina lor de profil. Oferiți propria dvs. Adresă de Identitate dacă se solicită." +#: ../../include/enotify.php:280 ../../include/enotify.php:293 +msgid "[Friendica:Notify] Connection accepted" +msgstr "[Friendica:Notificare] Conectare acceptată" -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Găsire Persoane Noi" +#: ../../include/enotify.php:281 ../../include/enotify.php:294 +#, php-format +msgid "'%1$s' has acepted your connection request at %2$s" +msgstr "" -#: ../../mod/newmember.php:62 +#: ../../include/enotify.php:282 ../../include/enotify.php:295 +#, php-format +msgid "%2$s has accepted your [url=%1$s]connection request[/url]." +msgstr "" + +#: ../../include/enotify.php:285 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 "Pe panoul lateral al paginii Contacte sunt câteva unelte utile pentru a găsi noi prieteni. Putem asocia persoanele după interese, căuta persoane după nume sau interes, şi vă putem oferi sugestii bazate pe relaţiile din reţea. Pe un site nou-nouț, sugestiile de prietenie vor începe în mod normal să fie populate în termen de 24 de ore." +"You are now mutual friends and may exchange status updates, photos, and email\n" +"\twithout restriction." +msgstr "" -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Grupați-vă Contactele" +#: ../../include/enotify.php:288 ../../include/enotify.php:302 +#, php-format +msgid "Please visit %s if you wish to make any changes to this relationship." +msgstr "" -#: ../../mod/newmember.php:70 +#: ../../include/enotify.php:298 +#, php-format 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 "Odată ce v-aţi făcut unele prietenii, organizaţi-le în grupuri de conversaţii private din bara laterală a paginii dvs. de Contact şi apoi puteţi interacționa, privat cu fiecare grup pe pagina dumneavoastră de Reţea." - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "De ce nu sunt Postările Mele Publice?" +"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." +msgstr "" -#: ../../mod/newmember.php:73 +#: ../../include/enotify.php:300 +#, php-format 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 vă respectă confidenţialitatea. Implicit, postările dvs. vor fi afişate numai persoanelor pe care le-ați adăugat ca și prieteni. Pentru mai multe informaţii, consultaţi secţiunea de asistenţă din legătura de mai sus." +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future. " +msgstr "" -#: ../../mod/newmember.php:78 -msgid "Getting Help" -msgstr "Obţinerea de Ajutor" +#: ../../include/enotify.php:313 +msgid "[Friendica System:Notify] registration request" +msgstr "" -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Navigați la Secțiunea Ajutor" +#: ../../include/enotify.php:314 +#, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Paginile noastre de ajutor pot fi consultate pentru detalii, prin alte funcții şi resurse de program." +#: ../../include/enotify.php:315 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Abordare/Atragerea atenției" +#: ../../include/enotify.php:318 +#, php-format +msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" +msgstr "" -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "abordați, atrageți atenția sau faceți alte lucruri cuiva" +#: ../../include/enotify.php:321 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge cererea." -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "Destinatar" +#: ../../include/user.php:40 +msgid "An invitation is required." +msgstr "O invitaţie este necesară." -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Alegeți ce doriți să faceți cu destinatarul" +#: ../../include/user.php:45 +msgid "Invitation could not be verified." +msgstr "Invitația nu s-a putut verifica." -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Faceți acest articol privat" +#: ../../include/user.php:53 +msgid "Invalid OpenID url" +msgstr "URL OpenID invalid" -#: ../../mod/prove.php:93 -msgid "" -"\n" -"\t\tDear $[username],\n" -"\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\tinformation for your records (or change your password immediately to\n" -"\t\tsomething that you will remember).\n" -"\t" -msgstr "" +#: ../../include/user.php:74 +msgid "Please enter the required information." +msgstr "Vă rugăm să introduceți informațiile solicitate." -#: ../../mod/display.php:452 -msgid "Item has been removed." -msgstr "Elementul a fost eliminat." +#: ../../include/user.php:88 +msgid "Please use a shorter name." +msgstr "Vă rugăm să utilizaţi un nume mai scurt." -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s urmărește %3$s postată %2$s" +#: ../../include/user.php:90 +msgid "Name too short." +msgstr "Numele este prea scurt." -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s îi urează bun venit lui %2$s" +#: ../../include/user.php:105 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Acesta nu pare a fi Numele (Prenumele) dvs. complet" -#: ../../mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Aceasta se poate întâmpla ocazional dacă contactul a fost solicitat de către ambele persoane şi acesta a fost deja aprobat." +#: ../../include/user.php:110 +msgid "Your email domain is not among those allowed on this site." +msgstr "Domeniul dvs. de email nu este printre cele permise pe acest site." -#: ../../mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Răspunsul de la adresa de la distanţă, nu a fost înțeles." +#: ../../include/user.php:113 +msgid "Not a valid email address." +msgstr "Nu este o adresă vaildă de email." -#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Răspuns neaşteptat de la site-ul de la distanţă:" +#: ../../include/user.php:126 +msgid "Cannot use that email." +msgstr "Nu se poate utiliza acest email." -#: ../../mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Confirmare încheiată cu succes." +#: ../../include/user.php:132 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr " \"Pseudonimul\" dvs. poate conţine numai \"a-z\", \"0-9\", \"-\",, şi \"_\", şi trebuie de asemenea să înceapă cu o literă." -#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 -#: ../../mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Site-ul de la distanţă a raportat:" +#: ../../include/user.php:138 ../../include/user.php:236 +msgid "Nickname is already registered. Please choose another." +msgstr "Pseudonimul este deja înregistrat. Vă rugăm, alegeți un altul." -#: ../../mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Eroare Temporară. Vă rugăm să aşteptaţi şi încercaţi din nou." +#: ../../include/user.php:148 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Pseudonimul a fost înregistrat aici, şi e posibil să nu mai poată fi reutilizat. Vă rugăm, alegeți altul." -#: ../../mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Introducerea a eşuat sau a fost revocată." +#: ../../include/user.php:164 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "EROARE GRAVĂ: Generarea de chei de securitate a eşuat." -#: ../../mod/dfrn_confirm.php:429 -msgid "Unable to set contact photo." -msgstr "Imposibil de stabilit fotografia de contact." +#: ../../include/user.php:222 +msgid "An error occurred during registration. Please try again." +msgstr "A intervenit o eroare în timpul înregistrării. Vă rugăm să reîncercați." -#: ../../mod/dfrn_confirm.php:571 +#: ../../include/user.php:257 +msgid "An error occurred creating your default profile. Please try again." +msgstr "A intervenit o eroare la crearea profilului dvs. implicit. Vă rugăm să reîncercați." + +#: ../../include/user.php:377 #, php-format -msgid "No user record found for '%s' " -msgstr "Nici-o înregistrare de utilizator găsită pentru '%s'" +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "" -#: ../../mod/dfrn_confirm.php:581 -msgid "Our site encryption key is apparently messed up." -msgstr "Se pare că, cheia de criptare a site-ului nostru s-a încurcat." +#: ../../include/user.php:381 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "" -#: ../../mod/dfrn_confirm.php:592 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "A fost furnizată o adresă URL goală, sau adresa URL nu poate fi decriptată de noi." +#: ../../include/acl_selectors.php:326 +msgid "Visible to everybody" +msgstr "Vizibil pentru toata lumea" -#: ../../mod/dfrn_confirm.php:613 -msgid "Contact record was not found for you on our site." -msgstr "Registrul contactului nu a fost găsit pe site-ul nostru." +#: ../../include/bbcode.php:449 ../../include/bbcode.php:1054 +#: ../../include/bbcode.php:1055 +msgid "Image/photo" +msgstr "Imagine/fotografie" -#: ../../mod/dfrn_confirm.php:627 +#: ../../include/bbcode.php:549 #, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Cheia publică a site-ului nu este disponibilă în registrul contactului pentru URL-ul %s." +msgid "%2$s %3$s" +msgstr "%2$s %3$s" -#: ../../mod/dfrn_confirm.php:647 +#: ../../include/bbcode.php:583 +#, php-format msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "ID-ul furnizat de către sistemul dumneavoastră este un duplicat pe sistemul nostru. Ar trebui să funcţioneze dacă încercaţi din nou." - -#: ../../mod/dfrn_confirm.php:658 -msgid "Unable to set your contact credentials on our system." -msgstr "Imposibil de configurat datele dvs. de autentificare, pe sistemul nostru." - -#: ../../mod/dfrn_confirm.php:725 -msgid "Unable to update your contact profile details on our system" -msgstr "Imposibil de actualizat detaliile de profil ale contactului dvs., pe sistemul nostru." +"%s wrote the following post" +msgstr "%s a scris următoarea postare" -#: ../../mod/dfrn_confirm.php:797 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s s-a alăturat lui %2$s" +#: ../../include/bbcode.php:1018 ../../include/bbcode.php:1038 +msgid "$1 wrote:" +msgstr "$1 a scris:" -#: ../../mod/item.php:113 -msgid "Unable to locate original post." -msgstr "Nu se poate localiza postarea originală." +#: ../../include/bbcode.php:1063 ../../include/bbcode.php:1064 +msgid "Encrypted content" +msgstr "Conţinut criptat" -#: ../../mod/item.php:324 -msgid "Empty post discarded." -msgstr "Postarea goală a fost eliminată." +#: ../../include/oembed.php:205 +msgid "Embedded content" +msgstr "Conţinut încorporat" -#: ../../mod/item.php:915 -msgid "System error. Post not saved." -msgstr "Eroare de sistem. Articolul nu a fost salvat." +#: ../../include/oembed.php:214 +msgid "Embedding disabled" +msgstr "Încorporarea conținuturilor este dezactivată" -#: ../../mod/item.php:941 -#, php-format +#: ../../include/group.php:25 msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Acest mesaj v-a fost trimis de către %s, un membru al rețelei sociale Friendica." +"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 grup şters cu acest nume a fost restabilit. Permisiunile existente ale elementului, potfi aplicate acestui grup şi oricăror viitori membrii. Dacă aceasta nu este ceea ați intenționat să faceți, vă rugăm să creaţi un alt grup cu un un nume diferit." -#: ../../mod/item.php:943 -#, php-format -msgid "You may visit them online at %s" -msgstr "Îi puteți vizita profilul online la %s" +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Confidenţialitatea implicită a grupului pentru noi contacte" -#: ../../mod/item.php:944 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Vă rugăm să contactați expeditorul răspunzând la această postare, dacă nu doriţi să primiţi aceste mesaje." +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "Toată lumea" -#: ../../mod/item.php:948 -#, php-format -msgid "%s posted an update." -msgstr "%s a postat o actualizare." +#: ../../include/group.php:249 +msgid "edit" +msgstr "editare" -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Imaginea a fost încărcată, dar decuparea imaginii a eşuat." +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "Editare grup" -#: ../../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 "Reducerea dimensiunea imaginii [%s] a eşuat." +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Creați un nou grup" -#: ../../mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Apăsați pe Shift și pe Reîncărcare Pagină sau ştergeţi memoria cache a browser-ului, dacă noua fotografie nu se afişează imediat." +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "Contacte ce nu se află în orice grup" -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Nu s-a putut procesa imaginea." +#: ../../include/Contact.php:115 +msgid "stopped following" +msgstr "urmărire întreruptă" -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Încărcare Fișier:" +#: ../../include/Contact.php:234 +msgid "Drop Contact" +msgstr "Eliminare Contact" -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Selectați un profil:" +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Diverse" -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Încărcare" +#: ../../include/datetime.php:153 ../../include/datetime.php:285 +msgid "year" +msgstr "an" -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "omiteți acest pas" +#: ../../include/datetime.php:158 ../../include/datetime.php:286 +msgid "month" +msgstr "lună" -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "selectaţi o fotografie din albumele dvs. foto" +#: ../../include/datetime.php:163 ../../include/datetime.php:288 +msgid "day" +msgstr "zi" -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Decupare Imagine" +#: ../../include/datetime.php:276 +msgid "never" +msgstr "niciodată" -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Vă rugăm să ajustaţi decuparea imaginii pentru o vizualizare optimă." +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "acum mai puțin de o secundă" -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Editare Realizată" +#: ../../include/datetime.php:285 +msgid "years" +msgstr "ani" -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Imaginea a fost încărcată cu succes" +#: ../../include/datetime.php:286 +msgid "months" +msgstr "luni" -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Prieteni cu %s" +#: ../../include/datetime.php:287 +msgid "week" +msgstr "săptămână" -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Nici-un prieten de afișat." +#: ../../include/datetime.php:287 +msgid "weeks" +msgstr "săptămâni" -#: ../../mod/directory.php:59 -msgid "Find on this site" -msgstr "Căutați pe acest site" +#: ../../include/datetime.php:288 +msgid "days" +msgstr "zile" -#: ../../mod/directory.php:62 -msgid "Site Directory" -msgstr "Director Site" +#: ../../include/datetime.php:289 +msgid "hour" +msgstr "oră" -#: ../../mod/directory.php:116 -msgid "Gender: " -msgstr "Sex:" +#: ../../include/datetime.php:289 +msgid "hours" +msgstr "ore" -#: ../../mod/directory.php:189 -msgid "No entries (some entries may be hidden)." -msgstr "Fără înregistrări (unele înregistrări pot fi ascunse)." +#: ../../include/datetime.php:290 +msgid "minute" +msgstr "minut" -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Conversie Oră" +#: ../../include/datetime.php:290 +msgid "minutes" +msgstr "minute" -#: ../../mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica oferă acest serviciu pentru partajarea evenimentelor cu alte rețele și prieteni, în zonele cu fusuri orare necunoscute.\\v" +#: ../../include/datetime.php:291 +msgid "second" +msgstr "secundă" -#: ../../mod/localtime.php:30 +#: ../../include/datetime.php:291 +msgid "seconds" +msgstr "secunde" + +#: ../../include/datetime.php:300 #, php-format -msgid "UTC time: %s" -msgstr "Fus orar UTC: %s" +msgid "%1$d %2$s ago" +msgstr "acum %1$d %2$s" -#: ../../mod/localtime.php:33 +#: ../../include/network.php:895 +msgid "view full size" +msgstr "vezi intreaga mărime" + +#: ../../include/dbstructure.php:26 #, php-format -msgid "Current timezone: %s" -msgstr "Fusul orar curent: %s" +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "" -#: ../../mod/localtime.php:36 +#: ../../include/dbstructure.php:31 #, php-format -msgid "Converted localtime: %s" -msgstr "Ora locală convertită: %s" +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Mesajul de eroare este\n[pre]%s[/pre]" -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Vă rugăm să vă selectaţi fusul orar:" +#: ../../include/dbstructure.php:163 +msgid "Errors encountered creating database tables." +msgstr "Erori întâlnite la crearea tabelelor bazei de date." + +#: ../../include/dbstructure.php:221 +msgid "Errors encountered performing database changes." +msgstr "Erori întâlnite la operarea de modificări în baza de date." diff --git a/view/ro/strings.php b/view/ro/strings.php index e60503187f..bc8cf90b15 100644 --- a/view/ro/strings.php +++ b/view/ro/strings.php @@ -5,474 +5,445 @@ function string_plural_select_ro($n){ return ($n==1?0:((($n%100>19)||(($n%100==0)&&($n!=0)))?2:1));; }} ; +$a->strings["This entry was edited"] = "Această intrare a fost editată"; +$a->strings["Private Message"] = " Mesaj Privat"; +$a->strings["Edit"] = "Edit"; +$a->strings["Select"] = "Select"; +$a->strings["Delete"] = "Şterge"; +$a->strings["save to folder"] = "salvează în directorul"; +$a->strings["add star"] = "add stea"; +$a->strings["remove star"] = "înlătură stea"; +$a->strings["toggle star status"] = "comută status steluță"; +$a->strings["starred"] = "cu steluță"; +$a->strings["ignore thread"] = ""; +$a->strings["unignore thread"] = ""; +$a->strings["toggle ignore status"] = "Comutaţi status Ignorare"; +$a->strings["ignored"] = "ignorat"; +$a->strings["add tag"] = "add tag"; +$a->strings["I like this (toggle)"] = "I like asta (toggle)"; +$a->strings["like"] = "like"; +$a->strings["I don't like this (toggle)"] = "nu îmi place aceasta (comutare)"; +$a->strings["dislike"] = "dislike"; +$a->strings["Share this"] = "Partajează"; +$a->strings["share"] = "partajează"; +$a->strings["Categories:"] = "Categorii:"; +$a->strings["Filed under:"] = "Înscris în:"; +$a->strings["View %s's profile @ %s"] = "Vizualizaţi profilul %s @ %s"; +$a->strings["to"] = "către"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Perete-prin-Perete"; +$a->strings["via Wall-To-Wall:"] = "via Perete-Prin-Perete"; +$a->strings["%s from %s"] = "%s de la %s"; +$a->strings["Comment"] = "Comentariu"; +$a->strings["Please wait"] = "Aşteptaţi vă rog"; +$a->strings["%d comment"] = array( + 0 => "%d comentariu", + 1 => "%d comentarii", + 2 => "%d comentarii", +); +$a->strings["comment"] = array( + 0 => "comentariu", + 1 => "comentarii", + 2 => "comentarii", +); +$a->strings["show more"] = "mai mult"; +$a->strings["This is you"] = "Acesta eşti tu"; $a->strings["Submit"] = "Trimite"; -$a->strings["Theme settings"] = "Configurări Temă"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Stabiliți nivelul de redimensionare a imaginilor din postări și comentarii (lăţimea şi înălţimea)"; -$a->strings["Set font-size for posts and comments"] = "Stabilire dimensiune font pentru postări şi comentarii"; -$a->strings["Set theme width"] = "Stabilire lăţime temă"; -$a->strings["Color scheme"] = "Schemă culoare"; -$a->strings["Set style"] = "Stabilire stil"; -$a->strings["don't show"] = "nu afișa"; -$a->strings["show"] = "afișare"; -$a->strings["Set line-height for posts and comments"] = "Stabilire înălțime linie pentru postări şi comentarii"; -$a->strings["Set resolution for middle column"] = "Stabilire rezoluţie pentru coloana din mijloc"; -$a->strings["Set color scheme"] = "Stabilire schemă de culori"; -$a->strings["Set zoomfactor for Earth Layer"] = "Stabilire factor de magnificare pentru Straturi Pământ"; -$a->strings["Set longitude (X) for Earth Layers"] = "Stabilire longitudine (X) pentru Straturi Pământ"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Stabilire latitudine (Y) pentru Straturi Pământ"; -$a->strings["Community Pages"] = "Community Pagini"; -$a->strings["Earth Layers"] = "Straturi Pământ"; -$a->strings["Community Profiles"] = "Profile de Comunitate"; -$a->strings["Help or @NewHere ?"] = "Ajutor sau @NouAici ?"; -$a->strings["Connect Services"] = "Conectare Servicii"; -$a->strings["Find Friends"] = "Găsire Prieteni"; -$a->strings["Last users"] = "Ultimii utilizatori"; -$a->strings["Last photos"] = "Ultimele fotografii"; -$a->strings["Last likes"] = "Ultimele aprecieri"; -$a->strings["Home"] = "Home"; -$a->strings["Your posts and conversations"] = "Postările şi conversaţiile dvs."; -$a->strings["Profile"] = "Profil"; -$a->strings["Your profile page"] = "Pagina dvs. de profil"; -$a->strings["Contacts"] = "Contacte"; -$a->strings["Your contacts"] = "Contactele dvs."; -$a->strings["Photos"] = "Poze"; -$a->strings["Your photos"] = "Fotografiile dvs."; -$a->strings["Events"] = "Evenimente"; -$a->strings["Your events"] = "Evenimentele dvs."; -$a->strings["Personal notes"] = "Note Personale"; -$a->strings["Your personal photos"] = "Fotografii dvs. personale"; -$a->strings["Community"] = "Comunitate"; -$a->strings["event"] = "eveniment"; -$a->strings["status"] = "status"; -$a->strings["photo"] = "photo"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s apreciază %3\$s lui %2\$s"; -$a->strings["Contact Photos"] = "Photo Contact"; -$a->strings["Profile Photos"] = "Poze profil"; -$a->strings["Local Directory"] = "Director Local"; -$a->strings["Global Directory"] = "Director Global"; -$a->strings["Similar Interests"] = "Interese Similare"; -$a->strings["Friend Suggestions"] = "Sugestii de Prietenie"; -$a->strings["Invite Friends"] = "Invită Prieteni"; -$a->strings["Settings"] = "Setări"; -$a->strings["Set zoomfactor for Earth Layers"] = "Stabilire factor de magnificare pentru Straturi Pământ"; -$a->strings["Show/hide boxes at right-hand column:"] = "Afişare/ascundere casete din coloana din dreapta:"; -$a->strings["Alignment"] = "Aliniere"; -$a->strings["Left"] = "Stânga"; -$a->strings["Center"] = "Centrat"; -$a->strings["Posts font size"] = "Dimensiune font postări"; -$a->strings["Textareas font size"] = "Dimensiune font zone text"; -$a->strings["Set colour scheme"] = "Stabilire schemă de culori"; +$a->strings["Bold"] = "Bold"; +$a->strings["Italic"] = "Italic"; +$a->strings["Underline"] = "Subliniat"; +$a->strings["Quote"] = "Citat"; +$a->strings["Code"] = "Code"; +$a->strings["Image"] = "Imagine"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Preview"] = "Previzualizare"; $a->strings["You must be logged in to use addons. "] = "Tu trebuie să vă autentificați pentru a folosi suplimentele."; $a->strings["Not Found"] = "Negăsit"; $a->strings["Page not found."] = "Pagină negăsită."; $a->strings["Permission denied"] = "Permisiune refuzată"; $a->strings["Permission denied."] = "Permisiune refuzată."; $a->strings["toggle mobile"] = "comutare mobil"; -$a->strings["Delete this item?"] = "Ștergeți acest element?"; -$a->strings["Comment"] = "Comentariu"; -$a->strings["show more"] = "mai mult"; -$a->strings["show fewer"] = "afișare mai puține"; -$a->strings["Update %s failed. See error logs."] = "Actualizarea %s a eșuat. Consultaţi jurnalele de eroare."; -$a->strings["Create a New Account"] = "Creaţi un Cont Nou"; -$a->strings["Register"] = "Înregistrare"; -$a->strings["Logout"] = "Deconectare"; -$a->strings["Login"] = "Login"; -$a->strings["Nickname or Email address: "] = "Pseudonimul sau Adresa de email:"; -$a->strings["Password: "] = "Parola:"; -$a->strings["Remember me"] = "Reține autentificarea"; -$a->strings["Or login using OpenID: "] = "Sau conectaţi-vă utilizând OpenID:"; -$a->strings["Forgot your password?"] = "Ați uitat parola?"; -$a->strings["Password Reset"] = "Resetare Parolă"; -$a->strings["Website Terms of Service"] = "Condiții de Utilizare Site Web"; -$a->strings["terms of service"] = "condiții de utilizare"; -$a->strings["Website Privacy Policy"] = "Politica de Confidențialitate Site Web"; -$a->strings["privacy policy"] = "politica de confidențialitate"; -$a->strings["Requested account is not available."] = "Contul solicitat nu este disponibil."; -$a->strings["Requested profile is not available."] = "Profilul solicitat nu este disponibil."; -$a->strings["Edit profile"] = "Editare profil"; -$a->strings["Connect"] = "Conectare"; -$a->strings["Message"] = "Mesaj"; -$a->strings["Profiles"] = "Profile"; -$a->strings["Manage/edit profiles"] = "Gestionare/editare profile"; -$a->strings["Change profile photo"] = "Modificați Fotografia de Profil"; -$a->strings["Create New Profile"] = "Creați Profil Nou"; -$a->strings["Profile Image"] = "Imagine profil"; -$a->strings["visible to everybody"] = "vizibil pentru toata lumea"; -$a->strings["Edit visibility"] = "Editare vizibilitate"; -$a->strings["Location:"] = "Locaţie:"; -$a->strings["Gender:"] = "Sex:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["Network:"] = "Reţea:"; -$a->strings["g A l F d"] = "g A l F d"; -$a->strings["F d"] = "F d"; -$a->strings["[today]"] = "[azi]"; -$a->strings["Birthday Reminders"] = "Memento Zile naştere "; -$a->strings["Birthdays this week:"] = "Zi;e Naştere această săptămînă:"; -$a->strings["[No description]"] = "[Fără descriere]"; -$a->strings["Event Reminders"] = "Memento Eveniment"; -$a->strings["Events this week:"] = "Evenimente în această săptămână:"; -$a->strings["Status"] = "Status"; -$a->strings["Status Messages and Posts"] = "Status Mesaje şi Postări"; -$a->strings["Profile Details"] = "Detalii Profil"; -$a->strings["Photo Albums"] = "Albume Photo "; -$a->strings["Videos"] = "Clipuri video"; -$a->strings["Events and Calendar"] = "Evenimente şi Calendar"; -$a->strings["Personal Notes"] = "Note Personale"; -$a->strings["Only You Can See This"] = "Numai Dvs. Puteţi Vizualiza"; -$a->strings["General Features"] = "Caracteristici Generale"; -$a->strings["Multiple Profiles"] = "Profile Multiple"; -$a->strings["Ability to create multiple profiles"] = "Capacitatea de a crea profile multiple"; -$a->strings["Post Composition Features"] = "Caracteristici Compoziţie Postare"; -$a->strings["Richtext Editor"] = "Editor Text Îmbogățit"; -$a->strings["Enable richtext editor"] = "Activare editor text îmbogățit"; -$a->strings["Post Preview"] = "Previzualizare Postare"; -$a->strings["Allow previewing posts and comments before publishing them"] = "Permiteți previzualizarea postărilor şi comentariilor înaintea publicării lor"; -$a->strings["Auto-mention Forums"] = "Auto-menţionare Forumuri"; -$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Adăugaţi/eliminaţi mențiunea când o pagină de forum este selectată/deselectată în fereastra ACL."; -$a->strings["Network Sidebar Widgets"] = "Aplicaţii widget de Rețea în Bara Laterală"; -$a->strings["Search by Date"] = "Căutare după Dată"; -$a->strings["Ability to select posts by date ranges"] = "Abilitatea de a selecta postări după intervalele de timp"; -$a->strings["Group Filter"] = "Filtru Grup"; -$a->strings["Enable widget to display Network posts only from selected group"] = "Permiteți aplicației widget să afișeze postări din Rețea, numai din grupul selectat"; -$a->strings["Network Filter"] = "Filtru Reţea"; -$a->strings["Enable widget to display Network posts only from selected network"] = "Permiteți aplicației widget să afișeze postări din Rețea, numai din rețeaua selectată"; -$a->strings["Saved Searches"] = "Căutări Salvate"; -$a->strings["Save search terms for re-use"] = "Salvați termenii de căutare pentru reutilizare"; -$a->strings["Network Tabs"] = "File Reţea"; -$a->strings["Network Personal Tab"] = "Filă Personală de Reţea"; -$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Permiteți filei să afişeze numai postările Reţelei cu care ați interacţionat"; -$a->strings["Network New Tab"] = "Filă Nouă de Reţea"; -$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Permiteți filei să afişeze numai postările noi din Reţea (din ultimele 12 ore)"; -$a->strings["Network Shared Links Tab"] = "Filă Legături Distribuite în Rețea"; -$a->strings["Enable tab to display only Network posts with links in them"] = "Permiteți filei să afişeze numai postările din Reţea ce conțin legături"; -$a->strings["Post/Comment Tools"] = "Instrumente Postare/Comentariu"; -$a->strings["Multiple Deletion"] = "Ştergere Multiplă"; -$a->strings["Select and delete multiple posts/comments at once"] = "Selectaţi şi ştergeţi postări/comentarii multiple simultan"; -$a->strings["Edit Sent Posts"] = "Editare Postări Trimise"; -$a->strings["Edit and correct posts and comments after sending"] = "Editarea şi corectarea postărilor şi comentariilor după postarea lor"; -$a->strings["Tagging"] = "Etichetare"; -$a->strings["Ability to tag existing posts"] = "Capacitatea de a eticheta postările existente"; -$a->strings["Post Categories"] = "Categorii Postări"; -$a->strings["Add categories to your posts"] = "Adăugaţi categorii la postările dvs."; -$a->strings["Saved Folders"] = "Dosare Salvate"; -$a->strings["Ability to file posts under folders"] = "Capacitatea de a atribui postări în dosare"; -$a->strings["Dislike Posts"] = "Respingere Postări"; -$a->strings["Ability to dislike posts/comments"] = "Capacitatea de a marca postări/comentarii ca fiind neplăcute"; -$a->strings["Star Posts"] = "Postări cu Steluță"; -$a->strings["Ability to mark special posts with a star indicator"] = "Capacitatea de a marca posturile speciale cu o stea ca şi indicator"; -$a->strings["Mute Post Notifications"] = ""; -$a->strings["Ability to mute notifications for a thread"] = ""; -$a->strings["%s's birthday"] = "%s's zi de naştere"; -$a->strings["Happy Birthday %s"] = "La mulţi ani %s"; +$a->strings["[Embedded content - reload page to view]"] = "[Conţinut încastrat - reîncărcaţi pagina pentru a vizualiza]"; +$a->strings["Contact not found."] = "Contact negăsit."; +$a->strings["Friend suggestion sent."] = "Sugestia de prietenie a fost trimisă."; +$a->strings["Suggest Friends"] = "Sugeraţi Prieteni"; +$a->strings["Suggest a friend for %s"] = "Sugeraţi un prieten pentru %s"; +$a->strings["This introduction has already been accepted."] = "Această introducere a fost deja acceptată"; +$a->strings["Profile location is not valid or does not contain profile information."] = "Locaţia profilului nu este validă sau nu conţine informaţii de profil."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Atenţie: locaţia profilului nu are un nume de deţinător identificabil."; +$a->strings["Warning: profile location has no profile photo."] = "Atenţie: locaţia profilului nu are fotografie de profil."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d parametru necesar nu a fost găsit în locaţia specificată", + 1 => "%d parametrii necesari nu au fost găsiţi în locaţia specificată", + 2 => "%d de parametrii necesari nu au fost găsiţi în locaţia specificată", +); +$a->strings["Introduction complete."] = "Prezentare completă."; +$a->strings["Unrecoverable protocol error."] = "Eroare de protocol nerecuperabilă."; +$a->strings["Profile unavailable."] = "Profil nedisponibil."; +$a->strings["%s has received too many connection requests today."] = "%s a primit, pentru azi, prea multe solicitări de conectare."; +$a->strings["Spam protection measures have been invoked."] = "Au fost invocate măsuri de protecţie anti-spam."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Prietenii sunt rugaţi să reîncerce peste 24 de ore."; +$a->strings["Invalid locator"] = "Invalid locator"; +$a->strings["Invalid email address."] = "Adresă mail invalidă."; +$a->strings["This account has not been configured for email. Request failed."] = "Acest cont nu a fost configurat pentru email. Cererea a eşuat."; +$a->strings["Unable to resolve your name at the provided location."] = "Imposibil să vă soluţionăm numele pentru locaţia sugerată."; +$a->strings["You have already introduced yourself here."] = "Aţi fost deja prezentat aici"; +$a->strings["Apparently you are already friends with %s."] = "Se pare că sunteţi deja prieten cu %s."; +$a->strings["Invalid profile URL."] = "Profil URL invalid."; +$a->strings["Disallowed profile URL."] = "Profil URL invalid."; +$a->strings["Failed to update contact record."] = "Actualizarea datelor de contact a eşuat."; +$a->strings["Your introduction has been sent."] = "Prezentarea dumneavoastră a fost trimisă."; +$a->strings["Please login to confirm introduction."] = "Vă rugăm să vă autentificați pentru a confirma prezentarea."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Autentificat curent cu identitate eronată. Vă rugăm să vă autentificați pentru acest profil."; +$a->strings["Hide this contact"] = "Ascunde acest contact"; +$a->strings["Welcome home %s."] = "Bine ai venit %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Vă rugăm să vă confirmaţi solicitarea de introducere/conectare la %s."; +$a->strings["Confirm"] = "Confirm"; $a->strings["[Name Withheld]"] = "[Nume Reţinut]"; -$a->strings["Item not found."] = "Element negăsit."; -$a->strings["Do you really want to delete this item?"] = "Sigur doriți să ștergeți acest element?"; +$a->strings["Public access denied."] = "Acces public refuzat."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vă rugăm să vă introduceţi \"Adresa de Identitate\" din una din următoarele reţele de socializare acceptate:"; +$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."] = "Dacă nu sunteţi încă un membru al reţelei online de socializare gratuite, urmați acest link pentru a găsi un site public Friendica şi alăturați-vă nouă, chiar astăzi."; +$a->strings["Friend/Connection Request"] = "Solicitare Prietenie/Conectare"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemple: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Vă rugăm să răspundeţi la următoarele:"; +$a->strings["Does %s know you?"] = "%s vă cunoaşte?"; +$a->strings["No"] = "NU"; $a->strings["Yes"] = "Da"; -$a->strings["Cancel"] = "Anulează"; -$a->strings["Archives"] = "Arhive"; -$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 grup şters cu acest nume a fost restabilit. Permisiunile existente ale elementului, potfi aplicate acestui grup şi oricăror viitori membrii. Dacă aceasta nu este ceea ați intenționat să faceți, vă rugăm să creaţi un alt grup cu un un nume diferit."; -$a->strings["Default privacy group for new contacts"] = "Confidenţialitatea implicită a grupului pentru noi contacte"; -$a->strings["Everybody"] = "Toată lumea"; -$a->strings["edit"] = "editare"; -$a->strings["Groups"] = "Groupuri"; -$a->strings["Edit group"] = "Editare grup"; -$a->strings["Create a new group"] = "Creați un nou grup"; -$a->strings["Contacts not in any group"] = "Contacte ce nu se află în orice grup"; -$a->strings["add"] = "add"; -$a->strings["Wall Photos"] = "Fotografii de Perete"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Nu se pot localiza informațiile DNS pentru serverul de bază de date '%s'"; -$a->strings["Add New Contact"] = "Add Contact Nou"; -$a->strings["Enter address or web location"] = "Introduceţi adresa sau locaţia web"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemplu: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d invitație disponibilă", - 1 => "%d invitații disponibile", - 2 => "%d de invitații disponibile", -); -$a->strings["Find People"] = "Căutați Persoane"; -$a->strings["Enter name or interest"] = "Introduceţi numele sau interesul"; -$a->strings["Connect/Follow"] = "Conectare/Urmărire"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemple: Robert Morgenstein, Pescuit"; -$a->strings["Find"] = "Căutare"; -$a->strings["Random Profile"] = "Profil Aleatoriu"; -$a->strings["Networks"] = "Rețele"; -$a->strings["All Networks"] = "Toate Reţelele"; -$a->strings["Everything"] = "Totul"; -$a->strings["Categories"] = "Categorii"; -$a->strings["%d contact in common"] = array( - 0 => "%d contact în comun", - 1 => "%d contacte în comun", - 2 => "%d de contacte în comun", -); -$a->strings["Friendica Notification"] = "Notificare Friendica"; -$a->strings["Thank You,"] = "Vă mulțumim,"; -$a->strings["%s Administrator"] = "%s Administrator"; -$a->strings["noreply"] = "nu-răspundeţi"; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificare] Mail nou primit la %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s v-a trimis un nou mesaj privat la %2\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s v-a trimis %2\$s"; -$a->strings["a private message"] = "un mesaj privat"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la mesaje private."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s a comentat la [url=%2\$s]a %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s a comentat la [url=%2\$s]%4\$s postat de %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s a comentat la [url=%2\$s]%3\$s dvs.[/url]"; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notificare] Comentariu la conversaţia #%1\$d postată de %2\$s"; -$a->strings["%s commented on an item/conversation you have been following."] = "%s a comentat la un element/conversaţie pe care o urmăriți."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la conversație."; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notificare] %s a postat pe peretele dvs. de profil"; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s a postat pe peretele dvs. de profil la %2\$s"; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s a postat pe [url=%2\$s]peretele dvs.[/url]"; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notificare] %s v-a etichetat"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s v-a etichetat la %2\$s"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]v-a etichetat[/url]."; -$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notificare] %s a distribuit o nouă postare"; -$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s a distribuit o nouă postare la %2\$s"; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s] a distribuit o postare[/url]."; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notificare] %1\$s v-a abordat"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s v-a abordat la %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]v-a abordat[/url]."; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificare] %s v-a etichetat postarea"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$sv-a etichetat postarea la %2\$s"; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s a etichetat [url=%2\$s]postarea dvs.[/url]"; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificare] Prezentare primită"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Aţi primit o prezentare de la '%1\$s' at %2\$s"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Aţi primit [url=%1\$s]o prezentare[/url] de la %2\$s."; -$a->strings["You may visit their profile at %s"] = "Le puteți vizita profilurile, online pe %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge prezentarea."; -$a->strings["[Friendica:Notify] A new person is sharing with you"] = ""; -$a->strings["%1\$s is sharing with you at %2\$s"] = ""; -$a->strings["[Friendica:Notify] You have a new follower"] = ""; -$a->strings["You have a new follower at %2\$s : %1\$s"] = ""; -$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notificare] Ați primit o sugestie de prietenie"; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Ați primit o sugestie de prietenie de la '%1\$s' la %2\$s"; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Aţi primit [url=%1\$s]o sugestie de prietenie[/url] pentru %2\$s de la %3\$s."; -$a->strings["Name:"] = "Nume:"; -$a->strings["Photo:"] = "Foto:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge sugestia."; -$a->strings["[Friendica:Notify] Connection accepted"] = ""; -$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = ""; -$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = ""; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = ""; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; -$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = ""; -$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = ""; -$a->strings["[Friendica System:Notify] registration request"] = ""; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = ""; -$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = ""; -$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = ""; -$a->strings["Please visit %s to approve or reject the request."] = ""; -$a->strings["User not found."] = "Utilizatorul nu a fost găsit."; -$a->strings["There is no status with this id."] = "Nu există nici-un status cu acest id."; -$a->strings["There is no conversation with this id."] = "Nu există nici-o conversație cu acest id."; -$a->strings["view full size"] = "vezi intreaga mărime"; -$a->strings[" on Last.fm"] = "pe Last.fm"; -$a->strings["Full Name:"] = "Nume complet:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Zile Naştere :"; -$a->strings["Age:"] = "Vârsta:"; -$a->strings["for %1\$d %2\$s"] = "pentru %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Orientare Sexuală:"; -$a->strings["Hometown:"] = "Domiciliu:"; -$a->strings["Tags:"] = "Etichete:"; -$a->strings["Political Views:"] = "Viziuni Politice:"; -$a->strings["Religion:"] = "Religie:"; -$a->strings["About:"] = "Despre:"; -$a->strings["Hobbies/Interests:"] = "Hobby/Interese:"; -$a->strings["Likes:"] = "Îmi place:"; -$a->strings["Dislikes:"] = "Nu-mi place:"; -$a->strings["Contact information and Social Networks:"] = "Informaţii de Contact şi Reţele Sociale:"; -$a->strings["Musical interests:"] = "Preferințe muzicale:"; -$a->strings["Books, literature:"] = "Cărti, literatură:"; -$a->strings["Television:"] = "Programe TV:"; -$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultură/divertisment:"; -$a->strings["Love/Romance:"] = "Dragoste/Romantism:"; -$a->strings["Work/employment:"] = "Loc de Muncă/Slujbă:"; -$a->strings["School/education:"] = "Școală/educatie:"; -$a->strings["Nothing new here"] = "Nimic nou aici"; -$a->strings["Clear notifications"] = "Ştergeţi notificările"; -$a->strings["End this session"] = "Finalizați această sesiune"; -$a->strings["Your videos"] = "Fișierele tale video"; -$a->strings["Your personal notes"] = "Notele tale personale"; -$a->strings["Sign in"] = "Autentificare"; -$a->strings["Home Page"] = "Home Pagina"; -$a->strings["Create an account"] = "Creați un cont"; -$a->strings["Help"] = "Ajutor"; -$a->strings["Help and documentation"] = "Ajutor şi documentaţie"; -$a->strings["Apps"] = "Aplicații"; -$a->strings["Addon applications, utilities, games"] = "Suplimente la aplicații, utilitare, jocuri"; -$a->strings["Search"] = "Căutare"; -$a->strings["Search site content"] = "Căutare în conținut site"; -$a->strings["Conversations on this site"] = "Conversaţii pe acest site"; -$a->strings["Directory"] = "Director"; -$a->strings["People directory"] = "Director persoane"; -$a->strings["Information"] = "Informaţii"; -$a->strings["Information about this friendica instance"] = "Informaţii despre această instanță friendica"; +$a->strings["Add a personal note:"] = "Adaugă o notă personală:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Reţea Socială Web Centralizată"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- vă rugăm să nu folosiţi acest formular. În schimb, introduceţi %s în bara dvs. de căutare Diaspora."; +$a->strings["Your Identity Address:"] = "Adresa dvs. Identitate "; +$a->strings["Submit Request"] = "Trimiteţi Solicitarea"; +$a->strings["Cancel"] = "Anulează"; +$a->strings["View Video"] = "Vizualizați Clipul Video"; +$a->strings["Requested profile is not available."] = "Profilul solicitat nu este disponibil."; +$a->strings["Access to this profile has been restricted."] = "Accesul la acest profil a fost restricţionat."; +$a->strings["Tips for New Members"] = "Sfaturi pentru Membrii Noi"; +$a->strings["Invalid request identifier."] = "Datele de identificare solicitate, sunt invalide."; +$a->strings["Discard"] = "Renunțați"; +$a->strings["Ignore"] = "Ignoră"; +$a->strings["System"] = "System"; $a->strings["Network"] = "Reţea"; -$a->strings["Conversations from your friends"] = "Conversaţiile prieteniilor dvs."; -$a->strings["Network Reset"] = "Resetare Reţea"; -$a->strings["Load Network page with no filters"] = "Încărcare pagina de Reţea fără filtre"; +$a->strings["Personal"] = "Personal"; +$a->strings["Home"] = "Home"; $a->strings["Introductions"] = "Introduceri"; -$a->strings["Friend Requests"] = "Solicitări Prietenie"; +$a->strings["Show Ignored Requests"] = "Afişare Solicitări Ignorate"; +$a->strings["Hide Ignored Requests"] = "Ascundere Solicitări Ignorate"; +$a->strings["Notification type: "] = "Tip Notificări:"; +$a->strings["Friend Suggestion"] = "Sugestie Prietenie"; +$a->strings["suggested by %s"] = "sugerat de către %s"; +$a->strings["Hide this contact from others"] = "Ascunde acest contact pentru alţii"; +$a->strings["Post a new friend activity"] = "Publicaţi prietenului o nouă activitate"; +$a->strings["if applicable"] = "dacă i posibil"; +$a->strings["Approve"] = "Aprobă"; +$a->strings["Claims to be known to you: "] = "Pretinde că vă cunoaște:"; +$a->strings["yes"] = "da"; +$a->strings["no"] = "nu"; +$a->strings["Approve as: "] = "Aprobă ca:"; +$a->strings["Friend"] = "Prieten"; +$a->strings["Sharer"] = "Distribuitor"; +$a->strings["Fan/Admirer"] = "Fan/Admirator"; +$a->strings["Friend/Connect Request"] = "Prieten/Solicitare de Conectare"; +$a->strings["New Follower"] = "Susţinător Nou"; +$a->strings["No introductions."] = "Fără prezentări."; $a->strings["Notifications"] = "Notificări"; -$a->strings["See all notifications"] = "Consultaţi toate notificările"; -$a->strings["Mark all system notifications seen"] = "Marcaţi toate notificările de sistem, ca și vizualizate"; -$a->strings["Messages"] = "Mesage"; -$a->strings["Private mail"] = "Mail privat"; -$a->strings["Inbox"] = "Mesaje primite"; -$a->strings["Outbox"] = "Căsuță de Ieșire"; -$a->strings["New Message"] = "Mesaj nou"; -$a->strings["Manage"] = "Gestionare"; -$a->strings["Manage other pages"] = "Gestionează alte pagini"; -$a->strings["Delegations"] = "Delegații"; -$a->strings["Delegate Page Management"] = "Delegare Gestionare Pagină"; -$a->strings["Account settings"] = "Configurări Cont"; -$a->strings["Manage/Edit Profiles"] = "Gestionare/Editare Profile"; -$a->strings["Manage/edit friends and contacts"] = "Gestionare/Editare prieteni şi contacte"; +$a->strings["%s liked %s's post"] = "%s a apreciat ceea a publicat %s"; +$a->strings["%s disliked %s's post"] = "%s a nu a apreciat ceea a publicat %s"; +$a->strings["%s is now friends with %s"] = "%s este acum prieten cu %s"; +$a->strings["%s created a new post"] = "%s a creat o nouă postare"; +$a->strings["%s commented on %s's post"] = "%s a comentat la articolul postat de %s"; +$a->strings["No more network notifications."] = "Nu mai există notificări de reţea."; +$a->strings["Network Notifications"] = "Notificări de Reţea"; +$a->strings["No more system notifications."] = "Nu mai există notificări de sistem."; +$a->strings["System Notifications"] = "Notificări de Sistem"; +$a->strings["No more personal notifications."] = "Nici o notificare personală"; +$a->strings["Personal Notifications"] = "Notificări personale"; +$a->strings["No more home notifications."] = "Nu mai există notificări de origine."; +$a->strings["Home Notifications"] = "Notificări de Origine"; +$a->strings["photo"] = "photo"; +$a->strings["status"] = "status"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s apreciază %3\$s lui %2\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nu apreciază %3\$s lui %2\$s"; +$a->strings["OpenID protocol error. No ID returned."] = "Eroare de protocol OpenID. Nici-un ID returnat."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Contul nu a fost găsit iar înregistrările OpenID nu sunt permise pe acest site."; +$a->strings["Login failed."] = "Eşec la conectare"; +$a->strings["Source (bbcode) text:"] = "Text (bbcode) sursă:"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Text (Diaspora) sursă pentru a-l converti în BBcode:"; +$a->strings["Source input: "] = "Intrare Sursă:"; +$a->strings["bb2html (raw HTML): "] = "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): "] = "Intrare Sursă (Format Diaspora):"; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Theme settings updated."] = "Configurările temei au fost actualizate."; +$a->strings["Site"] = "Site"; +$a->strings["Users"] = "Utilizatori"; +$a->strings["Plugins"] = "Pluginuri"; +$a->strings["Themes"] = "Teme"; +$a->strings["DB updates"] = "Actualizări Bază de Date"; +$a->strings["Logs"] = "Jurnale"; $a->strings["Admin"] = "Admin"; -$a->strings["Site setup and configuration"] = "Instalare şi configurare site"; -$a->strings["Navigation"] = "Navigare"; -$a->strings["Site map"] = "Hartă Site"; -$a->strings["Click here to upgrade."] = "Apăsați aici pentru a actualiza."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Această acţiune depăşeşte limitele stabilite de planul abonamentului dvs."; -$a->strings["This action is not available under your subscription plan."] = "Această acţiune nu este disponibilă în planul abonamentului dvs."; -$a->strings["Disallowed profile URL."] = "Profil URL invalid."; -$a->strings["Connect URL missing."] = "Lipseşte URL-ul de conectare."; -$a->strings["This site is not configured to allow communications with other networks."] = "Acest site nu este configurat pentru a permite comunicarea cu alte reţele."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Nu au fost descoperite protocoale de comunicaţii sau fluxuri compatibile."; -$a->strings["The profile address specified does not provide adequate information."] = "Adresa de profil specificată nu furnizează informații adecvate."; -$a->strings["An author or name was not found."] = "Un autor sau nume nu a fost găsit."; -$a->strings["No browser URL could be matched to this address."] = "Nici un URL de browser nu a putut fi corelat cu această adresă."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Nu se poate corela @-stilul pentru Adresa de Identitatea cu un protocol cunoscut sau contact de email."; -$a->strings["Use mailto: in front of address to force email check."] = "Utilizaţi mailto: în faţa adresei pentru a forţa verificarea de email."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Adresa de profil specificată aparţine unei reţele care a fost dezactivată pe acest site."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limitat. Această persoană nu va putea primi notificări directe/personale, de la dvs."; -$a->strings["Unable to retrieve contact information."] = "Nu se pot localiza informaţiile de contact."; -$a->strings["following"] = "urmărire"; -$a->strings["Error decoding account file"] = "Eroare la decodarea fişierului de cont"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Eroare! Nu există data versiunii în fişier! Acesta nu este un fișier de cont Friendica?"; -$a->strings["Error! Cannot check nickname"] = "Eroare! Nu pot verifica pseudonimul"; -$a->strings["User '%s' already exists on this server!"] = "Utilizatorul '%s' există deja pe acest server!"; -$a->strings["User creation error"] = "Eroare la crearea utilizatorului"; -$a->strings["User profile creation error"] = "Eroare la crearea profilului utilizatorului"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contact neimportat", - 1 => "%d contacte neimportate", - 2 => "%d de contacte neimportate", -); -$a->strings["Done. You can now login with your username and password"] = "Realizat. Vă puteţi conecta acum cu parola şi numele dumneavoastră de utilizator"; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Starts:"] = "Începe:"; -$a->strings["Finishes:"] = "Se finalizează:"; -$a->strings["stopped following"] = "urmărire întreruptă"; -$a->strings["Poke"] = "Abordare"; -$a->strings["View Status"] = "Vizualizare Status"; -$a->strings["View Profile"] = "Vizualizare Profil"; -$a->strings["View Photos"] = "Vizualizare Fotografii"; -$a->strings["Network Posts"] = "Postări din Rețea"; -$a->strings["Edit Contact"] = "Edit Contact"; -$a->strings["Drop Contact"] = "Eliminare Contact"; -$a->strings["Send PM"] = "Trimiteți mesaj personal"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = ""; -$a->strings["The error message is\n[pre]%s[/pre]"] = ""; -$a->strings["Errors encountered creating database tables."] = "Erori întâlnite la crearea tabelelor bazei de date."; -$a->strings["Errors encountered performing database changes."] = "Erori întâlnite la operarea de modificări în baza de date."; -$a->strings["Miscellaneous"] = "Diverse"; -$a->strings["year"] = "an"; -$a->strings["month"] = "lună"; -$a->strings["day"] = "zi"; -$a->strings["never"] = "niciodată"; -$a->strings["less than a second ago"] = "acum mai puțin de o secundă"; -$a->strings["years"] = "ani"; -$a->strings["months"] = "luni"; -$a->strings["week"] = "săptămână"; -$a->strings["weeks"] = "săptămâni"; -$a->strings["days"] = "zile"; -$a->strings["hour"] = "oră"; -$a->strings["hours"] = "ore"; -$a->strings["minute"] = "minut"; -$a->strings["minutes"] = "minute"; -$a->strings["second"] = "secundă"; -$a->strings["seconds"] = "secunde"; -$a->strings["%1\$d %2\$s ago"] = "acum %1\$d %2\$s"; -$a->strings["[no subject]"] = "[fără subiect]"; -$a->strings["(no subject)"] = "(fără subiect)"; -$a->strings["Unknown | Not categorised"] = "Necunoscut | Fără categorie"; -$a->strings["Block immediately"] = "Blocare Imediată"; -$a->strings["Shady, spammer, self-marketer"] = "Dubioșii, spammerii, auto-promoterii"; -$a->strings["Known to me, but no opinion"] = "Cunoscut mie, dar fără o opinie"; -$a->strings["OK, probably harmless"] = "OK, probabil inofensiv"; -$a->strings["Reputable, has my trust"] = "Cu reputație, are încrederea mea"; +$a->strings["Plugin Features"] = "Caracteristici Modul"; +$a->strings["User registrations waiting for confirmation"] = "Înregistrări de utilizatori, aşteaptă confirmarea"; +$a->strings["Item not found."] = "Element negăsit."; +$a->strings["Normal Account"] = "Cont normal"; +$a->strings["Soapbox Account"] = "Cont Soapbox"; +$a->strings["Community/Celebrity Account"] = "Cont Comunitate/Celebritate"; +$a->strings["Automatic Friend Account"] = "Cont Prieten Automat"; +$a->strings["Blog Account"] = "Cont Blog"; +$a->strings["Private Forum"] = "Forum Privat"; +$a->strings["Message queues"] = "Șiruri de mesaje"; +$a->strings["Administration"] = "Administrare"; +$a->strings["Summary"] = "Sumar"; +$a->strings["Registered users"] = "Utilizatori înregistraţi"; +$a->strings["Pending registrations"] = "Administrare"; +$a->strings["Version"] = "Versiune"; +$a->strings["Active plugins"] = "Module active"; +$a->strings["Can not parse base url. Must have at least ://"] = "Nu se poate analiza URL-ul de bază. Trebuie să aibă minim ://"; +$a->strings["Site settings updated."] = "Configurările site-ului au fost actualizate."; +$a->strings["No special theme for mobile devices"] = "Nici-o temă specială pentru dispozitive mobile"; +$a->strings["Never"] = "Niciodată"; +$a->strings["At post arrival"] = "La sosirea publicaţiei"; $a->strings["Frequently"] = "Frecvent"; $a->strings["Hourly"] = "Din oră în oră"; $a->strings["Twice daily"] = "De două ori pe zi"; $a->strings["Daily"] = "Zilnic"; -$a->strings["Weekly"] = "Săptămânal"; -$a->strings["Monthly"] = "Lunar"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Multi user instance"] = "Instanţă utilizatori multipli"; +$a->strings["Closed"] = "Inchis"; +$a->strings["Requires approval"] = "Necesită aprobarea"; +$a->strings["Open"] = "Deschide"; +$a->strings["No SSL policy, links will track page SSL state"] = "Nici-o politică SSL, legăturile vor urmări starea paginii SSL"; +$a->strings["Force all links to use SSL"] = "Forţează toate legăturile să utilizeze SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificat auto/semnat, folosește SSL numai pentru legăturile locate (nerecomandat)"; +$a->strings["Save Settings"] = "Salvare Configurări"; +$a->strings["Registration"] = "Registratură"; +$a->strings["File upload"] = "Fişier incărcat"; +$a->strings["Policies"] = "Politici"; +$a->strings["Advanced"] = "Avansat"; +$a->strings["Performance"] = "Performanţă"; +$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Reaşezaţi - AVERTIZARE: funcţie avansată. Ar putea face acest server inaccesibil."; +$a->strings["Site name"] = "Nume site"; +$a->strings["Banner/Logo"] = "Baner/Logo"; +$a->strings["Additional Info"] = "Informaţii suplimentare"; +$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Pentru serverele publice: puteţi să adăugaţi aici informaţiile suplimentare ce vor fi afişate pe dir.friendica.com/siteinfo."; +$a->strings["System language"] = "Limbă System l"; +$a->strings["System theme"] = "Temă System "; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema implicită a sistemului - se poate supraregla prin profilele de utilizator - modificați configurările temei"; +$a->strings["Mobile system theme"] = "Temă sisteme mobile"; +$a->strings["Theme for mobile devices"] = "Temă pentru dispozitivele mobile"; +$a->strings["SSL link policy"] = "Politivi link SSL "; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Determină dacă legăturile generate ar trebui forţate să utilizeze SSL"; +$a->strings["Old style 'Share'"] = "Stilul vechi de 'Distribuiţi'"; +$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Dezactivează elementul bbcode 'distribuiţi' pentru elementele repetitive."; +$a->strings["Hide help entry from navigation menu"] = "Ascunde elementele de ajutor, din meniul de navigare"; +$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Ascunde intrările de meniu pentru paginile de Ajutor, din meniul de navigare. Îl puteţi accesa în continuare direct, apelând /ajutor."; +$a->strings["Single user instance"] = "Instanţă cu un singur utilizator"; +$a->strings["Make this instance multi-user or single-user for the named user"] = "Stabiliți această instanţă ca utilizator-multipli sau utilizator/unic, pentru utilizatorul respectiv"; +$a->strings["Maximum image size"] = "Maxim mărime imagine"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Dimensiunea maximă în octeţi, a imaginii încărcate. Implicit este 0, ceea ce înseamnă fără limite."; +$a->strings["Maximum image length"] = "Dimensiunea maximă a imaginii"; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Dimensiunea maximă în pixeli a celei mai lungi laturi a imaginii încărcate. Implicit este -1, ceea ce înseamnă fără limite."; +$a->strings["JPEG image quality"] = "Calitate imagine JPEG "; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Imaginile JPEG încărcate vor fi salvate cu această calitate stabilită [0-100]. Implicit este 100, ceea ce înseamnă calitate completă."; +$a->strings["Register policy"] = "Politici inregistrare "; +$a->strings["Maximum Daily Registrations"] = "Înregistrări Zilnice Maxime"; +$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."] = "Dacă înregistrarea este permisă de mai sus, aceasta stabileşte numărul maxim de utilizatori noi înregistraţi, acceptaţi pe zi. Dacă înregistrarea este stabilită ca închisă, această setare nu are efect."; +$a->strings["Register text"] = "Text înregistrare"; +$a->strings["Will be displayed prominently on the registration page."] = "Va fi afişat vizibil pe pagina de înregistrare."; +$a->strings["Accounts abandoned after x days"] = "Conturi abandonate după x zile"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Nu va risipi resurse de sistem interogând site-uri externe pentru conturi abandonate. Introduceţi 0 pentru nici-o limită de timp."; +$a->strings["Allowed friend domains"] = "Domenii prietene permise"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista cu separator prin virgulă a domeniilor ce sunt permise pentru a stabili relaţii de prietenie cu acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu"; +$a->strings["Allowed email domains"] = "Domenii de email, permise"; +$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"] = "Lista cu separator prin virgulă a domeniilor ce sunt permise în adresele de email pentru înregistrările pe acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu"; +$a->strings["Block public"] = "Blocare acces public"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Bifați pentru a bloca accesul public, pe acest site, către toate paginile publice cu caracter personal, doar dacă nu sunteţi deja autentificat."; +$a->strings["Force publish"] = "Forțează publicarea"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Bifați pentru a forţa, ca toate profilurile de pe acest site să fie enumerate în directorul site-ului."; +$a->strings["Global directory update URL"] = "URL actualizare director global"; +$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL pentru a actualiza directorul global. Dacă aceasta nu se stabilește, director global este complet indisponibil pentru aplicație."; +$a->strings["Allow threaded items"] = "Permite elemente înșiruite"; +$a->strings["Allow infinite level threading for items on this site."] = "Permite pe acest site, un număr infinit de nivele de înșiruire."; +$a->strings["Private posts by default for new users"] = "Postările private, ca implicit pentru utilizatori noi"; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Stabilește permisiunile de postare implicite, pentru toți membrii noi, la grupul de confidențialitate implicit, mai degrabă decât cel public."; +$a->strings["Don't include post content in email notifications"] = "Nu include conţinutul postării în notificările prin 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."] = "Nu include conținutul unui post/comentariu/mesaj privat/etc. în notificările prin email, ce sunt trimise de pe acest site, ca și masură de confidenţialitate."; +$a->strings["Disallow public access to addons listed in the apps menu."] = "Nu permiteţi accesul public la suplimentele enumerate în meniul de aplicaţii."; +$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Bifând această casetă va restricționa, suplimentele enumerate în meniul de aplicaţii, exclusiv la accesul membrilor."; +$a->strings["Don't embed private images in posts"] = "Nu încorpora imagini private în postări"; +$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."] = "Nu înlocui fotografiile private, locale, din postări cu o copie încorporată imaginii. Aceasta înseamnă că, contactele care primesc postări ce conțin fotografii private vor trebui să se autentifice şi să încarce fiecare imagine, ceea ce poate dura ceva timp."; +$a->strings["Allow Users to set remote_self"] = "Permite utilizatorilor să-și stabilească remote_self"; +$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "Bifând aceasta, fiecărui utilizator îi este permis să marcheze fiecare contact, ca și propriu_la-distanță în dialogul de remediere contact. Stabilind acest marcaj unui un contact, va determina oglindirea fiecărei postări a respectivului contact, în fluxul utilizatorilor."; +$a->strings["Block multiple registrations"] = "Blocare înregistrări multiple"; +$a->strings["Disallow users to register additional accounts for use as pages."] = "Interzice utilizatorilor să-și înregistreze conturi adiționale pentru a le folosi ca pagini."; +$a->strings["OpenID support"] = "OpenID support"; +$a->strings["OpenID support for registration and logins."] = "Suport OpenID pentru înregistrare şi autentificări."; +$a->strings["Fullname check"] = "Verificare Nume complet"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forțează utilizatorii să se înregistreze cu un spaţiu între prenume şi nume, în câmpul pentru Nume complet, ca și măsură antispam"; +$a->strings["UTF-8 Regular expressions"] = "UTF-8 Regular expresii"; +$a->strings["Use PHP UTF8 regular expressions"] = "Utilizaţi PHP UTF-8 Regular expresii"; +$a->strings["Show Community Page"] = "Arată Pagina Communitz"; +$a->strings["Display a Community page showing all recent public postings on this site."] = "Afişează o Pagina de Comunitate, arătând toate postările publice recente pe acest site."; +$a->strings["Enable OStatus support"] = "Activează Suport OStatus"; +$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Oferă compatibilitate de integrare OStatus (StatusNet, GNU Sociale etc.). Toate comunicațiile din OStatus sunt publice, astfel încât avertismentele de confidenţialitate vor fi ocazional afişate."; +$a->strings["OStatus conversation completion interval"] = "Intervalul OStatus de finalizare a conversaţiei"; +$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Cât de des ar trebui, operatorul de sondaje, să verifice existența intrărilor noi din conversațiile OStatus? Aceasta poate fi o resursă de sarcini utile."; +$a->strings["Enable Diaspora support"] = "Activează Suport Diaspora"; +$a->strings["Provide built-in Diaspora network compatibility."] = "Oferă o compatibilitate de reţea Diaspora, întegrată."; +$a->strings["Only allow Friendica contacts"] = "Se permit doar contactele Friendica"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Toate contactele trebuie să utilizeze protocoalele Friendica. Toate celelalte protocoale, integrate, de comunicaţii sunt dezactivate."; +$a->strings["Verify SSL"] = "Verifică 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."] = "Dacă doriţi, puteţi porni verificarea cu strictețe a certificatului. Aceasta va însemna că nu vă puteţi conecta (deloc) la site-uri SSL auto-semnate."; +$a->strings["Proxy user"] = "Proxy user"; +$a->strings["Proxy URL"] = "Proxy URL"; +$a->strings["Network timeout"] = "Timp de expirare rețea"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valoare exprimată în secunde. Stabiliți la 0 pentru nelimitat (nu este recomandat)."; +$a->strings["Delivery interval"] = "Interval de livrare"; +$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."] = "Întârzierea proceselor de livrare în fundal, exprimată prin atâtea secunde, pentru a reduce încărcarea sistemului. Recomandat: 4-5 pentru gazde comune, 2-3 pentru servere virtuale private, 0-1 pentru servere dedicate mari."; +$a->strings["Poll interval"] = "Interval de Sondare"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Întârzierea proceselor de sondare în fundal, exprimată prin atâtea secunde, pentru a reduce încărcarea sistemului. dacă este 0, utilizează intervalul de livrare."; +$a->strings["Maximum Load Average"] = "Media Maximă de Încărcare"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Încărcarea maximă a sistemului înainte ca livrarea şi procesele de sondare să fie amânate - implicit 50."; +$a->strings["Use MySQL full text engine"] = "Utilizare motor text-complet MySQL"; +$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activează motorul pentru text complet. Grăbeşte căutare - dar poate căuta, numai pentru minim 4 caractere."; +$a->strings["Suppress Language"] = "Suprimă Limba"; +$a->strings["Suppress language information in meta information about a posting."] = "Suprimă informaţiile despre limba din informaţiile meta ale unei postări."; +$a->strings["Path to item cache"] = "Calea pentru elementul cache"; +$a->strings["Cache duration in seconds"] = "Durata Cache în secunde"; +$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "Cât de mult ar trebui păstrate fișierele cache? Valoarea implicită este de 86400 de secunde (O zi). Pentru a dezactiva elementul cache, stabilește valoarea la -1."; +$a->strings["Maximum numbers of comments per post"] = "Numărul maxim de comentarii per post"; +$a->strings["How much comments should be shown for each post? Default value is 100."] = "Câte comentarii ar trebui afișate pentru fiecare postare? Valoarea implicită este 100."; +$a->strings["Path for lock file"] = "Cale pentru blocare fișiere"; +$a->strings["Temp path"] = "Calea Temp"; +$a->strings["Base path to installation"] = "Calea de bază pentru instalare"; +$a->strings["Disable picture proxy"] = ""; +$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = ""; +$a->strings["New base url"] = "URL de bază nou"; +$a->strings["Disable noscrape"] = "Dezactivare fără-colectare"; +$a->strings["The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping. Disabling it will cause higher load on your server and the directory server."] = ""; +$a->strings["Update has been marked successful"] = "Actualizarea a fost marcată cu succes"; +$a->strings["Database structure update %s was successfully applied."] = "Actualizarea structurii bazei de date %s a fost aplicată cu succes."; +$a->strings["Executing of database structure update %s failed with error: %s"] = ""; +$a->strings["Executing %s failed with error: %s"] = "Executarea %s a eșuat cu eroarea : %s"; +$a->strings["Update %s was successfully applied."] = "Actualizarea %s a fost aplicată cu succes."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Actualizare %s nu a returnat nici-un status. Nu se știe dacă a reuşit."; +$a->strings["There was no additional update function %s that needed to be called."] = ""; +$a->strings["No failed updates."] = "Nici-o actualizare eșuată."; +$a->strings["Check database structure"] = "Verifică structura bazei de date"; +$a->strings["Failed Updates"] = "Actualizări Eșuate"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Aceasta nu include actualizările dinainte de 1139, care nu a returnat nici-un status."; +$a->strings["Mark success (if update was manually applied)"] = "Marcaţi ca și realizat (dacă actualizarea a fost aplicată manual)"; +$a->strings["Attempt to execute this update step automatically"] = "Se încearcă executarea automată a acestei etape de actualizare"; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = ""; +$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = ""; +$a->strings["Registration details for %s"] = "Detaliile de înregistrare pentru %s"; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "%s utilizator blocat/deblocat", + 1 => "%s utilizatori blocați/deblocați", + 2 => "%s de utilizatori blocați/deblocați", +); +$a->strings["%s user deleted"] = array( + 0 => "%s utilizator şters", + 1 => "%s utilizatori şterşi", + 2 => "%s utilizatori şterşi", +); +$a->strings["User '%s' deleted"] = "Utilizator %s şters"; +$a->strings["User '%s' unblocked"] = "Utilizator %s deblocat"; +$a->strings["User '%s' blocked"] = "Utilizator %s blocat"; +$a->strings["Add User"] = "Adăugaţi Utilizator"; +$a->strings["select all"] = "selectează tot"; +$a->strings["User registrations waiting for confirm"] = "Înregistrarea utilizatorului, aşteaptă confirmarea"; +$a->strings["User waiting for permanent deletion"] = "Utilizatorul așteaptă să fie șters definitiv"; +$a->strings["Request date"] = "Data cererii"; +$a->strings["Name"] = "Nume"; $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["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Conector Diaspora"; -$a->strings["Statusnet"] = "Statusnet"; -$a->strings["App.net"] = "App.net"; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s este acum prieten cu %2\$s"; -$a->strings["Sharing notification from Diaspora network"] = "Partajarea notificării din reţeaua Diaspora"; -$a->strings["Attachments:"] = "Atașări:"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nu apreciază %3\$s lui %2\$s"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s a abordat pe %2\$s"; -$a->strings["poked"] = "a fost abordat(ă)"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s este momentan %2\$s"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a etichetat %3\$s de la %2\$s cu %4\$s"; -$a->strings["post/item"] = "post/element"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s a marcat %3\$s de la %2\$s ca favorit"; -$a->strings["Select"] = "Select"; -$a->strings["Delete"] = "Şterge"; -$a->strings["View %s's profile @ %s"] = "Vizualizaţi profilul %s @ %s"; -$a->strings["Categories:"] = "Categorii:"; -$a->strings["Filed under:"] = "Înscris în:"; -$a->strings["%s from %s"] = "%s de la %s"; -$a->strings["View in context"] = "Vizualizare în context"; -$a->strings["Please wait"] = "Aşteptaţi vă rog"; -$a->strings["remove"] = "eliminare"; -$a->strings["Delete Selected Items"] = "Ștergeți Elementele Selectate"; -$a->strings["Follow Thread"] = "Urmăriți Firul Conversației"; -$a->strings["%s likes this."] = "%s apreciază aceasta."; -$a->strings["%s doesn't like this."] = "%s nu apreciază aceasta."; -$a->strings["%2\$d people like this"] = "%2\$d persoane apreciază aceasta"; -$a->strings["%2\$d people don't like this"] = "%2\$d persoanenu apreciază aceasta"; -$a->strings["and"] = "şi"; -$a->strings[", and %d other people"] = ", şi %d alte persoane"; -$a->strings["%s like this."] = "%s apreciază aceasta."; -$a->strings["%s don't like this."] = "%s nu apreciază aceasta."; -$a->strings["Visible to everybody"] = "Vizibil pentru toți"; -$a->strings["Please enter a link URL:"] = "Introduceţi un link URL:"; -$a->strings["Please enter a video link/URL:"] = "Vă rugăm să introduceți un URL/legătură pentru clip video"; -$a->strings["Please enter an audio link/URL:"] = "Vă rugăm să introduceți un URL/legătură pentru clip audio"; -$a->strings["Tag term:"] = "Termen etichetare:"; -$a->strings["Save to Folder:"] = "Salvare în Dosar:"; -$a->strings["Where are you right now?"] = "Unde vă aflați acum?"; -$a->strings["Delete item(s)?"] = "Ștergeți element(e)?"; -$a->strings["Post to Email"] = "Postați prin Email"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectorii au fost dezactivați, din moment ce \"%s\" este activat."; -$a->strings["Hide your profile details from unknown viewers?"] = "Ascundeţi detaliile profilului dvs. de vizitatorii necunoscuți?"; -$a->strings["Share"] = "Partajează"; +$a->strings["No registrations."] = "Nici-o înregistrare."; +$a->strings["Deny"] = "Respinge"; +$a->strings["Block"] = "Blochează"; +$a->strings["Unblock"] = "Deblochează"; +$a->strings["Site admin"] = "Site admin"; +$a->strings["Account expired"] = "Cont expirat"; +$a->strings["New User"] = "Utilizator Nou"; +$a->strings["Register date"] = "Data înregistrare"; +$a->strings["Last login"] = "Ultimul login"; +$a->strings["Last item"] = "Ultimul element"; +$a->strings["Deleted since"] = "Șters din"; +$a->strings["Account"] = "Cont"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Utilizatorii selectați vor fi ştersi!\\n\\nTot ce au postat acești utilizatori pe acest site, va fi şters permanent!\\n\\nConfirmați?"; +$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?"] = "Utilizatorul {0} va fi şters!\\n\\nTot ce a postat acest utilizator pe acest site, va fi şters permanent!\\n\\nConfirmați?"; +$a->strings["Name of the new user."] = "Numele noului utilizator."; +$a->strings["Nickname"] = "Pseudonim"; +$a->strings["Nickname of the new user."] = "Pseudonimul noului utilizator."; +$a->strings["Email address of the new user."] = "Adresa de e-mail a utilizatorului nou."; +$a->strings["Plugin %s disabled."] = "Modulul %s a fost dezactivat."; +$a->strings["Plugin %s enabled."] = "Modulul %s a fost activat."; +$a->strings["Disable"] = "Dezactivează"; +$a->strings["Enable"] = "Activează"; +$a->strings["Toggle"] = "Comutare"; +$a->strings["Settings"] = "Setări"; +$a->strings["Author: "] = "Autor: "; +$a->strings["Maintainer: "] = "Responsabil:"; +$a->strings["No themes found."] = "Nici-o temă găsită."; +$a->strings["Screenshot"] = "Screenshot"; +$a->strings["[Experimental]"] = "[Experimental]"; +$a->strings["[Unsupported]"] = "[Unsupported]"; +$a->strings["Log settings updated."] = "Jurnalul de configurări fost actualizat."; +$a->strings["Clear"] = "Curăţă"; +$a->strings["Enable Debugging"] = "Activează Depanarea"; +$a->strings["Log file"] = "Fişier Log "; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Trebuie să fie inscriptibil pentru serverul web. Relativ la directoul dvs. superior Friendica."; +$a->strings["Log level"] = "Nivel log"; +$a->strings["Update now"] = "Actualizează acum"; +$a->strings["Close"] = "Închide"; +$a->strings["FTP Host"] = "FTP Host"; +$a->strings["FTP Path"] = "FTP Path"; +$a->strings["FTP User"] = "FTP User"; +$a->strings["FTP Password"] = "FTP Parolă"; +$a->strings["New Message"] = "Mesaj nou"; +$a->strings["No recipient selected."] = "Nici-o adresă selectată."; +$a->strings["Unable to locate contact information."] = "Nu se pot localiza informaţiile de contact."; +$a->strings["Message could not be sent."] = "Mesajul nu a putut fi trimis."; +$a->strings["Message collection failure."] = "Eșec de colectare mesaj."; +$a->strings["Message sent."] = "Mesaj trimis."; +$a->strings["Messages"] = "Mesage"; +$a->strings["Do you really want to delete this message?"] = "Chiar doriţi să ştergeţi acest mesaj ?"; +$a->strings["Message deleted."] = "Mesaj şters"; +$a->strings["Conversation removed."] = "Conversaşie inlăturată."; +$a->strings["Please enter a link URL:"] = "Introduceţi un link URL:"; +$a->strings["Send Private Message"] = "Trimite mesaj privat"; +$a->strings["To:"] = "Către: "; +$a->strings["Subject:"] = "Subiect:"; +$a->strings["Your message:"] = "Mesajul dvs :"; $a->strings["Upload photo"] = "Încarcă foto"; +$a->strings["Insert web link"] = "Inserează link web"; +$a->strings["No messages."] = "Nici-un mesaj."; +$a->strings["Unknown sender - %s"] = "Expeditor necunoscut - %s"; +$a->strings["You and %s"] = "Tu şi %s"; +$a->strings["%s and You"] = "%s şi dvs"; +$a->strings["Delete conversation"] = "Ștergeți conversaţia"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d mesaj", + 1 => "%d mesaje", + 2 => "%d mesaje", +); +$a->strings["Message not available."] = "Mesaj nedisponibil"; +$a->strings["Delete message"] = "Şterge mesaj"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nici-o comunicaţie securizată disponibilă. Veți putea răspunde din pagina de profil a expeditorului."; +$a->strings["Send Reply"] = "Răspunde"; +$a->strings["Item not found"] = "Element negăsit"; +$a->strings["Edit post"] = "Editează post"; +$a->strings["Save"] = "Salvare"; $a->strings["upload photo"] = "încărcare fotografie"; $a->strings["Attach file"] = "Ataşează fişier"; $a->strings["attach file"] = "ataşează fişier"; -$a->strings["Insert web link"] = "Inserează link web"; $a->strings["web link"] = "web link"; $a->strings["Insert video link"] = "Inserează video link"; $a->strings["video link"] = "video link"; @@ -482,457 +453,177 @@ $a->strings["Set your location"] = "Setează locaţia dvs"; $a->strings["set location"] = "set locaţie"; $a->strings["Clear browser location"] = "Curățare locație browser"; $a->strings["clear location"] = "şterge locaţia"; -$a->strings["Set title"] = "Setează titlu"; -$a->strings["Categories (comma-separated list)"] = "Categorii (listă cu separator prin virgulă)"; $a->strings["Permission settings"] = "Setări permisiuni"; -$a->strings["permissions"] = "permisiuni"; $a->strings["CC: email addresses"] = "CC: adresă email"; $a->strings["Public post"] = "Public post"; +$a->strings["Set title"] = "Setează titlu"; +$a->strings["Categories (comma-separated list)"] = "Categorii (listă cu separator prin virgulă)"; $a->strings["Example: bob@example.com, mary@example.com"] = "Exemplu: bob@exemplu.com, mary@exemplu.com"; -$a->strings["Preview"] = "Previzualizare"; -$a->strings["Post to Groups"] = "Postați în Grupuri"; -$a->strings["Post to Contacts"] = "Post către Contacte"; -$a->strings["Private post"] = "Articol privat"; -$a->strings["newer"] = "mai noi"; -$a->strings["older"] = "mai vechi"; -$a->strings["prev"] = "preced"; -$a->strings["first"] = "prima"; -$a->strings["last"] = "ultima"; -$a->strings["next"] = "următor"; -$a->strings["No contacts"] = "Nici-un contact"; -$a->strings["%d Contact"] = array( - 0 => "%d Contact", - 1 => "%d Contacte", - 2 => "%d de Contacte", -); -$a->strings["View Contacts"] = "Vezi Contacte"; -$a->strings["Save"] = "Salvare"; -$a->strings["poke"] = "abordare"; -$a->strings["ping"] = "ping"; -$a->strings["pinged"] = "i s-a trimis ping"; -$a->strings["prod"] = "prod"; -$a->strings["prodded"] = "i s-a atras atenția"; -$a->strings["slap"] = "plesnire"; -$a->strings["slapped"] = "a fost plesnit(ă)"; -$a->strings["finger"] = "indicare"; -$a->strings["fingered"] = "a fost indicat(ă)"; -$a->strings["rebuff"] = "respingere"; -$a->strings["rebuffed"] = "a fost respins(ă)"; -$a->strings["happy"] = "fericit(ă)"; -$a->strings["sad"] = "trist(ă)"; -$a->strings["mellow"] = "trist(ă)"; -$a->strings["tired"] = "obosit(ă)"; -$a->strings["perky"] = "arogant(ă)"; -$a->strings["angry"] = "supărat(ă)"; -$a->strings["stupified"] = "stupefiat(ă)"; -$a->strings["puzzled"] = "nedumerit(ă)"; -$a->strings["interested"] = "interesat(ă)"; -$a->strings["bitter"] = "amarnic"; -$a->strings["cheerful"] = "vesel(ă)"; -$a->strings["alive"] = "plin(ă) de viață"; -$a->strings["annoyed"] = "enervat(ă)"; -$a->strings["anxious"] = "neliniştit(ă)"; -$a->strings["cranky"] = "irascibil(ă)"; -$a->strings["disturbed"] = "perturbat(ă)"; -$a->strings["frustrated"] = "frustrat(ă)"; -$a->strings["motivated"] = "motivat(ă)"; -$a->strings["relaxed"] = "relaxat(ă)"; -$a->strings["surprised"] = "surprins(ă)"; -$a->strings["Monday"] = "Luni"; -$a->strings["Tuesday"] = "Marţi"; -$a->strings["Wednesday"] = "Miercuri"; -$a->strings["Thursday"] = "Joi"; -$a->strings["Friday"] = "Vineri"; -$a->strings["Saturday"] = "Sâmbătă"; -$a->strings["Sunday"] = "Duminică"; -$a->strings["January"] = "Ianuarie"; -$a->strings["February"] = "Februarie"; -$a->strings["March"] = "Martie"; -$a->strings["April"] = "Aprilie"; -$a->strings["May"] = "Mai"; -$a->strings["June"] = "Iunie"; -$a->strings["July"] = "Iulie"; -$a->strings["August"] = "August"; -$a->strings["September"] = "Septembrie"; -$a->strings["October"] = "Octombrie"; -$a->strings["November"] = "Noiembrie"; -$a->strings["December"] = "Decembrie"; -$a->strings["View Video"] = "Vizualizați Clipul Video"; -$a->strings["bytes"] = "octeţi"; -$a->strings["Click to open/close"] = "Apăsați pentru a deschide/închide"; +$a->strings["Profile not found."] = "Profil negăsit."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Aceasta se poate întâmpla ocazional dacă contactul a fost solicitat de către ambele persoane şi acesta a fost deja aprobat."; +$a->strings["Response from remote site was not understood."] = "Răspunsul de la adresa de la distanţă, nu a fost înțeles."; +$a->strings["Unexpected response from remote site: "] = "Răspuns neaşteptat de la site-ul de la distanţă:"; +$a->strings["Confirmation completed successfully."] = "Confirmare încheiată cu succes."; +$a->strings["Remote site reported: "] = "Site-ul de la distanţă a raportat:"; +$a->strings["Temporary failure. Please wait and try again."] = "Eroare Temporară. Vă rugăm să aşteptaţi şi încercaţi din nou."; +$a->strings["Introduction failed or was revoked."] = "Introducerea a eşuat sau a fost revocată."; +$a->strings["Unable to set contact photo."] = "Imposibil de stabilit fotografia de contact."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s este acum prieten cu %2\$s"; +$a->strings["No user record found for '%s' "] = "Nici-o înregistrare de utilizator găsită pentru '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "Se pare că, cheia de criptare a site-ului nostru s-a încurcat."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "A fost furnizată o adresă URL goală, sau adresa URL nu poate fi decriptată de noi."; +$a->strings["Contact record was not found for you on our site."] = "Registrul contactului nu a fost găsit pe site-ul nostru."; +$a->strings["Site public key not available in contact record for URL %s."] = "Cheia publică a site-ului nu este disponibilă în registrul contactului pentru URL-ul %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID-ul furnizat de către sistemul dumneavoastră este un duplicat pe sistemul nostru. Ar trebui să funcţioneze dacă încercaţi din nou."; +$a->strings["Unable to set your contact credentials on our system."] = "Imposibil de configurat datele dvs. de autentificare, pe sistemul nostru."; +$a->strings["Unable to update your contact profile details on our system"] = "Imposibil de actualizat detaliile de profil ale contactului dvs., pe sistemul nostru."; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s s-a alăturat lui %2\$s"; +$a->strings["Event title and start time are required."] = "Titlul evenimentului şi timpul de pornire sunt necesare."; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Editează eveniment"; $a->strings["link to source"] = "link către sursă"; -$a->strings["default"] = "implicit"; -$a->strings["Select an alternate language"] = "Selectați o limbă alternativă"; -$a->strings["activity"] = "activitate"; -$a->strings["comment"] = array( - 0 => "comentariu", - 1 => "comentarii", - 2 => "comentarii", -); -$a->strings["post"] = "postare"; -$a->strings["Item filed"] = "Element îndosariat"; -$a->strings["Logged out."] = "Deconectat."; -$a->strings["Login failed."] = "Eşec la conectare"; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Am întâmpinat o problemă în timpul autentificării cu datele OpenID pe care le-ați furnizat."; -$a->strings["The error message was:"] = "Mesajul de eroare a fost:"; -$a->strings["Image/photo"] = "Imagine/fotografie"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["%s wrote the following post"] = "%s a scris următoarea postare"; -$a->strings["$1 wrote:"] = "$1 a scris:"; -$a->strings["Encrypted content"] = "Conţinut criptat"; -$a->strings["Welcome "] = "Bine ați venit"; -$a->strings["Please upload a profile photo."] = "Vă rugăm să încărcaţi o fotografie de profil."; -$a->strings["Welcome back "] = "Bine ați revenit"; -$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."] = "Formarea codului de securitate, nu a fost corectă. Aceasta probabil s-a întâmplat pentru că formularul a fost deschis pentru prea mult timp ( >3 ore) înainte de a-l transmite."; -$a->strings["Embedded content"] = "Conţinut încorporat"; -$a->strings["Embedding disabled"] = "Încorporarea conținuturilor este dezactivată"; -$a->strings["Male"] = "Bărbat"; -$a->strings["Female"] = "Femeie"; -$a->strings["Currently Male"] = "În prezent Bărbat"; -$a->strings["Currently Female"] = "În prezent Femeie"; -$a->strings["Mostly Male"] = "Mai mult Bărbat"; -$a->strings["Mostly Female"] = "Mai mult Femeie"; -$a->strings["Transgender"] = "Transsexual"; -$a->strings["Intersex"] = "Intersexual"; -$a->strings["Transsexual"] = "Transsexual"; -$a->strings["Hermaphrodite"] = "Hermafrodit"; -$a->strings["Neuter"] = "Neutru"; -$a->strings["Non-specific"] = "Non-specific"; -$a->strings["Other"] = "Alta"; -$a->strings["Undecided"] = "Indecisă"; -$a->strings["Males"] = "Bărbați"; -$a->strings["Females"] = "Femei"; -$a->strings["Gay"] = "Gay"; -$a->strings["Lesbian"] = "Lesbiană"; -$a->strings["No Preference"] = "Fără Preferințe"; -$a->strings["Bisexual"] = "Bisexual"; -$a->strings["Autosexual"] = "Autosexual"; -$a->strings["Abstinent"] = "Abstinent(ă)"; -$a->strings["Virgin"] = "Virgin(ă)"; -$a->strings["Deviant"] = "Deviant"; -$a->strings["Fetish"] = "Fetish"; -$a->strings["Oodles"] = "La grămadă"; -$a->strings["Nonsexual"] = "Nonsexual"; -$a->strings["Single"] = "Necăsătorit(ă)"; -$a->strings["Lonely"] = "Singur(ă)"; -$a->strings["Available"] = "Disponibil(ă)"; -$a->strings["Unavailable"] = "Indisponibil(ă)"; -$a->strings["Has crush"] = "Îndrăgostit(ă)"; -$a->strings["Infatuated"] = "Îndrăgostit(ă) nebunește"; -$a->strings["Dating"] = "Am întâlniri"; -$a->strings["Unfaithful"] = "Infidel(ă)"; -$a->strings["Sex Addict"] = "Dependent(ă) de Sex"; -$a->strings["Friends"] = "Prieteni"; -$a->strings["Friends/Benefits"] = "Prietenii/Prestaţii"; -$a->strings["Casual"] = "Ocazional"; -$a->strings["Engaged"] = "Cuplat"; -$a->strings["Married"] = "Căsătorit(ă)"; -$a->strings["Imaginarily married"] = "Căsătorit(ă) imaginar"; -$a->strings["Partners"] = "Parteneri"; -$a->strings["Cohabiting"] = "În conviețuire"; -$a->strings["Common law"] = "Drept Comun"; -$a->strings["Happy"] = "Fericit(ă)"; -$a->strings["Not looking"] = "Nu caut"; -$a->strings["Swinger"] = "Swinger"; -$a->strings["Betrayed"] = "Înșelat(ă)"; -$a->strings["Separated"] = "Separat(ă)"; -$a->strings["Unstable"] = "Instabil(ă)"; -$a->strings["Divorced"] = "Divorţat(ă)"; -$a->strings["Imaginarily divorced"] = "Divorţat(ă) imaginar"; -$a->strings["Widowed"] = "Văduv(ă)"; -$a->strings["Uncertain"] = "Incert"; -$a->strings["It's complicated"] = "E complicat"; -$a->strings["Don't care"] = "Nu-mi pasă"; -$a->strings["Ask me"] = "Întreabă-mă"; -$a->strings["An invitation is required."] = "O invitaţie este necesară."; -$a->strings["Invitation could not be verified."] = "Invitația nu s-a putut verifica."; -$a->strings["Invalid OpenID url"] = "URL OpenID invalid"; -$a->strings["Please enter the required information."] = "Vă rugăm să introduceți informațiile solicitate."; -$a->strings["Please use a shorter name."] = "Vă rugăm să utilizaţi un nume mai scurt."; -$a->strings["Name too short."] = "Numele este prea scurt."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Acesta nu pare a fi Numele (Prenumele) dvs. complet"; -$a->strings["Your email domain is not among those allowed on this site."] = "Domeniul dvs. de email nu este printre cele permise pe acest site."; -$a->strings["Not a valid email address."] = "Nu este o adresă vaildă de email."; -$a->strings["Cannot use that email."] = "Nu se poate utiliza acest email."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = " \"Pseudonimul\" dvs. poate conţine numai \"a-z\", \"0-9\", \"-\",, şi \"_\", şi trebuie de asemenea să înceapă cu o literă."; -$a->strings["Nickname is already registered. Please choose another."] = "Pseudonimul este deja înregistrat. Vă rugăm, alegeți un altul."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Pseudonimul a fost înregistrat aici, şi e posibil să nu mai poată fi reutilizat. Vă rugăm, alegeți altul."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "EROARE GRAVĂ: Generarea de chei de securitate a eşuat."; -$a->strings["An error occurred during registration. Please try again."] = "A intervenit o eroare în timpul înregistrării. Vă rugăm să reîncercați."; -$a->strings["An error occurred creating your default profile. Please try again."] = "A intervenit o eroare la crearea profilului dvs. implicit. Vă rugăm să reîncercați."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5$\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = ""; -$a->strings["Registration details for %s"] = "Detaliile de înregistrare pentru %s"; -$a->strings["Visible to everybody"] = "Vizibil pentru toata lumea"; -$a->strings["This entry was edited"] = "Această intrare a fost editată"; -$a->strings["Private Message"] = " Mesaj Privat"; -$a->strings["Edit"] = "Edit"; -$a->strings["save to folder"] = "salvează în directorul"; -$a->strings["add star"] = "add stea"; -$a->strings["remove star"] = "înlătură stea"; -$a->strings["toggle star status"] = "comută status steluță"; -$a->strings["starred"] = "cu steluță"; -$a->strings["ignore thread"] = ""; -$a->strings["unignore thread"] = ""; -$a->strings["toggle ignore status"] = ""; -$a->strings["ignored"] = "ignorat"; -$a->strings["add tag"] = "add tag"; -$a->strings["I like this (toggle)"] = "I like asta (toggle)"; -$a->strings["like"] = "like"; -$a->strings["I don't like this (toggle)"] = "nu îmi place aceasta (comutare)"; -$a->strings["dislike"] = "dislike"; -$a->strings["Share this"] = "Partajează"; -$a->strings["share"] = "partajează"; -$a->strings["to"] = "către"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Perete-prin-Perete"; -$a->strings["via Wall-To-Wall:"] = "via Perete-Prin-Perete"; -$a->strings["%d comment"] = array( - 0 => "%d comentariu", - 1 => "%d comentarii", - 2 => "%d comentarii", -); -$a->strings["This is you"] = "Acesta eşti tu"; -$a->strings["Bold"] = "Bold"; -$a->strings["Italic"] = "Italic"; -$a->strings["Underline"] = "Subliniat"; -$a->strings["Quote"] = "Citat"; -$a->strings["Code"] = "Code"; -$a->strings["Image"] = "Imagine"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Item not available."] = "Elementul nu este disponibil."; -$a->strings["Item was not found."] = "Element negăsit."; +$a->strings["Events"] = "Evenimente"; +$a->strings["Create New Event"] = "Crează eveniment nou"; +$a->strings["Previous"] = "Precedent"; +$a->strings["Next"] = "Next"; +$a->strings["hour:minute"] = "ore:minute"; +$a->strings["Event details"] = "Detalii eveniment"; +$a->strings["Format is %s %s. Starting date and Title are required."] = "Formatul este %s %s.Data de începere și Titlul sunt necesare."; +$a->strings["Event Starts:"] = "Evenimentul Începe:"; +$a->strings["Required"] = "Cerut"; +$a->strings["Finish date/time is not known or not relevant"] = "Data/ora de finalizare nu este cunoscută sau nu este relevantă"; +$a->strings["Event Finishes:"] = "Evenimentul se Finalizează:"; +$a->strings["Adjust for viewer timezone"] = "Reglați pentru fusul orar al vizitatorului"; +$a->strings["Description:"] = "Descriere:"; +$a->strings["Location:"] = "Locaţie:"; +$a->strings["Title:"] = "Titlu:"; +$a->strings["Share this event"] = "Partajează acest eveniment"; +$a->strings["Photos"] = "Poze"; +$a->strings["Files"] = "Fişiere"; +$a->strings["Welcome to %s"] = "Bine aţi venit la %s"; +$a->strings["Remote privacy information not available."] = "Informaţiile la distanţă despre confidenţialitate, nu sunt disponibile."; +$a->strings["Visible to:"] = "Visibil către:"; $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numărul de mesaje, zilnice de perete, pentru %s a fost depăşit. Mesajul a eşuat."; -$a->strings["No recipient selected."] = "Nici-o adresă selectată."; $a->strings["Unable to check your home location."] = "Imposibil de verificat locaţia dvs. de reşedinţă."; -$a->strings["Message could not be sent."] = "Mesajul nu a putut fi trimis."; -$a->strings["Message collection failure."] = "Eșec de colectare mesaj."; -$a->strings["Message sent."] = "Mesaj trimis."; $a->strings["No recipient."] = "Nici-un destinatar."; -$a->strings["Send Private Message"] = "Trimite mesaj privat"; $a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Dacă doriţi ca %s să vă răspundă, vă rugăm să verificaţi dacă configurările de confidenţialitate de pe site-ul dumneavoastră, permite mail-uri private de la expeditori necunoscuți."; -$a->strings["To:"] = "Către: "; -$a->strings["Subject:"] = "Subiect:"; -$a->strings["Your message:"] = "Mesajul dvs :"; -$a->strings["Group created."] = "Grupul a fost creat."; -$a->strings["Could not create group."] = "Grupul nu se poate crea."; -$a->strings["Group not found."] = "Grupul nu a fost găsit."; -$a->strings["Group name changed."] = "Numele grupului a fost schimbat."; -$a->strings["Save Group"] = "Salvare Grup"; -$a->strings["Create a group of contacts/friends."] = "Creaţi un grup de contacte/prieteni."; -$a->strings["Group Name: "] = "Nume Grup:"; -$a->strings["Group removed."] = "Grupul a fost eliminat."; -$a->strings["Unable to remove group."] = "Nu se poate elimina grupul."; -$a->strings["Group Editor"] = "Editor Grup"; -$a->strings["Members"] = "Membri"; -$a->strings["All Contacts"] = "Toate Contactele"; -$a->strings["Click on a contact to add or remove."] = "Apăsați pe un contact pentru a-l adăuga sau elimina."; -$a->strings["No potential page delegates located."] = "Nici-un delegat potenţial de pagină, nu a putut fi localizat."; -$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."] = "Delegații sunt capabili să gestioneze toate aspectele acestui cont/pagină, cu excepţia configurărilor de bază ale contului. Vă rugăm să nu vă delegați, contul dvs. personal, cuiva în care nu aveţi încredere deplină."; -$a->strings["Existing Page Managers"] = "Gestionari Existenți Pagină"; -$a->strings["Existing Page Delegates"] = "Delegați Existenți Pagină"; -$a->strings["Potential Delegates"] = "Potenţiali Delegaţi"; -$a->strings["Remove"] = "Eliminare"; -$a->strings["Add"] = "Adăugare"; -$a->strings["No entries."] = "Nu există intrări."; -$a->strings["Invalid request identifier."] = "Datele de identificare solicitate, sunt invalide."; -$a->strings["Discard"] = "Renunțați"; -$a->strings["Ignore"] = "Ignoră"; -$a->strings["System"] = "System"; -$a->strings["Personal"] = "Personal"; -$a->strings["Show Ignored Requests"] = "Afişare Solicitări Ignorate"; -$a->strings["Hide Ignored Requests"] = "Ascundere Solicitări Ignorate"; -$a->strings["Notification type: "] = "Tip Notificări:"; -$a->strings["Friend Suggestion"] = "Sugestie Prietenie"; -$a->strings["suggested by %s"] = "sugerat de către %s"; -$a->strings["Hide this contact from others"] = "Ascunde acest contact pentru alţii"; -$a->strings["Post a new friend activity"] = "Publicaţi prietenului o nouă activitate"; -$a->strings["if applicable"] = "dacă i posibil"; -$a->strings["Approve"] = "Aprobă"; -$a->strings["Claims to be known to you: "] = "Pretinde că vă cunoaște:"; -$a->strings["yes"] = "da"; -$a->strings["no"] = "nu"; -$a->strings["Approve as: "] = "Aprobă ca:"; -$a->strings["Friend"] = "Prieten"; -$a->strings["Sharer"] = "Distribuitor"; -$a->strings["Fan/Admirer"] = "Fan/Admirator"; -$a->strings["Friend/Connect Request"] = "Prieten/Solicitare de Conectare"; -$a->strings["New Follower"] = "Susţinător Nou"; -$a->strings["No introductions."] = "Fără prezentări."; -$a->strings["%s liked %s's post"] = "%s a apreciat ceea a publicat %s"; -$a->strings["%s disliked %s's post"] = "%s a nu a apreciat ceea a publicat %s"; -$a->strings["%s is now friends with %s"] = "%s este acum prieten cu %s"; -$a->strings["%s created a new post"] = "%s a creat o nouă postare"; -$a->strings["%s commented on %s's post"] = "%s a comentat la articolul postat de %s"; -$a->strings["No more network notifications."] = "Nu mai există notificări de reţea."; -$a->strings["Network Notifications"] = "Notificări de Reţea"; -$a->strings["No more system notifications."] = "Nu mai există notificări de sistem."; -$a->strings["System Notifications"] = "Notificări de Sistem"; -$a->strings["No more personal notifications."] = "Nici o notificare personală"; -$a->strings["Personal Notifications"] = "Notificări personale"; -$a->strings["No more home notifications."] = "Nu mai există notificări de origine."; -$a->strings["Home Notifications"] = "Notificări de Origine"; -$a->strings["No profile"] = "Niciun profil"; +$a->strings["Visit %s's profile [%s]"] = "Vizitați profilul %s [%s]"; +$a->strings["Edit contact"] = "Editează contact"; +$a->strings["Contacts who are not members of a group"] = "Contactele care nu sunt membre ale unui grup"; +$a->strings["This is Friendica, version"] = "Friendica, versiunea"; +$a->strings["running at web location"] = "rulează la locaţia web"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Vă rugăm să vizitaţi Friendica.com pentru a afla mai multe despre proiectul Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Rapoarte de erori şi probleme: vă rugăm să vizitaţi"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestii, laude, donatii, etc. - vă rugăm să trimiteți un email pe \"Info\" at Friendica - dot com"; +$a->strings["Installed plugins/addons/apps:"] = "Module/suplimente/aplicații instalate:"; +$a->strings["No installed plugins/addons/apps"] = "Module/suplimente/aplicații neinstalate"; +$a->strings["Remove My Account"] = "Șterge Contul Meu"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Aceasta va elimina complet contul dvs. Odată ce a fostă, această acțiune este nerecuperabilă."; +$a->strings["Please enter your password for verification:"] = "Vă rugăm să introduceţi parola dvs. pentru verificare:"; +$a->strings["Image exceeds size limit of %d"] = "Dimensiunea imaginii depăşeşte limita de %d"; +$a->strings["Unable to process image."] = "Nu s-a putut procesa imaginea."; +$a->strings["Wall Photos"] = "Fotografii de Perete"; +$a->strings["Image upload failed."] = "Încărcarea imaginii a eşuat."; +$a->strings["Authorize application connection"] = "Autorizare conectare aplicaţie"; +$a->strings["Return to your app and insert this Securty Code:"] = "Reveniți la aplicația dvs. şi introduceţi acest Cod de Securitate:"; +$a->strings["Please login to continue."] = "Vă rugăm să vă autentificați pentru a continua."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Doriţi să autorizați această aplicaţie pentru a vă accesa postările şi contactele, şi/sau crea noi postări pentru dvs.?"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a etichetat %3\$s de la %2\$s cu %4\$s"; +$a->strings["Photo Albums"] = "Albume Photo "; +$a->strings["Contact Photos"] = "Photo Contact"; +$a->strings["Upload New Photos"] = "Încărcaţi Fotografii Noi"; $a->strings["everybody"] = "oricine"; -$a->strings["Account"] = "Cont"; -$a->strings["Additional features"] = "Caracteristici suplimentare"; -$a->strings["Display"] = "Afișare"; -$a->strings["Social Networks"] = "Rețele Sociale"; -$a->strings["Plugins"] = "Pluginuri"; -$a->strings["Connected apps"] = "Aplicații Conectate"; -$a->strings["Export personal data"] = "Exportare date personale"; -$a->strings["Remove account"] = "Ștergere cont"; -$a->strings["Missing some important data!"] = "Lipsesc unele date importante!"; -$a->strings["Update"] = "Actualizare"; -$a->strings["Failed to connect with email account using the settings provided."] = "A eşuat conectarea cu, contul de email, folosind configurările furnizate."; -$a->strings["Email settings updated."] = "Configurările de email au fost actualizate."; -$a->strings["Features updated"] = "Caracteristici actualizate"; -$a->strings["Relocate message has been send to your contacts"] = "Mesajul despre mutare, a fost trimis către contactele dvs."; -$a->strings["Passwords do not match. Password unchanged."] = "Parolele nu coincid. Parolă neschimbată."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Parolele necompletate nu sunt permise. Parolă neschimbată."; -$a->strings["Wrong password."] = "Parolă greșită."; -$a->strings["Password changed."] = "Parola a fost schimbată."; -$a->strings["Password update failed. Please try again."] = "Actualizarea parolei a eșuat. Vă rugăm să reîncercați."; -$a->strings[" Please use a shorter name."] = "Vă rugăm să utilizaţi un nume mai scurt."; -$a->strings[" Name too short."] = "Numele este prea scurt."; -$a->strings["Wrong Password"] = "Parolă Greșită"; -$a->strings[" Not valid email."] = "Nu este un email valid."; -$a->strings[" Cannot change to that email."] = "Nu poate schimba cu acest email."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Forumul privat nu are permisiuni de confidenţialitate. Se folosește confidențialitatea implicită de grup."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Forumul Privat nu are permisiuni de confidenţialitate şi nici o confidențialitate implicită de grup."; -$a->strings["Settings updated."] = "Configurări actualizate."; -$a->strings["Add application"] = "Adăugare aplicaţie"; -$a->strings["Save Settings"] = "Salvare Configurări"; -$a->strings["Name"] = "Nume"; -$a->strings["Consumer Key"] = "Cheia Utilizatorului"; -$a->strings["Consumer Secret"] = "Cheia Secretă a Utilizatorului"; -$a->strings["Redirect"] = "Redirecţionare"; -$a->strings["Icon url"] = "URL pictogramă"; -$a->strings["You can't edit this application."] = "Nu puteți edita această aplicaţie."; -$a->strings["Connected Apps"] = "Aplicații Conectate"; -$a->strings["Client key starts with"] = "Cheia clientului începe cu"; -$a->strings["No name"] = "Fără nume"; -$a->strings["Remove authorization"] = "Eliminare autorizare"; -$a->strings["No Plugin settings configured"] = "Nici-o configurare stabilită pentru modul"; -$a->strings["Plugin Settings"] = "Configurări Modul"; -$a->strings["Off"] = "Off"; -$a->strings["On"] = "On"; -$a->strings["Additional Features"] = "Caracteristici Suplimentare"; -$a->strings["Built-in support for %s connectivity is %s"] = "Suportul încorporat pentru conectivitatea %s este %s"; -$a->strings["enabled"] = "activat"; -$a->strings["disabled"] = "dezactivat"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Email access is disabled on this site."] = "Accesul de email este dezactivat pe acest site."; -$a->strings["Email/Mailbox Setup"] = "Configurare E-Mail/Căsuță poştală"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Dacă doriţi să comunicaţi cu contactele de email folosind acest serviciu (opţional), vă rugăm să precizaţi cum doriți să vă conectaţi la căsuța dvs. poştală."; -$a->strings["Last successful email check:"] = "Ultima verificare, cu succes, a email-ului:"; -$a->strings["IMAP server name:"] = "Nume server IMAP:"; -$a->strings["IMAP port:"] = "IMAP port:"; -$a->strings["Security:"] = "Securitate:"; -$a->strings["None"] = "Nimic"; -$a->strings["Email login name:"] = "Nume email autentificare:"; -$a->strings["Email password:"] = "Parolă de e-mail:"; -$a->strings["Reply-to address:"] = "Adresă pentru răspuns:"; -$a->strings["Send public posts to all email contacts:"] = "Trimiteți postările publice la toate contactele de email:"; -$a->strings["Action after import:"] = "Acţiune după importare:"; -$a->strings["Mark as seen"] = "Marcați ca și vizualizat"; -$a->strings["Move to folder"] = "Mutare în dosar"; -$a->strings["Move to folder:"] = "Mutare în dosarul:"; -$a->strings["No special theme for mobile devices"] = "Nici-o temă specială pentru dispozitive mobile"; -$a->strings["Display Settings"] = "Preferințe Ecran"; -$a->strings["Display Theme:"] = "Temă Afişaj:"; -$a->strings["Mobile Theme:"] = "Temă pentru Mobile:"; -$a->strings["Update browser every xx seconds"] = "Actualizare browser la fiecare fiecare xx secunde"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minim 10 secunde, fără un maxim"; -$a->strings["Number of items to display per page:"] = "Numărul de elemente de afişat pe pagină:"; -$a->strings["Maximum of 100 items"] = "Maxim 100 de elemente"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Numărul de elemente de afişat pe pagină atunci când se vizualizează de pe dispozitivul mobil:"; -$a->strings["Don't show emoticons"] = "Nu afișa emoticoane"; -$a->strings["Don't show notices"] = "Nu afișa notificări"; -$a->strings["Infinite scroll"] = "Derulare infinită"; -$a->strings["Automatic updates only at the top of the network page"] = "Actualizări automate doar la partea superioară a paginii de rețea "; -$a->strings["User Types"] = "Tipuri de Utilizator"; -$a->strings["Community Types"] = "Tipuri de Comunitare"; -$a->strings["Normal Account Page"] = "Pagină de Cont Simplu"; -$a->strings["This account is a normal personal profile"] = "Acest cont este un profil personal normal"; -$a->strings["Soapbox Page"] = "Pagină Soapbox"; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Aprobă automat toate conexiunile/solicitările de prietenie ca și fani cu drepturi doar pentru vizualizare"; -$a->strings["Community Forum/Celebrity Account"] = "Cont Comunitate Forum/Celebritate"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Aprobă automat toate conexiunile/solicitările de prietenie ca și fani cu drepturi doar pentru vizualizare"; -$a->strings["Automatic Friend Page"] = "Pagină Prietenie Automată"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Aprobă automat toate conexiunile/solicitările de prietenie ca și prieteni"; -$a->strings["Private Forum [Experimental]"] = "Forum Privat [Experimental]"; -$a->strings["Private forum - approved members only"] = "Forum Privat - numai membrii aprobați"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opţional) Permite acest OpenID să se conecteze la acest cont."; -$a->strings["Publish your default profile in your local site directory?"] = "Publicați profilul dvs. implicit în directorul site-ului dvs. local?"; -$a->strings["No"] = "NU"; -$a->strings["Publish your default profile in the global social directory?"] = "Publicați profilul dvs. implicit în directorul social global?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ascundeţi lista dvs. de contacte/prieteni de vizitatorii profilului dvs. implicit?"; -$a->strings["Allow friends to post to your profile page?"] = "Permiteți prietenilor să posteze pe pagina dvs. de profil ?"; -$a->strings["Allow friends to tag your posts?"] = "Permiteți prietenilor să vă eticheteze postările?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Ne permiteți să vă recomandăm ca și potențial prieten pentru membrii noi?"; -$a->strings["Permit unknown people to send you private mail?"] = "Permiteți persoanelor necunoscute să vă trimită mesaje private?"; -$a->strings["Profile is not published."] = "Profilul nu este publicat."; -$a->strings["or"] = "sau"; -$a->strings["Your Identity Address is"] = "Adresa Dvs. de Identitate este"; -$a->strings["Automatically expire posts after this many days:"] = "Postările vor expira automat după atâtea zile:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Dacă se lasă necompletat, postările nu vor expira. Postările expirate vor fi şterse"; -$a->strings["Advanced expiration settings"] = "Configurări Avansate de Expirare"; -$a->strings["Advanced Expiration"] = "Expirare Avansată"; -$a->strings["Expire posts:"] = "Postările expiră:"; -$a->strings["Expire personal notes:"] = "Notele personale expiră:"; -$a->strings["Expire starred posts:"] = "Postările favorite expiră:"; -$a->strings["Expire photos:"] = "Fotografiile expiră:"; -$a->strings["Only expire posts by others:"] = "Expiră numai postările altora:"; -$a->strings["Account Settings"] = "Configurări Cont"; -$a->strings["Password Settings"] = "Configurări Parolă"; -$a->strings["New Password:"] = "Parola Nouă:"; -$a->strings["Confirm:"] = "Confirm:"; -$a->strings["Leave password fields blank unless changing"] = "Lăsaţi câmpurile, pentru parolă, goale dacă nu doriți să modificați"; -$a->strings["Current Password:"] = "Parola Curentă:"; -$a->strings["Your current password to confirm the changes"] = "Parola curentă pentru a confirma modificările"; -$a->strings["Password:"] = "Parola:"; -$a->strings["Basic Settings"] = "Configurări de Bază"; -$a->strings["Email Address:"] = "Adresa de email:"; -$a->strings["Your Timezone:"] = "Fusul dvs. orar:"; -$a->strings["Default Post Location:"] = "Locația Implicită pentru Postări"; -$a->strings["Use Browser Location:"] = "Folosește Locația Navigatorului:"; -$a->strings["Security and Privacy Settings"] = "Configurări de Securitate și Confidențialitate"; -$a->strings["Maximum Friend Requests/Day:"] = "Solicitări de Prietenie, Maxime/Zi"; -$a->strings["(to prevent spam abuse)"] = "(Pentru a preveni abuzul de tip spam)"; -$a->strings["Default Post Permissions"] = "Permisiuni Implicite Postări"; -$a->strings["(click to open/close)"] = "(apăsați pentru a deschide/închide)"; +$a->strings["Contact information unavailable"] = "Informaţii contact nedisponibile"; +$a->strings["Profile Photos"] = "Poze profil"; +$a->strings["Album not found."] = "Album negăsit"; +$a->strings["Delete Album"] = "Şterge Album"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Doriţi într-adevăr să ştergeţi acest album foto și toate fotografiile sale?"; +$a->strings["Delete Photo"] = "Şterge Poza"; +$a->strings["Do you really want to delete this photo?"] = "Sigur doriți să ștergeți această fotografie?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s a fost etichetat în %2\$s de către %3\$s"; +$a->strings["a photo"] = "o poză"; +$a->strings["Image exceeds size limit of "] = "Dimensiunea imaginii depăşeşte limita de"; +$a->strings["Image file is empty."] = "Fișierul imagine este gol."; +$a->strings["No photos selected"] = "Nici-o fotografie selectată"; +$a->strings["Access to this item is restricted."] = "Accesul la acest element este restricționat."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Aţi folosit %1$.2f Mb din %2$.2f Mb de stocare foto."; +$a->strings["Upload Photos"] = "Încărcare Fotografii"; +$a->strings["New album name: "] = "Nume album nou:"; +$a->strings["or existing album name: "] = "sau numele unui album existent:"; +$a->strings["Do not show a status post for this upload"] = "Nu afișa un status pentru această încărcare"; +$a->strings["Permissions"] = "Permisiuni"; $a->strings["Show to Groups"] = "Afișare pentru Grupuri"; $a->strings["Show to Contacts"] = "Afişează la Contacte"; -$a->strings["Default Private Post"] = "Postare Privată Implicită"; -$a->strings["Default Public Post"] = "Postare Privată Implicită"; -$a->strings["Default Permissions for New Posts"] = "Permisiuni Implicite pentru Postările Noi"; -$a->strings["Maximum private messages per day from unknown people:"] = "Maximum de mesaje private pe zi, de la persoanele necunoscute:"; -$a->strings["Notification Settings"] = "Configurări de Notificare"; -$a->strings["By default post a status message when:"] = "Implicit, postează un mesaj de stare atunci când:"; -$a->strings["accepting a friend request"] = "se acceptă o solicitare de prietenie"; -$a->strings["joining a forum/community"] = "se aderă la un forum/o comunitate"; -$a->strings["making an interesting profile change"] = "se face o modificări de profilinteresantă"; -$a->strings["Send a notification email when:"] = "Trimiteți o notificare email atunci când:"; -$a->strings["You receive an introduction"] = "Primiți o introducere"; -$a->strings["Your introductions are confirmed"] = "Introducerile dvs. sunt confirmate"; -$a->strings["Someone writes on your profile wall"] = "Cineva scrie pe perete dvs. de profil"; -$a->strings["Someone writes a followup comment"] = "Cineva scrie un comentariu de urmărire"; -$a->strings["You receive a private message"] = "Primiți un mesaj privat"; -$a->strings["You receive a friend suggestion"] = "Primiți o sugestie de prietenie"; -$a->strings["You are tagged in a post"] = "Sunteți etichetat într-o postare"; -$a->strings["You are poked/prodded/etc. in a post"] = "Sunteți abordat/incitat/etc. într-o postare"; -$a->strings["Advanced Account/Page Type Settings"] = "Configurări Avansate Cont/Tip Pagină"; -$a->strings["Change the behaviour of this account for special situations"] = "Modificați comportamentul acestui cont pentru situațiile speciale"; -$a->strings["Relocate"] = "Mutare"; -$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Dacă aţi mutat acest profil dintr-un alt server, şi unele dintre contactele dvs. nu primesc actualizările dvs., încercaţi să apăsați acest buton."; -$a->strings["Resend relocate message to contacts"] = "Retrimiteți contactelor, mesajul despre mutare"; -$a->strings["Common Friends"] = "Prieteni Comuni"; -$a->strings["No contacts in common."] = "Nici-un contact în comun"; -$a->strings["Remote privacy information not available."] = "Informaţiile la distanţă despre confidenţialitate, nu sunt disponibile."; -$a->strings["Visible to:"] = "Visibil către:"; +$a->strings["Private Photo"] = "Poze private"; +$a->strings["Public Photo"] = "Poze Publice"; +$a->strings["Edit Album"] = "Editează Album"; +$a->strings["Show Newest First"] = "Afișează Întâi cele Noi"; +$a->strings["Show Oldest First"] = "Afișează Întâi cele Vechi"; +$a->strings["View Photo"] = "Vizualizare Fotografie"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permisiune refuzată. Accesul la acest element poate fi restricționat."; +$a->strings["Photo not available"] = "Fotografia nu este disponibilă"; +$a->strings["View photo"] = "Vezi foto"; +$a->strings["Edit photo"] = "Editează poza"; +$a->strings["Use as profile photo"] = "Utilizați ca și fotografie de profil"; +$a->strings["View Full Size"] = "Vizualizați la Dimensiunea Completă"; +$a->strings["Tags: "] = "Etichete:"; +$a->strings["[Remove any tag]"] = "[Elimină orice etichetă]"; +$a->strings["Rotate CW (right)"] = "Rotire spre dreapta"; +$a->strings["Rotate CCW (left)"] = "Rotire spre stânga"; +$a->strings["New album name"] = "Nume Nou Album"; +$a->strings["Caption"] = "Titlu"; +$a->strings["Add a Tag"] = "Adaugă un Tag"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemplu: @Bob, @Barbara_Jensen, @jim@exemplu.com , #California, #camping"; +$a->strings["Private photo"] = "Poze private"; +$a->strings["Public photo"] = "Poze Publice"; +$a->strings["Share"] = "Partajează"; +$a->strings["View Album"] = "Vezi Album"; +$a->strings["Recent Photos"] = "Poze Recente"; +$a->strings["No profile"] = "Niciun profil"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Înregistrarea s-a efectuat cu succes. Vă rugăm să vă verificaţi e-mailul pentru instrucţiuni suplimentare."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = ""; +$a->strings["Your registration can not be processed."] = "Înregistrarea dvs. nu poate fi procesată."; +$a->strings["Your registration is pending approval by the site owner."] = "Înregistrarea dvs. este în aşteptarea aprobării de către deținătorul site-ului."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Acest site a depăşit numărul zilnic permis al înregistrărilor de conturi. Vă rugăm să reîncercați mâine."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Puteți (opțional) să completaÅ£i acest formular prin intermediul OpenID, introducând contul dvs. OpenID și apăsând pe 'Înregistrare'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Dacă nu sunteÅ£i familiarizați cu OpenID, vă rugăm să lăsaÅ£i acest câmp gol iar apoi să completaÅ£i restul elementelor."; +$a->strings["Your OpenID (optional): "] = "Contul dvs. OpenID (opÅ£ional):"; +$a->strings["Include your profile in member directory?"] = "Includeți profilul dvs în directorul de membru?"; +$a->strings["Membership on this site is by invitation only."] = "Aderare pe acest site, este posibilă doar pe bază de invitație."; +$a->strings["Your invitation ID: "] = "ID invitaÅ£iei dvs:"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Numele Complet (de ex. Joe Smith):"; +$a->strings["Your Email Address: "] = "Adresa dvs de mail:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "AlegeÅ£i un pseudonim de profil. Aceasta trebuie să înceapă cu un caracter text. Adresa profilului dvs. de pe acest site va fi de forma 'pseudonim@\$sitename'."; +$a->strings["Choose a nickname: "] = "AlegeÅ£i un pseudonim:"; +$a->strings["Register"] = "Înregistrare"; +$a->strings["Import"] = "Import"; +$a->strings["Import your profile to this friendica instance"] = "Importați profilul dvs. în această instanță friendica"; +$a->strings["No valid account found."] = "Nici-un cont valid găsit."; +$a->strings["Password reset request issued. Check your email."] = "Solicitarea de Resetare Parolă a fost emisă. Verificați-vă emailul."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = ""; +$a->strings["Password reset requested at %s"] = "Solicitarea de resetare a parolei a fost făcută la %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Solicitarea nu se poate verifica. (Este posibil să fi solicitat-o anterior.) Resetarea parolei a eșuat."; +$a->strings["Password Reset"] = "Resetare Parolă"; +$a->strings["Your password has been reset as requested."] = "Parola a fost resetată conform solicitării."; +$a->strings["Your new password is"] = "Noua dvs. parolă este"; +$a->strings["Save or copy your new password - and then"] = "Salvați sau copiați noua dvs. parolă - şi apoi"; +$a->strings["click here to login"] = "click aici pentru logare"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Parola poate fi schimbată din pagina de Configurări după autentificarea cu succes."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = ""; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = ""; +$a->strings["Your password has been changed at %s"] = "Parola dumneavoastră a fost schimbată la %s"; +$a->strings["Forgot your Password?"] = "Ați uitat Parola?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "IntroduceÅ£i adresa dumneavoastră de email şi trimiteți-o pentru a vă reseta parola. Apoi verificaÅ£i-vă emailul pentru instrucÅ£iuni suplimentare."; +$a->strings["Nickname or Email: "] = "Pseudonim sau Email:"; +$a->strings["Reset"] = "Reset"; +$a->strings["System down for maintenance"] = "Sistemul este suspendat pentru întreținere"; +$a->strings["Item not available."] = "Elementul nu este disponibil."; +$a->strings["Item was not found."] = "Element negăsit."; +$a->strings["Applications"] = "Aplicații"; +$a->strings["No installed applications."] = "Nu există aplicații instalate."; +$a->strings["Help:"] = "Ajutor:"; +$a->strings["Help"] = "Ajutor"; $a->strings["%d contact edited."] = array( 0 => "%d contact editat.", 1 => "%d contacte editate.", @@ -941,7 +632,6 @@ $a->strings["%d contact edited."] = array( $a->strings["Could not access contact record."] = "Nu se poate accesa registrul contactului."; $a->strings["Could not locate selected profile."] = "Nu se poate localiza profilul selectat."; $a->strings["Contact updated."] = "Contact actualizat."; -$a->strings["Failed to update contact record."] = "Actualizarea datelor de contact a eşuat."; $a->strings["Contact has been blocked"] = "Contactul a fost blocat"; $a->strings["Contact has been unblocked"] = "Contactul a fost deblocat"; $a->strings["Contact has been ignored"] = "Contactul a fost ignorat"; @@ -954,14 +644,16 @@ $a->strings["You are mutual friends with %s"] = "SunteÅ£i prieten comun cu %s"; $a->strings["You are sharing with %s"] = "Împărtășiți cu %s"; $a->strings["%s is sharing with you"] = "%s împărtăşeşte cu dvs."; $a->strings["Private communications are not available for this contact."] = "ComunicaÅ£iile private nu sunt disponibile pentru acest contact."; -$a->strings["Never"] = "Niciodată"; $a->strings["(Update was successful)"] = "(Actualizare a reuşit)"; $a->strings["(Update was not successful)"] = "(Actualizare nu a reuşit)"; $a->strings["Suggest friends"] = "SugeraÅ£i prieteni"; $a->strings["Network type: %s"] = "Tipul rețelei: %s"; +$a->strings["%d contact in common"] = array( + 0 => "%d contact în comun", + 1 => "%d contacte în comun", + 2 => "%d de contacte în comun", +); $a->strings["View all contacts"] = "Vezi toate contactele"; -$a->strings["Unblock"] = "Deblochează"; -$a->strings["Block"] = "Blochează"; $a->strings["Toggle Blocked status"] = "Comutare status Blocat"; $a->strings["Unignore"] = "Anulare ignorare"; $a->strings["Toggle Ignored status"] = "ComutaÅ£i status Ignorat"; @@ -976,7 +668,6 @@ $a->strings["Profile Visibility"] = "Vizibilitate Profil"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vă rugăm să alegeÅ£i profilul pe care doriÅ£i să îl afişaÅ£i pentru %s când acesta vă vizitează profuilul în mod securizat."; $a->strings["Contact Information / Notes"] = "InformaÅ£ii de Contact / Note"; $a->strings["Edit contact notes"] = "Editare note de contact"; -$a->strings["Visit %s's profile [%s]"] = "Vizitați profilul %s [%s]"; $a->strings["Block/Unblock contact"] = "Blocare/Deblocare contact"; $a->strings["Ignore contact"] = "Ignorare contact"; $a->strings["Repair URL settings"] = "Remediere configurări URL"; @@ -984,7 +675,6 @@ $a->strings["View conversations"] = "VizualizaÅ£i conversaÅ£ii"; $a->strings["Delete contact"] = "Şterge contact"; $a->strings["Last update:"] = "Ultima actualizare:"; $a->strings["Update public posts"] = "Actualizare postări publice"; -$a->strings["Update now"] = "Actualizează acum"; $a->strings["Currently blocked"] = "Blocat în prezent"; $a->strings["Currently ignored"] = "Ignorat în prezent"; $a->strings["Currently archived"] = "Arhivat în prezent"; @@ -994,6 +684,7 @@ $a->strings["Send a notification of every new post of this contact"] = "Trimite $a->strings["Fetch further information for feeds"] = "Preluare informaÅ£ii suplimentare pentru fluxuri"; $a->strings["Suggestions"] = "Sugestii"; $a->strings["Suggest potential friends"] = "SugeraÅ£i prieteni potențiali"; +$a->strings["All Contacts"] = "Toate Contactele"; $a->strings["Show all contacts"] = "Afişează toate contactele"; $a->strings["Unblocked"] = "Deblocat"; $a->strings["Only show unblocked contacts"] = "Se afişează numai contactele deblocate"; @@ -1008,414 +699,79 @@ $a->strings["Only show hidden contacts"] = "Se afişează numai contactele ascun $a->strings["Mutual Friendship"] = "Prietenie Reciprocă"; $a->strings["is a fan of yours"] = "este fanul dvs."; $a->strings["you are a fan of"] = "sunteÅ£i un fan al"; -$a->strings["Edit contact"] = "Editează contact"; +$a->strings["Contacts"] = "Contacte"; $a->strings["Search your contacts"] = "Căutare contacte"; $a->strings["Finding: "] = "Găsire:"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Ne pare rău, este posibil ca fișierul pe care doriți să-l încărcați, este mai mare decât permite configuraÅ£ia PHP"; -$a->strings["Or - did you try to upload an empty file?"] = "Sau - ați încercat să încărcaÅ£i un fişier gol?"; -$a->strings["File exceeds size limit of %d"] = "Fişierul depăşeşte dimensiunea limită de %d"; -$a->strings["File upload failed."] = "Încărcarea fișierului a eşuat."; -$a->strings["[Embedded content - reload page to view]"] = "[ConÅ£inut încastrat - reîncărcaÅ£i pagina pentru a vizualiza]"; -$a->strings["Export account"] = "Exportare cont"; -$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."] = "Exportați-vă informațiile contului şi contactele. UtilizaÅ£i aceasta pentru a face o copie de siguranţă a contului dumneavoastră şi/sau pentru a-l muta pe un alt server."; -$a->strings["Export all"] = "Exportare tot"; -$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)"] = "Exportați informațiile dvs. de cont, contactele şi toate elementele dvs., ca json. Ar putea fi un fișier foarte mare, şi ar putea lua mult timp. UtilizaÅ£i aceasta pentru a face un backup complet al contului (fotografiile nu sunt exportate)"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Înregistrarea s-a efectuat cu succes. Vă rugăm să vă verificaÅ£i e-mailul pentru instrucÅ£iuni suplimentare."; -$a->strings["Failed to send email message. Here is the message that failed."] = "Eșec la trimiterea mesajului de email. Acesta este mesajul care a eşuat."; -$a->strings["Your registration can not be processed."] = "Înregistrarea dvs. nu poate fi procesată."; -$a->strings["Your registration is pending approval by the site owner."] = "Înregistrarea dvs. este în aşteptarea aprobării de către deținătorul site-ului."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Acest site a depăşit numărul zilnic permis al înregistrărilor de conturi. Vă rugăm să reîncercați mâine."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Puteți (opțional) să completaÅ£i acest formular prin intermediul OpenID, introducând contul dvs. OpenID și apăsând pe 'Înregistrare'."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Dacă nu sunteÅ£i familiarizați cu OpenID, vă rugăm să lăsaÅ£i acest câmp gol iar apoi să completaÅ£i restul elementelor."; -$a->strings["Your OpenID (optional): "] = "Contul dvs. OpenID (opÅ£ional):"; -$a->strings["Include your profile in member directory?"] = "Includeți profilul dvs în directorul de membru?"; -$a->strings["Membership on this site is by invitation only."] = "Aderare pe acest site, este posibilă doar pe bază de invitație."; -$a->strings["Your invitation ID: "] = "ID invitaÅ£iei dvs:"; -$a->strings["Registration"] = "Registratură"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Numele Complet (de ex. Joe Smith):"; -$a->strings["Your Email Address: "] = "Adresa dvs de mail:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "AlegeÅ£i un pseudonim de profil. Aceasta trebuie să înceapă cu un caracter text. Adresa profilului dvs. de pe acest site va fi de forma 'pseudonim@\$sitename'."; -$a->strings["Choose a nickname: "] = "AlegeÅ£i un pseudonim:"; -$a->strings["Import"] = "Import"; -$a->strings["Import your profile to this friendica instance"] = "Importați profilul dvs. în această instanță friendica"; -$a->strings["Post successful."] = "Postat cu succes."; -$a->strings["System down for maintenance"] = "Sistemul este suspendat pentru întreținere"; -$a->strings["Access to this profile has been restricted."] = "Accesul la acest profil a fost restricÅ£ionat."; -$a->strings["Tips for New Members"] = "Sfaturi pentru Membrii Noi"; -$a->strings["Public access denied."] = "Acces public refuzat."; +$a->strings["Find"] = "Căutare"; +$a->strings["Update"] = "Actualizare"; $a->strings["No videos selected"] = "Nici-un clip video selectat"; -$a->strings["Access to this item is restricted."] = "Accesul la acest element este restricționat."; -$a->strings["View Album"] = "Vezi Album"; $a->strings["Recent Videos"] = "Clipuri video recente"; $a->strings["Upload New Videos"] = "ÎncărcaÅ£i Clipuri Video Noi"; -$a->strings["Manage Identities and/or Pages"] = "Administrare Identităţii şi/sau Pagini"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Comutați între diferitele identităţi sau pagini de comunitate/grup, care împărtășesc detaliile contului dvs. sau pentru care v-au fost acordate drepturi de \"gestionare \""; -$a->strings["Select an identity to manage: "] = "SelectaÅ£i o identitate de gestionat:"; -$a->strings["Item not found"] = "Element negăsit"; -$a->strings["Edit post"] = "Editează post"; -$a->strings["People Search"] = "Căutare Persoane"; -$a->strings["No matches"] = "Nici-o potrivire"; -$a->strings["Account approved."] = "Cont aprobat."; -$a->strings["Registration revoked for %s"] = "Înregistrare revocată pentru %s"; -$a->strings["Please login."] = "Vă rugăm să vă autentificați."; -$a->strings["This introduction has already been accepted."] = "Această introducere a fost deja acceptată"; -$a->strings["Profile location is not valid or does not contain profile information."] = "LocaÅ£ia profilului nu este validă sau nu conÅ£ine informaÅ£ii de profil."; -$a->strings["Warning: profile location has no identifiable owner name."] = "AtenÅ£ie: locaÅ£ia profilului nu are un nume de deÅ£inător identificabil."; -$a->strings["Warning: profile location has no profile photo."] = "AtenÅ£ie: locaÅ£ia profilului nu are fotografie de profil."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d parametru necesar nu a fost găsit în locaÅ£ia specificată", - 1 => "%d parametrii necesari nu au fost găsiÅ£i în locaÅ£ia specificată", - 2 => "%d de parametrii necesari nu au fost găsiÅ£i în locaÅ£ia specificată", -); -$a->strings["Introduction complete."] = "Prezentare completă."; -$a->strings["Unrecoverable protocol error."] = "Eroare de protocol nerecuperabilă."; -$a->strings["Profile unavailable."] = "Profil nedisponibil."; -$a->strings["%s has received too many connection requests today."] = "%s a primit, pentru azi, prea multe solicitări de conectare."; -$a->strings["Spam protection measures have been invoked."] = "Au fost invocate măsuri de protecÅ£ie anti-spam."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Prietenii sunt rugaÅ£i să reîncerce peste 24 de ore."; -$a->strings["Invalid locator"] = "Invalid locator"; -$a->strings["Invalid email address."] = "Adresă mail invalidă."; -$a->strings["This account has not been configured for email. Request failed."] = "Acest cont nu a fost configurat pentru email. Cererea a eşuat."; -$a->strings["Unable to resolve your name at the provided location."] = "Imposibil să vă soluÅ£ionăm numele pentru locaÅ£ia sugerată."; -$a->strings["You have already introduced yourself here."] = "AÅ£i fost deja prezentat aici"; -$a->strings["Apparently you are already friends with %s."] = "Se pare că sunteÅ£i deja prieten cu %s."; -$a->strings["Invalid profile URL."] = "Profil URL invalid."; -$a->strings["Your introduction has been sent."] = "Prezentarea dumneavoastră a fost trimisă."; -$a->strings["Please login to confirm introduction."] = "Vă rugăm să vă autentificați pentru a confirma prezentarea."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Autentificat curent cu identitate eronată. Vă rugăm să vă autentificați pentru acest profil."; -$a->strings["Hide this contact"] = "Ascunde acest contact"; -$a->strings["Welcome home %s."] = "Bine ai venit %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Vă rugăm să vă confirmaÅ£i solicitarea de introducere/conectare la %s."; -$a->strings["Confirm"] = "Confirm"; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Vă rugăm să vă introduceÅ£i \"Adresa de Identitate\" din una din următoarele reÅ£ele de socializare acceptate:"; -$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."] = "Dacă nu sunteÅ£i încă un membru al reÅ£elei online de socializare gratuite, urmați acest link pentru a găsi un site public Friendica şi alăturați-vă nouă, chiar astăzi."; -$a->strings["Friend/Connection Request"] = "Solicitare Prietenie/Conectare"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemple: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Vă rugăm să răspundeÅ£i la următoarele:"; -$a->strings["Does %s know you?"] = "%s vă cunoaşte?"; -$a->strings["Add a personal note:"] = "Adaugă o notă personală:"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/ReÅ£ea Socială Web Centralizată"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "- vă rugăm să nu folosiÅ£i acest formular. În schimb, introduceÅ£i %s în bara dvs. de căutare Diaspora."; -$a->strings["Your Identity Address:"] = "Adresa dvs. Identitate "; -$a->strings["Submit Request"] = "TrimiteÅ£i Solicitarea"; -$a->strings["Files"] = "Fişiere"; -$a->strings["Authorize application connection"] = "Autorizare conectare aplicaÅ£ie"; -$a->strings["Return to your app and insert this Securty Code:"] = "Reveniți la aplicația dvs. şi introduceÅ£i acest Cod de Securitate:"; -$a->strings["Please login to continue."] = "Vă rugăm să vă autentificați pentru a continua."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "DoriÅ£i să autorizați această aplicaÅ£ie pentru a vă accesa postările şi contactele, şi/sau crea noi postări pentru dvs.?"; -$a->strings["Do you really want to delete this suggestion?"] = "Sigur doriți să ștergeți acesta sugestie?"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nici-o sugestie disponibilă. Dacă aceasta este un site nou, vă rugăm să încercaÅ£i din nou în 24 de ore."; -$a->strings["Ignore/Hide"] = "Ignorare/Ascundere"; -$a->strings["Contacts who are not members of a group"] = "Contactele care nu sunt membre ale unui grup"; -$a->strings["Contact not found."] = "Contact negăsit."; -$a->strings["Friend suggestion sent."] = "Sugestia de prietenie a fost trimisă."; -$a->strings["Suggest Friends"] = "SugeraÅ£i Prieteni"; -$a->strings["Suggest a friend for %s"] = "SugeraÅ£i un prieten pentru %s"; -$a->strings["link"] = "link"; -$a->strings["No contacts."] = "Nici-un contact."; -$a->strings["Theme settings updated."] = "Configurările temei au fost actualizate."; -$a->strings["Site"] = "Site"; -$a->strings["Users"] = "Utilizatori"; -$a->strings["Themes"] = "Teme"; -$a->strings["DB updates"] = "Actualizări Bază de Date"; -$a->strings["Logs"] = "Jurnale"; -$a->strings["Plugin Features"] = "Caracteristici Modul"; -$a->strings["User registrations waiting for confirmation"] = "Înregistrări de utilizatori, aşteaptă confirmarea"; -$a->strings["Normal Account"] = "Cont normal"; -$a->strings["Soapbox Account"] = "Cont Soapbox"; -$a->strings["Community/Celebrity Account"] = "Cont Comunitate/Celebritate"; -$a->strings["Automatic Friend Account"] = "Cont Prieten Automat"; -$a->strings["Blog Account"] = "Cont Blog"; -$a->strings["Private Forum"] = "Forum Privat"; -$a->strings["Message queues"] = "Șiruri de mesaje"; -$a->strings["Administration"] = "Administrare"; -$a->strings["Summary"] = "Sumar"; -$a->strings["Registered users"] = "Utilizatori înregistraÅ£i"; -$a->strings["Pending registrations"] = "Administrare"; -$a->strings["Version"] = "Versiune"; -$a->strings["Active plugins"] = "Module active"; -$a->strings["Can not parse base url. Must have at least ://"] = "Nu se poate analiza URL-ul de bază. Trebuie să aibă minim ://"; -$a->strings["Site settings updated."] = "Configurările site-ului au fost actualizate."; -$a->strings["At post arrival"] = "La sosirea publicaÅ£iei"; -$a->strings["Multi user instance"] = "Instanţă utilizatori multipli"; -$a->strings["Closed"] = "Inchis"; -$a->strings["Requires approval"] = "Necesită aprobarea"; -$a->strings["Open"] = "Deschide"; -$a->strings["No SSL policy, links will track page SSL state"] = "Nici-o politică SSL, legăturile vor urmări starea paginii SSL"; -$a->strings["Force all links to use SSL"] = "ForÅ£ează toate legăturile să utilizeze SSL"; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificat auto/semnat, folosește SSL numai pentru legăturile locate (nerecomandat)"; -$a->strings["File upload"] = "Fişier incărcat"; -$a->strings["Policies"] = "Politici"; -$a->strings["Advanced"] = "Avansat"; -$a->strings["Performance"] = "Performanţă"; -$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "ReaşezaÅ£i - AVERTIZARE: funcÅ£ie avansată. Ar putea face acest server inaccesibil."; -$a->strings["Site name"] = "Nume site"; -$a->strings["Banner/Logo"] = "Baner/Logo"; -$a->strings["Additional Info"] = "InformaÅ£ii suplimentare"; -$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Pentru serverele publice: puteÅ£i să adăugaÅ£i aici informaÅ£iile suplimentare ce vor fi afişate pe dir.friendica.com/siteinfo."; -$a->strings["System language"] = "Limbă System l"; -$a->strings["System theme"] = "Temă System "; -$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema implicită a sistemului - se poate supraregla prin profilele de utilizator - modificați configurările temei"; -$a->strings["Mobile system theme"] = "Temă sisteme mobile"; -$a->strings["Theme for mobile devices"] = "Temă pentru dispozitivele mobile"; -$a->strings["SSL link policy"] = "Politivi link SSL "; -$a->strings["Determines whether generated links should be forced to use SSL"] = "Determină dacă legăturile generate ar trebui forÅ£ate să utilizeze SSL"; -$a->strings["Old style 'Share'"] = "Stilul vechi de 'DistribuiÅ£i'"; -$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Dezactivează elementul bbcode 'distribuiÅ£i' pentru elementele repetitive."; -$a->strings["Hide help entry from navigation menu"] = "Ascunde elementele de ajutor, din meniul de navigare"; -$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Ascunde intrările de meniu pentru paginile de Ajutor, din meniul de navigare. Îl puteÅ£i accesa în continuare direct, apelând /ajutor."; -$a->strings["Single user instance"] = "Instanţă cu un singur utilizator"; -$a->strings["Make this instance multi-user or single-user for the named user"] = "Stabiliți această instanţă ca utilizator-multipli sau utilizator/unic, pentru utilizatorul respectiv"; -$a->strings["Maximum image size"] = "Maxim mărime imagine"; -$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Dimensiunea maximă în octeÅ£i, a imaginii încărcate. Implicit este 0, ceea ce înseamnă fără limite."; -$a->strings["Maximum image length"] = "Dimensiunea maximă a imaginii"; -$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Dimensiunea maximă în pixeli a celei mai lungi laturi a imaginii încărcate. Implicit este -1, ceea ce înseamnă fără limite."; -$a->strings["JPEG image quality"] = "Calitate imagine JPEG "; -$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Imaginile JPEG încărcate vor fi salvate cu această calitate stabilită [0-100]. Implicit este 100, ceea ce înseamnă calitate completă."; -$a->strings["Register policy"] = "Politici inregistrare "; -$a->strings["Maximum Daily Registrations"] = "Înregistrări Zilnice Maxime"; -$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."] = "Dacă înregistrarea este permisă de mai sus, aceasta stabileşte numărul maxim de utilizatori noi înregistraÅ£i, acceptaÅ£i pe zi. Dacă înregistrarea este stabilită ca închisă, această setare nu are efect."; -$a->strings["Register text"] = "Text înregistrare"; -$a->strings["Will be displayed prominently on the registration page."] = "Va fi afişat vizibil pe pagina de înregistrare."; -$a->strings["Accounts abandoned after x days"] = "Conturi abandonate după x zile"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Nu va risipi resurse de sistem interogând site-uri externe pentru conturi abandonate. IntroduceÅ£i 0 pentru nici-o limită de timp."; -$a->strings["Allowed friend domains"] = "Domenii prietene permise"; -$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista cu separator prin virgulă a domeniilor ce sunt permise pentru a stabili relaÅ£ii de prietenie cu acest site. Metacaracterele sunt acceptate. LăsaÅ£i necompletat pentru a permite orice domeniu"; -$a->strings["Allowed email domains"] = "Domenii de email, permise"; -$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"] = "Lista cu separator prin virgulă a domeniilor ce sunt permise în adresele de email pentru înregistrările pe acest site. Metacaracterele sunt acceptate. LăsaÅ£i necompletat pentru a permite orice domeniu"; -$a->strings["Block public"] = "Blocare acces public"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Bifați pentru a bloca accesul public, pe acest site, către toate paginile publice cu caracter personal, doar dacă nu sunteÅ£i deja autentificat."; -$a->strings["Force publish"] = "Forțează publicarea"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Bifați pentru a forÅ£a, ca toate profilurile de pe acest site să fie enumerate în directorul site-ului."; -$a->strings["Global directory update URL"] = "URL actualizare director global"; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL pentru a actualiza directorul global. Dacă aceasta nu se stabilește, director global este complet indisponibil pentru aplicație."; -$a->strings["Allow threaded items"] = "Permite elemente înșiruite"; -$a->strings["Allow infinite level threading for items on this site."] = "Permite pe acest site, un număr infinit de nivele de înșiruire."; -$a->strings["Private posts by default for new users"] = "Postările private, ca implicit pentru utilizatori noi"; -$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Stabilește permisiunile de postare implicite, pentru toți membrii noi, la grupul de confidențialitate implicit, mai degrabă decât cel public."; -$a->strings["Don't include post content in email notifications"] = "Nu include conÅ£inutul postării în notificările prin 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."] = "Nu include conținutul unui post/comentariu/mesaj privat/etc. în notificările prin email, ce sunt trimise de pe acest site, ca și masură de confidenÅ£ialitate."; -$a->strings["Disallow public access to addons listed in the apps menu."] = "Nu permiteÅ£i accesul public la suplimentele enumerate în meniul de aplicaÅ£ii."; -$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Bifând această casetă va restricționa, suplimentele enumerate în meniul de aplicaÅ£ii, exclusiv la accesul membrilor."; -$a->strings["Don't embed private images in posts"] = "Nu încorpora imagini private în postări"; -$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."] = "Nu înlocui fotografiile private, locale, din postări cu o copie încorporată imaginii. Aceasta înseamnă că, contactele care primesc postări ce conțin fotografii private vor trebui să se autentifice şi să încarce fiecare imagine, ceea ce poate dura ceva timp."; -$a->strings["Allow Users to set remote_self"] = "Permite utilizatorilor să-și stabilească remote_self"; -$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "Bifând aceasta, fiecărui utilizator îi este permis să marcheze fiecare contact, ca și propriu_la-distanță în dialogul de remediere contact. Stabilind acest marcaj unui un contact, va determina oglindirea fiecărei postări a respectivului contact, în fluxul utilizatorilor."; -$a->strings["Block multiple registrations"] = "Blocare înregistrări multiple"; -$a->strings["Disallow users to register additional accounts for use as pages."] = "Interzice utilizatorilor să-și înregistreze conturi adiționale pentru a le folosi ca pagini."; -$a->strings["OpenID support"] = "OpenID support"; -$a->strings["OpenID support for registration and logins."] = "Suport OpenID pentru înregistrare şi autentificări."; -$a->strings["Fullname check"] = "Verificare Nume complet"; -$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forțează utilizatorii să se înregistreze cu un spaÅ£iu între prenume şi nume, în câmpul pentru Nume complet, ca și măsură antispam"; -$a->strings["UTF-8 Regular expressions"] = "UTF-8 Regular expresii"; -$a->strings["Use PHP UTF8 regular expressions"] = "UtilizaÅ£i PHP UTF-8 Regular expresii"; -$a->strings["Show Community Page"] = "Arată Pagina Communitz"; -$a->strings["Display a Community page showing all recent public postings on this site."] = "Afişează o Pagina de Comunitate, arătând toate postările publice recente pe acest site."; -$a->strings["Enable OStatus support"] = "Activează Suport OStatus"; -$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Oferă compatibilitate de integrare OStatus (StatusNet, GNU Sociale etc.). Toate comunicațiile din OStatus sunt publice, astfel încât avertismentele de confidenÅ£ialitate vor fi ocazional afişate."; -$a->strings["OStatus conversation completion interval"] = "Intervalul OStatus de finalizare a conversaÅ£iei"; -$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Cât de des ar trebui, operatorul de sondaje, să verifice existența intrărilor noi din conversațiile OStatus? Aceasta poate fi o resursă de sarcini utile."; -$a->strings["Enable Diaspora support"] = "Activează Suport Diaspora"; -$a->strings["Provide built-in Diaspora network compatibility."] = "Oferă o compatibilitate de reÅ£ea Diaspora, întegrată."; -$a->strings["Only allow Friendica contacts"] = "Se permit doar contactele Friendica"; -$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Toate contactele trebuie să utilizeze protocoalele Friendica. Toate celelalte protocoale, integrate, de comunicaÅ£ii sunt dezactivate."; -$a->strings["Verify SSL"] = "Verifică 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."] = "Dacă doriÅ£i, puteÅ£i porni verificarea cu strictețe a certificatului. Aceasta va însemna că nu vă puteÅ£i conecta (deloc) la site-uri SSL auto-semnate."; -$a->strings["Proxy user"] = "Proxy user"; -$a->strings["Proxy URL"] = "Proxy URL"; -$a->strings["Network timeout"] = "Timp de expirare rețea"; -$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valoare exprimată în secunde. Stabiliți la 0 pentru nelimitat (nu este recomandat)."; -$a->strings["Delivery interval"] = "Interval de livrare"; -$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."] = "Întârzierea proceselor de livrare în fundal, exprimată prin atâtea secunde, pentru a reduce încărcarea sistemului. Recomandat: 4-5 pentru gazde comune, 2-3 pentru servere virtuale private, 0-1 pentru servere dedicate mari."; -$a->strings["Poll interval"] = "Interval de Sondare"; -$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Întârzierea proceselor de sondare în fundal, exprimată prin atâtea secunde, pentru a reduce încărcarea sistemului. dacă este 0, utilizează intervalul de livrare."; -$a->strings["Maximum Load Average"] = "Media Maximă de Încărcare"; -$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Încărcarea maximă a sistemului înainte ca livrarea şi procesele de sondare să fie amânate - implicit 50."; -$a->strings["Use MySQL full text engine"] = "Utilizare motor text-complet MySQL"; -$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activează motorul pentru text complet. Grăbeşte căutare - dar poate căuta, numai pentru minim 4 caractere."; -$a->strings["Suppress Language"] = "Suprimă Limba"; -$a->strings["Suppress language information in meta information about a posting."] = "Suprimă informaÅ£iile despre limba din informaÅ£iile meta ale unei postări."; -$a->strings["Path to item cache"] = "Calea pentru elementul cache"; -$a->strings["Cache duration in seconds"] = "Durata Cache în secunde"; -$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "Cât de mult ar trebui păstrate fișierele cache? Valoarea implicită este de 86400 de secunde (O zi). Pentru a dezactiva elementul cache, stabilește valoarea la -1."; -$a->strings["Maximum numbers of comments per post"] = "Numărul maxim de comentarii per post"; -$a->strings["How much comments should be shown for each post? Default value is 100."] = "Câte comentarii ar trebui afișate pentru fiecare postare? Valoarea implicită este 100."; -$a->strings["Path for lock file"] = "Cale pentru blocare fișiere"; -$a->strings["Temp path"] = "Calea Temp"; -$a->strings["Base path to installation"] = "Calea de bază pentru instalare"; -$a->strings["Disable picture proxy"] = ""; -$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = ""; -$a->strings["New base url"] = "URL de bază nou"; -$a->strings["Enable noscrape"] = "Activare fără-colectare"; -$a->strings["The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping."] = "Caracteristica fără-colectare accelerează trimiterea directoarelor folosind datele JSON în locul colectării HTML."; -$a->strings["Update has been marked successful"] = "Actualizarea a fost marcată cu succes"; -$a->strings["Database structure update %s was successfully applied."] = ""; -$a->strings["Executing of database structure update %s failed with error: %s"] = ""; -$a->strings["Executing %s failed with error: %s"] = ""; -$a->strings["Update %s was successfully applied."] = "Actualizarea %s a fost aplicată cu succes."; -$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Actualizare %s nu a returnat nici-un status. Nu se știe dacă a reuşit."; -$a->strings["There was no additional update function %s that needed to be called."] = ""; -$a->strings["No failed updates."] = "Nici-o actualizare eșuată."; -$a->strings["Check database structure"] = ""; -$a->strings["Failed Updates"] = "Actualizări Eșuate"; -$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Aceasta nu include actualizările dinainte de 1139, care nu a returnat nici-un status."; -$a->strings["Mark success (if update was manually applied)"] = "MarcaÅ£i ca și realizat (dacă actualizarea a fost aplicată manual)"; -$a->strings["Attempt to execute this update step automatically"] = "Se încearcă executarea automată a acestei etape de actualizare"; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = ""; -$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = ""; -$a->strings["%s user blocked/unblocked"] = array( - 0 => "%s utilizator blocat/deblocat", - 1 => "%s utilizatori blocați/deblocați", - 2 => "%s de utilizatori blocați/deblocați", -); -$a->strings["%s user deleted"] = array( - 0 => "%s utilizator şters", - 1 => "%s utilizatori şterşi", - 2 => "%s utilizatori şterşi", -); -$a->strings["User '%s' deleted"] = "Utilizator %s şters"; -$a->strings["User '%s' unblocked"] = "Utilizator %s deblocat"; -$a->strings["User '%s' blocked"] = "Utilizator %s blocat"; -$a->strings["Add User"] = "AdăugaÅ£i Utilizator"; -$a->strings["select all"] = "selectează tot"; -$a->strings["User registrations waiting for confirm"] = "Înregistrarea utilizatorului, aşteaptă confirmarea"; -$a->strings["User waiting for permanent deletion"] = "Utilizatorul așteaptă să fie șters definitiv"; -$a->strings["Request date"] = "Data cererii"; -$a->strings["No registrations."] = "Nici-o înregistrare."; -$a->strings["Deny"] = "Respinge"; -$a->strings["Site admin"] = "Site admin"; -$a->strings["Account expired"] = "Cont expirat"; -$a->strings["New User"] = "Utilizator Nou"; -$a->strings["Register date"] = "Data înregistrare"; -$a->strings["Last login"] = "Ultimul login"; -$a->strings["Last item"] = "Ultimul element"; -$a->strings["Deleted since"] = "Șters din"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Utilizatorii selectați vor fi ştersi!\\n\\nTot ce au postat acești utilizatori pe acest site, va fi şters permanent!\\n\\nConfirmați?"; -$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?"] = "Utilizatorul {0} va fi şters!\\n\\nTot ce a postat acest utilizator pe acest site, va fi şters permanent!\\n\\nConfirmați?"; -$a->strings["Name of the new user."] = "Numele noului utilizator."; -$a->strings["Nickname"] = "Pseudonim"; -$a->strings["Nickname of the new user."] = "Pseudonimul noului utilizator."; -$a->strings["Email address of the new user."] = "Adresa de e-mail a utilizatorului nou."; -$a->strings["Plugin %s disabled."] = "Modulul %s a fost dezactivat."; -$a->strings["Plugin %s enabled."] = "Modulul %s a fost activat."; -$a->strings["Disable"] = "Dezactivează"; -$a->strings["Enable"] = "Activează"; -$a->strings["Toggle"] = "Comutare"; -$a->strings["Author: "] = "Autor: "; -$a->strings["Maintainer: "] = "Responsabil:"; -$a->strings["No themes found."] = "Nici-o temă găsită."; -$a->strings["Screenshot"] = "Screenshot"; -$a->strings["[Experimental]"] = "[Experimental]"; -$a->strings["[Unsupported]"] = "[Unsupported]"; -$a->strings["Log settings updated."] = "Jurnalul de configurări fost actualizat."; -$a->strings["Clear"] = "Curăţă"; -$a->strings["Enable Debugging"] = "Activează Depanarea"; -$a->strings["Log file"] = "Fişier Log "; -$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Trebuie să fie inscriptibil pentru serverul web. Relativ la directoul dvs. superior Friendica."; -$a->strings["Log level"] = "Nivel log"; -$a->strings["Close"] = "Închide"; -$a->strings["FTP Host"] = "FTP Host"; -$a->strings["FTP Path"] = "FTP Path"; -$a->strings["FTP User"] = "FTP User"; -$a->strings["FTP Password"] = "FTP Parolă"; -$a->strings["Image exceeds size limit of %d"] = "Dimensiunea imaginii depăşeşte limita de %d"; -$a->strings["Unable to process image."] = "Nu s-a putut procesa imaginea."; -$a->strings["Image upload failed."] = "Încărcarea imaginii a eşuat."; -$a->strings["Welcome to %s"] = "Bine aÅ£i venit la %s"; -$a->strings["OpenID protocol error. No ID returned."] = "Eroare de protocol OpenID. Nici-un ID returnat."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Contul nu a fost găsit iar înregistrările OpenID nu sunt permise pe acest site."; -$a->strings["Search Results For:"] = "Rezultatele Căutării Pentru:"; -$a->strings["Remove term"] = "Eliminare termen"; -$a->strings["Commented Order"] = "Ordonare Comentarii"; -$a->strings["Sort by Comment Date"] = "Sortare după Data Comentariului"; -$a->strings["Posted Order"] = "Ordonare Postări"; -$a->strings["Sort by Post Date"] = "Sortare după Data Postării"; -$a->strings["Posts that mention or involve you"] = "Postări ce vă menționează sau vă implică"; -$a->strings["New"] = "Nou"; -$a->strings["Activity Stream - by date"] = "Flux Activități - după dată"; -$a->strings["Shared Links"] = "Linkuri partajate"; -$a->strings["Interesting Links"] = "Legături Interesante"; -$a->strings["Starred"] = "Cu steluță"; -$a->strings["Favourite Posts"] = "Postări Favorite"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Atenție: Acest grup conÅ£ine %s membru dintr-o reÅ£ea nesigură.", - 1 => "Atenție: Acest grup conÅ£ine %s membrii dintr-o reÅ£ea nesigură.", - 2 => "Atenție: Acest grup conÅ£ine %s de membrii dintr-o reÅ£ea nesigură.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Mesajele private către acest grup sunt supuse riscului de divulgare publică."; -$a->strings["No such group"] = "Membrii"; -$a->strings["Group is empty"] = "Grupul este gol"; -$a->strings["Group: "] = "Grup:"; -$a->strings["Contact: "] = "Contact: "; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Mesajele private către această persoană sunt supuse riscului de divulgare publică."; -$a->strings["Invalid contact."] = "Invalid contact."; -$a->strings["- select -"] = "- selectare -"; -$a->strings["This is Friendica, version"] = "Friendica, versiunea"; -$a->strings["running at web location"] = "rulează la locaÅ£ia web"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Vă rugăm să vizitaÅ£i Friendica.com pentru a afla mai multe despre proiectul Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Rapoarte de erori şi probleme: vă rugăm să vizitaÅ£i"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestii, laude, donatii, etc. - vă rugăm să trimiteți un email pe \"Info\" at Friendica - dot com"; -$a->strings["Installed plugins/addons/apps:"] = "Module/suplimente/aplicații instalate:"; -$a->strings["No installed plugins/addons/apps"] = "Module/suplimente/aplicații neinstalate"; -$a->strings["Applications"] = "Aplicații"; -$a->strings["No installed applications."] = "Nu există aplicații instalate."; -$a->strings["Upload New Photos"] = "ÎncărcaÅ£i Fotografii Noi"; -$a->strings["Contact information unavailable"] = "InformaÅ£ii contact nedisponibile"; -$a->strings["Album not found."] = "Album negăsit"; -$a->strings["Delete Album"] = "Şterge Album"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "DoriÅ£i într-adevăr să ştergeÅ£i acest album foto și toate fotografiile sale?"; -$a->strings["Delete Photo"] = "Şterge Poza"; -$a->strings["Do you really want to delete this photo?"] = "Sigur doriți să ștergeți această fotografie?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s a fost etichetat în %2\$s de către %3\$s"; -$a->strings["a photo"] = "o poză"; -$a->strings["Image exceeds size limit of "] = "Dimensiunea imaginii depăşeşte limita de"; -$a->strings["Image file is empty."] = "Fișierul imagine este gol."; -$a->strings["No photos selected"] = "Nici-o fotografie selectată"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "AÅ£i folosit %1$.2f Mb din %2$.2f Mb de stocare foto."; -$a->strings["Upload Photos"] = "Încărcare Fotografii"; -$a->strings["New album name: "] = "Nume album nou:"; -$a->strings["or existing album name: "] = "sau numele unui album existent:"; -$a->strings["Do not show a status post for this upload"] = "Nu afișa un status pentru această încărcare"; -$a->strings["Permissions"] = "Permisiuni"; -$a->strings["Private Photo"] = "Poze private"; -$a->strings["Public Photo"] = "Poze Publice"; -$a->strings["Edit Album"] = "Editează Album"; -$a->strings["Show Newest First"] = "Afișează Întâi cele Noi"; -$a->strings["Show Oldest First"] = "Afișează Întâi cele Vechi"; -$a->strings["View Photo"] = "Vizualizare Fotografie"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Permisiune refuzată. Accesul la acest element poate fi restricționat."; -$a->strings["Photo not available"] = "Fotografia nu este disponibilă"; -$a->strings["View photo"] = "Vezi foto"; -$a->strings["Edit photo"] = "Editează poza"; -$a->strings["Use as profile photo"] = "Utilizați ca și fotografie de profil"; -$a->strings["View Full Size"] = "Vizualizați la Dimensiunea Completă"; -$a->strings["Tags: "] = "Etichete:"; -$a->strings["[Remove any tag]"] = "[Elimină orice etichetă]"; -$a->strings["Rotate CW (right)"] = "Rotire spre dreapta"; -$a->strings["Rotate CCW (left)"] = "Rotire spre stânga"; -$a->strings["New album name"] = "Nume Nou Album"; -$a->strings["Caption"] = "Titlu"; -$a->strings["Add a Tag"] = "Adaugă un Tag"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemplu: @Bob, @Barbara_Jensen, @jim@exemplu.com , #California, #camping"; -$a->strings["Private photo"] = "Poze private"; -$a->strings["Public photo"] = "Poze Publice"; -$a->strings["Recent Photos"] = "Poze Recente"; -$a->strings["Contact added"] = "Contact addăugat"; -$a->strings["Move account"] = "MutaÅ£i contul"; -$a->strings["You can import an account from another Friendica server."] = "PuteÅ£i importa un cont dintr-un alt 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."] = "Trebuie să vă exportați contul din vechiul server şi să-l încărcaÅ£i aici. Vă vom recrea vechiul cont, aici cu toate contactele sale. Vom încerca de altfel să vă informăm prietenii că v-ați mutat aici."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Această caracteristică este experimentală. Nu putem importa contactele din reÅ£eaua OStatus (statusnet/identi.ca) sau din Diaspora"; -$a->strings["Account file"] = "Fişier Cont"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Pentru a vă exporta contul, deplasaÅ£i-vă la \"Configurări- >Export date personale \" şi selectaÅ£i \"Exportare cont \""; -$a->strings["Total invitation limit exceeded."] = "Limita totală a invitațiilor a fost depăşită."; -$a->strings["%s : Not a valid email address."] = "%s : Nu este o adresă vaildă de email."; -$a->strings["Please join us on Friendica"] = "Vă rugăm să veniți alături de noi pe Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limita invitațiilor a fost depăşită. Vă rugăm să vă contactați administratorul de sistem."; -$a->strings["%s : Message delivery failed."] = "%s : Livrarea mesajului a eşuat."; -$a->strings["%d message sent."] = array( - 0 => "%d mesaj trimis.", - 1 => "%d mesaje trimise.", - 2 => "%d de mesaje trimise.", +$a->strings["Common Friends"] = "Prieteni Comuni"; +$a->strings["No contacts in common."] = "Nici-un contact în comun"; +$a->strings["Contact added"] = "Contact addăugat"; +$a->strings["Move account"] = "MutaÅ£i contul"; +$a->strings["You can import an account from another Friendica server."] = "PuteÅ£i importa un cont dintr-un alt 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."] = "Trebuie să vă exportați contul din vechiul server şi să-l încărcaÅ£i aici. Vă vom recrea vechiul cont, aici cu toate contactele sale. Vom încerca de altfel să vă informăm prietenii că v-ați mutat aici."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Această caracteristică este experimentală. Nu putem importa contactele din reÅ£eaua OStatus (statusnet/identi.ca) sau din Diaspora"; +$a->strings["Account file"] = "Fişier Cont"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Pentru a vă exporta contul, deplasaÅ£i-vă la \"Configurări- >Export date personale \" şi selectaÅ£i \"Exportare cont \""; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s urmărește %3\$s postată %2\$s"; +$a->strings["Friends of %s"] = "Prieteni cu %s"; +$a->strings["No friends to display."] = "Nici-un prieten de afișat."; +$a->strings["Tag removed"] = "Etichetă eliminată"; +$a->strings["Remove Item Tag"] = "Eliminați Eticheta Elementului"; +$a->strings["Select a tag to remove: "] = "Selectați o etichetă de eliminat:"; +$a->strings["Remove"] = "Eliminare"; +$a->strings["Welcome to Friendica"] = "Bun Venit la Friendica"; +$a->strings["New Member Checklist"] = "Lista de Verificare Membrii Noi"; +$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."] = "Dorim să vă oferim câteva sfaturi şi legături pentru a vă ajuta să aveți o experienţă cât mai plăcută. Apăsați pe orice element pentru a vizita pagina relevantă. O legătură către această pagină va fi vizibilă de pe pagina principală, pentru două săptămâni după înregistrarea dvs. iniÅ£ială, iar apoi va dispare în tăcere."; +$a->strings["Getting Started"] = "Noțiuni de Bază"; +$a->strings["Friendica Walk-Through"] = "Ghidul de Prezentare Friendica"; +$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."] = "Pe pagina dvs. de Pornire Rapidă - veți găsi o scurtă introducere pentru profilul dvs. şi pentru filele de reÅ£ea, veți face câteva conexiuni noi, şi veți găsi câteva grupuri la care să vă alăturați."; +$a->strings["Go to Your Settings"] = "Mergeți la Configurări"; +$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."] = "Din pagina dvs. de Configurări - schimbaÅ£i-vă parola iniÅ£ială. De asemenea creați o notă pentru Adresa dvs. de Identificare. Aceasta arată exact ca o adresă de email - şi va fi utilă la stabilirea de prietenii pe rețeaua socială web gratuită."; +$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."] = "Revizuiți celelalte configurări, în special configurările de confidenÅ£ialitate. O listă de directoare nepublicate este ca și cum ați avea un număr de telefon necatalogat. În general, ar trebui probabil să vă publicați lista - cu excepÅ£ia cazului în care toți prietenii şi potenÅ£ialii prieteni, știu exact cum să vă găsească."; +$a->strings["Profile"] = "Profil"; +$a->strings["Upload Profile Photo"] = "Încărcare Fotografie 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."] = "ÎncărcaÅ£i o fotografie de profil, dacă nu aÅ£i făcut-o deja.Studiile au arătat că, pentru persoanele cu fotografiile lor reale, există de zece ori mai multe şanse să-și facă prieteni, decât cei care nu folosesc fotografii reale."; +$a->strings["Edit Your Profile"] = "Editare 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."] = "EditaÅ£i-vă profilul Implicit după bunul plac. Revizuiți configurările pentru a ascunde lista dvs. de prieteni și pentru ascunderea profilului dvs., de vizitatorii necunoscuți."; +$a->strings["Profile Keywords"] = "Cuvinte-Cheie 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."] = "Stabiliți câteva cuvinte-cheie publice pentru profilul dvs. implicit, cuvinte ce descriu cel mai bine interesele dvs. Vom putea astfel găsi alte persoane cu interese similare și vă vom sugera prietenia lor."; +$a->strings["Connecting"] = "Conectare"; +$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."] = "Autorizați Conectorul Facebook dacă dețineți în prezent un cont pe Facebook, şi vom importa (opțional) toți prietenii și toate conversațiile de pe Facebook."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Dacă aceasta este propriul dvs. server, instalarea suplimentului Facebook, vă poate uşura tranziÅ£ia la reÅ£eaua socială web gratuită."; +$a->strings["Importing Emails"] = "Importare Email-uri"; +$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"] = "IntroduceÅ£i informațiile dvs. de acces la email adresa de email, în pagina dvs. de Configurări Conector, dacă doriți să importați și să interacționați cu prietenii sau cu listele de email din Căsuța dvs. de Mesaje Primite."; +$a->strings["Go to Your Contacts Page"] = "Dute la pagina ta Contacte "; +$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."] = "Pagina dvs. de Contact este poarta dvs. de acces către administrarea prieteniilor şi pentru conectarea cu prietenii din alte rețele. În general, introduceți adresa lor sau URL-ul către site, folosind dialogul Adăugare Contact Nou."; +$a->strings["Go to Your Site's Directory"] = "MergeÅ£i la Directorul Site-ului"; +$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."] = "Pagina Directorului vă permite să găsiÅ£i alte persoane în această reÅ£ea sau în alte site-uri asociate. CăutaÅ£i o legătură de Conectare sau Urmărire pe pagina lor de profil. Oferiți propria dvs. Adresă de Identitate dacă se solicită."; +$a->strings["Finding New People"] = "Găsire Persoane Noi"; +$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."] = "Pe panoul lateral al paginii Contacte sunt câteva unelte utile pentru a găsi noi prieteni. Putem asocia persoanele după interese, căuta persoane după nume sau interes, şi vă putem oferi sugestii bazate pe relaÅ£iile din reÅ£ea. Pe un site nou-nouț, sugestiile de prietenie vor începe în mod normal să fie populate în termen de 24 de ore."; +$a->strings["Groups"] = "Groupuri"; +$a->strings["Group Your Contacts"] = "Grupați-vă Contactele"; +$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."] = "Odată ce v-aÅ£i făcut unele prietenii, organizaÅ£i-le în grupuri de conversaÅ£ii private din bara laterală a paginii dvs. de Contact şi apoi puteÅ£i interacționa, privat cu fiecare grup pe pagina dumneavoastră de ReÅ£ea."; +$a->strings["Why Aren't My Posts Public?"] = "De ce nu sunt Postările Mele Publice?"; +$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 vă respectă confidenÅ£ialitatea. Implicit, postările dvs. vor fi afişate numai persoanelor pe care le-ați adăugat ca și prieteni. Pentru mai multe informaÅ£ii, consultaÅ£i secÅ£iunea de asistenţă din legătura de mai sus."; +$a->strings["Getting Help"] = "ObÅ£inerea de Ajutor"; +$a->strings["Go to the Help Section"] = "Navigați la Secțiunea Ajutor"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Paginile noastre de ajutor pot fi consultate pentru detalii, prin alte funcții şi resurse de program."; +$a->strings["Remove term"] = "Eliminare termen"; +$a->strings["Saved Searches"] = "Căutări Salvate"; +$a->strings["Search"] = "Căutare"; +$a->strings["No results."] = "Nici-un rezultat."; +$a->strings["Total invitation limit exceeded."] = "Limita totală a invitațiilor a fost depăşită."; +$a->strings["%s : Not a valid email address."] = "%s : Nu este o adresă vaildă de email."; +$a->strings["Please join us on Friendica"] = "Vă rugăm să veniți alături de noi pe Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limita invitațiilor a fost depăşită. Vă rugăm să vă contactați administratorul de sistem."; +$a->strings["%s : Message delivery failed."] = "%s : Livrarea mesajului a eşuat."; +$a->strings["%d message sent."] = array( + 0 => "%d mesaj trimis.", + 1 => "%d mesaje trimise.", + 2 => "%d de mesaje trimise.", ); $a->strings["You have no more invitations available"] = "Nu mai aveți invitaÅ£ii disponibile"; $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."] = "VizitaÅ£i %s pentru o lista de site-uri publice la care puteÅ£i alătura. Membrii Friendica de pe alte site-uri se pot conecta cu toții între ei, precum şi cu membri ai multor alte reÅ£ele sociale."; @@ -1428,139 +784,194 @@ $a->strings["You are cordially invited to join me and other close friends on Fri $a->strings["You will need to supply this invitation code: \$invite_code"] = "Va fi nevoie să furnizați acest cod de invitaÅ£ie: \$invite_code"; $a->strings["Once you have registered, please connect with me via my profile page at:"] = "Odată ce v-aÅ£i înregistrat, vă rog să vă conectaÅ£i cu mine prin pagina mea de profil de la:"; $a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pentru mai multe informaÅ£ii despre proiectul Friendica, şi de ce credem că este important, vă rugăm să vizitaÅ£i http://friendica.com"; -$a->strings["Access denied."] = "Accesul interzis."; -$a->strings["No valid account found."] = "Nici-un cont valid găsit."; -$a->strings["Password reset request issued. Check your email."] = "Solicitarea de Resetare Parolă a fost emisă. Verificați-vă emailul."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; -$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = ""; -$a->strings["Password reset requested at %s"] = "Solicitarea de resetare a parolei a fost făcută la %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Solicitarea nu se poate verifica. (Este posibil să fi solicitat-o anterior.) Resetarea parolei a eșuat."; -$a->strings["Your password has been reset as requested."] = "Parola a fost resetată conform solicitării."; -$a->strings["Your new password is"] = "Noua dvs. parolă este"; -$a->strings["Save or copy your new password - and then"] = "Salvați sau copiați noua dvs. parolă - şi apoi"; -$a->strings["click here to login"] = "click aici pentru logare"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Parola poate fi schimbată din pagina de Configurări după autentificarea cu succes."; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = ""; -$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = ""; -$a->strings["Your password has been changed at %s"] = "Parola dumneavoastră a fost schimbată la %s"; -$a->strings["Forgot your Password?"] = "Ați uitat Parola?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "IntroduceÅ£i adresa dumneavoastră de email şi trimiteți-o pentru a vă reseta parola. Apoi verificaÅ£i-vă emailul pentru instrucÅ£iuni suplimentare."; -$a->strings["Nickname or Email: "] = "Pseudonim sau Email:"; -$a->strings["Reset"] = "Reset"; -$a->strings["Source (bbcode) text:"] = "Text (bbcode) sursă:"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Text (Diaspora) sursă pentru a-l converti în BBcode:"; -$a->strings["Source input: "] = "Intrare Sursă:"; -$a->strings["bb2html (raw HTML): "] = "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): "] = "Intrare Sursă (Format Diaspora):"; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Tag removed"] = "Etichetă eliminată"; -$a->strings["Remove Item Tag"] = "Eliminați Eticheta Elementului"; -$a->strings["Select a tag to remove: "] = "Selectați o etichetă de eliminat:"; -$a->strings["Remove My Account"] = "Șterge Contul Meu"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Aceasta va elimina complet contul dvs. Odată ce a fostă, această acțiune este nerecuperabilă."; -$a->strings["Please enter your password for verification:"] = "Vă rugăm să introduceÅ£i parola dvs. pentru verificare:"; -$a->strings["Invalid profile identifier."] = "Identificator profil, invalid."; -$a->strings["Profile Visibility Editor"] = "Editor Vizibilitate Profil"; -$a->strings["Visible To"] = "Vizibil Pentru"; -$a->strings["All Contacts (with secure profile access)"] = "Toate Contactele (cu acces profil securizat)"; -$a->strings["Profile Match"] = "Potrivire Profil"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nu există cuvinte cheie pentru a le potrivi. Vă rugăm să adăugaÅ£i cuvinte cheie la profilul dvs implicit."; -$a->strings["is interested in:"] = "are interese pentru:"; -$a->strings["Event title and start time are required."] = "Titlul evenimentului şi timpul de pornire sunt necesare."; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Editează eveniment"; -$a->strings["Create New Event"] = "Crează eveniment nou"; -$a->strings["Previous"] = "Precedent"; -$a->strings["Next"] = "Next"; -$a->strings["hour:minute"] = "ore:minute"; -$a->strings["Event details"] = "Detalii eveniment"; -$a->strings["Format is %s %s. Starting date and Title are required."] = "Formatul este %s %s.Data de începere și Titlul sunt necesare."; -$a->strings["Event Starts:"] = "Evenimentul Începe:"; -$a->strings["Required"] = "Cerut"; -$a->strings["Finish date/time is not known or not relevant"] = "Data/ora de finalizare nu este cunoscută sau nu este relevantă"; -$a->strings["Event Finishes:"] = "Evenimentul se Finalizează:"; -$a->strings["Adjust for viewer timezone"] = "Reglați pentru fusul orar al vizitatorului"; -$a->strings["Description:"] = "Descriere:"; -$a->strings["Title:"] = "Titlu:"; -$a->strings["Share this event"] = "Partajează acest eveniment"; -$a->strings["{0} wants to be your friend"] = "{0} doreşte să vă fie prieten"; -$a->strings["{0} sent you a message"] = "{0} v-a trimis un mesaj"; -$a->strings["{0} requested registration"] = "{0} a solicitat înregistrarea"; -$a->strings["{0} commented %s's post"] = "{0} a comentat la articolul postat de %s"; -$a->strings["{0} liked %s's post"] = "{0} a apreciat articolul postat de %s"; -$a->strings["{0} disliked %s's post"] = "{0} nu a apreciat articolul postat de %s"; -$a->strings["{0} is now friends with %s"] = "{0} este acum prieten cu %s"; -$a->strings["{0} posted"] = "{0} a postat"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} a etichetat articolul postat de %s cu #%s"; -$a->strings["{0} mentioned you in a post"] = "{0} v-a menÅ£ionat într-o postare"; -$a->strings["Mood"] = "Stare de spirit"; -$a->strings["Set your current mood and tell your friends"] = "Stabiliți-vă starea de spirit curentă, şi comunicați-o prietenilor"; -$a->strings["No results."] = "Nici-un rezultat."; -$a->strings["Unable to locate contact information."] = "Nu se pot localiza informaÅ£iile de contact."; -$a->strings["Do you really want to delete this message?"] = "Chiar doriÅ£i să ştergeÅ£i acest mesaj ?"; -$a->strings["Message deleted."] = "Mesaj şters"; -$a->strings["Conversation removed."] = "Conversaşie inlăturată."; -$a->strings["No messages."] = "Nici-un mesaj."; -$a->strings["Unknown sender - %s"] = "Expeditor necunoscut - %s"; -$a->strings["You and %s"] = "Tu şi %s"; -$a->strings["%s and You"] = "%s şi dvs"; -$a->strings["Delete conversation"] = "Ștergeți conversaÅ£ia"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d mesaj", - 1 => "%d mesaje", - 2 => "%d mesaje", -); -$a->strings["Message not available."] = "Mesaj nedisponibil"; -$a->strings["Delete message"] = "Şterge mesaj"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nici-o comunicaÅ£ie securizată disponibilă. Veți putea răspunde din pagina de profil a expeditorului."; -$a->strings["Send Reply"] = "Răspunde"; -$a->strings["Not available."] = "Indisponibil."; -$a->strings["Profile not found."] = "Profil negăsit."; -$a->strings["Profile deleted."] = "Profilul a fost şters."; -$a->strings["Profile-"] = "Profil-"; -$a->strings["New profile created."] = "Profilul nou a fost creat."; -$a->strings["Profile unavailable to clone."] = "Profil indisponibil pentru clonare."; -$a->strings["Profile Name is required."] = "Numele de Profil este necesar."; -$a->strings["Marital Status"] = "Starea Civilă"; -$a->strings["Romantic Partner"] = "Partener Romantic"; -$a->strings["Likes"] = "Likes"; -$a->strings["Dislikes"] = "Antipatii"; -$a->strings["Work/Employment"] = "Loc de Muncă/Slujbă"; -$a->strings["Religion"] = "Religie"; -$a->strings["Political Views"] = "Viziuni Politice"; -$a->strings["Gender"] = "Sex"; -$a->strings["Sexual Preference"] = "PreferinÅ£e Sexuale"; -$a->strings["Homepage"] = "Homepage"; -$a->strings["Interests"] = "Interese"; -$a->strings["Address"] = "Addresă"; -$a->strings["Location"] = "LocaÅ£ie"; -$a->strings["Profile updated."] = "Profil actualizat."; -$a->strings[" and "] = "şi"; -$a->strings["public profile"] = "profil public"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s a modificat %2\$s în “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = "- Vizitați %2\$s lui %1\$s'"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s și-a actualizat %2\$s, modificând %3\$s."; -$a->strings["Hide contacts and friends:"] = "Ascunde contacte și prieteni:"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "AscundeÅ£i lista dvs. de contacte/prieteni de vizitatorii acestui profil?"; -$a->strings["Edit Profile Details"] = "Editare Detalii Profil"; -$a->strings["Change Profile Photo"] = "Modificați Fotografia de Profil"; -$a->strings["View this profile"] = "Vizualizați acest profil"; -$a->strings["Create a new profile using these settings"] = "CreaÅ£i un profil nou folosind aceste configurări"; +$a->strings["Additional features"] = "Caracteristici suplimentare"; +$a->strings["Display"] = "Afișare"; +$a->strings["Social Networks"] = "Rețele Sociale"; +$a->strings["Delegations"] = "Delegații"; +$a->strings["Connected apps"] = "Aplicații Conectate"; +$a->strings["Export personal data"] = "Exportare date personale"; +$a->strings["Remove account"] = "Ștergere cont"; +$a->strings["Missing some important data!"] = "Lipsesc unele date importante!"; +$a->strings["Failed to connect with email account using the settings provided."] = "A eşuat conectarea cu, contul de email, folosind configurările furnizate."; +$a->strings["Email settings updated."] = "Configurările de email au fost actualizate."; +$a->strings["Features updated"] = "Caracteristici actualizate"; +$a->strings["Relocate message has been send to your contacts"] = "Mesajul despre mutare, a fost trimis către contactele dvs."; +$a->strings["Passwords do not match. Password unchanged."] = "Parolele nu coincid. Parolă neschimbată."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Parolele necompletate nu sunt permise. Parolă neschimbată."; +$a->strings["Wrong password."] = "Parolă greșită."; +$a->strings["Password changed."] = "Parola a fost schimbată."; +$a->strings["Password update failed. Please try again."] = "Actualizarea parolei a eșuat. Vă rugăm să reîncercați."; +$a->strings[" Please use a shorter name."] = "Vă rugăm să utilizaÅ£i un nume mai scurt."; +$a->strings[" Name too short."] = "Numele este prea scurt."; +$a->strings["Wrong Password"] = "Parolă Greșită"; +$a->strings[" Not valid email."] = "Nu este un email valid."; +$a->strings[" Cannot change to that email."] = "Nu poate schimba cu acest email."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Forumul privat nu are permisiuni de confidenÅ£ialitate. Se folosește confidențialitatea implicită de grup."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Forumul Privat nu are permisiuni de confidenÅ£ialitate şi nici o confidențialitate implicită de grup."; +$a->strings["Settings updated."] = "Configurări actualizate."; +$a->strings["Add application"] = "Adăugare aplicaÅ£ie"; +$a->strings["Consumer Key"] = "Cheia Utilizatorului"; +$a->strings["Consumer Secret"] = "Cheia Secretă a Utilizatorului"; +$a->strings["Redirect"] = "RedirecÅ£ionare"; +$a->strings["Icon url"] = "URL pictogramă"; +$a->strings["You can't edit this application."] = "Nu puteți edita această aplicaÅ£ie."; +$a->strings["Connected Apps"] = "Aplicații Conectate"; +$a->strings["Client key starts with"] = "Cheia clientului începe cu"; +$a->strings["No name"] = "Fără nume"; +$a->strings["Remove authorization"] = "Eliminare autorizare"; +$a->strings["No Plugin settings configured"] = "Nici-o configurare stabilită pentru modul"; +$a->strings["Plugin Settings"] = "Configurări Modul"; +$a->strings["Off"] = "Off"; +$a->strings["On"] = "On"; +$a->strings["Additional Features"] = "Caracteristici Suplimentare"; +$a->strings["Built-in support for %s connectivity is %s"] = "Suportul încorporat pentru conectivitatea %s este %s"; +$a->strings["enabled"] = "activat"; +$a->strings["disabled"] = "dezactivat"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "Accesul de email este dezactivat pe acest site."; +$a->strings["Email/Mailbox Setup"] = "Configurare E-Mail/Căsuță poştală"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Dacă doriÅ£i să comunicaÅ£i cu contactele de email folosind acest serviciu (opÅ£ional), vă rugăm să precizaÅ£i cum doriți să vă conectaÅ£i la căsuța dvs. poştală."; +$a->strings["Last successful email check:"] = "Ultima verificare, cu succes, a email-ului:"; +$a->strings["IMAP server name:"] = "Nume server IMAP:"; +$a->strings["IMAP port:"] = "IMAP port:"; +$a->strings["Security:"] = "Securitate:"; +$a->strings["None"] = "Nimic"; +$a->strings["Email login name:"] = "Nume email autentificare:"; +$a->strings["Email password:"] = "Parolă de e-mail:"; +$a->strings["Reply-to address:"] = "Adresă pentru răspuns:"; +$a->strings["Send public posts to all email contacts:"] = "Trimiteți postările publice la toate contactele de email:"; +$a->strings["Action after import:"] = "AcÅ£iune după importare:"; +$a->strings["Mark as seen"] = "Marcați ca și vizualizat"; +$a->strings["Move to folder"] = "Mutare în dosar"; +$a->strings["Move to folder:"] = "Mutare în dosarul:"; +$a->strings["Display Settings"] = "Preferințe Ecran"; +$a->strings["Display Theme:"] = "Temă Afişaj:"; +$a->strings["Mobile Theme:"] = "Temă pentru Mobile:"; +$a->strings["Update browser every xx seconds"] = "Actualizare browser la fiecare fiecare xx secunde"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minim 10 secunde, fără un maxim"; +$a->strings["Number of items to display per page:"] = "Numărul de elemente de afişat pe pagină:"; +$a->strings["Maximum of 100 items"] = "Maxim 100 de elemente"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Numărul de elemente de afişat pe pagină atunci când se vizualizează de pe dispozitivul mobil:"; +$a->strings["Don't show emoticons"] = "Nu afișa emoticoane"; +$a->strings["Don't show notices"] = "Nu afișa notificări"; +$a->strings["Infinite scroll"] = "Derulare infinită"; +$a->strings["Automatic updates only at the top of the network page"] = "Actualizări automate doar la partea superioară a paginii de rețea "; +$a->strings["User Types"] = "Tipuri de Utilizator"; +$a->strings["Community Types"] = "Tipuri de Comunitare"; +$a->strings["Normal Account Page"] = "Pagină de Cont Simplu"; +$a->strings["This account is a normal personal profile"] = "Acest cont este un profil personal normal"; +$a->strings["Soapbox Page"] = "Pagină Soapbox"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Aprobă automat toate conexiunile/solicitările de prietenie ca și fani cu drepturi doar pentru vizualizare"; +$a->strings["Community Forum/Celebrity Account"] = "Cont Comunitate Forum/Celebritate"; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Aprobă automat toate conexiunile/solicitările de prietenie ca și fani cu drepturi doar pentru vizualizare"; +$a->strings["Automatic Friend Page"] = "Pagină Prietenie Automată"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Aprobă automat toate conexiunile/solicitările de prietenie ca și prieteni"; +$a->strings["Private Forum [Experimental]"] = "Forum Privat [Experimental]"; +$a->strings["Private forum - approved members only"] = "Forum Privat - numai membrii aprobați"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(OpÅ£ional) Permite acest OpenID să se conecteze la acest cont."; +$a->strings["Publish your default profile in your local site directory?"] = "Publicați profilul dvs. implicit în directorul site-ului dvs. local?"; +$a->strings["Publish your default profile in the global social directory?"] = "Publicați profilul dvs. implicit în directorul social global?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "AscundeÅ£i lista dvs. de contacte/prieteni de vizitatorii profilului dvs. implicit?"; +$a->strings["Hide your profile details from unknown viewers?"] = "AscundeÅ£i detaliile profilului dvs. de vizitatorii necunoscuți?"; +$a->strings["Allow friends to post to your profile page?"] = "Permiteți prietenilor să posteze pe pagina dvs. de profil ?"; +$a->strings["Allow friends to tag your posts?"] = "Permiteți prietenilor să vă eticheteze postările?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Ne permiteți să vă recomandăm ca și potențial prieten pentru membrii noi?"; +$a->strings["Permit unknown people to send you private mail?"] = "Permiteți persoanelor necunoscute să vă trimită mesaje private?"; +$a->strings["Profile is not published."] = "Profilul nu este publicat."; +$a->strings["or"] = "sau"; +$a->strings["Your Identity Address is"] = "Adresa Dvs. de Identitate este"; +$a->strings["Automatically expire posts after this many days:"] = "Postările vor expira automat după atâtea zile:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Dacă se lasă necompletat, postările nu vor expira. Postările expirate vor fi şterse"; +$a->strings["Advanced expiration settings"] = "Configurări Avansate de Expirare"; +$a->strings["Advanced Expiration"] = "Expirare Avansată"; +$a->strings["Expire posts:"] = "Postările expiră:"; +$a->strings["Expire personal notes:"] = "Notele personale expiră:"; +$a->strings["Expire starred posts:"] = "Postările favorite expiră:"; +$a->strings["Expire photos:"] = "Fotografiile expiră:"; +$a->strings["Only expire posts by others:"] = "Expiră numai postările altora:"; +$a->strings["Account Settings"] = "Configurări Cont"; +$a->strings["Password Settings"] = "Configurări Parolă"; +$a->strings["New Password:"] = "Parola Nouă:"; +$a->strings["Confirm:"] = "Confirm:"; +$a->strings["Leave password fields blank unless changing"] = "LăsaÅ£i câmpurile, pentru parolă, goale dacă nu doriți să modificați"; +$a->strings["Current Password:"] = "Parola Curentă:"; +$a->strings["Your current password to confirm the changes"] = "Parola curentă pentru a confirma modificările"; +$a->strings["Password:"] = "Parola:"; +$a->strings["Basic Settings"] = "Configurări de Bază"; +$a->strings["Full Name:"] = "Nume complet:"; +$a->strings["Email Address:"] = "Adresa de email:"; +$a->strings["Your Timezone:"] = "Fusul dvs. orar:"; +$a->strings["Default Post Location:"] = "Locația Implicită pentru Postări"; +$a->strings["Use Browser Location:"] = "Folosește Locația Navigatorului:"; +$a->strings["Security and Privacy Settings"] = "Configurări de Securitate și Confidențialitate"; +$a->strings["Maximum Friend Requests/Day:"] = "Solicitări de Prietenie, Maxime/Zi"; +$a->strings["(to prevent spam abuse)"] = "(Pentru a preveni abuzul de tip spam)"; +$a->strings["Default Post Permissions"] = "Permisiuni Implicite Postări"; +$a->strings["(click to open/close)"] = "(apăsați pentru a deschide/închide)"; +$a->strings["Default Private Post"] = "Postare Privată Implicită"; +$a->strings["Default Public Post"] = "Postare Privată Implicită"; +$a->strings["Default Permissions for New Posts"] = "Permisiuni Implicite pentru Postările Noi"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximum de mesaje private pe zi, de la persoanele necunoscute:"; +$a->strings["Notification Settings"] = "Configurări de Notificare"; +$a->strings["By default post a status message when:"] = "Implicit, postează un mesaj de stare atunci când:"; +$a->strings["accepting a friend request"] = "se acceptă o solicitare de prietenie"; +$a->strings["joining a forum/community"] = "se aderă la un forum/o comunitate"; +$a->strings["making an interesting profile change"] = "se face o modificări de profilinteresantă"; +$a->strings["Send a notification email when:"] = "Trimiteți o notificare email atunci când:"; +$a->strings["You receive an introduction"] = "Primiți o introducere"; +$a->strings["Your introductions are confirmed"] = "Introducerile dvs. sunt confirmate"; +$a->strings["Someone writes on your profile wall"] = "Cineva scrie pe perete dvs. de profil"; +$a->strings["Someone writes a followup comment"] = "Cineva scrie un comentariu de urmărire"; +$a->strings["You receive a private message"] = "Primiți un mesaj privat"; +$a->strings["You receive a friend suggestion"] = "Primiți o sugestie de prietenie"; +$a->strings["You are tagged in a post"] = "Sunteți etichetat într-o postare"; +$a->strings["You are poked/prodded/etc. in a post"] = "Sunteți abordat/incitat/etc. într-o postare"; +$a->strings["Advanced Account/Page Type Settings"] = "Configurări Avansate Cont/Tip Pagină"; +$a->strings["Change the behaviour of this account for special situations"] = "Modificați comportamentul acestui cont pentru situațiile speciale"; +$a->strings["Relocate"] = "Mutare"; +$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Dacă aÅ£i mutat acest profil dintr-un alt server, şi unele dintre contactele dvs. nu primesc actualizările dvs., încercaÅ£i să apăsați acest buton."; +$a->strings["Resend relocate message to contacts"] = "Retrimiteți contactelor, mesajul despre mutare"; +$a->strings["Item has been removed."] = "Elementul a fost eliminat."; +$a->strings["People Search"] = "Căutare Persoane"; +$a->strings["No matches"] = "Nici-o potrivire"; +$a->strings["Profile deleted."] = "Profilul a fost şters."; +$a->strings["Profile-"] = "Profil-"; +$a->strings["New profile created."] = "Profilul nou a fost creat."; +$a->strings["Profile unavailable to clone."] = "Profil indisponibil pentru clonare."; +$a->strings["Profile Name is required."] = "Numele de Profil este necesar."; +$a->strings["Marital Status"] = "Starea Civilă"; +$a->strings["Romantic Partner"] = "Partener Romantic"; +$a->strings["Likes"] = "Likes"; +$a->strings["Dislikes"] = "Antipatii"; +$a->strings["Work/Employment"] = "Loc de Muncă/Slujbă"; +$a->strings["Religion"] = "Religie"; +$a->strings["Political Views"] = "Viziuni Politice"; +$a->strings["Gender"] = "Sex"; +$a->strings["Sexual Preference"] = "PreferinÅ£e Sexuale"; +$a->strings["Homepage"] = "Homepage"; +$a->strings["Interests"] = "Interese"; +$a->strings["Address"] = "Addresă"; +$a->strings["Location"] = "LocaÅ£ie"; +$a->strings["Profile updated."] = "Profil actualizat."; +$a->strings[" and "] = "şi"; +$a->strings["public profile"] = "profil public"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s a modificat %2\$s în “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = "- Vizitați %2\$s lui %1\$s'"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s și-a actualizat %2\$s, modificând %3\$s."; +$a->strings["Hide contacts and friends:"] = "Ascunde contacte și prieteni:"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "AscundeÅ£i lista dvs. de contacte/prieteni de vizitatorii acestui profil?"; +$a->strings["Edit Profile Details"] = "Editare Detalii Profil"; +$a->strings["Change Profile Photo"] = "Modificați Fotografia de Profil"; +$a->strings["View this profile"] = "Vizualizați acest profil"; +$a->strings["Create a new profile using these settings"] = "CreaÅ£i un profil nou folosind aceste configurări"; $a->strings["Clone this profile"] = "Clonați acest profil"; $a->strings["Delete this profile"] = "ŞtergeÅ£i acest profil"; -$a->strings["Basic information"] = ""; -$a->strings["Profile picture"] = ""; -$a->strings["Preferences"] = ""; -$a->strings["Status information"] = ""; -$a->strings["Additional information"] = ""; -$a->strings["Upload Profile Photo"] = "Încărcare Fotografie Profil"; +$a->strings["Basic information"] = "InformaÅ£ii de bază"; +$a->strings["Profile picture"] = "Imagine profil"; +$a->strings["Preferences"] = "PreferinÅ£e "; +$a->strings["Status information"] = "InformaÅ£ii Status"; +$a->strings["Additional information"] = "InformaÅ£ii suplimentare"; $a->strings["Profile Name:"] = "Nume profil:"; $a->strings["Your Full Name:"] = "Numele Complet:"; $a->strings["Title/Description:"] = "Titlu/Descriere"; @@ -1575,10 +986,15 @@ $a->strings[" Marital Status:"] = "strings["Who: (if applicable)"] = "Cine: (dacă este cazul)"; $a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemple: cathy123, Cathy Williams, cathy@example.com"; $a->strings["Since [date]:"] = "Din [data]:"; +$a->strings["Sexual Preference:"] = "Orientare Sexuală:"; $a->strings["Homepage URL:"] = "Homepage URL:"; +$a->strings["Hometown:"] = "Domiciliu:"; +$a->strings["Political Views:"] = "Viziuni Politice:"; $a->strings["Religious Views:"] = "Viziuni Religioase:"; $a->strings["Public Keywords:"] = "Cuvinte cheie Publice:"; $a->strings["Private Keywords:"] = "Cuvinte cheie Private:"; +$a->strings["Likes:"] = "Îmi place:"; +$a->strings["Dislikes:"] = "Nu-mi place:"; $a->strings["Example: fishing photography software"] = "Exemplu: pescuit fotografii software"; $a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilizat pentru a sugera potențiali prieteni, ce pot fi văzuți de către ceilalți)"; $a->strings["(Used for searching profiles, never shown to others)"] = "(Utilizat pentru a căuta profile, niciodată afișat altora)"; @@ -1595,153 +1011,84 @@ $a->strings["School/education"] = "Școală/educație"; $a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Acesta este profilul dvs. public.
El poate fi vizibil pentru oricine folosește internetul."; $a->strings["Age: "] = "Vârsta:"; $a->strings["Edit/Manage Profiles"] = "Editare/Gestionare Profile"; -$a->strings["Friendica Communications Server - Setup"] = "Serverul de Comunicații Friendica - Instalare"; -$a->strings["Could not connect to database."] = "Nu se poate face conectarea cu baza de date."; -$a->strings["Could not create table."] = "Nu se poate crea tabelul."; -$a->strings["Your Friendica site database has been installed."] = "Baza dvs. de date Friendica, a fost instalată."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Este posibil să fie nevoie să importați manual fişierul \"database.sql\" folosind phpmyadmin sau mysql."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Vă rugăm să consultaţi fişierul \"INSTALL.txt\"."; -$a->strings["System check"] = "Verificare sistem"; -$a->strings["Check again"] = "Reverificare"; -$a->strings["Database connection"] = "Conexiunea cu baza de date"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pentru a instala Friendica trebuie să știm cum să vă conectaţi la baza dumneavoastră de date."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vă rugăm să vă contactaţi furnizorul găzduirii sau administratorul de site dacă aveţi întrebări despre aceste configurări."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Baza de date specificată mai jos ar trebui să existe deja. Dacă nu, vă rugăm s-o creați înainte de a continua."; -$a->strings["Database Server Name"] = "Nume Server Bază de date"; -$a->strings["Database Login Name"] = "Nume Autentificare Bază de date"; -$a->strings["Database Login Password"] = "Parola de Autentificare Bază de date"; -$a->strings["Database Name"] = "Nume Bază de date"; -$a->strings["Site administrator email address"] = "Adresa de email a administratorului de site"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Adresa de email a contului dvs. trebuie să corespundă cu aceasta pentru a utiliza panoul de administrare web."; -$a->strings["Please select a default timezone for your website"] = "Vă rugăm să selectaţi un fus orar prestabilit pentru site-ul dvs."; -$a->strings["Site settings"] = "Configurări Site"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nu s-a putut găsi o versiune a liniei de comandă PHP în CALEA serverului 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'"] = "Dacă nu aveţi o versiune a liniei de comandă PHP instalată pe server, nu veţi putea să efectuaţi interogări ciclice în fundal prin funcția cron. Consultaţi 'Activarea sarcinilor programate' "; -$a->strings["PHP executable path"] = "Calea de executare PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introduceţi calea completă către executabilul php. Puteţi lăsa acesta necompletată pentru a continua instalarea."; -$a->strings["Command line PHP"] = "linie comandă PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Executabilul PHP nu este de formă binară php-cli (ar putea fi versiunea cgi-fgci)"; -$a->strings["Found PHP version: "] = "Versiune PHP identificată:"; -$a->strings["PHP cli binary"] = "Versiune binară PHP-cli"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Versiunea liniei de comandă PHP de pe sistemul dumneavoastră nu are comanda \"register_argc_argv\" activată."; -$a->strings["This is required for message delivery to work."] = "Aceasta este necesară pentru a funcționa livrarea de mesaje."; -$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"] = "Eroare: funcția \"openssl_pkey_new\" de pe acest sistem nu este capabilă să genereze chei de criptare"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Dacă rulează pe Windows, vă rugăm să consultaţi \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Generate encryption keys"] = "Generare chei de criptare"; -$a->strings["libCurl PHP module"] = "Modulul PHP libCurl"; -$a->strings["GD graphics PHP module"] = "Modulul PHP grafică GD"; -$a->strings["OpenSSL PHP module"] = "Modulul PHP OpenSSL"; -$a->strings["mysqli PHP module"] = "Modulul PHP mysqli"; -$a->strings["mb_string PHP module"] = "Modulul PHP mb_string"; -$a->strings["Apache mod_rewrite module"] = "Modulul Apache mod_rewrite"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Eroare: Modulul mod-rewrite al serverulului Apache este necesar, dar nu este instalat."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Eroare: modulul PHP libCURL este necesar dar nu este instalat."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Eroare: Modulul PHP grafică GD cu suport JPEG, este necesar dar nu este instalat."; -$a->strings["Error: openssl PHP module required but not installed."] = "Eroare: modulul PHP libCURL este necesar dar nu este instalat."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Eroare: modulul PHP mysqli este necesar dar nu este instalat."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Eroare: modulul PHP mb_string este necesar dar nu este instalat."; -$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."] = "Expertul de instalare web trebuie să poată crea un fișier numit \".htconfig.php\" în dosarul superior al serverului dvs. web, şi nu poate face acest lucru."; -$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."] = "Aceasta este cel mai adesea o configurare de permisiune, deoarece serverul web nu ar putea fi capabil să scrie fişiere în dosarul dumneavoastră - chiar dacă dvs. puteţi."; -$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."] = "La finalul acestei proceduri, vă vom oferi un text pentru a-l salva într-un fişier numit .htconfig.php din dosarul dvs. superior Friendica."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ, puteţi omite această procedură şi să efectuaţi o instalare manuală. Vă rugăm să consultaţi fişierul \"INSTALL.txt\" pentru instrucțiuni."; -$a->strings[".htconfig.php is writable"] = ".htconfig.php este inscriptibil"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica utilizează motorul de șablon Smarty3 pentru a prelucra vizualizările sale web. Smarty3 compilează şabloane în PHP pentru a grăbi prelucrarea."; -$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."] = "Pentru a stoca aceste şabloane compilate, serverul de web trebuie să aibă acces la scriere pentru directorul view/smarty3/ din dosarul de nivel superior Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Vă rugăm să vă asiguraţi că utilizatorul pe care rulează serverul dvs. web (de ex. www-date) are acces la scriere pentru acest dosar."; -$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."] = "Notă: ca o măsură de securitate, ar trebui să dați serverului web, acces de scriere numai pentru view/smarty3/--dar nu și fișierelor de șablon (.tpl) pe care le conţine."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 este inscriptibil"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Funcția de rescriere Url rewrite din .htaccess nu funcţionează. Verificaţi-vă configuraţia serverului."; -$a->strings["Url rewrite is working"] = "Funcția de rescriere Url rewrite, funcţionează."; -$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."] = "Fișierul de configurare baza de date \".htconfig.php\", nu a putut fi scris. Vă rugăm să utilizaţi textul închis pentru a crea un fişier de configurare în rădăcina serverului dvs. web."; -$a->strings["

What next

"] = "

Ce urmează

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Va trebui să configurați [manual] o sarcină programată pentru operatorul de sondaje."; -$a->strings["Help:"] = "Ajutor:"; -$a->strings["Contact settings applied."] = "Configurările Contactului au fost aplicate."; -$a->strings["Contact update failed."] = "Actualizarea Contactului a eșuat."; -$a->strings["Repair Contact Settings"] = "Remediere Configurări Contact"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "AVERTISMENT: Această acțiune este foarte avansată şi dacă introduceţi informaţii incorecte, comunicaţiile cu acest contact se poate opri."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Vă rugăm să utilizaţi acum butonul 'Înapoi' din browser, dacă nu sunteţi sigur ce sa faceți pe această pagină."; -$a->strings["Return to contact editor"] = "Reveniţi la editorul de contact"; -$a->strings["Account Nickname"] = "Pseudonim Cont"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Nume_etichetă - suprascrie Numele/Pseudonimul"; -$a->strings["Account URL"] = "URL Cont"; -$a->strings["Friend Request URL"] = "URL Solicitare Prietenie"; -$a->strings["Friend Confirm URL"] = "URL Confirmare Prietenie"; -$a->strings["Notification Endpoint URL"] = "Punct final URL Notificare"; -$a->strings["Poll/Feed URL"] = "URL Sondaj/Flux"; -$a->strings["New photo from this URL"] = "Fotografie Nouă de la acest URL"; -$a->strings["Remote Self"] = "Auto la Distanţă"; -$a->strings["Mirror postings from this contact"] = "Postări în oglindă de la acest contact"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marcaţi acest contact ca remote_self, aceasta va determina friendica să reposteze noile articole ale acestui contact."; -$a->strings["No mirroring"] = ""; -$a->strings["Mirror as forwarded posting"] = ""; -$a->strings["Mirror as my own posting"] = ""; -$a->strings["Welcome to Friendica"] = "Bun Venit la Friendica"; -$a->strings["New Member Checklist"] = "Lista de Verificare Membrii Noi"; -$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."] = "Dorim să vă oferim câteva sfaturi şi legături pentru a vă ajuta să aveți o experienţă cât mai plăcută. Apăsați pe orice element pentru a vizita pagina relevantă. O legătură către această pagină va fi vizibilă de pe pagina principală, pentru două săptămâni după înregistrarea dvs. iniţială, iar apoi va dispare în tăcere."; -$a->strings["Getting Started"] = "Noțiuni de Bază"; -$a->strings["Friendica Walk-Through"] = "Ghidul de Prezentare Friendica"; -$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."] = "Pe pagina dvs. de Pornire Rapidă - veți găsi o scurtă introducere pentru profilul dvs. şi pentru filele de reţea, veți face câteva conexiuni noi, şi veți găsi câteva grupuri la care să vă alăturați."; -$a->strings["Go to Your Settings"] = "Mergeți la Configurări"; -$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."] = "Din pagina dvs. de Configurări - schimbaţi-vă parola iniţială. De asemenea creați o notă pentru Adresa dvs. de Identificare. Aceasta arată exact ca o adresă de email - şi va fi utilă la stabilirea de prietenii pe rețeaua socială web gratuită."; -$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."] = "Revizuiți celelalte configurări, în special configurările de confidenţialitate. O listă de directoare nepublicate este ca și cum ați avea un număr de telefon necatalogat. În general, ar trebui probabil să vă publicați lista - cu excepţia cazului în care toți prietenii şi potenţialii prieteni, știu exact cum să vă găsească."; -$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."] = "Încărcaţi o fotografie de profil, dacă nu aţi făcut-o deja.Studiile au arătat că, pentru persoanele cu fotografiile lor reale, există de zece ori mai multe şanse să-și facă prieteni, decât cei care nu folosesc fotografii reale."; -$a->strings["Edit Your Profile"] = "Editare 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."] = "Editaţi-vă profilul Implicit după bunul plac. Revizuiți configurările pentru a ascunde lista dvs. de prieteni și pentru ascunderea profilului dvs., de vizitatorii necunoscuți."; -$a->strings["Profile Keywords"] = "Cuvinte-Cheie 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."] = "Stabiliți câteva cuvinte-cheie publice pentru profilul dvs. implicit, cuvinte ce descriu cel mai bine interesele dvs. Vom putea astfel găsi alte persoane cu interese similare și vă vom sugera prietenia lor."; -$a->strings["Connecting"] = "Conectare"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizați Conectorul Facebook dacă dețineți în prezent un cont pe Facebook, şi vom importa (opțional) toți prietenii și toate conversațiile de pe Facebook."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Dacă aceasta este propriul dvs. server, instalarea suplimentului Facebook, vă poate uşura tranziţia la reţeaua socială web gratuită."; -$a->strings["Importing Emails"] = "Importare Email-uri"; -$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"] = "Introduceţi informațiile dvs. de acces la email adresa de email, în pagina dvs. de Configurări Conector, dacă doriți să importați și să interacționați cu prietenii sau cu listele de email din Căsuța dvs. de Mesaje Primite."; -$a->strings["Go to Your Contacts Page"] = "Dute la pagina ta Contacte "; -$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."] = "Pagina dvs. de Contact este poarta dvs. de acces către administrarea prieteniilor şi pentru conectarea cu prietenii din alte rețele. În general, introduceți adresa lor sau URL-ul către site, folosind dialogul Adăugare Contact Nou."; -$a->strings["Go to Your Site's Directory"] = "Mergeţi la Directorul Site-ului"; -$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."] = "Pagina Directorului vă permite să găsiţi alte persoane în această reţea sau în alte site-uri asociate. Căutaţi o legătură de Conectare sau Urmărire pe pagina lor de profil. Oferiți propria dvs. Adresă de Identitate dacă se solicită."; -$a->strings["Finding New People"] = "Găsire Persoane Noi"; -$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."] = "Pe panoul lateral al paginii Contacte sunt câteva unelte utile pentru a găsi noi prieteni. Putem asocia persoanele după interese, căuta persoane după nume sau interes, şi vă putem oferi sugestii bazate pe relaţiile din reţea. Pe un site nou-nouț, sugestiile de prietenie vor începe în mod normal să fie populate în termen de 24 de ore."; -$a->strings["Group Your Contacts"] = "Grupați-vă Contactele"; -$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."] = "Odată ce v-aţi făcut unele prietenii, organizaţi-le în grupuri de conversaţii private din bara laterală a paginii dvs. de Contact şi apoi puteţi interacționa, privat cu fiecare grup pe pagina dumneavoastră de Reţea."; -$a->strings["Why Aren't My Posts Public?"] = "De ce nu sunt Postările Mele Publice?"; -$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 vă respectă confidenţialitatea. Implicit, postările dvs. vor fi afişate numai persoanelor pe care le-ați adăugat ca și prieteni. Pentru mai multe informaţii, consultaţi secţiunea de asistenţă din legătura de mai sus."; -$a->strings["Getting Help"] = "Obţinerea de Ajutor"; -$a->strings["Go to the Help Section"] = "Navigați la Secțiunea Ajutor"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Paginile noastre de ajutor pot fi consultate pentru detalii, prin alte funcții şi resurse de program."; +$a->strings["Change profile photo"] = "Modificați Fotografia de Profil"; +$a->strings["Create New Profile"] = "Creați Profil Nou"; +$a->strings["Profile Image"] = "Imagine profil"; +$a->strings["visible to everybody"] = "vizibil pentru toata lumea"; +$a->strings["Edit visibility"] = "Editare vizibilitate"; +$a->strings["link"] = "link"; +$a->strings["Export account"] = "Exportare cont"; +$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."] = "Exportați-vă informațiile contului şi contactele. Utilizaţi aceasta pentru a face o copie de siguranţă a contului dumneavoastră şi/sau pentru a-l muta pe un alt server."; +$a->strings["Export all"] = "Exportare tot"; +$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)"] = "Exportați informațiile dvs. de cont, contactele şi toate elementele dvs., ca json. Ar putea fi un fișier foarte mare, şi ar putea lua mult timp. Utilizaţi aceasta pentru a face un backup complet al contului (fotografiile nu sunt exportate)"; +$a->strings["{0} wants to be your friend"] = "{0} doreşte să vă fie prieten"; +$a->strings["{0} sent you a message"] = "{0} v-a trimis un mesaj"; +$a->strings["{0} requested registration"] = "{0} a solicitat înregistrarea"; +$a->strings["{0} commented %s's post"] = "{0} a comentat la articolul postat de %s"; +$a->strings["{0} liked %s's post"] = "{0} a apreciat articolul postat de %s"; +$a->strings["{0} disliked %s's post"] = "{0} nu a apreciat articolul postat de %s"; +$a->strings["{0} is now friends with %s"] = "{0} este acum prieten cu %s"; +$a->strings["{0} posted"] = "{0} a postat"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} a etichetat articolul postat de %s cu #%s"; +$a->strings["{0} mentioned you in a post"] = "{0} v-a menţionat într-o postare"; +$a->strings["Nothing new here"] = "Nimic nou aici"; +$a->strings["Clear notifications"] = "Ştergeţi notificările"; +$a->strings["Not available."] = "Indisponibil."; +$a->strings["Community"] = "Comunitate"; +$a->strings["Save to Folder:"] = "Salvare în Dosar:"; +$a->strings["- select -"] = "- selectare -"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Ne pare rău, este posibil ca fișierul pe care doriți să-l încărcați, este mai mare decât permite configuraţia PHP"; +$a->strings["Or - did you try to upload an empty file?"] = "Sau - ați încercat să încărcaţi un fişier gol?"; +$a->strings["File exceeds size limit of %d"] = "Fişierul depăşeşte dimensiunea limită de %d"; +$a->strings["File upload failed."] = "Încărcarea fișierului a eşuat."; +$a->strings["Invalid profile identifier."] = "Identificator profil, invalid."; +$a->strings["Profile Visibility Editor"] = "Editor Vizibilitate Profil"; +$a->strings["Click on a contact to add or remove."] = "Apăsați pe un contact pentru a-l adăuga sau elimina."; +$a->strings["Visible To"] = "Vizibil Pentru"; +$a->strings["All Contacts (with secure profile access)"] = "Toate Contactele (cu acces profil securizat)"; +$a->strings["Do you really want to delete this suggestion?"] = "Sigur doriți să ștergeți acesta sugestie?"; +$a->strings["Friend Suggestions"] = "Sugestii de Prietenie"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nici-o sugestie disponibilă. Dacă aceasta este un site nou, vă rugăm să încercaţi din nou în 24 de ore."; +$a->strings["Connect"] = "Conectare"; +$a->strings["Ignore/Hide"] = "Ignorare/Ascundere"; +$a->strings["Access denied."] = "Accesul interzis."; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s îi urează bun venit lui %2\$s"; +$a->strings["Manage Identities and/or Pages"] = "Administrare Identităţii şi/sau Pagini"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Comutați între diferitele identităţi sau pagini de comunitate/grup, care împărtășesc detaliile contului dvs. sau pentru care v-au fost acordate drepturi de \"gestionare \""; +$a->strings["Select an identity to manage: "] = "Selectaţi o identitate de gestionat:"; +$a->strings["No potential page delegates located."] = "Nici-un delegat potenţial de pagină, nu a putut fi localizat."; +$a->strings["Delegate Page Management"] = "Delegare Gestionare Pagină"; +$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."] = "Delegații sunt capabili să gestioneze toate aspectele acestui cont/pagină, cu excepţia configurărilor de bază ale contului. Vă rugăm să nu vă delegați, contul dvs. personal, cuiva în care nu aveţi încredere deplină."; +$a->strings["Existing Page Managers"] = "Gestionari Existenți Pagină"; +$a->strings["Existing Page Delegates"] = "Delegați Existenți Pagină"; +$a->strings["Potential Delegates"] = "Potenţiali Delegaţi"; +$a->strings["Add"] = "Adăugare"; +$a->strings["No entries."] = "Nu există intrări."; +$a->strings["No contacts."] = "Nici-un contact."; +$a->strings["View Contacts"] = "Vezi Contacte"; +$a->strings["Personal Notes"] = "Note Personale"; $a->strings["Poke/Prod"] = "Abordare/Atragerea atenției"; $a->strings["poke, prod or do other things to somebody"] = "abordați, atrageți atenția sau faceți alte lucruri cuiva"; $a->strings["Recipient"] = "Destinatar"; $a->strings["Choose what you wish to do to recipient"] = "Alegeți ce doriți să faceți cu destinatarul"; $a->strings["Make this post private"] = "Faceți acest articol privat"; -$a->strings["\n\t\tDear $[username],\n\t\t\tYour password has been changed as requested. Please retain this\n\t\tinformation for your records (or change your password immediately to\n\t\tsomething that you will remember).\n\t"] = ""; -$a->strings["Item has been removed."] = "Elementul a fost eliminat."; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s urmărește %3\$s postată %2\$s"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s îi urează bun venit lui %2\$s"; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Aceasta se poate întâmpla ocazional dacă contactul a fost solicitat de către ambele persoane şi acesta a fost deja aprobat."; -$a->strings["Response from remote site was not understood."] = "Răspunsul de la adresa de la distanţă, nu a fost înțeles."; -$a->strings["Unexpected response from remote site: "] = "Răspuns neaşteptat de la site-ul de la distanţă:"; -$a->strings["Confirmation completed successfully."] = "Confirmare încheiată cu succes."; -$a->strings["Remote site reported: "] = "Site-ul de la distanţă a raportat:"; -$a->strings["Temporary failure. Please wait and try again."] = "Eroare Temporară. Vă rugăm să aşteptaţi şi încercaţi din nou."; -$a->strings["Introduction failed or was revoked."] = "Introducerea a eşuat sau a fost revocată."; -$a->strings["Unable to set contact photo."] = "Imposibil de stabilit fotografia de contact."; -$a->strings["No user record found for '%s' "] = "Nici-o înregistrare de utilizator găsită pentru '%s'"; -$a->strings["Our site encryption key is apparently messed up."] = "Se pare că, cheia de criptare a site-ului nostru s-a încurcat."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "A fost furnizată o adresă URL goală, sau adresa URL nu poate fi decriptată de noi."; -$a->strings["Contact record was not found for you on our site."] = "Registrul contactului nu a fost găsit pe site-ul nostru."; -$a->strings["Site public key not available in contact record for URL %s."] = "Cheia publică a site-ului nu este disponibilă în registrul contactului pentru URL-ul %s."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID-ul furnizat de către sistemul dumneavoastră este un duplicat pe sistemul nostru. Ar trebui să funcţioneze dacă încercaţi din nou."; -$a->strings["Unable to set your contact credentials on our system."] = "Imposibil de configurat datele dvs. de autentificare, pe sistemul nostru."; -$a->strings["Unable to update your contact profile details on our system"] = "Imposibil de actualizat detaliile de profil ale contactului dvs., pe sistemul nostru."; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s s-a alăturat lui %2\$s"; -$a->strings["Unable to locate original post."] = "Nu se poate localiza postarea originală."; -$a->strings["Empty post discarded."] = "Postarea goală a fost eliminată."; -$a->strings["System error. Post not saved."] = "Eroare de sistem. Articolul nu a fost salvat."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Acest mesaj v-a fost trimis de către %s, un membru al rețelei sociale Friendica."; -$a->strings["You may visit them online at %s"] = "Îi puteți vizita profilul online la %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Vă rugăm să contactați expeditorul răspunzând la această postare, dacă nu doriţi să primiţi aceste mesaje."; -$a->strings["%s posted an update."] = "%s a postat o actualizare."; +$a->strings["Global Directory"] = "Director Global"; +$a->strings["Find on this site"] = "Căutați pe acest site"; +$a->strings["Site Directory"] = "Director Site"; +$a->strings["Gender: "] = "Sex:"; +$a->strings["Gender:"] = "Sex:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["About:"] = "Despre:"; +$a->strings["No entries (some entries may be hidden)."] = "Fără înregistrări (unele înregistrări pot fi ascunse)."; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Time Conversion"] = "Conversie Oră"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica oferă acest serviciu pentru partajarea evenimentelor cu alte rețele și prieteni, în zonele cu fusuri orare necunoscute.\\v"; +$a->strings["UTC time: %s"] = "Fus orar UTC: %s"; +$a->strings["Current timezone: %s"] = "Fusul orar curent: %s"; +$a->strings["Converted localtime: %s"] = "Ora locală convertită: %s"; +$a->strings["Please select your timezone:"] = "Vă rugăm să vă selectaţi fusul orar:"; +$a->strings["Post successful."] = "Postat cu succes."; $a->strings["Image uploaded but image cropping failed."] = "Imaginea a fost încărcată, dar decuparea imaginii a eşuat."; $a->strings["Image size reduction [%s] failed."] = "Reducerea dimensiunea imaginii [%s] a eşuat."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Apăsați pe Shift și pe Reîncărcare Pagină sau ştergeţi memoria cache a browser-ului, dacă noua fotografie nu se afişează imediat."; @@ -1755,15 +1102,674 @@ $a->strings["Crop Image"] = "Decupare Imagine"; $a->strings["Please adjust the image cropping for optimum viewing."] = "Vă rugăm să ajustaţi decuparea imaginii pentru o vizualizare optimă."; $a->strings["Done Editing"] = "Editare Realizată"; $a->strings["Image uploaded successfully."] = "Imaginea a fost încărcată cu succes"; -$a->strings["Friends of %s"] = "Prieteni cu %s"; -$a->strings["No friends to display."] = "Nici-un prieten de afișat."; -$a->strings["Find on this site"] = "Căutați pe acest site"; -$a->strings["Site Directory"] = "Director Site"; -$a->strings["Gender: "] = "Sex:"; -$a->strings["No entries (some entries may be hidden)."] = "Fără înregistrări (unele înregistrări pot fi ascunse)."; -$a->strings["Time Conversion"] = "Conversie Oră"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica oferă acest serviciu pentru partajarea evenimentelor cu alte rețele și prieteni, în zonele cu fusuri orare necunoscute.\\v"; -$a->strings["UTC time: %s"] = "Fus orar UTC: %s"; -$a->strings["Current timezone: %s"] = "Fusul orar curent: %s"; -$a->strings["Converted localtime: %s"] = "Ora locală convertită: %s"; -$a->strings["Please select your timezone:"] = "Vă rugăm să vă selectaţi fusul orar:"; +$a->strings["Friendica Communications Server - Setup"] = "Serverul de Comunicații Friendica - Instalare"; +$a->strings["Could not connect to database."] = "Nu se poate face conectarea cu baza de date."; +$a->strings["Could not create table."] = "Nu se poate crea tabelul."; +$a->strings["Your Friendica site database has been installed."] = "Baza dvs. de date Friendica, a fost instalată."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Este posibil să fie nevoie să importați manual fişierul \"database.sql\" folosind phpmyadmin sau mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Vă rugăm să consultaţi fişierul \"INSTALL.txt\"."; +$a->strings["System check"] = "Verificare sistem"; +$a->strings["Check again"] = "Reverificare"; +$a->strings["Database connection"] = "Conexiunea cu baza de date"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pentru a instala Friendica trebuie să știm cum să vă conectaţi la baza dumneavoastră de date."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vă rugăm să vă contactaţi furnizorul găzduirii sau administratorul de site dacă aveţi întrebări despre aceste configurări."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Baza de date specificată mai jos ar trebui să existe deja. Dacă nu, vă rugăm s-o creați înainte de a continua."; +$a->strings["Database Server Name"] = "Nume Server Bază de date"; +$a->strings["Database Login Name"] = "Nume Autentificare Bază de date"; +$a->strings["Database Login Password"] = "Parola de Autentificare Bază de date"; +$a->strings["Database Name"] = "Nume Bază de date"; +$a->strings["Site administrator email address"] = "Adresa de email a administratorului de site"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Adresa de email a contului dvs. trebuie să corespundă cu aceasta pentru a utiliza panoul de administrare web."; +$a->strings["Please select a default timezone for your website"] = "Vă rugăm să selectaţi un fus orar prestabilit pentru site-ul dvs."; +$a->strings["Site settings"] = "Configurări Site"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nu s-a putut găsi o versiune a liniei de comandă PHP în CALEA serverului 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'"] = "Dacă nu aveţi o versiune a liniei de comandă PHP instalată pe server, nu veţi putea să efectuaţi interogări ciclice în fundal prin funcția cron. Consultaţi 'Activarea sarcinilor programate' "; +$a->strings["PHP executable path"] = "Calea de executare PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introduceţi calea completă către executabilul php. Puteţi lăsa acesta necompletată pentru a continua instalarea."; +$a->strings["Command line PHP"] = "linie comandă PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Executabilul PHP nu este de formă binară php-cli (ar putea fi versiunea cgi-fgci)"; +$a->strings["Found PHP version: "] = "Versiune PHP identificată:"; +$a->strings["PHP cli binary"] = "Versiune binară PHP-cli"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Versiunea liniei de comandă PHP de pe sistemul dumneavoastră nu are comanda \"register_argc_argv\" activată."; +$a->strings["This is required for message delivery to work."] = "Aceasta este necesară pentru a funcționa livrarea de mesaje."; +$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"] = "Eroare: funcția \"openssl_pkey_new\" de pe acest sistem nu este capabilă să genereze chei de criptare"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Dacă rulează pe Windows, vă rugăm să consultaţi \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Generare chei de criptare"; +$a->strings["libCurl PHP module"] = "Modulul PHP libCurl"; +$a->strings["GD graphics PHP module"] = "Modulul PHP grafică GD"; +$a->strings["OpenSSL PHP module"] = "Modulul PHP OpenSSL"; +$a->strings["mysqli PHP module"] = "Modulul PHP mysqli"; +$a->strings["mb_string PHP module"] = "Modulul PHP mb_string"; +$a->strings["Apache mod_rewrite module"] = "Modulul Apache mod_rewrite"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Eroare: Modulul mod-rewrite al serverulului Apache este necesar, dar nu este instalat."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Eroare: modulul PHP libCURL este necesar dar nu este instalat."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Eroare: Modulul PHP grafică GD cu suport JPEG, este necesar dar nu este instalat."; +$a->strings["Error: openssl PHP module required but not installed."] = "Eroare: modulul PHP libCURL este necesar dar nu este instalat."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Eroare: modulul PHP mysqli este necesar dar nu este instalat."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Eroare: modulul PHP mb_string este necesar dar nu este instalat."; +$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."] = "Expertul de instalare web trebuie să poată crea un fișier numit \".htconfig.php\" în dosarul superior al serverului dvs. web, şi nu poate face acest lucru."; +$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."] = "Aceasta este cel mai adesea o configurare de permisiune, deoarece serverul web nu ar putea fi capabil să scrie fişiere în dosarul dumneavoastră - chiar dacă dvs. puteţi."; +$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."] = "La finalul acestei proceduri, vă vom oferi un text pentru a-l salva într-un fişier numit .htconfig.php din dosarul dvs. superior Friendica."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ, puteţi omite această procedură şi să efectuaţi o instalare manuală. Vă rugăm să consultaţi fişierul \"INSTALL.txt\" pentru instrucțiuni."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php este inscriptibil"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica utilizează motorul de șablon Smarty3 pentru a prelucra vizualizările sale web. Smarty3 compilează şabloane în PHP pentru a grăbi prelucrarea."; +$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."] = "Pentru a stoca aceste şabloane compilate, serverul de web trebuie să aibă acces la scriere pentru directorul view/smarty3/ din dosarul de nivel superior Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Vă rugăm să vă asiguraţi că utilizatorul pe care rulează serverul dvs. web (de ex. www-date) are acces la scriere pentru acest dosar."; +$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."] = "Notă: ca o măsură de securitate, ar trebui să dați serverului web, acces de scriere numai pentru view/smarty3/--dar nu și fișierelor de șablon (.tpl) pe care le conţine."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 este inscriptibil"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Funcția de rescriere Url rewrite din .htaccess nu funcţionează. Verificaţi-vă configuraţia serverului."; +$a->strings["Url rewrite is working"] = "Funcția de rescriere Url rewrite, funcţionează."; +$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."] = "Fișierul de configurare baza de date \".htconfig.php\", nu a putut fi scris. Vă rugăm să utilizaţi textul închis pentru a crea un fişier de configurare în rădăcina serverului dvs. web."; +$a->strings["

What next

"] = "

Ce urmează

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Va trebui să configurați [manual] o sarcină programată pentru operatorul de sondaje."; +$a->strings["Group created."] = "Grupul a fost creat."; +$a->strings["Could not create group."] = "Grupul nu se poate crea."; +$a->strings["Group not found."] = "Grupul nu a fost găsit."; +$a->strings["Group name changed."] = "Numele grupului a fost schimbat."; +$a->strings["Save Group"] = "Salvare Grup"; +$a->strings["Create a group of contacts/friends."] = "Creaţi un grup de contacte/prieteni."; +$a->strings["Group Name: "] = "Nume Grup:"; +$a->strings["Group removed."] = "Grupul a fost eliminat."; +$a->strings["Unable to remove group."] = "Nu se poate elimina grupul."; +$a->strings["Group Editor"] = "Editor Grup"; +$a->strings["Members"] = "Membri"; +$a->strings["No such group"] = "Membrii"; +$a->strings["Group is empty"] = "Grupul este gol"; +$a->strings["Group: "] = "Grup:"; +$a->strings["View in context"] = "Vizualizare în context"; +$a->strings["Account approved."] = "Cont aprobat."; +$a->strings["Registration revoked for %s"] = "Înregistrare revocată pentru %s"; +$a->strings["Please login."] = "Vă rugăm să vă autentificați."; +$a->strings["Profile Match"] = "Potrivire Profil"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nu există cuvinte cheie pentru a le potrivi. Vă rugăm să adăugaţi cuvinte cheie la profilul dvs implicit."; +$a->strings["is interested in:"] = "are interese pentru:"; +$a->strings["Unable to locate original post."] = "Nu se poate localiza postarea originală."; +$a->strings["Empty post discarded."] = "Postarea goală a fost eliminată."; +$a->strings["System error. Post not saved."] = "Eroare de sistem. Articolul nu a fost salvat."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Acest mesaj v-a fost trimis de către %s, un membru al rețelei sociale Friendica."; +$a->strings["You may visit them online at %s"] = "Îi puteți vizita profilul online la %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Vă rugăm să contactați expeditorul răspunzând la această postare, dacă nu doriţi să primiţi aceste mesaje."; +$a->strings["%s posted an update."] = "%s a postat o actualizare."; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s este momentan %2\$s"; +$a->strings["Mood"] = "Stare de spirit"; +$a->strings["Set your current mood and tell your friends"] = "Stabiliți-vă starea de spirit curentă, şi comunicați-o prietenilor"; +$a->strings["Search Results For:"] = "Rezultatele Căutării Pentru:"; +$a->strings["add"] = "add"; +$a->strings["Commented Order"] = "Ordonare Comentarii"; +$a->strings["Sort by Comment Date"] = "Sortare după Data Comentariului"; +$a->strings["Posted Order"] = "Ordonare Postări"; +$a->strings["Sort by Post Date"] = "Sortare după Data Postării"; +$a->strings["Posts that mention or involve you"] = "Postări ce vă menționează sau vă implică"; +$a->strings["New"] = "Nou"; +$a->strings["Activity Stream - by date"] = "Flux Activități - după dată"; +$a->strings["Shared Links"] = "Linkuri partajate"; +$a->strings["Interesting Links"] = "Legături Interesante"; +$a->strings["Starred"] = "Cu steluță"; +$a->strings["Favourite Posts"] = "Postări Favorite"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Atenție: Acest grup conţine %s membru dintr-o reţea nesigură.", + 1 => "Atenție: Acest grup conţine %s membrii dintr-o reţea nesigură.", + 2 => "Atenție: Acest grup conţine %s de membrii dintr-o reţea nesigură.", +); +$a->strings["Private messages to this group are at risk of public disclosure."] = "Mesajele private către acest grup sunt supuse riscului de divulgare publică."; +$a->strings["Contact: "] = "Contact: "; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Mesajele private către această persoană sunt supuse riscului de divulgare publică."; +$a->strings["Invalid contact."] = "Invalid contact."; +$a->strings["Contact settings applied."] = "Configurările Contactului au fost aplicate."; +$a->strings["Contact update failed."] = "Actualizarea Contactului a eșuat."; +$a->strings["Repair Contact Settings"] = "Remediere Configurări Contact"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "AVERTISMENT: Această acțiune este foarte avansată şi dacă introduceţi informaţii incorecte, comunicaţiile cu acest contact se poate opri."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Vă rugăm să utilizaţi acum butonul 'Înapoi' din browser, dacă nu sunteţi sigur ce sa faceți pe această pagină."; +$a->strings["Return to contact editor"] = "Reveniţi la editorul de contact"; +$a->strings["Account Nickname"] = "Pseudonim Cont"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Nume_etichetă - suprascrie Numele/Pseudonimul"; +$a->strings["Account URL"] = "URL Cont"; +$a->strings["Friend Request URL"] = "URL Solicitare Prietenie"; +$a->strings["Friend Confirm URL"] = "URL Confirmare Prietenie"; +$a->strings["Notification Endpoint URL"] = "Punct final URL Notificare"; +$a->strings["Poll/Feed URL"] = "URL Sondaj/Flux"; +$a->strings["New photo from this URL"] = "Fotografie Nouă de la acest URL"; +$a->strings["Remote Self"] = "Auto la Distanţă"; +$a->strings["Mirror postings from this contact"] = "Postări în oglindă de la acest contact"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marcaţi acest contact ca remote_self, aceasta va determina friendica să reposteze noile articole ale acestui contact."; +$a->strings["No mirroring"] = ""; +$a->strings["Mirror as forwarded posting"] = ""; +$a->strings["Mirror as my own posting"] = ""; +$a->strings["Your posts and conversations"] = "Postările şi conversaţiile dvs."; +$a->strings["Your profile page"] = "Pagina dvs. de profil"; +$a->strings["Your contacts"] = "Contactele dvs."; +$a->strings["Your photos"] = "Fotografiile dvs."; +$a->strings["Your events"] = "Evenimentele dvs."; +$a->strings["Personal notes"] = "Note Personale"; +$a->strings["Your personal photos"] = "Fotografii dvs. personale"; +$a->strings["Community Pages"] = "Community Pagini"; +$a->strings["Community Profiles"] = "Profile de Comunitate"; +$a->strings["Last users"] = "Ultimii utilizatori"; +$a->strings["Last likes"] = "Ultimele aprecieri"; +$a->strings["event"] = "eveniment"; +$a->strings["Last photos"] = "Ultimele fotografii"; +$a->strings["Find Friends"] = "Găsire Prieteni"; +$a->strings["Local Directory"] = "Director Local"; +$a->strings["Similar Interests"] = "Interese Similare"; +$a->strings["Invite Friends"] = "Invită Prieteni"; +$a->strings["Earth Layers"] = "Straturi Pământ"; +$a->strings["Set zoomfactor for Earth Layers"] = "Stabilire factor de magnificare pentru Straturi Pământ"; +$a->strings["Set longitude (X) for Earth Layers"] = "Stabilire longitudine (X) pentru Straturi Pământ"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Stabilire latitudine (Y) pentru Straturi Pământ"; +$a->strings["Help or @NewHere ?"] = "Ajutor sau @NouAici ?"; +$a->strings["Connect Services"] = "Conectare Servicii"; +$a->strings["don't show"] = "nu afișa"; +$a->strings["show"] = "afișare"; +$a->strings["Show/hide boxes at right-hand column:"] = "Afişare/ascundere casete din coloana din dreapta:"; +$a->strings["Theme settings"] = "Configurări Temă"; +$a->strings["Set font-size for posts and comments"] = "Stabilire dimensiune font pentru postări şi comentarii"; +$a->strings["Set line-height for posts and comments"] = "Stabilire înălțime linie pentru postări şi comentarii"; +$a->strings["Set resolution for middle column"] = "Stabilire rezoluţie pentru coloana din mijloc"; +$a->strings["Set color scheme"] = "Stabilire schemă de culori"; +$a->strings["Set zoomfactor for Earth Layer"] = "Stabilire factor de magnificare pentru Straturi Pământ"; +$a->strings["Set style"] = "Stabilire stil"; +$a->strings["Set colour scheme"] = "Stabilire schemă de culori"; +$a->strings["default"] = "implicit"; +$a->strings["greenzero"] = "zeroverde"; +$a->strings["purplezero"] = "zeroviolet"; +$a->strings["easterbunny"] = ""; +$a->strings["darkzero"] = "zeronegru"; +$a->strings["comix"] = ""; +$a->strings["slackr"] = ""; +$a->strings["Variations"] = ""; +$a->strings["Alignment"] = "Aliniere"; +$a->strings["Left"] = "Stânga"; +$a->strings["Center"] = "Centrat"; +$a->strings["Color scheme"] = "Schemă culoare"; +$a->strings["Posts font size"] = "Dimensiune font postări"; +$a->strings["Textareas font size"] = "Dimensiune font zone text"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Stabiliți nivelul de redimensionare a imaginilor din postări și comentarii (lăţimea şi înălţimea)"; +$a->strings["Set theme width"] = "Stabilire lăţime temă"; +$a->strings["Delete this item?"] = "Ștergeți acest element?"; +$a->strings["show fewer"] = "afișare mai puține"; +$a->strings["Update %s failed. See error logs."] = "Actualizarea %s a eșuat. Consultaţi jurnalele de eroare."; +$a->strings["Create a New Account"] = "Creaţi un Cont Nou"; +$a->strings["Logout"] = "Deconectare"; +$a->strings["Login"] = "Login"; +$a->strings["Nickname or Email address: "] = "Pseudonimul sau Adresa de email:"; +$a->strings["Password: "] = "Parola:"; +$a->strings["Remember me"] = "Reține autentificarea"; +$a->strings["Or login using OpenID: "] = "Sau conectaţi-vă utilizând OpenID:"; +$a->strings["Forgot your password?"] = "Ați uitat parola?"; +$a->strings["Website Terms of Service"] = "Condiții de Utilizare Site Web"; +$a->strings["terms of service"] = "condiții de utilizare"; +$a->strings["Website Privacy Policy"] = "Politica de Confidențialitate Site Web"; +$a->strings["privacy policy"] = "politica de confidențialitate"; +$a->strings["Requested account is not available."] = "Contul solicitat nu este disponibil."; +$a->strings["Edit profile"] = "Editare profil"; +$a->strings["Message"] = "Mesaj"; +$a->strings["Profiles"] = "Profile"; +$a->strings["Manage/edit profiles"] = "Gestionare/editare profile"; +$a->strings["Network:"] = "Reţea:"; +$a->strings["g A l F d"] = "g A l F d"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[azi]"; +$a->strings["Birthday Reminders"] = "Memento Zile naştere "; +$a->strings["Birthdays this week:"] = "Zi;e Naştere această săptămînă:"; +$a->strings["[No description]"] = "[Fără descriere]"; +$a->strings["Event Reminders"] = "Memento Eveniment"; +$a->strings["Events this week:"] = "Evenimente în această săptămână:"; +$a->strings["Status"] = "Status"; +$a->strings["Status Messages and Posts"] = "Status Mesaje şi Postări"; +$a->strings["Profile Details"] = "Detalii Profil"; +$a->strings["Videos"] = "Clipuri video"; +$a->strings["Events and Calendar"] = "Evenimente şi Calendar"; +$a->strings["Only You Can See This"] = "Numai Dvs. Puteţi Vizualiza"; +$a->strings["General Features"] = "Caracteristici Generale"; +$a->strings["Multiple Profiles"] = "Profile Multiple"; +$a->strings["Ability to create multiple profiles"] = "Capacitatea de a crea profile multiple"; +$a->strings["Post Composition Features"] = "Caracteristici Compoziţie Postare"; +$a->strings["Richtext Editor"] = "Editor Text Îmbogățit"; +$a->strings["Enable richtext editor"] = "Activare editor text îmbogățit"; +$a->strings["Post Preview"] = "Previzualizare Postare"; +$a->strings["Allow previewing posts and comments before publishing them"] = "Permiteți previzualizarea postărilor şi comentariilor înaintea publicării lor"; +$a->strings["Auto-mention Forums"] = "Auto-menţionare Forumuri"; +$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Adăugaţi/eliminaţi mențiunea când o pagină de forum este selectată/deselectată în fereastra ACL."; +$a->strings["Network Sidebar Widgets"] = "Aplicaţii widget de Rețea în Bara Laterală"; +$a->strings["Search by Date"] = "Căutare după Dată"; +$a->strings["Ability to select posts by date ranges"] = "Abilitatea de a selecta postări după intervalele de timp"; +$a->strings["Group Filter"] = "Filtru Grup"; +$a->strings["Enable widget to display Network posts only from selected group"] = "Permiteți aplicației widget să afișeze postări din Rețea, numai din grupul selectat"; +$a->strings["Network Filter"] = "Filtru Reţea"; +$a->strings["Enable widget to display Network posts only from selected network"] = "Permiteți aplicației widget să afișeze postări din Rețea, numai din rețeaua selectată"; +$a->strings["Save search terms for re-use"] = "Salvați termenii de căutare pentru reutilizare"; +$a->strings["Network Tabs"] = "File Reţea"; +$a->strings["Network Personal Tab"] = "Filă Personală de Reţea"; +$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Permiteți filei să afişeze numai postările Reţelei cu care ați interacţionat"; +$a->strings["Network New Tab"] = "Filă Nouă de Reţea"; +$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Permiteți filei să afişeze numai postările noi din Reţea (din ultimele 12 ore)"; +$a->strings["Network Shared Links Tab"] = "Filă Legături Distribuite în Rețea"; +$a->strings["Enable tab to display only Network posts with links in them"] = "Permiteți filei să afişeze numai postările din Reţea ce conțin legături"; +$a->strings["Post/Comment Tools"] = "Instrumente Postare/Comentariu"; +$a->strings["Multiple Deletion"] = "Ştergere Multiplă"; +$a->strings["Select and delete multiple posts/comments at once"] = "Selectaţi şi ştergeţi postări/comentarii multiple simultan"; +$a->strings["Edit Sent Posts"] = "Editare Postări Trimise"; +$a->strings["Edit and correct posts and comments after sending"] = "Editarea şi corectarea postărilor şi comentariilor după postarea lor"; +$a->strings["Tagging"] = "Etichetare"; +$a->strings["Ability to tag existing posts"] = "Capacitatea de a eticheta postările existente"; +$a->strings["Post Categories"] = "Categorii Postări"; +$a->strings["Add categories to your posts"] = "Adăugaţi categorii la postările dvs."; +$a->strings["Saved Folders"] = "Dosare Salvate"; +$a->strings["Ability to file posts under folders"] = "Capacitatea de a atribui postări în dosare"; +$a->strings["Dislike Posts"] = "Respingere Postări"; +$a->strings["Ability to dislike posts/comments"] = "Capacitatea de a marca postări/comentarii ca fiind neplăcute"; +$a->strings["Star Posts"] = "Postări cu Steluță"; +$a->strings["Ability to mark special posts with a star indicator"] = "Capacitatea de a marca posturile speciale cu o stea ca şi indicator"; +$a->strings["Mute Post Notifications"] = ""; +$a->strings["Ability to mute notifications for a thread"] = ""; +$a->strings["Logged out."] = "Deconectat."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Am întâmpinat o problemă în timpul autentificării cu datele OpenID pe care le-ați furnizat."; +$a->strings["The error message was:"] = "Mesajul de eroare a fost:"; +$a->strings["Starts:"] = "Începe:"; +$a->strings["Finishes:"] = "Se finalizează:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Zile Naştere :"; +$a->strings["Age:"] = "Vârsta:"; +$a->strings["for %1\$d %2\$s"] = "pentru %1\$d %2\$s"; +$a->strings["Tags:"] = "Etichete:"; +$a->strings["Religion:"] = "Religie:"; +$a->strings["Hobbies/Interests:"] = "Hobby/Interese:"; +$a->strings["Contact information and Social Networks:"] = "Informaţii de Contact şi Reţele Sociale:"; +$a->strings["Musical interests:"] = "Preferințe muzicale:"; +$a->strings["Books, literature:"] = "Cărti, literatură:"; +$a->strings["Television:"] = "Programe TV:"; +$a->strings["Film/dance/culture/entertainment:"] = "Film/dans/cultură/divertisment:"; +$a->strings["Love/Romance:"] = "Dragoste/Romantism:"; +$a->strings["Work/employment:"] = "Loc de Muncă/Slujbă:"; +$a->strings["School/education:"] = "Școală/educatie:"; +$a->strings["[no subject]"] = "[fără subiect]"; +$a->strings[" on Last.fm"] = "pe Last.fm"; +$a->strings["newer"] = "mai noi"; +$a->strings["older"] = "mai vechi"; +$a->strings["prev"] = "preced"; +$a->strings["first"] = "prima"; +$a->strings["last"] = "ultima"; +$a->strings["next"] = "următor"; +$a->strings["No contacts"] = "Nici-un contact"; +$a->strings["%d Contact"] = array( + 0 => "%d Contact", + 1 => "%d Contacte", + 2 => "%d de Contacte", +); +$a->strings["poke"] = "abordare"; +$a->strings["poked"] = "a fost abordat(ă)"; +$a->strings["ping"] = "ping"; +$a->strings["pinged"] = "i s-a trimis ping"; +$a->strings["prod"] = "prod"; +$a->strings["prodded"] = "i s-a atras atenția"; +$a->strings["slap"] = "plesnire"; +$a->strings["slapped"] = "a fost plesnit(ă)"; +$a->strings["finger"] = "indicare"; +$a->strings["fingered"] = "a fost indicat(ă)"; +$a->strings["rebuff"] = "respingere"; +$a->strings["rebuffed"] = "a fost respins(ă)"; +$a->strings["happy"] = "fericit(ă)"; +$a->strings["sad"] = "trist(ă)"; +$a->strings["mellow"] = "trist(ă)"; +$a->strings["tired"] = "obosit(ă)"; +$a->strings["perky"] = "arogant(ă)"; +$a->strings["angry"] = "supărat(ă)"; +$a->strings["stupified"] = "stupefiat(ă)"; +$a->strings["puzzled"] = "nedumerit(ă)"; +$a->strings["interested"] = "interesat(ă)"; +$a->strings["bitter"] = "amarnic"; +$a->strings["cheerful"] = "vesel(ă)"; +$a->strings["alive"] = "plin(ă) de viață"; +$a->strings["annoyed"] = "enervat(ă)"; +$a->strings["anxious"] = "neliniştit(ă)"; +$a->strings["cranky"] = "irascibil(ă)"; +$a->strings["disturbed"] = "perturbat(ă)"; +$a->strings["frustrated"] = "frustrat(ă)"; +$a->strings["motivated"] = "motivat(ă)"; +$a->strings["relaxed"] = "relaxat(ă)"; +$a->strings["surprised"] = "surprins(ă)"; +$a->strings["Monday"] = "Luni"; +$a->strings["Tuesday"] = "Marţi"; +$a->strings["Wednesday"] = "Miercuri"; +$a->strings["Thursday"] = "Joi"; +$a->strings["Friday"] = "Vineri"; +$a->strings["Saturday"] = "Sâmbătă"; +$a->strings["Sunday"] = "Duminică"; +$a->strings["January"] = "Ianuarie"; +$a->strings["February"] = "Februarie"; +$a->strings["March"] = "Martie"; +$a->strings["April"] = "Aprilie"; +$a->strings["May"] = "Mai"; +$a->strings["June"] = "Iunie"; +$a->strings["July"] = "Iulie"; +$a->strings["August"] = "August"; +$a->strings["September"] = "Septembrie"; +$a->strings["October"] = "Octombrie"; +$a->strings["November"] = "Noiembrie"; +$a->strings["December"] = "Decembrie"; +$a->strings["bytes"] = "octeţi"; +$a->strings["Click to open/close"] = "Apăsați pentru a deschide/închide"; +$a->strings["Select an alternate language"] = "Selectați o limbă alternativă"; +$a->strings["activity"] = "activitate"; +$a->strings["post"] = "postare"; +$a->strings["Item filed"] = "Element îndosariat"; +$a->strings["User not found."] = "Utilizatorul nu a fost găsit."; +$a->strings["There is no status with this id."] = "Nu există nici-un status cu acest id."; +$a->strings["There is no conversation with this id."] = "Nu există nici-o conversație cu acest id."; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Nu se pot localiza informațiile DNS pentru serverul de bază de date '%s'"; +$a->strings["%s's birthday"] = "%s's zi de naştere"; +$a->strings["Happy Birthday %s"] = "La mulţi ani %s"; +$a->strings["Do you really want to delete this item?"] = "Sigur doriți să ștergeți acest element?"; +$a->strings["Archives"] = "Arhive"; +$a->strings["(no subject)"] = "(fără subiect)"; +$a->strings["noreply"] = "nu-răspundeţi"; +$a->strings["Sharing notification from Diaspora network"] = "Partajarea notificării din reţeaua Diaspora"; +$a->strings["Attachments:"] = "Atașări:"; +$a->strings["Connect URL missing."] = "Lipseşte URL-ul de conectare."; +$a->strings["This site is not configured to allow communications with other networks."] = "Acest site nu este configurat pentru a permite comunicarea cu alte reţele."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Nu au fost descoperite protocoale de comunicaţii sau fluxuri compatibile."; +$a->strings["The profile address specified does not provide adequate information."] = "Adresa de profil specificată nu furnizează informații adecvate."; +$a->strings["An author or name was not found."] = "Un autor sau nume nu a fost găsit."; +$a->strings["No browser URL could be matched to this address."] = "Nici un URL de browser nu a putut fi corelat cu această adresă."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Nu se poate corela @-stilul pentru Adresa de Identitatea cu un protocol cunoscut sau contact de email."; +$a->strings["Use mailto: in front of address to force email check."] = "Utilizaţi mailto: în faţa adresei pentru a forţa verificarea de email."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Adresa de profil specificată aparţine unei reţele care a fost dezactivată pe acest site."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limitat. Această persoană nu va putea primi notificări directe/personale, de la dvs."; +$a->strings["Unable to retrieve contact information."] = "Nu se pot localiza informaţiile de contact."; +$a->strings["following"] = "urmărire"; +$a->strings["Welcome "] = "Bine ați venit"; +$a->strings["Please upload a profile photo."] = "Vă rugăm să încărcaţi o fotografie de profil."; +$a->strings["Welcome back "] = "Bine ați revenit"; +$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."] = "Formarea codului de securitate, nu a fost corectă. Aceasta probabil s-a întâmplat pentru că formularul a fost deschis pentru prea mult timp ( >3 ore) înainte de a-l transmite."; +$a->strings["Male"] = "Bărbat"; +$a->strings["Female"] = "Femeie"; +$a->strings["Currently Male"] = "În prezent Bărbat"; +$a->strings["Currently Female"] = "În prezent Femeie"; +$a->strings["Mostly Male"] = "Mai mult Bărbat"; +$a->strings["Mostly Female"] = "Mai mult Femeie"; +$a->strings["Transgender"] = "Transsexual"; +$a->strings["Intersex"] = "Intersexual"; +$a->strings["Transsexual"] = "Transsexual"; +$a->strings["Hermaphrodite"] = "Hermafrodit"; +$a->strings["Neuter"] = "Neutru"; +$a->strings["Non-specific"] = "Non-specific"; +$a->strings["Other"] = "Alta"; +$a->strings["Undecided"] = "Indecisă"; +$a->strings["Males"] = "Bărbați"; +$a->strings["Females"] = "Femei"; +$a->strings["Gay"] = "Gay"; +$a->strings["Lesbian"] = "Lesbiană"; +$a->strings["No Preference"] = "Fără Preferințe"; +$a->strings["Bisexual"] = "Bisexual"; +$a->strings["Autosexual"] = "Autosexual"; +$a->strings["Abstinent"] = "Abstinent(ă)"; +$a->strings["Virgin"] = "Virgin(ă)"; +$a->strings["Deviant"] = "Deviant"; +$a->strings["Fetish"] = "Fetish"; +$a->strings["Oodles"] = "La grămadă"; +$a->strings["Nonsexual"] = "Nonsexual"; +$a->strings["Single"] = "Necăsătorit(ă)"; +$a->strings["Lonely"] = "Singur(ă)"; +$a->strings["Available"] = "Disponibil(ă)"; +$a->strings["Unavailable"] = "Indisponibil(ă)"; +$a->strings["Has crush"] = "Îndrăgostit(ă)"; +$a->strings["Infatuated"] = "Îndrăgostit(ă) nebunește"; +$a->strings["Dating"] = "Am întâlniri"; +$a->strings["Unfaithful"] = "Infidel(ă)"; +$a->strings["Sex Addict"] = "Dependent(ă) de Sex"; +$a->strings["Friends"] = "Prieteni"; +$a->strings["Friends/Benefits"] = "Prietenii/Prestaţii"; +$a->strings["Casual"] = "Ocazional"; +$a->strings["Engaged"] = "Cuplat"; +$a->strings["Married"] = "Căsătorit(ă)"; +$a->strings["Imaginarily married"] = "Căsătorit(ă) imaginar"; +$a->strings["Partners"] = "Parteneri"; +$a->strings["Cohabiting"] = "În conviețuire"; +$a->strings["Common law"] = "Drept Comun"; +$a->strings["Happy"] = "Fericit(ă)"; +$a->strings["Not looking"] = "Nu caut"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Înșelat(ă)"; +$a->strings["Separated"] = "Separat(ă)"; +$a->strings["Unstable"] = "Instabil(ă)"; +$a->strings["Divorced"] = "Divorţat(ă)"; +$a->strings["Imaginarily divorced"] = "Divorţat(ă) imaginar"; +$a->strings["Widowed"] = "Văduv(ă)"; +$a->strings["Uncertain"] = "Incert"; +$a->strings["It's complicated"] = "E complicat"; +$a->strings["Don't care"] = "Nu-mi pasă"; +$a->strings["Ask me"] = "Întreabă-mă"; +$a->strings["Error decoding account file"] = "Eroare la decodarea fişierului de cont"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Eroare! Nu există data versiunii în fişier! Acesta nu este un fișier de cont Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Eroare! Nu pot verifica pseudonimul"; +$a->strings["User '%s' already exists on this server!"] = "Utilizatorul '%s' există deja pe acest server!"; +$a->strings["User creation error"] = "Eroare la crearea utilizatorului"; +$a->strings["User profile creation error"] = "Eroare la crearea profilului utilizatorului"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contact neimportat", + 1 => "%d contacte neimportate", + 2 => "%d de contacte neimportate", +); +$a->strings["Done. You can now login with your username and password"] = "Realizat. Vă puteţi conecta acum cu parola şi numele dumneavoastră de utilizator"; +$a->strings["Click here to upgrade."] = "Apăsați aici pentru a actualiza."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Această acţiune depăşeşte limitele stabilite de planul abonamentului dvs."; +$a->strings["This action is not available under your subscription plan."] = "Această acţiune nu este disponibilă în planul abonamentului dvs."; +$a->strings["%1\$s poked %2\$s"] = "%1\$s a abordat pe %2\$s"; +$a->strings["post/item"] = "post/element"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s a marcat %3\$s de la %2\$s ca favorit"; +$a->strings["remove"] = "eliminare"; +$a->strings["Delete Selected Items"] = "Ștergeți Elementele Selectate"; +$a->strings["Follow Thread"] = "Urmăriți Firul Conversației"; +$a->strings["View Status"] = "Vizualizare Status"; +$a->strings["View Profile"] = "Vizualizare Profil"; +$a->strings["View Photos"] = "Vizualizare Fotografii"; +$a->strings["Network Posts"] = "Postări din Rețea"; +$a->strings["Edit Contact"] = "Edit Contact"; +$a->strings["Send PM"] = "Trimiteți mesaj personal"; +$a->strings["Poke"] = "Abordare"; +$a->strings["%s likes this."] = "%s apreciază aceasta."; +$a->strings["%s doesn't like this."] = "%s nu apreciază aceasta."; +$a->strings["%2\$d people like this"] = "%2\$d persoane apreciază aceasta"; +$a->strings["%2\$d people don't like this"] = "%2\$d persoanenu apreciază aceasta"; +$a->strings["and"] = "şi"; +$a->strings[", and %d other people"] = ", şi %d alte persoane"; +$a->strings["%s like this."] = "%s apreciază aceasta."; +$a->strings["%s don't like this."] = "%s nu apreciază aceasta."; +$a->strings["Visible to everybody"] = "Vizibil pentru toți"; +$a->strings["Please enter a video link/URL:"] = "Vă rugăm să introduceți un URL/legătură pentru clip video"; +$a->strings["Please enter an audio link/URL:"] = "Vă rugăm să introduceți un URL/legătură pentru clip audio"; +$a->strings["Tag term:"] = "Termen etichetare:"; +$a->strings["Where are you right now?"] = "Unde vă aflați acum?"; +$a->strings["Delete item(s)?"] = "Ștergeți element(e)?"; +$a->strings["Post to Email"] = "Postați prin Email"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectorii au fost dezactivați, din moment ce \"%s\" este activat."; +$a->strings["permissions"] = "permisiuni"; +$a->strings["Post to Groups"] = "Postați în Grupuri"; +$a->strings["Post to Contacts"] = "Post către Contacte"; +$a->strings["Private post"] = "Articol privat"; +$a->strings["Add New Contact"] = "Add Contact Nou"; +$a->strings["Enter address or web location"] = "Introduceţi adresa sau locaţia web"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemplu: bob@example.com, http://example.com/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d invitație disponibilă", + 1 => "%d invitații disponibile", + 2 => "%d de invitații disponibile", +); +$a->strings["Find People"] = "Căutați Persoane"; +$a->strings["Enter name or interest"] = "Introduceţi numele sau interesul"; +$a->strings["Connect/Follow"] = "Conectare/Urmărire"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemple: Robert Morgenstein, Pescuit"; +$a->strings["Random Profile"] = "Profil Aleatoriu"; +$a->strings["Networks"] = "Rețele"; +$a->strings["All Networks"] = "Toate Reţelele"; +$a->strings["Everything"] = "Totul"; +$a->strings["Categories"] = "Categorii"; +$a->strings["End this session"] = "Finalizați această sesiune"; +$a->strings["Your videos"] = "Fișierele tale video"; +$a->strings["Your personal notes"] = "Notele tale personale"; +$a->strings["Sign in"] = "Autentificare"; +$a->strings["Home Page"] = "Home Pagina"; +$a->strings["Create an account"] = "Creați un cont"; +$a->strings["Help and documentation"] = "Ajutor şi documentaţie"; +$a->strings["Apps"] = "Aplicații"; +$a->strings["Addon applications, utilities, games"] = "Suplimente la aplicații, utilitare, jocuri"; +$a->strings["Search site content"] = "Căutare în conținut site"; +$a->strings["Conversations on this site"] = "Conversaţii pe acest site"; +$a->strings["Directory"] = "Director"; +$a->strings["People directory"] = "Director persoane"; +$a->strings["Information"] = "Informaţii"; +$a->strings["Information about this friendica instance"] = "Informaţii despre această instanță friendica"; +$a->strings["Conversations from your friends"] = "Conversaţiile prieteniilor dvs."; +$a->strings["Network Reset"] = "Resetare Reţea"; +$a->strings["Load Network page with no filters"] = "Încărcare pagina de Reţea fără filtre"; +$a->strings["Friend Requests"] = "Solicitări Prietenie"; +$a->strings["See all notifications"] = "Consultaţi toate notificările"; +$a->strings["Mark all system notifications seen"] = "Marcaţi toate notificările de sistem, ca și vizualizate"; +$a->strings["Private mail"] = "Mail privat"; +$a->strings["Inbox"] = "Mesaje primite"; +$a->strings["Outbox"] = "Căsuță de Ieșire"; +$a->strings["Manage"] = "Gestionare"; +$a->strings["Manage other pages"] = "Gestionează alte pagini"; +$a->strings["Account settings"] = "Configurări Cont"; +$a->strings["Manage/Edit Profiles"] = "Gestionare/Editare Profile"; +$a->strings["Manage/edit friends and contacts"] = "Gestionare/Editare prieteni şi contacte"; +$a->strings["Site setup and configuration"] = "Instalare şi configurare site"; +$a->strings["Navigation"] = "Navigare"; +$a->strings["Site map"] = "Hartă Site"; +$a->strings["Unknown | Not categorised"] = "Necunoscut | Fără categorie"; +$a->strings["Block immediately"] = "Blocare Imediată"; +$a->strings["Shady, spammer, self-marketer"] = "Dubioșii, spammerii, auto-promoterii"; +$a->strings["Known to me, but no opinion"] = "Cunoscut mie, dar fără o opinie"; +$a->strings["OK, probably harmless"] = "OK, probabil inofensiv"; +$a->strings["Reputable, has my trust"] = "Cu reputație, are încrederea mea"; +$a->strings["Weekly"] = "Săptămânal"; +$a->strings["Monthly"] = "Lunar"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Conector Diaspora"; +$a->strings["Statusnet"] = "Statusnet"; +$a->strings["App.net"] = "App.net"; +$a->strings["Friendica Notification"] = "Notificare Friendica"; +$a->strings["Thank You,"] = "Vă mulțumim,"; +$a->strings["%s Administrator"] = "%s Administrator"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificare] Mail nou primit la %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s v-a trimis un nou mesaj privat la %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s v-a trimis %2\$s"; +$a->strings["a private message"] = "un mesaj privat"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la mesaje private."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s a comentat la [url=%2\$s]a %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s a comentat la [url=%2\$s]%4\$s postat de %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s a comentat la [url=%2\$s]%3\$s dvs.[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notificare] Comentariu la conversaţia #%1\$d postată de %2\$s"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s a comentat la un element/conversaţie pe care o urmăriți."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Vă rugăm să vizitați %s pentru a vizualiza şi/sau răspunde la conversație."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notificare] %s a postat pe peretele dvs. de profil"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s a postat pe peretele dvs. de profil la %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s a postat pe [url=%2\$s]peretele dvs.[/url]"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notificare] %s v-a etichetat"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s v-a etichetat la %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]v-a etichetat[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notificare] %s a distribuit o nouă postare"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s a distribuit o nouă postare la %2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s] a distribuit o postare[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notificare] %1\$s v-a abordat"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s v-a abordat la %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]v-a abordat[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificare] %s v-a etichetat postarea"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$sv-a etichetat postarea la %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s a etichetat [url=%2\$s]postarea dvs.[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificare] Prezentare primită"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Aţi primit o prezentare de la '%1\$s' at %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Aţi primit [url=%1\$s]o prezentare[/url] de la %2\$s."; +$a->strings["You may visit their profile at %s"] = "Le puteți vizita profilurile, online pe %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge prezentarea."; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = ""; +$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s împărtăşeşte cu dvs. la %2\$s"; +$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notify] Aveţi un nou susținător la"; +$a->strings["You have a new follower at %2\$s : %1\$s"] = "Aveţi un nou susținător la %2\$s : %1\$s"; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notificare] Ați primit o sugestie de prietenie"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Ați primit o sugestie de prietenie de la '%1\$s' la %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Aţi primit [url=%1\$s]o sugestie de prietenie[/url] pentru %2\$s de la %3\$s."; +$a->strings["Name:"] = "Nume:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge sugestia."; +$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notificare] Conectare acceptată"; +$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = ""; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = ""; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = ""; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; +$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = ""; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = ""; +$a->strings["[Friendica System:Notify] registration request"] = ""; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = ""; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = ""; +$a->strings["Please visit %s to approve or reject the request."] = "Vă rugăm să vizitați %s pentru a aproba sau pentru a respinge cererea."; +$a->strings["An invitation is required."] = "O invitaţie este necesară."; +$a->strings["Invitation could not be verified."] = "Invitația nu s-a putut verifica."; +$a->strings["Invalid OpenID url"] = "URL OpenID invalid"; +$a->strings["Please enter the required information."] = "Vă rugăm să introduceți informațiile solicitate."; +$a->strings["Please use a shorter name."] = "Vă rugăm să utilizaţi un nume mai scurt."; +$a->strings["Name too short."] = "Numele este prea scurt."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Acesta nu pare a fi Numele (Prenumele) dvs. complet"; +$a->strings["Your email domain is not among those allowed on this site."] = "Domeniul dvs. de email nu este printre cele permise pe acest site."; +$a->strings["Not a valid email address."] = "Nu este o adresă vaildă de email."; +$a->strings["Cannot use that email."] = "Nu se poate utiliza acest email."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = " \"Pseudonimul\" dvs. poate conţine numai \"a-z\", \"0-9\", \"-\",, şi \"_\", şi trebuie de asemenea să înceapă cu o literă."; +$a->strings["Nickname is already registered. Please choose another."] = "Pseudonimul este deja înregistrat. Vă rugăm, alegeți un altul."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Pseudonimul a fost înregistrat aici, şi e posibil să nu mai poată fi reutilizat. Vă rugăm, alegeți altul."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "EROARE GRAVĂ: Generarea de chei de securitate a eşuat."; +$a->strings["An error occurred during registration. Please try again."] = "A intervenit o eroare în timpul înregistrării. Vă rugăm să reîncercați."; +$a->strings["An error occurred creating your default profile. Please try again."] = "A intervenit o eroare la crearea profilului dvs. implicit. Vă rugăm să reîncercați."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = ""; +$a->strings["Visible to everybody"] = "Vizibil pentru toata lumea"; +$a->strings["Image/photo"] = "Imagine/fotografie"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["%s wrote the following post"] = "%s a scris următoarea postare"; +$a->strings["$1 wrote:"] = "$1 a scris:"; +$a->strings["Encrypted content"] = "Conţinut criptat"; +$a->strings["Embedded content"] = "Conţinut încorporat"; +$a->strings["Embedding disabled"] = "Încorporarea conținuturilor este dezactivată"; +$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 grup şters cu acest nume a fost restabilit. Permisiunile existente ale elementului, potfi aplicate acestui grup şi oricăror viitori membrii. Dacă aceasta nu este ceea ați intenționat să faceți, vă rugăm să creaţi un alt grup cu un un nume diferit."; +$a->strings["Default privacy group for new contacts"] = "Confidenţialitatea implicită a grupului pentru noi contacte"; +$a->strings["Everybody"] = "Toată lumea"; +$a->strings["edit"] = "editare"; +$a->strings["Edit group"] = "Editare grup"; +$a->strings["Create a new group"] = "Creați un nou grup"; +$a->strings["Contacts not in any group"] = "Contacte ce nu se află în orice grup"; +$a->strings["stopped following"] = "urmărire întreruptă"; +$a->strings["Drop Contact"] = "Eliminare Contact"; +$a->strings["Miscellaneous"] = "Diverse"; +$a->strings["year"] = "an"; +$a->strings["month"] = "lună"; +$a->strings["day"] = "zi"; +$a->strings["never"] = "niciodată"; +$a->strings["less than a second ago"] = "acum mai puțin de o secundă"; +$a->strings["years"] = "ani"; +$a->strings["months"] = "luni"; +$a->strings["week"] = "săptămână"; +$a->strings["weeks"] = "săptămâni"; +$a->strings["days"] = "zile"; +$a->strings["hour"] = "oră"; +$a->strings["hours"] = "ore"; +$a->strings["minute"] = "minut"; +$a->strings["minutes"] = "minute"; +$a->strings["second"] = "secundă"; +$a->strings["seconds"] = "secunde"; +$a->strings["%1\$d %2\$s ago"] = "acum %1\$d %2\$s"; +$a->strings["view full size"] = "vezi intreaga mărime"; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = ""; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Mesajul de eroare este\n[pre]%s[/pre]"; +$a->strings["Errors encountered creating database tables."] = "Erori întâlnite la crearea tabelelor bazei de date."; +$a->strings["Errors encountered performing database changes."] = "Erori întâlnite la operarea de modificări în baza de date."; diff --git a/view/templates/admin_aside.tpl b/view/templates/admin_aside.tpl index a9d26a89f0..0f28a1cf37 100644 --- a/view/templates/admin_aside.tpl +++ b/view/templates/admin_aside.tpl @@ -40,3 +40,8 @@ +

{{$diagnosticstxt}}

+ diff --git a/view/templates/admin_logs.tpl b/view/templates/admin_logs.tpl index e5412429f4..4cc0acb66c 100644 --- a/view/templates/admin_logs.tpl +++ b/view/templates/admin_logs.tpl @@ -2,13 +2,13 @@

{{$title}} - {{$page}}

- + {{include file="field_checkbox.tpl" field=$debugging}} {{include file="field_input.tpl" field=$logfile}} {{include file="field_select.tpl" field=$loglevel}} -
+
diff --git a/view/templates/admin_remoteupdate.tpl b/view/templates/admin_remoteupdate.tpl index 24f7f9bfa6..c3e85f2e80 100644 --- a/view/templates/admin_remoteupdate.tpl +++ b/view/templates/admin_remoteupdate.tpl @@ -66,7 +66,7 @@

Friendica Update

- +
@@ -77,10 +77,10 @@
New version:
{{$remoteversion}}
- + {{if $canwrite}} -
+
{{else}}

Your friendica installation is not writable by web server.

{{if $canftp}} @@ -89,7 +89,7 @@ {{include file="field_input.tpl" field=$ftppath}} {{include file="field_input.tpl" field=$ftpuser}} {{include file="field_password.tpl" field=$ftppwd}} -
+
{{/if}} {{/if}}
diff --git a/view/templates/admin_site.tpl b/view/templates/admin_site.tpl index 166b35e7d4..6880f0fd91 100644 --- a/view/templates/admin_site.tpl +++ b/view/templates/admin_site.tpl @@ -46,7 +46,10 @@ {{include file="field_input.tpl" field=$sitename}} {{include file="field_input.tpl" field=$hostname}} + {{include file="field_input.tpl" field=$sender_email}} {{include file="field_textarea.tpl" field=$banner}} + {{include file="field_input.tpl" field=$shortcut_icon}} + {{include file="field_input.tpl" field=$touch_icon}} {{include file="field_textarea.tpl" field=$info}} {{include file="field_select.tpl" field=$language}} {{include file="field_select.tpl" field=$theme}} @@ -58,7 +61,7 @@ {{include file="field_select.tpl" field=$singleuser}} -
+

{{$registration}}

{{include file="field_input.tpl" field=$register_text}} @@ -68,7 +71,7 @@ {{include file="field_checkbox.tpl" field=$no_openid}} {{include file="field_checkbox.tpl" field=$no_regfullname}} -
+

{{$upload}}

{{include file="field_input.tpl" field=$maximagesize}} @@ -80,7 +83,8 @@ {{include file="field_input.tpl" field=$allowed_email}} {{include file="field_checkbox.tpl" field=$block_public}} {{include file="field_checkbox.tpl" field=$force_publish}} - {{include file="field_checkbox.tpl" field=$no_community_page}} + {{include file="field_select.tpl" field=$community_page_style}} + {{include file="field_input.tpl" field=$max_author_posts_community_page}} {{include file="field_checkbox.tpl" field=$ostatus_disabled}} {{include file="field_select.tpl" field=$ostatus_poll_interval}} {{include file="field_checkbox.tpl" field=$diaspora_enabled}} @@ -92,7 +96,7 @@ {{include file="field_checkbox.tpl" field=$private_addons}} {{include file="field_checkbox.tpl" field=$disable_embedded}} {{include file="field_checkbox.tpl" field=$allow_users_remote_self}} -
+

{{$advanced}}

{{include file="field_checkbox.tpl" field=$no_utf}} @@ -108,15 +112,17 @@ {{include file="field_input.tpl" field=$temppath}} {{include file="field_input.tpl" field=$basepath}} {{include file="field_checkbox.tpl" field=$suppress_language}} + {{include file="field_checkbox.tpl" field=$suppress_tags}}

{{$performance}}

- {{include file="field_checkbox.tpl" field=$disable_noscrape}} {{include file="field_checkbox.tpl" field=$use_fulltext_engine}} + {{include file="field_checkbox.tpl" field=$only_tag_search}} {{include file="field_input.tpl" field=$itemcache}} {{include file="field_input.tpl" field=$itemcache_duration}} {{include file="field_input.tpl" field=$max_comments}} {{include file="field_checkbox.tpl" field=$proxy_disabled}} -
+ {{include file="field_checkbox.tpl" field=$old_pager}} +
@@ -125,8 +131,8 @@

{{$relocate}}

{{include file="field_input.tpl" field=$relocate_url}} - -
+ +
diff --git a/view/templates/admin_summary.tpl b/view/templates/admin_summary.tpl index aaa8c95408..8a3ac5bf0a 100644 --- a/view/templates/admin_summary.tpl +++ b/view/templates/admin_summary.tpl @@ -27,7 +27,7 @@
{{$plugins.0}}
{{foreach $plugins.1 as $p}} -
{{$p}}
+
{{$p}}
{{/foreach}} diff --git a/view/templates/admin_users.tpl b/view/templates/admin_users.tpl index 4e0b9650ef..fc3c6377f1 100644 --- a/view/templates/admin_users.tpl +++ b/view/templates/admin_users.tpl @@ -43,7 +43,7 @@ -
+
{{else}}

{{$no_pending}}

{{/if}} @@ -88,7 +88,7 @@ -
+
{{else}} NO USERS?!? {{/if}} @@ -133,6 +133,6 @@ -
+
diff --git a/view/templates/album_edit.tpl b/view/templates/album_edit.tpl index 72aedd8b70..3d1d7573d7 100644 --- a/view/templates/album_edit.tpl +++ b/view/templates/album_edit.tpl @@ -4,12 +4,12 @@ - +
- - + + diff --git a/view/templates/auto_request.tpl b/view/templates/auto_request.tpl index 8d7d3ff3d9..b987b7849c 100644 --- a/view/templates/auto_request.tpl +++ b/view/templates/auto_request.tpl @@ -26,9 +26,9 @@ {{if $myaddr}} {{$myaddr}} - + {{else}} - + {{/if}}
@@ -39,7 +39,7 @@
- - + +
diff --git a/view/templates/comment_item.tpl b/view/templates/comment_item.tpl index 621c15d43e..fa360df3a8 100644 --- a/view/templates/comment_item.tpl +++ b/view/templates/comment_item.tpl @@ -22,14 +22,14 @@ {{/if}}
diff --git a/view/templates/confirm.tpl b/view/templates/confirm.tpl index 6744ac4f74..bb9e159078 100644 --- a/view/templates/confirm.tpl +++ b/view/templates/confirm.tpl @@ -4,11 +4,11 @@ {{$message}} {{foreach $extra_inputs as $input}} - + {{/foreach}} - - + + diff --git a/view/templates/contact_edit.tpl b/view/templates/contact_edit.tpl index 9b57f17417..65af34c6bb 100644 --- a/view/templates/contact_edit.tpl +++ b/view/templates/contact_edit.tpl @@ -73,7 +73,7 @@

{{$lbl_info1}}

- +
@@ -85,7 +85,7 @@ {{$profile_select}}
- + diff --git a/view/templates/contacts-template.tpl b/view/templates/contacts-template.tpl index 5797196ebb..896f9af4c9 100644 --- a/view/templates/contacts-template.tpl +++ b/view/templates/contacts-template.tpl @@ -6,8 +6,8 @@
{{$desc}} - - + +
@@ -21,7 +21,7 @@
{{foreach $batch_actions as $n=>$l}} - + {{/foreach}}
diff --git a/view/templates/crepair.tpl b/view/templates/crepair.tpl index 37e2ef417b..a94f1f2d3c 100644 --- a/view/templates/crepair.tpl +++ b/view/templates/crepair.tpl @@ -3,35 +3,35 @@

{{$contact_name}}

- +
- +
- +
- +
- +
- +
- +
- +
@@ -42,7 +42,7 @@ {{include file="field_select.tpl" field=$remote_self}} {{/if}} - + diff --git a/view/templates/cropbody.tpl b/view/templates/cropbody.tpl index 47bb73b47a..4cf030bc9d 100644 --- a/view/templates/cropbody.tpl +++ b/view/templates/cropbody.tpl @@ -52,7 +52,7 @@
- +
diff --git a/view/templates/dfrn_req_confirm.tpl b/view/templates/dfrn_req_confirm.tpl index accfd4f83f..d49b5bbf2d 100644 --- a/view/templates/dfrn_req_confirm.tpl +++ b/view/templates/dfrn_req_confirm.tpl @@ -17,6 +17,6 @@
- +
\ No newline at end of file diff --git a/view/templates/dfrn_request.tpl b/view/templates/dfrn_request.tpl index d724785865..44c8ef1e6a 100644 --- a/view/templates/dfrn_request.tpl +++ b/view/templates/dfrn_request.tpl @@ -25,9 +25,9 @@ {{if $myaddr}} {{$myaddr}} - + {{else}} - + {{/if}}
@@ -69,7 +69,7 @@
- - + +
diff --git a/view/templates/directory_header.tpl b/view/templates/directory_header.tpl index 29393aeda3..2274f2e1f8 100644 --- a/view/templates/directory_header.tpl +++ b/view/templates/directory_header.tpl @@ -9,8 +9,8 @@
{{$desc}} - - + +
diff --git a/view/templates/event_form.tpl b/view/templates/event_form.tpl index cb7ba53af0..45e2ea71e0 100644 --- a/view/templates/event_form.tpl +++ b/view/templates/event_form.tpl @@ -28,7 +28,7 @@
{{$t_text}}
- +
{{$d_text}}
@@ -44,7 +44,7 @@ {{$acl}}
- + diff --git a/view/templates/field_combobox.tpl b/view/templates/field_combobox.tpl index 3d69e2d272..a2f7c3f27e 100644 --- a/view/templates/field_combobox.tpl +++ b/view/templates/field_combobox.tpl @@ -4,13 +4,13 @@ {{* html5 don't work on Chrome, Safari and IE9 - {{foreach $field.4 as $opt=>$val}} *}} {{$field.3}} diff --git a/view/templates/field_input.tpl b/view/templates/field_input.tpl index 41a636fca4..6a3328c5cc 100644 --- a/view/templates/field_input.tpl +++ b/view/templates/field_input.tpl @@ -1,6 +1,6 @@
- + {{$field.3}}
diff --git a/view/templates/field_intcheckbox.tpl b/view/templates/field_intcheckbox.tpl index dd77e50018..2f3c27d920 100644 --- a/view/templates/field_intcheckbox.tpl +++ b/view/templates/field_intcheckbox.tpl @@ -2,6 +2,6 @@
- + {{$field.4}}
diff --git a/view/templates/field_openid.tpl b/view/templates/field_openid.tpl index d8a9394a15..e5f236c679 100644 --- a/view/templates/field_openid.tpl +++ b/view/templates/field_openid.tpl @@ -1,6 +1,6 @@
- + {{$field.3}}
diff --git a/view/templates/field_password.tpl b/view/templates/field_password.tpl index 5dd2c5d3f8..8a9f0dc330 100644 --- a/view/templates/field_password.tpl +++ b/view/templates/field_password.tpl @@ -1,6 +1,6 @@
- + {{$field.3}}
diff --git a/view/templates/field_radio.tpl b/view/templates/field_radio.tpl index 09db114720..86cc8fc47e 100644 --- a/view/templates/field_radio.tpl +++ b/view/templates/field_radio.tpl @@ -2,6 +2,6 @@
- + {{$field.3}}
diff --git a/view/templates/field_select.tpl b/view/templates/field_select.tpl index a3274f51af..4fbbd4beb0 100644 --- a/view/templates/field_select.tpl +++ b/view/templates/field_select.tpl @@ -3,7 +3,7 @@
{{$field.3}}
diff --git a/view/templates/field_themeselect.tpl b/view/templates/field_themeselect.tpl index b250520d7b..edd25dbe0f 100644 --- a/view/templates/field_themeselect.tpl +++ b/view/templates/field_themeselect.tpl @@ -3,7 +3,7 @@
{{$field.3}} {{if $field.5}}
{{/if}} diff --git a/view/templates/field_yesno.tpl b/view/templates/field_yesno.tpl index 4a471ccdc1..de70c5ae6d 100644 --- a/view/templates/field_yesno.tpl +++ b/view/templates/field_yesno.tpl @@ -2,7 +2,7 @@
- + {{if $field.4}}{{$field.4.0}}{{else}}OFF{{/if}} diff --git a/view/templates/filebrowser.tpl b/view/templates/filebrowser.tpl index cde4e603ca..b207277a7b 100644 --- a/view/templates/filebrowser.tpl +++ b/view/templates/filebrowser.tpl @@ -78,7 +78,7 @@
- +
diff --git a/view/templates/filer_dialog.tpl b/view/templates/filer_dialog.tpl index 77f48e8aee..27aa9b2f5b 100644 --- a/view/templates/filer_dialog.tpl +++ b/view/templates/filer_dialog.tpl @@ -1,5 +1,5 @@ {{include file="field_combobox.tpl"}}
- +
diff --git a/view/templates/files.tpl b/view/templates/files.tpl new file mode 100644 index 0000000000..a2a337bd76 --- /dev/null +++ b/view/templates/files.tpl @@ -0,0 +1,4 @@ +{{foreach $items as $item }} +

{{$item.title}} ({{$item.mime}}) ({{$item.filename}})

+{{/foreach}} +{{include "paginate.tpl"}} \ No newline at end of file diff --git a/view/templates/follow.tpl b/view/templates/follow.tpl index 32109e82bf..c4d1887657 100644 --- a/view/templates/follow.tpl +++ b/view/templates/follow.tpl @@ -3,7 +3,7 @@

{{$connect}}

{{$desc}}
- +
diff --git a/view/templates/group_edit.tpl b/view/templates/group_edit.tpl index 7bc4add88a..6b72e776e0 100644 --- a/view/templates/group_edit.tpl +++ b/view/templates/group_edit.tpl @@ -9,7 +9,7 @@ {{include file="field_input.tpl" field=$gname}} {{if $drop}}{{$drop}}{{/if}}
- +
diff --git a/view/templates/install_checks.tpl b/view/templates/install_checks.tpl index 217f182a50..ca12425f05 100644 --- a/view/templates/install_checks.tpl +++ b/view/templates/install_checks.tpl @@ -12,14 +12,14 @@ {{if $phpath}} - + {{/if}} {{if $passed}} - + {{else}} - + {{/if}} diff --git a/view/templates/install_db.tpl b/view/templates/install_db.tpl index b6bad0a2ee..f66bf119e8 100644 --- a/view/templates/install_db.tpl +++ b/view/templates/install_db.tpl @@ -16,7 +16,7 @@
- + {{include file="field_input.tpl" field=$dbhost}} @@ -25,7 +25,7 @@ {{include file="field_input.tpl" field=$dbdata}} - +
diff --git a/view/templates/install_settings.tpl b/view/templates/install_settings.tpl index 53450141d4..735672fe6e 100644 --- a/view/templates/install_settings.tpl +++ b/view/templates/install_settings.tpl @@ -10,17 +10,17 @@
- - - - - + + + + + {{include file="field_input.tpl" field=$adminmail}} {{$timezone}} - +
diff --git a/view/templates/intros.tpl b/view/templates/intros.tpl index a14bcf39e6..74fb53b589 100644 --- a/view/templates/intros.tpl +++ b/view/templates/intros.tpl @@ -4,13 +4,13 @@

{{$str_notifytype}} {{$notify_type}}

{{$fullname}}
-{{$fullname}} +{{$fullname|escape:'html'}}
{{$knowyou}}
{{$note}}
- - + +
@@ -23,7 +23,7 @@ {{$dfrn_text}} - +
diff --git a/view/templates/invite.tpl b/view/templates/invite.tpl index 34c032fdc9..6fd8539c5a 100644 --- a/view/templates/invite.tpl +++ b/view/templates/invite.tpl @@ -24,7 +24,7 @@
- +
diff --git a/view/templates/jot.tpl b/view/templates/jot.tpl index dba78e34fd..e8e4e04f3c 100644 --- a/view/templates/jot.tpl +++ b/view/templates/jot.tpl @@ -10,15 +10,15 @@
- - + + -
+
{{if $placeholdercategory}} -
+
{{/if}}
@@ -26,37 +26,37 @@
- +
-
+
-
+
- +
- +
- +
- {{$bang}} + {{$bang}}
- {{if $preview}}{{/if}} + {{if $preview}}{{/if}}
@@ -66,7 +66,7 @@
- +
@@ -75,7 +75,7 @@
{{$acl}}
-
{{$emailcc}}
+
{{$emailcc}}
{{$jotnets}}
diff --git a/view/templates/lang_selector.tpl b/view/templates/lang_selector.tpl index 484d88fe35..f5fe8bea56 100644 --- a/view/templates/lang_selector.tpl +++ b/view/templates/lang_selector.tpl @@ -4,7 +4,7 @@
diff --git a/view/templates/login.tpl b/view/templates/login.tpl index 57c735d8f9..37d105c087 100644 --- a/view/templates/login.tpl +++ b/view/templates/login.tpl @@ -17,16 +17,16 @@ {{include file="field_checkbox.tpl" field=$lremember}}
- +
{{foreach $hiddens as $k=>$v}} - + {{/foreach}} diff --git a/view/templates/logout.tpl b/view/templates/logout.tpl index ba66f831cc..343088d558 100644 --- a/view/templates/logout.tpl +++ b/view/templates/logout.tpl @@ -2,6 +2,6 @@
- +
diff --git a/view/templates/lostpass.tpl b/view/templates/lostpass.tpl index e285860820..3dfbb7a237 100644 --- a/view/templates/lostpass.tpl +++ b/view/templates/lostpass.tpl @@ -12,7 +12,7 @@
- +
diff --git a/view/templates/moderated_comment.tpl b/view/templates/moderated_comment.tpl index f61e133d05..6e5eb22e7b 100644 --- a/view/templates/moderated_comment.tpl +++ b/view/templates/moderated_comment.tpl @@ -4,27 +4,27 @@ - +
- {{$mytitle}} + {{$mytitle|escape:'html'}}
diff --git a/view/templates/mood_content.tpl b/view/templates/mood_content.tpl index ab2a845fce..5604ff9a36 100644 --- a/view/templates/mood_content.tpl +++ b/view/templates/mood_content.tpl @@ -16,6 +16,6 @@

- + diff --git a/view/templates/oauth_authorize.tpl b/view/templates/oauth_authorize.tpl index 10d9d5069d..d513d6b2ef 100644 --- a/view/templates/oauth_authorize.tpl +++ b/view/templates/oauth_authorize.tpl @@ -7,5 +7,5 @@

{{$authorize}}

-
+
diff --git a/view/templates/peoplefind.tpl b/view/templates/peoplefind.tpl index 4f88a1e426..de8cd011b4 100644 --- a/view/templates/peoplefind.tpl +++ b/view/templates/peoplefind.tpl @@ -3,7 +3,7 @@

{{$findpeople}}

{{$desc}}
- +
diff --git a/view/templates/photo_album.tpl b/view/templates/photo_album.tpl index 20162a91a2..770eaf14cf 100644 --- a/view/templates/photo_album.tpl +++ b/view/templates/photo_album.tpl @@ -1,8 +1,19 @@ +

{{$album}}

+{{if $edit}} + +{{/if}} + +{{if $can_post}} + +{{/if}} + +{{foreach $photos as $photo}}
+{{/foreach}} diff --git a/view/templates/photo_edit.tpl b/view/templates/photo_edit.tpl index 391543615c..d5e4397a16 100644 --- a/view/templates/photo_edit.tpl +++ b/view/templates/photo_edit.tpl @@ -5,12 +5,12 @@ - +
- +
@@ -42,8 +42,8 @@
- - + +
diff --git a/view/templates/photos_default_uploader_submit.tpl b/view/templates/photos_default_uploader_submit.tpl index e178e977a7..91444e2d55 100644 --- a/view/templates/photos_default_uploader_submit.tpl +++ b/view/templates/photos_default_uploader_submit.tpl @@ -1,4 +1,4 @@
- +
diff --git a/view/templates/poke_content.tpl b/view/templates/poke_content.tpl index 06a3ec27c6..857dfb2003 100644 --- a/view/templates/poke_content.tpl +++ b/view/templates/poke_content.tpl @@ -9,7 +9,7 @@
{{$clabel}}

- +
@@ -28,6 +28,6 @@

- + diff --git a/view/templates/profile_edit.tpl b/view/templates/profile_edit.tpl index 8a00bd6e06..480add4404 100644 --- a/view/templates/profile_edit.tpl +++ b/view/templates/profile_edit.tpl @@ -5,11 +5,11 @@ @@ -23,19 +23,19 @@
-
*
+
*
- +
- +
@@ -64,20 +64,20 @@
- +
- +
- +
@@ -101,7 +101,7 @@
- +
@@ -117,7 +117,7 @@ - +
@@ -131,31 +131,31 @@
- +
- +
- +
- +
{{$lbl_pubdsc}}
- +
{{$lbl_prvdsc}}
diff --git a/view/templates/profile_photo.tpl b/view/templates/profile_photo.tpl index d0ae4f87dc..1695d01e27 100644 --- a/view/templates/profile_photo.tpl +++ b/view/templates/profile_photo.tpl @@ -17,7 +17,7 @@
- +
diff --git a/view/templates/profile_vcard.tpl b/view/templates/profile_vcard.tpl index 4ec3cdf3c7..9bbb7f8a42 100644 --- a/view/templates/profile_vcard.tpl +++ b/view/templates/profile_vcard.tpl @@ -1,39 +1,41 @@ -
+
-
{{$profile.name}}
+
{{$profile.name}}
{{if $pdesc}}
{{$profile.pdesc}}
{{/if}} {{if $profile.picdate}} -
{{$profile.name}}
+
{{$profile.name}}
{{else}} -
{{$profile.name}}
+
{{$profile.name}}
{{/if}} {{if $profile.network_name}}
{{$network}}
{{$profile.network_name}}
{{/if}} {{if $location}}
{{$location}}
- {{if $profile.address}}
{{$profile.address}}
{{/if}} + {{if $profile.address}}
{{$profile.address}}
{{/if}} - {{$profile.locality}}{{if $profile.locality}}, {{/if}} - {{$profile.region}} - {{$profile.postal_code}} + {{$profile.locality}}{{if $profile.locality}}, {{/if}} + {{$profile.region}} + {{$profile.postal_code}} - {{if $profile.country_name}}{{$profile.country_name}}{{/if}} + {{if $profile.country_name}}{{$profile.country_name}}{{/if}}
{{/if}} - {{if $gender}}
{{$gender}}
{{$profile.gender}}
{{/if}} + {{if $gender}}
{{$gender}}
{{$profile.gender}}
{{/if}} - {{if $profile.pubkey}}{{/if}} + {{if $profile.pubkey}}{{/if}} {{if $marital}}
{{$marital}}
{{$profile.marital}}
{{/if}} - {{if $homepage}}
{{$homepage}}
{{$profile.homepage}}
{{/if}} + {{if $homepage}}
{{$homepage}}
{{$profile.homepage}}
{{/if}} + + {{if $about}}
{{$about}}
{{$profile.about}}
{{/if}} {{include file="diaspora_vcard.tpl"}} diff --git a/view/templates/prv_message.tpl b/view/templates/prv_message.tpl index d419d4d9b3..654671af0e 100644 --- a/view/templates/prv_message.tpl +++ b/view/templates/prv_message.tpl @@ -18,15 +18,15 @@
- +
-
+
- +
diff --git a/view/templates/register.tpl b/view/templates/register.tpl index aacf76529e..8a941145ab 100644 --- a/view/templates/register.tpl +++ b/view/templates/register.tpl @@ -14,7 +14,7 @@ {{if $oidlabel}}
- +
{{/if}} @@ -33,14 +33,14 @@
- +
- +
@@ -48,14 +48,14 @@
-
@{{$sitename}}
+
@{{$sitename}}
{{$publish}}
- +
diff --git a/view/templates/remote_friends_common.tpl b/view/templates/remote_friends_common.tpl index 13d64def86..354c8e46a2 100644 --- a/view/templates/remote_friends_common.tpl +++ b/view/templates/remote_friends_common.tpl @@ -11,7 +11,7 @@
diff --git a/view/templates/removeme.tpl b/view/templates/removeme.tpl index 4148f94e5f..4acfb9ff1a 100644 --- a/view/templates/removeme.tpl +++ b/view/templates/removeme.tpl @@ -14,7 +14,7 @@
- + diff --git a/view/templates/scroll_loader.tpl b/view/templates/scroll_loader.tpl new file mode 100644 index 0000000000..4adaa965b2 --- /dev/null +++ b/view/templates/scroll_loader.tpl @@ -0,0 +1,8 @@ + + + diff --git a/view/templates/settings.tpl b/view/templates/settings.tpl index 8f913aac61..323b614ef6 100644 --- a/view/templates/settings.tpl +++ b/view/templates/settings.tpl @@ -16,7 +16,7 @@ {{/if}}
- +
@@ -32,7 +32,7 @@
- +
@@ -86,7 +86,7 @@
- +
@@ -148,7 +150,7 @@ {{$pagetype}}
- +
@@ -157,7 +159,7 @@
{{$relocate_text}}
- +
diff --git a/view/templates/settings_connectors.tpl b/view/templates/settings_connectors.tpl index 87103b6bbc..bdb928f5b5 100644 --- a/view/templates/settings_connectors.tpl +++ b/view/templates/settings_connectors.tpl @@ -32,7 +32,7 @@ {{include file="field_input.tpl" field=$mail_movetofolder}}
- +
{{/if}} diff --git a/view/templates/settings_display.tpl b/view/templates/settings_display.tpl index 81e73e09cc..12cdd3d668 100644 --- a/view/templates/settings_display.tpl +++ b/view/templates/settings_display.tpl @@ -16,7 +16,7 @@
- +
{{if $theme_config}} diff --git a/view/templates/settings_features.tpl b/view/templates/settings_features.tpl index 2793e477b1..eb3f67f813 100644 --- a/view/templates/settings_features.tpl +++ b/view/templates/settings_features.tpl @@ -13,7 +13,7 @@ {{include file="field_yesno.tpl" field=$fcat}} {{/foreach}}
- +
{{/foreach}} diff --git a/view/templates/settings_oauth.tpl b/view/templates/settings_oauth.tpl index edb0ff63ec..164930ecba 100644 --- a/view/templates/settings_oauth.tpl +++ b/view/templates/settings_oauth.tpl @@ -23,8 +23,8 @@ {{/if}} {{/if}} {{if $app.my}} -   -   +   +   {{/if}} {{/foreach}} diff --git a/view/templates/settings_oauth_edit.tpl b/view/templates/settings_oauth_edit.tpl index eed9f6ea33..9019981542 100644 --- a/view/templates/settings_oauth_edit.tpl +++ b/view/templates/settings_oauth_edit.tpl @@ -11,7 +11,7 @@ {{include file="field_input.tpl" field=$icon}}
- +
diff --git a/view/templates/suggestions.tpl b/view/templates/suggestions.tpl index eb273b4463..e2acaa5924 100644 --- a/view/templates/suggestions.tpl +++ b/view/templates/suggestions.tpl @@ -5,18 +5,18 @@

{{$str_notifytype}} {{$notify_type}}

{{$madeby}}
{{$fullname}}
-{{$fullname}} +{{$fullname|escape:'html'}}
{{$note}}
- - + +
{{include file="field_checkbox.tpl" field=$hidden}} - +
diff --git a/view/templates/uimport.tpl b/view/templates/uimport.tpl index 05c79ab757..0aca00a05f 100644 --- a/view/templates/uimport.tpl +++ b/view/templates/uimport.tpl @@ -8,7 +8,7 @@
- +
diff --git a/view/templates/wall_thread.tpl b/view/templates/wall_thread.tpl index b38027a8da..2eb741c597 100644 --- a/view/templates/wall_thread.tpl +++ b/view/templates/wall_thread.tpl @@ -12,7 +12,7 @@
{{if $item.owner_url}}
{{$item.wall}}
@@ -20,7 +20,7 @@
- + {{$item.name}} menu
@@ -38,8 +38,8 @@
- {{$item.name}}{{if $item.owner_url}} {{$item.to}} {{$item.owner_name}} {{$item.vwall}}{{/if}}
-
{{$item.ago}}
+ {{$item.name}}{{if $item.owner_url}} {{$item.to}} {{$item.owner_name}} {{$item.vwall}}{{/if}}
+
{{$item.ago}}
{{$item.title}}
@@ -51,12 +51,12 @@ {{/foreach}}
{{if $item.has_cats}} -
{{$item.txt_cats}} {{foreach $item.categories as $cat}}{{$cat.name}}{{if $cat.removeurl}} [{{$remove}}]{{/if}} {{if $cat.last}}{{else}}, {{/if}}{{/foreach}} +
{{$item.txt_cats}} {{foreach $item.categories as $cat}}{{$cat.name}}{{if $cat.removeurl}} [{{$remove}}]{{/if}} {{if $cat.last}}{{else}}, {{/if}}{{/foreach}}
{{/if}} {{if $item.has_folders}} -
{{$item.txt_folders}} {{foreach $item.folders as $cat}}{{$cat.name}}{{if $cat.removeurl}} [{{$remove}}]{{/if}}{{if $cat.last}}{{else}}, {{/if}}{{/foreach}} +
{{$item.txt_folders}} {{foreach $item.folders as $cat}}{{$cat.name}}{{if $cat.removeurl}} [{{$remove}}]{{/if}}{{if $cat.last}}{{else}}, {{/if}}{{/foreach}}
{{/if}}
@@ -64,33 +64,33 @@
{{if $item.vote}} {{/if}} {{if $item.plink}} - + {{/if}} {{if $item.edpost}} - + {{/if}} {{if $item.star}} - + {{/if}} {{if $item.tagger}} - + {{/if}} {{if $item.filer}} - + {{/if}}
- {{if $item.drop.dropping}}{{/if}} + {{if $item.drop.dropping}}{{/if}}
- {{if $item.drop.pagedrop}}{{/if}} + {{if $item.drop.pagedrop}}{{/if}}
diff --git a/view/templates/wallmessage.tpl b/view/templates/wallmessage.tpl index 579ee0a31e..e6a6be908f 100644 --- a/view/templates/wallmessage.tpl +++ b/view/templates/wallmessage.tpl @@ -13,7 +13,7 @@ {{$recipname}}
{{$subject}}
- +
{{$yourmessage}}
@@ -22,10 +22,10 @@
- +
diff --git a/view/theme/decaf-mobile/templates/settings.tpl b/view/theme/decaf-mobile/templates/settings.tpl index 91d1252e30..6196f80a3c 100644 --- a/view/theme/decaf-mobile/templates/settings.tpl +++ b/view/theme/decaf-mobile/templates/settings.tpl @@ -87,7 +87,7 @@